@charset "UTF-8";
/**************************************************************
*************************************************************

feature

*************************************************************
****************************************************************/
.feature {}
/* ===== カスタムプロパティ ===== */ 
:root {
  --em: #e50012; /* 赤い強調 */
  --main-red: #e50012;
}
/************************************************************
*************************************************************

main

*************************************************************
**************************************************************/
#main {
  margin: 3rem 0 0;
}
/*------------------------------------
  おトクな特典セクション（feature）
------------------------------------*/
.feature-block {
  padding: 0 0 4rem;
}
@media (max-width: 700px) {
  .feature-block {
    padding: 0 0 4rem;
  }
}
/*------------------------------------
  h3：リードタイトル（画像）
------------------------------------*/
.benefit-lead {
  text-align: center;
  margin-bottom: 3rem;
}
/*------------------------------------
  h4：各ブロック見出し（画像）
------------------------------------*/
.benefit-heading {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.benefit-heading img {
  max-width: 615px;
  height: auto;
}
@media (max-width: 700px) {
  .benefit-heading img {
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .benefit-heading img {
    max-width: 95%;
  }
}
/*------------------------------------
  h5：小見出し（テキスト＋下線つき）
------------------------------------*/
.benefit-subttl {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #000;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: #E4A68C solid 2px;
}
@media (max-width: 700px) {
  .benefit-subttl {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .benefit-subttl {
    font-size: 1.25rem;
  }
}
/* 下線用 */
.benefit-subttl .underline {
  display: inline-block;
  position: relative;
  color: #D85F4A;
}
.benefit-subttl .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.3em;
  width: 100%;
  height: 0.4em;
  background: rgba(253, 239, 80, .9);
  border-radius: 2px;
  z-index: -1;
}
/*------------------------------------
  各ユニット共通
------------------------------------*/
.unit {
  margin-bottom: 4rem;
}
@media (max-width: 700px) {
  .unit {
    margin-bottom: 3rem;
  }
}
.unit .box {
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .unit .box {
    margin-bottom: 2rem;
  }
}
/*------------------------------------
  ショッピング特典：画像2カラム（ロゴ＋写真）
------------------------------------*/
.benefit-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0 3rem;
}
@media (max-width: 600px) {
  .benefit-media {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .box--dining .benefit-media {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.benefit-media .media-left, .benefit-media .media-right {
  flex: 1 1 50%;
  text-align: center;
}
.benefit-media img {
  width: 100%;
  height: auto;
  display: block;
}
.benefit-media .media-left, .benefit-media .media-right {
  flex: 1 1 50%;
  text-align: center;
}
@media (max-width: 600px) {
  .benefit-media .media-left {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .benefit-media .media-left {
    max-width: 100%;
  }
}
/*------------------------------------
  テーブル（caption付き／横スクロール）
------------------------------------*/
.benefit-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
}
.benefit-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px; /* SP横スクロール */
  font-size: 0.95rem;
  color: #000;
}
.benefit-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.3rem;
}
@media (max-width: 480px) {
  .benefit-table caption {
    font-size: 1.1rem;
  }
}
.benefit-table caption::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #d40000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.benefit-table th, .benefit-table td {
  border: 1px solid #ccc;
  padding: 1rem .5rem;
  vertical-align: top;
  line-height: 1.6;
}
.benefit-table th {
  background: #EDF6F3;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.benefit-table td {
  white-space: normal;
  vertical-align: middle;
}
.benefit-table td span.wrapper__outer {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.benefit-table td span.wrapper {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: #d40000;
  font-weight: 700;
}
.benefit-table td span.label-gray {
  width: 70px;
  padding: .3rem .3rem;
  background-color: #9E9E9F;
  color: #FFF;
  font-size: 80%;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 700px) {
  .benefit-table {
    font-size: 0.9rem;
  }
}
/* テーブル内段落リセット */
.benefit-table p {
  margin: 0;
}
.note__dining {
  /*font-size: 0.88rem;*/
  font-size: 90%;
  margin-top: 1rem;
  padding-left: 1.2rem;
  position: relative;
}
@media (max-width: 700px) {
  .note__dining {
    text-align: left;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .note__dining {
    text-align: left;
    font-size: 100%;
  }
}
.note__dining::before {
  content: "※";
  position: absolute;
  left: 0;
  top: .005em;
}
.note__dining a {
  display: inline;
  color: #406DAC;
  border-bottom: #406DAC solid 1px;
  font-weight: bold;
}
/*------------------------------------
  割引・優待でおトク ブロック
------------------------------------*/
.unit--discount {
  margin-bottom: 0;
}
/*------------------------------------
  ボックス本体
------------------------------------*/
.box.box--discount {
  margin-bottom: 0;
}
/*------------------------------------
  レイアウト（左右2カラム：左＝写真／右＝ロゴ群）
------------------------------------*/
.box--discount .benefit-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .box--discount .benefit-media {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/*------------------------------------
  左右カラム共通
------------------------------------*/
.box--discount .media-left, .box--discount .media-right {
  flex: 1 1 50%;
  text-align: center;
}
/*------------------------------------
  写真部分（左）
------------------------------------*/
.box--discount .media-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
@media (max-width: 600px) {
  .box--discount .media-photo img {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .box--discount .media-photo img {
    max-width: 100%;
  }
}
/*------------------------------------
  ロゴ群（右）
------------------------------------*/
.box--discount .media-logos img {
  width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .box--discount .media-logos img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .box--discount .media-logos img {
    width: 100%;
  }
}
/*------------------------------------
  並び順
------------------------------------*/
.box--discount .media-photo {
  order: 1;
}
.box--discount .media-logos {
  order: 2;
}
/*------------------------------------
  TSUBASAポイント特典（支払い利用）
------------------------------------*/
.feature-tpay {
  padding: 0;
}
.unit.unit--tpay {
  margin-bottom: 0;
}
/*------------------------------------
  見出し下の小見出し
------------------------------------*/
.unit--tpay .benefit-subttl {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .unit--tpay .benefit-subttl {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .unit--tpay .benefit-subttl {
    font-size: 1.25rem;
  }
}
/*------------------------------------
  ロゴ＋説明文グリッド
------------------------------------*/
.tpay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .tpay-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 550px) {
  .tpay-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1.2rem;
  }
}
@media (max-width: 400px) {
  .tpay-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/*------------------------------------
  各アイテム
------------------------------------*/
.tpay-item img {
  max-width: 270px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
@media (min-width: 701px) and (max-width: 950px) {
  .tpay-item img {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .tpay-item img {
    max-width: 100px;
  }
}
@media (max-width: 550px) {
  .tpay-item img {
    max-width: 160px;
  }
}
@media (max-width: 400px) {
  .tpay-item img {
    max-width: 70%;
  }
}
.tpay-item p {
  line-height: 1.7;
  color: #000;
  font-weight: bold;
}
@media (max-width: 700px) {
  .tpay-item p {
    font-size: 0.95rem;
  }
}
@media (max-width: 550px) {
  .tpay-item p {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .tpay-item p {
    font-size: 1.1rem;
  }
}
@media (max-width: 400px) {
  .tpay-item p {
    font-size: 1.2rem;
  }
}
.tpay-item p .small_pc {
  display: none;
}
@media (min-width: 701px) and (max-width: 780px), (min-width: 401px) and (max-width: 480px) {
  .tpay-item p .small_pc {
    display: inline;
  }
}
/* 下段2つを中央寄せ */
.tpay-item:nth-child(4), .tpay-item:nth-child(5) {
  grid-column: span 1;
  justify-self: center;
}
/*------------------------------------
  注意文
------------------------------------*/
.tpay-note {
  /*font-size: 0.88rem;*/
  font-size: 90%;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .tpay-note {
    text-align: left;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .tpay-note {
    text-align: left;
    font-size: 100%;
  }
}
/*------------------------------------
  ご利用額に応じた特典
------------------------------------*/
.feature-amount {
  padding: 4rem 0 0;
}
/* 概要テキスト */
.benefit-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #000;
}
@media (max-width: 700px) {
  .benefit-desc {
    font-size: 1.2rem;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .benefit-desc {
    font-size: 1.1rem;
  }
}
.benefit-desc sup {
  font-size: 65%;
}
/* ブロックごとの余白 */
.amount-block {
  margin-bottom: 4.5rem;
}
.amount-block:last-child {
  margin-bottom: 0;
}
/* タイトル・サブタイトル */
.amount-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}
@media (max-width: 700px) {
  .amount-ttl {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .amount-ttl {
    font-size: 1.2rem;
  }
}
.amount-subttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d85f4a;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.amount-subttl .underline {
  position: relative;
  z-index: 1;
}
.amount-subttl .underline::after {
  content: "";
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: rgba(253, 239, 80, 0.9);
  border-radius: 2px;
  z-index: -1;
}
@media (max-width: 700px) {
  .amount-subttl {
    font-size: 1.1rem;
  }
}
/* グラフ画像 */
.amount-graph {}
.amount-graph.mt {
  margin-top: -3rem;
}
.amount-graph img {
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 比較ブロック */
.amount-compare {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.amount-col {
  flex: 1 1 45%;
  text-align: center;
}
.compare-ttl {
  background: #eaeaea;
  border-radius: 20px;
  display: inline-block;
  padding: 0.4rem 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.compare-graph img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 注意書き */
.amount-notes {
  line-height: 1.6;
  list-style: none;
  margin-top: 1.5rem;
  counter-reset: noteCounter;
}
@media (max-width: 700px) {
  .amount-notes {
    margin-top: 2rem;
  }
}
.amount-notes li {
  /*font-size: 0.88rem;*/
  font-size: 90%;
  margin-bottom: 0.1rem;
  padding-left: 1.8rem;
  position: relative;
}
.amount-notes li.asterisk {
  padding-left: 1.2rem;
}
@media (max-width: 700px) {
  .amount-notes li {
    font-size: 1.2rem;
    text-align: left;
    padding-left: 2.2rem;
  }
}
@media (max-width: 480px) {
  .amount-notes li {
    /*font-size: 1.2rem;*/
    font-size: 100%;
    padding-left: 2.2rem;
  }
}
/* ▼数字を追加する li */
.amount-notes li:not(.asterisk)::before {
  counter-increment: noteCounter;
  content: "※"counter(noteCounter) " "; /* ※1 ※2 ※3 … */
  position: absolute;
  left: 0;
  top: .005em;
}
/* ▼asterisk */
.amount-notes li.asterisk::before {
  content: "＊";
  position: absolute;
  left: 0;
  top: .005em;
}
.amount-notes a {
  color: #406DAC;
  text-decoration: underline;
  font-weight: 700;
}
/**************************************************************
  ご利用カード別ポイント種類
**************************************************************/
/*------------------------------------
  セクション全体
------------------------------------*/
.feature-pointtype {
  padding: 0 0 4rem;
}
/*------------------------------------
  グリッド（親）
------------------------------------*/
.pointtype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-template-rows: auto auto auto auto auto; /* 行を固定してsubgridへ渡す */
  gap: 1.6rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .pointtype-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.4rem;
  }
}
/*------------------------------------
  各カードブロック
------------------------------------*/
.pointtype-item {
  display: grid;
  grid-template-rows: subgrid auto;
  grid-row: span 5;
  align-content: start;
  box-sizing: border-box;
  gap: 1rem;
  position: relative;
}
@media (max-width: 900px) {
  .pointtype-item {
    display: block;
  }
}
.pointtype-item {
  position: relative;
}
.pointtype-item .small_pc {
  display: none;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-item .small_pc {
    display: inline;
  }
}
.pointtype-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -.8rem;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #666 0, #666 3px, transparent 3px, transparent 6px);
}
@media (max-width: 700px) {
  .pointtype-item::before {
    display: none;
  }
}
/*------------------------------------
  吹き出しカード
------------------------------------*/
.pointtype-card {
  position: relative;
  background: #fff;
  border: 2px solid #E4A68C;
  border-radius: 0;
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1rem;
  min-height: 255px;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-card {
    min-height: 285px;
  }
}
@media (max-width: 700px) {
  .pointtype-card {
    padding: 1.5rem 1rem 2.5rem;
    min-height: auto;
  }
}
@media (max-width: 700px) {
  .pointtype-card {
    margin: 0 auto 3rem;
    max-width: 400px;
  }
}
@media (max-width: 450px) {
  .pointtype-card {
    max-width: 100%;
  }
}
/* ▼ノッチ */
.pointtype-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  z-index: 1;
}
/* ▼ノッチの枠 */
.pointtype-card::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid #E4A68C;
  z-index: 0;
}
/*------------------------------------
  カード上部（ロゴ＋説明）
------------------------------------*/
.pointtype-card img {
  max-width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
@media (max-width: 700px) {
  .pointtype-card img {
    max-width: 100px;
  }
}
.pointtype-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media (max-width: 700px) {
  .pointtype-card p {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .pointtype-card p {
    font-size: 1.2rem;
  }
}
/*------------------------------------
  ポイント名カラー
------------------------------------*/
.pointtype-name {
  font-weight: 700;
  font-size: 1.2rem;
}
.pointtype-name.tsubasa, .pointtype-name.jcb, .pointtype-name.mdc {
  color: #25599B;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-name.tsubasa, .pointtype-name.jcb, .pointtype-name.mdc {
    white-space: nowrap;
  }
}
/*------------------------------------
  テキスト（説明・強調）
------------------------------------*/
.pointtype-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-desc {
    margin-bottom: 1rem;
  }
}
@media (max-width: 700px) {
  .pointtype-desc {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .pointtype-desc {
    font-size: 1.0rem;
  }
}
.pointtype-desc2 {
  font-size: 0.95rem;
  color: #d40000;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-desc2 {
    margin: 1rem 0;
  }
}
@media (max-width: 700px) {
  .pointtype-desc2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .pointtype-desc2 {
    font-size: 1.0rem;
  }
}
.pointtype-desc-wrap {
  font-weight: 700;
}
.pointtype-desc-redtxt {
  color: #d40000;
  font-size: 135%;
}
.pointtype-desc-redsmalltxt {
  color: #d40000;
  font-size: 100%;
}
.pointtype-desc-smalltxt {
  color: #000;
}
.pointtype-desc-largetxt {
  font-size: 120%;
  color: #000;
}
/*------------------------------------
  ボタンラップ
------------------------------------*/
.btn-wrap {
  text-align: center;
}
/*------------------------------------
  注意書き
------------------------------------*/
.pointtype-note {
  /*font-size: 0.88rem;*/
  font-size: 90%;
  line-height: 1.6;
  grid-row: 6;
  align-self: start;
  position: relative;
  padding-left: 1.2rem;
}
@media (min-width: 701px) and (max-width: 900px) {
  .pointtype-note {
    margin: 1rem 0;
  }
}
@media (max-width: 700px) {
  .pointtype-note {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    /*text-align: left;*/
  }
}
@media (max-width: 480px) {
  .pointtype-note {
    margin-top: .5rem;
    /*font-size: 1.2rem;*/
    font-size: 100%;
  }
}
.pointtype-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0.05em;
}
.pointtype-note a {
  color: #406DAC;
  text-decoration: underline;
  font-weight: bold;
}
/*------------------------------------
  ご利用カード別ポイント：ボタン
------------------------------------*/
.feature-pointtype .btn--external {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.8em 1.8em;
}
@media (max-width: 700px) {
  .feature-pointtype .btn--external {
    width: 400px;
    font-size: 1.4rem;
    padding: 0.7em 2em;
    margin: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .feature-pointtype .btn--external {
    width: 100%;
    font-size: 1.4rem;
    padding: 0.5em 2em;
    margin: 1.5rem 0;
  }
}
/*------------------------------------
  共通ボタン：右矢印タイプ
------------------------------------*/
.btn--arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background-color: var(--main-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.7em 2.8em;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
@media (min-width: 701px) {
  .btn--arrow {
    width: 100%;
    font-size: .9rem;
  }
}
@media (max-width: 700px) {
  .btn--arrow {
    font-size: 0.95rem;
  }
}
.btn--arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  right: 1.4rem;
  transition: transform 0.2s ease;
}
.btn--arrow:hover {
  background: #b80000;
  transform: translateY(1px);
}
.btn--arrow:hover::after {
  transform: rotate(-45deg) translateX(3px);
}
@media (max-width: 700px) {
  .btn--arrow {
    width: 400px;
    font-size: 1.4rem;
    padding: 0.7em 1.8em;
    margin: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .btn--arrow {
    width: 100%;
    font-size: 1.4rem;
    padding: 0.5em 1em;
    margin: 1.5rem 0;
  }
}
@media (max-width: 700px) {
  .btn--arrow::after {
    width: 8px;
    height: 8px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
    right: 1rem;
  }
}
@media (max-width: 480px) {
  .btn--arrow::after {
    width: 8px;
    height: 8px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
    right: 1rem;
  }
}
/**************************************************************
  ご利用カード別ポイント詳細
**************************************************************/
/*------------------------------------
  共通レイアウト
------------------------------------*/
.feature-block.feature-pointdetail {
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: 0;
}
.pointdetail-unit + .pointdetail-unit {
  margin-top: 5rem;
}
/*------------------------------------
  見出し
------------------------------------*/
.pointdetail-heading {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
@media (max-width: 700px) {
  .pointdetail-heading {
    /*flex-direction: column;
    align-items: flex-start;*/
    justify-content: flex-start;
    align-items: center;
    font-size: 1.7rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-heading {
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-bottom: 1.2rem;
  }
}
.pointdetail-heading br.sp_view {
  display: none;
}
@media (max-width: 480px) {
  .pointdetail-heading br.sp_view {
    display: inline;
  }
}
.pointdetail-heading__logos {
  display: flex;
}
.pointdetail-heading__logos img {
  height: 3rem;
  width: auto;
  margin-left: 0.3rem;
}
/*------------------------------------
  見出し下の線
------------------------------------*/
.heading-line {
  width: 100%;
  height: 4px;
  background: #888;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 2px;
}
.heading-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: #d40000;
  border-radius: 2px 0 0 2px;
}
/*------------------------------------
  コインラベル行
------------------------------------*/
.pointdetail-coinbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 700px) {
  .pointdetail-coinbox {
    /*flex-direction: column;
    align-items: flex-start;*/
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
}
.pointdetail-content-unit {
  margin-bottom: 1.5rem;
}
.pointdetail-content-unit .btn-wrap {
  margin-top: 1.5rem;
}
.pointdetail-content-unit .btn-wrap .coinbox-btn.btn--external, .pointdetail-content-unit .btn-wrap .coinbox-btn.btn--arrow {
  max-width: 400px;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .pointdetail-content-unit .btn-wrap .coinbox-btn.btn--external, .pointdetail-content-unit .btn-wrap .coinbox-btn.btn--arrow {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .pointdetail-content-unit .btn-wrap .coinbox-btn.btn--external, .pointdetail-content-unit .btn-wrap .coinbox-btn.btn--arrow {
    font-size: 1.4rem;
  }
}
/*------------------------------------
  コイン（帯部分）
------------------------------------*/
.pointdetail-coin {
  display: flex;
  align-items: center;
  background: #e37b32;
  border-radius: 9999px;
  padding: 0 1.2em 0 80px;
  position: relative;
  /*width: 250px;*/
  width: 230px;
  height: 55px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .pointdetail-coin {
    padding: 0.5em 1em 0.5em 75px;
    width: 230px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .pointdetail-coin {
    padding: 0.5em 1em 0.5em 75px;
    width: 210px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .pointdetail-coin {
    padding: 0.5em 1em 0.5em 80px;
    width: 230px;
    height: 55px;
    font-size: .9rem;
  }
}
@media (max-width: 430px) {
  .pointdetail-coin {
    width: 200px;
  }
}
@media (max-width: 400px) {
  .pointdetail-coin {
    font-size: 1rem;
  }
}
/* 青バージョン */
.pointdetail-coin.blue {
  background: #528AC2;
}
/*------------------------------------
  コイン画像（背景）
------------------------------------*/
.pointdetail-coin__icon {
  width: 70px;
  height: 70px;
  background: url("../images/feature/icon_coin_gold.png") no-repeat center / contain;
  margin-right: 0.4em;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  .pointdetail-coin__icon {
    width: 70px;
    height: 70px;
  }
}
/* 青コイン */
.pointdetail-coin--blue .pointdetail-coin__icon {
  background-image: url("asset/images/feature/icon_coin_blue.png");
}
/*------------------------------------
  ラベル（白文字）
------------------------------------*/
.pointdetail-coin__label {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 700px) {
  .pointdetail-coin__label {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-coin__label {
    font-size: 1.0rem;
  }
}
.pointdetail-coin__label strong {
  font-size: 1.3rem;
  margin-right: 0.1em;
}
@media (max-width: 700px) {
  .pointdetail-coin__label strong {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-coin__label strong {
    font-size: 1.4rem;
  }
}
.pointdetail-coin__sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1;
  margin-top: -1rem;
}
@media (max-width: 700px) {
  .pointdetail-coin__sub {
    font-size: 1.1rem;
    margin-top: -.8rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-coin__sub {
    font-size: .85rem;
    margin-top: -.2rem;
  }
}
/*------------------------------------
  右側テキスト
------------------------------------*/
.pointdetail-coin__text {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 700px) {
  .pointdetail-coin__text {
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-coin__text {
    font-size: 1.2rem;
  }
}
/*------------------------------------
  注意書き
------------------------------------*/
/* コンテナ（余白調整） */
.pointdetail-notes {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.pointdetail-notes.mt {
  margin: 0 0;
}
@media (max-width: 700px) {
  .pointdetail-notes {
    margin-top: 2rem;
  }
}
/* 各注記行（※マーカー＋インデント） */
.pointdetail-note {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
  /*font-size: 0.88rem;*/
  font-size: 90%;
  word-break: break-word;
  letter-spacing: 0.60px;
}
@media (min-width: 1001px) and (max-width: 1020px) {
  .pointdetail-note {
    letter-spacing: 0.6px;
  }
}
@media (max-width: 700px) {
  .pointdetail-note {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .pointdetail-note {
    /*font-size: 1.2rem;*/
    font-size: 100%;
  }
}
/* ※マーカー（擬似要素） */
.pointdetail-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0; /* 行頭に合わせる */
  width: 1.2em; /* ガター分を確保（回り込み防止） */
  text-align: left;
  color: #555;
  font-weight: 700;
}
.pointdetail-note a {
  color: #406DAC;
  text-decoration: underline;
  font-weight: 700;
}
@media (hover: hover) {
  .pointdetail-note a:hover {
    opacity: 0.85;
  }
}
.pointdetail-note .bold {
  font-weight: 700;
}
/*------------------------------------
  JCB ORIGINAL SERIES パートナー例
------------------------------------*/
.pointdetail-series-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.series-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px dashed #000;
  padding-bottom: 1rem;
}
@media (max-width: 700px) {
  .series-item {
    gap: .5rem;
  }
}
@media (max-width: 480px) {
  .series-item {
    gap: .5rem;
  }
}
.series-item.no-border {
  border-bottom: none;
}
@media (min-width: 701px) {
  .series-item.no-border {
    padding-bottom: 0;
  }
}
@media (max-width: 700px) {
  .series-item.no-border {}
}
.series-item:last-child {
  border-bottom: none;
}
@media (max-width: 700px) {
  .series-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.series-item__logo {
  flex-shrink: 0;
}
@media (min-width: 701px) {
  .series-item__logo {
    width: 130px;
  }
}
@media (max-width: 700px) {
  .series-item__logo {
    width: 150px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .series-item__logo {
    width: 150px;
    margin: 0 auto;
  }
}
.series-item__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 700px) {
  .series-item__text {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.8;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .series-item__text {
    /*font-size: 1.2rem;*/
    font-size: 125%;
    white-space: normal;
  }
}
.series-item__text .sp_view {
  display: none;
}
@media (max-width: 480px) {
  .series-item__text .sp_view {
    display: inline;
  }
}
.series-item__text .highlight {
  color: #d40000;
  font-weight: 700;
  font-size: 125%;
}
.series-item__text .smalltxt {
  /*font-size: .88rem;*/
  font-size: 87%;
  /*line-height: 1.2;*/
  display: block;
  margin-top: .2rem;
  font-weight: normal;
}
@media (max-width: 700px) {
  .series-item__text .smalltxt {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .series-item__text .smalltxt {
    /*font-size: 1.2rem;*/
    font-size: 87%;
  }
}
.pointdetail-unit.series .btn-wrap {
  margin-top: 3rem;
}
.pointdetail-unit.series .btn-wrap .btn--external, .pointdetail-unit.series .btn-wrap .btn--arrow {
  max-width: 400px;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .pointdetail-unit.series .btn-wrap .btn--external, .pointdetail-unit.series .btn-wrap .btn--arrow {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .pointdetail-unit.series .btn-wrap .btn--external, .pointdetail-unit.series .btn-wrap .btn--arrow {
    font-size: 1.4rem;
  }
}
.btn--external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background-color: var(--main-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.7em 1.8em;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
@media (max-width: 480px) {
  .btn--external {
    padding: 0.5em 2em;
  }
}
/*------------------------------------
  画面幅レイアウト調整
------------------------------------*/
.feature #main .feature-block.feature-pointtype .tbbtn {}
@media (min-width: 701px) and (max-width: 950px) {
  .feature #main .feature-block.feature-pointtype .tbbtn {
    padding: 1em 1em;
    line-height: 1.4;
  }
}
.feature #main .feature-block.feature-pointtype .tbbtn br {
  display: none;
}
@media (min-width: 701px) and (max-width: 900px) {
  .feature #main .feature-block.feature-pointtype .tbbtn br {
    display: inline;
  }
}
.feature #main .feature-block.feature-pointtype .btn--external {}
.feature #main .feature-block.feature-pointtype .btn--external::after {}
@media (min-width: 701px) and (max-width: 900px) {
  .feature #main .feature-block.feature-pointtype .btn--external::after {
    right: 12px;
  }
}