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

	新規会員向けCPページ用のCSS
	/card/campaign/adm/*

	01. 初期化
	02. 汎用クラス
	03. 見出し
	04. ファーストコンテンツ
	05. キャンペーン特典
	06. 「ビュー・スイカ」カードの特徴（流用パーツ含む）
	07. ポイント付与までの流れ
	08. カードのお申込み（流用パーツ含む）
	09. 注意事項
	10. SP用エントリーボタン（フロート要素）

	コンテンツ横幅：1200px
	基本フォントサイズ：16px
	VWのベース：PCは1024px、SPは375px

--------------------------------------------------------------- */
/* ---------------------------------------------------------------

	01. 初期化

--------------------------------------------------------------- */
main img {
  width: 100%;
}

[data-modal=trigger] {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP";
}

/* ---------------------------------------------------------------

	02. 汎用クラス

--------------------------------------------------------------- */
.u-border_red {
  border-color: red;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .u-border_red {
    margin-top: 8vw;
  }
}
@media only screen and (max-width: 750px) {
  .u-border_red p {
    font-size: 3.73vw;
  }
}
.kome {
  padding-left: 1em;
}

.kome > li {
  text-indent: -1em;
  font-size: clamp(10px, 1.171875vw, 12px);
  color: #666;
}
.kome > li.nonIndent {
  text-indent: 0em;
}

@media only screen and (max-width: 750px) {
  .kome > li {
    font-size: 3.2vw;
  }
}
.present_flow {
  font-size: min(1.4vw, 16px);
  margin-top: 80px;
}

.present_flow ul li {
  font-size: min(1.4vw, 16px);
}

@media only screen and (max-width: 750px) {
  .present_flow ul li {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .present_flow {
    font-size: 3.2vw;
    margin-top: 10vw;
  }
}
.present_flow p.titleTxt{
  font-size: 20px;
}
@media only screen and (max-width: 750px) {
  .present_flow p.titleTxt{
    font-size: 3.5vw;
  }
}  
.present_flow .info-list {
  max-width: 800px;
  margin: 20px auto 30px;
  display: grid;
  row-gap: 12px;
}
.present_flow .info-row {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: #E6F2F8;
}
.present_flow .info-row .label {
  width: 220px;
  background: #B3D7EA;
  color: #007AB8;
  font-weight: bold;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.present_flow .info-row .value {
  flex: 1;
  padding: 14px 18px;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.present_flow .info-row.highlight .label {
  background: #007AB8;
  color: #fff;
}
@media (max-width: 750px) {
  .present_flow .info-row {
    flex-direction: column;
  }
  .present_flow .info-row .label {
    width: 100%;
  }
}

/* 余白 */
.mt10 {
  margin-top: min(0.9765625vw, 10px) !important;
}

.mt15 {
  margin-top: min(1.46484375vw, 15px) !important;
}

.mt20 {
  margin-top: min(1.953125vw, 20px) !important;
}

.mt25 {
  margin-top: min(2.44140625vw, 25px) !important;
}

.mt30 {
  margin-top: min(2.9296875vw, 30px) !important;
}

.mt35 {
  margin-top: min(3.41796875vw, 35px) !important;
}

.mt40 {
  margin-top: min(3.90625vw, 40px) !important;
}

.mt45 {
  margin-top: min(4.39453125vw, 45px) !important;
}

.mt50 {
  margin-top: min(4.8828125vw, 50px) !important;
}

.mt55 {
  margin-top: min(5.37109375vw, 55px) !important;
}

.mt60 {
  margin-top: min(5.859375vw, 60px) !important;
}

@media only screen and (max-width: 750px) {
  .mt10sp {
    margin-top: 2.6666666vw !important;
  }
  .mt15sp {
    margin-top: 4vw !important;
  }
  .mt20sp {
    margin-top: 5.333333vw !important;
  }
  .mt25sp {
    margin-top: 6.6666666vw !important;
  }
  .mt30sp {
    margin-top: 8vw !important;
  }
  .mt35sp {
    margin-top: 9.3333333vw !important;
  }
  .u-mw1esp {
    margin: 0 0.5em;
  }
  .u-imgw130 {
    width: 130%;
  }
}
/* 行間 */
.lh14 {
  line-height: 1.4 !important;
}

/* フォントサイズ */
.fs14 {
  font-size: min(1.3671875vw, 14px) !important;
}

.fs18 {
  font-size: min(1.7578125vw, 18px) !important;
}

@media only screen and (max-width: 750px) {
  .fs12sp {
    font-size: 3.2vw !important;
  }
  .fs13sp {
    font-size: 3.466666vw !important;
  }
  .fs14sp {
    font-size: 3.7333333vw !important;
  }
  .fs15sp {
    font-size: 4vw !important;
  }
  .fs16sp {
    font-size: 4.2666666vw !important;
  }
}
/* インデント */
.ind-1 {
  padding-left: 1em !important;
  text-indent: -1em !important;
}

@media only screen and (max-width: 750px) {
  .ind-05sp {
    text-indent: -0.5em !important;
  }
}
/* 色 */
.c-white {
  color: #fff !important;
}

.c-green {
  color: #1e8f5b !important;
}

.c-red {
  color: #d80000 !important;
}

.bkgc-blue {
  background-color: #C9DFEC !important;
}

/* 太字 */
.bold {
  font-weight: bold !important;
}

/* マーカー */
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.35em;
  text-decoration-color: #edcc7a;
  text-underline-offset: -0.1em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  font-weight: bold;
}

.marker.silver {
  text-decoration-color: #dee0e1 !important;
  text-underline-offset: 0;
}

.marker.pink {
  text-decoration-color: #fcdede !important;
  text-underline-offset: 0;
  color: #d80000;
}

.u-tabletItem {
  display: none;
}

/* タブレット */
@media only screen and (max-width: 1024px) {
  .u-tabletItem {
    display: inline-block;
  }
}
/* 終了のお知らせ */
.cpend {
  margin: min(2.5390625vw, 26px) auto 0;
  max-width: 1200px;
  border: solid 1px #d10000;
  border-radius: min(0.9765625vw, 10px);
  padding: 1.5em;
  background-color: #fff0f0;
  text-align: center;
  font-size: min(1.953125vw, 20px);
  font-weight: bold;
  color: #d80000;
}

@media only screen and (max-width: 750px) {
  .cpend {
    margin: 5.3333333vw 4vw;
    border-radius: 2.6666666vw;
    font-size: 4.8vw;
  }
}
.flow-cont .cpend {
  margin: 0 0 min(1.953125vw, 20px);
}

@media only screen and (max-width: 750px) {
  .flow-cont .cpend {
    margin-bottom: 4vw;
  }
}

/* JCBロゴ */

.brand-logo-jcb {
  width: auto;
  max-width: none;
  height: 32px;
  margin: 4px 3px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

/* ---------------------------------------------------------------

	03. 見出し

--------------------------------------------------------------- */
.title01 {
  font-size: min(4vw, 48px);
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .title01 {
    font-size: 6.933333vw;
  }
}
.title02 {
  position: relative;
  padding-bottom: min(3.90625vw, 40px);
  text-align: center;
  font-size: min(4vw, 48px);
  font-weight: bold;
  color: #1e8f5b;
}

.title02::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(15.03906vw, 154px);
  height: min(0.19531vw, 2px);
  background-color: #1e8f5b;
}

@media only screen and (max-width: 750px) {
  .title02 {
    padding-bottom: 5.333333vw;
    font-size: 6.933333vw;
  }
}
@media only screen and (max-width: 750px) {
  .title02::after {
    width: 20.533333vw;
  }
}
.title03 {
  text-align: center;
}

.title03 > span {
  position: relative;
  display: inline-block;
  padding: 0 min(3.41796875vw, 35px);
  font-size: min(2vw, 24px);
}

.title03 > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: min(0.29296875vw, 3px);
  height: min(8.0078125vw, 82px);
  background-color: #222;
  transform: rotate(-25deg);
}

.title03 > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: min(0.29296875vw, 3px);
  height: min(8.0078125vw, 82px);
  background-color: #222;
  transform: rotate(25deg);
}

@media only screen and (max-width: 750px) {
  .title03 > span {
    padding: 0 5.3333333vw;
    font-size: 4.266666vw;
  }
}
@media only screen and (max-width: 750px) {
  .title03 > span::before {
    width: 0.533333vw;
    height: 14.6666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .title03 > span::after {
    width: 0.533333vw;
    height: 14.6666666vw;
  }
}
.title04 {
  font-size: min(2.34375vw, 24px);
  font-weight: bold;
}

.title04 .hosoku {
  font-size: min(1.171875vw, 12px);
  font-weight: normal;
}

@media only screen and (max-width: 750px) {
  .title04 {
    font-size: 4.266666vw;
  }
}
@media only screen and (max-width: 750px) {
  .title04 .hosoku {
    font-size: 2.666666vw;
  }
}
.title04s {
  font-size: min(2.05078125vw, 21px);
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .title04s {
    font-size: 3.4666666vw;
  }
}
.title05 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: min(2.24609375vw, 23px) min(2.24609375vw, 23px) min(2.24609375vw, 23px) 0;
  height: min(4.4921875vw, 46px);
  width: min(9.765625vw, 100px);
  background-color: #4b3f0d;
  text-align: center;
  font-size: clamp(16px, 2.05078125vw, 21px);
  color: #fff;
}

.title05 .num {
  margin-left: 0.2em;
}

@media only screen and (max-width: 750px) {
  .title05 {
    border-radius: 4.2666666vw 4.2666666vw 4.2666666vw 0;
    height: 8.533333vw;
    width: 18.666666vw;
    font-size: 4vw;
  }
}
.title06 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: min(2.44140625vw, 25px) min(2.44140625vw, 25px) min(2.44140625vw, 25px) 0;
  height: min(4.8828125vw, 50px);
  width: min(18.5546875vw, 190px);
  background-color: #1e8f5b;
  text-align: center;
  font-size: clamp(15px, 1.7578125vw, 18px);
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .title06 {
    border-radius: 4.2666666vw 4.2666666vw 4.2666666vw 0;
    height: 8.533333vw;
    width: 30.4vw;
    font-size: 3.466666vw;
  }
}
.flow-title {
  position: relative;
  padding-left: min(9.5703125vw, 98px);
  font-size: min(3.125vw, 32px);
}

.flow-title > .num {
  position: absolute;
  box-sizing: content-box;
  left: max(-0.9765625vw, -10px);
  top: max(-1.46484375vw, -15px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: solid 10px #fff;
  border-radius: 50%;
  width: min(6.640625vw, 68px);
  height: min(6.640625vw, 68px);
  background-color: #1e8f5b;
  line-height: 1;
  vertical-align: 0.1em;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .flow-title {
    padding-left: 12vw;
    font-size: 5.6vw;
  }
}
@media only screen and (max-width: 750px) {
  .flow-title > .num {
    left: -2.4vw;
    top: -2.6666666vw;
    border: solid 9px #fff;
    width: 10.1333333vw;
    height: 10.1333333vw;
  }
}
header#header {
  display: none;
}

/* ---------------------------------------------------------------

	04. ファーストコンテンツ

--------------------------------------------------------------- */
.box-wrap,
.box-wrap-pc {
  box-sizing: content-box;
  padding: 0 min(5.859375vw, 60px);
}

@media only screen and (max-width: 750px) {
  .box-wrap {
    padding: 5.333333vw 4vw;
  }
  .box-wrap-pc {
    padding: 0;
  }
}
/* メインビジュアル */
.mainVisual {
  overflow: hidden;
  display: block;
  margin: min(2.5390625vw, 26px) auto 0;
  max-width: 1200px;
  border-radius: min(2.9296875vw, 30px);
  width: 100%;
}

.mainVisual.square {
  border-radius: 0;
}

.mainVisual > img {
  display: block;
}

@media only screen and (max-width: 750px) {
  .mainVisual {
    margin: 0;
    border-radius: 0;
  }
}
.entryRequired_box {
  margin: 10px auto 0;
  max-width: 1020px;
}

.entryRequired_box .entryRequired {
  box-sizing: border-box;
  border-radius: 4px 4px 0 0;
  padding: 5px 0 6px;
  background-color: #d80000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.entryRequired_box .entryRequired-detail {
  border-radius: 0 0 4px 4px;
  border: solid 3px #e7e7e7;
  border-top: none;
  padding: 13px 20px;
  font-size: 15px;
}

.entryRequired_box .entryRequired-detail li {
  text-indent: -1em;
  padding-left: 1em;
}

.entryRequired_box .entryRequired-detail li .small_txt {
  font-size: 80%;
  color: #666;
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 750px) {
  .entryRequired_box {
    margin: 0.5vw auto 0;
  }
  .entryRequired_box .entryRequired {
    border-radius: 1vw 1vw 0 0;
    padding: 1vw 0 1vw;
    font-size: 2.7vw;
    line-height: 1.4;
  }
  .entryRequired_box .entryRequired-detail {
    border-radius: 0 0 1vw 1vw;
    border: solid 0.8vw #e7e7e7;
    border-top: none;
    padding: 1vw 2vw;
    font-size: 2.5vw;
  }
  .entryRequired_box li .small_txt {
    font-size: 95%;
  }
}
.firstBox {
  margin: 0px auto;
  max-width: 780px;
  padding-bottom: min(6.666666vw, 80px);
}

.period-box {
  display: flex;
  align-items: center;
  margin-top: min(1.25vw, 15px);
  font-weight: bold;
  line-height: 1.4;
}

.period-box:first-of-type {
  margin-top: 10px;
}

.period-box > dt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: min(3.076923vw, 24px) min(3.076923vw, 24px) 0 min(3.076923vw, 24px);
  height: min(9.487179vw, 74px);
  width: 24.359%;
  background-color: #1e8f5b;
  text-align: center;
  font-size: clamp(13px, 1.7578125vw, 18px);
  color: #fff;
}

.period-box > dd {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.period-box > dd:first-of-type {
  margin-left: min(3.846153vw, 30px);
}

.period-box > dd .year {
  width: 100%;
  font-size: clamp(13px, 1.7578125vw, 18px);
}

.period-box > dd .days {
  font-size: clamp(15px, 1.953125vw, 20px);
}

.period-box > dd .num {
  line-height: 1;
  vertical-align: -0.05em;
  font-size: clamp(24px, 4.8717948vw, 38px);
  font-weight: 900;
}

.period-box > dd .nyoro {
  margin: 0 0.5em 0 0.2em;
}

@media only screen and (max-width: 750px) {
  .period-box {
    margin-top: 2.4vw;
  }
  .period-box:first-of-type {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dt {
    border-radius: 4.266666vw 4.266666vw 0 4.266666vw;
    height: 11vw;
    width: 26.66666vw;
    font-size: 3.466666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dd:first-of-type {
    margin-left: 2.133333vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dd .year {
    font-size: 2.9333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dd .days {
    font-size: 3.4666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dd .num {
    font-size: 6.4vw;
  }
}
@media only screen and (max-width: 750px) {
  .period-box > dd .nyoro {
    margin: 0 0.4em 0 0.1em;
  }
}
.caution-icon-list {
  margin-top: 10px;
}

.caution-icon-list > li {
  position: relative;
  padding-left: min(3.461538vw, 27px);
  font-size: min(1.794871vw, 14px);
  color: #666;
}

.caution-icon-list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: min(2.5641025vw, 20px);
  height: min(2.4358974vw, 19px);
  background: url("/card/campaign/adm/shared/img/viewsuica/icon_attention.svg") no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 750px) {
  .caution-icon-list {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 750px) {
  .caution-icon-list > li {
    padding-left: 6.66666vw;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .caution-icon-list > li::before {
    top: 0;
    width: 5.33333vw;
    height: 5.33333vw;
  }
}
.kome-list {
  font-size: min(1.794871vw, 14px);
  margin-top: 10px;
}

.kome-list li {
  text-indent: -1em;
  padding-left: min(3.461538vw, 27px);
}

@media only screen and (max-width: 750px) {
  .kome-list li {
    padding-left: 6.66666vw;
    font-size: 3.2vw;
  }
}
.btn-box {
  margin: 20px auto 0;
  width: min(58.974358vw, 500px);
}

.btn-box > p:nth-of-type(n + 2) {
  margin-top: min(3.205128vw, 25px);
}

@media only screen and (max-width: 750px) {
  .btn-box {
    margin: 2vw auto 0;
    width: 86.933333vw;
  }
}
a.singleBtn {
  font-size: min(3.076923vw, 24px);
}

a.singleBtn .hosoku {
  vertical-align: 0.2em;
  font-size: min(2.051282vw, 16px);
  font-weight: normal;
}

@media only screen and (max-width: 750px) {
  a.singleBtn {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 750px) {
  a.singleBtn .hosoku {
    font-size: 3.466666vw;
  }
}
@media only screen and (max-width: 1024px) {
  a.singleBtn-tablet {
    line-height: 1.3;
  }
}
@media only screen and (max-width: 750px) {
  a.singleBtn-sp {
    line-height: 1.3;
  }
}
.caution-list {
  padding-left: 1em;
  font-size: min(1.171875vw, 12px);
  font-weight: bold;
  color: #d10000;
}

.caution-list > li {
  text-indent: -1em;
}

@media only screen and (max-width: 750px) {
  .caution-list {
    font-size: 3.2vw;
  }
}
.firstBox .caution-list {
  margin-top: min(3.846153vw, 30px);
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .firstBox .caution-list {
    margin-top: 6.666666vw;
  }
  .firstBox .caution-list > li {
    display: inline-block;
    text-align: left;
  }
}
/* ---------------------------------------------------------------

	05. キャンペーン特典

--------------------------------------------------------------- */
.emphasis-sec {
  padding: calc(min(7.8125vw, 80px) + min(5.859375vw, 60px)) 0 min(6.666666vw, 80px);
  background-color: #007ab8;
  clip-path: polygon(0 0, 50% min(7.8125vw, 80px), 100% 0, 100% 100%, 0 100%);
}

.emphasis-sec .partitionBoard {
  margin-top: min(4.88281vw, 50px);
}

@media only screen and (max-width: 750px) {
  .emphasis-sec {
    padding: 10.66666vw 0;
  }
}
@media only screen and (max-width: 750px) {
  .emphasis-sec .partitionBoard {
    margin-top: 8vw;
  }
}
/*.tokuten-lead {
  margin-top: min(7.8125vw, 80px); }
  @media only screen and (max-width: 750px) {
    .tokuten-lead {
      margin-top: 8vw; } }*/
.tokuten-lead .txt {
  text-align: center;
  font-size: min(3.125vw, 32px);
  font-weight: bold;
}

.tokuten-lead .present {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokuten-lead .present .icon {
  margin-right: 0.5em;
  padding-top: 0.5em;
  width: min(8.984375vw, 92px);
}

.tokuten-lead .present .tate {
  display: flex;
  flex-direction: column;
  padding-top: 0.2em;
  line-height: 1.1;
  width: 1em;
  text-align: center;
  font-size: min(2.5390625vw, 26px);
  font-weight: 800;
  color: #1e8f5b;
}

.tokuten-lead .present .num {
  margin: 0 0.05em 0 0.1em;
  letter-spacing: 0;
  line-height: 1;
  font-size: min(8.984375vw, 92px);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #1e8f5b;
}

.tokuten-lead .present .pp-txt {
  line-height: 1.2;
  font-size: min(2.5390625vw, 26px);
  font-weight: 800;
  color: #1e8f5b;
}

@media only screen and (max-width: 750px) {
  .tokuten-lead .txt {
    font-size: 4.2666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten-lead .present .icon {
    margin-right: 0.3em;
    width: 12.266666vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten-lead .present .tate {
    font-size: 3.466666vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten-lead .present .num {
    font-size: 12.266666vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten-lead .present .pp-txt {
    font-size: 3.466666vw;
  }
}
.color-box01 {
  margin-top: min(3.41796875vw, 35px);
  border-radius: min(1.953125vw, 20px);
  padding: min(6.54296875vw, 67px) min(8.49609375vw, 87px);
  background-color: #dcfae5;
}

.color-box01 .card-image {
  margin: 0 auto;
  width: min(33.3333333333vw, 400px);
}

.color-box01 .kome {
  margin-top: min(3.41796875vw, 35px);
}

@media only screen and (max-width: 750px) {
  .color-box01 {
    margin-top: 4vw;
    border-radius: 2.666666vw;
    padding: 8vw 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box01 .card-image {
    width: 71.46666vw;
  }
}
.tokuten01 {
  margin-top: min(3.41796875vw, 35px);
}

@media only screen and (max-width: 750px) {
  .tokuten01 {
    margin-top: 4vw;
  }
}
.tokuten02 {
  margin-top: min(3.41796875vw, 35px);
  /* border-top: solid 1px #1e8f5b; */
  padding-top: min(3.41796875vw, 35px);
}

@media only screen and (max-width: 750px) {
  .tokuten02 {
    margin-top: 4vw;
    padding-top: 4.8vw;
  }
}
.tokuten02_box1 {
  background-color: #fff;
  border-radius: 20px;
  margin: 20px 0 0;
  padding: 10px 15px 18px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .tokuten02_box1 {
    margin: 2.66vw 0 0;
    padding: 1.33vw 1.33vw 2.66vw;
    border-radius: 2.66vw;
  }
}
.tokuten02_box1_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.tokuten02_box1_txt {
  font-weight: bold;
  line-height: 1.3;
  font-size: 24px;
  margin-top: 13px;
}

@media only screen and (max-width: 1040px) {
  .tokuten02_box1_txt {
    font-size: 2.3vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten02_box1_txt {
    font-size: 3.2vw;
    margin-top: 2.66vw;
  }
}
.tokuten02_box1_txt span {
  font-size: 16px;
}

@media only screen and (max-width: 1040px) {
  .tokuten02_box1_txt span {
    font-size: 1.53vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten02_box1_txt span {
    font-size: 2.13vw;
  }
}
.tokuten02_box1_price {
  letter-spacing: 0;
  line-height: 1;
  font-size: 64px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #1e8f5b;
}

@media only screen and (max-width: 1040px) {
  .tokuten02_box1_price {
    font-size: 6.15vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten02_box1_price {
    font-size: 8.53vw;
  }
}
.tokuten02_box1_point {
  font-weight: 800;
  line-height: 1;
  font-size: 26px;
  color: #1e8f5b;
  margin-top: 15px;
}

@media only screen and (max-width: 1040px) {
  .tokuten02_box1_point {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten02_box1_point {
    font-size: 3.46vw;
  }
}
.tokuten03 {
  margin-top: min(3.41796875vw, 35px);
  /* border-top: solid 1px #1e8f5b */
  padding-top: min(3.41796875vw, 35px);
}

@media only screen and (max-width: 750px) {
  .tokuten03 {
    margin-top: 4vw;
    padding-top: 4.8vw;
  }
}
.tokuten04 {
  margin-top: min(3.41796875vw, 35px);
}

.tokuten_st1 {
  font-size: clamp(18px, 3.125vw, 30px);
  font-weight: bold;
  margin: 10px 0 0;
  text-align: center;
}

.tokuten_st1 .sup-txt,
.sup-txt {
  font-size: 0.6em;
  vertical-align: top;
}

@media only screen and (max-width: 750px) {
  .tokuten_st1 {
    font-size: 4.266666vw;
  }
  .tokuten_st1 .sp-font-s {
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .tokuten03 {
    margin-top: 4vw;
    padding-top: 4.8vw;
  }
}
.style01 {
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  font-weight: bold;
  line-height: 1.2;
}

.style01 > dt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  border-radius: min(3.125vw, 32px) min(3.125vw, 32px) 0 min(3.125vw, 32px);
  height: min(6.25vw, 64px);
  width: min(13.671875vw, 140px);
  background-color: #1e8f5b;
  text-align: center;
  font-size: clamp(16px, 2.9296875vw, 30px);
  color: #fff;
}

.style01 > dt .num {
  margin-left: 0.2em;
}

.style01 > dd {
  display: inline-flex;
  flex-direction: column;
  font-size: clamp(18px, 3.125vw, 32px);
}

.style01 > dd .sup-txt {
  font-size: 0.6em;
  vertical-align: top;
}

.style01 > dd .small-txt {
  font-size: 0.6em;
}

@media only screen and (max-width: 750px) {
  .style01 {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 750px) {
  .style01 > dt {
    border-radius: 4.266666vw 4.266666vw 0 4.266666vw;
    height: 8.533333vw;
    width: 18.66666vw;
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .style01 > dd {
    font-size: 4.266666vw;
  }
}
.tokuten02 .style01 > dd {
  width: min(37.5vw, 384px);
}

@media only screen and (max-width: 750px) {
  .tokuten02 .style01 > dd {
    width: 70%;
  }
}
.present-s {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: min(1.46484375vw, 15px);
}

.present-s .icon {
  padding-top: 0.5em;
  width: min(8.3984375vw, 86px);
}

.present-s .num {
  margin: 0 0.05em 0 0.1em;
  letter-spacing: 0;
  line-height: 1;
  font-size: min(8.3984375vw, 86px);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #1e8f5b;
}

.present-s .pp-txt {
  line-height: 1.2;
  font-size: min(2.5390625vw, 26px);
  font-weight: 800;
  color: #1e8f5b;
}

.present-s .txt_max {
  margin: 0 0 0 0.2em;
  line-height: 1.1;
  font-size: min(2.5390625vw, 26px);
  font-weight: 800;
  color: #1e8f5b;
}

@media only screen and (max-width: 750px) {
  .present-s {
    margin-top: 1.333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .present-s .icon {
    width: 11.4666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .present-s .num {
    font-size: 11.4666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .present-s .pp-txt {
    font-size: 3.2vw;
  }
}
.strongTxt.line-top {
  font-size: min(2.34375vw, 24px);
  border-top: 1px solid #e7e7e7;
  margin-top: min(3.90625vw, 40px);
  padding-top: min(3.90625vw, 40px);
}

@media only screen and (max-width: 750px) {
  .strongTxt.line-top {
    font-size: 4.266666vw;
  }
}
.present-more {
  margin-top: 3%;
  font-weight: bold;
  font-size: 2rem;
}

@media only screen and (max-width: 750px) {
  .present-more {
    margin-top: 3%;
    font-weight: bold;
    /*    font-size: 1rem;*/
    font-size: 4.266666vw;
  }
}
.color-box02 {
  margin-top: min(3.90625vw, 40px);
  border-radius: min(1.953125vw, 20px);
  padding-bottom: min(5.859375vw, 60px);
  background-color: #fbf1da;
}

.color-box02 > .inner {
  padding: min(6.54296875vw, 67px) min(8.49609375vw, 87px) min(3.90625vw, 40px);
}

.color-box02 .style01 > dt {
  background-color: #4b3f0d;
}

.color-box02 .style01 > dd {
  width: min(37.5vw, 384px);
  color: #4b3f0d;
}

.color-box02 .title03 {
  margin-top: min(5.859375vw, 60px);
  color: #4b3f0d;
}

.color-box02 .title03 > span::before, .color-box02 .title03 > span::after {
  background-color: #4b3f0d;
}

.color-box02 .present-image {
  position: relative;
  right: -0.5em;
  margin: min(1.953125vw, 20px) auto 0;
  width: min(49.51171875vw, 507px);
}

.color-box02 .present-txt {
  margin-top: min(2.9296875vw, 30px);
  font-size: min(1.7578125vw, 18px);
  color: #4b3f0d;
}

.color-box02 .inline-mark {
  margin: 0 0.2em;
  width: min(2.734375vw, 28px);
  vertical-align: -0.2em;
}

.color-box02 .kome {
  margin-top: min(1.953125vw, 20px);
}

.color-box02 .title04,
.color-box02 p,
.color-box02 dl {
  color: #4b3f0d;
}

@media only screen and (max-width: 750px) {
  .color-box02 {
    margin-top: 4vw;
    border-radius: 2.666666vw;
    padding-bottom: 8vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 > .inner {
    padding: 6.666666vw 4vw 8vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .style01 > dd {
    width: auto;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .title03 {
    margin-top: 6.666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .present-image {
    margin: 5.333333vw auto 0;
    width: 67.733333vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .present-txt {
    margin-top: 4vw;
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .inline-mark {
    width: 6.1333333vw;
    vertical-align: -0.25em;
  }
}
@media only screen and (max-width: 750px) {
  .color-box02 .kome {
    margin-top: 4vw;
  }
}
/* ご利用イメージ */
.use-image-box {
  margin-top: min(2.9296875vw, 30px);
  border-radius: min(1.953125vw, 20px);
  padding: min(3.90625vw, 40px) min(5.859375vw, 60px);
  background-color: #f5e8c9;
}

.use-image-box .use-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: content-box;
  border-top: solid 1px #dccfad;
  height: min(6.8359375vw, 70px);
  font-size: min(1.7578125vw, 18px);
  font-weight: bold;
}

.use-image-box .use-price:first-of-type {
  margin-top: min(2.5390625vw, 26px);
}

.use-image-box .use-price:last-of-type {
  border-bottom: solid 1px #dccfad;
}

.use-image-box .use-price > dt {
  display: flex;
  align-items: center;
}

.use-image-box .use-price > dd {
  padding-right: min(0.1953125vw, 2px);
}

.use-image-box .use-price > dd .num {
  vertical-align: -0.05em;
  font-size: min(2.1484375vw, 22px);
}

.use-image-box .use-price .icon-eat {
  margin: 0 min(2.05078125vw, 21px) 0 min(1.66015625vw, 17px);
  width: min(1.85546875vw, 19px);
}

.use-image-box .use-price .icon-subscription {
  margin: 0 min(0.97vw, 10px) 0 min(0.97vw, 10px);
  width: min(3.41796875vw, 35px);
}

.use-image-box .use-price .icon-smp {
  margin: 0 min(2.05078125vw, 21px) 0 min(1.46484375vw, 15px);
  width: min(2.1484375vw, 22px);
}

.use-image-box .kakeru {
  margin: min(1.46484375vw, 15px) auto 0;
  width: min(2.44140625vw, 25px);
}

.use-image-box .months-txt {
  text-align: center;
  font-size: min(2.34375vw, 24px);
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .use-image-box {
    margin-top: 4vw;
    border-radius: 2.666666vw;
    padding: 6.666666vw 4.8vw 4vw;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .use-price {
    line-height: 1.3;
    height: 13.333333vw;
    font-size: 3.4666666vw;
  }
  .use-image-box .use-price:first-of-type {
    margin-top: 4.8vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .use-price > dd .num {
    font-size: 3.733333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .use-price .icon-eat {
    margin: 0 4vw 0 2.1333333vw;
    width: 3.7333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .use-price .icon-subscription {
    margin: 0 2.1333333vw 0 0.2666666vw;
    width: 6.6666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .use-price .icon-smp {
    margin: 0 4vw 0 1.6vw;
    width: min(4.266666vw, 16px);
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .kakeru {
    margin: 2.666666vw auto 0;
    width: 4.2666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box .months-txt {
    font-size: 4.2666666vw;
  }
}
/* アコーディオン */
.toggleUnit.dokokani-byu--n {
  border-bottom: solid 1px #e1d6bb;
}

.toggleUnit.dokokani-byu--n .toggleUnit_btn {
  display: flex;
  align-items: center;
  position: relative;
  border-top: solid 1px #e1d6bb;
  padding: min(2.734375vw, 28px) min(8.7890625vw, 90px) min(2.734375vw, 28px) min(3.90625vw, 40px);
  width: 100%;
  line-height: 1.6;
  text-align: left;
  font-size: clamp(18px, 2.34375vw, 24px);
  font-weight: 600;
  color: #4b3f0d !important;
  cursor: pointer;
}

.toggleUnit.dokokani-byu--n .toggleUnit_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: min(2.44140625vw, 25px);
  width: min(3.90625vw, 40px);
  height: min(3.90625vw, 40px);
  background: url("/card/campaign/adm/shared/img/viewsuica/icon_circle_plus_brown.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.toggleUnit.dokokani-byu--n .toggleUnit_btn > img {
  pointer-events: none;
  margin-right: min(3.90625vw, 40px);
  width: min(11.9140625vw, 122px);
}

.toggleUnit.dokokani-byu--n .toggleUnit_btn.is-open {
  background-color: #f5e8c9;
}

.toggleUnit.dokokani-byu--n .toggleUnit_btn.is-open::after {
  background-image: url("/card/campaign/adm/shared/img/viewsuica/icon_circle_minus_brown.svg");
}

.toggleUnit.dokokani-byu--n .toggleUnit_body {
  padding: min(3.90625vw, 40px) min(8.7890625vw, 90px) min(6.8359375vw, 70px);
  font-size: min(1.7578125vw, 18px);
}

.toggleUnit.dokokani-byu--n .toggleUnit_body .title05 + p {
  margin-top: min(1.46484375vw, 15px);
}

@media only screen and (max-width: 750px) {
  .toggleUnit.dokokani-byu--n .toggleUnit_btn {
    padding: 4vw 12vw 4vw 4vw;
    line-height: 1.4;
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.dokokani-byu--n .toggleUnit_btn::after {
    right: 4vw;
    width: 5.333333vw;
    height: 5.333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.dokokani-byu--n .toggleUnit_btn > img {
    margin-right: 2.666666vw;
    width: 14.1333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.dokokani-byu--n .toggleUnit_body {
    padding: 5.333333vw 4vw 6.666666vw;
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.dokokani-byu--n .toggleUnit_body .title05 + p {
    margin-top: 1.333333vw;
  }
}
/* 例えば */
.example-box {
  margin-top: min(2.9296875vw, 30px);
  border-radius: min(1.953125vw, 20px);
  padding: min(3.90625vw, 40px) min(5.859375vw, 60px);
  background-color: #f5e8c9;
}

.example-box .example-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: content-box;
  border-top: solid 1px #dccfad;
  height: min(9.765625vw, 100px);
  font-size: min(1.7578125vw, 18px);
}

.example-box .example-item:first-of-type {
  margin-top: min(2.5390625vw, 26px);
}

.example-box .example-item:last-of-type {
  border-bottom: solid 1px #dccfad;
}

.example-box .example-item > dt {
  display: flex;
  align-items: center;
  padding-left: min(0.390625vw, 4px);
}

.example-box .example-item > dt > img {
  margin: 0 0 0 min(0.9765625vw, 10px);
  width: min(9.5703125vw, 98px);
}

.example-box .example-item > dt > .txt {
  margin-left: -0.2em;
}

.example-box .example-item > dd {
  width: min(8.7890625vw, 90px);
  line-height: 1.3;
  text-align: center;
  font-size: min(1.3671875vw, 14px);
}

.example-box .example-item > dd .num {
  font-size: min(2.1484375vw, 22px);
}

.example-box .example-item > dd.u-fontB .num {
  font-size: min(2.5390625vw, 26px);
}

@media only screen and (max-width: 750px) {
  .example-box {
    margin-top: 4vw;
    border-radius: 2.666666vw;
    padding: 6.666666vw 4.8vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item {
    height: 17.066666vw;
    font-size: 3.4666666vw;
  }
  .example-box .example-item:first-of-type {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dt {
    padding-left: 0.5333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dt > img {
    margin: 0 0 0 0.9765625vw;
    width: 18.666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dt > .txt {
    margin-left: 0;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dd {
    width: 14.666666vw;
    font-size: 2.666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dd .num {
    font-size: 3.733333vw;
  }
}
@media only screen and (max-width: 750px) {
  .example-box .example-item > dd.u-fontB .num {
    font-size: 4.266666vw;
  }
}
/* 吹き出し */
.balloon-top {
  box-sizing: border-box;
  position: relative;
  display: block;
  margin: min(2.9296875vw, 30px) auto 0;
  border-radius: min(0.9765625vw, 10px);
  border: solid 1px #4b3f0d;
  padding: min(2.44140625vw, 25px);
  width: min(43.5546875vw, 446px);
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  color: #4b3f0d;
}

.balloon-top .num {
  line-height: 1;
  vertical-align: -0.08em;
  font-size: min(2.734375vw, 28px);
}

.balloon-top::before {
  clip-path: polygon(50% 39%, 0% 100%, 100% 100%);
  content: "";
  position: absolute;
  top: -19px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  background-color: #f5e8c9;
  z-index: 2;
}

.balloon-top::after {
  clip-path: polygon(50% 39%, 0% 100%, 100% 100%);
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  background-color: #4b3f0d;
  z-index: 1;
}

@media only screen and (max-width: 750px) {
  .balloon-top {
    margin: 5.333333vw auto 0;
    border-radius: 2.666666vw;
    padding: 4vw 4.8vw;
    width: 100%;
    text-align: left;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .balloon-top .num {
    font-size: 4.2666666vw;
  }
}
.update-date {
  margin-top: min(2.9296875vw, 30px);
  text-align: right;
  font-size: min(1.171875vw, 12px);
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .update-date {
    font-size: 3.2vw;
    font-weight: normal;
  }
}
.box-item01 .features_card-szM {
  width: 1.9em;
  margin: 0 9px 0 1px;
  vertical-align: sub;
}
.box-item01 .features_card-szM img {
  display: inline-block;
  width: 1.9em;
  height: auto;
}
.box-item01 .features_txtLogo {
  display: inline-block;
  width: 3.9em;
  vertical-align: bottom;
}
@media (min-width: 751px) {
  .box-item01 .features_txtLogo {
    width: min(13.76953125vw, 141px);
  }
}
.box-item01 .emphasisTxt {
  color: #1e8f5b;
}
.box-item01 .emphasisTxtBig {
  font-size: 120%;
}
.box-item01 .division-szM {
  margin: 2vw 0;
}
@media print, screen and (min-width: 751px) {
  .box-item01 .division-szM .division-szM {
    margin: min(1.95vw, 20px) 0;
    margin: 0;
  }
}
.box-item01 .box-item01-img01 {
  width: 70%;
  height: auto;
  display: block;
  margin: auto;
}
.box-item01 .box-item01-inner {
  position: relative;
}
.box-item01 .box-item01-inner .numberingTitle_num {
  top: 0;
  font-size: 5.641025641vw;
}
@media (min-width: 751px) {
  .box-item01 .box-item01-inner .numberingTitle_num {
    top: 0;
    font-size: clamp(23px, 3.125vw, 32px);
  }
}

/* campaign_container
----------------------------------------- */
.campaign_container {
  padding: min(1.953125vw, 20px) 0;
}
@media only screen and (max-width: 750px) {
  .campaign_container {
    padding: 7vw 0 11vw;
  }
}

.campaign_contents {
  padding: 50px 0 70px;
}
@media only screen and (max-width: 750px) {
  .campaign_contents {
    padding: 0;
  }
}
.campaign_contents_head {
  width: min(100vw, 1200px);
  margin: 0 auto min(3.906vw, 40px);
}
.campaign_contents_body {
  margin: 0 auto;
  width: min(95.703125vw, 980px);
}
@media only screen and (max-width: 750px) {
  .campaign_contents_body {
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
    width: 100%;
  }
}

.features-card-sec {
  padding: min(1.953125vw, 20px) 0;
  background-color: #f5f6f7;
}
@media only screen and (max-width: 750px) {
  .features-card-sec {
    padding: 3.4666666vw 0;
  }
}

.standard_features {
  padding: 50px 0 0px;
}
.standard_features_body {
  margin: 0 auto;
  padding-bottom: min(7.8125vw, 80px);
  width: min(95.703125vw, 980px);
}
@media only screen and (max-width: 750px) {
  .standard_features_body {
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
    width: 100%;
  }
}
.standard_features_body .standard_features_tit {
  text-align: center;
  font-size: min(4vw, 48px);
  font-weight: bold;
  margin-bottom: 50px;
}
@media only screen and (max-width: 750px) {
  .standard_features_body .standard_features_tit {
    font-size: 6.933333vw;
    margin-bottom: 13.33vw;
    line-height: 1.4;
  }
}
.standard_features_body .standardOnly.partitionBoard {
  padding: min(6.0546875vw, 62px);
}
@media only screen and (max-width: 750px) {
  .standard_features_body .standardOnly.partitionBoard {
    padding: 6.667vw 4vw;
  }
}

.toggleUnit.section-type {
  border-bottom: solid 1px #d1d2d3;
}

.toggleUnit.section-type .toggleUnit_btn {
  border-top: solid 1px #d1d2d3;
  width: 100%;
  cursor: pointer;
}

.toggleUnit.section-type .toggleUnit_btn > .inner {
  pointer-events: none;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: min(2.05078125vw, 21px) min(8.7890625vw, 90px) min(2.05078125vw, 21px) 0;
  width: min(95.703125vw, 980px);
  min-height: min(19.53125vw, 200px);
  line-height: 1.6;
  text-align: left;
  font-size: clamp(24px, 4.6875vw, 42px);
  font-weight: 600;
}

.toggleUnit.section-type .toggleUnit_btn > .inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: min(5.859375vw, 60px);
  height: min(5.859375vw, 60px);
  background: url("/card/shared/img/icon_circle_plus_black.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.toggleUnit.section-type .toggleUnit_btn > .inner > img {
  margin-right: min(3.90625vw, 40px);
  width: min(15.13671875vw, 155px);
}

.toggleUnit.section-type .toggleUnit_btn.is-open {
  background-color: #e4e7e8;
}

.toggleUnit.section-type .toggleUnit_btn.is-open > .inner::after {
  background-image: url("/card/shared/img/icon_circle_minus_black.svg");
}

.toggleUnit.section-type .toggleUnit_body {
  margin: 0 auto;
  padding-bottom: min(7.8125vw, 80px);
  width: min(95.703125vw, 980px);
}

@media only screen and (max-width: 750px) {
  .toggleUnit.section-type .toggleUnit_btn > .inner {
    padding: 5.333333vw 16vw 5.333333vw 0;
    width: 100%;
    min-height: 33.333333vw;
    line-height: 1.4;
    font-size: 6.9333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.section-type .toggleUnit_btn > .inner::after {
    right: 5.333333vw;
    width: 8vw;
    height: 8vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.section-type .toggleUnit_btn > .inner > img {
    margin-left: 5.333333vw;
    margin-right: 5.333333vw;
    width: 20.533333vw;
  }
}
@media only screen and (max-width: 750px) {
  .toggleUnit.section-type .toggleUnit_body {
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
    width: 100%;
  }
}
.fcs-head {
  margin: min(6.8359375vw, 70px) auto 0;
  width: min(58.59375vw, 600px);
  text-align: center;
}

.fcs-head .singleBtn-c02 {
  margin-top: min(4.8828125vw, 50px);
}

@media only screen and (max-width: 750px) {
  .fcs-head {
    margin: 8vw auto 0;
    width: 92.266666vw;
  }
}
img.viewsuica_card {
  width: min(33.3333333333vw, 400px);
}

@media only screen and (max-width: 750px) {
  img.viewsuica_card {
    width: 71.466666vw;
  }
}
.introduce {
  margin-top: min(5.859375vw, 60px);
}

@media only screen and (max-width: 750px) {
  .introduce {
    margin-top: 10.6666666vw;
  }
}
.shopList {
  display: flex;
  flex-wrap: wrap;
}

.shopList_theme {
  width: 15vw;
  font-weight: 600;
}

.shopList_detail {
  width: calc(100% - 15vw);
}

.numberingTitle {
  position: relative;
  min-height: 9.2307692308vw;
  margin-bottom: 5.1282051282vw;
  padding-left: 13.0769230769vw;
  font-size: 5.641025641vw;
  font-weight: 600;
  line-height: 1.4;
}

.numberingTitle_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1.0256410256vw;
  left: 0;
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  padding: 0.6em 0 0.5em;
  border-radius: 50% 50% 0 50%;
  background: #222;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.text {
  font-size: clamp(13px, 4.1025641026vw, 31px);
  line-height: 1.8;
}

@media (min-width: 751px) {
  .shopList_theme {
    width: min(6.8359375vw, 70px);
  }
  .shopList_detail {
    width: calc(100% - min(6.8359375vw, 70px));
  }
  .modalContents {
    width: 95%;
    max-width: 1000px;
  }
  .subTxt {
    font-size: clamp(11px, 1.3671875vw, 14px);
  }
  .numberingTitle {
    min-height: min(5.6640625vw, 58px);
    font-size: clamp(23px, 3.125vw, 32px);
    padding-left: min(9.5703125vw, 98px);
  }
  .numberingTitle_num {
    top: -10px;
    width: min(6.640625vw, 68px);
    height: min(6.640625vw, 68px);
    padding: min(2.1484375vw, 22px) 0;
  }
  .text {
    font-size: clamp(13px, 1.7578125vw, 18px);
  }
}
.emphasisTxt {
  color: #13843c;
}

.emphasisTxtBig {
  font-size: 150%;
}

@media only screen and (max-width: 750px) {
  .scrollOkTxt {
    font-size: clamp(12px, 3.0769230769vw, 23px);
  }
  .scrollOkTxt::before {
    content: "";
    display: inline-block;
    margin-right: 2.5641025641vw;
    padding-top: 6.4102564103vw;
    width: 6.4102564103vw;
    background: url("/card/campaign/adm/shared/img/viewsuica/icon_scroll_hand.png") no-repeat 0 0;
    background-size: auto;
    background-size: cover;
    vertical-align: bottom;
  }
  .subTxt {
    font-size: clamp(12px, 3.0769230769vw, 23px);
  }
  .scrollContainer {
    overflow: auto;
    white-space: nowrap;
    margin-right: -7.6923076923vw;
    padding-right: 7.6923076923vw;
  }
  .scrollContainer_img {
    display: block;
    width: 115.3846153846vw;
  }
}
/* ---------------------------------------------------------------

	07. ポイント付与までの流れ

--------------------------------------------------------------- */
.point-flow-sec {
  padding: min(6.666666vw, 80px) 0;
}

.point-flow-sec .inner {
  padding: 0 min(9.765625vw, 100px);
}

.point-flow-sec .flow-box:first-of-type {
  margin-top: min(7.8125vw, 80px);
}

.point-flow-sec .flow-box.dotline {
  background-image: url("/card/campaign/adm/shared/img/dotline.png");
  background-repeat: repeat-y;
  background-size: 4px auto;
  background-position: min(3.22265625vw, 33px) 0;
}

.point-flow-sec .flow-box .flow-cont {
  margin-left: min(9.5703125vw, 98px);
  padding: min(5.859375vw, 60px) 0 min(7.8125vw, 80px);
  width: min(66.40625vw, 680px);
  font-size: min(1.7578125vw, 18px);
}

.point-flow-sec .period-box.sp-column:first-of-type {
  margin-top: min(3.90625vw, 40px);
}

.point-flow-sec .period-box.sp-column > dt {
  width: min(18.5546875vw, 190px);
}

.point-flow-sec .pf-btn {
  margin: min(5.859375vw, 60px) auto 0;
  width: min(44.921875vw, 460px);
}

.point-flow-sec .caution-list {
  margin-top: 0.8em;
  margin-left: min(9.5703125vw, 98px);
}

.point-flow-sec .compartment {
  margin-top: min(3.90625vw, 40px);
}

@media only screen and (max-width: 750px) {
  .point-flow-sec {
    padding: 13.333333vw 0;
  }
  .point-flow-sec > .content {
    padding-left: 2.666666vw;
    padding-right: 5.3333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .inner {
    padding: 0;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .flow-box:first-of-type {
    margin-top: 10.666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .flow-box.dotline {
    background-size: 3px auto;
    background-position: 4.5333333vw 0;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .flow-box .flow-cont {
    margin-left: 12vw;
    padding: 9.3333333vw 0 14.666666vw;
    width: auto;
    font-size: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box > dt {
    width: 30.4vw !important;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box.sp-column {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box.sp-column:first-of-type {
    margin-top: 5.333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box.sp-column > dt {
    margin-left: 0;
    margin-right: calc(100% - 30.1333333vw);
    border-radius: 4.2666666vw 4.2666666vw 4.2666666vw 0;
    height: 8.533333vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box.sp-column > dd:first-of-type {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .period-box.sp-column > dd {
    margin-top: 1.3333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .pf-btn {
    margin: 9.333333vw auto 0;
    width: 80vw;
  }
}
@media only screen and (max-width: 750px) {
  .point-flow-sec .caution-list {
    margin-left: 12vw;
  }
}
.txt-link-list {
  margin-top: min(2.5390625vw, 26px);
  text-align: center;
  font-size: min(1.3671875vw, 14px);
}

.txt-link-list > li {
  display: inline-block;
  margin-right: 2em;
}

.txt-link-list > li:last-of-type {
  margin-right: 0;
}

@media only screen and (max-width: 750px) {
  .txt-link-list {
    margin-top: 5.333333vw;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .txt-link-list > li {
    margin-right: 1em;
  }
}
img.card-use {
  width: min(23.4375vw, 240px);
}

img.point-get {
  width: min(30.46875vw, 312px);
}

@media only screen and (max-width: 750px) {
  img.card-use {
    width: 40vw;
  }
}
@media only screen and (max-width: 750px) {
  img.point-get {
    width: 53.333333vw;
  }
}
.use-image-box2 {
  margin-top: min(3.90625vw, 40px);
  border-radius: min(1.953125vw, 20px);
  border: solid 3px #e7e7e7;
  padding: min(3.90625vw, 40px) min(5.859375vw, 60px);
  font-size: min(1.5625vw, 16px);
}

.use-image-box2 .up-box {
  position: relative;
  margin-top: min(2.44140625vw, 25px);
  border-radius: min(1.953125vw, 20px);
  padding: min(3.41796875vw, 35px) min(5.859375vw, 60px);
  background-color: #e9f7f1;
}

.use-image-box2 .up-box.fukidashi {
  margin-bottom: min(3.90625vw, 40px);
}

.use-image-box2 .up-box.fukidashi::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0 auto;
  width: min(11.71875vw, 120px);
  height: min(3.90625vw, 40px);
  background-color: #e9f7f1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.use-image-box2 .up-box .use-family {
  border-radius: min(1.953125vw, 20px);
  background-color: #c6eadb;
  margin-top: min(2.44140625vw, 25px);
  margin-bottom: min(0.9765625vw, 10px);
  padding: min(1.953125vw, 20px) min(2.44140625vw, 25px);
}

@media only screen and (max-width: 750px) {
  .use-image-box2 .up-box .use-family {
    margin-top: 4vw;
    margin-bottom: 2vw;
    border-radius: 2.6666666vw;
    padding: 3vw 3.5vw;
  }
}
.use-image-box2 .use-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: content-box;
  border-top: solid 1px #cbd7d2;
  height: min(6.8359375vw, 70px);
  font-size: min(1.7578125vw, 18px);
  font-weight: bold;
}

.use-image-box2 .use-price:first-of-type {
  margin-top: min(2.5390625vw, 26px);
}

.use-image-box2 .use-price:last-of-type {
  border-bottom: solid 1px #cbd7d2;
}

.use-image-box2 .use-price > dt {
  display: flex;
  align-items: center;
}

.use-image-box2 .use-price > dd {
  padding-right: min(0.1953125vw, 2px);
}

.use-image-box2 .use-price > dd .num {
  vertical-align: -0.05em;
  font-size: min(2.1484375vw, 22px);
}

.use-image-box2 .use-price .icon-smp {
  margin: 0 min(2.05078125vw, 21px) 0 min(1.46484375vw, 15px);
  width: min(2.1484375vw, 22px);
}

.use-image-box2 .use-price .icon-eat {
  margin: 0 min(2.05078125vw, 21px) 0 min(1.66015625vw, 17px);
  width: min(1.85546875vw, 19px);
}

.use-image-box2 .use-price .icon-pay {
  margin: 0 min(1.85546875vw, 20px) 0 min(1.26953125vw, 15px);
  width: min(2.1484375vw, 22px);
}

.use-image-box2 .use-price .icon-subscription {
  margin: 0 min(0.97vw, 10px) 0 min(0.97vw, 10px);
  width: min(3.41796875vw, 35px);
}

.use-image-box2 .use-price .icon-commuter,
.use-image-box2 .use-price .icon-suica {
  margin: 0 min(1.171875vw, 12px) 0 min(0.9765625vw, 10px);
  width: min(3.125vw, 35px);
}

.use-image-box2 .kakeru {
  margin: min(1.46484375vw, 15px) auto 0;
  width: min(2.44140625vw, 25px);
}

.use-image-box2 .months-txt {
  text-align: center;
  font-size: min(2.34375vw, 24px);
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .use-image-box2 {
    margin-top: 8vw;
    border-radius: 4.2666666vw;
    padding: 5.333333vw 4.8vw;
    font-size: 3.4666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .up-box {
    margin-top: 4vw;
    border-radius: 2.6666666vw;
    padding: 5.333333vw 4vw 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .up-box.fukidashi {
    margin-bottom: 5.3333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .up-box.fukidashi::after {
    width: 16vw;
    height: 5.3333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price {
    height: 13.333333vw;
    font-size: 3.466666vw;
  }
  .use-image-box2 .use-price:first-of-type {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price > dd {
    padding-right: 0;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price > dd .num {
    font-size: 3.733333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-smp {
    margin: 0 3.733333vw 0 1.3333333vw;
    width: 4.2666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-eat {
    margin: 0 3.733333vw 0 1.6vw;
    width: 3.7333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-pay {
    margin: 0 3.2vw 0 1.6vw;
    width: 4.2666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-subscription {
    margin: 0 2.1333333vw 0 0.2666666vw;
    width: 6.6666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-commuter {
    margin: 0 1.26953125vw 0 0.2666666vw;
    width: 6.6666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .use-price .icon-suica {
    margin: 0 1.26953125vw 0 0.2666666vw;
    width: 6.6666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .kakeru {
    margin: 2.666666vw auto 0;
    width: 4.2666666vw;
  }
}
@media only screen and (max-width: 750px) {
  .use-image-box2 .months-txt {
    font-size: 3.4666666vw;
  }
}
/* ---------------------------------------------------------------

	08. カードのお申込み（流用パーツ含む）

--------------------------------------------------------------- */
.cardDetail > .content > .inner {
  padding: min(7.8125vw, 80px) 0;
}

@media only screen and (max-width: 750px) {
  .cardDetail > .content > .inner {
    padding: 13.333333vw 0;
  }
}
.carddetail_card {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 10px auto;
}

@media only screen and (max-width: 750px) {
  .carddetail_card {
    width: 87%;
    height: auto;
    margin-bottom: 0;
    margin-top: 8px;
  }
}
.cardType_note {
  padding: 0 0 30px !important;
}

.cardType_note .tit1 {
  font-size: min(2.34375vw, 24px);
}

@media only screen and (max-width: 750px) {
  .cardType_note .tit1 {
    font-size: 4.2vw;
  }
}
.cardType_balloon {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 3.0769230769vw;
  margin-bottom: 3.5vw;
  border: 1px solid #222;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

.cardType_balloon::before,
.cardType_balloon::after {
  position: absolute;
  bottom: -2.8205128205vw;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.8205128205vw 2.3076923077vw 0 2.3076923077vw;
  border-color: #222 transparent transparent transparent;
  content: "";
}

.cardType_balloon::after {
  margin-bottom: 1px;
  border-color: #fff transparent transparent transparent;
}

.cardType_balloon div {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: min(1.02vw, 10px);
}

@media only screen and (max-width: 750px) {
  .cardType_balloon div {
    display: block;
  }
}
.cardType_balloon div + div {
  margin-top: min(1.02vw, 10px);
  padding-top: min(1.02vw, 10px);
  border-top: 1px solid #e7e7e7;
}

@media only screen and (max-width: 750px) {
  .cardType_balloon div + div {
    margin-top: 2.66vw;
    padding-top: 2.66vw;
  }
}
.cardType_balloon div figure {
  width: 33%;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .cardType_balloon div figure {
    width: auto;
  }
}
.cardType_balloon div figure img {
  height: min(4.08vw, 40px);
  width: auto;
}

@media only screen and (max-width: 750px) {
  .cardType_balloon div figure img {
    height: 8vw;
  }
}
.cardType_balloon div p {
  width: 57%;
  font-size: min(1.83vw, 18px);
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .cardType_balloon div p {
    width: auto;
    font-size: 3.2vw;
    text-align: center;
  }
}
.cardType_name {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2564102564vw;
  font-size: clamp(11px, 3.5897435897vw, 25px);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.cardType_imgcard img {
  width: 66.66vw;
  height: auto;
  margin-bottom: 1.33vw;
}

.cardType_btn {
  box-shadow: none;
  padding-top: min(1.83vw, 18px);
  padding-bottom: min(1.83vw, 18px);
}

@media only screen and (max-width: 750px) {
  .cardType_name {
    height: 4.8em;
  }
  .cardType_btn {
    font-size: clamp(12px, 3.0769230769vw, 23px);
    line-height: 1.2;
  }
  .cardType_btn[target=_blank]::after {
    right: 2.0512820513vw;
    background-size: 2.0512820513vw auto;
  }
}
@media print, screen and (min-width: 751px) {
  .cardType_balloon {
    padding: min(2.55vw, 25px) min(3.57vw, 35px);
    margin-bottom: min(1.3vw, 18px);
    border-radius: 16px;
  }
  .cardType_balloon::before,
  .cardType_balloon::after {
    bottom: clamp(-10px, -0.9765625vw, -7px);
    border-width: min(1.07421875vw, 11px) min(0.87890625vw, 9px) 0 min(0.87890625vw, 9px);
  }
  .cardType_name {
    margin-bottom: min(0.09765625vw, 1px);
    font-size: clamp(13px, 1.7578125vw, 18px);
  }
  .cardType_imgcard img {
    width: min(45.91vw, 450px);
    height: auto;
    margin-bottom: min(1.53vw, 15px);
  }
}
/* 吹き出し */
.balloon-bottom {
  box-sizing: border-box;
  position: relative;
  display: block;
  margin: min(6.8359375vw, 70px) auto min(3.515625vw, 36px);
  border-radius: min(1.46484375vw, 15px);
  border: solid 1px #d80000;
  padding: min(3.41796875vw, 35px);
  width: min(83.984375vw, 860px);
  text-align: center;
  line-height: 1.6;
  font-size: min(1.7578125vw, 18px);
}

.balloon-bottom::before {
  clip-path: polygon(50% 100%, 0% 50%, 100% 50%);
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -10px;
  width: 26px;
  height: 32px;
  background-color: #fff;
  z-index: 2;
}

.balloon-bottom::after {
  clip-path: polygon(50% 100%, 0% 50%, 100% 50%);
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -10px;
  width: 26px;
  height: 32px;
  background-color: #d80000;
  z-index: 1;
}

@media only screen and (max-width: 750px) {
  .balloon-bottom {
    margin: 9.3333333vw auto 6.6666666vw;
    border-radius: 2.6666666vw;
    padding: 5.3333333vw;
    width: 100%;
    font-size: 3.7333333vw;
  }
}
.cardDetailTable thead th {
  background-color: #fff;
}

.cardDetailTable .td-left-border {
  border-left: 1px solid #ddd;
}

.cardDetailTable .cardType {
  padding: 0 1.2820512821vw 7.6923076923vw;
  vertical-align: top;
}

.cardDetailTable .cardType:first-child {
  padding-left: 0;
  padding-right: 2.5641025641vw;
}

.cardDetailTable .cardType:last-child {
  padding-left: 2.5641025641vw;
  padding-right: 0;
}

.cardDetailTable .cardType .singleBtnHolder_item {
  min-width: 100%;
}

.cardDetailTable .cardType .cardType_name {
  margin-bottom: min(0.9765625vw, 10px);
  border-radius: min(0.9765625vw, 10px);
  padding: min(2.44140625vw, 25px) min(0.48828125vw, 5px);
  background-color: #f5f6f7;
  line-height: 1.3;
  font-size: min(2.34375vw, 24px);
}

.cardDetailTable .cardType .cardType_name .hosoku {
  font-size: min(1.953125vw, 20px);
}

.cardDetailTable .adjust3col {
  padding: 5.1282051282vw 0;
}

.cardDetailTable .adjust3col:not(:first-child) {
  position: relative;
}

.cardDetailTable .adjust3col:not(:first-child)::before {
  position: absolute;
  top: 5.1282051282vw;
  left: 0;
  width: 1px;
  height: calc(100% - 10.2564102564vw);
  background: #e8e8e8;
  content: "";
}

@media (min-width: 751px) {
  .cardDetailTable .cardType {
    padding: 0 min(0.48828125vw, 5px) min(3.41796875vw, 35px);
  }
  .cardDetailTable .cardType:first-child {
    padding-left: 0;
    padding-right: min(0.9765625vw, 10px);
  }
  .cardDetailTable .cardType:last-child {
    padding-left: min(0.9765625vw, 10px);
    padding-right: 0;
  }
}
@media only screen and (max-width: 750px) {
  .cardDetailTable .cardType .cardType_name {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 2.6666666vw;
    padding: 4vw 2.1333333vw;
    width: 100%;
    height: 22.9333333vw;
    font-size: 3.7333333vw;
  }
}
@media only screen and (max-width: 750px) {
  .cardDetailTable .cardType .cardType_name .hosoku {
    font-size: 3.2vw;
  }
}
@media (min-width: 751px) {
  .cardDetailTable .adjust3col {
    padding: min(2.44140625vw, 25px) 0;
  }
  .cardDetailTable .adjust3col:not(:first-child) {
    position: relative;
  }
  .cardDetailTable .adjust3col:not(:first-child)::before {
    top: min(2.44140625vw, 25px);
    height: calc(100% - min(4.8828125vw, 50px));
  }
}
@media only screen and (max-width: 750px) {
  .cardType_btn {
    padding: 1.7948717949vw 1.5384615385vw 1.7948717949vw 0;
    line-height: 1.2;
    font-size: 3.2vw !important;
  }
}
@media only screen and (max-width: 750px) {
  .cardType_btn[target=_blank]::after {
    right: 2.0512820513vw;
    background-size: 2.0512820513vw auto;
  }
}
.cardDetailTable2 {
  margin: 40px 0 0;
}

@media only screen and (max-width: 750px) {
  .cardDetailTable2 {
    margin: 30px 0 0;
  }
}
.cardDetailTable2 td {
  padding: 10px !important;
}

.cardDetailTable2 td .cardDetailLogos2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

.cardDetailTable2 td .cardDetailLogos2 li {
  width: 8%;
}

@media only screen and (max-width: 750px) {
  .cardDetailTable2 td .cardDetailLogos2 li {
    width: 20%;
  }
}
.cardDetailLogos_item {
  text-align: center;
}

.cardDetailLogo-suica,
.cardDetailLogo-jrepoint {
  margin: 0 auto;
}

.cardDetailLogo-wifi {
  width: 22.5px;
  display: block;
  margin: 0 auto;
}

.cardDetailLogo-viewcard {
  width: 55px;
  display: block;
  margin: 15px auto;
}

.cardDetail_division + .cardDetail_division {
  margin-top: 10.2564102564vw;
}

.cardDetailTable {
  border-width: 0;
  background: #fff;
  table-layout: fixed;
}

.cardDetailTable th,
.cardDetailTable td {
  border: none;
}

.cardDetailTable th {
  padding: 1.7948717949vw 5.1282051282vw 1.5384615385vw;
  border-radius: 10px;
  background: #f5f6f7;
  text-align: center;
  font-size: 4.26666666vw;
  font-weight: 600;
}

.cardDetailTable td {
  padding: 5.1282051282vw 5.1282051282vw 7.6923076923vw;
  font-size: clamp(13px, 4.1025641026vw, 31px);
  line-height: 1.8;
}

[class^=cardDetailLogo-] {
  display: block;
  padding: 0 1.0256410256vw;
  box-sizing: content-box;
}

.cardDetailLogo-jcb {
  width: 10.2564102564vw;
}

.cardDetailLogo-visa {
  width: 10.2564102564vw;
}

.cardDetailLogo-suica {
  width: 32.3076923077vw;
}

.cardDetailLogo-jrepoint {
  width: 12.8205128205vw;
}

.cardDetailLogo-viewcard {
  width: 10.2564102564vw;
}

.cardDetailLogo-contactless {
  width: 6.4102564103vw;
}

.cardDetailLogo-bic {
  width: 10.7692307692vw;
}

.cardDetailBadge {
  display: inline-block;
  padding: 1.0256410256vw 2.5641025641vw 1.5384615385vw;
  border: 1px solid #222;
  border-radius: 999px;
  text-align: center;
  font-size: clamp(13px, 4.1025641026vw, 31px);
  line-height: 1;
}

.cardDetailNote {
  text-align: center;
}

.cardDetailNote_theme {
  margin-bottom: 0.2em;
  font-weight: 600;
}

.cardDetailNote_detail:not(:last-child) {
  margin-bottom: 1em;
}

.cardDetailNotice {
  margin-top: 6.6666666667vw;
}

.cardDetailNotice_item {
  position: relative;
  padding-left: 1.6em;
}

.cardDetailNotice_item::before {
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1.2em;
  height: 1em;
  font-size: clamp(10px, 2.5641025641vw, 19px);
  content: "※";
}

.cardDetailNotice_item:not(:first-child) {
  margin-top: 0.5em;
}

.cardDetailLogos_card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.international_brand ul {
  margin-bottom: 4vw;
}

.international_brand p {
  text-indent: -1em;
  padding-left: 1em;
}

@media (min-width: 751px) {
  .cardDetail_division + .cardDetail_division {
    margin-top: min(4.8828125vw, 50px);
  }
  .cardDetailTable th {
    padding: min(1.07421875vw, 11px) min(1.953125vw, 20px);
    font-size: clamp(11px, 1.3671875vw, 14px);
  }
  .cardDetailTable td {
    padding: min(2.44140625vw, 25px) min(1.953125vw, 20px) min(3.22265625vw, 33px);
    font-size: clamp(12px, 1.5625vw, 16px);
    line-height: 2;
  }
  .cardDetailLogos {
    margin: min(0.5859375vw, 6px) 0;
  }
  .cardDetailLogos_item {
    margin: 0 min(1.46484375vw, 15px);
  }
  [class^=cardDetailLogo-] {
    padding: 0 min(0.5859375vw, 6px);
  }
  .international_brand ul {
    margin-bottom: 0;
  }
  .international_brand p {
    margin-top: 20px;
    text-align: center;
  }
  .international_brand p + p {
    margin-top: 0;
  }
  .cardDetailLogo-jcb {
    width: min(4.4921875vw, 46px);
  }
  .cardDetailLogo-visa {
    width: min(4.4921875vw, 70px);
  }
  .cardDetailLogo-mc {
    width: min(4.4921875vw, 46px);
  }
  .cardDetailLogo-suica {
    width: min(12.3046875vw, 126px);
  }
  .cardDetailLogo-jrepoint,
  .cardDetailLogo-viewcard,
  .cardDetailLogo-bic {
    width: min(4.8828125vw, 50px);
  }
  .cardDetailLogo-contactless {
    width: min(2.44140625vw, 25px);
  }
  .cardDetailBadge {
    padding: min(0.5859375vw, 6px) min(0.9765625vw, 10px);
    font-size: clamp(12px, 1.5625vw, 16px);
  }
  .cardDetailNotice {
    margin-top: min(2.1484375vw, 22px);
  }
  .cardDetailNotice_item {
    padding-left: 1.5em;
    font-size: clamp(12px, 1.5625vw, 16px);
    line-height: 1.7;
  }
  .cardDetailNotice_item::before {
    font-size: clamp(10px, 0.9765625vw, 10px);
  }
}
@media only screen and (max-width: 750px) {
  .cardDetailLogo-suica {
    width: 20vw;
  }
}
/* ---------------------------------------------------------------

	09. 注意事項

--------------------------------------------------------------- */
.precautions-sec {
  padding: min(6.666666vw, 80px) 0;
  background-color: #f5f6f7;
}

.precautions-sec .content > .inner {
  margin: 0 auto;
  width: min(76.171875vw, 780px);
}

.precautions-sec .precautions-list {
  margin-top: min(6.34765625vw, 65px);
  padding-left: 1em;
}

.precautions-sec .precautions-list > li {
  text-indent: -1em;
}

.precautions-sec .textLinkIco-blank {
  margin-left: 0.5em !important;
}

@media only screen and (max-width: 750px) {
  .precautions-sec {
    padding: 13.333333vw 0;
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 750px) {
  .precautions-sec .content > .inner {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  .precautions-sec .precautions-list {
    margin-top: 8vw;
  }
}
.copyright-txt {
  margin-top: min(2.9296875vw, 30px);
  font-size: min(0.9765625vw, 10px);
  color: #666;
}

@media only screen and (max-width: 750px) {
  .copyright-txt {
    margin-top: 4vw;
    font-size: 2.66666666vw;
  }
}
.strongTxt {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 600;
}

@media only screen and (max-width: 750px) {
  .strongTxt {
    font-size: 4.8vw;
  }
}
.u-paragraph {
  margin-top: 1rem !important;
}

/* ---------------------------------------------------------------

	10. SP用エントリーボタン（フロート要素）

--------------------------------------------------------------- */
@media only screen and (max-width: 750px) {
  .spFlowEntry {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 3.8461538462vw 3.8461538462vw;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
  }
  .spFlowEntry_btn {
    display: block;
    position: relative;
    padding: 3vw 9.2307692308vw 3.7vw 20vw !important;
    line-height: 1.3;
    font-size: clamp(14px, 4.358974359vw, 33px);
  }
  .spFlowEntry_btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 17vw;
    border-radius: 2px;
    padding-top: 6.4102564103vw;
    width: 10.2564102564vw;
    background: url("/card/campaign/adm/shared/img/viewcardstandard/card_vcstandard_jcb.png") no-repeat 50% 50%;
    background-size: cover;
    transform: translateY(-50%);
  }
  .globalFooter_bottom {
    padding-bottom: 33.3333333333vw;
  }
  .pagetopBtn {
    bottom: 26.1538461538vw;
  }
}
.features_card-szS {
  display: inline-block;
  padding-bottom: 0.1em;
  vertical-align: middle;
  width: 8.4615384615vw;
  margin-right: 6px;
}

@media print, screen and (min-width: 751px) {
  .features_card-szS {
    width: 2.56em;
    margin: 0 3px;
  }
}
.card01 {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.division-szL {
  margin: 12.8205128205vw 0;
}

@media print, screen and (min-width: 751px) {
  .division-szL {
    margin: min(5.859375vw, 60px) 0 0;
  }
}
.imagesLyt.risk_management01 {
  margin: 8vw 0 0;
}

@media print, screen and (min-width: 751px) {
  .imagesLyt.risk_management01 {
    margin: min(3.90625%, 40px) 0 0;
  }
}
/* ---------------------------------------------------------------

	10. アコーディオンデザイン箇所追記

--------------------------------------------------------------- */
.ac-box {
  border: dotted #222;
  border-width: 1.5px 0 0 0;
}

.ac-box .ac-box-st {
  font-weight: 600;
  text-align: center;
  padding: 20px 0 0;
  font-size: 18px;
}

.offpeak_img {
  border-bottom: 1px dotted #222;
  padding-bottom: 40px;
}

.ac-contents {
  margin-bottom: 20px;
}

.ac-contents > * {
  margin-top: 20px;
  font-size: 16px;
}

@media only screen and (max-width: 750px) {
  .ac-box {
    border-width: 0.4vw 0 0 0;
  }
  .ac-box .ac-box-st {
    padding: 5.33vw 0 0;
    font-size: 4.8vw;
  }
  .offpeak_img {
    padding-bottom: 10.66vw;
  }
  .ac-contents {
    margin-bottom: 5.33vw;
  }
  .ac-contents > * {
    margin-top: 5.33vw;
    font-size: 4.26vw;
  }
}

.announce {
  width: min(92vw, 1080px);
  margin: min(2.5vw, 20px) auto min(3.333vw, 30px);
}
.announce p{
  color: #E6006D;
  background-color:#D0F1F8;
  border-radius: 15px;
  padding: 15px 10px;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .announce{
    width:auto;
    margin: 4.3333333333vw auto;
    padding-left:3.8461538462vw;
    padding-right:3.8461538462vw;
  }
  .announce p{
    font-size: 4.8vw;
  }
}

.lead_catch {
  width: min(90vw, 1080px);
  margin: min(2.5vw, 30px) auto min(3.333vw, 40px);
  display: flex;
  justify-content: space-between;
}
.lead_catch img {
  width: min(32.5vw, 390px);
  height: auto;
}
.lead_catch p {
  font-size: min(2.416vw, 29px);
  font-weight: 600;
  line-height: 1.6;
}
.lead_catch p .small {
  font-size: min(1.5vw, 18px);
  margin-left: min(-0.416vw, -5px);
}
.lead_catch ul {
  margin-top: min(1.666vw, 20px);
}

@media only screen and (max-width: 750px) {
  .lead_catch {
    width: auto;
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
    margin: 5.3333333333vw auto;
    display: block;
  }
  .lead_catch img {
    width: 74.6666666667vw;
    height: auto;
    display: block;
    margin: 4vw auto 0;
  }
  .lead_catch p {
    font-size: 4.8vw;
    line-height: 1.5;
  }
  .lead_catch p .small {
    font-size: 2.9333333333vw;
    margin-left: -0.8vw;
  }
  .lead_catch ul {
    margin-top: 2.6666666667vw;
  }
}
/* stepList_sokuji
----------------------------------------- */
.stepList_sokuji_wrapper {
  background-color: #f5f6f7;
  padding-top: min(2.083vw, 25px);
  padding-bottom: min(10.7421875vw, 110px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - min(7.8125vw, 80px)), 0 100%);
}

.stepList_sokuji {
  margin-top: min(3vw, 36px);
  display: flex;
  justify-content: center;
  gap: min(2.083vw, 25px);
}
.stepList_sokuji_item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 min(0.416vw, 5px) min(1.333vw, 16px) 0 rgba(0, 0, 0, 0.09);
  border-radius: 30px;
  background-color: #fff;
  width: min(30vw, 360px);
  box-sizing: border-box;
  padding: min(2.083vw, 25px) min(2.5vw, 30px) 0;
}
.stepList_sokuji_item::before {
  display: block;
  order: 2;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_first.png) no-repeat 50% 50%;
  background-size: contain;
  content: "";
}
.stepList_sokuji_item:not(:first-child) {
  margin-top: 0;
}
.stepList_sokuji_item:nth-of-type(2)::before {
  background-image: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_second.png);
}
.stepList_sokuji_item:nth-of-type(3)::before {
  background-image: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_third.png);
}

.stepNote_sokuji {
  font-weight: 600;
  width: auto;
  margin-left: 0;
  font-size: clamp(21px, 2.333vw, 28px);
}
.stepNote_sokuji.stepNote_small {
  font-size: min(1.75vw, 21px);
}
.stepNote_sokuji_num {
  display: flex;
  justify-content: center;
  border: 1px solid #222;
  border-radius: 999px 999px 999px 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  width: min(10.333vw, 124px);
  margin: 0 0 min(1.25vw, 15px);
  padding: min(1.25vw, 15px) 0 min(0.916vw, 11px);
  font-size: clamp(18px, 2vw, 24px);
}

@media only screen and (max-width: 750px) {
  .stepList_sokuji_wrapper {
    padding: 5px 3.8461538462vw 6vw;
  }
  .stepList_sokuji {
    margin-top: 5.3333333333vw;
    display: block;
  }
  .stepList_sokuji_item {
    border-radius: 4vw;
    width: 74.6666666667vw;
    padding: 4.8vw 4.8vw 2.6666666667vw;
    margin: 5.3333333333vw auto 0;
  }
  .stepList_sokuji_item::before {
    display: block;
    order: 2;
    width: 34.6666666667vw;
    height: 34.6666666667vw;
    margin: 0 auto;
    background: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_first.png) no-repeat 50% 50%;
    background-size: contain;
    content: "";
  }
  .stepList_sokuji_item:not(:first-child) {
    margin-top: 5.3333333333vw;
  }
  .stepList_sokuji_item:nth-of-type(2)::before {
    background-image: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_second.png);
  }
  .stepList_sokuji_item:nth-of-type(3)::before {
    background-image: url(/card/campaign/adm/shared/img/viewcardstandard_sokuji/img_step_virtual_third.png);
  }
  .stepNote_sokuji {
    font-size: 4.2666666667vw;
  }
  .stepNote_sokuji br {
    display: none;
  }
  .stepNote_sokuji.stepNote_small {
    font-size: 4.2666666667vw;
  }
  .stepNote_sokuji_num {
    width: 21.3333333333vw;
    margin: 0 0 1.3333333333vw;
    padding: 2.1333333333vw 0 1.6vw;
    font-size: 3.7333333333vw;
  }
}
/* 最短7日で発行！申込みは3STEP！
----------------------------------------- */
.stepList {
  margin-top: 3vw;
  margin-bottom: 4vw;
}

.stepList_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stepList_item::before {
  display: block;
  width: 30.7692307692vw;
  height: 30.7692307692vw;
  background: url(/card/campaign/adm/shared/img/viewcardstandard/img_step_first.png) no-repeat 50% 50%;
  background-size: cover;
  content: "";
}

.stepList_item:not(:first-child) {
  margin-top: 2.5641025641vw;
}

.stepList_item:nth-of-type(2)::before {
  background-image: url(/card/campaign/adm/shared/img/viewcardstandard/img_step_second.png);
}

.stepList_item:nth-of-type(3)::before {
  background-image: url(/card/campaign/adm/shared/img/viewcardstandard/img_step_third.png);
}

.stepNote {
  width: 46.1538461538vw;
  font-size: clamp(16px, 5.1282051282vw, 38px);
  font-weight: 600;
}

.stepNote_num {
  display: flex;
  justify-content: center;
  width: 21.5384615385vw;
  margin: 1.7948717949vw 0 3.0769230769vw;
  padding: 2.0512820513vw 0 1.2820512821vw;
  border: 1px solid #222;
  border-radius: 999px 999px 999px 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 4.6153846154vw, 35px);
  line-height: 1;
}

@media print, screen and (min-width: 751px) {
  .stepList {
    display: grid;
    justify-content: center;
  }
  .stepList_item::before {
    width: min(19.53125vw, 200px);
    height: min(19.53125vw, 200px);
    margin-left: min(0.9765625vw, 10px);
  }
  .stepList_item:not(:first-child) {
    margin-top: min(1.953125vw, 20px);
  }
  .stepNote {
    width: min(25.390625vw, 260px);
    margin-left: min(0.9765625vw, 10px);
    font-size: clamp(21px, 2.734375vw, 28px);
  }
  .stepNote.stepNote_small {
    font-size: min(2.2vw, 23px);
  }
  .stepNote_num {
    width: min(12.109375vw, 124px);
    margin: min(1.46484375vw, 15px) 0;
    padding: min(1.46484375vw, 15px) 0 min(1.07421875vw, 11px);
    font-size: clamp(18px, 2.34375vw, 24px);
  }
}
.sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
  .pc {
    display: none;
  }
}
/* タブ */
.cardTypeTabWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 1.86vw;
  padding: 0 4vw;
  position: relative;
}

@media print, screen and (min-width: 751px) {
  .cardTypeTabWrap {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: min(1.78vw, 18px);
    padding: 0 min(4.95vw, 50px);
  }
}
.cardTypeTabWrap::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  position: absolute;
  left: 0;
  bottom: 0;
}

.cardTypeTab {
  cursor: pointer;
  min-height: 54px;
  padding: 2.66vw 1.33vw;
  font-size: clamp(0.88rem, 0.61rem + 1.1vw, 1.13rem);
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(0, 117, 194, 0.6);
  border: 2px solid #e8e8e8;
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

@media print, screen and (min-width: 751px) {
  .cardTypeTab {
    padding: min(1.58vw, 16px) min(0.99vw, 10px);
    font-size: 1.13em;
  }
}
.cardTypeTab:hover {
  background-color: #0075c2;
}

.cardTypeTab.is-active {
  cursor: inherit;
  pointer-events: none;
  color: #222222;
  background-color: #ffffff;
  border-bottom-color: #ffffff;
}

.cardTypeTabPanel {
  display: none;
}

.cardTypeTabPanel.is-active {
  display: block;
}

/* 即時発行（バーチャルカード） */
.entryFlowTitle-szS {
  font-size: clamp(15px, 4.6153846154vw, 35px);
}

@media print, screen and (min-width: 751px) {
  .entryFlowTitle-szS {
    font-size: clamp(20px, 2.734375vw, 28px);
  }
}
@media print, screen and (min-width: 751px) {
  .stepList {
    margin-top: min(4.6875vw, 48px);
  }
}
.entryFlowVirtual .stepList_item::before {
  background-image: url("/card/campaign/adm/shared/img/viewcardstandard/img_step_virtual_first.png");
}

.entryFlowVirtual .stepList_item:nth-of-type(2)::before {
  background-image: url("/card/campaign/adm/shared/img/viewcardstandard/img_step_virtual_second.png");
}

.entryFlowVirtual .stepList_item:nth-of-type(3)::before {
  background-image: url("/card/campaign/adm/shared/img/viewcardstandard/img_step_virtual_third.png");
}

/* 即時発行当日のJRE POINT付与等に関する注意事項の表組 */
.serviceAvailabilityTable th,
.serviceAvailabilityTable td {
  padding: 1.28205128vw 2.56410256vw;
  vertical-align: middle;
  background-color: #FFF;
  border-color: #A1A1A1;
  font-weight: 500;
}

.serviceAvailabilityTable thead th {
  background-color: #E8E8E8;
  text-align: center;
}

.serviceAvailabilityTable .table-service {
  width: 55%;
}

.serviceAvailabilityTable .table-availability {
  width: 45%;
}

@media print, screen and (min-width: 751px) {
  .serviceAvailabilityTable th,
  .serviceAvailabilityTable td {
    padding: min(0.48828125vw, 5px) min(0.9765625vw, 10px);
  }
  .serviceAvailabilityTable .table-service {
    width: 70%;
  }
  .serviceAvailabilityTable .table-availability {
    width: 30%;
  }
}
/* 汎用追加 */
.u-fontSz75 {
  font-size: 75%;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.singleBtnDown::after {
  transform: rotateZ(90deg) translateX(-50%) !important;
}

.cardDetail .sokuji_contents .highlightTxt-szM {
  text-align: center;
}

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

@media only screen and (max-width: 750px) {
  .cardDetail .cardTypeWrapper {
    width: 95%;
    margin: 0 auto;
    gap: 1vw;
  }
}
.cardDetail .cardTypeWrapper .cardType_text {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

@media only screen and (max-width: 750px) {
  .cardDetail .cardTypeWrapper .cardType_text {
    margin-top: 2.66vw;
    font-size: 3.46vw;
  }
}
.cardDetail .barcode_container {
  text-align: center;
  margin-top: 40px;
}

.cardDetail .barcode_container .imagesLyt_col img {
  width: 150px;
  height: auto;
}

.cardDetail .sokuji_btn_container {
  margin-top: 7vw;
}

.cardDetail .sokuji_btn_container .cardType_btn {
  font-size: 4.3vw !important;
  padding-top: 3vw;
  padding-bottom: 3.1vw;
  letter-spacing: 0.1vw;
}

.cardDetail .sokuji_bnr_container {
  padding: 30px;
  text-align: center;
  margin: 40px 0 60px;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .cardDetail .sokuji_bnr_container {
    padding: 5.33vw;
    margin: 8vw 0 10.66vw;
  }
}
@media only screen and (max-width: 750px) {
  .cardDetail .sokuji_bnr_container p {
    font-size: 3.73vw;
  }
}
.cardDetail .sokuji_bnr_container img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 10px auto 0;
}

@media only screen and (max-width: 750px) {
  .cardDetail .sokuji_bnr_container img {
    margin: 2.66vw auto 0;
  }
}
@media only screen and (max-width: 750px) {
  .catchNote_balloon {
    font-size: 3.2vw;
  }
}
.notesTxt_number {
  text-indent: -1.8em;
  padding-left: 1.8em;
}

/* cp-category */
.cp-category {
  margin: 40px auto;
}

.cp-category .cp-color {
  padding: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  font-size: 115%;
  color: #fff;
}

.cp-category .txt-area {
  margin: 3%;
  /*margin: 3% 3% 5%;
    padding: 0 0 3% 0;
    border-bottom: solid 3px #A0A0A0;*/
  font-size: 90%;
}

.cp-category .txt-areaEnd {
  margin: 3% 3% 0px;
  padding: 0 0 3% 0;
  font-size: 90%;
}

.cp-category img {
  width: 100%;
  margin-bottom: 1%;
}

.cp-category .cp-color-vss {
  background-color: #0097df !important;
}

@media print, screen and (min-width: 751px) {
  .cp-category {
    margin: 60px auto;
  }
  .cp-category .cp-color {
    font-size: 100%;
  }
  .cp-category .txt-area {
    font-size: 100%;
  }
  .cp-category .txt-areaEnd {
    font-size: 100%;
  }
}
.kome_number_indent li {
  text-indent: -1.7em;
  padding-left: 1.7em;
}

.catchNote_primary_num {
  display: inline-block;
  background-color: #007ab8;
  background-color: #1e8f5b;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 40px;
  font-size: 26px;
  vertical-align: middle;
  margin: -8px 5px 0 0;
}
@media screen and (max-width: 750px) {
  .catchNote_primary_num {
    width: 6.667vw;
    height: 6.667vw;
    line-height: 6.4vw;
    font-size: 4vw;
    margin: -2.133vw 1.333vw 0 0;
  }
}

.toggleUnit {
  border: 1px solid #e8e8e8;
}
.toggleUnit + .toggleUnit {
  border-top: none;
}
.toggleUnit_btn {
  display: block;
  position: relative;
  width: 100%;
  padding: min(3.41796875vw, 35px) min(7.8125vw, 80px) min(3.41796875vw, 35px) min(6.4453125vw, 66px);
  border: 4px solid #fff;
  background: #fff;
  color: #222;
  text-align: left;
  font-size: clamp(19px, 2.5390625vw, 26px);
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
}
.toggleUnit_btn.is-open {
  background: #edeff0;
}
.toggleUnit_btn.is-open::after {
  background-image: url(/card/shared/img/icon_circle_minus_black.svg);
}
.toggleUnit_btn::after {
  display: block;
  position: absolute;
  top: 50%;
  right: min(2.5390625vw, 26px);
  transform: translateY(-50%);
  width: min(3.90625vw, 40px);
  padding-top: min(3.90625vw, 40px);
  background: url(/card/shared/img/icon_circle_plus_black.svg) no-repeat 50% 50%;
  background-size: cover;
  content: "";
}
@media screen and (max-width: 750px) {
  .toggleUnit_btn {
    padding: 3vw 9vw 3vw 4.6153846154vw;
    border-width: 2px;
    font-size: clamp(15px, 4.6153846154vw, 35px);
  }
  .toggleUnit_btn::after {
    right: 2vw;
    width: 5.3846153846vw;
    padding-top: 5.3846153846vw;
    background-size: 5.1282051282vw auto;
  }
}
.toggleUnit_body {
  padding: min(1.953vw, 20px) min(5.859vw, 60px) min(4.882vw, 50px);
  font-size: clamp(13px, 1.7578125vw, 18px);
}
@media screen and (max-width: 750px) {
  .toggleUnit_body {
    padding: 4vw;
    font-size: clamp(13px, 4.1025641026vw, 31px);
  }
}

.triggerCase {
  display: block;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  pointer-events: none;
  padding-left: min(11.71875vw, 120px);
}
.triggerCase::before {
  width: min(7.8125vw, 80px);
  padding-top: min(7.8125vw, 80px);
}
@media screen and (max-width: 750px) {
  .triggerCase {
    padding-left: 8vw;
    font-size: 4.3vw;
    line-height: 1.3;
    box-sizing: border-box;
    min-height: 63px;
    display: flex;
    align-items: center;
  }
  .triggerCase .numberingTitle_num {
    top: 50%;
    transform: translate(0, -50%);
    left: -2.5vw;
    width: 8vw;
    height: 8vw;
    padding: 0.2em 0 0.2em;
    border-radius: 50%;
    font-size: 3.733vw;
  }
  .triggerCase br {
    display: none;
  }
}

.discList_item .smalltxt {
  font-size: 70%;
}

.center {
  text-align: center;
}

.chapterHeading span.linktext {
  font-size: 65%;
  font-weight: normal;
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {
  .chapterHeading span.linktext {
    display: block;
    margin-top: 5px;
  }
}/*# sourceMappingURL=style.css.map */