/*-------------------------
カスタムプロパティ
-------------------------*/
/* カラーコード
-------------------------*/
:root {
  --yellow-color: #FFDC35;
  --orange-color: #FFA500;
  --red-color: #C44501;
  --blue-color: #0073A7;
  --lightblue-color: #00B4ED;
  --white-color: #fff; 
  --gray-color: #F4F4F4;  
  --black-color: #222; 
  --black2-color: #000; 
  --beige-color: #F2EEE7;
  --beige2-color: #E2E2E2;
  --brand-color: #7B0019;
}

/*-------------------------
ページ共通スタイル・リセット
-------------------------*/
body{
  position: relative;
}
.cp2024,
.c-modal__inner {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--black-color);
}
@media screen and (max-width:768px){
  .cp2024,
  .c-modal__inner {
    font-size: 15px;
  }
}

.cp2024 em,
.c-modal__inner em{
  font-style: normal;
  font-size: inherit;
  font-weight: 600;
}
.cp2024 sup{
  font-size: 10px;
}
.cp2024 p{
  letter-spacing: 0.1em;
}

/*-------------------------
Layout
-------------------------*/
/* コンテンツ幅
-------------------------*/
.l-contentsWidth{
  margin: auto;
  width: 1110px;
}
@media screen and (min-width:769px) and (max-width:1200px){
  .l-contentsWidth{
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }
}

@media screen and (max-width:768px){
  .l-contentsWidth{
    padding-left: 0;
    padding-right: 0;
    width: calc(327 / 375 * 100vw);
  }
}

/* スクロール可能領域
-------------------------*/
.l-scrollableArea{
  overflow-x: auto;
}

/*-------------------------
Component
-------------------------*/
/* セクション見出し
-------------------------*/
.c-sectionTitle{
  color: var(--black-color);
  font-family: 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
  "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
  "MS PGothic", sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width:768px){
  .c-sectionTitle{
    font-size: 32px;
  }
}

/* コンテンツ見出し（デフォルト）
-------------------------*/
.c-contentsTitle{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width:768px){
  .c-contentsTitle{
    font-size: 20px;
  }
}

/* コンテンツ見出し（■付）
-------------------------*/
.c-contentsTitle--bullet{
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media screen and (max-width:768px){
  .c-contentsTitle--bullet{
    align-items: flex-start;
    column-gap: 8px;
  }
}

.c-contentsTitle--bullet::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-color: #FFA500;
  flex-shrink: 0;
}
@media screen and (max-width:768px){
  .c-contentsTitle--bullet::before {
    margin-top: 10px;
    width: 12px;
    height: 12px;
  }
}

.c-contentsTitle--blueBullet::before {
  background-color: var(--blue-color);
}

/* 見出しカウントラベル（連番・アルファベット）
-------------------------*/
.c-counterLabel{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--red-color);
  color: var(--white-color);
  font-size: 20px;
  flex-shrink: 0;
  font-family: "Oswald", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
  "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
  "MS PGothic",  sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width:768px){
  .c-counterLabel{
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.c-counterLabel--inline{
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
}

.c-counterLabel--large{
  width: 80px;
  height: 80px;
  font-size: 48px;
}
@media screen and (max-width:768px){
  .c-counterLabel--large{
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
}

.c-counterLabel--medium{
  width: 56px;
  height: 56px;
  font-size: 30px;
}
@media screen and (max-width:768px){
  .c-counterLabel--medium{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.c-counterLabel--small{
  width: 27px;
  height: 27px;
  font-size: 16px;
}

/* ボタン（長方形）
-------------------------*/
.c-button{
  padding: 10px;
  display: inline-block;
  width: 390px;
  background-color: var(--red-color);
  box-sizing: border-box;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
@media (hover: hover){
  .c-button:hover{
    opacity: 0.7;
  }
}
.c-button::after{
  content: "";
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
}

@media screen and (max-width:768px){
  .c-button{
    width: 100%;
  }
}

/* ボタン（角丸）
-------------------------*/
.c-button--radius{
  padding: 16px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 390px;
  font-size: 18px;
  font-weight: 600;
  color: var(--red-color);
  letter-spacing: normal;
  border: 2px solid var(--red-color);
  border-radius: 50px;
  transition: all 0.3s;
  background: var(--white-color) url(../images/icon/icon_link_arrow.svg) no-repeat center right 16px / 8px 13px;
}
@media screen and (max-width:768px){
  .c-button--radius{
    padding: 12px 40px;
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
  }
}

.c-button--radius span{
  color: inherit;
  letter-spacing: inherit;
  text-align: center;
}

@media (hover: hover){
  .c-button--radius:hover{
    opacity: 0.7;
  }
}
.c-button--radius--under{
  background: var(--white-color) url(../images/icon/icon_link_arrow--under.svg) no-repeat center right  13px / 14px 13px;
}
.c-button--radius--blank{
  background: var(--white-color) url(../images/icon/icon_link_arrow--blank.svg) no-repeat center right 16px / 14px 13px;
}

/* リスト（注釈・中点）
-------------------------*/
.c-listBlock{
  list-style: none;
  line-height: 1.8;
}
.c-listBlock li{
  display: flex;
  align-items: flex-start;
  column-gap: 4px;
  letter-spacing: 0.1em;
}

.c-listBlock li > span{
  font-size: inherit;
  letter-spacing: inherit;
}

.c-listBlock--dotted li::before{
  content:  "・";
}
.c-listBlock--asterisk li::before{
  content:  "※";
}

/* リスト（注釈連番）
-------------------------*/
.c-listCounterBlock{
  list-style:  none;
  line-height: 2;
  counter-reset: number 0;
}
.c-listCounterBlock li{
  /* display: flex;
  align-items: flex-start; */
  column-gap: 4px;
  letter-spacing: 0.1em;
  padding-left: 2.5em;
  position: relative;
}
.c-listCounterBlock li::before{
  counter-increment: number 1;
  content:  "※"counter(number);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.c-listCounterBlock li > span{
  font-size: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width:768px){
  .c-listCounterBlock li{
    font-size: 12px;
  }
}

/* 縦罫線
-------------------------*/
/* .c-verticalBorderArrow{
  position: relative;
}
.c-verticalBorderArrow::before{
  margin: auto 0;
  content: "";
  display: block;
  width: 17px;
  height: 24px;
  background: transparent url(../../cmn/images/icon/icon_triangle.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: -54px;
  bottom: 0;
}
.c-verticalBorderArrow::after{
  margin: auto 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: #222222;
  border-radius: 50px;
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
} */

/* 横罫線
-------------------------*/
.c-horizontalBorderArrow{
  position: relative;
}
.c-horizontalBorderArrow::before{
  margin: auto;
  content: "";
  display: block;
  width: 17px;
  height: 24px;
  background: transparent url(../../cmn/images/icon/icon_triangle.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
  transform: rotate(90deg);
}
@media screen and (max-width:768px){
  .c-horizontalBorderArrow::before,
  .c-horizontalBorderArrow--sp::before{
    margin: auto;
    content: "";
    display: block;
    width: 18px;
    height: 12px;
    background: transparent url(../../cmn/images/icon/icon_triangle.svg) no-repeat center/contain;
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    bottom: -9px;
    transform: rotate(90deg);
  }
}

.c-horizontalBorderArrow::after{
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--black-color);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width:768px){
  .c-horizontalBorderArrow::after,
  .c-horizontalBorderArrow--sp::after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--black-color);
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
  }
}

/* 追従ボタン（口座を開設する）
-------------------------*/
.c-fixedButton__wrap {
  position: relative;
  z-index: 2;
}

.c-fixedButton {
  max-width: 76px;
  width: calc(76 / 1322* 100vw);
  cursor: pointer;
  position: fixed;
  right: 0;
}
/* ボタンが1つ並びの時 */
.c-fixedButton1 {
  top: 50%; 
  transform: translateY(-30%);
}

/* ボタンが2つ並びの時 */
/* .c-fixedButton1 {
  top: 30%; 
  transform: translateY(-30%);
} */

/* ボタンが2つ並びの時 */
.c-fixedButton2 {
  top: calc(50% + 10px);
}

.c-fixedButton span,
.c-fixedButton2 span {
  color: inherit;
}

.c-fixedButton span::after,
.c-fixedButton2 span::after {
  margin: auto;
  content: "";
  display: block;
  width: 24px;
  height: 10px;
  background: transparent url(../images/icon/icon_fixedbutton_arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
}

@media screen and (max-width:768px){
  .c-fixedButton__wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .c-fixedButton {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    left: 0;
  }

  .c-fixedButton picture,
  .c-fixedButton img {
    width: 100%;
  }
  
  .c-fixedButton1, .c-fixedButton2 {
    position: relative;
  }

  .c-fixedButton1 {
    top: 0 ;
    transform:none;

  }
}
@media (hover: hover){
  .c-fixedButton:hover {
    transition: all .3s;
    opacity: 0.7;
  }
}

/* .c-fixedButton{
  padding-top: 14px;
  display: flex;
  align-items: center;
  width: 76px;
  height: 250px;
  background-color: var(--red-color);
  border-radius: 10px 0 0 10px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  line-height: 2;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  position: sticky;
  top: calc(50% - 40px);
  left: calc(100vw - 76px);
  z-index: 2;
}
@media screen and (max-width:768px){
  .c-fixedButton{
    padding: 10px;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 0;
    font-size: 15px;
    writing-mode: initial;
    text-align: center;
    top: calc(100vh - 50px);
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.c-fixedButton span{
  color: inherit;
}
.c-fixedButton span::after{
  margin: auto;
  content: "";
  display: block;
  width: 24px;
  height: 10px;
  background: transparent url(../images/icon/icon_fixedbutton_arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
}
@media screen and (max-width:768px){
  .c-fixedButton span::after{
    width: 8px;
    height: 13px;
    background: transparent url(../images/icon/icon_link_arrow_wh.svg) no-repeat center / contain;
    top: 0;
    right: 16px;
    bottom: 0;
    left: auto;
  }
}
@media (hover: hover){
  .c-fixedButton:hover {
    transition: all .3s;
    opacity: 0.7;
  }
} */

/*-------------------------
Utility
-------------------------*/
/* display
-------------------------*/
.u-dp-pc{
  display: block;
}
.u-dp-tab{
  display: none;
}
.u-dp-sp{
  display: none;
}
@media screen and (min-width:769px) and (max-width:1000px){
  .u-dp-pc{
    display: none;
  }
  .u-dp-tab{
    display: block;
  }
  .u-dp-sp{
    display: none;
  }
}

@media screen and (max-width:768px){
  .u-dp-pc{
    display: none;
  }
  .u-dp-tab{
    display: none;
  }
  .u-dp-sp{
    display: block;
  }
}

/* background
-------------------------*/
.u-bg-red{
  background-color: var(--red-color);
}
.u-bg-orange{
  background-color: var(--orange-color);
}
.u-bg-blue{
  background-color: var(--blue-color);
}
.u-bg-lightblue{
  background-color: var(--lightblue-color);
}

/* font
-------------------------*/
.u-color-note{
  color: var(--red-color);
}
.u-color-lightblue{
  color: var(--lightblue-color);
}
.u-fw-bold{
  font-weight: 600;
}
.u-ff-zenkaku{
  font-family: 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
  "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
  "MS PGothic",  sans-serif;
  font-weight: 700;
}
.u-ff-oswald{
  font-family: "Oswald", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
  "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
  "MS PGothic",  sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*-------------------------
編集可能領域 #cp2024
-------------------------*/
/* メインビジュアル
-------------------------*/
/* .cp2024-mv{
  margin: -224px auto 0;
  max-width: 1470px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px){
  .cp2024-mv{
    margin: -22px auto 0;
    max-width: none;
  }
} */
/* キャンペーンMV
-------------------------*/
.cp2024-campaign{
  margin: 80px auto 0;
  max-width: 1440px;
  background-image: url(../../cmn/images/mv.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width:768px){
  .cp2024-campaign{
    margin: 56px auto 0;
    max-width: none;
    background: none;
  }
}

.cp2024-campaign__inner{
  margin: auto;
  max-width: 1110px;
  width: calc((1110 / 1440) * 100%);
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-campaign__inner{
    padding-bottom: calc(114 / 375 * 100vw);
    max-width: none;
    width: 100%;
  }
}

.cp2024-campaign__catchcopy{
  margin-left: -46px;
  padding: 40px 0 247px;
  max-width: 552px;
  width: calc((552 / 1110) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-campaign__catchcopy{
    margin: 0 auto;
    padding: 0;
    max-width: none;
    width: calc(335 / 375 *100vw);
  }
}

.cp2024-campaign__schedule{
  max-width: 255px;
  width: calc((255 / 1110) * 100%);
  position: absolute;
  top: 0;
  right: -63px;
}
@media screen and (max-width:768px){
  .cp2024-campaign__schedule{
    margin: auto;
    max-width: none;
    width: calc(251 / 375 * 100vw);
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* キャンペーン適用条件
-------------------------*/
/* .cp2024-applicable{
  padding: 80px 0;
}
@media screen and (max-width:768px){
  .cp2024-applicable{
    padding: 32px 0 56px;
  }
}

.cp2024-applicable__lead{
  margin: 32px 0 50px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width:768px){
  .cp2024-applicable__lead{
    margin-bottom: 40px;
    text-align: left;
  }
}

.cp2024-applicable__lead .c-counterLabel{
  margin: 0 3px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  vertical-align: baseline;
}
@media screen and (max-width:768px){
  .cp2024-applicable__lead .c-counterLabel{
    width: 20px;
    height: 20px;
    line-height: 1.3;
  }
}

.cp2024-applicable__frame{
  border: 3px solid #222222;
  position: relative;
}
.cp2024-applicable__frameComment{
  position: absolute;
  top: -20px;
  left: 40px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameComment{
    text-align: center;
    right: 0;
    left: 0;
  }
  .cp2024-applicable__frameComment img{
    display: inline;
  }
}

.cp2024-applicable__frameTop{
  padding: 50px 50px 32px;
  border-bottom: 3px solid #222222;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameTop{
    padding: 34px 24px 0;
    border-bottom: none;
  }
}

.cp2024-applicable__frameBottom{
  padding: 37px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameBottom{
    padding: 16px 20px 24px;
  }
}

.cp2024-applicable__frameHeader{
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameHeader{
    flex-direction: column;
    row-gap: 16px;
  }
}

.cp2024-applicable__frameTitle{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameTitle{
    font-size: 20px;
  }
}

.cp2024-applicable__frameInner{
  display: grid;
  row-gap: 32px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameInner{
    row-gap: 16px;
    grid-template-columns: 100%;
  }
}

.cp2024-applicable__frame .c-listBlock{
  margin-top: 24px;
  font-size: 14px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frame .c-listBlock{
    margin-top: 12px;
  }
}

.cp2024-applicable__course{
  padding: 24px;
  display: flex;
  align-items: center;
  column-gap: 79px;
  border: 8px solid var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-applicable__course{
    padding: 24px;
    flex-direction: column;
  }
}

.cp2024-applicable__step{
  max-width: 616px;
  width: 100%;
}
@media screen and (max-width:768px){
  .cp2024-applicable__step{
    margin-bottom: 24px;
    padding-bottom: 24px;
    max-width: none;
  }
}

.cp2024-applicable__stepTitle{
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepTitle{
    font-size: 20px;
  }
}

.cp2024-applicable__stepDetail{
  margin-top: 24px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepDetail{
    margin-top: 16px;
  }
}

.cp2024-applicable__stepList{
  display: flex;
  align-items: center;
  gap: 0 56px;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepList{
    flex-direction: column;
    row-gap: 36px;
  }
}

.cp2024-applicable__stepList li{
  padding: 20px;
  max-width: 280px;
  width: calc((280/616) * 100%);
  background-color: var(--gray-color);
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepList li{
    padding: 16px 20px;
    max-width: none;
    width: 100%;
  }
}

.cp2024-applicable__stepList li:not(:last-child):after{
  margin: auto;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: transparent url(../../cmn/images/icon/icon_plus.svg) no-repeat center/contain;
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepList  li:not(:last-child):after{
    width: 20px;
    height: 20px;
    top: auto;
    right: 0;
    bottom: -28px;
    left: 0;
  }
}

.cp2024-applicable__stepList li:nth-child(1):before{
  margin: 0 auto 8px;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: transparent url(../../cmn/images/icon/icon_step1.svg) no-repeat center/contain;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepList li:nth-child(1):before{
    width: 28px;
    height: 28px;
  }
}

.cp2024-applicable__stepList li:nth-child(2):before{
  margin: 0 auto 8px;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: transparent url(../../cmn/images/icon/icon_step2.svg) no-repeat center/contain;
}
@media screen and (max-width:768px){
  .cp2024-applicable__stepList li:nth-child(2):before{
    width: 28px;
    height: 28px;
  }
}

.cp2024-applicable__result{
  margin: 0 auto;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width:768px){
  .cp2024-applicable__result{
    font-size: 23px;
  }
}

.cp2024-applicable__result p{
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width:768px){
  .cp2024-applicable__result p{
    font-size: 15px;
  }
}

.cp2024-applicable__result small{
  font-size: 16px;
  letter-spacing: -0.05em;
}
@media screen and (max-width:768px){
  .cp2024-applicable__result small{
    font-size: 15px;
  }
}

.cp2024-applicable__resultItems{
  margin: auto;
}

.cp2024-applicable__resultItems.step1_a{
  display: block;
  max-width: 228px;
  width: calc((228/234) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-applicable__resultItems.step1_a{
    max-width: none;
    width: calc(224 / 375 * 100vw);
  }
}

.cp2024-applicable__resultItems.step1_b{
  display: block;
  max-width: 228px;
  width: calc((228/234) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-applicable__resultItems.step1_b{
    max-width: none;
    width: calc((224) / 375 * 100vw);
  }
}

.cp2024-applicable__frameSingle{
  margin-top: 96px;
  padding: 47px;
  display: flex;
  align-items: center;
  column-gap: 101px;
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameSingle{
    margin-top: 110px;
    padding: 34px 24px 24px;
    display: flex;
    flex-direction: column;
  }
}

.cp2024-applicable__frameSingle:before {
  margin: auto;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: transparent url(../../cmn/images/icon/icon_plus.svg) no-repeat center/contain;
  position: absolute;
  top: -74px;
  right: 0;
  left: 0;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameSingle:before {
    top: -86px;
  }
}

.cp2024-applicable__frameSingle .cp2024-applicable__frameHeader{
  max-width: 665px;
  width: 100%;
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameSingle .cp2024-applicable__frameHeader{
    margin-bottom: 24px;
    padding-bottom: 24px;
    max-width: none;
    position: relative;
  }
}


@media screen and (min-width:769px){
  .cp2024-applicable__frameSingle .cp2024-applicable__result:before,
  .cp2024-applicable__frameSingle .cp2024-applicable__result:after {
    right: 0;
    left: -60px;
  }
}
@media screen and (max-width:768px){
  .cp2024-applicable__frameSingle .cp2024-applicable__result{
    max-width: none;
  }
  .cp2024-applicable__frameSingle .cp2024-applicable__result:before,
  .cp2024-applicable__frameSingle .cp2024-applicable__result:after {
    content: none;
  }
}

.cp2024-applicable__resultItems.step2{
  display: block;
  max-width: 180px;
  width: calc((180/235) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-applicable__resultItems.step2{
    max-width: none;
    width: calc(180 / 375 * 100vw);
  }
}

.cp2024-applicable__gift{
  position: relative;
}

.cp2024-applicable__gift:before {
  margin: 40px auto 0;
  content: "";
  display: block;
  width: 152px;
  height: 53px;
  background: transparent url(../../cmn/images/icon/icon_arrow.svg) no-repeat center/contain;
}
@media screen and (max-width:768px){
  .cp2024-applicable__gift:before {
    margin: 24px auto 16px;
    width: 120px;
    height: 42px;
  }
}

.cp2024-applicable__giftMessage{
  margin: 0 auto 40px;
  display: block;
  max-width: 747px;
  width: calc((747/1110) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-applicable__giftMessage{
    margin-bottom: 32px;
    max-width: none;
    width: 100%;
  }
}

.cp2024-applicable__giftLogo{
  margin: 0 auto 40px;
  display: block;
  max-width: 908px;
  width: calc((908/1110) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-applicable__giftLogo{
    margin-bottom: 24px;
    max-width: none;
    width: 100%;
  }
}

.cp2024-applicable__noticeBox{
  padding: 24px;
  background-color: var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-applicable__noticeBox{
    padding: 16px;
  }
}

.cp2024-applicable__noticeBox ul li{
  font-size: 12px;
} */

/* キャンペーン概要
-------------------------*/
.cp2024-overview{
  background-color: #E1B530;
  padding: 80px 0;
}
@media screen and (max-width:768px){
  .cp2024-overview{
    padding: 56px 0 ;
  }
}

.cp2024-overview .c-sectionTitle{
  margin-bottom: 40px;
}
@media screen and (max-width:768px){
  .cp2024-overview .c-sectionTitle{
    margin-bottom: 32px;
  }
}

.cp2024-overview .c-contentsTitle{
  margin-bottom: 20px;
}
@media screen and (max-width:768px){
  .cp2024-overview .c-contentsTitle{
    margin-bottom: 12px;
  }
}

.cp2024-overview__box{
  background-color: var(--white-color);
  padding: 40px;
}
@media screen and (max-width:768px){
  .cp2024-overview__box{
    padding: 24px 20px;
  }
}

.cp2024-overview__box:not(:last-child){
  margin-bottom: 24px;
}
@media screen and (max-width:768px){
  .cp2024-overview__box:not(:last-child){
    margin-bottom: 20px;
  }
}

.cp2024-overview__box a{
  word-break: break-all;
}

.cp2024-overview__detail{
  word-break: break-all;
}

.cp2024-overview__detail a{
  text-decoration: underline;
}

.cp2024-overview__frame{
  border: 8px solid var(--beige-color);
  margin: 24px 0;
}
@media screen and (max-width:768px){
  .cp2024-overview__frame{
    margin: 16px 0;
  }
}

.cp2024-overview__frameInner{
  padding: 25px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameInner{
    padding: 20px;
  }
}

.cp2024-overview__frameInner:not(:first-child){
  border-top: 8px solid var(--beige-color);
}

.cp2024-overview__frameHeader{
  display: flex;
  align-items: center;
  column-gap: 24px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameHeader{
    align-items: flex-start;
    column-gap: 12px;
  }
}

.cp2024-overview__frameTitle{
  display: grid;
  row-gap: 9px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTitle{
    row-gap: 13px;
    font-size: 15px;
  }
}

.cp2024-overview__frameTitle p .c-counterLabel{
  margin-right: 8px;
  width: 24px;
  height: 24px;
  font-size: 14px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTitle p .c-counterLabel{
    margin-right: 4px;
    width: 20px;
    height: 20px;
    line-height: 1.3;
  }
}

.cp2024-overview__frameTable{
  margin-top: 16px;
  padding: 20px 28px;
  border: 4px solid var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTable{
    padding: 20px;
    border: 6px solid var(--gray-color);
  }
}

.cp2024-overview__frameTableTitle{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-weight: 600;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableTitle{
    font-size: 16px;
  }
}

.cp2024-overview__frameTableBox{
  padding: 11px 12px;
  background-color: var(--gray-color);
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableBox{
    font-size: 15px;
  }
}

.cp2024-overview__frameTableBox:nth-child(2){
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableBox:nth-child(2){
    margin-bottom: 28px;
  }
}

.cp2024-overview__frameTableBox:nth-child(2):after{
  margin: auto;
  content: "";
  width: 14px;
  height: 14px;
  background: transparent url(../../cmn/images/icon/icon_plus.svg) no-repeat center/contain;
  position: absolute;
  bottom: -25px;
  left: 160px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableBox:nth-child(2):after{
    right: 0;
    bottom: -21px;
    left: 0;
  }
}

.cp2024-overview__frameTableBox + .cp2024-overview__frameTableEmphasized{
  margin-top: 16px;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableBox + .cp2024-overview__frameTableEmphasized{
    margin-top: 12px;
  }
}

.cp2024-overview__frameTableEmphasized{
  font-weight: 600;
}

.cp2024-overview__frameTableEmphasized em{
  font-size: 24px;
  letter-spacing: normal;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableEmphasized em{
    font-size: 20px;
  }
}

.cp2024-overview__frameTableEmphasized em span{
  font-size: 18px;
  color: inherit;
}
@media screen and (max-width:768px){
  .cp2024-overview__frameTableEmphasized em span{
    font-size: 14px;
  }
}


.cp2024-overview__notice li{
  font-size: 14px;
  font-weight: normal;
}


/* あなたに合ったNISAを選ぼう！
-------------------------*/
.cp2024-info{
  padding: 80px 0;
}
@media screen and (max-width:768px){
  .cp2024-info{
    padding: 56px 0;
  }
}

.cp2024-info .cp2024-info__secTitle{
  margin-bottom: 32px;
}

.cp2024-info .c-contentsTitle {
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width:768px){
  .cp2024-info .c-contentsTitle {
    font-size: 28px;
  }
}

.cp2024-info__buttonsBox{
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width:768px){
  .cp2024-info__buttonsBox{
    margin-top: 32px;
    flex-direction: column;
    row-gap: 17px;
  }
}

.cp2024-info__buttonsBox .c-button--radius{
  font-size: 16px;
}

.cp2024-info__announce{
  margin-top: 56px;
}
@media screen and (max-width:768px){
  .cp2024-info__announce{
    margin-top: 32px;
  }
}

.cp2024-info__announceContentsHeader{
  margin-top: 32px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width:768px){
  .cp2024-info__announceContentsHeader{
    margin-top: 32px;
    flex-direction: column;
    row-gap: 16px;
  }
}

.cp2024-info__announceTitle{
  display: flex;
  align-items: baseline;
  column-gap: 16px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-info__announceTitle{
    column-gap: 8px;
    font-size: 28px;
  }
}

.cp2024-info__announceTitle:before,
.cp2024-info__announceTitle:after{
  content: "";
  display: block;
  width: 21px;
  height: 28px;
  background: transparent url(../../cmn/images/deco_title.svg) no-repeat center/contain;
}
@media screen and (max-width:768px){
  .cp2024-info__announceTitle:before,
  .cp2024-info__announceTitle:after{
    width: 18px;
    height: 24px;
  }
}

.cp2024-info__announceTitle:after{
  transform: rotateY(180deg);
}

.cp2024-info__announceFukidashi{
  margin: -20px -120px 0 0;
  width: 120px;
}
@media screen and (min-width:769px) and (max-width:1200px){
  .cp2024-info__announceFukidashi{
    margin: -20px -120px 0 -20px;
    width: calc(100 / 736 *100vw);
  }
}
@media screen and (max-width:768px){
  .cp2024-info__announceFukidashi{
    margin: auto;
  }
}

.cp2024-info__announceTable{
  margin-top: 40px;
}
@media screen and (max-width:768px){
  .cp2024-info__announceTable{
    margin-top: 24px;
  }
}

.cp2024-info__explain{
  margin-top: 56px;
}
@media screen and (max-width:768px){
  .cp2024-info__explain{
    margin-top: 40px;
  }
}

.cp2024-info__explainInner{
  margin-top: 40px;
}
@media screen and (max-width:768px){
  .cp2024-info__explainInner{
    margin-top: 24px;
  }
}

.cp2024-info__explainPoint{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:768px){
  .cp2024-info__explainPoint{
    flex-direction: column;
    row-gap: 16px;
  }
}

.cp2024-info__explainPoint li{
  width: calc((344 / 1110) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-info__explainPoint li{
    width: calc((263 / 375) * 100vw);
  }
}

/* お取引方法
-------------------------*/
.cp2024-deal{
  background-color: var(--gray-color);
  padding: 80px 0;
}
@media screen and (max-width:768px){
  .cp2024-deal{
    padding: 56px 0;
  }
}

.cp2024-deal .c-sectionTitle{
  margin-bottom: 70px;
}
@media screen and (max-width:768px){
  .cp2024-deal .c-sectionTitle{
    margin-bottom: 45px;
  }
}

.cp2024-dealSection{
  background-color: var(--white-color);
  padding: 46px 40px 40px 40px;
  position: relative;
}
@media screen and (max-width:768px){
  .cp2024-dealSection{
    padding: 35px 20px 40px;
  }
}

.cp2024-dealSection:not(:last-child){
  margin-bottom: 88px;
}
@media screen and (max-width:768px){
  .cp2024-dealSection:not(:last-child){
    margin-bottom: 54px;
  }
}

.cp2024-deal__subTitle{
  margin: auto;
  width: 150px;
  position: absolute;
  top: -17px;
  right: 0;
  left: 0;
}
@media screen and (max-width:768px){
  .cp2024-deal__subTitle{
    width: 133px;
    top: -12px;
  }
}

.cp2024-dealSection .c-sectionTitle{
  font-size: 36px;
  margin-bottom: 0;
}
@media screen and (max-width:768px){
  .cp2024-dealSection .c-sectionTitle{
    font-size: 26px;
  }
}

.cp2024-dealSection .c-contentsTitle{
  margin-bottom: 20px;
}
@media screen and (max-width:768px){
  .cp2024-dealSection .c-contentsTitle{
    margin-bottom: 12px;
  }
}

.cp2024-deal__lead{
  margin: 25px 0 40px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width:768px){
  .cp2024-deal__lead{
    margin: 24px 0;
    text-align: left;
  }
}

.cp2024-deal__frame{
  margin-bottom: 55px;
  padding: 37px;
  border: 3px solid var(--black-color);
}
@media screen and (max-width:768px){
  .cp2024-deal__frame{
    margin-bottom: 32px;
    padding: 24px;
  }
}

.cp2024-deal__frameIcon{
  margin: auto;
  width: 100px;
}
@media screen and (max-width:768px){
  .cp2024-deal__frameIcon{
    width: 70px;
  }
}



.cp2024-deal__flow{
  display: grid;
  row-gap: 8px;
}
@media screen and (max-width:768px){
  .cp2024-deal__flow{
    row-gap: 12px;
  }
  .cp2024-deal__flow img{
    max-width: none;
    width: 100%;
  }
}

.cp2024-deal__flowItems{
  display: flex;
  align-items: flex-start;
  column-gap: 28px;
}
@media screen and (max-width:768px){
  .cp2024-deal__flowItems{
    column-gap: calc(24/375 * 100vw);
    justify-content: space-around;
  }
}

.cp2024-deal__flowImage{
  max-width: 532px;
  width: calc((532/950)*100%);
}
@media screen and (max-width:768px){
  .cp2024-deal__flowImage{
    max-width: none;
    width: calc(119/375 * 100vw);
  }
}

.cp2024-deal__flowResult{
  max-width: 390px;
  width: calc((390/950) * 100%);
}
@media screen and (max-width:768px){
  .cp2024-deal__flowResult{
    max-width: none;
    width: calc(95/375 * 100vw);
  }
}

.cp2024-deal__flowResult .c-button{
  width: 100%;
}
@media screen and (min-width:769px) and (max-width:1200px){
  .cp2024-deal__flowResult .c-button{
    font-size: 14px;
  }
}
@media screen and (max-width:768px){
  .cp2024-deal__flowResult .c-button{
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 100%;
    height: calc(95/375 * 100vw);
    font-size: calc(15/375 * 100vw);
  }
  .cp2024-deal__flowResult .c-button::after{
    width: calc(8/375 * 100vw);
    height: calc(8/375 * 100vw);
    right: calc(6/375 * 100vw);
  }
}

.cp2024-deal__flowModal{
  margin-top: 16px;
  display: block;
  width: calc((390/532)*100%);
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-deal__flowModal{
    margin-top: 8px;
    font-size: 14px;
    width: 100%;
  }
}

.cp2024-deal__flowModal span{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  font-size: inherit;
}
.cp2024-deal__flowModal span::after{
  content: '';
  display: block;
  width: 8px;
  height: 13px;
  background: transparent url(../images/icon/icon_link_arrow.svg) no-repeat center / contain;
}

.cp2024-deal__app > .c-contentsTitle{
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width:768px){
  .cp2024-deal__app > .c-contentsTitle{
    margin-bottom: 24px;
  }
}

.cp2024-deal__appContents:not(:last-child){
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-deal__appContents:not(:last-child){
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}

.cp2024-deal__appBox{
  margin-bottom: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  background-color: var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-deal__appBox{
    padding: 20px;
    flex-direction: column;
  }
}

.cp2024-deal__appLogo{
  padding-right: 56px;
  border-right: 2px solid var(--beige2-color);
  width: 368px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appLogo{
    margin-bottom: 20px;
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 2px solid var(--beige2-color);
    width: 100%;
  }
}

.cp2024-deal__appDownload{
  padding-left: 56px;
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appDownload{
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
}

.cp2024-deal__appIos{
  transition: all .3s;
  width: 123px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appIos{
    width: calc(123/375 * 100vw)
  }
}

.cp2024-deal__appAndroid{
  transition: all .3s;
  width: 152px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appAndroid{
    width: calc(152/375 * 100vw)
  }
}
@media (hover: hover){
  .cp2024-deal__appIos:hover,
  .cp2024-deal__appAndroid:hover{
    opacity: 0.8;
    transition: all .3s;
  }
}

.cp2024-deal__app .c-button--radius{
  margin-top: 24px;
}
@media screen and (max-width:768px){
  .cp2024-deal__app .c-button--radius{
    margin-top: 13px;
  }
}

.cp2024-deal__appHowto{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  min-width: 1030px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appHowto{
    margin-top: 24px;
    grid-template-columns: repeat(3, calc(222/375 * 100vw));
    gap: 50px;
    min-width: 760px;
  }
}

.cp2024-deal__appHowto li .cp2024-deal__appHowtoThumbnail{
  position: relative;
}
.cp2024-deal__appHowto li:not(:first-child) .cp2024-deal__appHowtoThumbnail:before{
  margin: auto;
  content: "";
  display: block;
  width: 20px;
  height: 29px;
  background: transparent url(../../cmn/images/icon/icon_arrow_yellow.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appHowto li:not(:first-child) .cp2024-deal__appHowtoThumbnail:before{
    width: 18px;
    height: 24px;
  }
}

.cp2024-deal__appHowto .c-counterLabel{
  margin: 0 auto 12px;
}

.cp2024-deal__appHowtoTitle{
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width:768px){
  .cp2024-deal__appHowtoTitle{
    margin-bottom: 16px;
    font-size: 15px;
  }
}

.cp2024-deal__appHowtoContent{
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-deal__appHowtoContent{
    font-size: 15px;
  }
}

.cp2024-deal__appHowtoContent .c-button--radius{
  margin-top: 0;
  padding: 16px 30px;
  width: 100%;
  letter-spacing: -0.05em;
}
@media screen and (max-width:768px){
  .cp2024-deal__appHowtoContent .c-button--radius{
    padding: 12px 50px;
  }
}

.cp2024-deal__serviceStep{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 49px;
  max-width: 1030px;
  width: 100%;
}
@media screen and (max-width:768px){
  .cp2024-deal__serviceStep{
    grid-template-columns: repeat(4, calc(180/375 * 100vw));
    gap: 42px;
    /* min-width: 1068px; */
  }
}

.cp2024-deal__serviceStep li .c-counterLabel {
  margin: 0 auto 16px;
}
@media screen and (max-width:768px){
  .cp2024-deal__serviceStep li .c-counterLabel {
    margin-bottom: 12px;
  }
}

.cp2024-deal__serviceStep li .cp2024-deal__serviceStepThumbnail{
  position: relative;
}
.cp2024-deal__serviceStep li:not(:first-child) .cp2024-deal__serviceStepThumbnail:before{
  margin: auto;
  content: "";
  display: block;
  width: 20px;
  height: 29px;
  background: transparent url(../../cmn/images/icon/icon_arrow_blue.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35px;
}
@media screen and (max-width:768px){
  .cp2024-deal__serviceStep li:not(:first-child) .cp2024-deal__serviceStepThumbnail:before{
    width: 18px;
    height: 24px;
    left: -30px;
  }
}

.cp2024-deal__serviceStepContent{
  margin-top: 16px;
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-deal__serviceStepContent{
    font-size: 15px;
  }
}

.cp2024-deal__contact{
  padding: 24px;
  display: flex;
  align-items: center;
  background-color: var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-deal__contact{
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cp2024-deal__contactTitle{
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width:768px){
  .cp2024-deal__contactTitle{
    font-size: 16px;
  }
}

.cp2024-deal__contactContents{
  margin: 0 0 0 40px;
  padding: 0 0 0 40px;
  display: grid;
  row-gap: 8px;
  border-left: 2px solid #DEDEDE;
}
@media screen and (max-width:768px){
  .cp2024-deal__contactContents{
    margin: 16px 0 0;
    padding: 16px 0 0;
    row-gap: 12px;
    flex-direction: column;
    width: 100%;
    border-left: none;
    border-top: 2px solid #DEDEDE;
  }
}

.cp2024-deal__contactTel{
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-size: 32px;
  color: var(--brand-color);
}
@media screen and (max-width:768px){
  .cp2024-deal__contactTel{
    font-size: 27px;
    column-gap: 14px;
  }
}

.cp2024-deal__contactTel::before{
  content: "";
  display: block;
  width: 49px;
  height: 32px;
  background: transparent url(../../cmn/images/icon/icon_tel.svg) no-repeat center/contain;
}
@media screen and (max-width:768px){
  .cp2024-deal__contactTel::before{
    width: 46px;
    height: 30px;
  }
}

.cp2024-deal__contactTime{
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-deal__contactTime{
    font-size: 15px;
    line-height: 1.8;
  }
}

/* 免責事項
-------------------------*/
.cp2024-disclaimer{
  padding: 80px 0;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer{
    padding: 29px 0 80px;
  }
}

.cp2024-disclaimer .c-sectionTitle{
  margin-bottom: 40px;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer .c-sectionTitle{
    margin-bottom: 32px;
  }
}

.cp2024-disclaimer .c-contentsTitle{
  margin-bottom: 24px;
  border-top: 2px solid var(--gray-color);
  border-bottom: 2px solid var(--gray-color);
  padding: 20px 0;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer .c-contentsTitle{
    margin-bottom: 26px;
  }
}

.cp2024-disclaimer .c-contentsTitle span{
  font-size: inherit;
}

.cp2024-disclaimer .c-contentsTitle small{
  font-size: 18px;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer .c-contentsTitle small{
    font-size: 16px;
  }
}

.cp2024-disclaimer__contents{
  margin-bottom: 45px;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer__contents{
    margin-bottom: 56px;
  }
}

.cp2024-disclaimer__contents .c-listBlock li,
.cp2024-disclaimer__text{
  font-size: 16px;
}
@media screen and (max-width:768px){
  .cp2024-disclaimer__contents .c-listBlock li,
  .cp2024-disclaimer__text{
    font-size: 14px;
  }
}


/* モーダル共通レイアウト
-------------------------*/
.modaal-wrapper .modaal-container{
  max-width: 1110px;
}
@media screen and (max-width:768px){
  .modaal-wrapper .modaal-container{
    max-width: none;
  }
}

.modaal-wrapper .modaal-content-container{
  padding: 0;
}
.modaal-overlay {
  z-index: 1000 !important;
}

.c-modal{
  display: none;
}
.c-modal__inner{
  padding: 80px 40px;
}
@media screen and (max-width:768px){
  .c-modal__inner{
    padding: 56px 20px;
  }
}

.c-modal__closeButton[type=button]{
  margin: 0 0 0 auto;
  background: var(--blue-color) url(../../cmn/images/icon/icon_close.svg) no-repeat center/ 24px 24px;
  display: block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width:768px){
  .c-modal__closeButton[type=button]{
    background-size: 20px 20px;
    width: 40px;
    height: 40px;
  }
}

/* モーダル内（投資信託専用サイト ログイン）
-------------------------*/
.cp2024-loginFlow{
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(auto, 660px) minmax(auto, 350px);
  gap: 20px;
}
@media screen and (max-width:1100px){
  .cp2024-loginFlow{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width:768px){
  .cp2024-loginFlow{
    margin-top: 32px;
  }
}

.cp2024-loginFlow__block{
  padding: 40px;
  background-color: var(--gray-color);
}
@media screen and (max-width:768px){
  .cp2024-loginFlow__block{
    padding: 32px 20px;
  }
}

.cp2024-loginFlow__blockTitle{
  margin-bottom: 40px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width:768px){
  .cp2024-loginFlow__blockTitle{
    margin-bottom: 22px;
    padding-bottom: 17px;
    font-size: 20px;
  }
}

.cp2024-loginFlow__step{
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width:768px){
  .cp2024-loginFlow__step{
    flex-direction: column;
  }
}

.cp2024-loginFlow__step li{
  padding: 24px;
  min-height: 550px;
  background-color: var(--white-color);
  font-size: 16px;
  border: 1px solid #CCCCCC;
  position: relative;
}
@media screen and (max-width:1100px){
  .cp2024-loginFlow__step li{
    font-size: 15px;
    width: calc((270/580)*100%);
  }
}
@media screen and (max-width:768px){
  .cp2024-loginFlow__step li{
    width: 100%;
    min-height: auto;
  }
  .cp2024-loginFlow__step li img{
    width: 100%;
    min-height: auto;
  }
}

.cp2024-loginFlow__step li:not(:last-child)::after{
  margin: auto;
  content: "";
  display: block;
  width: 20px;
  height: 29px;
  background: transparent url(../../cmn/images/icon/icon_arrow_yellow.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -32px;
}
@media screen and (max-width:768px){
  .cp2024-loginFlow__step li:not(:last-child)::after{
    width: 24px;
    height: 18px;
    transform: rotate(90deg);
    top: auto;
    right: 0;
    bottom: -30px;
    left: 0;
  }
}

.cp2024-loginFlow__step li .c-counterLabel{
  margin: 0 auto 12px;
}

.cp2024-loginFlow__stepLead{
  margin-bottom: 16px;
  font-weight: bold;
  font-size: inherit;
  text-align: center;
  letter-spacing: normal;
}

.cp2024-loginFlow__stepText{
  margin-top: 16px;
  line-height: 1.8;
  font-size: inherit;
}