/* --------------------------------------------------
  card.htmlここから
-------------------------------------------------- */
.opt-bg-image {
  aspect-ratio: 683/150;
  background-color: rgba(0, 0, 0, 0);
  margin-top: -100px;
  min-height: auto !important;
}
.opt-bg-image img {
  aspect-ratio: 683/150;
}
.m-image {
  border-radius: 20px;
  overflow: hidden;
}
.m-header_section_ttl sup {
  font-size: 17px;
  margin-top: -100px;
}
.m-image_item img {
  margin: 0 auto;
}
.creditCardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
.creditCardList .creditCardList__images {
  -ms-flex-negative: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  gap: 30px;
}
.creditCardList .creditCardList__text {
  font-size: 16px;
  max-width: 658px;
}

@media only screen and (max-width: 950.98px) {
  
  .opt-bg-image {
    aspect-ratio: 375/338;
    margin-top: -60px;
  }
  
  .opt-bg-image img {
    aspect-ratio: 375/338;
  }
  .creditCardList {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;
    margin-top: 25px;
  }
  .creditCardList .creditCardList__images {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 20px;
    justify-content: center;
  }
  .creditCardList .creditCardList__images img {
    max-height: 36px;
    width: auto;
  }
  .creditCardList .creditCardList__text {
    font-size: 15px;
  }
}
/* --------------------------------------------------
  card.htmlここまで
-------------------------------------------------- */


/* --------------------------------------------------
  index.htmlここから
-------------------------------------------------- */
.br_pcOnly {
  display: inline;
}
.ipadOnly {
  display: none;
}
/* アンカーリンクボタンコンテナ */
.c-card-apply-btn {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.c-card-apply-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 76px;
  padding: 12px 30px 12px 48px;
  background-color: #0068b7;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.c-card-apply-btn a:hover {
  opacity: 0.85;
}
.c-card-apply-btn a::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid #ffffff;
  border-left: 2.5px solid #ffffff;
  transform: translateY(-65%) rotate(-135deg);
}
/* アンカーリンクボタンコンテナここまで */


/* ポイント画像 */
.c-point-image {
  width: 100%;
  text-align: center;
}
.c-point-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* ポイント画像ここまで */


/* KIPSカードが選ばれる理由ここから */
.c-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.c-reason-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 32px 29px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.c-reason-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.c-reason-card__icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
/* 青色タイトル（上下2px線） */
.c-reason-card__ttl {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #0149a8;
  padding: 20px 0;
  margin: 0 0 32px 0;
  border-top: 2px solid #0149a8;
  border-bottom: 2px solid #0149a8;
  box-sizing: border-box;
}
.c-reason-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* 各ポイント（●付き）のブロック */
.c-reason-item {
  margin-bottom: 18px;
}
.c-reason-item:last-child {
  margin-bottom: 0;
}
.c-reason-item__title {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  padding-left: 30px;
}
/* 黄色の● */
.c-reason-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: #edbf00;
  border-radius: 50%;
}
.c-reason-item__txt {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 4px 0 0 0;
  padding-left: 30px;
}
/* 中央寄せテキスト（カード2） */
.c-reason-card__center-txt {
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
  color: #333333;
  margin: 20px 0 24px 0;
}
/* ボタン（カード2） */
.c-reason-card__btn-wrap {
  margin-top: 20px;
  padding: 0 10px;
}
.c-reason-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0068b7;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  padding: 13px 35px 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-reason-card__btn:hover {
  opacity: 0.85;
}
/* ボタン右側の矢印「＞」 */
.c-reason-card__btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
.c-reason-card__lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 30px 0;
}
/* 割引セクション（カード3） */
.c-reason-card__discount-ttl {
  text-align: left;
  font-weight: bold;
  font-size: 17px;
  color: #333333;
  margin-bottom: 10px;
}
.c-reason-discount-item {
  margin-bottom: 12px;
}
.c-reason-discount-link {
  color: #0068b7;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 2px;
}
.c-reason-discount-txt {
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 1.5;
}
/* カード画像配置（カード3下部：中央寄せ） */
.c-reason-card__card-img {
  margin-top: auto;
  text-align: center;
  padding-top: 10px;
}
.c-reason-card__card-img img {
  max-width: 100%;
  height: auto;
}
/* KIPSカードが選ばれる理由ここまで */



/* 日常のお買い物セクションここから */
.c-okaimono-logo {
  text-align: center;
  margin-bottom: 12px;
}
.c-okaimono-logo img {
  width: 50px;
  max-width: 100%;
  height: auto;
}
.c-okaimono-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: 30px;
}
.c-okaimono-images__item {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
.c-okaimono-images__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 日常のお買い物セクションここまで */

/* 家族カードここから */
.c-family-logo {
  text-align: center;
  margin-bottom: 12px;
}
.c-family-logo img {
  width: 50px;
  max-width: 100%;
  height: auto;
}
.c-family-content {
  width: 100%;
  max-width: 1000px;
  margin: 24px auto 0;
  text-align: center;
}
.c-family-txt {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}
/* 家族カードここまで */


/* クレジットカードお申込みセクションここから */
.c-card-apply__header {
  background-color: #0068b7;
  padding: 38px 20px;
  text-align: center;
  border-radius: 0;
}
.c-card-apply__ttl {
  color: #ffffff;
  font-size: 26px;
  margin: 0;
}
.c-card-apply__notes {
  margin: 20px 0 60px;
  text-align: center;
}
.c-card-apply__sub-note {
  font-size: 13px;
  color: #666666;
  margin: 0 0 32px;
}
.c-card-apply__check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.c-card-apply__check-list li {
  position: relative;
  font-size: 18px;
  color: #333333;
  padding-left: 28px;
  margin-bottom: 10px;
}
.c-card-apply__check-list li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: bold;
  font-size: 20px;
}
.c-card-apply__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 80px;
}
.c-card-apply__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c-card-apply__card-ttl {
  width: 100%;
  background-color: #e6f0fa;
  color: #333333;
  font-size: 21px;
  font-weight: bold;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  margin-bottom: 32px;
}
.c-card-apply__card-img {
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-card-apply__card-img img {
  width: 88%;
  max-width: 100%;
  height: auto;
}
.c-card-apply__btn-wrap {
  width: 100%;
  margin-bottom: 48px;
}
.c-card-apply__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 94%;
  min-height: 72px;
  background-color: #0068b7;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 22px 40px 22px 20px;
  box-sizing: border-box;
  transition: opacity 0.3s;
  margin:0 auto;
}
.c-card-apply__btn:hover {
  opacity: 0.85;
}
.c-card-apply__btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/common/rn/image/icon/icon_blank_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* PiTaPaエリア */
.c-card-apply__pitapa-wrap {
  width: 92%;
}
.c-card-apply__pitapa-ttl {
  font-size: 20px;
  color: #333333;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 21px;
  margin-bottom: 20px;
}
.c-card-apply__pitapa-status {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.c-card-apply__status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.c-card-apply__status-item span {
  font-size: 16px;
  color: #333333;
}
/* 下部注釈 */
.c-card-apply__bottom-note {
  max-width: 960px;
  margin: 60px auto 0;
  font-size: 18px;
  color: #333333;
  line-height: 1.8;
}
.c-card-apply__sankaku-text {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.c-card-apply__sankaku-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.c-card-apply__sankaku-txt {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  flex: 1;
}
.c-card-apply__bullet {
  display: inline-block;
  width: 1em;
  text-align: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
}
.c-card-apply__bullet--bold {
  font-weight: bold;
}
.c-card-apply__method-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-card-apply__method-list li {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.6;
}
/* 外部詳細リンク */
.c-card-apply__link-wrap {
  text-align: center;
  margin-top: 100px;
}
.c-card-apply__link {
  display: inline-flex;
  align-items: center;
  color: #0068b7;
  font-size: 22px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-card-apply__link:hover {
  opacity: 0.8;
}
.c-card-apply__link-arrow {
  margin-right: 12px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 5px;
}
.c-card-apply__link-txt {
  text-decoration: underline;
  padding-right: 30px;
  position: relative;
}
.c-card-apply__link-txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 54%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/common/rn/image/icon/icon_blank_blue.svg) center / contain no-repeat;
}
.c-card-apply__link-sub {
  font-size: 17px;
  color: #333333;
  margin: 10px 0 0 0;
}
/* クレジットカードお申込みセクションここまで */

/* --------------------------------------------------
  iPad / タブレット用最適化（768px〜1024px）
-------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br_pcOnly {
  display: none;
  }
  /* タブレットサイズでの改行 */
  .ipadOnly {
    display: inline;
  }
  /* タブレットサイズでの改行ここまで */


  /* KIPSカードが選ばれる理由ここから */
  .c-reason-grid {
    gap: 12px;
  }
  .c-reason-card {
    padding: 24px 10px 20px;
  }
  .c-reason-card__icon img {
    width: 70px;
    height: 70px;
  }
  .c-reason-card__ttl {
    font-size: 15px;
    padding: 14px 0;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .c-reason-item__title {
    font-size: 14px;
    padding-left: 22px;
  }
  .c-reason-item__title::before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  .c-reason-item__txt {
    font-size: 13px;
    padding-left: 22px;
  }
  .c-reason-card__center-txt {
    font-size: 14px;
    margin: 16px 0 20px 0;
  }
  .c-reason-card__btn-wrap {
    padding: 0;
  }
  .c-reason-card__btn {
    font-size: 13px;
    padding: 10px 22px 10px 10px;
  }
  .c-reason-card__btn::after {
    right: 8px;
    width: 7px;
    height: 7px;
  }
  .c-reason-card__lead {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .c-reason-card__discount-ttl {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .c-reason-discount-item {
    margin-bottom: 4px;
  }
  .c-reason-discount-link {
    font-size: 13px;
  }
  .c-reason-discount-txt {
    font-size: 12px;
  }
  .c-reason-card__card-img img {
    width: 170px;
  }
  /* KIPSカードが選ばれる理由ここまで */

  /* クレジットカードお申込みセクションここから */
  .c-card-apply__grid {
    gap: 16px;
    margin-bottom: 50px;
  }
  .c-card-apply__card-ttl {
    font-size: 16px;
    height: 70px;
    padding: 0 8px;
    margin-bottom: 20px;
  }
  .c-card-apply__card-img {
    margin-bottom: 20px;
  }
  .c-card-apply__card-img img {
    width: 95%;
  }
  .c-card-apply__btn-wrap {
    margin-bottom: 32px;
  }
  .c-card-apply__btn {
    font-size: 14px;
    min-height: 60px;
    padding: 10px 28px 10px 10px;
    line-height: 1.3;
  }
  .c-card-apply__btn::after {
    right: 10px;
    width: 14px;
    height: 14px;
  }
  /* PiTaPa */
  .c-card-apply__pitapa-ttl {
    font-size: 15px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .c-card-apply__pitapa-status {
    padding: 0;
  }
  .c-card-apply__status-item span {
    font-size: 13px;
  }
  .c-card-apply__status-item img {
    width: 24px;
    height: 24px;
  }
  /* 下部注釈エリア */
  .c-card-apply__bottom-note {
    font-size: 15px;
    margin-top: 40px;
  }
  .c-card-apply__sankaku-icon {
    width: 24px;
    height: 24px;
  }
  .c-card-apply__sankaku-txt,
  .c-card-apply__bullet {
    font-size: 15px;
  }
  .c-card-apply__method-list {
    margin-left: 40px;
  }
  .c-card-apply__method-list li {
    font-size: 15px;
  }
  /* クレジットカードお申込みセクションここまで */



}



/* --------------------------------------------------
  スマホ表示（767px以下）
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .br_pcOnly {
  display: none;
  }
  /* アンカーリンクボタンコンテナ */
  .c-card-apply-btn a {
    font-size: 20px; /* スマホでのフォントサイズ */
    padding: 12px 20px 12px 36px;
    min-height: 76px; /* スマホでも76pxを維持 */
  }
  .c-card-apply-btn a::before {
    left: 40px;
    width: 9px;
    height: 9px;
  }
  /* アンカーリンクボタンコンテナここまで */


  /* KIPSカードが選ばれる理由ここから */
  .c-reason-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .c-reason-card {
    padding: 30px 30px;
  }
  .c-reason-card__icon img {
    width: 80px;
    height: 80px;
  }
  .c-reason-card__ttl {
    font-size: 18px;
    padding: 23px 0;
    margin-bottom: 38px;
  }
  .c-reason-item__title {
    font-size: 18px;
    padding-left: 30px;
  }
  .c-reason-item__title::before {
    width: 20px;
    height: 20px;
    top: 7px;
  }
  .c-reason-item__txt {
    font-size: 15px;
    padding-left: 30px;
  }
  .c-reason-card__center-txt {
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
    margin: 20px 0 24px 0;
  }
  /* KIPSカードが選ばれる理由ここまで */


  /* 日常のお買い物セクションここから */
  .c-okaimono-images {
    gap: 16px;
    margin-top: 20px;
  }
  /* 日常のお買い物セクションここまで */

  /* 家族カードここから */
  .c-family-content {
    margin-top: 16px;
  }
  .c-family-txt {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
  .c-family-txt__line {
  display: block;
  margin-bottom: 16px;
  }
  /* 家族カードここまで */

  /* クレジットカードお申込みセクションここから */
  .c-card-apply__header {
    padding: 24px 16px;
  }
  .c-card-apply__ttl {
    font-size: 18px;
  }
  .c-card-apply__notes {
    margin: 16px 0 32px;
  }
  .c-card-apply__sub-note {
    margin-bottom: 20px;
  }
  .c-card-apply__grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-bottom: 40px;
  }
  .c-card-apply__card-ttl {
    font-size: 22px;
    height: auto;
    padding: 28px 0;
    margin-bottom: 24px;
  }
  .c-card-apply__card-img {
    margin-bottom: 24px;
  }
  .c-card-apply__btn-wrap {
    width: 90%;
    margin-bottom: 32px;
  }
  .c-card-apply__btn {
    min-height: 69px;
    font-size: 20px;
    padding: 14px 36px 14px 16px;
  }
  .c-card-apply__pitapa-wrap {
    width: 82%;
  }
  .c-card-apply__check-list li {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 24px;
  }
  .c-card-apply__check-list li::before {
    font-size: 16px;
    top: 0;
  }
  /* 下部注釈（スマホ用調整） */
  .c-card-apply__bottom-note {
    font-size: 15px;
    padding: 0 10px;
    margin-top: 68px;
  }
  .c-card-apply__sankaku-text {
    margin-bottom: 16px;
    align-items: flex-start;
  }
  .c-card-apply__sankaku-icon {
    width: 22px;
    height: 22px;
  }
  .c-card-apply__sankaku-txt,
  .c-card-apply__bullet {
    font-size: 15px;
    line-height: 1.6;
  }
  .c-card-apply__method-list {
    margin-left: 36px;
    gap: 16px;
  }
  .c-card-apply__method-list li {
    font-size: 15px;
    line-height: 1.6;
  }
  /* 外部詳細リンク（スマホ用調整） */
  .c-card-apply__link-wrap {
    margin-top: 80px;
  }
  .c-card-apply__link {
    font-size: 17px;
  }
  .c-card-apply__link-arrow {
    margin-right: 8px;
    font-size: 16px;
  }
  .c-card-apply__link-txt {
    padding-right: 24px;
  }
  .c-card-apply__link-txt::after {
    width: 14px;
    height: 14px;
  }
  .c-card-apply__link-sub {
    font-size: 16px;
    margin-top: 8px;
  }
  /* クレジットカードお申込みセクションここまで */

}
/* --------------------------------------------------
  index.htmlここまで
-------------------------------------------------- */

