/* =========================
  ベース
========================= */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #122950;
  overflow-x: hidden;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
img {
  width: 100%;
  display: block;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
}
/* =========================
  FV
========================= */
/* 親を基準にする */
.fv {
  position: relative;
}
/* 画像 */
.fv img {
  width: 100%;
  display: block;
}
/* CTAボタン */
.fv-cta {
  position: absolute;
  left: 50%;
  bottom: 5%; /* ← 位置調整ここ */
  transform: translateX(-50%);
}
.cta-btn-fv {
  font-size: 18px !important;
}
.cta-lead-fv {
  margin: 0 !important;
}
.fv-cta .cta-lead {
  color: #ffffff !important;
}
/* =========================
  概要
========================= */
.about {
  background-image: url("../image/bg_section.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.label {
  font-size: 32px;
  font-weight: bold;
  text-shadow:3px 3px 0 #fff; 
  text-align: center;
  position: relative;
  /*display: inline-block;*/
  background-image: url("../image/ribbon.webp"); /* 装飾画像 */
  background-repeat: no-repeat;
  background-position: center bottom; /* 文字の下に配置 */
  background-size: contain;           /* 画像サイズを自動調整 */
  padding: 10px; 
}
.date {
  font-size: 32px;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}
.date .month,
.date .day {
  font-size: 1.5em; 
  font-weight: bold;
}
.note-text {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  margin-right: 20px;
}
.desc-title {
  margin-top: 24px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
.desc-main {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
  line-height: 1.2;
}
.highlight {
  color: #A40000;
  font-size: 40px;
}
.more {
  position: relative;
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.more::after {
  content: "";
  position: absolute;
  top: 50%;                   /* 垂直中央 */
  left: 75%;                  /* p の右端に配置 */
  transform: translateY(-50%); /* 中央寄せ */
  width: 150px;                 /* 画像の幅 */
  height: 150px;                /* 画像の高さ */
  background-image: url("../image/card.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.more-text {
  font-size: 24px;
}
.attention {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  margin-right: 20px;
}
.attention a {
  text-decoration: underline;
}
/* =========================
  ステップ
========================= */
/* =========================
  セクション
========================= */
.condition {
  background: url("../image/bg_section.webp") no-repeat center / cover;
  padding: 80px 10px;
}
/* タイトル */
.condition-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px !important;
  position: relative;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.condition-title::before,
.condition-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 2px;
  background: #c7a76a;
}
.condition-title::before { left: 10%; }
.condition-title::after { right: 10%; }
/* =========================
  テーブル枠
========================= */
.wrapper-table {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(10px, 1.2vw, 18px);
}
/* =========================
  テーブル
========================= */
.condition-table {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
  max-width: 840px;
}
/* PC表：実測比率を col の％で固定（合計100%） */
.condition-table.pc-only {
  table-layout: fixed;
}
/* =========================
  ヘッダー（タブ）
========================= */
.condition-table th {
  position: relative;
  padding: 16px 28px 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  /* 台形 */
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    0 100%
  );
  /* タブ連結 */
  margin-right: -14px;
  /* 立体感 */
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
}
/* 先端の丸み */
.condition-table th::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: inherit;
  border-radius: 50%;
}
/* =========================
  ヘッダー色
========================= */
.condition-table th:nth-child(1) {
  background: linear-gradient(#2fc1bb, #249e9b);
}
.condition-table th:nth-child(2) {
  background: linear-gradient(#3a9eb1, #2c7e8e);
}
.condition-table th:nth-child(3) {
  background: linear-gradient(#6c84aa, #5a6f97);
}
.condition-table th:nth-child(4) {
  background: linear-gradient(#5b647c, #4a536c);
}
.condition-table th:nth-child(5) {
  background: linear-gradient(#3c5969, #2e4a58);
}
.condition-table th:nth-child(6) {
  background: linear-gradient(#3a4048, #2c3138);
}
/* =========================
  セル
========================= */
.condition-table td {
  background: #eef1f4;
  padding: clamp(10px, 1.5vw, 15px);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: bold;
  line-height: 1.4;
  border-radius: 6px;
  vertical-align: middle;
}
/* 金額 */
.condition-table .price {
  color: #A40000;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  text-align: center;
}
/* リンク */
.condition-table a {
  color: #2aa6a4;
  text-decoration: underline;
}
/* =========================
  注意書き
========================= */
.condition-note {
  margin-top: 18px;
  font-size: clamp(8px, 1.2vw, 12px);
  color: #666;
  line-height: 1.6;
}
.condition--note {
  display: flex;
  justify-content: flex-end;
}
/* =========================
  CTA
========================= */
.cta-lead {
  text-align: center;
  margin: 50px 0 12px;
  font-weight: bold;
  font-size: 20px;
}
.cta-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 100px;
  font-size: 24px;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(#ff7a1a, #ff5a00);
  border-radius: 12px;
  box-shadow:
    0 6px 0 #cc4a00,
    0 10px 20px rgba(0,0,0,0.15);
  transition: 0.2s;
}
.cta-btn:hover {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 #cc4a00,
    0 6px 12px rgba(0,0,0,0.12);
}
/* =========================
  プレゼント例
========================= */
/* =========================
  セクション
========================= */
.faq {
  background: url("../image/bg_section.webp") no-repeat center / cover;
  padding: 80px 20px;
}
/* タイトル */
.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}
.faq-title::before,
.faq-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #c7a76a;
}
.faq-title::before { left: 20%; }
.faq-title::after { right: 20%; }
/* =========================
  レイアウト（2カラム）
========================= */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width:920px;
  margin: 0 auto;
}
/* タイトルだけ1行使う */
.faq-title {
  grid-column: 1 / -1;
}
/* =========================
  カード
========================= */
.faq-item {
  border: 2px solid #1e2f4d;
  background: #fff;
  position: relative;
}
/* =========================
  質問（Q）
========================= */
.faq-q {
  background: #1e2f4d;
  color: #fff;
  padding: 14px 16px 14px 60px;
  font-weight: bold;
  font-size: 15px;
  position: relative;
}
/* Qアイコン */
.faq-q::before {
  content: "Q";
  position: absolute;
  left: -5px;
  top: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg, 
    #3EA1DC 0%,
    #3EA1DC 50%, 
    #004D90 50%,
    #004D90 100%);
  color: #fff;
  font-weight: bold;
  font-size: 38px;
  font-family: "Montserrat", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================
  回答（A）
========================= */
.faq-a {
  background: #ffffff;
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  min-height: 130px;
}
/* =========================
  注意事項
========================= */
.note {
  padding: 24px 16px;
}
.note-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}
.note-title::before,
.note-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #c7a76a;
}
.note-title::before { left: 20%; }
.note-title::after { right: 20%; }
.note-list {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}
.note--list {
  display: flex;
  justify-content: center;
  margin-left: 100px;
}
.note-list li {
  margin-bottom: 8px;
}
.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}

/* =========================
  レスポンシブ
========================= */
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0;
  }
  .fv-cta {
    bottom: 6%;
    width: 90%;
  }
  .cta-btn-fv {
    font-size: 16px !important;
    padding: 10px 50px;
  }
  .cta-lead-fv {
    font-size: 14px;
  }
  .cta-btn {
    padding: 12px 50px;
    font-size: 20px;
  }
/*概要*/
  .about {
    padding: 80px 10px;
  }
  .label {
    font-size: 20px;
  }
  .date {
    font-size: 20px;
  }
  .desc-main {
    font-size: 20px;
  }
  .highlight {
    font-size: 26px;
  }
  .more {
    font-size: 24px;
  }
  .more::after {
    width: 80px;
    height: 80px;
    left: 65%;
  }
/*画像関連*/
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
/*３ステップ*/
  .step img {
    width: 100%;
    margin: 0;
  }
/*プレゼント例*/
/*付与要件*/
  .condition-title::before,
  .condition-title::after {
    width: 40px;
  }
  .condition-title::before { left: 5%; }
  .condition-title::after { right: 5%; }
  
  /*縦ラベル*/
  .text {
    text-align: center;
  }
  .condition-table {
    width: 340px;
    margin: 0 auto;
  }
  .condition-table td {
    background: #eef1f4;
    padding: clamp(5px, 1.5vw, 10px);
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: bold;
    line-height: 1.4;
    border-radius: 6px;
    vertical-align: middle;
  }
  .condition-table th {
    position: relative;
    padding: 20px 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;

  /* ▼下向き台形に変更 */
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 16px),
      50% 100%,
      0 calc(100% - 16px)
    );
  }
  .condition-table th.condition--table1 {
    background: linear-gradient(#2fc1bb, #249e9b);
  }
  .condition-table th.condition--table2 {
    background: linear-gradient(#3a9eb1, #2c7e8e);
  }
  .condition-table th.condition--table3 {
    background: linear-gradient(#6c84aa, #5a6f97);
  }
  .condition-table th.condition--table4 {
    background: linear-gradient(#5b647c, #4a536c);
  }
  .condition-table th.condition--table5 {
    background: linear-gradient(#3c5969, #2e4a58);
  }
  .condition-table th.condition--table6 {
    background: linear-gradient(#3a4048, #2c3138);
  }
/*Q＆A*/
  .faq-title,
  .note-title,
  .condition-title {
    font-size: 24px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-q {
    font-size: 13px;
    padding-left: 50px;
  }
  .faq-a {
    font-size: 12px;
    min-height: auto;
  }
  .faq-title::before,
  .faq-title::after {
    width: 40px;
  }
  .faq-title::before { left: 5%; }
  .faq-title::after { right: 5%; }
/*注意事項*/
  .note--list {
    margin-left: 0;
    padding: 0 16px;
  }
  .note-list {
    font-size: 11px;
  }
  .note-title::before,
  .note-title::after {
    width: 40px;
  }
  .note-title::before { left: 5%; }
  .note-title::after { right: 5%; }
  .note--text {font-size: clamp(8px, 1.2vw, 14px);
  }
}

