/* ===== デザイントークン ===== */
:root {
  /* テキスト */
  --color-text:              #1e1e1e;
  --color-text-sub:          #6f6f6f;

  /* 背景 */
  --color-bg:                #FFFDF4;
  --color-card-bg:           #fff9e4;   /* 安心と信頼 3カード */
  --color-border:            #eaeaea;   /* テーブルボーダー */
  --color-sticky-line:       #fff2c4;   /* 下追従バー上区切り線 */

  /* ブランドカラー（赤系 / スマート支店開設記念） */
  --color-primary:           #e2161d;
  --color-primary-dark:      #920b0f;   /* ボタンシャドウ */
  --color-primary-bg:        #fef3f4;   /* テーブルラベル列背景 */

  /* CTAボタン（オレンジグラデーション） */
  --color-cta-from:          #fbbe04;
  --color-cta-to:            #fa8232;
  --color-cta-shadow:        #cd5b10;

  /* 宝くじ七福神ボタン */
  --color-takarakuji-btn:    #fbbe04;
  --color-takarakuji-shadow: #cd5b10;

  /* よくある質問ボタン（緑） */
  --color-green:             #86bb15;
  --color-green-dark:        #67900f;

  /* フォント */
  --font-family:             'Noto Sans JP', sans-serif;
  --fw-regular:              400;
  --fw-medium:               500;
  --fw-bold:                 700;
  --fw-black:                900;

  /* フォントサイズ（PC基準） */
  --fs-xsmall:               10px;   /* 脚注 */
  --fs-xsmall-plus:          12px;   /* 注釈（傍点） */
  --fs-small:                14px;   /* 注釈 */
  --fs-nav:                  16px;   /* ナビゲーション */
  --fs-body:                 18px;   /* 本文 */
  --fs-btn:                  20px;   /* 詳細を見るボタン */
  --fs-btn-lg:               24px;   /* 下追従・FAQボタン */
  --fs-label:                24px;   /* カードラベル */
  --fs-heading-s:            24px;
  --fs-heading-m:            32px;
  --fs-heading-l:            40px;
  --fs-product-name:         44px;   /* 商品名 */
  --fs-accent:               56px;

  /* 行間 */
  --lh-body:                 1.6;
  --lh-heading:              1.3;
  --lh-tight:                1.0;
  --teiki-sub-emphasis-scale: 1.2; /* サブコピー「金利」「宝くじ」 */

  /* レイアウト */
  --inner-width:             1200px;
  --inner-gutter:            24px;
  --inner-padding:           264px;  /* (1728 - 1200) / 2 */

  /* ヘッダー・下追従バー高さ */
  --header-h:                96px;
  --sticky-h:                146px;

  --scale-unit: calc(100vw / 390);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-width: 1200px;
  font-family: var(--font-family);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  background-color: var(--color-bg);
  /* padding-top: var(--header-h); */
  padding-bottom: var(--sticky-h);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block !important;
  }
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.header-logo img {
  height: 28px;
  width: clamp(180px, 21vw, 400px);
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.7vw, 16px);
  list-style: none;
}

.header-nav-item a {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 0.9vw, 16px);
  color: #1e1e1e;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.header-nav-item a:hover {
  color: var(--color-cta-from);
  opacity: 1;
}

.header-nav-item--current a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cta-from) 0%, var(--color-cta-to) 100%);
}

.header-cta {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.header-cta img {
  display: block;
  width: clamp(140px, 12vw, 200px);
  height: auto;
}

/* ハンバーガーボタン（PC では非表示） */
.sp-menu-btn {
  display: none;
}

/* ===== SPドロワー（PC では非表示） ===== */
.sp-drawer {
  display: none;
}

/* ===== 下追従CTA ===== */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: var(--sticky-h);
  border-top: 2px solid var(--color-sticky-line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.fixed-cta__lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1;
  white-space: nowrap;
}

.fixed-cta__lead::before,
.fixed-cta__lead::after {
  content: '';
  flex: 0 0 15px;
  width: 15px;
  height: 22px;
  background: url("../images/fix/fix_accent.svg") center / 100% 100% no-repeat;
}

.fixed-cta__lead::after {
  transform: scaleX(-1);
}

.fixed-cta__btn {
  display: block;
  width: 560px;
  margin-top: 12px;
  line-height: 0;
  transition: opacity 0.2s;
}

.fixed-cta__btn:hover {
  opacity: 0.7;
}

.fixed-cta__btn img {
  width: 100%;
}

/* ===== 注意書きバー ===== */
.notice-bar {
  background-color: #fff9e4;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.notice-bar__text {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-align: center;
  line-height: 1.4;
}

/* ===== 2. 2つの定期預金 ===== */
.section-teiki {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.section-teiki__inner {
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-gutter);
}

/* タイトル */
.section-teiki__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.section-teiki__title-wrap::before,
.section-teiki__title-wrap::after {
  content: '';
  display: block;
  flex: 0 0 80px;
  height: 2px;
  background-color: var(--color-cta-from);
}

.section-teiki__title {
  font-size: var(--fs-heading-l);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--color-text);
}

.section-teiki__title-accent {
  color: var(--color-primary);
}

.section-teiki__title-accent-number {
  font-size: var(--fs-accent);
}
/* サブコピー */
.section-teiki__sub {
  text-align: center;
  font-size: var(--fs-body);
  line-height: 1.75; /* 傍点の上方向余白 */
  margin-bottom: 40px;
}

.section-teiki__sub-accent {
  position: relative;
  display: inline-block;
  font-weight: var(--fw-bold);
  font-size: calc(1em * var(--teiki-sub-emphasis-scale));
}

/* 傍点（about-atm__emphasis と同系統：疑似要素 + box-shadow） */
.section-teiki__sub-accent::before {
  content: "";
  position: absolute;
  top: -0.22em;
  left: 50%;
  width: 0.26em;
  height: 0.26em;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.section-teiki__sub-accent--red::before {
  background: none;
  box-shadow: -0.5em 0 0 var(--color-primary), 0.5em 0 0 var(--color-primary);
}

.section-teiki__sub-accent--orange::before {
  background: var(--color-cta-from);
  box-shadow: -0.78em 0 0 var(--color-cta-from), 0.78em 0 0 var(--color-cta-from);
}
/* カードラッパー */
.section-teiki__cards {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

/* カード */
.teiki-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.teiki-card--smart {
  border: 2px solid var(--color-primary);
  background-color: #ffffff;
}

.teiki-card--takarakuji {
  border: 2px solid var(--color-cta-from);
  background-color: #fff;
}

/* カードヘッダー画像 */
.teiki-card__header-img {
  width: 538px;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 40px;
}
.teiki-card__header {
  position: relative;
  z-index: 1;
}
/* カードボディ（テーブル） */
.teiki-card__body {
  position: relative;
  z-index: 0;
  margin-top: -.5em;
  padding: 0 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* テーブル */
.teiki-card__table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  font-size: var(--fs-body);
}

.teiki-card__th {
  width: 136px;
  padding: 14px 12px;
  font-weight: var(--fw-bold);
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border);
  line-height: 1.4;
}

.teiki-card--smart .teiki-card__th {
  background-color: var(--color-primary-bg);
}

.teiki-card--takarakuji .teiki-card__th {
  background-color: #fffbe8;
}

.teiki-card__td {
  padding: 14px 12px;
  border: 1px solid var(--color-border);
  line-height: 1.6;
  vertical-align: middle;
}

.teiki-card__td--flex {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.teiki-card__td-note {
  display: block;
  font-size: var(--fs-xsmall);
  font-weight: var(--fw-regular);
  color: var(--color-text-sub);
  margin-top: 4px;
}

.teiki-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teiki-card__list li {
  padding-left: .8em;
  position: relative;
  line-height: 1.5;
}

.teiki-card__list li + li {
  margin-top: 6px;
}

.teiki-card__list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-cta-to);
  font-size: .3em;
  top: 2em;
}
.teiki-card__list--after-lead li::before {
  font-size: .3em;
  top: 2em;
  color: #1E1E1E;
}

.teiki-card__emph {
  color: var(--color-cta-to);
  font-weight: var(--fw-bold);
}

.teiki-card__sup {
  font-size: var(--fs-xsmall);
  vertical-align: baseline;
  color: var(--color-text-sub);
  line-height: 0;
}

/* カードフッター（ボタン） */
.teiki-card__footer {
  padding: 0 24px 24px;
  margin-top: auto;
}

.teiki-card__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 28px;
  font-size: var(--fs-btn);
  font-weight: var(--fw-bold);
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s;
}

.teiki-card__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.teiki-card__btn--smart {
  background-color: var(--color-primary);
  box-shadow: 0 4px 0 var(--color-primary-dark);
}

.teiki-card__btn--smart:hover {
  opacity: 0.7;
}

.teiki-card__btn--takarakuji {
  background: var(--color-takarakuji-btn);
  box-shadow: 0 4px 0 var(--color-takarakuji-shadow);
}

.teiki-card__btn--takarakuji:hover {
  opacity: 0.7;
}

/* 注釈 */
.section-teiki__notes {
  margin-top: 8px;
}

.section-teiki__note {
  font-size: var(--fs-xsmall-plus);
  font-weight: var(--fw-regular);
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 2px;
  padding-left: 1em;
  text-indent: -1em;
}

/* ===== 4. スマート支店とは ===== */
.section-about {
  padding-bottom: 0;
}

.section-about__inner {
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  margin: 0 auto;
  padding: 80px var(--inner-gutter) 0;
}

/* セクションタイトル */
.section-about__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-about__title-wrap::before,
.section-about__title-wrap::after {
  content: '';
  display: block;
  flex: 0 0 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    #FBBE04 0%,
    #FA8232 100%
  );
}
.section-about__title-wrap::after {
  background: linear-gradient(
    to left,
    #FBBE04 0%,
    #FA8232 100%
  );

}

.section-about__title {
  position: relative;
  font-size: var(--fs-heading-l);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--color-text);
}

.section-about__title-bank-line,
.section-about__title-smart-line {
  display: inline;
}

.section-about__title-bouten {
  position: relative;
  display: inline-block;
}

/* タイトル上の装飾ドット */
.section-about__title::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-24%);
  width: 252px;
  height: 8px;
  background-image: radial-gradient(circle, var(--color-cta-from) 4px, transparent 4px);
  background-size: 40px 8px;
  background-repeat: repeat-x;
}

/* --- ATM手数料カード --- */
.about-atm {
  background: #fff8e0;
  border-radius: 15px;
  box-shadow: 0 4px 10px 4px rgba(80, 67, 4, 0.07);
  height: 230px;
  margin-bottom: 64px;
  font-feature-settings: "palt" 1;
}

.about-atm__inner {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  padding: 40px;
  gap: 0;
}

.about-atm__icon {
  flex-shrink: 0;
  width: 85px;
  margin-right: 45px;
}

.about-atm__icon img {
  width: 85px;
  height: auto;
}

.about-atm__main {
  flex-shrink: 0;
  position: relative;
  width: 517px;
  height: 150px;
}

.about-atm__catch {
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 32px;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 0;
  white-space: nowrap;
}

.about-atm__emphasis {
  position: relative;
  display: inline-block;
  font-weight: var(--fw-bold);
  font-size: var(--fs-heading-l);
}

.about-atm__emphasis::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbe04;
  transform: translateX(-50%);
}

.about-atm__emphasis--deposit::before {
  box-shadow: -60px 0 0 #fbbe04, -20px 0 0 #fbbe04, 20px 0 0 #fbbe04, 60px 0 0 #fbbe04;
  background: none;
}

.about-atm__emphasis--use::before {
  box-shadow: -39px 0 0 #fbbe04, 0 0 0 #fbbe04, 39px 0 0 #fbbe04;
}

.about-atm__fee {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
}

.about-atm__fee-label {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.6;
  transform: translateY(30px);
  white-space: nowrap;
}

.about-atm__fee-zero {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 150px;
  color: var(--color-primary);
  line-height: 1;
}

.about-atm__fee-en {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.6;
  transform: translateY(30px);
}

.about-atm__divider {
  flex-shrink: 0;
  width: 3px;
  height: 150px;
  background-color: #B9B9B9;
  margin: 0 59px 0 20px;
}

.about-atm__right {
  flex: 1;
  padding-top: 10px;
}

.about-atm__atm-list {
  font-size: 24px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 2px;
}

.about-atm__tokku {
  font-size: 32px;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-text);
  white-space: nowrap;
}

.about-atm__tokku strong {
  font-size: 40px;
  font-weight: var(--fw-bold);
}

.about-atm__tokku-accent {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.about-atm__tokku-accent::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbe04;
  box-shadow: -39px 0 0 #fbbe04, 39px 0 0 #fbbe04;
  transform: translateX(-50%);
}

/* --- 提供サービス一覧 --- */
.about-services {
  margin-bottom: 68px;
}

.about-services__title-wrap {
  text-align: center;
  margin-bottom: 68px;
}

.about-services__title {
  display: inline-block;
  position: relative;
  font-size: var(--fs-heading-m);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text);
  padding-bottom: 8px;
}

.about-services__title::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background-color: var(--color-cta-from);
  border-radius: 2px;
}

.about-services__card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px 4px rgba(80, 67, 4, 0.07);
  padding: 40px 16px;
  margin-bottom: 16px;
}

.about-services__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.about-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 16px;
  text-align: center;
  position: relative;
}

.about-services__item + .about-services__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
}

.about-services__icon {
  width: auto;
  max-width: 90px;
  height: 68px;
  object-fit: contain;
}

.about-services__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-text);
}

.about-services__notes {
  padding: 0 2px;
}

.about-services__note {
  font-size: var(--fs-xsmall-plus);
  font-weight: var(--fw-regular);
  color: var(--color-text-sub);
  line-height: 1.5;
}

/* --- 安心と信頼の北九州銀行 --- */
.about-trust {
  background: #ffffff;
  padding: 64px 0 80px;
}

.about-trust__inner {
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-gutter);
}

.about-trust__title-wrap {
  text-align: center;
  margin-bottom: 68px;
}

.about-trust__title {
  display: inline-block;
  position: relative;
  font-size: var(--fs-heading-m);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text);
  padding-bottom: 8px;
}

.about-trust__title::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background-color: var(--color-cta-from);
  border-radius: 2px;
}

.about-trust__cards {
  display: flex;
  gap: 24px;
}

.about-trust__card {
  flex: 1 1 0;
  background: var(--color-card-bg);
  border-radius: 15px;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-trust__card-img-wrap {
  width: 224px;
  height: 224px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-trust__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-trust__card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-heading-s);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 16px;
}

.about-trust__card-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-cta-from);
  flex-shrink: 0;
}

.about-trust__card-text {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-text);
  text-align: left;
}

/* ===== 5. かんたん5ステップ ===== */
.section-steps {
  background: var(--color-bg);
  padding: 80px 0 72px;
}

.section-steps__inner {
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-gutter);
}

.section-steps__title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.section-steps__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--color-text);
  text-align: center;
  font-size: var(--fs-heading-l);
}

.section-steps__title-small {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-steps__title-small::before,
.section-steps__title-small::after {
  content: '';
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--color-cta-from), var(--color-cta-to));
}
.section-steps__title-small::after {
  background: linear-gradient(to right, var(--color-cta-to), var(--color-cta-from));
}

.section-steps__title-highlight {
  color: var(--color-primary);
}

.section-steps__title-number {
  font-size: var(--fs-accent);
  line-height: 1;
}
.steps-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(80, 67, 4, 0.05);
  margin-bottom: 40px;
  padding: 36px 44px 32px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 64px;
  list-style: none;
}

.steps-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.steps-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 54px;
  right: -42px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid #e5e5e5;
}

.steps-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
}

.steps-item__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.steps-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--color-cta-from);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-heading-s);
  font-weight: 700;
  line-height: 1;
}

.steps-item__label {
  min-height: 42px;
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-text);
}

.large-transfer {
  background: #ffffff;
  /* border: 2px solid var(--color-cta-from);
  border-radius: 10px; */
  padding: 80px 0px 64px;
}

.large-transfer__title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 30px;
  font-size: var(--fs-heading-m);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--color-text);
  text-align: center;
}

.large-transfer__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-cta-from);
  transform: translateX(-50%);
}
.large-transfer__lead-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  }
  .large-transfer__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbe04;
  }
.large-transfer__lead {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-text);
}

.large-transfer__limits {
  margin-top: 22px;
  margin-bottom: 18px;
}

.large-transfer__limits-title {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

.large-transfer__limits-title::before {
  content: '';
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-text);
}

.large-transfer__limit-cards {
  display: grid;
  grid-template-columns: 277px 594px;
  gap: 12px;
  max-width: 883px;
}

.large-transfer__limit-card {
  background: #fff8e0;
  border-radius: 5px;
  min-height: 110px;
  padding: 12px 24px;
}

.large-transfer__limit-name {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  white-space: nowrap;
}

.large-transfer__limit-name::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cta-to);
}

.large-transfer__limit-list {
  list-style: none;
  padding-left: 0;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.large-transfer__limit-list li::before {
  content: '・';
}

.large-transfer__limit-list span {
  color: var(--color-text-sub);
  font-size: var(--fs-xsmall-plus);
  font-weight: var(--fw-regular);
  white-space: nowrap;
}

.large-transfer__link-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-decoration: none;
}

.large-transfer__link-wrap::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--color-text);
}
.large-transfer__link {
  color: var(--color-cta-from);
}

/* ===== 6. CTA ===== */
.section-cta {
  margin-top: 120px;
  position: relative;
  height: 383px;
  background-image: url("../images/cta/cta_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.section-cta__inner {
  position: relative;
  z-index: 1;
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--inner-gutter);
}

.section-cta__title {
  position: absolute;
  top: 66px;
  left: 50px;
  display: block;
  margin: 0;
  color: #ffffff;
  font-weight: var(--fw-bold);
  line-height: 1;
  white-space: nowrap;
}

.section-cta__title::before,
.section-cta__title::after {
  content: '';
  display: inline-block;
  width: 43px;
  height: 64px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 45% 0, 100% 100%);
  vertical-align: -10px;
}

.section-cta__title::before {
  margin-right: 12px;
}

.section-cta__title::after {
  margin-left: 12px;
  transform: scaleX(-1);
}

.section-cta__title-small {
  display: inline-block;
  font-size: 32px;
  line-height: 1;
  vertical-align: baseline;
}

.section-cta__title-large {
  display: inline-block;
  font-size: 48px;
  line-height: 1;
  vertical-align: baseline;
}

.section-cta__content {
  position: static;
}

.section-cta__store {
  position: absolute;
  top: 158px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-cta__store-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s;
}

.section-cta__store-link:hover {
  opacity: 0.7;
}

.section-cta__store-img--appstore {
  width: 356px;
}

.section-cta__store-img--googleplay {
  width: 401px;
}

.section-cta__qr {
  position: absolute;
  top: 77px;
  left: 828px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 396px;
}

.section-cta__qr-img {
  flex: 0 0 158px;
  width: 158px;
}

.section-cta__qr-text {
  width: 100%;
  color: #ffffff;
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: center;
}

/* ===== 7. よくある質問 ===== */
.section-faq {
  background: var(--color-bg);
  padding: 80px 0 72px;
}

.section-faq__inner {
  max-width: calc(var(--inner-width) + var(--inner-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-gutter);
}

.section-faq__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-faq__title-wrap::before,
.section-faq__title-wrap::after {
  content: '';
  display: block;
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(to right, var(--color-cta-from), var(--color-cta-to));
}
.section-faq__title-wrap::after {
  background: linear-gradient(to right, var(--color-cta-to), var(--color-cta-from));
}

.section-faq__title {
  font-size: var(--fs-heading-l);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--color-text);
}

.faq-list {
  background: #ffffff;
  margin-bottom: 48px;
}

.faq-item + .faq-item {
  border-top: 2px solid var(--color-card-bg);
}

.faq-item__question {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #ffffff;
  color: var(--color-text);
  font-family: var(--font-family);
  text-align: left;
  cursor: pointer;
}

.faq-item__label {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 56px;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-heading-m);
  font-weight: var(--fw-medium);
  line-height: 1;
}

.faq-item__label--question {
  background: var(--color-cta-from);
  color: #ffffff;
}

.faq-item__label--answer {
  background: #feeaac;
  color: var(--color-text);
}

.faq-item__question-text {
  padding: 7px 56px 7px 16px;
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.faq-item__icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-item__question[aria-expanded="false"] .faq-item__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item__answer {
  display: grid;
  grid-template-columns: 56px 1fr;
  background: #ffffff;
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-item__answer-body {
  padding: 8px 64px 8px 16px;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-text);
}

.faq-item__answer-body p + p {
  margin-top: 0;
}

.section-faq__more {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-faq__more-lead {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.section-faq__more-lead::before,
.section-faq__more-lead::after {
  content: '';
  flex: 0 0 15px;
  width: 15px;
  height: 22px;
  background: url("../images/qa/qa_accent.svg") center / 100% 100% no-repeat;
}

.section-faq__more-lead::after {
  transform: scaleX(-1);
}

.section-faq__more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 560px;
  height: 72px;
  border-radius: 100px;
  background: var(--color-green);
  box-shadow: 0 4px 0 var(--color-green-dark);
  color: #ffffff;
  font-size: var(--fs-btn-lg);
  font-weight: var(--fw-bold);
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.section-faq__more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 34px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.section-faq__more-btn:hover {
  opacity: 0.7;
}

/* ===== 8. フッター ===== */
.site-footer {
  background: #3c3c3c;
}

.site-footer__inner {
  position: relative;
  max-width: var(--inner-width);
  height: 214px;
  margin: 0 auto;
  padding: 0;
}

.site-footer__brand {
  position: absolute;
  top: 0;
  left: 0;
}

.site-footer__logo {
  display: block;
  width: 272px;
  height: 128px;
  line-height: 0;
  transition: opacity 0.2s;
}

.site-footer__logo:hover {
  opacity: 0.7;
}

.site-footer__logo img {
  width: 100%;
  height: 100%;
}

.site-footer__nav {
  position: absolute;
  top: 18px;
  left: 311px;
  color: #ffffff;
}

.site-footer__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.site-footer__nav-list--primary {
  position: relative;
}

.site-footer__nav-list a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 2.5;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__nav-item--current a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cta-from) 0%, var(--color-cta-to) 100%);
}

.site-footer__nav-list li + li::before {
  content: '|';
  display: inline-block;
  margin: 0 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 2.5;
}

.site-footer__nav-list a:hover {
  color: var(--color-cta-from);
  opacity: 1;
}

.site-footer__download {
  position: absolute;
  top: 94px;
  left: 311px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-footer__download-balloon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 261px;
  width: 261px;
  height: 40px;
  margin: 0;
  border-radius: 5px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-align: center;
}

.site-footer__download-balloon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
  transform: translateY(-50%);
}

.site-footer__download-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__download-item {
  display: grid;
  grid-template-columns: auto 88px;
  align-items: center;
  gap: 12px;
}

.site-footer__store-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s;
}

.site-footer__store-link:hover {
  opacity: 0.7;
}

.site-footer__store-img--appstore {
  width: 178px;
}

.site-footer__store-img--googleplay {
  width: 200px;
}

.site-footer__qr {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  background: var(--color-cta-from);
  color: #ffffff;
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1;
  white-space: nowrap;
}

/* ===== Header / Drawer: narrow desktop and tablet ===== */
@media (max-width: 1199px) {
  :root {
    --header-unit: min(var(--scale-unit), 1px);
    --header-h: calc(56 * var(--header-unit));
  }

  body {
    padding-top: var(--header-h);
  }

  .site-header {
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .header-inner {
    position: relative;
    max-width: 100%;
    padding: 0;
  }

  .header-logo {
    position: absolute;
    top: calc(8 * var(--header-unit));
    left: calc(16 * var(--header-unit));
    z-index: 1;
  }

  .header-logo .pc {
    display: none;
  }

  .header-logo .sp {
    display: block !important;
  }

  .header-logo img {
    height: calc(40.5 * var(--header-unit));
    width: auto;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    position: absolute;
    top: calc(4 * var(--header-unit));
    right: calc(72 * var(--header-unit));
    z-index: 1;
    display: block;
    width: calc(160 * var(--header-unit));
    height: calc(48 * var(--header-unit));
    line-height: 0;
  }

  .header-cta img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .sp-menu-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: calc(56 * var(--header-unit));
    height: calc(56 * var(--header-unit));
    background: #fbbe04;
    border: none;
    box-shadow: inset 0 calc(-2 * var(--header-unit)) 0 #cd5b10;
    cursor: pointer;
    padding: 0;
  }

  .sp-menu-btn__bar {
    display: block;
    position: absolute;
    left: calc(17 * var(--header-unit));
    width: calc(24 * var(--header-unit));
    height: calc(2 * var(--header-unit));
    background-color: #ffffff;
    border-radius: calc(1 * var(--header-unit));
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .sp-menu-btn__bar:nth-child(1) {
    top: calc(16 * var(--header-unit));
  }

  .sp-menu-btn__bar:nth-child(2) {
    top: calc(26 * var(--header-unit));
  }

  .sp-menu-btn__bar:nth-child(3) {
    top: calc(36 * var(--header-unit));
  }

  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(1) {
    transform: translateY(calc(10 * var(--header-unit))) rotate(45deg);
  }

  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(3) {
    transform: translateY(calc(-10 * var(--header-unit))) rotate(-45deg);
  }

  .sp-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
  }

  .sp-drawer.is-open {
    pointer-events: auto;
  }

  .sp-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.9);
    opacity: 0;
  }

  .sp-drawer.is-open .sp-drawer__overlay {
    opacity: 1;
  }

  .sp-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(519 * var(--header-unit));
    max-height: min(calc(519 * var(--header-unit)), 100dvh);
    overflow: hidden;
    border-radius: 0 0 calc(20 * var(--header-unit)) calc(20 * var(--header-unit));
    background: #fffdf4;
    opacity: 0;
    transform: translateY(-100%);
  }

  .sp-drawer.is-open .sp-drawer__panel {
    opacity: 1;
    transform: translateY(0);
  }

  .sp-drawer__close {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(56 * var(--header-unit));
    height: calc(56 * var(--header-unit));
    background: #fbbe04;
    border: none;
    box-shadow: inset 0 calc(-2 * var(--header-unit)) 0 #cd5b10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-drawer__close span {
    position: absolute;
    width: calc(24 * var(--header-unit));
    height: calc(2 * var(--header-unit));
    background-color: #ffffff;
    border-radius: calc(1 * var(--header-unit));
  }

  .sp-drawer__close span:first-child {
    transform: rotate(45deg);
  }

  .sp-drawer__close span:last-child {
    transform: rotate(-45deg);
  }

  .sp-drawer__nav-list {
    position: absolute;
    top: calc(86 * var(--header-unit));
    left: 50%;
    width: calc(316 * var(--header-unit));
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
  }

  .sp-drawer__nav-item {
    opacity: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .sp-drawer.is-open .sp-drawer__nav-item {
    opacity: 1;
  }

  .sp-drawer__nav-item a {
    position: relative;
    display: block;
    padding: calc(20 * var(--header-unit)) 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: var(--fw-medium);
    font-size: calc(18 * var(--header-unit));
    color: #1e1e1e;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .sp-drawer__nav-item:first-child a {
    padding-top: 0;
  }

  .sp-drawer__nav-item--current a {
    display: inline-block;
    font-weight: var(--fw-medium);
  }

  .sp-drawer__nav-item--current a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: calc(8 * var(--header-unit));
    width: 100%;
    height: calc(2 * var(--header-unit));
    background: linear-gradient(90deg, var(--color-cta-from) 0%, var(--color-cta-to) 100%);
  }

  .sp-drawer__cta {
    position: absolute;
    top: calc(403 * var(--header-unit));
    left: 50%;
    width: calc(310 * var(--header-unit));
    opacity: 0;
    transform: translateX(-50%);
  }

  .sp-drawer.is-open .sp-drawer__cta {
    opacity: 1;
    transform: translateX(-50%);
  }

  .sp-drawer__cta-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(6 * var(--header-unit));
    margin: 0 0 calc(7 * var(--header-unit));
    color: #1e1e1e;
    font-size: calc(14 * var(--header-unit));
    font-weight: var(--fw-bold);
    line-height: 1;
    white-space: nowrap;
  }

  .sp-drawer__cta-lead::before,
  .sp-drawer__cta-lead::after {
    content: '';
    flex: 0 0 calc(13 * var(--header-unit));
    width: calc(13 * var(--header-unit));
    height: calc(16 * var(--header-unit));
    background: url("../images/fix/fix_accent.svg") center / 100% 100% no-repeat;
  }

  .sp-drawer__cta-lead::after {
    transform: scaleX(-1);
  }

  .sp-drawer__cta-btn {
    display: block;
    width: calc(310 * var(--header-unit));
    line-height: 0;
  }

  .sp-drawer__cta-btn img {
    width: 100%;
    height: auto;
  }
}

/* ===== SP レイアウト ===== */
@media (max-width: 768px) {
  :root {
    --header-h:  calc(56 * var(--scale-unit));
    --sticky-h:  83px;

    /* SPフォントサイズ上書き */
    --fs-body:         16px;
    --fs-btn:          14px;
    --fs-btn-lg:       14px;
    --fs-label:        18px;
    --fs-heading-s:    20px;
    --fs-heading-m:    24px;
    --fs-heading-l:    28px;
    --fs-product-name: 32px;
  }

  body {
    min-width: 0;
    padding-top: 0;
    padding-bottom: var(--sticky-h);
  }

  /* ヘッダー */
  .site-header {
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .header-inner {
    position: relative;
    max-width: 100%;
    padding: 0;
  }

  .header-logo {
    position: absolute;
    top: calc(8 * var(--scale-unit));
    left: calc(16 * var(--scale-unit));
    z-index: 1;
  }

  .header-logo img {
    height: calc(40.5 * var(--scale-unit));
    width: auto;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    position: absolute;
    top: calc(4 * var(--scale-unit));
    left: calc(158 * var(--scale-unit));
    z-index: 1;
    display: block;
    width: calc(160 * var(--scale-unit));
    height: calc(48 * var(--scale-unit));
    line-height: 0;
  }

  .header-cta img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: calc(56 * var(--scale-unit));
    height: calc(56 * var(--scale-unit));
    background: #fbbe04;
    border: none;
    box-shadow: inset 0 calc(-2 * var(--scale-unit)) 0 #cd5b10;
    cursor: pointer;
    padding: 0;
  }

  .sp-menu-btn__bar {
    display: block;
    position: absolute;
    left: calc(17 * var(--scale-unit));
    width: calc(24 * var(--scale-unit));
    height: calc(2 * var(--scale-unit));
    background-color: #ffffff;
    border-radius: calc(1 * var(--scale-unit));
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .sp-menu-btn__bar:nth-child(1) {
    top: calc(16 * var(--scale-unit));
  }

  .sp-menu-btn__bar:nth-child(2) {
    top: calc(26 * var(--scale-unit));
  }

  .sp-menu-btn__bar:nth-child(3) {
    top: calc(36 * var(--scale-unit));
  }

  /* ドロワーが開いているときのハンバーガー → × 変形 */
  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(1) {
    transform: translateY(calc(10 * var(--scale-unit))) rotate(45deg);
  }

  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(3) {
    transform: translateY(calc(-10 * var(--scale-unit))) rotate(-45deg);
  }

  /* ===== SPドロワー ===== */
  .sp-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
  }

  .sp-drawer.is-open {
    pointer-events: auto;
  }

  /* オーバーレイ */
  .sp-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.9);
    opacity: 0;
  }

  .sp-drawer.is-open .sp-drawer__overlay {
    opacity: 1;
  }

  /* ドロワーパネル */
  .sp-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(519 * var(--scale-unit));
    max-height: min(calc(519 * var(--scale-unit)), 100dvh);
    overflow: hidden;
    border-radius: 0 0 calc(20 * var(--scale-unit)) calc(20 * var(--scale-unit));
    background: #fffdf4;
    opacity: 0;
    transform: translateY(-100%);
  }

  .sp-drawer.is-open .sp-drawer__panel {
    opacity: 1;
    transform: translateY(0);
  }

  /* ドロワー 閉じるボタン（×） */
  .sp-drawer__close {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(56 * var(--scale-unit));
    height: calc(56 * var(--scale-unit));
    background: #fbbe04;
    border: none;
    box-shadow: inset 0 calc(-2 * var(--scale-unit)) 0 #cd5b10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-drawer__close span {
    position: absolute;
    width: calc(24 * var(--scale-unit));
    height: calc(2 * var(--scale-unit));
    background-color: #ffffff;
    border-radius: calc(1 * var(--scale-unit));
  }

  .sp-drawer__close span:first-child {
    transform: rotate(45deg);
  }

  .sp-drawer__close span:last-child {
    transform: rotate(-45deg);
  }

  /* ドロワー ナビリスト */
  .sp-drawer__nav-list {
    position: absolute;
    top: calc(86 * var(--scale-unit));
    left: 50%;
    width: calc(316 * var(--scale-unit));
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
  }

  .sp-drawer__nav-item {
    opacity: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .sp-drawer.is-open .sp-drawer__nav-item {
    opacity: 1;
  }

  .sp-drawer__nav-item a {
    position: relative;
    display: block;
    padding: calc(20 * var(--scale-unit)) 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: var(--fw-medium);
    font-size: calc(18 * var(--scale-unit));
    color: #1e1e1e;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .sp-drawer__nav-item:first-child a {
    padding-top: 0;
  }

  .sp-drawer__nav-item--current a {
    display: inline-block;
    font-weight: var(--fw-medium);
  }

  .sp-drawer__nav-item--current a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: calc(8 * var(--scale-unit));
    width: 100%;
    height: calc(2 * var(--scale-unit));
    background: linear-gradient(90deg, var(--color-cta-from) 0%, var(--color-cta-to) 100%);
  }

  .sp-drawer__cta {
    position: absolute;
    top: calc(403 * var(--scale-unit));
    left: 50%;
    width: calc(310 * var(--scale-unit));
    opacity: 0;
    transform: translateX(-50%);
  }

  .sp-drawer.is-open .sp-drawer__cta {
    opacity: 1;
    transform: translateX(-50%);
  }

  .sp-drawer__cta-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(6 * var(--scale-unit));
    margin: 0 0 calc(7 * var(--scale-unit));
    color: #1e1e1e;
    font-size: calc(14 * var(--scale-unit));
    font-weight: var(--fw-bold);
    line-height: 1;
    white-space: nowrap;
  }

  .sp-drawer__cta-lead::before,
  .sp-drawer__cta-lead::after {
    content: '';
    flex: 0 0 calc(13 * var(--scale-unit));
    width: calc(13 * var(--scale-unit));
    height: calc(16 * var(--scale-unit));
    background: url("../images/fix/fix_accent.svg") center / 100% 100% no-repeat;
  }

  .sp-drawer__cta-lead::after {
    transform: scaleX(-1);
  }

  .sp-drawer__cta-btn {
    display: block;
    width: calc(310 * var(--scale-unit));
    line-height: 0;
  }

  .sp-drawer__cta-btn img {
    width: 100%;
    height: auto;
  }

  /* 下追従CTA SP */
  .fixed-cta {
    height: var(--sticky-h);
  }

  .fixed-cta__lead {
    gap: 6px;
    margin-top: 9px;
    font-size: var(--fs-small);
  }

  .fixed-cta__lead::before,
  .fixed-cta__lead::after {
    flex-basis: 9px;
    width: 9px;
    height: 13px;
  }

  .fixed-cta__btn {
    width: min(320px, calc(100vw - 32px));
    margin-top: 6px;
  }

  /* ===== 注意書きバー SP ===== */
  .notice-bar {
    height: auto;
    min-height: 58px;
    padding: 8px 16px;
  }

  /* ===== 2. 2つの定期預金 SP ===== */
  .section-teiki {
    padding: calc(44 * var(--scale-unit)) 0 calc(4 * var(--scale-unit));
  }

  .section-teiki__inner {
    padding: 0 calc(16 * var(--scale-unit));
  }

  .section-teiki__title-wrap {
    gap: calc(9 * var(--scale-unit));
    margin-bottom: calc(16 * var(--scale-unit));
    align-items: flex-start;
  }

  .section-teiki__title-wrap::before,
  .section-teiki__title-wrap::after {
    flex: 0 0 calc(38 * var(--scale-unit));
    margin-top: calc(13 * var(--scale-unit));
  }

  .section-teiki__title {
    font-size: calc(24 * var(--scale-unit));
    line-height: 1.28;
    text-align: center;
  }

  .section-teiki__title-accent-number {
    line-height: 1;
    font-size: calc(44 * var(--scale-unit));
  }

  .section-teiki__sub {
    margin-bottom: calc(16 * var(--scale-unit));
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.65;
  }

  .section-teiki__sub-accent::before {
    top: -0.18em;
    width: 0.22em;
    height: 0.22em;
  }

  .section-teiki__cards {
    flex-direction: column;
    gap: calc(22 * var(--scale-unit));
    margin-bottom: calc(7 * var(--scale-unit));
  }

  .teiki-card {
    overflow: visible;
    width: 100%;
    max-width: calc(358 * var(--scale-unit));
    margin: 0 auto;
    border-radius: calc(5 * var(--scale-unit));
    border-width: 2px;
  }

  .teiki-card__header-img {
    width: calc(334 * var(--scale-unit));
    margin-left: auto;
    margin-right: calc(6 * var(--scale-unit));
    margin-top: calc(19 * var(--scale-unit));
  }

  .teiki-card__header-img--takarakuji {
    width: calc(331 * var(--scale-unit));
    margin-right: calc(4 * var(--scale-unit));
  }

  .teiki-card__body {
    margin-top: calc(-5 * var(--scale-unit));
    padding: 0 calc(13 * var(--scale-unit)) calc(20 * var(--scale-unit));
  }

  .teiki-card__table {
    font-size: calc(11 * var(--scale-unit));
  }

  .teiki-card__th {
    width: calc(80 * var(--scale-unit));
    padding: calc(8 * var(--scale-unit)) calc(6 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
    line-height: 1.45;
  }

  .teiki-card__td {
    padding: calc(16 * var(--scale-unit)) calc(12 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
    line-height: 1.55;
  }

  .teiki-card__td--flex {
    display: table-cell;
  }

  .teiki-card__td-note {
    font-size: calc(9 * var(--scale-unit));
    line-height: 1.4;
    margin-top: 0;
  }

  .teiki-card__list li {
    line-height: 1.45;
  }

  .teiki-card__list li + li {
    margin-top: 0;
  }

  .teiki-card__list--after-lead {
    margin-top: 0;
  }

  .teiki-card__sup {
    font-size: calc(9 * var(--scale-unit));
  }

  .teiki-card__footer {
    padding: 0 calc(13 * var(--scale-unit)) calc(32 * var(--scale-unit));
  }

  .teiki-card__btn {
    height: calc(40 * var(--scale-unit));
    border-radius: calc(20 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
  }

  .teiki-card__btn::after {
    right: calc(20 * var(--scale-unit));
    width: calc(8 * var(--scale-unit));
    height: calc(8 * var(--scale-unit));
    border-top-width: calc(2 * var(--scale-unit));
    border-right-width: calc(2 * var(--scale-unit));
  }

  .section-teiki__notes {
    max-width: calc(358 * var(--scale-unit));
    margin: 0 auto;
  }

  .section-teiki__note {
    font-size: calc(9 * var(--scale-unit));
    line-height: 1.45;
    margin-bottom: calc(1 * var(--scale-unit));
  }

  /* ===== 4. スマート支店とは SP ===== */
  .section-about__inner {
    padding: calc(64 * var(--scale-unit)) calc(16 * var(--scale-unit)) calc(48 * var(--scale-unit));
  }

  .section-about__title-wrap {
    gap: 0;
    margin-bottom: 32px;
  }

  /* SP: 1行目だけに装飾線（wrap 側の線は非表示） */
  .section-about__title-wrap::before,
  .section-about__title-wrap::after {
    display: none;
  }

  .section-about__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-heading-m);
    line-height: 1.22;
    text-align: center;
  }

  .section-about__title-bank-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: min(100%, 340px);
  }

  .section-about__title-bank-line::before,
  .section-about__title-bank-line::after {
    content: '';
    flex: 1 1 auto;
    height: 2px;
    width: calc(40 * var(--scale-unit));
    background: linear-gradient(
      to right,
      #FBBE04 0%,
      #FA8232 100%
    );
  }
  .section-about__title-bank-line::after {
    background: linear-gradient(
      to left,
      #FBBE04 0%,
      #FA8232 100%
    );
  }

  .section-about__title-smart-line {
    display: block;
    padding-top: 0.15em;
  }

  /* PC用の一括傍点は SP では使わず、文字ごとに表示 */
  .section-about__title::before {
    display: none;
  }

  .section-about__title-bouten::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cta-from);
    transform: translateX(-50%);
    pointer-events: none;
  }

  /* ATM SP */
  .about-atm {
    width: calc(358 * var(--scale-unit));
    max-width: 100%;
    height: calc(342 * var(--scale-unit));
    margin: 0 auto calc(48 * var(--scale-unit));
    border-radius: calc(10 * var(--scale-unit));
    box-shadow: 0 calc(3 * var(--scale-unit)) calc(7 * var(--scale-unit)) calc(3 * var(--scale-unit)) rgba(80, 67, 4, 0.07);
  }

  .about-atm__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: calc(25 * var(--scale-unit)) calc(24 * var(--scale-unit)) calc(20 * var(--scale-unit));
    gap: 0;
  }

  .about-atm__icon {
    position: absolute;
    top: calc(124 * var(--scale-unit));
    left: calc(111 * var(--scale-unit));
    z-index: 1;
    width: calc(40 * var(--scale-unit));
    margin-right: 0;
  }

  .about-atm__icon img {
    width: calc(44 * var(--scale-unit));
  }

  .about-atm__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
    height: calc(174 * var(--scale-unit));
  }

  .about-atm__catch {
    position: static;
    order: 1;
    width: 100%;
    margin-bottom: calc(2 * var(--scale-unit));
    font-size: calc(24 * var(--scale-unit));
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
  }

  .about-atm__emphasis {
    font-size: calc(28 * var(--scale-unit));
  }

  .about-atm__emphasis::before {
    top: calc(-2 * var(--scale-unit));
    width: calc(4 * var(--scale-unit));
    height: calc(4 * var(--scale-unit));
  }

  .about-atm__emphasis--deposit::before {
    box-shadow: calc(-42 * var(--scale-unit)) 0 0 #fbbe04, calc(-14 * var(--scale-unit)) 0 0 #fbbe04, calc(14 * var(--scale-unit)) 0 0 #fbbe04, calc(42 * var(--scale-unit)) 0 0 #fbbe04;
  }

  .about-atm__emphasis--use::before {
    box-shadow: calc(-28 * var(--scale-unit)) 0 0 #fbbe04, 0 0 0 #fbbe04, calc(28 * var(--scale-unit)) 0 0 #fbbe04;
  }

  .about-atm__tokku-accent::before {
    top: calc(-2 * var(--scale-unit));
    width: calc(4 * var(--scale-unit));
    height: calc(4 * var(--scale-unit));
    box-shadow: calc(-29 * var(--scale-unit)) 0 0 #fbbe04, calc(29 * var(--scale-unit)) 0 0 #fbbe04;
  }

  .about-atm__fee-label {
    display: block;
    order: 0;
    width: 100%;
    font-size: calc(28 * var(--scale-unit));
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-align: center;
    transform: none;
  }

  .about-atm__fee {
    position: static;
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: calc(-2 * var(--scale-unit));
  }

  .about-atm__fee-zero {
    order: 1;
    margin-left: calc(72 * var(--scale-unit));
    font-size: calc(88 * var(--scale-unit));
  }

  .about-atm__fee-en {
    order: 2;
    align-self: center;
    margin-top: calc(26 * var(--scale-unit));
    font-size: calc(28 * var(--scale-unit));
    letter-spacing: 0.04em;
    line-height: 1.6;
    transform: none;
  }

  .about-atm__divider {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: 2px;
    margin: calc(11 * var(--scale-unit)) 0 calc(12 * var(--scale-unit));
    background-color: #B9B9B9;
  }

  .about-atm__right {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    border-top: 0;
    padding-top: 0;
  }

  .about-atm__atm-list {
    font-size: calc(18 * var(--scale-unit));
    line-height: 1.4;
    margin-bottom: 0;
    text-align: left;
  }

  .about-atm__tokku {
    font-size: calc(24 * var(--scale-unit));
    line-height: 1.6;
    text-align: left;
    white-space: normal;
  }

  .about-atm__tokku strong {
    font-size: calc(28 * var(--scale-unit));
  }

  .about-atm__tokku-accent {
    font-size: calc(28 * var(--scale-unit));
  }

  /* サービス一覧 SP */
  .about-services {
    margin-bottom: 0;
  }

  .about-services__title-wrap {
    margin-bottom: calc(34 * var(--scale-unit));
  }

  .about-services__title {
    padding-bottom: 0;
    font-size: calc(20 * var(--scale-unit));
    line-height: 1.4;
  }

  .about-services__title::after {
    bottom: calc(-11 * var(--scale-unit));
    width: calc(24 * var(--scale-unit));
    height: calc(2 * var(--scale-unit));
    border-radius: 0;
  }

  .about-services__card {
    width: calc(358 * var(--scale-unit));
    max-width: 100%;
    height: calc(591 * var(--scale-unit));
    margin: 0 auto calc(15 * var(--scale-unit));
    padding: calc(32 * var(--scale-unit)) calc(45 * var(--scale-unit)) calc(28 * var(--scale-unit));
    border-radius: calc(10 * var(--scale-unit));
    box-shadow: 0 calc(3 * var(--scale-unit)) calc(7 * var(--scale-unit)) calc(3 * var(--scale-unit)) rgba(80, 67, 4, 0.07);
  }

  .about-services__list {
    position: relative;
    grid-template-columns: repeat(2, calc(112 * var(--scale-unit)));
    justify-content: space-between;
    gap: 0;
  }

  .about-services__list::before,
  .about-services__list::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    background-color: var(--color-border);
    transform: translateX(-50%);
  }

  .about-services__list::before {
    top: 0;
    height: calc(116 * var(--scale-unit));
    box-shadow: 0 calc(132 * var(--scale-unit)) 0 var(--color-border);
  }

  .about-services__list::after {
    top: calc(293 * var(--scale-unit));
    height: calc(131 * var(--scale-unit));
  }

  .about-services__item {
    justify-content: flex-start;
    min-width: 0;
    height: calc(132 * var(--scale-unit));
    padding: 0;
    gap: calc(13 * var(--scale-unit));
  }

  .about-services__item + .about-services__item::before,
  .about-services__item:nth-child(4)::before {
    display: none;
  }

  .about-services__item:nth-child(3),
  .about-services__item:nth-child(4) {
    height: calc(161 * var(--scale-unit));
    padding-top: calc(13 * var(--scale-unit));
  }

  .about-services__item:nth-child(5),
  .about-services__item:nth-child(6) {
    height: calc(147 * var(--scale-unit));
    padding-top: calc(9 * var(--scale-unit));
  }

  .about-services__item:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(160 * var(--scale-unit));
    height: calc(91 * var(--scale-unit));
    padding-top: calc(1 * var(--scale-unit));
    gap: calc(11 * var(--scale-unit));
  }

  .about-services__icon {
    height: calc(68 * var(--scale-unit));
    max-width: calc(90 * var(--scale-unit));
  }

  .about-services__item:nth-child(2) .about-services__icon {
    height: calc(68 * var(--scale-unit));
    max-width: calc(85 * var(--scale-unit));
  }

  .about-services__item:nth-child(3) .about-services__icon {
    height: calc(60 * var(--scale-unit));
    max-width: calc(85 * var(--scale-unit));
  }

  .about-services__item:nth-child(4) .about-services__icon {
    height: calc(58 * var(--scale-unit));
    max-width: calc(63 * var(--scale-unit));
  }

  .about-services__item:nth-child(5) .about-services__icon,
  .about-services__item:nth-child(6) .about-services__icon,
  .about-services__item:nth-child(7) .about-services__icon {
    height: calc(54 * var(--scale-unit));
    max-width: calc(86 * var(--scale-unit));
  }

  .about-services__label {
    min-height: 0;
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.3;
    white-space: nowrap;
  }

  .about-services__notes {
    width: calc(358 * var(--scale-unit));
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .about-services__note {
    padding-left: 1em;
    font-size: calc(9 * var(--scale-unit));
    line-height: 1.5;
    text-indent: -1em;
  }

  /* 安心と信頼 SP */
  .about-trust {
    padding: calc(40 * var(--scale-unit)) calc(16 * var(--scale-unit)) calc(48 * var(--scale-unit));
  }

  .about-trust__inner {
    padding: 0;
  }

  .about-trust__title {
    font-size: calc(20 * var(--scale-unit));
    padding-bottom: calc(10 * var(--scale-unit));
  }
  .about-trust__title::after {
    width: calc(24 * var(--scale-unit));
    height: 2px;
    bottom: calc(-10 * var(--scale-unit));
  }

  .about-trust__title-wrap {
    margin-bottom: calc(34 * var(--scale-unit));
  }

  .about-trust__cards {
    flex-direction: column;
    gap: calc(16 * var(--scale-unit));
  }

  .about-trust__card {
    padding: calc(24 * var(--scale-unit));
  }

  .about-trust__card-img-wrap {
    width: calc(160 * var(--scale-unit));
    height: auto;
    margin-bottom: calc(16 * var(--scale-unit));
  }

  .about-trust__card-title {
    font-size: calc(18 * var(--scale-unit));
    margin-bottom: calc(14 * var(--scale-unit));
  }

  .about-trust__card-text {
    font-size: calc(14 * var(--scale-unit));
  }

  /* ===== 5. かんたん5ステップ SP ===== */
  .section-steps {
    padding: calc(64 * var(--scale-unit)) 0 calc(48 * var(--scale-unit));
  }

  .section-steps__inner {
    padding: 0 calc(16 * var(--scale-unit));
  }

  .section-steps__title-wrap {
    margin-bottom: calc(28 * var(--scale-unit));
  }

  .section-steps__title {
    gap: 0;
  }

  .section-steps__title-small {
    position: relative;
    display: block;
    width: calc(280 * var(--scale-unit));
    font-size: calc(28 * var(--scale-unit));
    line-height: 1.3;
  }

  .section-steps__title-small::before,
  .section-steps__title-small::after {
    position: absolute;
    top: calc(17 * var(--scale-unit));
    width: calc(40 * var(--scale-unit));
    height: 2px;
  }

  .section-steps__title-small::before {
    left: 0;
  }

  .section-steps__title-small::after {
    right: 0;
  }

  .section-steps__title-main {
    margin-top: calc(-1 * var(--scale-unit));
    font-size: calc(28 * var(--scale-unit));
    line-height: 1.3;
  }

  .section-steps__title-number {
    font-size: calc(44 * var(--scale-unit));
  }

  .steps-card {
    width: calc(358 * var(--scale-unit));
    max-width: 100%;
    margin: 0 auto calc(32 * var(--scale-unit));
    padding: calc(32 * var(--scale-unit)) calc(24 * var(--scale-unit)) calc(40 * var(--scale-unit));
    border: 0;
    border-radius: calc(10 * var(--scale-unit));
    box-shadow: 0 calc(3 * var(--scale-unit)) calc(7 * var(--scale-unit)) calc(3 * var(--scale-unit)) rgba(80, 67, 4, 0.07);
  }

  .steps-list {
    display: flex;
    flex-direction: column;
    gap: calc(54 * var(--scale-unit));
  }

  .steps-item {
    display: grid;
    grid-template-columns: calc(40 * var(--scale-unit)) calc(70 * var(--scale-unit)) 1fr;
    column-gap: calc(24 * var(--scale-unit));
    align-items: center;
    height: calc(88 * var(--scale-unit));
    text-align: left;
  }

  .steps-item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: calc(-39 * var(--scale-unit));
    left: calc(134 * var(--scale-unit));
    border-top: calc(26 * var(--scale-unit)) solid #e5e5e5;
    border-right: calc(21 * var(--scale-unit)) solid transparent;
    border-left: calc(21 * var(--scale-unit)) solid transparent;
    border-bottom: 0;
  }

  .steps-item__icon {
    width: calc(70 * var(--scale-unit));
    height: calc(88 * var(--scale-unit));
    margin-bottom: 0;
  }

  .steps-item__icon img {
    width: auto;
    height: calc(88 * var(--scale-unit));
  }

  .steps-item:nth-child(4) .steps-item__icon img {
    width: calc(80 * var(--scale-unit));
    height: auto;
    max-width: none;
  }

  .steps-item:nth-child(5) .steps-item__icon img {
    width: calc(72 * var(--scale-unit));
    height: auto;
    max-width: none;
  }

  .steps-item__body {
    min-width: 0;
  }

  .steps-item__number {
    width: calc(40 * var(--scale-unit));
    height: calc(40 * var(--scale-unit));
    margin-bottom: 0;
    font-size: calc(24 * var(--scale-unit));
  }

  .steps-item__label {
    min-height: 0;
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.3;
    white-space: nowrap;
  }

  .steps-item:not(:nth-child(2)) .steps-item__label br {
    display: none;
  }

  .large-transfer {
    padding: 48px 16px;
  }

  .large-transfer__title {
    padding-bottom: 14px;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .large-transfer__title::before {
    top: auto;
    bottom: 0;
    width: 28px;
    height: 3px;
  }

  .large-transfer__lead-wrap {
    max-width: none;
    align-items: flex-start;
    gap: 8px;
  }

  .large-transfer__dot {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    flex-shrink: 0;
  }

  .large-transfer__lead {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--color-text);
    /* margin-bottom: 4px; */
  }

  .large-transfer__lead {
    font-size: var(--fs-small);
  }

  .large-transfer__limit-cards {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .large-transfer__limit-card {
    min-height: auto;
    padding: 12px 16px;
  }

  .large-transfer__limit-name,
  .large-transfer__limit-list {
    font-size: var(--fs-body);
  }

  .large-transfer__limit-name {
    white-space: normal;
  }

  .large-transfer__limit-list span {
    display: block;
    white-space: normal;
  }

  .large-transfer__link {
    font-size: var(--fs-small);
  }

  .large-transfer__link:hover {
    opacity: 1;
  }

  /* ===== 6. CTA SP ===== */
  .section-cta {
    margin-top: calc(64 * var(--scale-unit));
    height: calc(232 * var(--scale-unit));
    min-height: 0;
    padding: 0;
    background-position: 48% 37%;
    background-size: calc(1015 * var(--scale-unit)) auto;
  }

  .section-cta__inner {
    height: 100%;
    padding: 0 calc(16 * var(--scale-unit));
  }

  .section-cta__title {
    position: absolute;
    top: calc(30 * var(--scale-unit));
    left: 50%;
    width: calc(354 * var(--scale-unit));
    margin: 0;
    transform: translateX(-50%);
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  .section-cta__title::before,
  .section-cta__title::after {
    position: absolute;
    top: calc(24 * var(--scale-unit));
    width: calc(43 * var(--scale-unit));
    height: calc(64 * var(--scale-unit));
    margin: 0;
    vertical-align: 0;
  }

  .section-cta__title::before {
    left: calc(2 * var(--scale-unit));
  }

  .section-cta__title::after {
    right: calc(2 * var(--scale-unit));
    left: auto;
    transform: scaleX(-1);
  }

  .section-cta__title-small {
    font-size: calc(20 * var(--scale-unit));
    line-height: 1.4;
  }

  .section-cta__title-large {
    font-size: calc(32 * var(--scale-unit));
    line-height: 1.4;
  }

  .section-cta__content {
    position: static;
    max-width: none;
  }

  .section-cta__store {
    position: absolute;
    top: calc(136 * var(--scale-unit));
    left: calc(16 * var(--scale-unit));
    justify-content: flex-start;
    gap: calc(8 * var(--scale-unit));
    width: calc(358 * var(--scale-unit));
  }

  .section-cta__store-img--appstore {
    width: calc(166 * var(--scale-unit));
  }

  .section-cta__store-img--googleplay {
    width: calc(184 * var(--scale-unit));
  }

  .section-cta__qr {
    display: none;
  }

  /* ===== 7. よくある質問 SP ===== */
  .section-faq {
    padding: calc(64 * var(--scale-unit)) 0 calc(64 * var(--scale-unit));
  }

  .section-faq__inner {
    padding: 0 calc(16 * var(--scale-unit));
  }

  .section-faq__title-wrap {
    gap: calc(12 * var(--scale-unit));
    margin-bottom: calc(24 * var(--scale-unit));
  }

  .section-faq__title-wrap::before,
  .section-faq__title-wrap::after {
    flex: 0 0 calc(40 * var(--scale-unit));
  }

  .section-faq__title {
    font-size: calc(28 * var(--scale-unit));
  }

  .faq-list {
    margin-bottom: calc(32 * var(--scale-unit));
  }

  .faq-item + .faq-item {
    border-top-width: 1px;
  }

  .faq-item__question {
    grid-template-columns: calc(40 * var(--scale-unit)) 1fr calc(40 * var(--scale-unit));
    min-height: 52px;
  }

  .faq-item__label {
    width: calc(40 * var(--scale-unit));
    font-size: calc(20 * var(--scale-unit));
  }

  .faq-item__question-text {
    padding: calc(8 * var(--scale-unit)) calc(36 * var(--scale-unit)) calc(8 * var(--scale-unit)) calc(12 * var(--scale-unit));
    font-size: calc(16 * var(--scale-unit));
    line-height: 1.45;
  }

  .faq-item__icon {
    right: calc(16 * var(--scale-unit));
    width: calc(16 * var(--scale-unit));
    height: calc(16 * var(--scale-unit));
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: calc(16 * var(--scale-unit));
    height: 2px;
  }

  .faq-item__answer {
    grid-template-columns: calc(40 * var(--scale-unit)) 1fr;
  }

  .faq-item__answer-body {
    padding: calc(10 * var(--scale-unit)) calc(36 * var(--scale-unit)) calc(12 * var(--scale-unit)) calc(12 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
    line-height: 1.6;
  }

  .section-faq__more-lead {
    gap: calc(5 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
  }

  .section-faq__more-lead::before,
  .section-faq__more-lead::after {
    flex-basis: calc(12 * var(--scale-unit));
    width: calc(12 * var(--scale-unit));
    height: calc(18 * var(--scale-unit));
  }

  .section-faq__more-btn {
    width: calc(310 * var(--scale-unit));
    height: calc(40 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
  }

  .section-faq__more-btn::after {
    right: calc(24 * var(--scale-unit));
    width: calc(8 * var(--scale-unit));
    height: calc(8 * var(--scale-unit));
    border-top-width: 1px;
    border-right-width: 1px;
  }

  /* ===== 8. フッター SP ===== */
  .site-footer {
    background: #3c3c3c;
    overflow: hidden;
  }

  .site-footer__inner {
    position: relative;
    width: 100%;
    max-width: none;
    height: calc(277 * var(--scale-unit));
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__download {
    position: absolute;
  }

  .site-footer__brand {
    top: 0;
    left: 0;
    width: calc(147 * var(--scale-unit));
    height: calc(75 * var(--scale-unit));
    overflow: hidden;
    border-radius: 0 0 calc(12 * var(--scale-unit)) 0;
    background: #ffffff;
  }

  .site-footer__logo {
    width: 100%;
    height: 100%;
  }

  .site-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .site-footer__nav {
    top: calc(10 * var(--scale-unit));
    left: calc(158 * var(--scale-unit));
    width: calc(216 * var(--scale-unit));
  }

  .site-footer__nav-list {
    display: block;
  }

  .site-footer__nav-list a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: calc(12 * var(--scale-unit));
    font-weight: var(--fw-bold);
    line-height: 2.2;
    white-space: nowrap;
  }

  .site-footer__nav-item--current a {
    display: inline-block;
  }

  .site-footer__nav-item--current a::after {
    bottom: calc(2 * var(--scale-unit));
    height: calc(2 * var(--scale-unit));
  }

  .site-footer__nav-list li + li::before {
    display: none;
  }

  .site-footer__download {
    display: block;
    top: calc(160 * var(--scale-unit));
    left: calc(15 * var(--scale-unit));
    width: calc(359 * var(--scale-unit));
  }

  .site-footer__download-balloon {
    width: 100%;
    height: calc(28 * var(--scale-unit));
    margin: 0;
    padding: 0;
    border-radius: calc(3 * var(--scale-unit));
    font-size: calc(14 * var(--scale-unit));
    line-height: 1;
  }

  .site-footer__download-balloon::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(-9 * var(--scale-unit));
    border-top: calc(9 * var(--scale-unit)) solid #ffffff;
    border-right: calc(8 * var(--scale-unit)) solid transparent;
    border-bottom: 0;
    border-left: calc(8 * var(--scale-unit)) solid transparent;
    transform: translateX(-50%);
  }

  .site-footer__download-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(8 * var(--scale-unit));
    margin-top: calc(13 * var(--scale-unit));
    margin-left: calc(1 * var(--scale-unit));
  }

  .site-footer__download-item {
    display: block;
    line-height: 0;
  }

  .site-footer__store-img--appstore {
    width: calc(166 * var(--scale-unit));
  }

  .site-footer__store-img--googleplay {
    width: calc(184 * var(--scale-unit));
  }

  .site-footer__qr {
    display: none;
  }

  .site-footer__copyright {
    position: static;
    height: calc(20 * var(--scale-unit));
    font-size: calc(9 * var(--scale-unit));
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }
}


/* ===== 画像セクション ===== */
.section-relative {
  position: relative;
}

.section-images {
  max-width: 1200px;
  margin: 100px auto 0;
}

.section-images img {
  width: 100%;
  height: auto;
}

.section-images__link-wrap {
  position: absolute;
  bottom: 0;
  width: 556px;
  height: 72px;
  /* border-radius: 9999px;
  overflow: hidden; */
}

.section-images__link-wrap--setumei {
  left: 35px;
}

.section-images__link-wrap--kitei {
  right: 35px;
}

.section-images__link-wrap--syosai {
  width: 552px;
  height: 76px;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
}

.section-images__link {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
    /* opacity: 0.5;
    background-color: #000; */
}

.section-images__link:hover {
  opacity: 0.6;
}


@media (max-width: 768px) {
  .section-images {
    width: 100%;
    padding: 0 6px;
    max-width: none;
    margin: 64px auto 0;
  }

  .section-images--no-shadow {
    padding: 0 16px;
  }

  .section-white-bg {
    background-color: #fff;
    padding: 48px 0;
  }

  .section-white-bg__inner {
    max-width: none;
    padding: 0 16px;
  }

  .section-images__link-wrap {
    position: absolute;
    bottom: 0;
    width: calc(310 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
  }

  .section-images__link-wrap--setumei {
    bottom: calc(66 / 390 * 100vw);
    left: 50%;
    transform: translateX(-50%);
  }

  .section-images__link-wrap--kitei {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: initial;
  }

  .section-images__link-wrap--syosai {
    height: calc(54 / 390 * 100vw);
    left: 50%;
    bottom: calc(-1 / 390 * 100vw);
    transform: translateX(-50%);
  }

  .section-images__link:hover {
    opacity: 0;
  }
}