@charset "utf-8";

/* ==========================================================================
   ドコモの銀行ならおトクが盛りだくさん！
   ========================================================================== */

/* リセット系 ------------------------------------------------------------ */
body * {
  -ms-overflow-style: auto !important;
  scrollbar-width: auto !important;
  scrollbar-color: auto !important;
  scrollbar-gutter: auto !important;
}

body *::-webkit-scrollbar {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
}

body *::-webkit-scrollbar-track {
  background: #F0E8CE;
  border-radius: 100vw;
  cursor: pointer;
}

body *::-webkit-scrollbar-thumb {
  background: #D7BD78;
  border-radius: 100vw;
  cursor: pointer;
}

a,
abbr,
address,
article,
aside,
b,
blockquote,
body,
button,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
img,
ins,
label,
legend,
li,
main,
mark,
menu,
nav,
ol,
p,
pre,
q,
section,
select,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var {
  border: 0;
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* 変数 ------------------------------------------------------------------ */
:root {
  --red: #B30000;
  --alert: #BD2639;
  --alert-strong: #DE0808;
  --crimson: #C40031;
  --text: #1B1B1B;
  --text-alt: #303C48;
  --note: #575757;
  --link: #196097;
  --beige: #FAEEE4;;
  --beige-2: #F1EDE1;
  --beige-3: #F6F3E7;
  --gold: #886B07;
  --gold-2: #976A36;
  --gray: #656565;
  --gold-box: #F0E8CE;
  --gold-grad: linear-gradient(90deg, #D3B76F 0%, #FFF0CA 50%, #D3B76F 100%);
  /* ボタンの影はぼかしなしの4px下方向。ゴールドのみ濃赤で受ける */
  --shadow-btn: 0 4px 0 rgba(36, 36, 36, 0.25);
  --shadow-btn-gold: 0 4px 0 #990000;
}

/* 全体 ------------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--text);
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: var(--text);
  background: #FFFFFF;
  box-sizing: border-box;
}

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

/* ヘッダー -------------------------------------------------------------- */
/* PCでは本文カラムがヘッダー直下に接するため、
   カラムの影がヘッダーへ滲まないよう重ね順を上げる */
.header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 16px 0;
  background: #FFFFFF;
}

.header-logo {
  display: block;
  width: 264px;
}

/* PC 2カラム ------------------------------------------------------------ */
.wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

/* コンテンツが390px固定になる幅から背景を敷く。
   下端の余白は追従CTAとの隙間になるため設けない（PCは820px以上で別途指定） */
@media screen and (min-width: 541px) {
  .wrap {
    background: #FAEEE4;
  }
}

/* PCデザイン（1280px）の実測値：サイド360px＋間隔40px＋本文390px、
   本文はヘッダー直下から始まる */
@media screen and (min-width: 820px) {
  .wrap {
    gap: 40px;
    padding: 0 0 112px;
  }
}

.side {
  display: none;
}

@media screen and (min-width: 820px) {
  .side {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 400px;
    /* デザインは 54+360+40+390=844px を中央寄せした配置。
       1280px時にサイド272px／本文672pxから始まる */
    margin-left: 54px;
  }
}

/* ナビはサイドカラムの左端（バナーの左端）に揃える */
.side-nav {
  width: 100%;
  margin-top: 31px;
}

/* 項目の送りを36pxにする（行送り28px＋8px） */
.side-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  color: #1B1B1B;
  transition: opacity 0.3s ease;
}

.side-nav-link::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #CC0033;
  border-radius: 100%;
}

.side-nav-link:hover {
  opacity: 0.7;
}

/* ナビ・注意喚起ボックスと同じくサイドカラムの左端に揃える */
.side-shoplist {
  width: 100%;
  margin-top: 16px;
}

/* padding: 3px がゴールドの枠線を兼ねる（上段の地色と同じグラデーション） */
.side-banner {
  width: 100%;
  margin-top: 16px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 16px;
}

.side-banner-ribbon {
  display: block;
  width: 315px;
  margin: auto;
  padding: 8px 40px;
  text-align: center;
  background: #FADDCF;
}

.side-banner-ribbon img {
   width: 235px;
}

.side-banner-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
}

.side-banner-qr {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
}

.side-banner-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

/* 下段のベージュ面。枠線3px分だけ内側に入るので角丸は 16-3=13px */
.side-banner-foot {
  padding: 15px 20px 21px;
  text-align: center;
  background: var(--beige);
  border-radius: 0 0 13px 13px;
}

.side-banner-foot p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
}

.side-banner-foot .btn.--outline {
  max-width: 228px;
  min-height: 48px;
  font-size: 15px;
  color: var(--red);
  border: 1px solid #990000;
}

/* コンテンツ ------------------------------------------------------------ */
.content {
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
}

/* 影は390px固定カラムとして浮かせる幅でのみ適用する
   （全幅表示時に付けるとヘッダーへ影が滲む） */
@media screen and (min-width: 541px) {
  .content {
    flex-shrink: 0;
    width: 390px;
    margin-top: 50px;
    box-shadow: 0 0 32px #FADDCF;
  }
}

/* PCデザインでは本文カラムがヘッダー直下から始まる */
@media screen and (min-width: 820px) {
  .content {
    margin-top: 0;
  }
}

/* 汎用 ------------------------------------------------------------------ */
.section {
  width: 100%;
  padding:40px 24px;
}

.section.--white {
  color: #FFFFFF;
  background: var(--white);
  padding-top: 0;
}

.section.--beige {
  background: var(--beige);
}

.section.--beige2 {
  background: var(--beige-2);
}

.section.--pill-top {
  padding-top: 32px;
}

.section.--white.--list{
  color: #FFFFFF;
  background: var(--white);
  padding: 16px 24px;
}


.section.--alert-top .alert + .shoplist-link {
  margin-top: 16px;
}

.section.--alert-top .shoplist-link + .section-title {
  margin-top: 24px;
}

.section.program {
  padding: 24px;
}

@media screen and (min-width: 820px) {
  .section.--alert-top .alert,
  .section.--alert-top .shoplist-link {
    display: none;
  }

  /* 非表示でも隣接セレクタは効くため、見出しの上マージンを戻す */
  .section.--alert-top .shoplist-link + .section-title {
    margin-top: 0;
  }
}

.section.--merit {
  padding-bottom: 33px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.pill {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 17px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  color: #FFFFFF;
  background: var(--red);
  border-radius: 8px;
}

/* 注記 */
.note-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--note);
}

.note {
  position: relative;
  padding-left: 1.4em;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.note.--num {
  padding-left: 2.2em;
}

.note.--num::before {
  content: none;
}

.note-num {
  position: absolute;
  top: 0;
  left: 0;
}

.note a {
  color: var(--note);
  text-decoration: underline;
}

.note.--alert {
  color: var(--red);
}

.disc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disc {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.disc::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 100%;
}

.disc.--bold {
  font-weight: 700;
}

/* 注意喚起ボックス ------------------------------------------------------ */
.alert {
  position: relative;
  padding: 17px 18px 18px 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
  color: var(--alert);
  background: #FFECEC;
  border-radius: 8px;
}

.alert::before {
  content: "!";
  position: absolute;
  top: 19px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #FFECEC;
  background: var(--alert);
  border-radius: 100%;
}

.alert a {
  color: inherit;
  text-decoration: underline;
}

.alert a:hover {
  text-decoration: none;
}

/* ボタン ---------------------------------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-inline: auto;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 8px;
  transition: filter 0.3s ease, transform 0.15s ease;
}

.btn.--sm {
  max-width: 183px;
  padding-inline: 8px;
}

.btn.--md {
  max-width: 228px;
  padding-inline: 9px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.btn.--lg {
  max-width: 320px;
}

.btn:hover {
  filter: brightness(0.92);
}

.btn:active {
  transform: translateY(2px);
}

.btn.--red {
  color: #FFFFFF;
  background: var(--red);
  border: 1px solid #990000;
  box-shadow: var(--shadow-btn);
}

.btn.--gold {
  color: var(--text);
  background: var(--gold-grad);
  box-shadow: var(--shadow-btn-gold);
}

.btn.--white {
  color: var(--text);
  background: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn.--outline {
  color: #3D3D3D;
  background: #FFFFFF;
  border: 1px solid #3D3D3D;
  box-shadow: var(--shadow-btn);
}

.btn.--white {
  color: #3D3D3D;
}

.btn-sup {
  font-size: 11px;
  font-weight: 700;
  vertical-align: super;
}

.dcard_btn {
  border: 1px solid var(--note);
  border-radius: 42px;
  background: #FFF;
  color: var(--note);
  font-weight: 700;
  line-height: 125%;
  padding: 12px 16px;
  display: block;
  text-align: center;
  margin-top: 24px;
}

.goldu .dcard_btn {
  border: 1px solid var(--gold);
  border-radius: 42px;
  background: #FFF;
  color: var(--gold);
  font-weight: 700;
  line-height: 125%;
  padding: 12px 16px;
  display: block;
  text-align: center;
  margin-top: 24px;
}

.gold .dcard_btn {
  border: 1px solid var(--gold-2);
  border-radius: 42px;
  background: #FFF;
  color: var(--gold-2);
  font-weight: 700;
  line-height: 125%;
  padding: 12px 16px;
  display: block;
  text-align: center;
  margin-top: 24px;
}

.platinum .dcard_btn {
  border: 1px solid var(--gray);
  border-radius: 42px;
  background: #FFF;
  color: var(--gray);
  font-weight: 700;
  line-height: 125%;
  padding: 12px 16px;
  display: block;
  text-align: center;
  margin-top: 24px;
}

.dcard_btn:after {
  content: "";
  background-image: url(/contents/lp/docomo-benefits/img/icon_01.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.goldu .dcard_btn:after {
  content: "";
  background-image: url(/contents/lp/docomo-benefits/img/icon_04.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.gold .dcard_btn:after {
  content: "";
  background-image: url(/contents/lp/docomo-benefits/img/icon_05.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.platinum .dcard_btn:after {
  content: "";
  background-image: url(/contents/lp/docomo-benefits/img/icon_06.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.kangen_btn {
  margin: auto;
}

.kangen_btn {
  width: 132px;
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  border-radius: 34px;
  border: 1px #D4D4D4 solid;
  padding: 8px 16px;
  text-align: center;
  margin-top: 16px;
  display: block;
  background: #FFFFFF;
}

.program .kangen_btn {
  width: 132px;
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  border-radius: 34px;
  border: 1px #D4D4D4 solid;
  padding: 8px 16px;
  text-align: center;
  margin-top: 24px;
  display: block;
  background: #FFFFFF;
}

.apply_btn {
  color: #FFFFFF;
  background: #CC0033;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 56px;
  box-shadow: 0 4px 0 0 #B30000;
  margin: 24px auto 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: block;
}

.renkei_btn {
  color: #CC0033;
  background: #ffffff;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 56px;
  box-shadow: 0 4px 0 0 #C00;
  margin: 24px auto 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid #C03;
}

.floating-box {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(12px);
  display: flex;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (min-width: 820px) {
  .floating-box {
    display: none;
  }
}

.floating-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
}

.floating-box-title::before, .floating-box-title::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: var(--text);
}

.floating-box-title::before {
  transform: rotate(-20deg);
}

.floating-box-title::after {
  transform: rotate(20deg);
}

.floating-box-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.floating-btn {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 125%;
  background: #C03;
  border-radius: 56px;
  box-shadow: 0 4px 0 0 #B30000, 0 6px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 16px 24px;
}
/* リンク ---------------------------------------------------------------- */
.link-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--link);
  text-decoration: underline;
}

.link-blue.--sm {
  font-size: 12px;
}

.link-blue:hover {
  text-decoration: none;
}

.link-icon {
  flex-shrink: 0;
  width: 14px;
  height: 15px;
}

.link-chevron {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-chevron::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--link);
  border-right: 2px solid var(--link);
  transform: rotate(45deg);
}

/* 店舗一覧リンク（赤地に白抜き） */
.shoplist-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.shoplist-link::before {
  border-color: #FFFFFF;
}

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

/* メインビジュアル ------------------------------------------------------ */
.mv {
  width: 100%;
}

.benefits-title {
  margin-inline: auto;
  padding: 8px 0;
  background: #CC0033;
}

.benefits-title img{
  width: 288px;
  margin: auto;
}

.benefits-lead {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 175%;
}

/* カウンター */
.counter {
  margin-top: 17px;
  padding: 16px 12px 14px;
  text-align: center;
  background: var(--gold-grad);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.counter-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #1B1B1B;
}

.counter-date {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  color: var(--text);
}

.counter-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 10px;
}

.counter-digit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 52px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #1B1B1B;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.counter-digit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}

.counter-comma {
  align-self: flex-end;
  padding-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
  color: #1B1B1B;
}

.counter-unit {
  margin-left: 6px;
  font-size: 28px;
  font-weight: 700;
  color: #1B1B1B;
}

.counter-notes {
  margin-top: 17px;
}

.yamawake-main {
  margin: 41px -16px 0;
}

/* 口数（白セクション） -------------------------------------------------- */
/* 見出しのSVG（358×104）は390px設計時のセクション内容幅と同寸。
   文字だったときと同じく拡大させないため実寸を上限にする（余白も画像に含まれる） */
.found-title {
  width: 100%;
  max-width: 256px;
  margin-inline: auto;
}

.found-lead {
  margin-top: 19px;
  font-size: 14px;
  font-weight: 500;
  line-height: 175%;
}

.found-note {
  margin-top: 14px;
}

.found-disc {
  margin-top: 16px;
}

.found-note.--last {
  margin-top: 32px;
}

.benefits-note {
  margin-top: 0;
}

/* 参加方法（STEP） ------------------------------------------------------ */
/* 見出しのSVG（358×36）は390px設計時のセクション内容幅・行送りと同寸。
   行間ぶんの余白も画像に含まれるので前後のマージン指定はそのまま使える */
.program-title {
  width: 100%;
  max-width: 318px;
  margin-inline: auto;
  padding-bottom: 24px;
}

.program .image {
  width: 100%;
  max-width: 342px;
  margin: auto;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.step-card {
  padding: 3px 16px 20px;
  background: #FFFFFF;
  border-radius: 10px;
}

.step-badge {
  display: block;
  width: 80px;
  height: auto;
}

.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.step-head-body {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.step-text {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.step-thumb {
  flex-shrink: 0;
  display: block;
  width: 80px;
  height: auto;
}

.step-stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.step-store-appstore {
  display: block;
  width: 109px;
}

.step-store-googleplay {
  display: block;
  width: 136px;
}

.step-notes {
  margin-top: 24px;
}

.step-alert {
  margin-top: 17px;
}

.step-alert + .step-notes {
  margin-top: 17px;
}

.step-btn {
  margin-top: 25px;
}

.step-divider {
  margin-top: 20px;
  border-top: 1px solid #E4DFCF;
}

.step-subtitle {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.check-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.check-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: var(--note);
  border-radius: 50%;
  background-image: url(/contents/lp/docomo-benefits/img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.goldu .check-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url(/contents/lp/docomo-benefits/img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.gold .check-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: var(--gold-2);
  border-radius: 50%;
  background-image: url(/contents/lp/docomo-benefits/img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.platinum .check-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: var(--gray);
  border-radius: 50%;
  background-image: url(/contents/lp/docomo-benefits/img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
}


.step-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

/* dアカウント連携 */
.daccount {
  margin-top: 26px;
  padding: 24px 16px 23px;
  background: var(--gold-box);
  border-radius: 10px;
}

.daccount-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.daccount-btn {
  margin-top: 16px;
}

.daccount-note {
  margin-top: 24px;
}

/* FAQ ------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 27px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.faq-mark {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 100%;
  border: 2px solid #CC0033;
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #CC0033;
  transform: translate(-50%, -50%);
}

.faq-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item[open] .faq-inner {
  display: none;
}

.faq-item[open] .faq-img {
  width: 159px;
  max-width: 159px;
}

.faq-a {
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
}

.faq-a-top {
  padding: 8px 16px 16px 16px;
}

.faq-a-middle {
  padding: 16px;
  background: #DAE3E9;
  margin-top: -1px;
}

.goldu .faq-a-middle {
  padding: 16px;
  background: #EFD98D;
  margin-top: -1px;
}

.gold .faq-a-middle {
  padding: 16px;
  background: #F9CBA5;
  margin-top: -1px;
}

.platinum .faq-a-middle {
  padding: 16px;
  background: #D5CEC8;
  margin-top: -1px;
}

.faq-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-img {
  max-width: 92px;
}

.faq-title {
  font-size: 12px;
  color: var(--note);
}

.faq-subtitle {
  font-size: 18px;
  font-weight: 700;
  padding: 4px 0;
}

.faq-kangen {
  font-size: 12px;
  color: #3C3C3C;
  background: #FADDCF;
  border-radius: 2px;
  padding: 4px 8px;
  max-width: 115px;
  text-align: center;
}

.faq-a-title {
  font-size: 14px;
  color: var(--note);
}

.faq-a-subtitle {
  font-size: 24px;
  font-weight: 700;
  padding-top: 4px;
}

.faq-a-kangen {
  font-size: 14px;
  color: #3C3C3C;
  background: #FADDCF;
  border-radius: 2px;
  padding: 4px 8px;
  margin-top: 8px;
  font-weight: 500;
}

.faq-a-box {
    display: flex;
    gap: 4px;
}

.kangen-card {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 16px;
}

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

.kangen-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.kangen-card-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; 
}

.kangen-card-rate {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 150%;
}

.kangen-card-rate01 {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 10px;
}

.kangen-card-rate02 {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 150%;
}

.kangen-img {
  width: 40px;
  height: 40px;
}

.kangen_or {
  color: var(--note);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 16px 0;
  display: block;
}

.kangen_box {
  position: relative;
  padding: 16px;
  background: #FFFFFF;
  margin-top: 16px;
  border-radius: 10px;
}

.kangen_box:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #FFFFFF;
  border-top: 0;
  transform: translate(-50%, -100%);
}

.kangen_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.kangen_txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.kangen_line {
  width: 100%;
  height: 1px;
  align-self: stretch;
  background: #E9E9E9;
  margin: 8px 0 8px 0;
}

.kangen_plus {
  background-image: url(/contents/lp/docomo-benefits/img/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  margin: 16px auto;
  display: block;
}

.kangen-card .kangen_box + .found-note {
  margin-top: 8px;
}

.faq-a-bottom .kangen-card .kangen_box + .found-note {
  margin-top: 16px;
}

.kangen-img01 {
  width: 154px;
}

.kangen-img02 {
  width: 125px;
}

.kangen-img03 {
  width: 138px;
}

.kangen-img04 {
  width: 93px;
}

.kangen_title {
  font-size: 14px;
  font-weight: 700;
  padding: 16px 0;
  line-height: 150%; 
}

.kangen_subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #CC0033;
  margin-bottom: 8px;
}

.kangen_subtitle01 {
  font-size: 24px;
  font-weight: 700;
  color: #CC0033;
}

.kangen_max {
  display: inline-block;
  font-size: 11px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #CC0033;
  line-height: 120%;
  margin-right: 2px;
}

.kangen_num {
  font-size: 48px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #CC0033;
}

.kangen_unit {
  font-size: 32px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #CC0033;
}

.faq-a-bottom {
  padding: 16px;
  background: #ffffff;
}

.kangen_more {
  color: var(--note);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.faq-a-bottom .kangen-card-rate {
  color: #CC0033;
}

.faq-a-bottom .kangen-card-rate02 {
  color: #CC0033;
}

.faq-a-bottom .kangen-card-plus {
  color: #CC0033;
  font-size: 20px;
}

.close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--note);
  font-weight: 500;
  text-align: center;
  margin: 16px auto 0;
  background: #FFFFFF;
}

.close_icon {
  background-image: url(/contents/lp/docomo-benefits/img/icon_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: block;
}

/* リセットが p に line-height: 1 を直接あてているため、
   .faq-a からの継承では効かない。実体側で行送りを指定し直す */
.faq-a b {
  font-weight: 700;
}

.faq-a .note-list {
  margin-top: 16px;
}

.faq-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 12px;
}


/* dカードをお持ちのかたは ------------------------------------------------------ */
.kangenup {
  padding: 16px 24px 40px;
  text-align: center;
  background: #FADDCF;
}

.kangenup-title {
  margin-bottom: 24px;
}

.kangenup-title img {
  width: 100%;
  max-width: 318px;
  margin-inline: auto;
}

.tab-content {
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

.tab-content.is-active {
  display: block;
}

.tab-panel {
  display: none;
  border-radius: 0 0 10px 10px;
}

.tab-panel.is-active {
  display: block;
}

.tab-nav {
  display: flex;
  align-items: flex-end;
  border-bottom: 4px solid #CC0033;
  width: 100%;
}

.tab-nav-item{
  flex: 2;
  color: var(--text);
  background: #F6C9B3;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%; 
  border-radius: 10px 10px 0 0;
  padding: 18px 8px;
  text-align: center;
  transition: all .3s ease;
  cursor: pointer;
}

.tab-nav-item.is-active{
  flex: 3;
  color: #ffffff;
  background: #CC0033;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  padding: 18px 8px;
}

.renkei .kangen-card {
  position: relative;
}

.renkei .kangen-card.no-arrow::after {
  display: none;
}

.renkei .kangen-card:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #F5F5F5;
  border-bottom: 0;
  transform: translate(-50%, 100%);
}

.renkei .kangen-card .kangen_title{
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding: 8px 0 0 0;
}

.renkei .txt-01 {
  margin: 24px 0 16px 0;
}

.renkei-note.note-list {
  flex-direction: row;
  justify-content: center;
  margin-bottom: 16px;
  gap: 8px;
}

.renkei.top {
  background: #ffffff;
}

.renkei {
  background: #FAEEE4;
  padding: 24px 16px;
  border-radius: 0 0 10px 10px;
}

.renkei-02 {
  background: #F2EEE9;
  padding: 24px 16px;
  border-radius: 0 0 10px 10px;
}

.renkei-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; 
  color: #B30000;
  margin-bottom: 8px;
}

.renkei-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
}

.renkei_plus {
  background-image: url(/contents/lp/docomo-benefits/img/icon_plus2.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 14px;
  margin: 16px auto;
  display: block;
}
/* 番号バッジはカード上端から2px上にはみ出す */
.merit-no {
  display: block;
  width: 48px;
  height: auto;
  margin-top: -4px;
}

.merit-lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.merit-catch {
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
}

.merit-catch sup {
  font-size: 11px;
  vertical-align: super;
}

.merit-image {
  margin-top: 17px;
}

.merit-text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
}

.merit-notes {
  margin-top: 17px;
  color: var(--note);
}


/* 誕生祭バナー ---------------------------------------------------------- */
/* 見出しの背景まで含む1枚絵を敷く。
   --u は390px設計をセクション幅に比例させる単位。
   背景画像（幅100%で伸縮）と見出し・ロゴの位置を常に一致させるために使う。
   背景の下端色は画像の下端と同じ #CC0033 なので継ぎ目が出ない。 */
/* 左右のpaddingは子側に持たせる。
   container-type はコンテンツボックス基準になるため、
   セクション幅＝設計幅(390px)として --u を求められるようにする。 */
.tanjo {
  --u: 0.25641vw;
  padding: 0 0 29px;
  text-align: center;
  color: #FFFFFF;
  background: #CC0033 url(/contents/lp/dpoint-yamawake/images/bg_tanjo.svg) top center / 100% auto no-repeat;
}

/* コンテンツが390px固定になる幅ではフォールバックも等倍にする */
@media screen and (min-width: 541px) {
  .tanjo {
    --u: 1px;
  }
}

/* コンテナクエリ単位が使えるブラウザではセクション幅を基準にする
   （ビューポート幅とカラム幅が一致しない場合でもずれない）。
   container-type は独立した整形コンテキストも作るため、
   .tanjo-title の上マージンがセクション外へ相殺されない。 */
@supports (container-type: inline-size) {
  .tanjo {
    container-type: inline-size;
    --u: 0.25641cqw;
  }
}

.tanjo-title {
  margin-top: calc(31 * var(--u));
  padding-inline: 16px;
  font-size: calc(24 * var(--u));
  font-weight: 700;
  line-height: 150%;
}

/* 背景画像のロゴ部分の高さを確保するスペーサー（画像と同じ比率で伸縮する） */
.tanjo-banner {
  margin-top: calc(9 * var(--u));
  aspect-ratio: 390 / 248;
}

.tanjo-btn {
  margin-top: 13px;
}

/* フッター -------------------------------------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px 24px;
  background: #ffffff;
}

.sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-radius: 6px;
}

.sns-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.sns-item {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: #E9E9E9;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: var(--note);
}

/* 追従CTA --------------------------------------------------------------- */
/* 「キャンペーン参加方法」までスクロールすると出現する */
.follow {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 16px 12px;
  text-align: center;
  background: rgba(240, 240, 242, 0.92);
  backdrop-filter: blur(24px);
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 0.4s cubic-bezier(0.4, 0.4, 0, 1),
    opacity 0.3s ease,
    visibility 0.4s;
}

.follow.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .follow {
    transition: none;
  }
}

@media screen and (min-width: 820px) {
  .follow {
    display: none;
  }
}

/* 追従CTAに隠れないよう、フッター内で末尾の余白を確保する。
   .container の padding だと最下部で地色の帯として見えてしまうため、
   フッターの背景をCTAの下まで伸ばす形で確保する */
@media screen and (max-width: 819px) {
  .footer {
    padding-bottom: 100px;
  }
}

.follow .btn {
  max-width: 288px;
}

.follow-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  color: var(--red);
}

.follow-catch::before,
.follow-catch::after {
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background-color: var(--red);
}

.follow-catch::before {
  transform: rotate(-25deg);
}

.follow-catch::after {
  transform: rotate(25deg);
}

.follow-btn {
  margin-top: 6px;
}

.follow-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--link);
  text-decoration: underline;
}

/* スクリーンリーダー用 -------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
