@charset "UTF-8";
/* =========================================================
   Ado × SAISON CARD Digital コラボキャンペーン LP
   style.css
   ========================================================= */

:root {
  --bg-base: #050014;
  --bg-deep: #0a0524;
  --accent-blue: #1369ff;
  --accent-blue-d: #0b48c4;
  --accent-purple: #ac68eb;
  --accent-purple-d: #4f4374;
  --accent-pink: #e472c4;
  --text: #ffffff;
  --text-dim: #c7c3da;
  --line: rgba(172, 104, 235, .35);
  --maxw: 1080px;
}

/* ---------- base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: #050014;
  background-attachment: fixed;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
}

.text-start {
  text-align: start;
}

.bg-purple {
  background: #c8bee6 !important;
}

/* twinkling star overlay 
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/stars.png") repeat;
  background-size: 900px auto;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}*/

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

a {
  color: inherit;
}

.wrap {
  position: relative;
  z-index: 1;
}

.inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: 128px 0;
  position: relative;
}

.section--glow::after {
  /* subtle 10% purple gradient band used behind several sections */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79, 67, 116, .18), rgba(172, 104, 235, .10));
  pointer-events: none;
  z-index: -1;
}

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

.accent-blue {
  color: var(--accent-blue);
}

.accent-purple {
  color: var(--accent-purple);
}

.accent-pink {
  color: var(--accent-pink);
}

.nowrap {
  white-space: nowrap;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .section {
    padding: 64px 0;
  }
}

/* ---------- header ---------- */
.site-header {
  position: absolute;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255/1);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  overflow: hidden;
}

.site-header .logo {
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1.05rem;
  text-decoration: none;
  width: 75px;
  height: auto;
}

.site-header .logo span {
  color: var(--accent-blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: linear-gradient(180deg, #2c7bff, var(--accent-blue));
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 14px rgba(19, 105, 255, .45);
}

@media (max-width: 575px) {
  .header-cta {
    padding: 7px 14px;
    font-size: .78rem;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  margin-top: 60px;
  padding: 60px 0 120px;
  background:
    linear-gradient(to bottom, rgba(7, 12, 46, .0) 0%, rgba(6, 4, 28, .0) 55%, rgba(5, 0, 20, .92) 100%),
    url("../img/footer_bg.png") center center / cover no-repeat,
    url("../img/hero_bg.png") center center / cover no-repeat;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  flex-wrap: wrap;
}

.hero__portrait {
  width: clamp(320px, 33vw, 500px);
  border-radius: 3px;
  box-shadow: -15px 15px 0 rgba(0, 0, 0, .55);
  position: relative;
  left: -50px;
}

.hero__logo {
  width: clamp(260px, 42vw, 480px);
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0 56px;
    background:
      linear-gradient(to bottom, rgba(7, 12, 46, .0) 0%, rgba(6, 4, 28, .0) 55%, rgba(5, 0, 20, .92) 100%),
      url("../img/footer_bg_sp.png") center center / cover no-repeat,
      url("../img/hero_bg_sp.png") center center / cover no-repeat;
  }

  .hero__inner {
    flex-direction: column;
    gap: 20px;
  }

  .hero__logo {
    order: -1;
    width: 74vw;
    max-width: 300px;
    margin: auto;
  }

  .hero__portrait {
    width: 86vw;
    left: 0;
    right: 0;
    margin: 0 auto 30px;
  }
}

/* ---------- pixel English titles (image) ---------- */
.eyebrow-title {
  text-align: center;
  margin: 0 auto 30px;
  position: relative;
}

.eyebrow-title img {
  margin: 0 auto;
  max-height: 62px;
  width: auto;
  display: inline-block;
}

#app .eyebrow-title img,
#about .eyebrow-title img {
  max-height: 153px;
}

.eyebrow-title::before,
.eyebrow-title::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 62px;
  background: url("../img/title_asset.svg")no-repeat top center/100%;
}

.eyebrow-title::before {
  left: 63px;
  top: -37px;
}

.eyebrow-title::after {
  right: -20px;
  bottom: -60px;
}

.eyebrow-sub {
  font-size: 2em;
  font-weight: bold;
  color: #C8BEE6;
  margin: 0 auto 100px;
  text-align: center;
}

@media (max-width: 767px) {
  .eyebrow-title {
    margin: 0 auto 30px;
  }

  #app .eyebrow-title img,
  #about .eyebrow-title img {
    max-height: 60px;
  }

  .eyebrow-title img {
    max-height: 25px;
  }

  .eyebrow-title::before,
  .eyebrow-title::after {
    width: 15%;
    height: 30px;
  }


  .eyebrow-title::before {
    left: -14px;
    top: -14px;
  }

  .eyebrow-title::after {
    right: -14px;
    bottom: -30px;
  }

  .eyebrow-sub {
    font-size: 1.5em;
    margin: 0 auto 50px;
  }
}

/* ---------- generic lead copy ---------- */
.lead {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
}

.lead,
.about-copy .head,
.campaign-box .ttl,
.cashback-cap,
.secret-label {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.lead .big {
  font-size: 1.25em;
}

/* #card 見出し：1行目は小さめ・2行目は大きめ／全て白（イラレ準拠） */
.lead--card {
  color: #fff;
  line-height: 1.4;
  font-size: clamp(1.55rem, 4.8vw, 2.6rem);
  /* 2行目（大）基準 */
}

.lead--card .lead__l1 {
  display: block;
  font-size: .68em;
  /* 1行目（小） */
}

.lead--card .lead__l2 {
  display: block;
  font-weight: 900;
}

/* ---------- campaign box（チケット型・イラレ準拠） ---------- */
.campaign-box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 1000 / 394;
  /* イラレの枠と同じ縦横比で形状を固定 */
  background: url("../img/campaign_frame.png") center / 100% 100% no-repeat;
  container-type: inline-size;
  /* 中の文字を枠幅基準(cqw)で拡縮 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1cqw;
  text-align: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 6%;
}

.campaign-box .ttl {
  font-size: 6.2cqw;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  letter-spacing: .02em;
}

.campaign-box .period {
  margin: 0 0 50px;
  padding: 0;
  background: none;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  font-size: 3.1cqw;
  line-height: 1;
  white-space: nowrap;
}

.campaign-box .period .num {
  font-family: "Bitcount Single", monospace;
  color: var(--accent-blue);
  font-weight: 800;
  font-size: 2em;
  margin: 0 .04em;
}

.campaign-box .period .dow {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  font-size: .82em;
  line-height: 1;
  padding: .18em .26em;
  border-radius: 4px;
  vertical-align: .12em;
  margin: 0 .12em;
}

/* ---------- card 発行（パネル・イラレ準拠） ---------- */
.card-period {
  display: inline-block;
  margin: 0 auto 36px;
  background: #b16af1;
  /* イラレの紫ピル R177 G106 B241 */
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 0 0 0 10px;

  font-size: clamp(.85rem, 2.5vw, 1.1rem);
}

.card-panel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 1000 / 622;
  /* パネル枠と同じ縦横比で角の切り欠きを保持 */
  background: url("../img/card_panel.png") center / 100% 100% no-repeat;
  container-type: inline-size;
  /* 中身を枠幅基準(cqw)で拡縮 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3cqw 9cqw;
}

/* パネル装飾の星（右上・左下／デザイン準拠） */
.card-panel::before,
.card-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 230.89 / 161.42;
  z-index: 3;
}

.card-panel::before {
  /* 右上 */
  width: 22cqw;
  top: -7cqw;
  right: -23cqw;
  background-image: url("../img/star-top.svg");
}

.card-panel::after {
  /* 左下 */
  width: 20cqw;
  bottom: -6cqw;
  left: -22cqw;
  background-image: url("../img/star-bottom.svg");
}

.card-panel__cap {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: max(13px, 3cqw);
}

.card-panel__card {
  width: min(65cqw, 450px);
  margin: 0;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .5));
}

/* yogibo パネル（入会特典02）：背景・比率を差し替え。星(before/after)は .card-panel 共通 */
.card-panel--yogibo {
  aspect-ratio: 1000 / 586;
  background-image: url("../img/yogibo_panel.png");
}

.card-panel--yogibo .card-panel__card {
  width: min(50cqw, 500px);
}

.card-panel__btn {
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-panel__btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(19, 105, 255, .65);
}

.card-panel__btn .arrow {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78em;
}

@media (max-width: 767px) {

  .campaign-box {
    aspect-ratio: initial;
    /* イラレの枠と同じ縦横比で形状を固定 */
    background: url("../img/campaign_frame_sp.png") center / 100% 100% no-repeat;
    container-type: inline-size;
    gap: 1cqw;
    padding: 3% 6%;
  }

  .campaign-box .ttl {
    font-size: 8cqw;
    margin-bottom: 1rem;
  }

  .campaign-box .period {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 5cqw;
    white-space: initial;
  }

  /* #card 見出し：1行目は小さめ・2行目は大きめ／全て白（イラレ準拠） */
  .lead--card {
    font-size: 1.8em;
  }

  .lead--card .lead__l1 {
    font-size: .9em;
  }

  .card-period {
    font-size: .8rem;
    padding: .25em;
  }

  .card-panel {
    aspect-ratio: 1000 / 780;
    /* SP は縦に余裕を持たせる */
    gap: 2cqw;
    padding: 6cqw;
    background: url(../img/card_panel_sp.png) center / 100% 100% no-repeat;
  }

  .card-panel__cap {
    font-size: max(16px, 5cqw);
  }

  .card-panel--yogibo .card-panel__card {
    width: min(80cqw, 350px);
  }

  .card-panel__card {
    width: min(100cqw, 350px);
  }

  .card-panel__btn {
    width: 65%;
  }
}

/* ---------- COLLABORATION 背景（紙吹雪・HEROへ被せる） ---------- */
.section--collab {
  position: relative;
  background: #050014;
}

.section--collab::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -180px;
  /* HERO へ約180px被せる */
  height: 760px;
  /* HERO重なり＋キャンペーンボックス周辺をカバー */
  background: url("../img/colab-bg.png") no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

.section--collab>.inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .section--collab::before {
    top: -110px;
    height: 520px;
    /* SP では紙吹雪を少し拡大して密度を保つ */
    background: url("../img/colab-bg_sp.png") no-repeat top center;
    background-size: 100% auto;
    pointer-events: none;
  }
}

/* ---------- CTA button ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  background: linear-gradient(180deg, #3a86ff, var(--accent-blue));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.25rem);
  padding: 16px 44px;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(19, 105, 255, .5);
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid rgba(255, 255, 255, .25);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(19, 105, 255, .65);
  color: #fff;
}

.btn-cta .arrow {
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8em;
}

/* ---------- card / secret visuals ---------- */
.visual-center {
  text-align: center;
}

.visual-center img {
  margin: 0 auto;
}

.secret-label {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-dim);
}

.card-shot {
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .5));
}

#card {
  background: url("../img/stars.png")no-repeat top center/cover;
  background-color: #050014;
  overflow: hidden;
}

/* ---------- notes ---------- */
.notes {
  max-width: 880px;
  margin: 22px auto 0;
  font-size: 16px;
  color: white;
  line-height: 1.7;
}

.notes p {
  margin: .15em 0;
}

/* ---------- tokuten ribbon ---------- */
.tokuten-head {
  text-align: left;
  margin-bottom: 72px;
  position: relative;
  z-index: 5;
}

.tokuten-head img {
  max-height: 96px;
  width: auto;
}

.tokuten-head::before {
  content: "";
  background: url("../img/tokuten-bg.png")no-repeat top center/100%;
  width: 100%;
  max-width: 580px;
  min-height: 384px;
  height: auto;
  position: absolute;
  top: -170px;
  left: -100px;
  z-index: -1;
}

/* ---------- 入会特典01 キャッシュバック（パネル・イラレ準拠） ---------- */

#cardone .container-fluid,
#cardtwo .container-fluid {
  background: url(../img/stars.png) no-repeat top center / cover;
  background-color: #050014;
  overflow: hidden;
}

.cashback-panel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 8px auto 0;
  aspect-ratio: 1000 / 274;
  /* パネル枠と同比率で角の切り欠きを保持 */
  background: url("../img/cashback_panel.png") center / 100% 100% no-repeat;
  container-type: inline-size;
  /* 中身を枠幅基準(cqw)で拡縮 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3cqw;
  padding: 0 14cqw;
}

/* パネル装飾の星（右上・左下／card-panel と同様） */
.cashback-panel::before,
.cashback-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 230.89 / 161.42;
  z-index: 3;
}

.cashback-panel::before {
  /* 右上 */
  width: 30cqw;
  top: -7cqw;
  right: -23cqw;
  background-image: url("../img/star-top.svg");
}

.cashback-panel::after {
  /* 左下 */
  width: 28cqw;
  bottom: -6cqw;
  left: -22cqw;
  background-image: url("../img/star-bottom.svg");
}

.cashback-amount {
  margin: 0;
  color: #b16af1;
  /* 2,000円 紫 */
  font-weight: 900;
  line-height: 1;
  font-size: 12cqw;
  gap: .4em;
  /* スラッシュとの間隔 */
}

.cashback-amount .price {
  text-shadow: 3px 3px 5px rgb(0 0 0/.5);
}

.cashback-amount .yen {
  font-size: 8cqw;
  /* 円は小さめ */
}

.cashback-panel .cashback-cap {
  margin: 0;
  color: #fff;
  /* キャッシュバック！白 */
  font-weight: 800;
  font-size: 8cqw;
  line-height: 1;
}

/* キャッシュバックの白スラッシュ（フォントサイズに連動） */
.cashback-amount.slashed::before,
.cashback-amount.slashed::after {
  width: .12em;
  height: 1.05em;
  background: #fff;
  border-radius: 2px;
}

/* slash decoration */
.slashed {
  display: inline-flex;
  align-items: center;
}

.slashed::before,
.slashed::after {
  content: "";
  width: 3px;
  height: 1.1em;
  background: white;
  display: inline-block;
}

.slashed::before {
  transform: rotate(-45deg);
  margin-right: 10px;
}

.slashed::after {
  transform: rotate(45deg);
  margin-left: 10px;
}

/* ---------- accordion (特典詳細・注意事項) ---------- */
.detail {
  max-width: 940px;
  margin: 30px auto 0;
  border: 2px solid #c8bee6;
  background: rgba(8, 5, 28, .6);
  overflow: hidden;
}

.detail__btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 18px 48px;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
}

.detail__btn::after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.detail__btn[aria-expanded="true"]::after {
  content: "－";
}

.detail__body {
  display: none;
  padding: 6px 64px 64px;
  border-top: 1px solid #c8bee6;
}

.detail__body.open {
  display: block;
}

/* ラベンダー見出し（キャッシュバックサイクル／特典進呈スケジュール） */
.detail__body h4 {
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: #c8bee6;
  margin: 30px 0 16px;
}

/* 藍紫ピル（特典詳細／注意事項） */
.detail__pill {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 28px auto 16px;
  background: #4c3b80;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: .35em 1.5em;
  text-align: center;
}

/* ---------- tables ---------- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
  margin: 0 auto;
}

.tbl th,
.tbl td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}

.tbl thead th {
  background: rgba(172, 104, 235, .18);
  font-weight: 700;
}

.tbl tbody th {
  background: rgba(172, 104, 235, .10);
  white-space: nowrap;
}

.tbl--left td,
.tbl--left th {
  text-align: left;
}

/* detail 内のライト表（イラレ準拠：ヘッダー#C8BEE6 / 本体白 / 枠線#4F4374 / 文字濃色） */
.detail .tbl th,
.detail .tbl td {
  border: 1px solid #4f4374;
  color: #1a1730;
}

.detail .tbl thead th {
  background: #c8bee6;
  color: #1a1730;
  font-weight: 700;
}

.detail .tbl tbody th,
.detail .tbl tbody td {
  background: #fff;
  color: #1a1730;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- subnotes (small print blocks) ---------- */
.subnotes {
  max-width: 940px;
  margin: 18px auto 0;
  font-size: .95rem;
  color: white;
}

.subnotes h5 {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin: 14px 0 8px;
}

.subnotes p {
  margin: 0;
}

/* ---------- process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.steps img {
  margin: 0 auto;
}

.delivery {
  max-width: 520px;
  margin: 0 auto 0;
  text-align: center;
}

.delivery .arrow-down {
  width: 100%;
  max-width: 80px;
  margin: 0 auto 4px;
}

.delivery__cap {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  font-size: 1.6rem;
  gap: 1em;
  margin: 16px 0 22px;
  line-height: 1.6;
}

/* 2行キャプション用に白スラッシュを高く */
.delivery__cap.slashed::before,
.delivery__cap.slashed::after {
  height: 2.6em;
  width: 3px;
  background: #fff;
}

.delivery__img {
  margin: 0 auto;
  filter: drop-shadow(0 0 14px rgba(120, 150, 255, .35));
}

@media (max-width: 767px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .detail__body {
    padding: 6px 1rem 64px;
  }

  .delivery__cap {
    font-size: 1rem;
  }

  .tokuten-head h2 {
    text-align: center;
  }

  .tokuten-head::before {
    top: -110px;
    left: -10px;
  }

  .tokuten-head img {
    max-height: 56px;
    margin: auto;
  }

  .cashback-panel {
    background: url("../img/cashback_panel_sp.png") center / 100% 100% no-repeat;
    container-type: inline-size;
    gap: .3cqw;
    padding: 2rem 1rem;
    aspect-ratio: initial;
  }

  .tbl {
    width: 700px;
    overflow: scroll;
  }
}

@media (max-width: 420px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- card-about (このカードについて) ---------- */
.about-grid {
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

.about-grid .phone {
  margin: 0 auto;
  max-width: 310px;
}

.about-copy .head {
  font-size: clamp(1.5rem, 4.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.about-copy .head.one {
  position: relative;
  border-bottom: 2px solid #fff;
  display: inline-block;
  line-height: 1.0;
}

.about-copy .head.one::before,
.about-copy .head.one::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24px 0 24px;
}

.about-copy .head.one::before {
  bottom: -24px;
  border-color: #FFFFFF transparent transparent transparent;
}

.about-copy .head.one::after {
  bottom: -22px;
  border-color: #050014 transparent transparent transparent;
}

.about-copy .head .five {
  color: var(--accent-purple);
  font-size: 1.85em;
  font-family: "Bitcount Single", monospace;
}

.about-copy .head .five .small {
  color: var(--accent-purple);
  font-size: clamp(1.5rem, 4.6vw, 2.8rem) !important;
}

.badges {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.badges figure {
  margin: 0;
  flex: 1 1 0;
  min-width: 92px;
}

.badges img {
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-grid .phone {
    max-width: 250px;
    width: 50%;
  }

  .badges {
    justify-content: center;
  }

  .about-copy .head.one::before,
  .about-copy .head.one::after {
    border-width: 10px 10px 0 10px;
  }

  .about-copy .head.one::before {
    bottom: -12px;
  }

  .about-copy .head.one::after {
    bottom: -10px;
  }
}

/* ---------- information table ---------- */
/* ---------- INFORMATION 基本情報（3カラム・イラレ準拠） ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-grid__item {
  margin: 0;
}

.info-grid__item dt {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid #c8bee6;
  /* ラベンダー下線 */
}

.info-grid__item dd {
  margin: 0;
  color: #fff;
  font-size: .9rem;
  line-height: 1.7;
}

/* INFORMATION 注意事項ボックス（ラベンダー枠＋区切り線） */
.notice-box {
  max-width: 1000px;
  margin: 56px auto 0;
  border: 1px solid #c8bee6;
  border-radius: 4px;
  background: rgba(5, 0, 20, .35);
}

.notice-box__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid #c8bee6;
}

.notice-box .subnotes {
  max-width: none;
  margin: 0;
  padding: 22px 28px 28px;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: inline-block;
}

@media (max-width: 767px) {

  /* SPのみ：左=dd / 右=dt・間に縦ボーダーの行リスト表示 */
  .info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 460px;
    border-top: none;
  }

  .info-grid__item {
    display: flex;
    align-items: stretch;
    border-bottom: none;
    margin: 1rem;
    /* 行の区切り線 */
  }

  .info-grid__item dt {
    order: 1;
    /* 左：項目名 */
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px 14px;
    border-bottom: none;
    /* PCのラベンダー下線を解除 */
    border-right: 1px solid #c8bee6;
    /* dt と dd の間の縦ボーダー */
    font-size: .9rem;
  }

  .info-grid__item dd {
    order: 2;
    /* 右：値 */
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px 14px;
    font-size: .85rem;
  }

  .notice-box .subnotes {
    max-width: none;
    margin: 0;
    padding: 1rem;
  }
}

/* ---------- footer ---------- */
.site-footer {
  position: relative;
}

.footer-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 5%;
  padding: 60px 20px;
  background: #060418 url("../img/footer_bg.png") center/cover no-repeat;
}

.footer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 24, .2), rgba(6, 4, 24, .7));
}

.footer-hero>* {
  position: relative;
  z-index: 1;
}

.footer-hero .ado {
  width: 70%;
  max-width: 400px;
  box-shadow: 0 0 40px rgba(0, 0, 0, .5);
}

.footer-hero .lockup {
  width: 70%;
  max-width: 360px;
}

.footer-bar {
  padding: 22px 20px;
}

.footer-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1150px;
}

.footer-bar .copy {
  font-size: .72rem;
  color: #000;
}

.footer-bar .lic {
  font-size: .68rem;
  color: #000;
  text-align: left;
  line-height: 1.6;
}

.footer-bar .cs-logo {
  height: 22px;
  width: auto;
}

.footer-bar .privacy-mark {
  width: 62px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 0;
    color: #000 !important;
  }

  .footer-hero {
    min-height: 360px;
    gap: 5%;
    padding: 60px 20px;
    background: #060418 url("../img/footer_bg_sp.png") center/cover no-repeat;
  }

  .footer-bar .inner {
    justify-content: center;
    text-align: center;
    row-gap: 14px;
  }

  .footer-bar .privacy-mark {
    width: 56px;
  }
}

/* ---------- scroll fade-in ---------- */
.fade-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-init.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* small helpers */
.mt-sm {
  margin-top: 14px;
}

.mt-md {
  margin-top: 28px;
}

.mb-md {
  margin-bottom: 28px;
}

.neck{
  margin-top: 20px;
}