@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  line-height: 1;
  text-size-adjust: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  position: relative;
  overflow-wrap: break-word;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue",
    Arial, "BIZ UDPGothic", Meiryo, sans-serif;
}

* {
  float: none;
  position: static;
}

img {
  vertical-align: top;
  max-width: 100%;
}

li {
  list-style: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ここまでデフォルト。destyle.css とともに使う。line-height は要検討 */

body {
  font-weight: 400;
  font-style: normal;
  color: #333;
  background-color: #fff;
}

p {
  line-height: 1.6;
}

:root {
  --main-color: #22af9e;
  --main-gradation: linear-gradient(
    270deg,
    #53c277 0%,
    #22af9e 50%,
    #0298b1 100%
  );
  --btn-gradation: linear-gradient(90deg, #fd8c00 0%, #feb303 100%);
  --marker-yellow: #ffea73;
  --text-black: #3c4a49;
  --text-gray: #849b99;
  --light-green: #a9d6d0;
  --font-jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Century Gothic", sans-serif;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out var(--delay, 0s),
    transform 1s ease-out var(--delay, 0s);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.btn-contact {
  background: var(--btn-gradation);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  display: block;
  margin: auto;

  align-items: center;
  width: fit-content;
  overflow: visible;
  outline: 3px solid white; /* ← これが「枠」になります */
  outline-offset: -3px;
  z-index: 1;
  white-space: nowrap;
  font-size: 32px;
  border-radius: 9px;
  border-width: 3px;
  padding-top: 16px;
  padding-right: 60px;
  padding-bottom: 16px;
  padding-left: 60px;
  gap: 44px;
  letter-spacing: 0.08em;
  transition: filter 0.6s;
}

.btn-contact::after {
  content: "";
  position: absolute;
  top: 1.6px;
  left: 1.6px;
  right: -2px;
  bottom: -2px;
  border-radius: 9px;
  background: linear-gradient(
    90deg,
    rgba(253, 140, 0, 0.5) 0%,
    rgba(254, 179, 3, 0.5) 100%
  );
  z-index: -1;
  top: 3px;
  left: 3px;
  right: -7px;
  bottom: -7px;
  transition: top 0.3s, left 0.3s, right 0.3s, bottom 0.3s;
}

.btn-contact:hover {
  filter: brightness(1.2);
}

.btn-contact:hover::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: top 0.6s, left 0.6s, right 0.6s, bottom 0.6s;
}

.header-btn-contact {
  background: var(--btn-gradation);
  color: white;
  font-weight: 600;
  padding: 14px 23px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  overflow: visible;
  outline: 1.5px solid white; /* ← これが「枠」になります */
  outline-offset: -2.4px;
  z-index: 99;
  display: flex;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.header-btn-contact::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  top: 2px;
  left: 2px;
  right: -4px;
  bottom: -4px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(253, 140, 0, 0.5) 0%,
    rgba(254, 179, 3, 0.5) 100%
  );
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-weight: 600;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 2.6%;
  margin: 0;

  .logo svg {
    width: 12vw;
  }

  .nav-wrapper {
    align-items: center;
    display: flex;
    gap: clamp(12px, calc(5.7142857142857135px + 1.5714285714285716vw), 34px);
  }

  .nav-desktop {
    ul {
      display: flex;
      gap: clamp(13px, calc(12.142857142857142px + 0.2142857142857143vw), 16px);
      list-style: none;

      li a {
        color: var(--text-black);
        text-decoration: none;
        font-size: clamp(14px, calc(12.8px + 0.27vw), 18px);
        white-space: nowrap;
      }
    }
  }

  /* ハンバーガー */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 2px;
    background: #22af9e;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* open クラスがついたときに X 状態へ */
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-mobile {
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 40px 20px 48px;
    border-radius: 0 0 30px 30px;

    display: block; /* 表示は確保しておく */
    opacity: 0; /* 完全に透過 */
    visibility: hidden; /* レイアウトは残すが不可視 */
    pointer-events: none; /* クリックも無効化 */
    transition: opacity 0.5s ease, visibility 0s 0.5s;

    ul {
      list-style: none;
      text-align: center;
      font-size: 16px;
      width: 72%;
      margin: auto;

      li {
        padding: 22px 0;
        background-image: linear-gradient(
          to right,
          #a9d6d0 8px,
          transparent 8px
        );
        background-size: 12px 2px;
        background-repeat: repeat-x;
        background-position: left bottom;

        a {
          color: #22af9e;
          text-decoration: none;
        }
      }
    }

    .btn-contact {
      margin: 32px auto 0;
    }
  }

  .nav-mobile.active {
    opacity: 1; /* フェードイン */
    visibility: visible; /* 即可視化 */
    pointer-events: auto; /* クリック有効 */
    transition: opacity 0.5s ease, visibility 0s 0s; /* visibility はすぐ切り替え */
  }

  /* モバイル対応 */
  @media (max-width: 768px) {
    .nav-desktop {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .nav-mobile.active {
      display: block;
    }
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -9;
  background-image: url(/images/hero_bg.png);
  background-size: cover;
  background-position: center;
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero {
  position: relative;

  background-image: linear-gradient(
    270deg,
    #53c277 0%,
    #22af9e 50%,
    #0298b1 100%
  );
  color: white;
  margin-top: 100px;
  font-family: "Hiragino Sans", sans-serif;
  overflow: hidden;
  height: fit-content;
  position: relative;
  z-index: 0;

  .hero-hukidashi {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -999;
    width: 54%;
  }

  .hero-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    padding: 0px 40px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
  }

  .hero-text {
    flex: 1;
    padding: 60px 0 80px;
  }

  .hiromeruchan {
    margin-bottom: -32px;
  }
  .hero-text h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 170%;
    white-space: nowrap;
    margin-top: 16px;
  }

  .hero-text h1 svg {
    margin-bottom: -16px;
  }

  .hero-visual {
    width: 48%;
    position: relative;
  }

  .phone {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  /* 吹き出し */
  .balloon {
    width: 300px;
    top: 47%;
    left: 45%;
    position: absolute;
    color: #22af9e;
    border-radius: 20px;
    zoom: 1.19;
  }

  /* アニメーション */
}

.highlight {
  color: #22af9e;
  font-weight: 700;
}

/* 共通コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- こんなお悩みセクション --- */
.section-problems {
  background: #fff;
  padding: 80px 0 104px;
  font-family: var(--font-jp);
  color: var(--text-black);
  position: relative;
  z-index: 0;
}

.section-problems .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;

  width: 695px;
  max-width: 100%;
  height: auto;
  opacity: 1;
  border-radius: 20px;
  padding-top: 30px;
  padding-right: 80px;
  padding-bottom: 30px;
  padding-left: 80px;
  background: #f7f7f7;
}

.problem-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  background-image: linear-gradient(to right, #a9d6d0 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 18px;
  line-height: 1.6;
}

.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/images/icon-check.svg") no-repeat center center;
  background-size: contain;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.problems-illust {
  text-align: center;
  position: absolute;
  width: 10%;
  bottom: 64px;
  left: 18%;
  z-index: 2;
}

/* --- ぴったりセクション --- */
.section-solution,
.section-faq {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(
    270deg,
    rgba(83, 194, 119) 0%,
    rgba(34, 175, 158) 50%,
    rgba(2, 152, 177) 100%
  );
}

/* 画像レイヤーを下に */
.section-solution::after,
.section-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/bg_section-solution.png") repeat;
  background-size: 7% auto;
  opacity: 0.1; /* 画像だけ透過 */
  z-index: -1;
  background-position: 0 0;
  background-attachment: fixed;
}

.custom-shape-divider-bottom-1752637233 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1752637233 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
  z-index: 3;
}

.custom-shape-divider-bottom-1752637233 {
  --grad-start: #0298b1;
  --grad-mid: #22af9e;
  --grad-end: #53c277;
}

#bottomGradient stop:nth-child(1) {
  stop-color: var(--grad-start);
}
#bottomGradient stop:nth-child(2) {
  stop-color: var(--grad-mid);
}
#bottomGradient stop:nth-child(3) {
  stop-color: var(--grad-end);
}

.custom-shape-divider-bottom-1752637233::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/bg_section-solution.png") repeat;
  background-size: 7% auto;
  opacity: 0.1; /* 画像だけ透過 */
  z-index: 5;
  background-position: 0 0;
  background-attachment: fixed;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-bottom-1752637233 svg {
    width: calc(100% + 1.3px);
    height: 48px;
  }

  .custom-shape-divider-bottom-1752637233::after {
    background-size: 16% auto;
  }
}

.section-solution {
  padding: 40px 0;
  margin-top: -1px;
  position: relative;
}

.section-solution p {
  text-align: center;
  font-size: 18px;

  font-family: Hiragino Sans;
  font-weight: 600;
  font-size: 20px;
  line-height: calc(200% + 12px);
  text-align: center;
  color: white;
  letter-spacing: 1px;
}

.section-solution p span {
  font-size: 34px;
  line-height: 82px;
  text-align: center;
  margin-left: 4px;
}

.section-solution p img {
  margin-right: 8px;
}

.solution-phone,
.cheer-person {
  position: absolute;
  bottom: 0;
}

.solution-phone {
  width: 11%;
  left: 15%;
}

.cheer-person {
  width: 12%;
  right: 16%;
}

.section-reasons {
  position: relative;
  overflow: hidden;
  padding: 80px 0px 400px;
  font-family: var(--font-jp);
  background: linear-gradient(
    270deg,
    rgba(83, 194, 119, 0.2) 0%,
    rgba(34, 175, 158, 0.2) 50%,
    rgba(2, 152, 177, 0.2) 100%
  );
}

.section-reasons__label {
  text-align: center;
  margin-bottom: -64px;
}

.section-reasons__box {
  background: white;
  background-image: url(/images/pc-reason_bg.png);
  border-radius: 30px;
  padding: 120px 10% 100px;
  box-shadow: 0px 0px 20px 0px #00624333;
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

.reason-item__icon {
  width: 36%;
  height: auto;
}

.reason-item__body {
  flex: 1;
  color: var(--text-black);
}

.reason-item-midashi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reason-item__number {
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(270deg, #53c277 0%, #22af9e 50%, #0298b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 60px;
  line-height: 140%;
  white-space: nowrap;
}

.reason-item__title {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 1px;
}

.reason-item__text {
  font-size: 16px;
  line-height: 220%;
  margin-bottom: 16px;
}

.reason-item__text .yellow-marker {
  background: linear-gradient(transparent 60%, #ffea73 60%);
}

.curved {
  bottom: 0;
  position: absolute;
  left: 0;
  width: calc(100% + 280px);
  background: white;
  height: 240px;
  margin-left: -140px;
  margin-right: -140px;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.section-operation {
  padding: 0 0 100px;
  background: #fff;
  font-family: var(--font-jp);
}

/* ラベル（ピル型） */
.section-operation__label {
  display: block;
  margin: -120px auto 80px;
  z-index: 99;
  position: relative;
}

/* 内部レイアウト */
.section-operation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 52px;

  video {
    width: 41.4%;
  }
}

/* 右コンテンツ */
.section-operation__content {
  flex: 1;
  max-width: 45%;
}

.operation-subtitle {
  font-size: 1.4rem;
  color: var(--text-black);
  margin-bottom: 8px;
}

.operation-title {
  display: inline-block;
  margin-bottom: 70px;
}

/* 手順リスト */
.steps-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;

  .sousa-line {
    position: absolute;
    top: 0;
    left: 28px;
    z-index: 1;
  }
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-icon {
  z-index: 2;
}

.step-text {
  font-size: 1.4rem;
  color: var(--text-black);
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
}

.section-cases {
  padding: 80px 0;
  background: var(--main-gradation);
  font-family: var(--font-jp);
  color: var(--text-black);
}

/* 見出しピル */
.section-cases__label {
  display: block;
  margin: 0 auto 140px;
  text-align: center;
}

/* カード群 */
.cases-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 個別カード */
.case-card {
  position: relative;
  background: #fff;
  padding: 40px 20px 10px; /* 上部にアバター分の余裕 */
  width: 300px;

  border-radius: 14px;

  box-shadow: 0px 0px 16px 0px #00624333;
}

/* アバター */
.case-card__avatar {
  position: absolute;
  top: -108px;
  left: 50%;
  transform: translateX(-50%);
  width: 146px;
  height: 146px;
  border-radius: 50%;
  border: 4px solid #22af9e;
  overflow: hidden;
  background: #eee;
}

.case-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タイトル */
.case-card__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(270deg, #53c277 0%, #22af9e 50%, #0298b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 0 16px;
}

/* 役職・名前 */
.case-card__meta {
  font-size: 1.4rem;
  color: var(--main-color);
}

/* 本文 */
.case-card__text {
  color: var(--text-black);

  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
}

/* -------------------------------------------------- */
/* 導入の流れセクション */
/* -------------------------------------------------- */
.section-flow {
  padding: 100px 0 140px;
  background: linear-gradient(
    270deg,
    rgba(83, 194, 119, 0.2) 0%,
    rgba(34, 175, 158, 0.2) 50%,
    rgba(2, 152, 177, 0.2) 100%
  );
  font-family: var(--font-jp);
}

.section-flow__label {
  display: block;
  margin: 0 auto -40px;
}

.section-flow__inner {
  padding: 60px 0 50px;
  border-radius: 30px;
  box-shadow: 0px 0px 16px 0px #00624333;
  background: white;
  background-image: url(/images/pc-reason_bg.png);

  h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 220.00000000000003%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-black);
    margin-bottom: 40px;
  }

  h3 span {
    background: linear-gradient(270deg, #53c277 0%, #22af9e 50%, #0298b1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  h3 span .big {
    font-size: 26px;
  }
}

.flow-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.flow-item {
  text-align: center;
  position: relative;
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flow-item__text {
  color: var(--main-color);
  white-space: nowrap;

  font-weight: 600;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
  display: flex;
  vertical-align: middle;
  align-items: center;
  height: 5em;
}

.flow-item + .flow-item::before,
.flow-item + .flow-item::after {
  content: "";
  position: absolute;
  top: 34%;
  left: -34%;
  width: 67px;
  height: 4px;
  border-radius: 9999px;
  background-color: #22af9e;
  transform-origin: calc(100% - 2px) 50%;
}

.flow-item + .flow-item::before {
  transform: rotate(63deg);
}

.flow-item + .flow-item::after {
  transform: rotate(-63deg);
}

/* -------------------------------------------------- */
/* 料金プラン＆特典 */
/* -------------------------------------------------- */
.section-price {
  text-align: center;
  width: 86%;
  max-width: 1000px;
  margin: 100px auto 0;
}

.section-price__label {
  display: inline-block;
  margin: 0 auto 40px;
}

/*---- レイアウト ----*/
.section-price .price-inner {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px; /* ボックス間の間隔 */
  margin-bottom: 24px; /* 下の注意書きとの間隔 */
}

/* 価格ボックス共通 */
.price-item {
  width: 420px;
  height: 208px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 0px #00624333;
}

/* ヘッダー（ラベル部分） */
.price-header {
  background: linear-gradient(270deg, #53c277 0%, #22af9e 50%, #0298b1 100%);
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  padding: 16px 0;

  font-weight: 600;
  font-style: W6;
  font-size: 32px;
  line-height: 140%;
  text-align: center;
}

/* 本文部分 */
.price-body {
  background: #fff;
  color: #22af9e;
  text-align: center;
  padding: 24px 16px;

  font-weight: 600;
  font-size: 18px;
  line-height: 220%;
  vertical-align: middle;
}

/* 月額費の金額を大きく見せる */
.price-body--monthly .price-amount {
  font-family: Century Gothic;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
}
.price-body--monthly .price-tax {
  font-weight: 600;
  font-size: 24px;
  line-height: 180%;
  text-align: center;
  vertical-align: middle;
}

/* ＋記号 */
.price-plus {
  font-size: 46px;
  font-weight: bold;
  color: #22af9e;
  line-height: 1;
}

/* 注意書き */
.price-note {
  color: var(--text-gray);
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
}

/* 特典 */
.price-bonus {
  margin: 56px auto 72px;
  text-align: center;
  width: 100%;
}

.price-bonus__title {
  display: block;
  margin: auto;
}

.price-bonus__img {
  margin: 24px auto 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  border: 2px solid var(--main-color);
  border-radius: 20px;
  padding: 20px 40px;
  width: 100%;
}

.price-bonus__img .bonus-mock {
  margin-top: -40px;
}

.section-faq {
  padding: 100px 0 140px;
  font-family: var(--font-jp);
  color: #fff;
  position: relative;
}

.section-faq__label {
  display: block;
  margin: 0 auto 40px;
}

.faq-list {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 800px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 24px;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  background-image: linear-gradient(to right, #a9d6d0 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;

  width: 50px;
  height: 50px;
  font-family: Century Gothic;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 140%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-item__q .faq-item__icon {
  background: var(--main-color);
  color: #fff;
}

.faq-item__a .faq-item__icon {
  background: #fff;
  color: var(--main-color);
  border: var(--main-color) solid 1px;
}

.faq-item__question {
  font-family: Hiragino Sans;
  font-weight: 600;
  font-style: W6;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 4%;
  vertical-align: middle;
  color: var(--main-color);
}
.faq-item__answer {
  font-family: Hiragino Sans;
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
  vertical-align: middle;
  color: var(--text-black);
}

/* 回答部はインデントなく読みやすく */
.faq-item__a {
  margin-top: 12px;
}

/* CTAボタン */
.faq-btn {
  display: inline-block;
  margin: 0 auto;
  font-size: 1.6rem;
}

/* Footer */
.site-footer {
  background: #2ba796;
  color: #fff;
  font-family: var(--font-jp);
  padding: 72px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-service {
  margin: 0;
  font-size: 1.4rem;
  opacity: 0.8;
}
.footer-logo {
  display: block;
  margin-top: 8px;
}
.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 24px;
  margin-right: 20%;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin: 0 8px;
  display: flex;
}

.footer-nav svg {
  margin-left: 8px;
}
.footer-copy {
  margin: 0;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* ===== プライバシーポリシー用スタイル ===== */
.section-privacy {
  padding: 160px 8%;
  max-width: 1200px;
  background: #fff;
  color: #333;
  font-family: var(--font-jp);
  text-align: left;
}

.section-privacy .container div {
  margin-bottom: 22px;
}

.section-privacy .section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--main-color);
}
.policy-list {
  margin: 0 0 32px 0;
  padding-left: 1.2em;
}
.policy-list li {
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 1.6;
  list-style: disc inside;
}
.policy-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.policy-text a {
  color: var(--main-color);
  text-decoration: underline;
}

/* モバイル（１カラム） */
@media (max-width: 768px) {
  .site-header {
    padding: 0 32px;
    box-shadow: 0px 0px 14px 0px #00624333;
  }

  .site-header .logo svg {
    width: 80px;
  }

  .btn-contact {
    font-size: 16px;
    padding: 12px 36px;
    gap: 22px;
    border-radius: 4px;
    border-width: 2px;
  }
  .btn-contact svg {
    width: 18px;
    height: 18px;
  }

  .hero {
    margin-top: 52px;

    .hero-inner {
      flex-direction: column;
      text-align: center;
      padding: 24px;
      position: relative;
    }

    .hero-text {
      text-align: left;
      padding: 0;
    }

    .hero-text svg {
      width: 203px;
      height: 30px;
    }

    .hero-text h1 {
      margin: 8px auto 66vw;
      font-size: 32px;
      align-items: center;
    }

    .hero-text h1 svg {
      width: 134px;
      height: 64px;
      margin-bottom: -6px;
    }

    .btn-wrapper {
      text-align: center;
      margin: auto;
    }

    .hiromeruchan {
      width: 80%;
      margin: 0 auto -8px;
    }

    .hero-inner .btn-contact {
      border-radius: 4px;
      border-width: 2px;
      padding-top: 9px;
      padding-right: 36px;
      padding-bottom: 9px;
      padding-left: 36px;
      gap: 22px;
      font-weight: 600;
      font-size: 16px;
      line-height: 180%;
      margin: auto;
    }

    .hero-inner .btn-contact svg {
      width: 18px;
      height: 18px;
    }

    .hero-visual {
      width: 100%;
      position: absolute;
      top: 140px;
      right: 0;
    }

    .phone {
      width: 62%;
      margin-right: 1%;
    }

    .balloon {
      width: 40%;
      top: 24%;
      left: 6%;
      position: absolute;
      color: #22af9e;
      border-radius: 20px;
      zoom: 1;
    }

    .hero-hukidashi {
      position: absolute;
      bottom: 24%;
      right: 0;
      z-index: -999;
      width: 62%;
    }
  }

  .section-problems {
    padding: 30px 0 120px;
  }

  .section-problems .section-title {
    margin-bottom: 20px;
  }

  .problems-inner {
    flex-direction: column;
    align-items: center;
  }

  .problem-list {
    padding: 30px 16px;
    border-radius: 14px;
  }

  .problem-list li {
    font-size: 14px;
    line-height: 180%;
    align-items: flex-start;
  }
  .problems-illust {
    width: 24%;
    bottom: 16px;
    left: 8%;
  }

  .section-solution {
    padding: 22px 0 50px;
  }

  .section-solution p {
    font-size: 14px;
    line-height: 1;
  }

  .section-solution p span {
    font-size: 22px;
    line-height: 1;
  }

  .section-solution p img {
    margin: 16px 0;
    width: 227px;
  }

  .section-solution::after,
  .section-faq::after {
    background-size: 16% auto;
  }

  .solution-phone {
    width: 15.5%;
    left: 11%;
  }

  .cheer-person {
    width: 17.5%;
    right: 11%;
  }

  .section-reasons {
    padding: 60px 0 80px;
  }

  .section-reasons__label {
    width: 80%;
    margin: 0 auto -32px;
  }

  .section-reasons__box {
    padding: 80px 8px;
    background-image: url(/images/sp-reason_bg.png);
    background-size: 32% auto;
  }
  .reasons-list {
    gap: 80px;
  }

  .reasons-list .reason-item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .reason-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .reason-item__icon {
    width: 76%;
  }

  .reason-item__body {
    width: 100%;
    max-width: 300px;
  }

  .reason-item-midashi {
    gap: 8px;
    justify-content: space-between;
  }

  .reason-item__number {
    font-size: 42px;
  }

  .reason-item__title {
    font-size: 16px;
    line-height: 180%;
    text-align: left;
    flex: 1;
  }

  .reason-item__text {
    font-size: 14px;
    line-height: 180%;
    text-align: left;
    margin-bottom: 0;
  }

  .section-operation {
    padding-bottom: 80px;
  }

  .section-operation__label {
    margin: 60px auto;
    width: 88%;
  }

  .section-operation__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .section-operation__visual,
  .section-operation__content {
    max-width: 100%;
  }

  .operation-title {
    width: 80%;
    margin: 20px auto 40px;
  }

  .section-operation__inner video {
    width: 88%;
  }

  .steps-list {
    margin-bottom: 16px;
  }

  .step-text {
    font-size: 16px;
    text-align: left;
  }

  .cases-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .case-card {
    width: 100%;
    max-width: 340px;
  }

  .section-flow {
    padding: 60px 0 80px;
  }

  .section-flow__label {
    width: 84%;
  }

  .section-flow__inner {
    background-image: url(/images/sp-reason_bg.png);
    background-size: 32% auto;

    border-radius: 14px;
    padding: 60px 8px 30px;
  }
  .flow-list {
    gap: 64px;
    flex-direction: column;
    align-items: center;
  }

  .flow-item {
    width: 72%;
  }

  .flow-item__text {
    font-size: 16px;
  }

  .flow-item + .flow-item::before,
  .flow-item + .flow-item::after {
    top: -10%;
    left: 23%;
    width: 67px;
    height: 4px;
    border-radius: 9999px;
    background-color: #22af9e;
    transform-origin: calc(100% - 2px) 50%;
  }

  .flow-item + .flow-item::before {
    transform: rotate(153deg);
  }

  .flow-item + .flow-item::after {
    transform: rotate(27deg);
  }

  .section-price__label {
    width: 94%;
    margin-bottom: 32px;
  }

  .section-price {
    width: 98%;
  }

  .price-inner {
    flex-direction: column;
    gap: 12px;
  }

  .price-item {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 14px 0px #00624333;
    border-radius: 14px;
  }

  .price-bonus {
    flex-direction: column;
    text-align: center;
  }

  .price-bonus__img {
    gap: 56px;
  }

  .price-header {
    font-size: 20px;
    padding: 12px;
  }

  .price-body {
    font-size: 16px;
    padding: 20px 0;
  }

  .price-body--monthly .price-amount {
    font-size: 42px;
  }

  .price-body--monthly .price-tax {
    font-size: 18px;
  }

  .price-note {
    font-size: 12px;
  }

  .price-bonus__img {
    flex-direction: column;
  }

  .section-faq {
    padding: 60px 5% 80px;
  }

  .section-faq__label {
    width: 78%;
  }

  .faq-item {
    border: 14px;
    padding: 30px 12px;
  }

  .faq-item__q {
    align-items: flex-start;
  }

  .faq-item__icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }

  .faq-item__question,
  .faq-item__answer {
    font-size: 16px;
  }

  .site-footer {
    padding: 40px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    margin: 28px auto;
    gap: 17px;
  }

  .footer-nav a {
    margin: 0 4px;
    font-size: 12px;
    text-align: center;
  }
  .footer-copy {
    font-size: 12px;
  }

  .section-privacy {
    padding: 120px 3% 64px;
    max-width: 1200px;
    background: #fff;
    color: #333;
    font-family: var(--font-jp);
    text-align: left;
  }

  .section-privacy .section-title {
    font-size: 20px;
  }

  .policy-text {
    font-size: 14px;
  }
}

/* ─────────── レスポンシブ ─────────── */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* スマホ用（〜479px） */
@media screen and (max-width: 479px) {
  /* スタイル */
}

/* スマホ〜タブレット用（480〜767px） */
@media screen and (min-width: 480px) and (max-width: 767px) {
  /* スタイル */
}

/* タブレット〜ノートPC（768〜1023px） */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* スタイル */
}

/* ノートPC〜標準デスクトップ（1024〜1279px） */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  /* スタイル */
}

/* デスクトップ以上（1280px〜） */
@media screen and (min-width: 1280px) {
  /* スタイル */
}
