/* ————————————————————————————
   Variables
———————————————————————————— */
:root {
    --color-bg: #FFF8E8;
    --color-text: #333;
    --color-primary: #f15a24;    /* ヒーロータイトル */
    --color-accent: #ffd54f;     /* 黄色シェイプ */
    --color-cta: #007acc;        /* CTAボタン */
    --color-white: #fff;
    --spacing: 1rem;
    --container-width: 1200px;
  }
  
  /* ————————————————————————————
     リセット & ベース
  ———————————————————————————— */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ————————————————————————————
     コンテナ
  ———————————————————————————— */
  .content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }

  main {
    position: relative;
    overflow: hidden;
  }

  /* 共通 */
  .title__upperFirst {
    position: relative;
    font-weight: bold;
    font-size: 52px;
    line-height: 80px;
    text-align: center;
    color: #eb5d08;
    padding: 175px 0 250px;
  }

  .title__upperFirst::before {
    content: "";
    position: absolute;
    top: 115px;
    width: 87px;
    height: 70px;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
  }

  .fade-in {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示トリガー後の状態 */
.fade-in.is-fadein-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
  
  /* ————————————————————————————
     ヘッダー
  ———————————————————————————— */
/* ===== ベース ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }
  
  /* ===== ヘッダー ===== */
.site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
  }
  
  /* ——— 内部コンテナ ——— */
  .content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;    /* デザインに合わせて調整 */
    padding: 0 50px; /* 必要に応じて左右内側余白 */
    z-index: 5;

  }
  
  /* ——— ロゴ ——— */

  .header__logo {
    z-index: 1100;
  }
  .header__logo img {
    display: block;
    height: 40px;    /* デザインに合わせて調整 */
    width: auto;
  }
  
  /* ——— ハンバーガー・トグル ——— */
  /* ── ハンバーガーアイコンの基本／アニメーション準備 ── */
/* — 共通ユーティリティ — */
.desktop-only { display: inline-flex; }
.mobile-only  { display: none; }
.nav-toggle { display: none; }

/* — ハンバーガーアイコン — */
.nav-toggle-label {
  display: none;
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 24px;
  cursor: pointer;
  z-index: 3000; /* メニューより上 */
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  position: absolute;
  width: 100%; height: 2px;
  background: #212121; border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle-label span {
  top: 50%; transform: translateY(-50%);
}
.nav-toggle-label span::before { content:""; top: -8px; }
.nav-toggle-label span::after  { content:""; top: 8px; }

/* — モバイル時だけ表示＆動作 — */
@media (max-width: 999px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }

  .site-header {
    position: fixed;
    width: 100%;
}

  /* チェックボックスを表示＆重ねる */
  .nav-toggle {
    display: block;
    position: absolute;
    top: 1rem; right: 1rem;
    width: 30px; height: 24px;
    opacity: 0; z-index: 3100;
    cursor: pointer;
  }

  /* × アニメーション */
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 50%; transform: translateY(-50%) rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 50%; transform: translateY(-50%) rotate(-45deg);
  }

  /* — モバイルメニュー本体 — */
  .header__nav--mobile {
    position: fixed;
    inset: 0;                   /* top:0; right:0; bottom:0; left:0; */
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    padding-top: 4rem;          /* 上部のアイコン分の余白 */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-toggle:checked + .nav-toggle-label + .header__nav--mobile {
    transform: translateX(0);
  }

  /* モバイルメニュー内ヘッダー */

  .mobile-nav__logo img {

  }

  .mobile-nav__logo {
    display: block;
  }

  .mobile-nav__close {
    width: 30px; height: 24px;
    position: relative;
    cursor: pointer;
  }
  .mobile-nav__close span,
  .mobile-nav__close span::before,
  .mobile-nav__close span::after {
    position: absolute;
    width: 100%; height: 2px;
    background: #212121; border-radius: 2px;
    transition: 0.3s;
  }
  /* 初期は × を表示 */
  .mobile-nav__close span {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .mobile-nav__close span::before {
    content: ""; top: 0; transform: rotate(90deg);
  }
  .mobile-nav__close span::after {
    content: ""; top: 0; opacity: 0;
  }
  /* チェックOFF時はハンバーガーに戻す */
  .nav-toggle:not(:checked) + .nav-toggle-label + .header__nav--mobile
    .mobile-nav__close span {
      transform: translateY(-50%) rotate(0deg);
  }
  .nav-toggle:not(:checked) + .nav-toggle-label + .header__nav--mobile
    .mobile-nav__close span::before {
      top: -8px; transform: none; opacity: 1;
  }
  .nav-toggle:not(:checked) + .nav-toggle-label + .header__nav--mobile
    .mobile-nav__close span::after {
      top: 8px;  transform: none; opacity: 1;
  }

  /* モバイルメニュー項目 */
  .mobile-nav__list {
    list-style: none;
    margin: 3rem 0 1rem;
    padding: 0 1rem;
    width: 100%;
  }
  .mobile-nav__item {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #212121;
    text-decoration: none;
  }

  .mobile-nav__illustration {
    margin: 0 1rem 1rem;
    text-align: right;
  }
  .mobile-nav__illustration img {
    max-width: 100%;
    height: auto;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.75rem 1rem;
    background: #2875D4;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  .mobile-cta__icon img {
    width: 1.25rem;
    margin-right: 0.5rem;
  }

  .mobile-nav__phone,
  .mobile-nav__hours {
    margin: 0 1rem .5rem;
    font-size: 0.875rem;
    color: #212121;
  }
}

/* — デスクトップメニュー（元のまま） — */
.header__nav--desktop ul {
  display: flex;
  align-items: center;
  gap: calc(80vw / 19.2);
}
.header__nav--desktop .nav-item--cta { margin-left: auto; }
  /* ——— ナビゲーション（デスクトップ） ——— */
  /* ─── ナビのリスト ─── */
/* ナビリスト */
.header__nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(80vw / 19.2);
  }

  .header__nav ul li a {
    font-weight: bold;
font-size: 21px;
text-align: left;
color: #212121;
text-decoration: none;
  }

  .header__nav-item {
    transition: .2s;
  }

  .header__nav-item:hover {
    color: #eb5d08;
    text-shadow: 0px 4px 10px rgba(235, 93, 8, 0.6);
  }
  
  /* CTA 用リストアイテムは最後に */
  .nav-item--cta {
    margin-left: auto; /* デスクトップ時は右端に寄せる */
  }
  
  /* CTAボタン */
  .nav-item--cta .header__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;  /* 上下左右の内側余白 */
    background: #2875D4;       /* ボタン背景色 */
    color: #fff;
    text-align: center;
    border-radius: 8px;        /* 角丸 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 0px 0px 30px 30px;
    position: relative;
    top: 8px;
    overflow: hidden;
    transition: 0.5s;
  }

  .nav-item--cta .header__cta::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .nav-item--cta .header__cta:hover::before {
    left: 100%;
  }

  .nav-item--cta .header__cta:hover {
    filter: drop-shadow(0px 4px 20px #3a7fd5);
  }

  
  /* アイコン */
  .header__cta-icon img {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
    display: block;
  }
  
  /* テキスト */
  .header__cta-text {
    font-weight: bold;
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    color: #fff;
  }

  .nav-toggle { 
    display: none; }
  
  /* ===== モバイル時（1000px以下） ===== */
  @media (max-width: 1000px) {
    /* トグル表示 */
    .nav-toggle-label { display: block; }
  
    /* デスクトップメニュー／CTAを隠す */
    .desktop-only { display: none; }

    /* ドロワーメニュー */
    .header__nav {
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        display: none;
        display: flex;
        display: block;
        position: fixed;
        top: 0;
        height: 100vh;
        padding: 0 20px;
      }
      .header__nav--desktop {
        display: none;
    }
      .header__nav ul {
        position: relative;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        line-height: 1;
        margin-top: 50px;
        margin-bottom: 50px;
      }

      .header__nav ul::after {
        content: "";
        position: absolute;
        bottom: -42px;
        right: 0px;
        width: 100px;
        height: 113px;
        background: url(img/img_contact_person_spnav.png) no-repeat center / contain;
    }
      /* CTAもリストの末尾に表示されたまま */
      .nav-item--cta {
        margin-left: 0;  /* 上下並びなので auto は不要 */
      }
      .nav-item--cta .header__cta {
        width: 100%;
        justify-content: center;
      }
      .mobile-nav__header {
        height: 56px;
    display: flex;
    align-items: center;
      }

      .header__nav ul li a {
font-size: 18px;
      }
  }







  .lead__text {
    font-weight: bold;
    font-size: 24px;
    line-height: 40px;
    text-align: left;
    color: #212121;
    position: relative;
  }

  .lead__text::before {
    content: "";
    position: absolute;
    top: -67px;                  /* テキスト行の上端に合わせる */
    left: 0;                  /* 親要素の左端に合わせる */
    width: 97px;              /* アイコンの幅 */
    height: 67px;             /* アイコンの高さ */
    background-size: contain;
    }
  
  /* ————————————————————————————
     ヒーロー
  ———————————————————————————— */
  .hero {
    position: relative;
    padding: 125px 50px 260px;
  }
  .hero__inner {
    display: flex;
    align-items: center;
    position: relative;
  }
  .hero__text {
    width: 49%;
  }
  .hero__title {
    font-weight: bold;
    font-size: 52px;
    line-height: 80px;
    text-align: left;
    color: #eb5d08;
    margin-bottom: 30px;
    position: relative;        /* 疑似要素配置の基準に */
    display: inline-block;     /* サイズがテキスト幅に収まるように */
  }

  
  /* 上部のクエスチョンアイコン */
  .hero__title::before {
    content: "";
    position: absolute;
    top: -41px;
    left: 183px;
    width: 60px;
    height: 62.8px;
    background: url(img/ico_qa.png) no-repeat center / contain;
  }
  
  /* 下部のビルアイコン */
  .hero__title::after {
    content: "";
    position: absolute;
    bottom: -64px;
    right: -39px;
    width: 72px;
    height: 69px;
    background: url(img/ico_building.png) no-repeat center / contain;
  }

  .hero__lead {
    margin-bottom: 30px;
  }
  .hero__points {
    list-style: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    padding: 25px 30px 20px;
    width: 475px;
    font-size: 18px;
    margin-bottom: 160px;
  }
  .hero__points li {
    position: relative;   /* ::before を絶対配置にするため */
    padding-left: 1.75em; /* アイコン分だけ左に余白を空ける */
    margin-bottom: 10px;
  }
  .hero__points li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 25px;        /* アイコンの幅 */
    height: 25px;       /* アイコンの高さ */
    background: url('img/thought-bubble.png') no-repeat center center;
    background-size: contain;
  }
  .hero__illustration {
    width: calc(698vw / 19.2);
    max-width: 698px;
  }
  .shape--yellow-1,
  .shape--yellow-2 {
    position: absolute;
  }
  .shape--yellow-1 {
    width: calc(1327vw / 19.2);
    top: -30vw;
    right: -16.7vw;
    z-index: -1;
    position: absolute;
  }
  .shape--yellow-2 {
    width: calc(1672vw / 19.2);
    bottom: -564px;
    right: -18.7vw;
    z-index: -1;
    position: absolute;
  }

  .shape--yellow-2 img {
    max-width: unset;
  }

  .shape--yellow-3 {
    width: calc(1000vw / 19.2);
    z-index: -1;
    position: absolute;
    left: -34%;
    bottom: -224px;
}
  
  /* ————————————————————————————
     Info セクション
  ———————————————————————————— */
  .info {
    padding: 0 0 250px;
  }
  .info__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .info__title {
    padding: 0 50px 0;
  }
  .info__item {
    width: 50%;
  }

  .info__text {
    margin-bottom: 40px;
  }

  .info__text__img {
    margin: 0 0 0 auto;
    width: fit-content;
  }
  .info__item--highlight {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    line-height: 40px;
    text-align: left;
    color: #212121;
    padding: 70px 50px 70px 70px;
  }

  .info__item--highlight::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    width: 100vw;
    background: url(img/bg_info_txt.png) no-repeat center / cover;
    z-index: -1;
    border-radius: 10px 0px 0px 10px
  }

  .info__title::before  {
    background: url("img/ico_info.png") no-repeat center center;
    left: 50px;
  }

  .info__item--img img {
    width: calc(424vw / 19.2);
    max-width: 424px;
    margin: 0 auto;
  }

  .detail-link {
    display: inline-flex;
    align-items: self-end;
    gap: 55px;          /* テキストとアイコンの間隔 */
    position: relative;
    color: #eb5d08;
    text-decoration: none;
  }



  .detail-link__wrapper {
    text-align: right;
  }

  .service .detail-link__wrapper {
    max-width: 630px;
  }
  
  /* テキスト部分：角丸下線を擬似要素で */
  .detail-link__text {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    color: #eb5d08;
  }
  .detail-link__text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;          /* 下線の下マージン調整 */
    width: 180px;
    height: 3px;
    background: #eb5d08;
    border-radius: 1.5px;
  }
  
  /* アイコンラッパー */
  .detail-link__icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
  }
  
  /* 円エフェクト */
  .detail-link__icon-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;                  /* 親の右端 */
    width: 45px;
    height: 45px;
    background: #ffbb04;
    filter: drop-shadow(0 4px 20px #ffbb04);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  
  /* 矢印アイコン */
  .detail-link__icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-top: 6px;
  }
  
  /* ホバー時 */
  .detail-link:hover .detail-link__icon {
    transform: translateX(10px);
  }
  .detail-link:hover .detail-link__icon-wrapper::before {
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* --- service セクション --- */
  .service {
    padding: 0 50px 350px;
  }
  
  .service__inner {
    display: flex;
    align-items: center;
    padding: 0 50px;
  }
  

  /* 左カラム */
  .service__left {
    width: 50%;
  }
  .service__icon {
    width: 40px;
    margin-bottom: 1rem;
    display: block;
  }
  
  .service__title {
    margin-bottom: 40px;
  }

  .service__title::before  {
    background: url("img/ico_service.png") no-repeat center center;
  }
  
  .service__desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    color: #212121;
    max-width: 630px;
    margin-bottom: 40px;
  }
  
  .service__link {
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  .service__link:hover {
    text-decoration: underline;
  }
  .service__arrow {
    display: inline-block;
    margin-left: 0.5em;
    /* 矢印を少し下げたい場合は vertical-align 調整も可 */
  }
  
  /* 右カラム */
  .service__illustration {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .service__right {
    width: calc(630vw / 19.2);
    max-width: 630px;
  }
  
  
  /* ————————————————————————————
     お客様の声
  ———————————————————————————— */
  .voice {
    padding: 0 50px;
  }
  .voice__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .voice__title::before  {
    background: url("img/ico_voice.png") no-repeat center center;
    left: 50%;
    transform: translateX(-50%);
  }
  .voice__list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .voice__card {
    
    width: 32.4%;
  }

  .voice__card a {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    padding: 38px;
    text-decoration: none;
    display: block;
    transition: .2s;
    min-height: 205px;
    box-sizing: content-box;
  }

  .voice__card a:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.24);
    transform: translateY(-10px);
  }

/* ヘッダー：左にメタ情報、右に画像 */
.voice__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  /* メタ情報を縦積み */
  .voice__card-meta {
    display: flex;
    flex-direction: column;
  }
  
  /* タイトル */
  .voice__card-title {
    font-weight: bold;
    font-size: 22px;
    text-align: left;
    color: #212121;
    margin-bottom: 8px;
    margin-top: 5px;
  }
  
  /* 名前・属性 */
  .voice__card-name {
    font-size: 18px;
line-height: 22px;
text-align: left;
color: #212121;
  }
  
  /* 画像 */
  .voice__card-img {
    width: 58px;
    flex-shrink: 0;
  }
  
  /* 本文 */
  .voice__card-desc {
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    color: #212121;
  }
  .voice__more {
    text-align: right;
    margin-top: 1rem;
  }
  .voice__more a {
    color: var(--color-accent);
    text-decoration: none;
  }

  #voice1 .voice__list {
    margin-bottom: 40px;
  }
  
  /* ————————————————————————————
     お問い合わせバナー
  ———————————————————————————— */

  
  /* --- セクション全体 --- */
  .cta-section {
    padding: 250px 50px 120px;
  }
  
  /* --- 左右並びのラッパー --- */
  .cta-section__inner {
    border-radius: 10px;
background: #fff;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 50px 40px 40px;
  }
  
  /* --- 左カラム --- */
  .cta-section__left {
    width: 52%;
  }
  
  .cta-section__icon {
    width: 48px;
    margin-bottom: 1rem;
    display: block;
  }
  
  .cta-section__heading {
    position: relative;
    font-weight: bold;
    font-size: 36px;
    line-height: 50px;
    text-align: left;
    color: #212121;
    margin-bottom: 20px;
  }

  .cta-section__heading::before {
    background: url(img/ico_contact.png) no-repeat center center;
    width: 180px;
    height: 110px;
    background-size: contain;
    top: -106px;
    left: -35px;
  }
  
  .cta-section__text {
    font-size: 21px;
    line-height: 32px;
    text-align: left;
    color: #212121;
    
  }
  
  /* --- 右カラム --- */
  .cta-section__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    min-width: 361px;
  }
  
  /* ——— ボタン ——— */
  .cta-section__button {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
font-size: 27px;
line-height: 17px;
text-align: center;
color: #fff;
    text-decoration: none;
    padding: 12px 23px;
    border-radius: 30px;
background: #2875D4;
margin-top: 14px;
position: relative;
  overflow: hidden;
    transition: 0.5s;
  }

  .cta-section__button::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .cta-section__button:hover::before {
    left: 100%;
    filter: drop-shadow(0px 4px 20px #3a7fd5);
  }

  .cta-section__button:hover {
    filter: drop-shadow(0px 4px 20px #3a7fd5);
  }



  .cta-section__button-icon {
    width: 35px;
    aspect-ratio: 1/1;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  /* ——— 電話番号 ——— */
  .cta-section__phone {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
font-size: 27px;
text-align: left;
color: #212121;
    margin: 0;
  }
  .cta-section__phone-icon {
    width:  35px;
    height: 35px;
    flex-shrink: 0;
  }
  
  /* ——— 営業時間 ——— */
  .cta-section__hours {
    font-size: 18px;
text-align: left;
color: #212121;
  }
  
  .cta-section__image {
    display: block;
    max-width: 172px; /* 必要に応じて調整 */
    width: 100%;
    height: auto;
  }

  .title__lowerSecond {
    position: relative;
    font-weight: bold;
font-size: 24px;
text-align: left;
color: #212121;
  }

  .title__lowerSecond::before {
    content: "";
    position: absolute;
    top: -67px;                  /* テキスト行の上端に合わせる */
    left: 0;                  /* 親要素の左端に合わせる */
    width: 97px;              /* アイコンの幅 */
    height: 67px;             /* アイコンの高さ */
    background-size: contain;
    }


  /* サービスページ */
  /*―― 特長（benefits）セクション ――*/

  .title__upperFirst--service::before {
    background: url(img/ico_service.png) no-repeat center center;
  }
  .benefits {
    padding: 4rem 0;
    background: var(--color-bg, #fdf6e3);
  }

  .benefits__container {
    padding: 0 50px;
    position: relative;
  }
  
  .benefits__heading {
    display: flex;
    margin-bottom: 125px;
  }

  .benefits__heading::before  {
    background: url("img/ico_benefit.png") no-repeat center center;
    background-size: contain;
  }
  
  .benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 6rem 2.5rem;
  }
  
  /* 各アイテム共通 */
  .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* 白いカード */
  .benefit__card {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    width: 100%;
    min-height: 226px;
    margin-bottom: 30px;
  }
  
  /* カード内アイコン円 */
/* ── アイコン円のシャドウを上部だけに ── */
.benefit__icon-wrap {
    position: absolute;
    top: -53px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -6px 6px -2px rgba(0, 0, 0, 0.1);
  }

  
  .benefit__icon-wrap img {
    width: 52px;
    height: 52px;
    position: relative;
    top: -15px;
  }
  
  /* カードタイトル・リスト */
  .benefit__title {
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    color: #212121;
    position: relative;
  }
  
  .benefit__list {
    margin: 1rem 0 0;
    list-style: circle;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #212121;
    padding-left: 16px;
  }
  
  /* ピル型説明 */
  .benefit__pill {
    position: relative;    
    border-radius: 45px;
    background: #ffbb04;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    width: 100%;
  }
  
  /* 吹き出しの三角 */
  .benefit__pill::before {
    content: "";
    position: absolute;
    top: -20px;                     /* 三角の高さ分だけ上へ */
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #ffbb04;
    width: 0;
    height: 0;
  }

  /* 最終行のイラスト */
  .benefit--illustration {
    width: calc(470vw / 19.2);
    max-width: 470px;
    position: absolute;
    bottom: 0;
    right: calc(190vw / 19.2);
    min-width: 350px;
  }
  .benefit--illustration img {
    max-width: 100%;
    height: auto;
  }
  
  /*―― Q&A セクション ――*/
  .qa {
    padding: 4rem 0;
  }

  .qa-container {
    padding: 0 50px;
  }
  
  .qa__header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .qa__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
  }
  .qa__title {
    position: relative;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: #212121;
  }

  .qa__title::before {
    content: "";
    position: absolute;
    top: -63px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 62px;
    background: url(img/ico_qa.png) no-repeat center center;
    background-size: contain;
  }


  
  .qa__list {
    margin: 0;
    padding: 0;
  }
  .qa__question {
    display: grid;
    grid-template-columns: auto 1fr;  /* 左にアイコン幅＋余白、右にテキスト */
    column-gap: 20px;                 /* .qa__question-number のマージン相当 */
    align-items: baseline;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    border-bottom: 2px solid #FFBB04;
    padding-bottom: 5px;
    margin-bottom: 25px;
  }
  
  .qa__question-number {
    /* ここはそのままアイコンの大きさ */
    font-size: 30px;
    color: #ffbb04;
    line-height: 30px;  /* テキスト行高と揃える */
  }
  .qa__answer {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #212121;
    padding-left: 45px;
  }

  .qa__answer:not(:last-of-type) {
    margin-bottom: 75px;
  }


/* aboutページ */
.title__upperFirst--about::before {
    background: url(img/ico_info.png) no-repeat center center;
  }

  /* ===== ごあいさつ ===== */
.greeting {
    padding: 0 50px 200px;
  }
  .greeting__inner {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .greeting__photo {
    width: 48%;
  }
  .greeting__photo img {
    width: 480px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  .greeting__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  .greeting__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .greeting__icon { width:32px; height:32px; }
  .greeting__title { 
    font-size:1.5rem; font-weight:600; margin:0;
    position: relative;
 }
  .greeting__body p { margin-bottom:1rem; line-height:1.6; }
  .greeting__sign {
    font-size: 20px;
    line-height: 30px;
    text-align: right;
    color: #212121;
    font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  }
  
  .greeting__title::after {
    width: 50px;
    height: 71px;
    content: "";
    position: absolute;
    top: -26px;
    right: -62px;
    background-image: url(img/ico_greeting.png);
    background-size: contain;
}


  .greeting__sign--highlight {
    font-size: 16px;
  }

  .greeting__body {
    font-size: 18px;
line-height: 30px;
text-align: left;
color: #212121;

  }
  
  /* ===== 下段３列カード ===== */
  .greeting__cards {
    display: grid;
    /* 2枚目だけちょっと広め：1fr ＝ベース幅、1.3fr ＝30%広く、1fr */
    grid-template-columns: 1fr 1.16fr 1fr;
    gap: 30px;
  }
  
  /* カードの共通部分 */
  .greeting__card {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    padding: 30px 30px 40px;
    box-sizing: border-box;
    position: relative;
  }
  
  /* タイトル */
  .greeting__card-title {
    font-weight: bold;
    font-size: 24px;
    text-align: left;
    color: #212121;
    margin-bottom: 20px;
  }
  
  /* リストカード */
  .greeting__card-list {
    list-style: none;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #212121;
  }
  .greeting__card-list li {
    position: relative;
    padding-left: 1em;
  }
  .greeting__card-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ffd54f;
    font-size: 0.75rem;
  }

  .greeting__card-text--highlight {
    font-weight: bold;
  }
  
  /* テキストカード */
  .greeting__card-text {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #212121;
  }
  
  /* イラストカード */
  .greeting__card-img {
    text-align: right;
    margin-top: 1rem;
    width: 210px;
    position: absolute;
    right: 4%;
    bottom: 10px;
  }
  .greeting__card-img img {
    
  }


  /* 概要 */

  /* ===== セクション全体 ===== */
  .overview {
    padding: 0 50px 0;
  }
  
  /* ===== ヘッダー ===== */

  
  /* ===== 詳細リスト ===== */
  .overview__details {
    /* 左半分にリストを寄せる */
    display: flex;
    padding: 0 50px;
  }
  .overview__list {
    display: grid;
    /* ラベル列＋値列 */
    grid-template-columns: auto 1fr;
    row-gap: 30px;
    /* リスト幅を左半分に */
    width: 100%;
    margin: 0;
  }
  .overview__list dt,
  .overview__list dd {
    margin: 0;
    padding-bottom: 5px;
  }
  /* ラベル（dt）のスタイル */
  .overview__list dt {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    color: #ffbb04;
    border-bottom: 2px solid #FFBB04;
    padding-right: 3em;
  }
  /* 値（dd）の下にライン */
  .overview__list dd {
    border-bottom: 2px solid #2121211A;
    font-size: 18px;
    text-align: left;
    color: #212121;
    padding-left: 2em;
  }

  .about__title {
    position: relative;
    margin-bottom: 40px;
  }

  .about__title::before {
    content: "";
    position: absolute;
    top: -63px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 62px;
    background: url(img/ico_building.png) no-repeat center center;
    background-size: contain;
  }
  
  /* ——— セクション共通 ——— */
.access-map {
    padding: 0 50px;
  }
  
  /* ——— ヘッダー部分 ——— */
  .access-map__header {
    position: relative;
    margin-bottom: 40px;
  }

  .map__title::before {
    content: "";
    position: absolute;
    top: -63px;
    left: 50%;
    transform: translateX(-50%);
    width: 276px;
    height: 70px;
    background: url(img/ico_map.png) no-repeat center center;
    background-size: contain;
  }

  .access-map__icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
  }
  .access-map__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }
  .access-map__info {
    font-size: 18px;
    text-align: center;
    color: #212121;
    margin-bottom: 30px;
  }
  
  /* ——— Map iframe を全幅に ——— */
  .access-map__frame {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .access-map__frame iframe {
    width: 100%;
    height: 400px;         /* デザインに合わせて調整 */
    border: none;
    display: block;
  }

  .voice--lower {
    padding: 0 50px;
  }



  .title__upperFirst--voice::before {
    background: url(img/ico_voice.png) no-repeat center center;
  }

  .voice--lower .voice__card {
    width: 31.5%;
    margin-bottom: 40px;
  }
  
  .voice--lower .voice__card-desc {
    font-size: 18px;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(33,33,33,0.2);
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .modal-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    z-index: 99;
  }

  .voice__card-header--modal {
    justify-content: start;
  }

  .modal-scroll {
    overflow: scroll;
    width: calc(1320vw / 19.2);
    overflow: hidden;
    border-radius: 10px;
  }

  .modal-scroll-inner {
    padding: 40px;
    height: 100%;
    overflow: auto;
    max-height: 600px;
  }

  .button-open {
    cursor: pointer;
  }

  .button-close {
    position: absolute;         /* fixed ではなく absolute で親.rel(=fixed)に対して */
    bottom: -78px;              /* ボタン半分（28px）だけ下にはみ出す */
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: #fff;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.16));
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
  }
  
  /* ×マーク */
  .button-close::before,
  .button-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 32px;
    background: #212121;
    transform-origin: center;
  }
  .button-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .button-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .pagination {
    text-align: center;
  }

  .pagination__list {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;               /* 数字の間隔を0.3emで揃える */
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    font-weight: bold;
    transition: .2s;
  }

  .pagination__list a {
    transition: .2s;
  }

  .pagination__list a:hover {
    opacity: .7;
  }
  
  .pagination__list a,
  .pagination__list .pagination__dots {
    color: #212121;
    text-decoration: none;
  }

  /* アクティブなページだけ太字に */
  .pagination__list a.active {
    color: #EB5D08;
  }


  
  /* フォームイントロ */

  .title__upperFirst--contact::before {
    width: 105px;
    height: 56px;
    background: url(img/ico_contact_form.png) no-repeat center center;
    background-size: contain;
  }
  .contact-form__intro {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #212121;
    margin-bottom: 30px;
  }
  
  /* フォーム本体 */
  .contact-form {
    margin-bottom: 90px;
    padding: 0 50px;
  }
  
  /* 各フォームグループ */
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    color: #212121;
    margin-bottom: 24px;
  }

  .form-inner {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    padding: 40px 35px 45px;
    margin-bottom: 42px;
  }
  
  /* 必須・任意バッジ */
  .badge {
    display: inline-block;
    margin-left: 20px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    vertical-align: bottom;
    border-radius: 10px;
    font-weight: 500;
  }
  .badge--required {
    background: #ffbb04;
    color: #fff;
  }
  .badge--optional {
    background: rgba(33, 33, 33, 0.5);
  }
  
  /* テキスト入力・電話・メール */
  .form-input {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background: #fff8e8;
    border: none;
    box-sizing: border-box;
font-size: 18px;
text-align: left;
color: #212121;
padding: 20px;
  }
  
  /* セレクト */
  .form-select-wrapper {
    position: relative;
  }
  .form-select {
    width: 100%;
        font-weight: bold;
font-size: 18px;
text-align: left;
color: #212121;
padding: 20px;
border: none;
    appearance: none;
    box-sizing: border-box;
    border-radius: 10px;
    background: #fff8e8;
  }
  .form-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #666;
    pointer-events: none;
  }
  
  /* テキストエリア */
  .form-textarea {
    width: 100%;
    resize: vertical;
    box-sizing: border-box;
    height: 160px;
border-radius: 10px;
background: #fff8e8;
font-size: 18px;
text-align: left;
color: #212121;
padding: 20px;
border: none;
  }
  
  /* プライバシーポリシー同意 */
  .contact-form__policy {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #212121;
    margin-bottom: 25px;
  }
  .contact-form__policy a {
    color: #EB5D08;
    text-decoration: underline;
    font-weight: bold;
  }
  .contact-form__policy-checkbox {
    font-weight: bold;
    text-align: center;
    display: block;
    font-size: 18px;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
  }
  .contact-form__policy-checkbox input {
    width: 16px;
    height: 16px;
    font-weight: bold;
    margin-right: 15px;
    margin-bottom: 43px;
  }
  
  /* 送信ボタン */
  .contact-form__submit {
    text-align: center;
  }
  .btn--primary {
    width: 342px;
    display: inline-block;
    border-radius: 999px;
    background: #2875d4;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
font-size: 24px;
text-align: center;
color: #fff;
box-sizing: content-box;
position: relative;
overflow: hidden;   
transition: 0.5s;
  }

  .btn--primary::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .btn--primary:hover::before {
    left: 100%;
    filter: drop-shadow(0px 4px 20px #3a7fd5);
  }

  .btn--primary:hover {
    filter: drop-shadow(0px 4px 20px #3a7fd5);
  }


  /* 確認ページ用の表示項目 */
.confirm-value {
    width: 100%;
    min-height: 60px;
    border-radius: 10px;
    background: #fff8e8;
    padding: 20px;
    font-size: 18px;
    line-height: 26px;
    color: #212121;
    margin-top: -1.5rem;  /* ラベルと重ならないよう */
    margin-bottom: 1.5rem;
    box-sizing: border-box;
  }
  
  /* 修正ボタン（セカンダリ） */
  .btn--secondary {
    display: inline-block;
    background: #fff;
    color: #212121;
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 26px;
    display: block;
    margin: 0 auto 40px;
    cursor: pointer;
  }
  
  /* 並び順調整 */
  .contact-form__submit {
    text-align: center;
  }

  /* ——— サンクスページ全体 ——— */
.contact-thanks {
    padding: 0 50px 200px;
  }
  
  /* 中央寄せラッパー */
  .contact-thanks__inner {
    text-align: center;
    padding: 0 1rem;
  }
  
  /* タイトル */
  .contact-thanks__title {
    font-size: 1.75rem;
    line-height: 2.25rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 1rem;
  }
  
  /* メッセージ */
  .contact-thanks__message {
    font-size: 1rem;
    line-height: 1.6;
    color: #212121;
    margin-bottom: 2rem;
  }
  
  /* ボタン — 既存の .btn--secondary を流用 */
  .btn--secondary--thanks {
    display: inline-block;
    background: #fff;
    color: #212121;
    border: 1px solid #ccc;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin: 0 auto 40px;
    width: fit-content;
  }

  /* ——— 共通コンテナ ——— */

  
  /* ——— セクション全体 ——— */
  .privacy-policy {
    padding: 0 50px 100px;
    color: #212121;
    line-height: 1.8;
  }
  
  /* ——— タイトル ——— */
  .privacy-policy__title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  /* ——— リード文 ——— */
  .privacy-policy__lead {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1rem;
  }
  
  /* ——— 各条見出し ——— */
  .privacy-policy__heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  /* ——— 本文 ——— */
  .privacy-policy__text {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
  }
  
  /* ——— 箇条書きリスト ——— */
  .privacy-policy__list {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
    list-style: decimal;
    font-size: 0.95rem;
  }
  .privacy-policy__list li {
    margin-bottom: 0.5rem;
  }
  
  /* ——— お問い合わせ先 ——— */
  .privacy-policy__contact {
    font-style: normal;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }


  /* ————————————————————————————
     フッター
  ———————————————————————————— */

  
  /* ——— フッター全体 ——— */
  .site-footer {
    background: #fff;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  
  /* ——— フッター内コンテンツ横並び ——— */
  .footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
  }

  .footer-inner {
    padding: 0 50px;
  }
  
  /* --- ナビゲーションをグリッド化 --- */
  .footer-nav ul {
    display: grid;
    /* 3列×2行 */
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    row-gap: 10px;
    column-gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-address-text {
    margin-bottom: 10px;
  }
  /* リンクスタイル */
  .footer-nav a {
    text-decoration: none;
    font-weight: bold;
    font-size: 21px;
    text-align: left;
    color: #212121;
    display: inline-block;
    white-space: nowrap;   /* 折り返しは不要なら */
    transition: .2s;
  }

  .footer-nav a:hover {
    color: #eb5d08;
    text-shadow: 0px 4px 10px rgba(235, 93, 8, 0.6);
  }
  
  /* ——— 左カラム：ロゴ画像＋住所 ——— */
  .footer-info {

  }
  
  .footer-logo-img {
    display: block;
    width: 272px;    /* 必要に応じて調整 */
    height: auto;
    margin-bottom: 23px;
  }
  
  .footer-address p {
    font-size: 21px;
    line-height: 30px;
    text-align: left;
    color: #212121;
  }
  
  /* ——— プライマリナビ ——— */
  .footer-nav--primary ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-nav--primary a {
    text-decoration: none;
    color: #f15a24;
    font-weight: bold;
    font-size: 0.875rem;
  }
  
  /* ——— セカンダリナビ（２列レイアウト） ——— */
  .footer-nav--secondary ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    row-gap: 0.5rem;
    column-gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-nav--secondary a {
    text-decoration: none;
    color: var(--color-text, #212121);
    font-size: 0.875rem;
  }
  
  /* ——— コピーライト ——— */
  .footer-copy {
    text-align: right;
    font-size: 18px;
    text-align: right;
    color: #212121;
    margin-top: 50px;
  }

  /* デフォルトは非表示 */
.mobile-fixed-cta {
    display: none;
  }
  
  /* 1000px未満で表示＋固定 */
  @media (max-width: 999px) {
    .mobile-fixed-cta {
      display: flex;
      justify-content: center;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: transparent;
      /* iOSセーフエリアもカバーしたい場合 */
      /* padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)); */
    }
  
    .mobile-fixed-cta__button {
      display: inline-flex;
      align-items: center;
      background: #2875d4;
      border-radius: 30px 30px 0px 0px;
      padding: 7px 25px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      width: 100%;
      justify-content: center;
    }
  
    .mobile-fixed-cta__badge {
      display: inline-block;
      background: #fff;
      font-weight: bold;
font-size: 18px;
line-height: 30px;
text-align: left;
color: #3a7fd5;
padding: 1px 7px;
      margin-right: 7px;
    }
  
    .mobile-fixed-cta__text {
      white-space: nowrap;
      font-weight: bold;
font-size: 18px;
line-height: 30px;
text-align: left;
color: #fff;
    }
  }

  @media (max-width: 600px) {
    .modal-scroll {
        width: calc(1320vw / 19.2);
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
        height: 100%;
    }
    
    .modal-scroll-inner {
        padding: 40px 20px;
        overflow: auto;
    }
    
    
    .modal-window {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
        z-index: 99;
        width: calc(100% - 40px);
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
        z-index: 99;
        width: calc(100% - 40px);
        height: calc(100vh - 180px);
    }
    
    
    .button-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .button-close::before, .button-close::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2px;
        height: 32px;
        background: #212121;
        transform-origin: center;
    }
    .button-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .button-close::before, .button-close::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2px;
        height: 32px;
        background: #212121;
        transform-origin: center;
    }
    
    .button-close::before, .button-close::after {
        width: 2px;
        height: 22px;
    }
    
    .button-close {
        width: 40px;
        height: 40px;
        background: #fff;
        filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.16));
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        cursor: pointer;
        z-index: 2;
        bottom: -46px;
    }
  }

  @media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        gap: 45px;
    }

    .footer-nav ul {
        display: flex;
         flex-direction: column;
         row-gap: 18px;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-logo-img {
        width: 278px;
        margin-bottom: 20px;
    }

    .footer-info {
        font-size: 18px;
        line-height: 22px;
        text-align: left;
        color: #212121;
    }

    .footer-address-text {
        margin-bottom: 20px;
    }

    .footer-nav a {
        font-size: 18px;
    }

    .footer-copy {
        font-size: 14px;
        margin-top: 35px;
    }

    .site-footer {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .header__inner {
        height: 56px;
        padding: 0 20px;
    }

    .header__logo img {
        height: auto;
        width: 245px;
    }

    .hero__title {
        font-size: 38px;
        line-height: 60px;
        margin-bottom: 80px;
        width: 100%;
    }

    .hero {
        padding: 186px 20px 250px;
    }

    .hero__inner {
        display: block;
    }

    .lead__text {
        font-size: 24px;
        line-height: 38px;
    }

    .hero__text {
        width: 100%;
    }

    .hero__points {
        padding: 30px 20px;
        width: auto;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero__illustration {
        width: 100%;
    }

    .hero__title::before {
        top: -39px;
        left: 138px;
        width: 48px;
    }

    .hero__title::after {
        bottom: -54px;
        right: 0;
        width: 52px;
        height: 50px;
    }

    .shape--yellow-1 {
        width: 115%;
        top: -17vw;
        right: auto;
        left: 24%;
    }

    .hero__points li::before {
        width: 20px;
        height: 20px;
    }

    .info__title {
        padding: 0 20px 0;
    }

    .info__title::before {
        left: 20px;
        width: 80px;
        height: 72px;
        background-size: contain;
    }

    .info__item {

    }

    .info__inner {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .info__item--img img {
        width: 100%;
        max-width: 424px;
        margin: 40px auto;
    }

    .info__item--img {
        width: 222px;
        margin: 0 auto;
    }

    .info__item--highlight {
        font-size: 18px;
        line-height: 40px;
        padding: 0;
        width: 100%;
    }

    .info__text {
        margin-bottom: 10px;
        padding: 70px 0 0 20px;
    }

    .info__text__img {
        margin: 0 0 0 auto;
        width: 236px;
    }

    .info {
        padding: 0 0 300px;
    }


    .service {
        padding: 0 20px 250px;
    }

    .service__inner {
        display: block;
        align-items: center;
        padding: 0;
    }

    .service__left {
        width: 100%;
    }

    .service__desc {
        font-size: 18px;
        line-height: 30px;
    }

    .detail-link__text {
        font-size: 20px;
    }

    .service__right {
        width: 100%;
        max-width: 630px;
    }

    .service .detail-link__wrapper {
        max-width: 630px;
        margin-bottom: 30px;
    }

    .voice {
        padding: 0 20px;
    }

    .voice__list {
        flex-direction: column;
    }

    .voice__card {
        width: 100%;
        margin-bottom: 30px;
    }

    .voice__card-title {
        font-size: 20px;
    }

    .voice__card-name
 {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: #212121;
}

.voice__card-header {
    flex-direction: column-reverse;
    margin-bottom: 25px;
}

.voice__card-desc {
    font-size: 18px;
    line-height: 30px;
}

.voice__card a {
    padding: 40px 20px;
}

.voice__card-img {
    margin: 0 auto;
}

.cta-section {
    padding: 250px 20px 120px;
}

.cta-section__inner {
    display: block;
    padding: 54px 20px 40px 20px;
}

.cta-section__heading {
    font-size: 28px;
line-height: 36px;
margin-bottom: 30px;
}

.cta-section__left {
    width: 100%;
}

.cta-section__text {
    color: #212121;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
}
.cta-section__button {
    font-size: 20px;
    line-height: 24px;
}

.cta-section__right {
    min-width: unset;
}

.cta-section__button {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    padding: 10px 23px;
    justify-content: center;
}

.cta-section__phone {
    font-size: 20px;
}

.cta-section__hours {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-section__image {
    max-width: unset;
}

.shape--yellow-2 {
    width: 580px;
    bottom: -720px;
    right: -50px;
}

.shape--yellow-3 {
display: none;
}

.title__upperFirst
 {
    padding: 210px 0 250px;
    font-size: 38px;
    line-height: 60px;
}

.title__upperFirst::before {
    top: 148px;
}

.benefits__container {
    padding: 0 20px;
    position: relative;
}

.benefits__heading {
    margin-bottom: 90px;
}
.benefits__grid {
    display: block;
}

.benefit__pill {
    padding: 15px 5px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0;
}



.benefit--illustration {
    width: 280px;
    max-width: 470px;
    position: static;
    min-width: unset;
    margin: 0 0 0 auto;
}

.benefit__item {
    margin-bottom: 100px;
}

.benefit__item + .benefit__item.benefit--full {
    margin-bottom: 40px;
}

  .benefits {
    padding: 4rem 0 300px;
}

.qa-container {
    padding: 0 20px;
}

.greeting {
    padding: 0 20px 300px;
}

.greeting__inner {
    display: block;
    margin-bottom: 30px;
}

.greeting__title {
    font-size: 24px;
    margin: 0 0 40px 0;
}

.greeting__photo {
    width: 100%;
    margin-bottom: 30px;
}

.greeting__body p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
}

.greeting__sign {
    margin-bottom: 10px;
}

.greeting__cards {
    display: block;
    gap: 30px;
}

.greeting__card {
    margin-bottom: 30px;
    padding: 40px 30px;
}

.overview {
    padding: 0 20px 0;
}

.overview__details {
    display: flex;
    padding: 0;
}

.overview__list {
    display: block;
    width: 100%;
    margin: 0;
}


.overview__list dt {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    color: #ffbb04;
    border-bottom: 2px solid #FFBB04;
    padding-right: 3em;
    margin-bottom: 15px;
}


.overview__list dd {
    border-bottom: 2px solid #2121211A;
    font-size: 18px;
    text-align: left;
    color: #212121;
    padding-left: 0;
    margin-bottom: 30px;
    padding-bottom: 13px;
}

.access-map {
    padding: 0 20px;
}

.greeting__title::after {
    top: -26px;
    right: auto;
    left: 131px;
}

.greeting__card-img {
    text-align: right;
    margin-top: 1rem;
    width: 210px;
    position: relative;
    margin: 20px 0 0 auto;
    right: -30px;
}

.voice--lower {
    padding: 0 20px;
}

.voice__list {
    display: block;
}

.voice--lower .voice__card {
    width: 100%;
    margin-bottom: 30px;
}



.contact-form {
    margin-bottom: 90px;
    padding: 0 20px 250px;
}

.contact-form__intro {
    padding: 0 20px;
}

.form-inner {
    padding: 40px 20px 30px;
    margin-bottom: 42px;
}

.contact-form__policy {
    margin-bottom: 25px;
    padding: 0 20px;
}

.btn--primary {
    width: 100%;
    display: inline-block;
    color: #fff;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    color: #212121;
    margin-bottom: 25px;
}

.btn--secondary {
    margin-bottom: 20px;
}

.privacy-policy {
    padding: 0 20px 100px;
}

.hero__points li::before {
    top: 14px;
  }

  .mobile-nav__logo img {
    width: 245px;
  }
  
  .benefit__card {
    min-height: unset;
  }

  .benefit__list {
    margin-top: 30px;
    padding-left: 20px;
  }

}