/* ============================================
   77bank NISA LP - Stylesheet
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #FEF5D3;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.red {
  color: #E95550;
}

/* PCでは改行を非表示 */
.sp-br {
  display: none;
}

.sp_mode {
  display: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  width: 100%;
  overflow: hidden;
}

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

/* ============================================
   Campaign Period
   ============================================ */
.campaign-period {
  background: linear-gradient(180deg, #7BC67B 0%, #d4edbc 100%);
  padding: 24px 20px;
  text-align: center;
}

.campaign-period__inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 20px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.campaign-period__label {
  font-size: 16px;
  font-weight: 700;
  color: #006934;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.campaign-period__date {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.campaign-period__num {
  font-size: 36px;
  color: #E83828;
  font-weight: 700;
  line-height: 1;
  vertical-align: baseline;
}

.campaign-period__day {
  font-size: 16px;
  color: #666;
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-section {
  z-index: 999;
  position: fixed;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 0;
  text-align: center;
  z-index: 999;
}

/* 中央に寄せるためのインナー要素 */
.cta-inner {
  width: 100%;
  /* 横幅100% */
  max-width: 100%;
  /* 最大幅の制限を解除 */
  margin: 0;
}

.cta-section .cta-btn {
  width: 100%;
  max-width: 100%;
  color: #004DA0;
  border-radius: 0;

}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* テキストを完全に中央へ */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  /* paddingを含めてサイズ計算 */
}

.cta-btn--large {
  width: 100%;
  max-width: 959px;

}

.cta-btn:hover {
  opacity: 0.85;
}

/* 画像3の黄色いボタンの設定 */
.cta-btn--yellow {
  width: 100%;
  height: 80px;
  /* 高さを固定 */

  /* 背景と文字の色 */
  background: #FFE034;
  /* 鮮やかな黄色 */
  color: #004DA0;
  /* 濃い青文字 */

  /* 画像のような「角丸の長方形」 */

  /* テキスト設定 */
  font-size: 32px;
  line-height: 1;
  position: relative;
}

/* ボタン内のテキスト要素（span） */
.cta-btn--yellow span {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 40px;
}

/* 矢印（::after）の設定：テキストに追従させる */
.cta-btn--yellow span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  /* padding-rightで確保したスペースに配置 */
  transform: translateY(-50%) rotate(45deg);
  /* 上下中央 ＋ 45度回転 */
  /* 矢印の見た目 */
  width: 22px;
  height: 22px;
  border-top: 4px solid #004DA0;
  /* 文字と同じ濃い青 */
  border-right: 4px solid #004DA0;
  border-radius: 4px;
  /* 矢印の角も少し丸く */
  pointer-events: none;
  /* クリックの邪魔をしない */
  transition: right 0.3s ease;
}

/* ホバー時に矢印を動かす（共通の挙動に） */
.cta-btn--yellow:hover span::after {
  opacity: 0.85;
}

.cta-btn--green {
  background: #FFE034;
  /* 背景は共通の黄色 */
  color: #006934;
  /* 文字は緑 */
  border: 3px solid #006934;
  /* 枠線も緑 */
  /* サイズ感はブルーと統一 */
  width: 100%;
  max-width: 606px;
  border-radius: 63px;
  font-size: 32px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
  padding: 30px 10% 30px 10%;
  /* 右側の余白を広げる */

}

.cta-btn--green::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13%;
  /* ブルーと同じ位置 */
  transform: translateY(-50%) rotate(45deg);

  /* 矢印の見た目 */
  width: 24px;
  height: 24px;
  border-top: 4px solid #006934;
  /* 矢印の色を緑に */
  border-right: 4px solid #006934;
  border-radius: 4px;

  transition: right 0.3s ease;
  pointer-events: none;
}

/* --- ホバー時の動き --- */
.cta-btn--green:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}



/* ホバー時に矢印を動かす（共通の挙動に） */
.cta-btn--green:hover::after {
  right: 11%;
  /* 少し右に寄せる（%で指定すると可変に強いです） */
}

.cta-btn--blue {
  background: #FFE034;
  /* 黄色背景 */
  color: #004DA0;
  /* 青文字 */
  border: 3px solid #004DA0;
  /* 青枠線 */

  /* PCでのサイズと余白 */
  width: 100%;
  max-width: 960px;
  /* PCでの最大幅 */
  border-radius: 63px;
  /* 高さの半分で完全な角丸に */

  /* テキスト設定（1行） */
  font-size: 32px;
  line-height: 1.4;
  position: relative;
  padding: 30px 15% 30px 15%;
  /* 右側の余白を広げる */

}

.nanapo-bg .cta-btn--blue {
  width: 100%;
  max-width: 606px;
  border-radius: 63px;
  font-size: 32px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
  padding: 30px 10% 30px 10%;
  /* 右側の余白を広げる */
}

.nanapo-bg .cta-btn--blue::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13%;
  /* ブルーと同じ位置 */
  transform: translateY(-50%) rotate(45deg);

  /* 矢印の見た目 */
  width: 24px;
  height: 24px;
}

.cta-btn__arrow {
  width: 10px;
  height: 20px;
  flex-shrink: 0;
}




.cta-btn--blue::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13%;
  /* PCでは右端から60px */
  transform: translateY(-50%) rotate(45deg);
  /* 上下中央 ＋ 45度回転 */
  height: 117px;
  /* 矢印の見た目 */
  width: 24px;
  height: 24px;
  border-top: 4px solid #004DA0;
  /* 上と右の線で「>」を作る */
  border-right: 4px solid #004DA0;
  border-radius: 4px;
  transition: right 0.3s ease;
  /* ホバー時の動き */
  pointer-events: none;
  /* クリックの邪魔をしない */
}


/* PCホバー時の動作 */
.cta-btn--blue:hover {
  opacity: 0.85;
  transform: translateY(-3px);
  /* 少し上に浮かせる */
}





/* ホバー時に矢印を少し動かす（large限定） */
.cta-btn--large:hover::after {
  right: 60px;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
  padding: 90px 0px 60px;
}

/* ============================================
   Campaign Card
   ============================================ */
.campaign-card {
  background: #fff;
  border: 4px solid #fff;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 210px;
}

.campaign-card__header {
  padding: 25px 30px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.campaign-card__header--green {
  background: #006934;
  color: #fff;
}

.campaign-card__label {
  font-size: 45px;
  font-weight: 500;
}

.ttl_liner {
  width: 150px;
  height: 3px;
  margin: 5px auto 10px;
  border-radius: 50px;
  background-color: #fff;
}


.campaign-card__title {
  font-size: 45px;
  font-weight: 500;
}

.campaign-card__body {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0px 145px;
}

/* Target Box */
.target-box {
  max-width: 1080px;
  margin: 0 auto;
}

.target-box__label {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}

.target-box__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

/* Notes */
.notes-small {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 15px;
}

.notes-small p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.nanapo-note {
  font-size: 24px;
  margin-top: 100px;
  line-height: 1.6;
  width: 104%;
  margin-left: -2%;
}

/* Point Present */
.point-present {
  text-align: center;
}

.point-present .green_txt {
  font-size: 16px;
  font-weight: 700;
  color: #006934;
}

.point-present__logo {
  margin: 0 auto 40px;
  max-width: 680px;
  width: 100%;
}

.point-present__txt {
  margin: 80px auto 0;
  width: 100%;
  max-width: 794px;
}

.point-present__desc {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.point-present__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.point-present__number {
  font-size: 72px;
  font-weight: 700;
  color: #E83828;
  line-height: 1;
}

.point-present__unit {
  font-size: 28px;
  font-weight: 700;
  color: #E83828;
}

.point-present__action {
  font-size: 28px;
  font-weight: 700;
  color: #E83828;
}

/* Bonus Row (横並びカード) */
.bonus-row {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  gap: 30px;
  margin: 0px auto;
}

.bonus-row--single {
  justify-content: center;
}

.bonus-row--single .bonus-card {
  max-width: 480px;
}

/* --- 修正後 --- */
.bonus-row__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 55px;
  margin: 0 -40px;
  z-index: 1;
}

/* ★画像自体のサイズ調整を追加 */
.bonus-row__plus img {
  width: 55px;
  /* 丸の大きさ（横） */
  height: 55px;
  /* 丸の大きさ（縦） */
  object-fit: contain;
  /* 画像が歪まないように */
  background-color: #006934;
  border-radius: 50%;
  display: block;
}

/* Bonus Card */
.bonus-card {
  flex: 1;
  border: 3px solid #006934;
  border-radius: 36px;
  padding: 20px 25px 40px;
  text-align: center;
  color: #006934;
}



.bonus-card__badge {
  display: inline-block;
  background: #006934;
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  padding: 4px 24px;
  border-radius: 27px;
  border: 2px solid #006934;
  white-space: nowrap;
  margin-bottom: 14px;
}

.bonus-card__subtitle {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  line-height: 1.5;
  border-bottom: 1px solid #006934;
  margin-bottom: 10px;
}

.bonus-card__condition {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 8px;
}

.bonus-card__number {
  font-size: 32px;
  font-weight: 700;
  color: #E95550;
  line-height: 1.45;
}

.note-mark {
  font-size: 14px;
  /* 本文に対して少し小さく */
  font-weight: 700;
  /* 周りの文字に負けない太さ */
  position: relative;
  /* 位置を動かすための基準 */
  bottom: 0em;
  /* ★数値を小さくするほど下に、大きくするほど上に移動します */
  margin-left: 0em;
  /* 前の文字との隙間 */
  vertical-align: baseline;
  /* 基準を文字の下端に合わせる */
  line-height: 1;
  /* 行の高さに影響を与えないように */
}

.bonus-card__point {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.bonus-card__note {
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.5;
  text-align: left;
  opacity: 0.85;
}



/* Entry Button Wrap */
.entry-btn-wrap {
  text-align: center;
  margin: 40px 0;
}

.cta-mid-wrap {
  text-align: center;
  margin: 40px 0 0px;
}

/* ============================================
   ナナポ Section
   ============================================ */
.nanapo-section {
  position: relative;
  background: #FEF5D3;
  padding: 110px 0 0;
  /* 下のパディングは弧が作るので0にするか調整 */
  overflow: hidden;
}

/* 弧を作る部分 */
.nanapo-curve-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 800px;
  background: #fff;
  clip-path: ellipse(50% 100% at 50% 100%);
  z-index: 1;
}

.nanapo-header__logo {
  width: 90%;
  margin: 0 auto;
  max-width: 773px;
}

.nanapo-bg {
  width: 100%;
  background-color: #fff;
}

.nanapo-section__inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
  /* 弧（z-index: 1）より上にコンテンツを表示 */
  padding-bottom: 250px;
  /* 弧の高さに合わせてコンテンツの下に余白を作る */
}

.nanapo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  /* 弧の高さに合わせて調整 */
  position: relative;
  z-index: 10;
}

.nanapo-txt {
  text-align: center;
}

.nanapo-header__suffix {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.nanapo-service-name {
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
  color: #004DA0;
}

.nanapo-service-name strong {
  font-size: 45px;
  font-weight: 700;
}

.nanapo-desc {
  font-size: 32px;
  line-height: 1.43;
  color: #004DA0;
  font-weight: 500;
  margin-bottom: 80px;
}



.nanapo-exchange strong {
  color: #FFE034;
  font-size: 22px;
}

.nanapo-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nanapo-features__item {
  flex: 0 1 280px;
}

.nanapo-features__item img {
  width: 100%;
  border-radius: 12px;
}

/* ============================================
   Accordion Section
   ============================================ */
.accordion {
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion--inside {
  margin-top: 100px;
  margin-bottom: 0;
}

.accordion__header {
  position: relative;
  width: 100%;
  padding: 40px 100px 40px 40px;
  background: #004DA0;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
  transition: background 0.3s;
}

.accordion__header:hover {
  background: #003d8a;
}

.accordion__title {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  display: block;
}

.accordion__icon {
  width: 55px;
  height: 55px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/open_icon.png);
  /* 閉じた時の画像パス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s ease-in-out, transform 0.2s ease-in-out;
}


/* --- アコーディオンが開いた時 (aria-expanded="true") --- */
.accordion__header[aria-expanded="true"] .accordion__icon {
  background-image: url(../img/close_icon.png);
  /* 開いた時の画像パス */
}

/* 擬似要素（古いプラス記号）は不要なので削除またはコメントアウト */
.accordion__icon::before,
.accordion__icon::after {
  display: none;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #D7EDF8;
}

.accordion__body.is-open {
  max-height: 3000px;
}

.accordion__content {
  padding: 90px;
}

.accordion__subtitle {
  font-size: 45px;
  font-weight: 500;
  color: #004DA0;
  line-height: 1.45;
  margin-bottom: 30px;
  text-align: center;
}

.accordion__prep {
  text-align: center;
  font-size: 15px;
  background: #F0F8FF;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Steps */
.steps {
  margin: 0 auto 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 20px;
  background: #fff;
  border-radius: 30px;
}

.step--complete {
  background: #004DA0;
  color: #fff;
  justify-content: center;
}

.step__number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #004DA0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 0.1em;
}

.step_box_row {
  display: flex;
  justify-content: space-between;
  /* 両端に寄せる */
  align-items: flex-start;
  /* 上下中央揃え（お好みで stretch に変更可） */
  gap: 20px;
  /* ボックス間の隙間 */
  width: 100%;
  padding: 30px 30px 30px 0;
}

.step_box_row .txt_box {
  flex: 1;
  /* 均等配分 */
  width: 50%;
  /* 幅を半分に固定 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  /* テキストを中央寄せ */
}


/* テキストボックス内のアイコン（矢印など） */
.step_box_row .txt_box img {
  width: 55px;
  /* アイコンの幅は固定 */
  height: auto;
  margin: 15px auto;
  /* 上下の余白調整 */
}

/* 画像ボックス（右側） */
.step_box_row .img_box {
  flex: 1;
  /* 均等配分 */
  width: 50%;
  /* 幅を半分に固定 */
  display: flex;
  max-width: 418px;
  justify-content: center;
  /* ボックス内で画像を中央寄せ */
  align-items: center;
}



.step_box_row .img_box img {
  width: 100%;
  /* 親の50%幅に合わせて広がる */
  /* 最大幅は418pxに固定 */
  height: auto;
  /* アスペクト比を維持 */
}

.is-second-step .img_box {
  max-width: 330px;
}

.is-three-step .img_box {
  max-width: 237px;
}

.is-four-step .img_box {
  max-width: 237px;
}

.is-five-step .img_box {
  max-width: 314px;
}

.step__text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.43;
  color: #004DA0;
  padding: 10px 0;
}

.step__text_02 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: #004DA0;
  padding: 40px 10px;
}

/* 「is-first-step」がついている時だけ、中のテキストのパディングを消す */

.is-first-step .txt_box .step__text_02,
.is-second-step .txt_box .step__text_02,
.is-three-step .txt_box .step__text_02,
.is-four-step .txt_box .step__text_02,
.is-five-step .txt_box .step__text_02 {
  padding: 0 0 0 10px;
}

/* 矢印アイコンの上下の余白も詰めたい場合はこれも追加 */
.is-first-step .txt_box img {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}


.step__arrow {
  padding: 43px 0 30px;
}

.step__arrow img {
  margin: 0 auto;
  width: 80px;
  height: 45px;
}

.link-detail {
  display: inline-block;
  color: #004DA0;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid #004DA0;
  margin-bottom: 24px;
}

.link-detail:hover {
  opacity: 0.7;
}

/* Entry Steps Image */
.entry-steps {
  text-align: center;
  margin-top: 24px;
}

.entry-steps__img {
  max-width: 500px;
  margin: 0 auto;
}

/* Entry Method */
.entry-method {
  max-width: 600px;
  margin: 0 auto 24px;
}

.entry-method__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #E8F8E8;
  border-radius: 12px;
  border: 2px solid #006934;
}

.entry-method__step--complete {
  background: #006934;
  color: #fff;
  justify-content: center;
}

.entry-method__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #006934;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.entry-method__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.entry-method__arrow {
  text-align: center;
  padding: 8px 0;
}

.entry-method__arrow svg {
  width: 24px;
  height: 12px;
}

.entry-app-img {
  text-align: center;
  margin-top: 16px;
}

.entry-app-img img {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   CTA Bottom
   ============================================ */
.cta-bottom {
  padding: 40px 20px;
  background: #f0f7e8;
}

.cta-bottom__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ============================================
   Disclaimer Section
   ============================================ */
.disclaimer-section {
  background: #FEF5D3;
  padding: 100px 0;
}

.disclaimer-section__inner {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

.disclaimer-block {
  margin-bottom: 50px;
}

.accordion-disclaimer .disclaimer-block {
  margin-bottom: 30px;
}

.disclaimer-block__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.disclaimer-block__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.disclaimer-block__list {
  padding-left: 1.5em;
}

.disclaimer-block__li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.square_li {
  margin-top: 30px;
}

.accordion-disclaimer {
  border-top: 1px solid #333;
  margin-top: -30px;

}

.accordion-disclaimer__header {
  width: 100%;
  font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: #333;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  /* ↓ ここを追加：開いても閉じてもここに線が残ります ↓ */
  border-bottom: 1px solid #333;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

/* 丸い矢印アイコン */
.accordion-disclaimer__icon {
  width: 22px;
  height: 22px;
  background-color: #707070;
  /* アイコンの背景色 */
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s;
}

/* 矢印（>を回転させたもの） */
.accordion-disclaimer__icon::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 開いた時にアイコンを回転 */
.accordion-disclaimer__header[aria-expanded="true"] .accordion-disclaimer__icon {
  transform: rotate(180deg);
}

/* 中身の初期状態（隠す） */
.accordion-disclaimer__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* 開いた状態（JSでクラスを制御） */
.accordion-disclaimer__body.is-open {
  max-height: 100%;
  /* 十分な高さ */
}

.accordion-disclaimer__content {
  padding: 23px 0px;
  text-align: left;
}

.disclaimer-main-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* テーブル全体のスタイル */
.disclaimer-table {
  width: 100%;
  border-collapse: collapse;
  /* 隣り合う枠線を重ねる */
  margin-top: 10px;
  border-top: 1px solid #333333;
  margin-bottom: 30px;
}

/* 各セルの共通設定（th, td） */
.disclaimer-table th,
.disclaimer-table td {

  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #333333;
}

/* 左側のセル（項目名） */
.disclaimer-table th {
  padding: 12px 15px 15px 0;
  font-weight: 500;
  width: 30%;
  /* 左側の幅を固定（お好みで調整） */
  color: #333;
  border-right: 1px solid #333333;
}

/* 右側のセル（内容） */
.disclaimer-table td {
  padding: 12px 0px 15px 15px;
  width: 70%;
  color: #333;
}

/* Fee Table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.fee-table th {
  background: #004DA0;
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-weight: 500;
}

.fee-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  line-height: 1.7;
  vertical-align: top;
}

.fee-table__label {
  background: #f5f5f5;
  font-weight: 500;
  width: 200px;
  white-space: nowrap;
}

/* Disclaimer Notes */
.disclaimer-notes {
  font-size: 14px;
  line-height: 1.8;
  padding: 16px 0;
  border-top: 1px solid #ddd;
}

.disclaimer-notes p {
  margin-bottom: 4px;
}

.disclaimer-notes--bottom {
  border-top: none;
  padding-top: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  text-align: center;
  padding-bottom: 160px;
}

.footer__copyright {
  color: #333333;
  font-size: 14px;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media screen and (max-width: 1200px) {
  .campaign-card {
    margin-bottom: 100px;
  }

  .nanapo-section__inner {
    padding-bottom: 100px;
  }

  .point-present__logo {
    max-width: 580px;
    margin: 10px auto 40px;
  }

  .point-present__txt {
    margin: 60px auto -10px;
    max-width: 680px;
  }

  .nanapo-header__logo {
    max-width: 680px;
  }
}

/* ============================================
   Responsive - SP
   ============================================ */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  /* スマホ：改行を有効化 */
  .sp-br {
    display: inline;
  }

  .sp_mode {
    display: inline;
  }

  .pc_mode {
    display: none;
  }

  .ttl_liner {
    width: 82px;
  }

  /* Campaign Period */
  .campaign-period {
    padding: 16px 12px;
  }

  .campaign-period__inner {
    padding: 16px 20px;
  }

  .campaign-period__label {
    font-size: 14px;
  }

  .campaign-period__date {
    font-size: 16px;
  }

  .campaign-period__num {
    font-size: 28px;
  }

  /* CTA */


  .cta-btn--yellow {
    max-width: 90%;
    /* 横幅は画面の90% */
    height: 60px;
    /* スマホではボタンの高さを低く */
    font-size: 20px;
    /* 文字を少し小さく */
    border-radius: 30px;
    /* スマホでは丸薬型にする（お好みで） */
  }

  .cta-btn--yellow span {
    padding-right: 30px;
    /* 矢印との間隔も縮める */
  }

  .cta-btn--yellow span::after {
    width: 14px;
    /* 矢印を少し小さく */
    height: 14px;
    border-top-width: 3px;
    /* 線の太さを少し細く */
    border-right-width: 3px;
  }

  .cta-btn {
    padding: 14px 28px;
    max-width: 95%;
  }

  .entry-btn-wrap {
    margin: 25px 0;
  }

  .cta-btn--large {
    font-size: 16px;
    padding: 16px 28px;
  }

  /* スマホ：ボタンのデザイン（画像2） */
  .cta-btn--blue {
    /* スマホでのサイズ */
    max-width: 100%;
    /* 横幅は画面の90% */
    height: auto;
    /* 文字が2行になるので高さは自動 */
    border-radius: 100px;
    /* スマホでは角をさらに丸く */

    font-size: 16px;
    padding: 15px 30px 15px 20px;
    line-height: 1.4;
    /* 行間を広げて2行を読みやすく */
    text-align: center;

    /* 矢印用：相対配置を維持 */
    position: relative;
    justify-content: center;
    /* 2行テキストを中央へ */
  }

  /* スマホ：矢印（>）の位置とサイズ調整 */
  .cta-btn--blue::after {
    right: 25px;
    /* スマホでは右端から40px */
    width: 17px;
    /* 矢印を少し小さく */
    height: 17px;
    border-top: 2px solid #004DA0;
    border-right: 2px solid #004DA0;
    border-radius: 2px;
  }

  /* スマホ：ホバーアクション（必要に応じて無効化、または弱める） */
  .cta-btn--blue:hover {
    transform: none;
    /* スマホでは浮かせるアクションを解除 */
  }

  .cta-btn--blue:hover::after {
    right: 40px;
    /* スマホでは矢印も動かさない */
  }

  .cta-btn--green {
    /* スマホでのサイズ */
    max-width: 100%;
    /* 横幅は画面の90% */
    height: auto;
    /* 文字が2行になるので高さは自動 */
    border-radius: 100px;
    /* スマホでは角をさらに丸く */

    font-size: 16px;
    padding: 25px 30px 25px 20px;
    line-height: 1.4;
    /* 行間を広げて2行を読みやすく */
    text-align: center;

    /* 矢印用：相対配置を維持 */
    position: relative;
    justify-content: center;
    /* 2行テキストを中央へ */
  }

  .cta-btn--green::after {
    right: 25px;
    /* スマホでは右端から40px */
    width: 17px;
    /* 矢印を少し小さく */
    height: 17px;
    border-top: 2px solid #006934;
    border-right: 2px solid #006934;
    border-radius: 2px;
  }

  .nanapo-bg .cta-btn--blue {
    /* スマホでのサイズ */
    max-width: 250px;
    /* 横幅は画面の90% */
    height: auto;
    /* 文字が2行になるので高さは自動 */
    border-radius: 100px;
    /* スマホでは角をさらに丸く */

    font-size: 16px;
    padding: 25px 30px 25px 20px;
    line-height: 1.4;
    /* 行間を広げて2行を読みやすく */
    text-align: center;

    /* 矢印用：相対配置を維持 */
    position: relative;
    justify-content: center;
    /* 2行テキストを中央へ */
  }

  .nanapo-bg .cta-btn--blue::after {
    right: 25px;
    /* スマホでは右端から40px */
    width: 17px;
    /* 矢印を少し小さく */
    height: 17px;
    border-top: 2px solid #004DA0;
    border-right: 2px solid #004DA0;
    border-radius: 2px;
  }


  /* Main */
  .main-content {
    padding: 45px 0px 46px;
    width: 85%;
  }

  .campaign-card__body {
    padding: 25px 0px;
  }

  /* Campaign Card */
  .campaign-card {
    border-width: 3px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .campaign-card__header {
    padding: 16px 20px;
    border-radius: 21px 21px 0 0;
  }

  .campaign-card__label {
    font-size: 24px;
  }

  .campaign-card__title {
    font-size: 24px;
  }



  /* Target Box */


  .target-box__label {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .target-box__text {
    font-size: 16px;
    text-align: left;
  }

  .notes-small {
    margin: 15px auto 5px;

  }

  .notes-small p {
    font-size: 14px;
  }

  /* Point Present */




  .point-present__desc {
    font-size: 16px;
  }

  .point-present__txt {
    margin: 20px auto 0;
  }

  .point-present__number {
    font-size: 48px;
  }


  .point-present__logo {
    margin: 10px auto 40px;
    max-width: 680px;
    width: 90%;
  }

  .point-present__unit,
  .point-present__action {
    font-size: 22px;
  }

  /* Bonus Row */
  .bonus-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .bonus-row__plus {
    width: 34px;
    height: 34px;
    font-size: 28px;
    margin: -10px -60px;
  }

  .bonus-row__plus img {
    width: 34px;
    height: 34px;
  }

  .bonus-card {
    width: 100%;
    padding: 15px 15px 25px;
    display: flex;
    flex-direction: column;
    border-radius: 20px
  }

  .bonus-card__note {
    margin-top: 0px;
    font-size: 14px;
  }

  .bonus-card__badge {
    /* 幅を文字分だけにするための設定 */
    align-self: center;
    /* 親のflexの影響を打ち消して中央に寄せる */
    width: fit-content;
    /* 幅を中身（文字）に合わせる */
    display: inline-block;
    /* インラインブロックにする */

    /* 見た目の設定 */
    font-size: 15px;
    padding: 4px 20px;
    background: #006934;
    color: #fff;
    border-radius: 27px;
    /* 角丸 */
    white-space: nowrap;
    /* 改行を防ぐ */
    margin-bottom: 14px;
    /* 下との余白 */

  }

  .bonus-card__subtitle {
    font-size: 16px;
  }

  .bonus-card__condition {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .bonus-card__point {
    font-size: 16px;
  }

  .bonus-card__number {
    font-size: 24px;
  }

  /* Nanapo */
  .nanapo-section {
    padding: 60px 0 0px;
    margin-top: 20px;
  }

  .nanapo-section__inner {
    padding-bottom: 46px;
  }

  .nanapo-curve-bg {
    height: 330px;
  }

  .accordion--inside_02 {
    margin-top: 25px !important;
  }

  .accordion--inside {
    margin-top: 90px;
  }

  .nanapo-header__logo {
    width: 90%;
    margin: 0 auto;
    max-width: 773px;
  }

  .nanapo-header__suffix {
    font-size: 28px;
  }

  .nanapo-note {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
    margin-top: 25px;
  }

  .nanapo-service-name {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .nanapo-service-name strong {
    font-size: 32px
  }

  .nanapo-desc {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .nanapo-exchange {
    font-size: 16px;
  }

  .nanapo-exchange strong {
    font-size: 18px;
  }

  .nanapo-features {
    gap: 16px;
  }

  .nanapo-features__item {
    flex: 0 1 100%;
    max-width: 280px;
  }

  /* Accordion */
  .accordion__header {
    padding: 30px 48px 30px 35px;
  }


  .accordion__icon {
    width: 23px;
    height: 23px;
    right: 25px;
  }

  .nanapo-section .accordion--inside {
    margin: 50px auto 0;
    width: 90%;
  }



  .accordion__title {
    font-size: 24px;
  }

  .accordion__icon::before {
    width: 16px;
    height: 2px;
  }

  .accordion__icon::after {
    width: 2px;
    height: 16px;
  }

  .accordion__content {
    padding: 30px 13px 40px;
  }

  .accordion__subtitle {
    font-size: 20px;
    margin-bottom: 25px;
  }


  .steps {
    margin: 0px;
  }

  .step {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    padding: 20px 10px;
  }

  .step__number {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .step_box_row .img_box img {
    width: 90%;
  }

  .step__text {
    font-size: 16px;
    text-align: center;
    padding: 0;
  }

  .step__text_02 {
    font-size: 16px;
    padding: 0;
    text-align: center;
  }

  .is-first-step .txt_box img {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .step_box_row .txt_box img {
    width: 29px;
    height: 16px;
  }

  .step_box_row .txt_box {
    text-align: center;
  }

  .step_box_row {
    padding: 0px;
  }

  .is-first-step .txt_box .step__text_02,
  .is-second-step .txt_box .step__text_02,
  .is-three-step .txt_box .step__text_02,
  .is-four-step .txt_box .step__text_02,
  .is-five-step .txt_box .step__text_02 {
    padding: 0px;
  }

  .step__arrow {
    padding: 19px 0 15px;
  }

  .step__arrow img {
    width: 51px;
    height: 29px;
  }

  .step_box_row {
    flex-direction: column;
    /* スマホでは縦並びにする */
    align-items: center;
  }

  .step_box_row .txt_box,
  .step_box_row .img_box {
    width: 100%;
    /* スマホでは横幅いっぱい */
  }

  .entry-method__text {
    font-size: 14px;
  }


  .disclaimer-table td {
    padding: 12px 0px 15px 5px;
    font-size: 16px;
    vertical-align: top;
  }

  .disclaimer-table th {
    padding: 12px 5px 15px 0;
    font-size: 16px;
    vertical-align: top;
  }

  /* Disclaimer */
  .disclaimer-section__inner {
    padding: 0 16px;
  }

  .disclaimer-section {
    padding: 40px 0 0;
  }

  .disclaimer-table {
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .disclaimer-block__title {
    font-size: 16px;
  }

  .disclaimer-block {
    margin-bottom: 45px;
  }


  .disclaimer-notes {
    font-size: 12px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 100px;
  }

  .footer__copyright {
    font-size: 11px;
  }
}

/* ============================================
   Responsive - Small SP
   ============================================ */

@media screen and (max-width: 400px) {
  .disclaimer-table td {
    padding: 5px 0px 7px 5px;
    font-size: 14px;
    vertical-align: top;
  }

  .disclaimer-table th {
    padding: 5px 5px 7px 0;
    font-size: 14px;
    vertical-align: top;
  }
}