/*! -----------------------------
  common
----------------------------- */

/* ページ本体はスクロールさせない */
/* 外側はスクロールさせない */
html{
  box-sizing: border-box;
  position: relative;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  font-weight: normal;
  /* clip は overflow-y を auto に変えずスクロールコンテナ化しないため、モバイルの縦タッチスクロールを壊さずに横はみ出しのみ抑止する（hidden は縦スクロールを壊す） */
  overflow-x: clip;
  scrollbar-gutter: stable;
  letter-spacing: 0.05em;
  /* アンカー/トップ戻りをなめらかに */
  scroll-behavior: smooth;
  /* 固定ヘッダーぶん下げてアンカー先が隠れないように（PC） */
  scroll-padding-top: 11.4rem;
}
/* 繁体字中国語ページのみ本文フォントを Noto Sans TC に差し替え（HTML側で Noto Sans TC を読み込み） */
html[lang="zh-tw"]{
  font-family: "Inter", "Noto Sans TC", sans-serif;
}
/* 英語ページの字間はファイル末尾の html[lang="en"] * でまとめて指定 */
/* iOS Safariでも効く範囲での対策 */
html, body { overscroll-behavior: none; }      /* 新しめのiOSで有効 */
.your-scroll { overscroll-behavior: contain; }
/* lenis.css の .lenis-stopped { overflow:hidden } を上書き
   スクロールロックは body[position:fixed] で管理するため不要 */
html.lenis.lenis-stopped { overflow: initial; }
*, *::before, *::after{
  box-sizing: inherit;
}
/* ノッチ分の安全領域を考慮 */
.app-root {
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
*{
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: "palt";
font-kerning: normal; /* カーニング有効 */
letter-spacing: 0;
}

/* ===== 表示切り替え ===== */
.--pc { display: block; }
.--sp { display: none; }
.--tab-pc{
  display: block;
}
.--tab-sp{
  display: none;
}
.--pc-inline { display: inline; }   /* テキスト中で出し分けたいとき */
.--pc-flex   { display: flex; }     /* flex要素を出し分けたいとき */
@media screen and (max-width: 1000px){
  .--tab-pc{
    display: none;
  }
  .--tab-sp{
    display: block;
  }
} 

@media screen and (max-width: 750px) {
  .--pc, .--pc-inline, .--pc-flex { display: none; }
  .--sp { display: block; }
  .--sp-inline { display: inline; }
  .--sp-flex   { display: flex; }
}
/* SPで非表示にしたいだけのとき用に外側にも置いておく */
.--sp-inline, .--sp-flex { display: none; }

/* ===== 完全非表示 / アクセシビリティ ===== */
.--none { display: none !important; }
.--hidden { visibility: hidden; }
/* 見た目は消すが読み上げ・SEOには残す（スキップリンクのラベル等） */
.--vh {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===== テキスト ===== */
.--tac { text-align: center; }
.--tal { text-align: left; }
.--tar { text-align: right; }
.--nowrap { white-space: nowrap; }
.--ellipsis {            /* 1行省略 … */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.--clamp2 {              /* 2行で省略 … */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== 画像 ===== */
.--imgfit {              /* 親に対してトリミング表示 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.--imgw { width: 100%; height: auto; }  /* レスポンシブ画像の定番 */

/* ===== インタラクション ===== */
.--hover { transition: opacity .2s; }
.--hover:hover { opacity: .7; }

@media (hover: hover) {  /* スマホで:hoverが残るのを防ぐ */
  .--hover:hover { opacity: .7; }
}
/*! -----------------------------
セレクタ　リセット
----------------------------- */
body{
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: #222222;
  overflow-x: clip;
  letter-spacing: 0.05em;
}
body.-fixed{
  overflow: hidden;
  position: fixed;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
img{
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}
a{
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a[href^="tel:"] {
  text-decoration: none;
}
button {
  cursor: pointer;
  display: block;
  outline: none;
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 0;
}
tbody {
  display: block;
  width: 100%;
}
th,td{
  text-align: left;
}
::-webkit-input-placeholder,
:-moz-placeholder {
  color: #CCC9C4;
}
/*! -----------------------------
フォームタグ　リセット
----------------------------- */
input,
textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border: unset;
  border-width: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
}
input[type="button"],input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],input[type="image"],textarea{
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="text" i] {
  padding: 0;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f4f0eb inset;
  -webkit-text-fill-color: #222;
}
select {
  border-width: 0px;
  border: none;
  color: #242424;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

/* クリック/タップ時のハイライトも含めて視覚的フォーカスを全消し */
:focus,
:focus-visible,
:focus-within {
outline: none !important;
box-shadow: none !important;
}

a, button, [tabindex], input, select, textarea {
outline: none !important;
box-shadow: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
}

* {
-webkit-tap-highlight-color: transparent; /* iOS/Android */
}

/*! -----------------------------
  共通
----------------------------- */

/*! -----------------------------
  ヘッダー
----------------------------- */
.header-wrap{
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* ドロワー(z:1000)より後ろ。メニューはヘッダーごと覆い、ハンバーガーだけ前面に乗せる */
  z-index: 999;
}
.header {
  position: relative;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

/* 少しスクロールしたらドロップシャドウ（JSが is-scrolled を付与） */
.header.is-scrolled {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  max-width: calc(100% - 8rem);
  height: 11.4rem;
  margin-inline: auto;
}

.header__logo {
  flex: 0 0 auto;
  margin-top: 3.6rem;
  margin-right: 7.5rem;
}

.header__logo-link {
  display: block;
}

.header__logo-img {
  display: block;
  width: 21.5rem;
  height: auto;
}

.header__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.header__top {
  display: flex;
  margin-bottom: 1.8rem;
}

.header__utility {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 4.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.header__utility-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 外部サイトリンクは右端へ */
.header__utility-site {
  margin-left: 4.5rem;
}

.header__utility-icon {
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.header__utility-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__utility-item {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.header__utility-title{

}
.header__utility-sep {
  color: #222222;
  font-size: 1.2rem;
}

.header__utility-link {
  color: #222222;
  font-size: 1.3rem;
  font-weight: normal;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 0.5px;
  transition: opacity 0.3s ease;
}

/* 現在地・見出し的リンクは下線なし */
.header__utility-link.is-current {

}

.header__utility-link:hover {
  opacity: 0.6;
}

.header__bottom {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.header__nav-item {
  position: relative;
}
.header__nav-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.header__nav-item.is-current .header__nav-link {
  color: #ab7940;
}

.header__nav-item.is-current::after {
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  background: #ab7940;
  border-radius: 50%;
  transform: translateX(-50%);
}

.header__button {
  flex: 0 0 auto;
}

.header__button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  height: 4rem;
  padding-inline: 2.4rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  background: #ab7940;
  border-radius: 999px;
  transition: .3s;
}
@media (any-hover: hover) {
  .header__button-link:hover{
    opacity: 0.7;
  }
}


/*! -----------------------------
  フッター
----------------------------- */
.footer {
  position: relative;
  background: url(/special/lang/assets-2026-renewal/images/common/bg-repeat.webp);
  background-size: 36rem;
  isolation: isolate;
  padding: 3.5rem 0 3rem;
}
.footer::before {
  position: absolute;
  content: "";
  inset: 0;
  display: block;
  background: #ab7940;
  /* opacity: 0.7; */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.footer__inner{
  position: relative;
  z-index: 1;
  width: calc(100% - 8rem);
  margin: 0 auto;
}
.footer-logo{
  width: 24rem;
  margin-bottom: 9rem;
}

.footer-copy small{
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {
  .footer {
      background: url(/special/lang/assets-2026-renewal/images/common/bg-repeat.webp);
      background-size: 24rem;
      padding: 4rem 0 1rem;
  }
  .footer__inner{
    width: 90%;
  }
  .footer-logo{
    width: 18.5rem;
    margin-bottom: 12rem;
  }
  .footer-copy small{
    font-size: 1.2rem;
  }
}



/*! -----------------------------
  よくあるご質問
----------------------------- */
.main {
  margin-top: 11.4rem;
  background-image: url("/special/lang/assets-2026-renewal/images/common/bg-repeat.webp");
  background-repeat: repeat;
  background-size: 36rem;
}
.p-faq {
  /* padding: 13rem 0 10rem; */
}
.p-faq__inner {
  width: min(calc(100% - 16rem), 112rem);
  margin-inline: auto;
}

.p-faq__head {
  height: 32rem;
  position: relative;
}

.p-faq__head-contents{
  position: absolute;
  bottom: 7.5rem;
}

.p-faq__title {
  color: #222222;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.faq-contens{
  background: #f7f5ef;
  padding: 7rem 0 13rem;
}

.faq-contens__inner{
  width: min(calc(90%), 112rem);
  margin-inline: auto;
}

.p-faq__category {
  margin-bottom: 4.8rem;
}

.p-faq__category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem 4rem;
}

.p-faq__category-item {
  flex: 0 0 auto;
}

.p-faq__category-button {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  transition: .3s;
}

@media (any-hover: hover) {
  .p-faq__category-button:hover {
    opacity: 0.7;
  }
}


.p-faq__category-button::after {
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  background: #ab7940;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.p-faq__category-button.is-current {
  color: #ab7940;
}

.p-faq__category-button.is-current::after {
  opacity: 1;
}
.p-faq__list {
}

/* カテゴリ絞り込みで非表示にした質問（JSが hidden 属性を付与） */
.p-faq__item[hidden] {
  display: none;
}

.p-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: normal;
  column-gap: 2.4rem;
  width: 100%;
  min-height: 8.8rem;
  padding: 2.8rem 2.2rem 2rem 3.2rem;
  text-align: left;
  background: #fff;
  transition: 0.3s;
}
.p-faq__question-text,
.p-faq__question-toggle {
  transition: opacity 0.3s ease;
}

.p-faq__question-toggle{
  margin-top: 0.1rem;
}

@media (any-hover: hover){
  .p-faq__question:hover .p-faq__question-text,
  .p-faq__question:hover .p-faq__question-toggle{
    opacity: 0.7;
  }
}
.p-faq__question-icon {
  color: #ab7940;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-top: -0.2rem;
}

.p-faq__question-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
}

/* 円＋矢印は参考SVG（faq-icon01/02）をそのまま背景に使用し、矢印位置を参考通りに合わせる */
.p-faq__question-toggle {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url("/special/lang/assets-2026-renewal/images/pages/top/faq-icon01.svg") no-repeat center center / contain;
  transition: opacity 0.3s ease;
}

.p-faq__item + .p-faq__item{
  margin-top: 0.4rem;
}

.p-faq__item.is-open .p-faq__question-toggle {
  background-image: url("/special/lang/assets-2026-renewal/images/pages/top/faq-icon02.svg");
}

.p-faq__answer {
  height: 0;
  background: #fff;
  overflow: hidden;
  /* 高さは JS が scrollHeight を測ってアニメ（jQuery slideToggle 風） */
  transition: height 0.35s ease;
}

.p-faq__answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.4rem;
  padding: 0 3.2rem 3.2rem;
}

.p-faq__answer-icon {
  color: #d5bc9f;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.p-faq__answer-body {
  padding-top: 0.2rem;
}

.p-faq__answer-text {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
}
.p-faq__answer-text + .p-faq__answer-text {
  margin-top: 1em;
}

.p-faq__answer-text a {
  color: #ab7940;
  text-decoration: underline;
  transition: 0.3s;
}
.p-faq__answer-text a:hover {
  opacity: 0.7;
}

.p-faq__answer-list {
  font-size: 1.5rem;
  line-height: 2;
}


.p-faq__answer-note {
  color: #888888;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 1em;
}
.p-faq__answer-list li{
  padding-left: 0.5em;
  text-indent: -0.5em;
}

.p-faq__answer-note li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-faq__answer-link {
  color: #ab7940;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  transition: .3s;
}
@media (any-hover: hover){
  .p-faq__answer-link:hover{
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px){
  .main{
    margin-top: 6rem;
  }
}

@media screen and (max-width: 750px) {
  .main {
    background-size: 24rem;
  }
  .p-faq {
    padding: 0;
  }

  .p-faq__category {
    margin-bottom: 4rem;
  }

  .faq-contens{
    padding: 5.5rem 0 10rem;
  }
  .p-faq__category-list {
    gap: 2.4rem;
  }

  .p-faq__category-button {
    font-size: 1.5rem;
  }

  .p-faq__question {
    column-gap: 1.6rem;
    min-height: 7.6rem;
    padding: 2.5rem 1.6rem;
  }

  .p-faq__question-icon,
  .p-faq__answer-icon {
    font-size: 3rem;
  }

  .p-faq__question-text {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-top: 0.2rem;
  }

  .p-faq__answer-inner {
    column-gap: 1.6rem;
    padding: 0 1.6rem 2.4rem;
  }

  .p-faq__answer-text {
    font-size: 1.5rem;
    line-height: 2;
  }
}


/*! -----------------------------
  会員ステータス一覧
----------------------------- */
.p-status__inner {
  width: min(calc(100% - 16rem), 112rem);
  margin-inline: auto;
}

.p-status__head {
  position: relative;
  height: 32rem;
}

.p-status__head-contents {
  position: absolute;
  bottom: 7.5rem;
}

.p-status__title {
  color: #222222;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* .status-contents 本体のスタイルは「ステータスページ コンテンツ」セクション（ファイル後半）にまとめて記載 */

/* テーブル */
.p-status__table-wrap{
  margin-bottom: 3rem;
}
.p-status__table {
  width: 100%;
  table-layout: fixed;
  /* collapse だと sticky な thead でボーダーが描画されず隙間が透けるため separate。
     ボーダーは各セル自身が持つので、ヘッダー固定時もセルと一緒に追従して透けない */
  border-collapse: separate;
  border-spacing: 0;
  background: #faf8f2;
  /* 外周（上・左）の区切り。右・下は各セルの border が担う */
  border-top: 0.4rem solid #faf8f2;
  border-left: 0.4rem solid #faf8f2;
}
/* セル間の区切りは border で色付け（旧 border-spacing の隙間に相当）。
   右＋下だけに引くことで隣接セルと二重にならず 0.4rem の単線になる。色はページ別 */
.p-status__table th,
.p-status__table td {
  border-right: 0.4rem solid #faf8f2;
  border-bottom: 0.4rem solid #faf8f2;
}
.p-top-section .p-status__table{
  background: #fffefb;
  border-top-color: #fffefb;
  border-left-color: #fffefb;
}
.p-top-section .p-status__table th,
.p-top-section .p-status__table td {
  border-right-color: #fffefb;
  border-bottom-color: #fffefb;
}

/* 共通リセットの tbody{display:block} を打ち消し、通常のテーブル列レイアウトに戻す */
.p-status__table tbody {
  display: table-row-group;
  width: auto;
}

.p-status__corner,
.p-status__row-head {
  width: 24rem;
}

/* 列見出し（ティア） */
.p-status__corner {
  background: transparent;
}

.p-status__tier {
  padding: 0.5rem 0.5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.p-status__tier--bronze {
  background: #8c4b02;
}
.p-status__tier--silver {
  background: #747474;
}
.p-status__tier--gold {
  background: #daa030;
}
.p-status__tier--platina {
  background: #57a3fd;
}
.p-status__tier--diamond {
  background: #022ac0;
}

/* 行見出し */
.p-status__row-head {
  padding: 2.4rem 2rem;
  text-align: left;
  vertical-align: middle;
  background: #eaddcf;
}
.p-status__row-head--bg{
  background: #C4A179;
  color: #fff;
}
.p-status__row-head--bg .p-status__row-title{
  color: #fff;
}
.p-status__row-title sup{
  font-size: 1rem;
}


.p-status__row-title {
  display: block;
  color: #ab7940;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.075em;
}

.p-status__row-note {
  display: block;
  color: #ab7940;
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
}

/* データセル */
.p-status__table tbody td {
  padding: 2rem 1rem;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  vertical-align: middle;
  background: #fffefb;
  word-wrap: break-word;
}

.p-top-section--rate .p-status__table tbody td.td-large{
  font-size: 2.4rem;
  font-weight: bold;
}

/* ティアごとの文字色 */
.p-status__table tbody td:nth-child(2) {
  color: #8c4b02;
}
.p-status__table tbody td:nth-child(3) {
  color: #747474;
}
.p-status__table tbody td:nth-child(4) {
  color: #daa030;
}
.p-status__table tbody td:nth-child(5) {
  color: #57a3fd;
}
.p-status__table tbody td:nth-child(6) {
  color: #022ac0;
}

/* バッジ画像 */
.p-status__badge-cell {
  padding-block: 2rem;
  background: #fffefb;
}

.p-status__badge {
  display: block;
  width: auto;
  height: 9.4rem;
  margin-inline: auto;
}
.p-top-section .p-status__badge{
  height: 8.4rem;
}

/* 対象（○） */
.p-status__circle {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

/* ○の横に付く注釈（※2など）：丸と横並びのまま右肩に添える */
.p-status__circle + sup {
  margin-left: 0.2em;
  white-space: nowrap;
  font-size: 1rem;
}

/* 非対象（–） */
.p-status__dash {
  display: inline-block;
  color: currentColor;
}

/* テーブル下の補足テキスト */
.p-status__note {
  margin-top: 3.2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .p-status__inner {
    width: calc(100% - 4rem);
  }
  .p-status__head {
    height: 22rem;
  }
  .p-status__head-contents {
    bottom: 5rem;
  }
  .p-status__title {
    font-size: 3rem;
  }
  /* SP: status の表は区切り線なし（外周も消す） */
  .p-status__table{
    border-top: 0;
    border-left: 0;
  }
  .p-status__table th, .p-status__table td{
    border: 0px!important;
  }
  /* SP: トップの付与率表は 0.2rem の単線（separate なので右下＋外周上左で単線化） */
  .p-top-section .p-status__table{
    border-top: 0.2rem solid #fffefa;
    border-left: 0.2rem solid #fffefa;
  }
  .p-top-section .p-status__table th, .p-top-section .p-status__table td{
    border: 0!important;
    border-right: 0.1rem solid #fffefa!important;
    border-bottom: 0.1rem solid #fffefa!important;
  }

  /* よくあるご質問の head を status に合わせる */
  .p-faq__inner {
    width: calc(100% - 4rem);
  }
  .p-faq__head {
    height: 22rem;
  }
  .p-faq__head-contents {
    bottom: 5rem;
  }
  .p-faq__title {
    font-size: 3rem;
  }

  /* 横スクロールで表を保持 */
  .p-status__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-status__table {
    min-width: 76rem;
  }

  .p-status__corner,
  .p-status__row-head {
    width: 8rem;
  }

  .p-status__row-head {
    padding: 1.6rem 1.4rem;
  }

  .p-status__table tbody td {
    padding: 1.8rem 0.8rem;
    font-size: 1.4rem;
  }

  .p-status__badge {
    width: 5.6rem;
    height: auto;
  }
}

/* スマホ：横スクロールをやめ、縦積み＋会員ステータスを sticky 固定 */
@media screen and (max-width: 1000px) {
  .p-status__table-wrap {
    overflow: visible;
  }
  .p-status__head {
    height: 18rem;
  }

  .p-faq__head {
    height: 18rem;
  }
  .p-status__table {
    display: block;
    min-width: 0;
    table-layout: auto;
    border-spacing: 0;
  }
  .--sp-center{
    text-align: center!important;
  }

  /* thead（会員ステータス：ティア名＋バッジ）を画面上部に固定 */
  .p-status__table thead {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.2rem;
    position: sticky;
    top: 6rem;
    z-index: 10;
    padding-bottom: 0.2rem;
    background: #f7f5ef;
  }

  .p-status__table tbody {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.2rem;
    width: auto;
  }

  .p-status__table thead tr,
  .p-status__table tbody tr {
    display: contents;
  }

  /* 角セルは非表示 */
  .p-status__corner {
    display: none;
  }

  /* 行見出し → 全幅バー */
  .p-status__row-head {
    grid-column: 1 / -1;
    width: auto;
    padding: 1rem 1.6rem;
  }

  /* 会員ステータスの見出しはティア名より上へ */
  .p-status__row-head--status {
    order: -1;
  }

  .p-status__row-title {
    font-size: 1.6rem;
  }
  .p-top-section .p-status__row-title{
    font-size: 1.3rem;
  }
  .p-status__row-title br{
    display: none;
  }
  .p-status__row-note br{
    display: none;
  }

  .p-status__row-note {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: bold;
  }


  /* ティア名 */
  .p-status__tier {
    padding: 1rem 0.2rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .p-top-section .p-status__tier{
    width: 5rem;
    font-size: 1.3rem;
    padding: 0.5rem 0.2rem;
  }
  /* バッジ：セル内で上下左右中央（縦積みで td がグリッド化し vertical-align が効かないため flex 中央寄せ） */
  .p-status__badge-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 0.8rem;
  }

  .p-status__badge {
    width: 5.2rem;
  }

  /* 値セル：左寄せ */
  .p-status__table tbody td {
    padding: 1.5rem 0.8rem 1.5rem 0.8rem;
    font-size: 1.4rem;
    text-align: left;
  }
  /* ダッシュ（–）はセル内で上下左右中央に（縦積みで td がグリッド化し vertical-align が効かないため flex 中央寄せ） */
  .p-status__dash {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .p-top-section--rate .p-status__table tbody td{
    font-size: 1.5rem;
  }
  .p-top-section--rate .p-status__table tbody td.td-large{
    font-size: 1.8rem;
  }
}


/*! =============================================
  トップページ：付与率(ステータス)テーブルだけ
  全幅で 左の見出し列を固定 ＋ 横スクロール ＋ 進捗バー
============================================= */
.p-top-section--rate .p-status__table-wrap {
  overflow-x: auto;
  /* 縦は明示クリップ。横スクロール時に tier 上端が 1px にじむのを防ぐ */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* ネイティブのスクロールバーは隠してカスタムバーを使う */
  scrollbar-width: none;
}
.p-top-section--rate .p-status__table-wrap::-webkit-scrollbar {
  display: none;
}
/* 左の見出し列（角セル＋行見出し）を固定 */
.p-top-section--rate .p-status__corner,
.p-top-section--rate .p-status__row-head {
  position: sticky;
  left: 0;
  z-index: 2;
}
.p-top-section--rate .p-status__corner {
  background: #fffefa;
}

/* 横スクロール進捗バー（JSでオーバーフロー時のみ表示） */
.p-status__scrollbar {
  display: none;
  height: 0.4rem;
  margin-top: 2.4rem;
  border-radius: 999px;
  background: #ece6dc;
}
.p-status__scrollbar.is-active {
  display: block;
}
.p-status__scrollbar-thumb {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #ab7940;
}

/* mobile：共有の縦積みレイアウト(≤1000px)を打ち消し、テーブル＋横スクロールを全幅で維持 */
@media screen and (max-width: 1000px) {
  .p-top-section--rate .p-status__table-wrap {
    overflow-x: auto;
  }
  .p-top-section--rate .p-status__table {
    display: table;
    min-width: 64rem;
    table-layout: fixed;
    border-spacing: 0.2rem;
  }
  .p-top-section--rate .p-status__table thead {
    display: table-header-group;
    position: static;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    background: none;
  }
  .p-top-section--rate .p-status__table tbody {
    display: table-row-group;
    grid-template-columns: none;
    gap: 0;
    width: auto;
  }
  .p-top-section--rate .p-status__table thead tr,
  .p-top-section--rate .p-status__table tbody tr {
    display: table-row;
  }
  .p-top-section--rate .p-status__corner {
    display: table-cell;
  }
  .p-top-section--rate .p-status__row-head {
    grid-column: auto;
    width: 14rem;
    padding: 1.2rem 1.2rem;
  }
  .p-top-section--rate .p-status__row-head--status {
    order: 0;
  }
  .p-top-section--rate .p-status__table tbody td {
    text-align: center;
  }
  /* バッジセルは generic の flex 化を打ち消してテーブルセルに戻す（トップ表は縦積みしないため） */
  .p-top-section--rate .p-status__badge-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .p-status__table-wrap{
    margin-bottom: 2.5rem;
  }
  .p-top-section--rate .p-status__table{
    min-width: 50rem;
  }
  html[lang="en"] .p-top-section--rate .p-status__corner{
    width: 8rem;
  }
}


/*! =============================================
  共通パーツ（使い回し）
============================================= */

/* 新着バッジ */
.c-new {
  display: block;
  width: 7rem;
  height: auto;
  margin-bottom: 1rem;
  margin-left: -1rem;
}
.c-point{
  display: block;
  width: 7rem;
  height: auto;
  margin-left: -1rem;
  margin-bottom: -1rem;
}

/* アクセント文字 */
.u-accent {
  color: #ab7940;
}
.u-accent02{
  color: #f75d35;
}
.bold{
  font-weight: bold;
}
/* ボタン（ピル） */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 28rem;
  min-height: 5rem;
  padding: 1.2rem 3rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  background: #ab7940;
  border-radius: 999px;
  transition: opacity 0.3s ease;
}
html[lang="en"] .c-btn{
  max-width: 32rem;
}

html[lang="en"] .p-hero__action .c-btn{
  max-width: 34rem;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}
.c-btn--light {
  color: #ab7940;
  background: #fff;
}

html[lang="zh-tw"] .c-btn--light{
  line-height: 1;
}

/* 縦バー付き小見出し */
.c-bar-title {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.6rem;
  color: #ab7940;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-bar-title::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.6rem;
  height: 1.2em;
  content: "";
  background: #ab7940;
  border-radius: 1px;
}

/* ページトップ */
.c-pagetop {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: #fff;
  border: 3px solid #ab7940;
  border-radius: 50%;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.12);
  /* 初期は非表示。スクロールで is-visible が付いたらふわっと出現 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media (any-hover: hover) {
  .c-pagetop:hover {
    opacity: 0.7;
  }
}
.c-pagetop__icon {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #ab7940;
  border-right: 2px solid #ab7940;
  transform: translateY(0.25rem) rotate(-45deg);
}

@media screen and (max-width: 750px){
  /* 新着バッジ */
  .c-new {
    display: block;
    width: 5rem;
    margin-left: -1rem;
    margin-bottom: 1rem;
  }
  .c-point{
    display: block;
    width: 5rem;
    margin-left: -1rem;
    margin-bottom: 0;
  }
  .c-btn{
    font-size: 1.6rem;
  }
  .footer-copy small{
    max-width: 100%;
  }
  html[lang="zh-tw"] .c-btn{
    max-width: 100%;
  }
}


/*! =============================================
  TOP ページ
============================================= */
.p-top-section {
  padding: 8rem 0;
}
.p-top-section--rate {
  background: #fffefa;
}
.p-top-section--bonus {
  background: #f7f5ef;
}
.p-top-section--benefit {
  background: #fffefa;
}

.p-top-section__inner {
  max-width: 1040px;
  width: 90%;
  margin-inline: auto;
}

/* 付与率テーブル（statusテーブル流用）の数値はトップでは大きめに */
.p-top-section--rate .p-status__table tbody td {
  font-size: 2rem;
  font-weight: normal;
  background: #faf8f2;
}
.p-status__table tbody td sup{
  font-size: 1rem;
}
.p-top-section--rate .p-status__badge-cell{
  background: #faf8f2;
}

.p-top-section__head {
  margin-bottom: 6rem;
}
#benefits .p-top-section__head{
  margin-bottom: 2rem;
}
.p-top-section__title {
  color: #222222;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-top-section__lead {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
}

.p-top-section__action {
  margin-top: 4rem;
}

.p-top-section__block + .p-top-section__block {
  margin-top: 5rem;
}

.p-top-section__notes {
  margin-top: 4rem;
  /* ※番号を自動採番（li ごとに ※1, ※2 …） */
  counter-reset: note;
}
.p-status__table-wrap + .p-top-section__notes{
  margin-top: 2.2rem;
}
.p-top-section__notes li {
  position: relative;
  /* ※1 ぶんのぶら下げ。折り返し行も本文位置に揃う */
  padding-left: 2.2em;
  color: #888888;
  font-size: 1.4rem;
  line-height: 2;
  /* font-weight: bold; */
  counter-increment: note;
}
.p-top-section__notes li a{
  color: #ab7940;
  text-decoration: underline;
  transition: .3s;
}
@media (any-hover: hover){
  .p-top-section__notes li a:hover{
    opacity: 0.7;
  }
}
.p-top-section__notes li::before {
  content: "※" counter(note);
  position: absolute;
  left: 0;
}
html[lang="en"] .p-top-section__notes li::before{
  content: "*" counter(note);
}

/* ボーナスポイント（お誕生日 / ステータスアップ） */
.p-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
/* 1000px 以下は縦並び（1カラム） */
@media screen and (max-width: 1000px) {
  .p-bonus-grid {
    grid-template-columns: 1fr;
  }
}
.p-bonus__list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.4rem;
  overflow: hidden;
}
/* 共通リセットの tbody{display:block} を打ち消し、通常のテーブル列レイアウトに戻す */
.p-bonus__list tbody {
  display: table-row-group;
  width: auto;
}
.p-bonus__head {
  /* td はテーブルセルのまま（display:flex にすると列が崩れる）。中身を inline-block で横並び */
  vertical-align: middle;
  white-space: nowrap;
  min-width: 24rem;
  padding: 1.8rem 2rem;
  background: #fff;
}
.p-bonus__icon {
  display: inline-block;
  vertical-align: middle;
  width: 4rem;
  height: auto;
  margin-right: 1.4rem;
}
.p-bonus__icon.--sp {
  display: none;
}
.p-bonus__name {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  color: var(--tier, #3b1d1d);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-bonus__point {
  background: #fff;
  padding: 1.5rem 2rem;
  color: var(--tier, #222);
  font-size: 1.7rem;
  font-weight: 700;
  vertical-align: middle;
  width: 70%;
  line-height: 1;
}
.p-bonus__point b{
  font-size: 1.7rem;
  font-size: 2.4rem;
}
.p-bonus__item--bsg {
  --tier: #222;
}
.p-bonus__item--silver {
  --tier: #747474;
}
.p-bonus__item--gold {
  --tier: #daa030;
}
.p-bonus__item--platina {
  --tier: #57a3fd;
}
.p-bonus__item--diamond {
  --tier: #022ac0;
  font-size: 2rem;
  font-weight: bold;
}
.p-bonus__item--bsg .p-bonus__name{
  font-size: 1.7rem;
}
/* ブロンズ/シルバー/ゴールドはテキストごとに色分け */
.p-bonus__tier--bronze {
  color: #8c4b02;
}
.p-bonus__tier--silver {
  color: #747474;
}
.p-bonus__tier--gold {
  color: #daa030;
}
.p-bonus__sep {
  margin: 0 0.3em;
}

/* ステータス特典 アイコンカード */
.p-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5rem;
  align-items: end;
}
.p-feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 30rem;
}
.p-feature__icon {
  flex: 0 0 auto;
  width: 12rem;
  object-fit: contain;
}
.p-feature__label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p-feature__line {
  color: #222;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.p-feature__line--accent {
  color: #f75d35;
  font-size: 2.1rem;
}
.p-feature__sub {
  font-size: 1.5rem;
}
.p-feature__note {
  font-size: 0.65em;
  font-weight: bold;
  vertical-align: super;
}

/* 下部CTAバナー */
.p-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: 50rem;
}
.p-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-cta__bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.p-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-cta__inner {
  max-width: 1040px;
  width: 90%;
  margin-inline: auto;
}
.p-cta__title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-cta__buttons {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

.p-top-midsection{
  display: flex;
  gap: 3rem 5rem;
  justify-content: space-between;
  margin-bottom: 5rem;
  align-items: center;
}
.p-top-midsection__title{
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-top-midsection__text{
  /* font-weight: bold; */
  font-size: 1.5rem;
  line-height: 2;
  flex: 1;
}
.p-top-midsection__notes{
  color: #888888;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2rem;
  /* font-weight: bold; */
}

.p-top-midsection__notes li{
  padding-left: 1em;
  text-indent: -1em;
}

.p-top-midsection .p-top-midsection__notes{
  margin-top: 0;
}
.p-top-midsection__contents{
  flex: 1;
}
.p-top-midsection__figure{
  width: 24rem;
}

@media screen and (max-width: 1000px) {
  .p-top-section {
    padding: 7rem 0;
  }
  .p-top-section__inner {
    width: calc(100% - 8rem);
  }
  .p-cta__inner {
    width: calc(100% - 8rem);
  }
  .p-top-midsection__text br{
    display: none;
  }
  .p-bonus__list{
    border-spacing: 0.2rem;
  }
  .p-top-section--rate .p-status__table tbody td {
    font-size: 1.5rem;
  }
  .p-bonus .p-top-midsection__notes{
    margin-bottom: 0;
  }
  #benefits .p-top-section__head{
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 750px) {
  .p-top-section {
    padding: 5.5rem 0 8rem;
  }
  .p-top-section__inner {
    width: calc(100% - 4rem);
  }
  .p-top-section__head {
    margin-bottom: 4rem;
  }
  .p-top-section__title {
    font-size: 2.6rem;
  }
  .p-top-section__lead {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .c-btn {
    width: 100%;
    min-width: 0;
  }
  .c-bar-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .p-bonus-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .p-bonus__icon.--pc {
    display: none;
  }
  .p-bonus__icon.--sp {
    width: 7.5rem;
    display: inline-block;
  }
  /* ボーナス表：アイコンを上・ティア名を下に縦並び＆中央寄せ */
  /* アイコンを上・名称を下に中央寄せ */
  .p-bonus__head {
    min-width: 0;
    width: 34%;
    max-width: 15rem;
    padding: 1.4rem 1rem 1.4rem;
    text-align: center;
  }
  .p-bonus__icon {
    display: block;
    margin: 0 auto 0.8rem;
  }
  .p-bonus__name {
    display: block;
    font-size: 1.6rem;
  }
  .p-bonus__item--bsg .p-bonus__name {
    font-size: 1.5rem;
  }
  .p-bonus__item--bsg .p-bonus__name br{
    display: none;
  }
  /* bsg：スマホは「/」を消して縦並び */
  .p-bonus__name--bsg {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.5;
  }
  .p-bonus__sep {
    display: none;
  }
  .p-bonus__point {
    width: auto;
    font-size: 1,8rem;
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }
  .p-bonus__point b {
    font-size: 2.2rem;
  }
  .p-feature-list {
    gap: 1.6rem;
  }
  .p-feature-item:nth-child(3){
    margin-top: 3rem;
  }
  .p-feature {
    width: 100%;
  }
  .p-cta {
    height: 48rem;
    min-height: 26rem;
  }
  .p-cta__inner {
    width: calc(100% - 4rem);
  }
  .p-cta__title {
    font-size: 2.6rem;
  }
  .p-cta__title br{
    display: none;
  }
  .p-cta__buttons {
    flex-direction: column;
  }
  .c-pagetop {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 5rem;
    height: 5rem;
  }
  .p-top-midsection{
    margin-bottom: 0;
    gap: 2rem;
    align-items: start;
  }
  .p-top-midsection__notes{
    margin-bottom: 5rem;
  }
  .p-top-midsection__title{
    font-size: 2.2rem;
  }
  .p-top-midsection-sp{
    display: flex;
    gap: 2rem;
  }
  .p-top-midsection__figure{
   min-width: 10.5rem;
  }
  .c-btn {
    flex-direction: column;
    max-width: 100%;
    min-height: 5rem;
  }
  .p-feature__line{
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px){

} 


/*! =============================================
  TOP : ヒーロー / 追加セクション
============================================= */

/* ボタン：下向きシェブロン付き */
.c-btn--chevron {
  position: relative;
  padding-right: 4.6rem;
}
.c-btn--chevron::after {
  position: absolute;
  right: 2.6rem;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}

/* カルーセル（横スクロールで回る） */
.c-carousel {
  width: 100%;
  overflow: hidden;
}
.c-carousel__track {
  display: flex;
  width: max-content;
  animation: c-carousel-scroll 80s linear infinite;
}
.c-carousel__item {
  flex: 0 0 auto;
}
.c-carousel__item img {
  display: block;
  width: auto;
  height: 20rem;
}
/* 画像1枚分だけ送って無限ループ（全画像が同一なので継ぎ目なし）。
   -100% はトラック全幅。HTML側のカルーセル画像枚数と分母を必ず揃える（現在6枚→/6）。
   これにより 4K/5K/ウルトラワイド等の広い画面でも右端に隙間ができない。 */
@keyframes c-carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 6)); }
}

/* ヒーロー */
.p-hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background-image: url("/special/lang/assets-2026-renewal/images/common/bg-repeat.webp");
  background-repeat: repeat;
  background-size: 36rem;
}
.ribbon-fig{
  position: absolute;
}
.ribbon-l{
  width: 34.5rem;
  top: 0;
  left: 0;
  z-index: 99;
}
.ribbon-r{
  width: 20.2rem;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 94%;
  margin-inline: auto;
  padding: 6.5rem 3rem 6rem;
  text-align: center;
  background: #fff;
  border-radius: 0.6rem 0.6rem 0 0;
  box-sizing: border-box;
}
.p-hero__label{
  max-width: 50.6rem;
  width: 76%;
  margin: 0 auto;
}
.p-hero__title {
  max-width: 96.3rem;
  width: 90%;
  margin: 0 auto;
}

html[lang="en"] .p-hero__title{
  max-width: 93.1rem;
  margin-top: 1rem;
}
html[lang="en"] .p-hero__label{
  max-width: 63.7rem;
}

html[lang="zh-tw"] .p-hero__title{
  max-width: 75.1rem;
  margin-top: 1rem;
}
html[lang="zh-tw"] .p-hero__label{
  max-width: 47.4rem;
}
.p-hero__num {
  font-size: 5.2rem;
  line-height: 1;
  vertical-align: -0.05em;
}
.p-hero__action {
  margin-top: 2rem;
}

/* オーバービュー 3カード */
.p-top-section--overview {
  background: #fffefb;
}
.p-top-section__head--center {
  text-align: center;
}
.p-top-section__head--center .c-new {
  margin-inline: auto;
}
.p-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.p-overview__card {
  display: flex;
  flex-direction: column;
}
.p-overview__figure{
  position: relative;
  width: 90%;
  max-width: 24rem;
  margin:0 auto 2.4rem;
}
.p-overview__point{
  position: absolute;
  width: 7rem;
  left: -2.5rem;
  top: -1.8rem;
}
.p-overview__icon {
  width: 100%;
}
.p-overview__title {
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-overview__title .u-accent{
  color: #f75d35;
}
.p-overview__desc {
  margin-bottom: 2.8rem;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
}
.p-overview__card .c-btn {
  margin-top: auto;
  max-width: 32rem;
  width: 100%;
}

/* ベストレート */
.p-top-section--bestrate {
  background: #fffefa;
}
.p-bestrate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.p-bestrate__text {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
.p-bestrate__figure {
  flex: 0 0 auto;
  width: 30rem;
}
.p-bestrate__figure img {
  width: 100%;
  height: auto;
}
.p-bestrate__note {
  margin-top: 3rem;
  color: #8a8378;
  font-size: 1.3rem;
  line-height: 1.8;
}

/* 5つのステータス（ランクアップ） */
.p-top-section--rank {
  background: #f7f5ef;
}
.p-rank__figure {
  display: flex;
  justify-content: space-between;
  gap: 3.84%;
  margin-bottom: 3rem;
}
.p-rank__fig--before {
  flex: 0 0 auto;
  width: 25%;
}
.p-rank__fig--after {
  flex: 1 1 auto;
  width: 65.38%;
}
.p-rank__fig img {
  width: 100%;
  height: auto;
}
.p-rank__arrow {
  flex: 0 0 auto;
  width: 1.92%;
  height: auto;
}
.p-rank__notes {
  display: flex;
  justify-content: space-between;
}
.p-rank__note:nth-child(1){
  width: 25%;
}
.p-rank__note:nth-child(2){
  width: 65.38%;
}
.p-rank__note-title {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
}
.p-rank__note-title--accent {
  color: #ab7940;
}
.p-rank__note-text {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .p-hero{
    background-size: 24rem;
  }
  .p-hero__inner {
    width: calc(100% - 8rem);
    padding: 4.5rem 5% 5rem;
  }
  .p-hero__title {
    font-size: 3rem;
  }
  .p-hero__num {
    font-size: 4.4rem;
  }
  .ribbon-l{
    width: 40%;
  }
  .ribbon-r{
    width: 20%;
  }
  .p-hero__label{
    max-width: 48rem;
    width: 80%;
  }
  .p-hero__title{
    width: 100%;
  }
  html[lang="en"] .p-hero__label{
    width: 90%;
  }
  
  html[lang="zh-tw"] .p-hero__title{
    width: 84.5%;
  }
  html[lang="zh-tw"] .p-hero__label{
    width: 71.4%;
  }
  .p-hero__inner{
    width: calc(100% - 4rem);
  }
  .p-overview__title br{
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .p-hero {
    padding-top: 2rem;
  }
  .p-hero__label {
    font-size: 1.3rem;
    gap: 1.2rem;
    margin-bottom: 0;
  }
  .p-hero__label::before,
  .p-hero__label::after {
    width: 3rem;
  }
  .p-hero__title {
    font-size: 2.2rem;
    line-height: 1.6;
  }
  .p-hero__num {
    font-size: 3.2rem;
  }
  .p-hero__corner {
    border-left-width: 9rem;
    border-bottom-width: 9rem;
  }
  .c-carousel__item img {
    height: 12rem;
  }

  /* オーバービュー：アイコン左＋テキスト右、ボタンは下に全幅 */
  .p-overview {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .p-overview__card {
    display: grid;
    grid-template-columns: minmax(9rem, 27.7%) 1fr;
    grid-template-areas:
      "icon body"
      "btn  btn";
    column-gap: 2rem;
    text-align: left;
  }
  .p-overview__figure {
    grid-area: icon;
    width: 94%;
    margin: 0 1.2rem;
    padding-top: 1.6rem;
  }
  .p-overview__point{
    width: 4rem;
    left: -1.2rem;
    top: 0;
  }
  .p-overview__icon {
    width: 100%;
    margin-bottom: 0;
  }
  .p-overview__body {
    grid-area: body;
  }
  .p-overview__title {
    margin-bottom: 0.6rem;
    font-size: 2.2rem;
  }
  .p-overview__desc {
    margin-bottom: 0;
  }
  .p-overview__card .c-btn {
    grid-area: btn;
    width: 100%;
    max-width: 100%;
    margin: 3.2rem auto 0;
  }

  /* ベストレート：見出し＋本文の左に、小さめ画像を右へ回り込み */
  .p-bestrate {
    display: flow-root;
  }
  .p-bestrate__figure {
    float: right;
    width: 11rem;
    margin: 0.5rem 0 1rem 1.6rem;
  }

  .p-rank__figure {
    flex-direction: column;
    gap: 2rem;
  }
  .p-rank__fig--before {
    width: 18rem;
  }
  .p-rank__fig--after {
    width: 100%;
  }
  .p-rank__arrow {
    transform: rotate(90deg);
  }
  .p-rank__notes {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }


  .p-rank__note:nth-child(1),
  .p-rank__note:nth-child(2){
    width: 100%;
    margin-top: 0;
  }
  .p-rank__note:nth-child(2){
    margin-top: 0;
  }

  .--bronze .p-rank__note-title{
    margin-top: 2rem;
    color: #ab7940;
  }

  .sp-p-rank__item.--row{
    display: flex;
    gap: 2rem;
  }

  .sp-p-rank__item.--row figure{
    width: 36%;
  }
  .sp-p-rank__item.--row .p-rank__note{
    flex: 1;
  }

  .sp-p-rank__arw{
    width: 4rem;
    margin: 2.5rem auto 3rem;
  }
}


/*! =============================================
  モバイルヘッダー / ドロワーメニュー
============================================= */

/* PCでは非表示 */
.header__sp {
  display: none;
}
.header__hamburger {
  display: none;
}
.drawer {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* 固定ヘッダー(6.4rem)に合わせてアンカーのオフセットを一致させる */
  html {
    scroll-padding-top: 6.4rem;
  }
  /* PC用のユーティリティ/ナビを隠し、モバイルヘッダーへ */
  .header__top,
  .header__bottom {
    display: none;
  }
  .header__inner {
    width: 100%;
    max-width: 100%;
    height: 6rem;
    margin: 0;
    padding-left: 2rem;
    align-items: center;
  }
  .header__logo {
    margin: 0;
  }
  .header__logo-img {
    width: 15rem;
  }
  .header__content {
    display: none;
  }

  .header__sp {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    height: 100%;
    gap: 0 1.2rem;
    /* 右上に固定したハンバーガー(6rem)ぶんの余白を確保 */
    padding-right: 7.2rem;
  }
  .header__sp-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .header__sp-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }

  /* SPヘッダーのドロップダウン（ログイン / Languages） */
  .header__sp-item {
    position: relative;
    display: flex;
    align-items: stretch;
  }
  .header__sp-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-0.6rem);
    min-width: 12rem;
    padding: 0;
    background: #5f5f5f;
    border-radius: 0.6rem;
    box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
  }
  .header__sp-menu.--lang{
    min-width: 8rem;
  }
  /* ラベル：メニューが開いている間だけ 1px 下線（ホバー/クリック） */
  .header__sp-label {
    position: relative;
  }
  .header__sp-label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 1px;
    background: #222222;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .header__sp-item:hover .header__sp-label::after,
  .header__sp-item.is-open .header__sp-label::after {
    opacity: 1;
  }
  /* 上向きの三角 */
  .header__sp-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 0.7rem solid transparent;
    border-bottom-color: #5f5f5f;
  }
  /* hover が途切れないよう、トリガーとの隙間を透明ブリッジで埋める */
  .header__sp-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1rem;
  }
  /* タップ(is-open) でもホバーでも開く */
  .header__sp-item:hover .header__sp-menu,
  .header__sp-item.is-open .header__sp-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .header__sp-menu-link {
    display: block;
    padding: 1rem 1.6rem 1.2rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }
  .header__sp-menu-link + .header__sp-menu-link {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  @media (any-hover: hover) {
    .header__sp-menu-link:hover {
      background: rgba(255, 255, 255, 0.12);
    }
  }

  .header__hamburger {
    /* メニュー(z:1000)より前面に固定し、ボタンだけ常に上に乗せる */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 6rem;
    height: 6rem;
    margin: 0;
    background: #ab7940;
    transition: background-color 0.3s ease;
  }
  /* 開いている間は色反転：背景=白 / バー(×)=茶 */
  .header__hamburger.is-active {
    background: #fff;
  }
  .header__hamburger-bar {
    display: block;
    width: 2.4rem;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }
  .header__hamburger.is-active .header__hamburger-bar {
    background: #ab7940;
  }
  /* 開いている間はハンバーガー→×に切り替え */
  .header__hamburger.is-active .header__hamburger-bar:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__hamburger.is-active .header__hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active .header__hamburger-bar:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }

  /* ドロワー */
  .drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    /* 閉じる時はスライドアニメ完了後に非表示へ（即時消えを防ぐ） */
    transition: visibility 0s linear 0.35s;
  }
  .drawer.is-open {
    visibility: visible;
    /* 開く時は即表示 */
    transition: visibility 0s linear 0s;
  }
  .drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .drawer.is-open .drawer__overlay {
    opacity: 1;
  }
  .drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 88%;
    max-width: 42rem;
    height: 100%;
    background: #ab7940;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .drawer.is-open .drawer__panel {
    transform: translateX(0);
  }
  .drawer__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .drawer__logo {
    width: 14rem;
    height: auto;
    margin: 2.6rem 0 0 2.6rem;
  }
  /* 開閉はヘッダーのハンバーガー1個に集約するため、ドロワー内の×ボタンは非表示 */
  .drawer__close {
    display: none;
  }
  .drawer__nav {
    margin-top: 3.5rem;
    padding-inline: 3rem;
  }
  .drawer__link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5rem 0 1.5rem 2rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .drawer__link::after {
    content: "";
    margin-left: auto;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  .drawer__item.is-current .drawer__link::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.7rem;
    height: 0.7rem;
    content: "";
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .drawer__buttons {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3rem;
    padding: 0 3rem 4rem;
  }
  .drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.4rem;
    /* 文字が少し下に見えるため、約2px上へ光学調整（下paddingで中央位置を上げる） */
    padding-bottom: 2px;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  .drawer__btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
  }
  .drawer__btn--web {
    color: #ab7940;
    background: #fff;
  }

  /* スクロールロック（ドロワー展開中） */
  body.-fixed {
    width: 100%;
  }
}

.ensNotifyBanner{
  max-width: 1200px!important;
  width: 94%!important;
  margin: 0 auto!important;
  left: 0!important;
  right: 0!important;
  bottom: 2rem!important;
}
/* =============================================
  ステータスページ コンテンツ（CMS 用フラット構成）
  ラッパーは .status-contents 共通。
  背景色を変える場合は --bg-white のような修飾クラスを付ける。
  余白は空の div（.spacer-l / .spacer-m / .spacer-s）で空ける
============================================= */
.status-contents {
  background: #faf8f2;
  padding: 7.5rem 0 9rem;
}
/* 背景色ちがいの修飾クラス */
.status-contents.--bg-white {
  background: #fffefb;
}
.status-contents__inner {
  width: min(calc(100% - 16rem), 112rem);
  margin-inline: auto;
}

/* スペーサー（大・中・小）：空の div に付けて余白を空ける */
.spacer-l {
  height: 5rem;
}
.spacer-m {
  height: 3rem;
}
.spacer-s {
  height: 1.5rem;
}

/* 見出し・テキスト */
.status-contents .title {
  color: #222222;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
.status-contents .sub-title {
  color: #222222;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}
.status-contents .bar-title {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 1.6rem;
  color: #ab7940;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.status-contents .bar-title::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.6rem;
  height: 1.2em;
  content: "";
  background: #ab7940;
  border-radius: 1px;
}
.status-contents .text {
  color: #222222;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 3rem;
}
.status-contents .text a {
  color: #ab7940;
  text-decoration: underline;
  transition: 0.3s;
}
.status-contents .text a:hover {
  opacity: 0.7;
}

/* 注釈（※1 などのマーカーは li 内に直接記述） */
.status-contents .notes{
  margin-bottom: 3rem;
}
.status-contents .notes li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  color: #888888;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
.status-contents .notes li a {
  color: #ab7940;
  transition: .3s;
  text-decoration: underline;
}
.status-contents .notes li a:hover {
  opacity: 0.7;
}

/* 特典テーブル */
.status-contents .table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.4rem;
}
/* 共通リセットの tbody{display:block} を打ち消し、通常のテーブル列レイアウトに戻す */
.status-contents .table tbody {
  display: table-row-group;
  width: auto;
}
.status-contents .table th,
.status-contents .table td {
  padding: 1.8rem 2rem;
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}
.status-contents .table th {
  width: 21%;
  min-width: 12rem;
  background: #e8dfd1;
  color: #ab7940;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}


/* ラベル内の改行はSPのみ有効（PCでは1行） */
.status-contents .table{
  margin-bottom: 3rem;
}
.status-contents .table th br {
  display: none;
}
.status-contents .table td {
  background: #faf8f2;
  color: #222222;
  font-weight: 400;
}
.status-contents .line {
  display: block;
}
.status-contents .line a {
  color: #ab7940;
  text-decoration: underline;
  transition: .3s;
}
.status-contents .line a:hover {
  opacity: 0.7;
}
.status-contents .line + .line {
  margin-top: 0.4rem;
}

/* ステータス一覧表：デスクトップ時、ヘッダー行（ティア名＋バッジ）をスクロール追従（sticky）
   ※ .status-contents 配下のみ＝トップの付与率表(.p-top-section--rate)には影響しない */
@media screen and (min-width: 1001px) {
  .status-contents .p-status__table thead {
    position: sticky;
    top: 11rem; /* 固定ヘッダー(PC)の高さぶん下げる */
    z-index: 5;
    background: #faf8f2;
  }
  .status-contents .p-status__corner {
    background: #faf8f2;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .status-contents .p-status__table thead {
    top: 5.8rem; /* この幅では固定ヘッダーが 6.4rem */
  }
}

@media screen and (max-width: 1000px) {
  .status-contents {
    padding: 5rem 0 5rem;
  }
  .status-contents__inner {
    width: calc(100% - 4rem);
  }
}

@media screen and (max-width: 750px) {
  .spacer-l {
    height: 4rem;
  }
  .spacer-m {
    height: 2.5rem;
  }
  .spacer-s {
    height: 1.2rem;
  }


  .status-contents .notes{
    margin-bottom: 2.5rem;
  }
  .status-contents .title {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
  }
  .status-contents .sub-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .status-contents .bar-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .status-contents .table {
    border-spacing: 0.2rem;
    margin-bottom: 2.5rem;
  }
  .status-contents .table{
    margin-bottom: 2.5rem;
  }
  .status-contents .table th,
  .status-contents .table td {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 2;
  }
  .status-contents .table th {
    width: 8rem;
    line-height: 2;
    white-space: normal;
  }
  html[lang="en"] .status-contents .table th{
    width: 13rem;
  }
  .status-contents .table th br {
    display: inline;
  }
  .status-contents .line + .line {
    margin-top: 0;
  }
  .status-contents .text{
    margin-bottom: 2.5rem;
  }
}

/* ===== 汎用フリーエリア（大タイトル＋小タイトル＋フリーテキスト）=====
   どのセクション末尾にも置ける使い回しブロック。
   本文中の色変えは .u-accent（茶）/ .u-accent02（赤）の span を使用 */
.p-freearea {
  margin-top: 6rem;
}
.p-freearea__title {
  color: #222222;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-freearea__block {
  margin-top: 3rem;
}
.p-freearea__subtitle {
  color: #222222;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-freearea__text {
  margin-top: 2rem;
  color: #222222;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
}
.p-freearea__text a {
  color: #ab7940;
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-freearea__text a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .p-freearea {
    margin-top: 4rem;
  }
  .p-freearea__title {
    font-size: 2.2rem;
  }
  .p-freearea__subtitle {
    font-size: 1.8rem;
  }
  .p-freearea__block {
    margin-top: 2rem;
  }
}

/* ===== 英語ページのみ全テキストの字間を 0.025em に統一 =====
   *{letter-spacing:0} や各コンポーネント個別指定を上書きするため
   ファイル末尾に配置し、同詳細度の指定にもソース順で優先させる */
html[lang="en"] * {
  letter-spacing: 0.025em;
}
