@charset "UTF-8";
:root {
  --yellow: #f5c464;
  --yellow-bg: #fffbef;
  --teal: #50c8b5;
  --teal-bg: #edfaf7;
  --sky: #e5f4fa;
  --sky-dark: #b8dff0;
  --navy: #2d3580;
  --text: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --border: #ebebeb;
  --purple: #e2c6ff;
}

/* ===============================
  TOP
=============================== */
/*------------------------------
fv
------------------------------*/
.fv {
  padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .fv {
    padding: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap)) 0;
  }
}

.fv__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fv__content {
    display: block;
  }
}

.fv__body {
  width: 49%;
}
@media (max-width: 767px) {
  .fv__body {
    width: 100%;
  }
}

.fv__catch {
  font-size: clamp(0px, 48 * var(--rate-fz), 48px * var(--cap));
  font-weight: 700;
  line-height: 2;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 999px) {
  .fv__catch {
    font-size: clamp(0px, 40 * var(--rate-fz), 40px * var(--cap));
  }
}
@media (max-width: 767px) {
  .fv__catch {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    line-height: 1.6;
  }
}

.fv__text {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .fv__text {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    margin-top: 1em;
  }
}

.fv__visual {
  width: 51%;
}
@media (max-width: 767px) {
  .fv__visual {
    width: 60%;
    margin: 0 auto;
    margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
  }
}

/*------------------------------
about
------------------------------*/
.about {
  padding-top: clamp(0px, 128 * var(--rate-vw), 128px * var(--cap));
}
@media (max-width: 767px) {
  .about {
    padding-top: clamp(0px, 120 * var(--rate-vw), 120px * var(--cap));
  }
}

.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .about__content {
    display: block;
  }
}

.about__icon {
  width: calc(200 / 1200 * 100%);
  margin: 0 auto;
  background: #88bfcf;
  border-radius: 50%;
  position: relative;
}
.about__icon img {
  border-radius: 50%;
}
.about__icon .name {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -2em);
  font-weight: bold;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
}
@media (max-width: 767px) {
  .about__icon {
    width: clamp(0px, 140 * var(--rate-vw), 140px * var(--cap));
  }
}

.about__body {
  width: calc(600 / 1200 * 100%);
}
@media (max-width: 767px) {
  .about__body {
    width: 100%;
    margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
  }
}

.about__text {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .about__text {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.about__link {
  margin-top: 2em;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 600;
  line-height: 1.8;
}
.about__link a {
  color: #0d2289;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .about__link {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

/*------------------------------
service
------------------------------*/
.service {
  padding: clamp(0px, 230 * var(--rate-vw), 230px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .service {
    padding: clamp(0px, 120 * var(--rate-vw), 120px * var(--cap)) 0;
  }
}

.service__list {
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 24 * var(--rate-vw), 24px * var(--cap));
}
@media (max-width: 767px) {
  .service__list {
    display: block;
    margin-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  }
}

.service__item {
  width: calc(50% - clamp(0px, 24 * var(--rate-vw), 24px * var(--cap)) / 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  border-radius: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  border: 1px solid #e5f4fa;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .service__item {
    width: 100%;
    padding: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
  .service__item:nth-child(n+2) {
    margin-top: clamp(0px, 24 * var(--rate-vw), 24px * var(--cap));
  }
}

.service__icon {
  width: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}
@media (max-width: 767px) {
  .service__icon {
    width: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.service__body {
  width: calc(100% - clamp(0px, 80 * var(--rate-vw), 80px * var(--cap)));
  align-self: flex-start;
}
@media (max-width: 767px) {
  .service__body {
    width: calc(100% - clamp(0px, 60 * var(--rate-vw), 60px * var(--cap)));
  }
}

.service__name {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
}
@media (max-width: 767px) {
  .service__name {
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  }
}

.service__description {
  display: block;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  margin-top: 1em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .service__description {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

/*------------------------------
pricing
------------------------------*/
.pricing {
  padding-bottom: clamp(0px, 230 * var(--rate-vw), 230px * var(--cap));
}
@media (max-width: 767px) {
  .pricing {
    padding-bottom: clamp(0px, 120 * var(--rate-vw), 120px * var(--cap));
  }
}

.pricing__content {
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .pricing__content {
    margin-top: 10%;
  }
}

.pricing__category:nth-child(n+2) {
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .pricing__category:nth-child(n+2) {
    margin-top: 10%;
  }
}

.pricing__category-title {
  font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
  font-weight: 700;
  padding-bottom: 0.8em;
  border-bottom: 2px solid #ebebeb;
}
@media (max-width: 767px) {
  .pricing__category-title {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  }
}

.pricing__items {
  padding: 0 clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  margin-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}
@media (max-width: 767px) {
  .pricing__items {
    margin-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
    padding: 0 clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
  }
}

.pricing__item {
  padding: clamp(0px, 24 * var(--rate-vw), 24px * var(--cap)) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing__item:nth-child(n+2) {
  border-top: 1px solid #ebebeb;
}
@media (max-width: 767px) {
  .pricing__item {
    display: block;
    padding: 3% 0;
  }
}

.pricing__item-name {
  display: block;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
}
@media (max-width: 767px) {
  .pricing__item-name {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

.pricing__item-description {
  display: block;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  line-height: 1.8;
  font-weight: 400;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .pricing__item-description {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

.pricing__item-value {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
}
@media (max-width: 767px) {
  .pricing__item-value {
    margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
    text-align: right;
  }
}

.pricing__text {
  margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  line-height: 1.8;
  font-weight: 400;
}
@media (max-width: 767px) {
  .pricing__text {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

/*------------------------------
contact
------------------------------*/
.contact {
  padding: clamp(0px, 230 * var(--rate-vw), 230px * var(--cap)) 0;
  background: #556BB0;
  color: #fff;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.contact .blob__bg {
  z-index: 20;
}
.contact .inner {
  position: relative;
  z-index: 30;
}
@media (max-width: 767px) {
  .contact {
    padding: clamp(0px, 120 * var(--rate-vw), 120px * var(--cap)) 0;
  }
}

.contact__wrap {
  width: clamp(0px, 900 * var(--rate-vw), 900px * var(--cap));
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact__wrap {
    width: 100%;
  }
}

.contact__message {
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__message {
    margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.contact__form {
  margin: 0 auto;
  margin-top: 15%;
}
.contact__form dt:nth-child(n+2) {
  margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
}

@media (max-width: 767px) {
  .contact__items {
    margin-top: 5%;
  }
}

.contact__label {
  display: flex;
  align-items: center;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact__label {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

.contact__required {
  display: inline-block;
  font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  font-weight: 600;
  line-height: 1.4;
  background: #F6C463;
  border-radius: 0.3em;
  padding: 0.3em 1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .contact__required {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

.contact__field {
  margin-top: clamp(0px, 8 * var(--rate-vw), 8px * var(--cap));
}
.contact__field input[type=text],
.contact__field input[type=tel],
.contact__field input[type=email],
.contact__field textarea {
  font: inherit;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  line-height: 1.8;
  font-family: inherit;
  color: #000;
  font-weight: bold;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  background: #fff;
  border: 1px solid #e5f4fa;
  border-radius: 0.5em;
  padding: 0.5em 1em;
}
.contact__field textarea {
  resize: vertical;
  min-height: 160px;
}
@media (max-width: 767px) {
  .contact__field input[type=text],
.contact__field input[type=tel],
.contact__field input[type=email],
.contact__field textarea {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    padding: 0.5em;
  }
}

.contact__privacy p {
  margin-top: 0.5em;
}

.contact__submit {
  text-align: center;
  margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .contact__submit:hover {
    opacity: 0.7;
  }
}

.contact__button {
  width: 100%;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
  text-align: center;
  background: #F6C463;
  border-radius: 2em;
  cursor: pointer;
  position: relative;
  padding: 1em 0;
}
.contact__button input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .contact__button {
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  }
}

.contact__chat {
  margin-top: clamp(0px, 64 * var(--rate-vw), 64px * var(--cap));
}
@media (max-width: 767px) {
  .contact__chat {
    margin-top: 10%;
  }
}

.contact__chat-text {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__chat-text {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.contact__chat-action {
  text-align: center;
  margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
}
.contact__chat-action a {
  width: 18em;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 700;
  border: 1px solid #e8445a;
  background: #fff;
  color: #e8445a;
  padding: 0.5em 0;
  border-radius: 2em;
}
.contact__chat-action a::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/Chatwork_logo.png) no-repeat center center/contain;
  width: 2.4em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  .contact__chat-action {
    margin-top: 5%;
  }
  .contact__chat-action a {
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  }
}

.contact__guide {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__guide {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.contact__privacy {
  margin-top: 3%;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  line-height: 1.6;
}
.contact__privacy a {
  text-decoration: underline;
}

.contact__checkbox-custom {
  display: flex;
  align-items: center;
  margin-top: 3%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.contact__checkbox {
  display: inline-block;
  width: 1.67em;
  height: 1.67em;
  border: 1px solid #4d4d4d;
  background: #fff;
  position: relative;
  margin-right: 1em;
}
.contact__checkbox input {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 0;
  height: 0;
}
.contact__checkbox::after {
  content: "";
  position: absolute;
  aspect-ratio: 10/17;
  width: 45%;
  right: 0%;
  top: 50%;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -65%) rotate(35deg) scale(-1, 1);
  display: none;
}
.contact__checkbox:has(:checked)::after {
  display: block;
}

/* モーダル
------------------------------*/
[data-modalwrap] {
  position: fixed;
  z-index: 3000;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 19, 0.7);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-modalwrap].act {
  opacity: 1;
  pointer-events: auto;
}

.modal-body {
  position: relative;
  width: 800px;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  overflow: auto;
  overflow-x: hidden;
  padding: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .modal-body {
    padding: 10% 5%;
  }
}

.thanks__title {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.thanks__text {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  margin-top: 1em;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .thanks__text {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    text-align: left;
  }
}

.thanks__btn {
  text-align: center;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
  background: #F6C463;
  border-radius: 2em;
  cursor: pointer;
  position: relative;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 0;
  display: block;
}
@media (max-width: 767px) {
  .thanks__btn {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

/* modal open時にscrollを無効にする場合 */
.invalid-caution { /* バリデーションエラーメッセージ */
  width: 100%;
  color: red;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: bold;
}

p:nth-child(n+2 of .invalid-caution) {
  display: none;
}

.bt_acc {
  pointer-events: none;
  opacity: 0.5;
}
.bt_acc.act {
  pointer-events: auto;
  opacity: 1;
}

[data-form-mode=con] .is-in {
  display: none !important;
}
[data-form-mode=con] .is-con-po {
  pointer-events: none !important;
}
[data-form-mode=con] input:not([type=submit]), [data-form-mode=con] textarea, [data-form-mode=con] select, [data-form-mode=con] label {
  pointer-events: none !important;
}

[data-form-mode=in] .is-con {
  display: none !important;
}

.form-hidden {
  display: none;
}

/*------------------------------
blob
------------------------------*/
.blob__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob-y1 {
  width: 480px;
  aspect-ratio: 1/1;
  background: var(--yellow);
  opacity: 0.18;
  top: -120px;
  right: -100px;
  -webkit-animation: drift1 12s ease-in-out infinite;
          animation: drift1 12s ease-in-out infinite;
}
@media (max-width: 767px) {
  .blob-y1 {
    width: 240px;
  }
}

.blob-t1 {
  width: 360px;
  aspect-ratio: 1/1;
  background: var(--teal);
  opacity: 0.15;
  bottom: -80px;
  left: -80px;
  -webkit-animation: drift2 14s ease-in-out infinite;
          animation: drift2 14s ease-in-out infinite;
}
@media (max-width: 767px) {
  .blob-t1 {
    width: 180px;
  }
}

.blob-s1 {
  width: 260px;
  aspect-ratio: 1/1;
  background: var(--sky);
  opacity: 0.5;
  top: 30%;
  left: 2%;
  -webkit-animation: drift1 10s ease-in-out infinite 2s;
          animation: drift1 10s ease-in-out infinite 2s;
}
@media (max-width: 767px) {
  .blob-s1 {
    width: 130px;
  }
}

.blob-y2 {
  width: 200px;
  aspect-ratio: 1/1;
  background: var(--purple);
  opacity: 0.2;
  bottom: 10%;
  right: 8%;
  -webkit-animation: drift3 9s ease-in-out infinite 1s;
          animation: drift3 9s ease-in-out infinite 1s;
}
@media (max-width: 767px) {
  .blob-y2 {
    width: 100px;
  }
}

@-webkit-keyframes drift1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10%, 25%) scale(1.05);
  }
}

@keyframes drift1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10%, 25%) scale(1.05);
  }
}
@-webkit-keyframes drift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15%, 20%) scale(1.04);
  }
}
@keyframes drift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15%, 20%) scale(1.04);
  }
}
@-webkit-keyframes drift3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20%, 35%) scale(1.1);
  }
}
@keyframes drift3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20%, 35%) scale(1.1);
  }
}
/*# sourceMappingURL=top.css.map */