@charset "UTF-8";

    /* --- 基本設定とカスタム変数 --- */
    :root {
      --font-family-base: 'Noto Sans JP', sans-serif;
      --primary-color: #B6A141;
      --text-color: #364153;
      --text-color-02: #364153;
      --text-color-03: #6A7282;
      --background-light: #F9FAFB;
      --background-white: #FFFFFF;
    }

    body {
      font-family: var(--font-family-base);
      color: var(--text-color);
      background-color: #fff;
    }

a {
  color: var(--primary-color); /* rgba() を削除し、変数を直接指定 */
  text-decoration: none;
}
a:hover {
  color: #A08D3A; /* --primary-colorより少し暗い色 */
  opacity: 1; /* 既存のopacity: 0.7を上書き */
}

/* メインのコンテンツ幅（1120px） */
.container-main {
  width: 100%;
  max-width: 70rem; /* 1120px / 16px = 70rem */
  padding-right: var(--bs-gutter-x, 1.0625rem);
  padding-left: var(--bs-gutter-x, 1.0625rem);
  margin-right: auto;
  margin-left: auto;
}

/* 少し狭いコンテンツ幅（例として1064px） */
.container-narrow-01 {
  width: 100%;
  max-width: 66.5rem; /* 960px / 16px = 66.5rem */
  padding-right: var(--bs-gutter-x, 1.0625rem);
  padding-left: var(--bs-gutter-x, 1.0625rem);
  margin-right: auto;
  margin-left: auto;
}

/* 少し狭いコンテンツ幅（例として960px） */
.container-narrow-02 {
  width: 100%;
  max-width: 60rem; /* 960px / 16px = 60rem */
  padding-right: var(--bs-gutter-x, 1.0625rem);
  padding-left: var(--bs-gutter-x, 1.0625rem);
  margin-right: auto;
  margin-left: auto;
}

/* 少し狭いコンテンツ幅（例として840px） */
.container-narrow-03 {
  width: 100%;
  max-width: 52.5rem; /* 840px / 16px = 52.5rem */
  padding-right: var(--bs-gutter-x, 1.0625rem);
  padding-left: var(--bs-gutter-x, 1.0625rem);
  margin-right: auto;
  margin-left: auto;
}

/* Bootstrapのデフォルト.containerも残しておくと便利です */
/* もし不要であればこの部分は削除しても構いません */
.container {
  max-width: 70rem; /* デフォルトもメイン幅に合わせる場合 */
}


    /* ヘッダー & メインビジュアル */
    .hero {
      /* デフォルトとしてJPG画像を読み込む */
      background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/assets/images/bg/bg_giqbutler_mv_01.jpg');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0;    html.webp .hero {
      background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/assets/images/bg/bg_giqbutler_mv_01.webp');
    }
      position: relative;
      overflow: hidden;
    }

    /* WebP対応ブラウザの場合、背景画像をWebPに差し替える */
    html.webp .hero {
      background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/assets/images/bg/bg_giqbutler_mv_01.webp');
    }
    
    /* h1内の特定テキストのスタイル */
    .h1-main {
      display: block;
      font-size: 1.1em;
      line-height: 1.2;
    }
    @media (max-width: 767px) {
      .h1-main {
        font-size: 0.9em;
      }
    }
    
    .h1-subtext {
        color: rgba(174, 154, 63, 1);
        font-size: 0.7em;
        font-weight: 700;
        display: block;
        margin: 0.5em 0 0.2em;
    }
    @media (max-width: 767px) {
      .h1-subtext {
        font-size: 0.6em;
      }
    }


    .h1-secondary-01 {
      font-size: 0.85em; /* 親要素(h1)の半分のサイズになります */
      font-weight: 700; /* 太さを調整 */
    }
    .h1-secondary-02 {
      font-size: 0.5em; /* 親要素(h1)の半分のサイズになります */
      font-weight: 500; /* 太さを調整 */
    }
    .h1-secondary-03 {
      font-size: 0.55em; /* 親要素(h1)の半分のサイズになります */
      font-weight: 700; /* 太さを調整 */
      display: inline-block;
      padding: 0 0.25rem 0 0.5rem;
    }

    /* Fluid Typography (画面幅に応じてフォントサイズが滑らかに変化) */

    /* --- 1. 基本となる本文のフォントサイズを設定 --- */
    /* bodyタグに指定することで、クラスを指定しない<p>や<li>はこのサイズになります */
    body {
      /* SP: 約15px → PC: 15.8px に滑らかに変化 */
      /* 15.8px / 16px = 0.9875rem */
      /* 15px / 16px = 0.9375rem */
      font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 0.9875rem);
      line-height: 1.8; /* 行間も設定しておくと読みやすいです */
    }

    /* --- 2. 用途に応じたフォントサイズのクラスセット --- */

    /* 少し大きめのテキスト（リード文など） */
    .text-large {
      /* SP: 約16px → PC: 18px に滑らかに変化 */
      /* 18px / 16px = 1.125rem */
      /* 16px / 16px = 1rem */
      font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
      line-height: 1.8;
    }

    /* 小さめのテキスト（注釈や補足情報など） */
    .text-small {
      /* SP: 約12px → PC: 12.3px に滑らかに変化 */
      /* 12.3px / 16px = 0.76875rem */
      /* 12px / 16px = 0.75rem */
      font-size: clamp(0.75rem, 0.73rem + 0.1vw, 0.76875rem);
      line-height: 1.7;
    }

    /* さらに小さいテキスト（コピーライトなど） */
    .text-tiny {
      font-size: 0.75rem; /* 約12px (固定) */
      line-height: 1.6;
    }

    h1, .h1 {
      font-size: clamp(2rem, 5vw, 3.2rem); /* 最小, 推奨, 最大 */
      font-weight: 900;
      line-height: 1.3;
    }
    @media (max-width: 767px) {
      h1, .h1 {
        line-height: 1.25;
      }
    }

    h2, .h2 {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 700;
      color: #101828;
      text-align: center;
      margin-bottom: 1.5rem;
      line-height: 1.35;
    }
    h3, .h3 {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      font-weight: 700;
    }
    h4, .h4 {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        font-weight: 700;
    }

    /* --- 各セクションのスタイル --- */
    .section {
        padding: 4rem 0;
    }
    @media (min-width: 768px) {
        .section {
            padding: 6rem 0;
        }
    }

   

    /* ヘッダー & メインビジュアル */
    .hero {
      /* 既存のスタイルは維持 */
      background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/assets/images/bg/bg_giqbutler_mv_01.jpg');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
      
      /* ファーストビューいっぱいに表示するためのスタイル */
      height: 100vh; /* ビューポートの高さ100%に設定 */
      min-height: 600px; /* 極端に縦長の画面でも 최소の高さを確保 */
      display: flex; /* Flexboxで中央揃えを可能に */
      align-items: center; /* 垂直方向の中央揃え */
      padding-top: 0; /* 上下のpaddingをリセット */
      padding-bottom: 0;
      position: relative; /* 凸凹オブジェクト配置の基準点にする */
      overflow: hidden; /* オブジェクトがはみ出た場合に隠す */
    }
    

    /* 「早朝/深夜 対応！」のギザギザオブジェクトのスタイル */
    .seal-badge {
      position: absolute;
      /* 親要素(.col-md-7)の左上を基準に配置 */
      top: -24%;
      left: 7%;
      /* 位置を微調整 */
      transform: translate(-15%, -15%);
      width: 126px;
      height: 127px;
      background-image: url('/assets/images/ico/ico_abogado_01.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.3;
      padding: 0rem;
      z-index: 11;
    }
    .seal-badge-02 {
      position: absolute;
      /* 親要素(.col-md-7)の左上を基準に配置 */
      top: 3%;
      left: -8%;
      /* 位置を微調整 */
      transform: translate(-15%, -15%);
      width: 120px;
      height: 120px;
      background-image: url('/assets/images/ico/ico_abogado_02.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-shadow: none;
      color: var(--text-color);
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.3;
      padding: 0rem;
      z-index: 10;
    }
    @media (max-width: 767px) {
      .seal-badge-02 {
        width: 80px;
        height: 80px;
        top: 5rem;
        left: 1rem;
        font-size: 0.8rem;
      }
    }
    
    @media (max-width: 767px) {
        .seal-badge {
            width: 80px;
            height: 80px;
            font-size: 0.8rem;
            transform: translate(0, 0); /* SPでは微調整なし */
            position: relative; /* SPでは通常の要素として配置 */
            left: 2rem;
            top: 1rem;
        }
        .hero {
            padding: 1rem 0;
            align-items: flex-start; /* SPではコンテンツを上寄せに */
            height: auto;
            min-height: 86vh;
        }
    }




    /* 画像とキャプションを囲む白いコンテナ */
    .image-with-caption {
      background-color: #fff;
      border-radius: 1.5rem; /* 全体の角丸 */
      padding: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      overflow: hidden; /* これが重要！中の要素を角丸に合わせて切り抜く */
    }
    @media (max-width: 767px) {
      .image-with-caption {
        margin: 0rem 0rem 0rem 2rem;
      }
    }

    /* コンテナ内の画像 */
    .image-with-caption img {
      width: 100%;
      height: auto;
      display: block;
      /* 画像自体の角丸も親要素に合わせる */
      border-radius: 1rem; 
    }

    /* キャプション部分 */
    .image-with-caption .caption {
      padding-top: 1rem;
      text-align: center;
      color: var(--text-color);
      text-shadow: none; /* 親のtext-shadowを打ち消す */
    }

    .hero .brand-logo {
        color: var(--primary-color);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .hero .btn {
      text-shadow: none;
    }



    .btn-primary-ohters {
        /* border-color: var(--primary-color); */
        border-width: 2px;
        /* background-color: var(--primary-color); */
        font-weight: 600;
        color: #fff;
    }

    .btn-icon-01 {
      background-image: url(/assets/images/ico/ico_access_01.svg);
      background-repeat: no-repeat;
      background-position: 1.25rem center;
      background-size: 1.35rem;
    }

    /* 問い合わせボタンのスタイル */
    .inquire-btn-others {
        padding: 0.75rem 2rem;
        border-color: #D1D5DC;
        border-width: 2px;
        font-weight: 600;
        color: var(--text-color);
    }

    .btn-min-width-01 {
      min-width: 9.5rem;
    }
    @media (max-width: 767px) {
      .btn-min-width-01 {
        min-width: 100%;
      }
    }

    .btn-min-width-02 {
      min-width: 18.5rem;
    }
    @media (max-width: 767px) {
      .btn-min-width-02 {
        min-width: 100%;
      }
    }

    .btn-min-width-03 {
      min-width: 16rem;
    }
    @media (max-width: 767px) {
      .btn-min-width-03 {
        min-width: 100%;
      }
    }

    /* ボタンのカスタムスタイル */
    .btn-custom {
      transition: all 0.15s ease;
    }

    /* タップした瞬間のスタイル (SP/PC共通) */
    .btn-custom:active {
      transform: scale(0.97); /* 少し縮んで押した感を出す */
      /* background-color: #A08D3A; 少し濃い色に */
    }

    /* ホバー機能があるデバイスだけに適用 */
    @media (hover: hover) {
      .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
      }
    }


    /* 波形の区切り */
    .wave-divider {
        position: relative;
        height: 100px;
        background-color: var(--background-light);
    }
    .wave-divider::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 50px;
        background: #fff;
        clip-path: path('M0,50 C150,0 350,0 500,50 S850,100 1000,50 S1350,0 1500,50 L1500,100 L0,100 Z');
        transform: scaleX(3);
    }


      /* 特徴リスト */
      .feature-list ul {
          list-style: none;
          margin-bottom: 0;
          padding-left: 0;
      }
      @media (max-width: 767px) { 
        .feature-list ul {
          padding: 0;
          margin: 0;
          text-align: center; /* リスト全体を中央揃え */
        }
      }

      .feature-list li {
          /* アイコンとテキストの配置を調整する共通設定 */
          display: flex;
          align-items: center;
          padding-left: 2.25em; /* アイコン分の余白を確保 */
          background-repeat: no-repeat;
          background-position: left center;
          background-size: 1.25em; /* アイコンのサイズ */
          margin-bottom: 0.75rem;
          /* min-height: 2em;  テキストが改行してもアイコンが中央にくるように */
          font-size: 1.5rem;
      }
      @media (max-width: 767px) { 
        .feature-list li { 
          display: flex;
          justify-content: start; /* 水平方向で左揃え */
          font-size: inherit; /* body の文字サイズを継承 */
        } 
      }

      /* 各アイコンの指定（SVGを直接CSSに埋め込んでいます） */
      .feature-list .icon-atention01 {
          background-image: url("/assets/images/ico/ico_attention_01.svg");
      }
      .feature-list .icon-bug01 {
          background-image: url("/assets/images/ico/ico_bug_01.svg");
      }
      .feature-list .icon-time {
          background-image: url("/assets/images/ico/ico_time_01.svg");
      }
      .feature-list .icon-money01 {
          background-image: url("/assets/images/ico/ico_money_01.svg");
      }


    /* 画像サイズ */
    .img-size-01 {
        width: 85%;
        height: auto;
    }
    @media (max-width: 767px) {
      .img-size-01 {
          width: 70%;
      }
    }

    .bg-light-02-custom {
        background-color: var(--background-light);
    }
    .bg-white-02-custom {
        background-color: var(--background-white);
    }

    /* .pricing-section-02 {
        background-image: url("/assets/images/bg/bg_giqbutler_01.jpg");
        background-repeat: no-repeat;
        background-position: left center;
    } */

    .pricing-section-02 {
      background-image: url("/assets/images/bg/bg_giqbutler_01.jpg");
      background-repeat: no-repeat;       /* 画像を繰り返さない */
      background-position: center top;      /* 画像を中央上部に配置 */
      background-size: cover;             /* 要素全体を覆うように画像を拡大・縮小 */

      /* 既存のスタイルは維持 */
      position: relative;
      background-color: #F9FAFB;
      overflow: hidden;
    }

    /* コンテンツが背景の前面に表示されるように設定 */
    .pricing-section-02 .container {
      position: relative;
      z-index: 1;
    }

    .price-area {
      margin-top: 2rem;
    }

    .price-badge {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      font-weight: 700;
      padding: 0.5rem 1.5rem;
      border-radius: 50rem; /* 楕円形にする */
      font-size: 1rem;
      margin-left: 4rem;
      transform: rotate(7deg);
    }

    /* 価格表示の行全体をFlexboxで中央揃え */
    .price-line {
      display: flex;
      justify-content: center;
      align-items: baseline; /* 異なるサイズの文字のベースラインを揃える */
      gap: 0.5rem; /* 要素間の隙間 */
    }

    .price-prefix {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      /* font-weight: 700; */
    }

    .price {
      font-size: clamp(2.5rem, 1rem + 8vw, 5.25rem);
      font-weight: 900;
      color: var(--text-color);
      line-height: 1;
    }

    .price-suffix {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      /* font-weight: 700; */
      text-align: left;
      line-height: 1.2;
    }

    .price-note {
      font-size: 0.875rem;
      color: #6c757d; /* 少し薄い色に */
    }

    /* SPでの見た目を調整 */
    @media (max-width: 767px) {
      .price-prefix,
      .price-suffix {
        font-size: 1rem;
      }
      .price-badge {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
      }
    }


/* 各アイテムのカードスタイル */
.item-card {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2rem; /* アイコン用の左余白を確保 */
  background-color: #fff;
  border: 1px solid #EAECEF;
  border-radius: 50rem; /* Pill shape */
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  font-size: 0.9rem;
  
  /* アイコン表示のための設定 */
  background-repeat: no-repeat;
  background-position: 2rem center; /* アイコンの位置 (左から1rem, 垂直方向中央) */
  background-size: 1.25rem; /* アイコンのサイズ */
}
@media (max-width: 767px) {
  .item-card {
    background-position: 1.5rem center;
  }
}

/* 各アイコン画像の指定 */
/* 注意：以下のパスは仮のものです。実際のSVGファイルへのパスに書き換えてください。 */
.item-card.icon-suitcase { background-image: url("/assets/images/ico/ico_bug_02.svg"); }
.item-card.icon-golf { background-image: url("/assets/images/ico/ico_shoppingbug_01.svg"); }
.item-card.icon-sports { background-image: url("/assets/images/ico/ico_weight_01.svg"); }
.item-card.icon-music { background-image: url("/assets/images/ico/ico_music_01.svg"); }
.item-card.icon-box { background-image: url("/assets/images/ico/ico_danball_01.svg"); background-position: 0.85rem center; }
.item-card.icon-stroller { background-image: url("/assets/images/ico/ico_baby_01.svg"); }
.item-card.icon-hanger { background-image: url("/assets/images/ico/ico_shirts_01.svg"); }
.item-card.icon-help { background-image: url("/assets/images/ico/ico_hatena_01.svg"); }


    /* ステップ・流れ */
    .step-card {
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        padding: 1.5rem 0.5rem;
        text-align: center;
        height: 100%;
    }
    .step-icon {
        margin: 0 auto 1.5rem;
    }
    

/* ============================================= */
/* ▼▼▼ アクセスここから ▼▼▼ */
/* ============================================= */

/* 地図のコンテナ */
.map-container-full-height {
    width: 100%;
    height: 400px; /* SP版での高さを指定 */
}
.map-container-full-height iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* PC表示時 (768px以上) のスタイル */
@media (min-width: 768px) {
    .map-container-full-height {
        height: 600px; /* PC版での高さを指定 */
    }
    .access-text-content {
        /* コンテンツ幅(1120px)の半分から、さらに内側に余白を設ける */
        max-width: 560px;
        padding: 2rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
  /* テキストコンテンツの余白 */
  .access-text-content {
      padding: 2rem 2rem 0 2rem;
  }
}


/* 地図のコンテナ（SP版のスタイル） */
.map-container-breakout {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 0;
    /* SPでは正方形にする */
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-bottom: 2rem;
}

.map-container-breakout iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* PC表示時 (992px以上) のスタイル */
@media (min-width: 992px) {
    .map-container-breakout {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%; /* 画面の左半分を占める */
        height: 100%;
        aspect-ratio: auto; /* 正方形の設定を解除 */
        margin-bottom: 0;
        border-radius: 0 16px 16px 0; /* 右側の角だけ丸くする */
    }
}

    .dotted-background {
      /* 背景画像として円形のグラデーションを指定 */
      background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1.25px, transparent 1px);

      /* グラデーションを繰り返す間隔を指定（ドットの間隔） */
      background-size: 25px 25px; 
    }


/* 番号付きリスト (変更なし) */
.list-circled-steps {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
  counter-reset: directions-counter;
}
.list-circled-steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 1rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  font-weight: 700;
  counter-increment: directions-counter;
}
.list-circled-steps li::before {
  content: counter(directions-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: var(--text-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
}

/* モーダル内のビデオ */
#guidanceVideo {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
}

.card-office-item {
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12.75px;
}



/* アクセス情報セクション */
.access-section {
  padding: 4rem 0;
}

/* 各アクセス情報のカード */
.access-card {
  /* background-color: #fff; */
  border-radius: 12.75px;
  padding: 2rem 1rem;
}
.access-card:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .access-card {
    padding: 3rem;
  }
  .access-card:not(:last-child) {
    margin-bottom: 3rem;
  }
}

/* 駅アイコンのコンテナ */
.station-icons {
  display: flex;
  gap: 0.5rem;
}

/* 駅アイコンの共通スタイル */
.station-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  min-width: 62px;
  padding: 0 0.5rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}
.station-icon-small {
  font-size: 0.75rem;
}
/* 各鉄道会社のアイコン色 */
.icon-jr { background-color: #228b22; }
.icon-metro { background-color: #009bda; }
.icon-toei { background-color: #008b49; }

/* 画像の角丸 */
.rounded-img {
  border-radius: 1rem;
}


/* 動画をモーダル内で横幅いっぱいに表示 */
.video-wrapper {
  position: relative;
  width: 100%;
  /* 16:9 のアスペクト比。必要なら 4/3 等に変更 */
  aspect-ratio: 16 / 9;
  background: #000;
}

/* 古いブラウザ対応（aspect-ratio 非対応時） */
@supports not (aspect-ratio: 1/1) {
  .video-wrapper {
    padding-top: 56.25%; /* 16:9 */
    height: 0;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* iframe 常用スタイル（aspect-ratio 対応ブラウザでも確実にフィットさせる） */
.video-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}


/* ============================================= */
/* ▲▲▲ アクセスここまで ▲▲▲ */
/* ============================================= */




/* ============================================= */
/* ▼▼▼ payment  start    ▼▼▼ */
/* ============================================= */

/* 3ステップのリストの親要素 */
.process-steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem 0; /* SPでの縦の隙間を指定 */
  counter-reset: step-counter;
}
@media (max-width: 767px) {
  .process-steps {
    flex-direction: column;
    gap: 1rem 0; /* SPでの縦の隙間を指定 */
  }
}

/* 各リスト項目(li)をFlexアイテムとして設定 */
.process-steps li {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .process-steps li {
    width: 100%; /* PCでは均等に広げる */
    position: relative; /* 矢印を絶対配置するための基準点 */
    padding-bottom: 3rem; /* 矢印分のスペースを確保 */
  }
}

/* ステップ間の矢印 */
.process-steps li:not(:last-child)::after {
  content: '';
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d0d5dd'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: contain;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .process-steps li:not(:last-child)::after {
      /* 矢印を絶対配置でliの下中央に */
      position: absolute;
      bottom: -0.75rem; /* liの下からの距離 */
      left: 50%;
      transform: translateX(-50%); /* 水平中央揃え */
      
      /* 下向きの三角形SVGに変更 */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d0d5dd'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      
      /* サイズとマージンをリセット */
      width: 50px; 
      height: 50px;
      margin: 0; 
    }
}

/* ステップの各ボックス */
.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem;
  width: 322px; /* PCでの幅を固定 */
  min-height: 131px;
  font-weight: 700;
}

/* CSSで描画するステップ番号 */
.step-box .step-number {
  counter-increment: step-counter;
  margin-bottom: 0.75rem;
}
.step-box .step-number::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
}

/* SP用の調整 */
@media (max-width: 767px) {
  .step-box {
    width: 100%; /* SPでは幅を100%に */
  }
  .process-steps {
    gap: 1rem; /* SPでは縦横の隙間を均等に */
  }
}


/* 対応決済セクション */
.payment-methods {
  padding-top: 2rem;
  margin-top: 3rem !important; /* !importantでBootstrapのmt-5を上書き */
}
.payment-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.payment-icons-wrapper {
  max-width: 280px;
}


/* ============================================= */
/* ▲▲▲ payment  end ▲▲▲ */
/* ============================================= */


/* ============================================= */
/* ▼▼▼ ご利用にあたっての注意事項   start ▼▼▼ */
/* ============================================= */
.notes-section {
  background-color: var(--background-light); /* 必要に応じて背景色を設定 */
}

/* 注意事項全体を囲むボックス */
.notes-box {
  border: 2px solid var(--primary-color); /* デザインに合わせた金色の枠線 */
  border-radius: 16px; /* 角丸 */
  padding: 2rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .notes-box {
    padding: 3rem;
  }
}

/* 各項目（アイコン＋テキスト） */
.note-item {
  display: flex;
  align-items: flex-start; /* アイコンの上端とテキストの上端を揃える */
}

/* 最後の項目以外に下余白を設定 */
.note-item:not(:last-child) {
  margin-bottom: 2rem;
}

/* アイコンの円 */
.note-icon {
  flex-shrink: 0; /* アイコンが縮まないように */
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1rem;
  margin-top: 0.1em; /* テキストとの微調整 */
}

/* テキストコンテンツ */
.note-content p {
  margin-bottom: 0;
  line-height: 1.8;
}

.note-title {
  font-weight: 700;
  font-size: 1.1em; /* 基本の文字サイズより少し大きく */
  margin-bottom: 0.25rem !important;
}
/* ============================================= */
/* ▲▲▲ ご利用にあたっての注意事項   ここまで ▲▲▲ */
/* ============================================= */


/* ============================================= */
/* ▼▼▼ contact-section   start ▼▼▼ */
/* ============================================= */
.contact-section {
  background-color: var(--background-light);
}

/* 全体を囲む白いボックス */
.contact-box {
  background-color: #fff;
  /* border-radius: 1.5rem; */
  padding: 2rem;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12.75px;
}
@media (min-width: 768px) {
  .contact-box {
    padding: 3rem 4rem;
  }
}

/* 連絡先カードの共通スタイル */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1rem;
  border: 2px solid #F3F4F6; /* 薄いグレーの枠線 */
  border-radius: 12.75px;
  text-decoration: none;
  color: var(--text-color);
  background-color: #F9FAFB;
  transition: all 0.2s ease-in-out;
}

/* 強調表示のカード（金色の枠線） */
.contact-card.is-highlight {
  border-color: var(--primary-color);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* アイコンの色と形を定義 */
.icon-phone {
  background-image: url("/assets/images/ico/ico_tell_01.svg");
}
.icon-envelope {
  background-image: url("/assets/images/ico/ico_mail_01.svg");
}

.contact-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text {
  margin-bottom: 0;
}
.contact-text.text-small {
  font-size: 0.875rem;
}
/* ============================================= */
/* ▼▼▼ contact-section   end  ▼▼▼ */
/* ============================================= */


/* ============================================= */
/* ▼▼▼ modal   start  ▼▼▼ */
/* ============================================= */

.modal-content {
  max-height: 95vh; /* モーダルの高さを画面の80%に制限 */
  overflow-y: auto; /* 縦スクロールを有効にする */
}

.modal-dialog {
  margin: 1rem auto; /* 上下の余白を減らす */
}

/* .row の中の偶数番目の .col-md-6 に対してスタイルを適用 */
.direction-stills-wrapper .row > .col-md-6:nth-child(even) {
  margin-top: 3rem; /* 下にずらすための余白（数値は調整可能） */
}

/* ============================================= */
/* ▼▼▼ modal   end  ▼▼▼ */
/* ============================================= */


    /* 注意事項リスト */
    .notes-list ul {
        list-style: none;
        padding-left: 0;
    }
    .notes-list li {
        padding-left: 2em;
        position: relative;
        margin-bottom: 0.75rem;
    }
    .notes-list li::before {
        content: '●';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-size: 1.2em;
        line-height: 1;
    }


/* ============================================= */
/* ▼▼▼ header, footer   start ▼▼▼ */
/* ============================================= */

/* --- Header --- */
.site-header {
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .site-header {
    padding: 0.25rem 0;
  }
}

@media (max-width: 767px) {
  .header-logo {
    margin-left: -1rem; /* SPでロゴを左寄せに */
  }
}

.header-logo img {
  height: 46px; /* ロゴの高さを指定 */
}
@media (max-width: 767px) {
  .header-logo img {
    height: 35px; /* ロゴの高さを指定 */
  }
}

.header-nav .nav-link {
  color: var(--text-color);
  font-weight: 700;
  padding: 0.5rem 1rem;
}
/* ナビゲーションのリンクとフッターのリンクにだけ適用する例 */
.header-nav .nav-link:hover,
.footer a:hover {
  opacity: 0.7;
}

/* SP用の調整 */
@media (max-width: 767px) {
  .header-nav {
    display: none; /* SPではメニューを非表示（ハンバーガーメニューにする場合は別途実装が必要です）*/
  }
}


/* ============================================= */
/* ▼▼▼ SP版ハンバーガーメニュー  start ▼▼▼ */
/* ============================================= */

/* SP版ハンバーガーボタンのスタイル */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2854, 65, 83, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvasメニューのスタイル調整 */
.offcanvas-header {
  border-bottom: 1px solid #dee2e6;
}
.offcanvas-body .nav-link {
  color: var(--text-color);
  font-weight: 700;
  padding: 0.75rem 0; /* 上下の余白を調整 */
}
.offcanvas-body .nav-link:hover {
  opacity: 0.7;
}


/* --- Offcanvas Menu Styles --- */

/* なめらかなアニメーション */
.offcanvas {
  transition: transform .4s ease-in-out !important; /* アニメーション速度とイージングを調整 */
}

.offcanvas-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem; /* 余白を調整 */
}

/* Offcanvas ロゴのスタイル */
.offcanvas-logo img {
  height: 35px; /* 必要に応じてロゴサイズを調整 */
}

/* ナビゲーションリストブロックを中央に配置 */
.offcanvas-body {
  padding: 2rem 1.5rem;
}
.offcanvas-body .navbar-nav {
  width: fit-content; /* コンテンツに合わせて幅を縮小 */
}

/* Offcanvas リンクのスタイル */
.offcanvas-body .nav-link {
  color: var(--text-color);
  font-weight: 700;
  padding: 0.5rem 0 0.25rem; /* 垂直方向の余白を調整 */
  border-bottom: 2px solid var(--primary-color); /* 金色の下線 */
  margin-bottom: 1.5rem; /* リンク間のスペース */
}

/* SP版ハンバーガーボタンのスタイル */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2854, 65, 83, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================= */
/* ▼▼▼ SP版ハンバーガーメニュー  end ▼▼▼ */
/* ============================================= */


/* --- Footer --- */
.site-footer {
  background-color: #101828; /* デザインの濃い紺色 */
  color: #fff;
  padding: 3rem 0;
}
.footer-logo img {
  height: 38px; /* ロゴの高さを指定 */
}
.copyright {
  font-size: 0.875rem;
  color: #98A2B3; /* 少し薄いグレー */
}

.footer-list {
  list-style: none;
  padding-left: 0;
}
.footer-list li {
  padding: 0 0.75rem;
}
.footer-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* ============================================= */
/* ▼▼▼ header, footer   end ▼▼▼ */
/* ============================================= */


.txt-color-01 {
  color: var(--text-color-03);
}

.let-spc-01 {
  letter-spacing: -0.05em;
}