@charset "UTF-8";
/* --------------------------
flow_select
-------------------------- */
.flow_select{
  background: #EFF2E4;
  border-radius: 20px;
  padding: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /*gap: 0 3.2rem;*/
  margin-bottom: 50px;
}
.flow_select_ttl{
  width: 100%;
  text-align: center;
}
.flow_select_ttl h2{
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.flow_select_ttl h2::before,
.flow_select_ttl h2::after {
  background-color: #161b15; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 3px; /* 線の高さ */
  width: 28px; /* 線の長さ */
}
.flow_select_ttl h2::before {
  margin-right: 5px; /* 文字との余白 */
  transform: rotate(60deg); /* 傾ける */
}
.flow_select_ttl h2::after {
  margin-left: 5px; /* 文字との余白 */
  transform: rotate(-60deg); /* 傾ける */
}

.flow_select >div{
	width: calc(100% / 2);
	border-right: 1px solid #000;
	padding: 0 1em;
  }
.flow_select >div:last-child{
    border-left: none;
	border-right: none;
	padding-right: 0;
  }
.flow_select h3{
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: .8rem;
}
.flow_select h3 span{
  font-weight: 700;
}

fieldset.form_list{
	width: 90%;
	margin: 0 auto;
}
@media only screen and (max-width: 736px) {
	fieldset.form_list{
		width: 100%;
		margin: 0 auto;
	}
}
.flow_select fieldset.form_list.btn_check.col2 span{
  width: calc(50% - 1.6rem);
}
.flow_select fieldset.form_list.btn_check span > label{
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #AACC03;
  background: #eff2e4;
  border-radius: 40px;
  box-shadow: none;
  padding: 1.3em 0.4em;
  margin: 0 auto;
  width: 100%;
  height: 56px;
	line-height: 14px;
  align-items: center;
}
.flow_select fieldset.form_list.btn_check span > label .font12{
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 736px) {
  .flow_select{
    padding: 1em 1.5em;
  }
  .flow_select_ttl h2 {
    font-size: 1.8rem;
  }
  .flow_select h3{
    font-size: 1.6rem;
  }
  .flow_select .flow_select_ttl,
  .flow_select >div{
    width: 100%;
  }
  .flow_select fieldset.form_list.btn_check{
    display: flex;
    justify-content: space-between;
  }
  .flow_select fieldset.form_list.btn_check span > label{
    width: 100%;
  }
  .flow_select fieldset.form_list.btn_check.col2 span{
    width: calc(50% - .8rem);
  }
	.flow_select >div{
		border: none;
		padding: 1em 0;
		border-bottom: 1px solid #000;
		margin-bottom: 1em;
		}
  .flow_select >div:last-child{
    border-left: none;
	  border-bottom: none;
	  margin-bottom: 0;
  }
}
/* --------------------------
flow_result
-------------------------- */
.flow_result{
  margin-bottom: 4.8rem;
}
.flow_result > div:not(.start_step){
  display: none;
}
.flow_result > div:not(.start_step).active{
  display: block;
}

/* --------------------------
flow_step
-------------------------- */
.flow_step{
  text-align: center;
}
.flow_step h2{
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.flow_step h2 >span:not([class]){
  background: linear-gradient(transparent 60%, #FF0 30%);
  display: inline-block;
  align-self: center;
}
.flow_step h2 .step_easy{
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0 4rem;
  margin-top: 1.6rem;
  position: relative;
}
.flow_step h2 .step_easy span{
  color: #E60012;
  font-size: 6.4rem;
  font-weight: 600;
  padding: 0 1rem;
}
.flow_step h2 .step_easy::before{
	content: "";
	display: block;
	width: 2.5rem;
  aspect-ratio: 25 / 41;
	position: absolute;
	bottom: 20px;
	left: 0;
	background: url(/img/common/renew2026/icon_ttl_deco_blue.svg) bottom left no-repeat;
	background-size: contain;
}
.flow_step h2 .step_easy::after{
	content: "";
	display: block;
	width: 2.5rem;
  aspect-ratio: 25 / 41;
	position: absolute;
  bottom: 20px;
	right: 0;
	background: url(/img/common/renew2026/icon_ttl_deco_pink.svg) bottom right no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 736px) {
.flow_step h2 {
    font-size: 1.8rem;
  }
}



/* --------------------------
flow_block
-------------------------- */
.flow_block >li{
  border-radius: 10px;
  border: 4px solid #AACC03;
  position: relative;
  margin-bottom: 7.2rem;
}
.flow_block >li:after{
  content: "";
  width: 140px;
  aspect-ratio: 140 / 24;
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translate(-50%,100%);
  background: #AACC03;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media only screen and (max-width: 736px) {
  .flow_block>li {
      margin-bottom: 3.4rem;
    }

    .flow_block>li:after {
      aspect-ratio: 140 / 18;
      bottom: -14px;
    }
    /* SPのみstickey */
    .flow_block>li .ttl_step {
      position: sticky;
      top: 10px;
      z-index: 1;
      transition: .3s all;
    }
    .flow_block>li .ttl_step.is-sticky-on-sp >div{
      border-radius: 5px;
      overflow: hidden;
    }
    .flow_block>li .ttl_step.is-sticky-on-sp >div >p{
      font-size: 1.4rem;
    }

      .header.up-hide.down-show~* .flow_block>li .ttl_step,
      .header.up-hide.down-show~.flow_block>li .ttl_step {
        top: 90px;
      }
}

/* --------------------------
ttl_step
-------------------------- */
.ttl_step >div{
  display: flex;
	align-items: center;
  flex-wrap: nowrap;
  gap: 1.6rem;
  padding: .8rem 1.6rem;
  background: #AACC03;
}
.ttl_step >div p{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.ttl_step >div p:not([class]) span{
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
}
.ttl_step >div p.btn_more{
  margin-left: auto;
}
.ttl_step >div p.btn_more a{
  width: 56px;
  aspect-ratio: 1 / 1;
  display: grid;
  align-content: center;
  place-items: center;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  border: 2px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
}
.ttl_step >div p.btn_more a:before{
	content: "";
	display: block;
  width: 2.5rem;
  aspect-ratio: 25 / 5;
  margin: 5px;
	background: url(/img/flow/renew2026/ico_more.svg) center center no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 736px){
  .ttl_step >div{
  gap: .8rem;
 }
  .ttl_step >div p{
    font-size: 1.8rem;
  }
}

/* --------------------------
contents_step
-------------------------- */
.contents_step{
  padding: 4rem 8rem;
}
@media only screen and (max-width: 736px){
  .contents_step{
    padding: 1.6rem;
  }
}

/* --------------------------
btn_tab
-------------------------- */
ul.btn_tab{
  width: 100%;
}
ul.btn_tab li a{
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 10px 10px 0 0 !important;
  border:none;
  border-bottom: 1px solid #000;
  padding: .8rem;
  background: #EEE;
}
ul.btn_tab li a.active{
  color: #000;
  font-weight: 700;
  border: 1px solid #000;
  border-bottom: none;
  background: #fff;
}
ul.btn_tab li a.active:before{
  content: none;
}
ul.btn_tab li a >img{
  margin-right: 1rem;
}

/* --------------------------
ttl_bg
-------------------------- */
.ttl_bg{
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  background: #D2E08D;
  padding: .8rem 1.2rem;
  margin-bottom: 0.8rem;
}
.ttl_bg h3{
  text-align: center;
}
@media only screen and (max-width: 736px){
  .ttl_bg h3{
    font-size: 1.8rem;
  }
}
/* &.gray */
.ttl_bg.gray{
  font-weight: 400;
  background: #EEE;
}
.ttl_bg.gray h4{
  font-weight: 400;
}
@media only screen and (max-width: 736px){
  .ttl_bg.gray h4{
    font-size: 1.6rem;
  }
}
/* --------------------------
preparation_list
-------------------------- */
.preparation_list{
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.6rem;
}
.preparation_list li{
  font-weight: 700;
}

/* --------------------------
btn_base
-------------------------- */
.btn_base.white,
.btn_base.black{
  margin-bottom: .8rem;
}
.btn_base.white a,
.btn_base.black a{
  font-size: 1.6rem;
  font-weight: 400;
  padding: .8rem 1.2rem;
  border-width: 1px;
  box-shadow: none;
  min-width: 293px;
}
.btn_base.white a >span,
.btn_base.black a >span{
  display: block;
}
.btn_base.white a:hover,
.btn_base.black a:hover{
  transform: none;
}
.btn_base.white a>span:after,
.btn_base.black a>span:after{
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 736px){
  .btn_block:has(.btn_base.white),
  .btn_block:has(.btn_base.black){
    display: block;
  }

  .btn_base.white,
  .btn_base.black{
    margin: 0 0 .8rem;
  }
  .btn_base.white a,
  .btn_base.black a{
    min-width: inherit;
    width: 100%;
  }
}

/* --------------------------
accordion_wrap
-------------------------- */
.accordion_wrap{
  border-radius: 10px;
  border: 1.6px solid #B5B5B5;
  background: #FFF;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.accordion_wrap .accordion_ttl{
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.6rem;
}
.accordion_wrap .accordion_ttl:before{
  right: 16px;
}
.accordion_wrap .accordion_ttl:after{
  right: 23px;
}
.accordion_wrap .accordion_ttl.active +.accordion_inner:before{
  content: "";
  display: block;
  width: calc(100% - 3.2rem);
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #B5B5B5;
}
.accordion_wrap .accordion_inner{
  padding: 1.6rem;
}
@media only screen and (max-width: 736px) {
  .accordion_wrap .accordion_ttl{
    padding: 1.6rem;
  }
  .accordion_wrap .accordion_inner {
    padding: 1.6rem 1rem;
  }
}

/* --------------------------
line_txt
-------------------------- */
.line_txt{
  background: linear-gradient(transparent 60%, #FF0 30%);
}

/* --------------------------
list_attention
-------------------------- */
.list_attention{
  margin-bottom: 0.8rem;
}
.list_attention li{
  position: relative;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.list_attention li:before{
  content: "※";
}

/* --------------------------
btn_web_apply
btn_shop_apply
-------------------------- */
p.btn_web_apply,
p.btn_shop_apply{
  flex: 1;
  margin-bottom: .8rem;
}
p.btn_web_apply a,
p.btn_shop_apply a{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 1.6rem 1.6rem 1.6rem 5.6rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  min-width: 330px;
  position: relative;
}
p.btn_web_apply a:before,
p.btn_shop_apply a:before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
}
p.btn_web_apply a{
  border: 2px solid #EA6068;
  background: #EA6068;
}
p.btn_web_apply a:before{
  width: 49px;
  aspect-ratio: 49 / 64;
  background: url(/img/flow/renew2026/ico_web_apply.svg) center bottom no-repeat;
}
p.btn_shop_apply a{
  border: 2px solid #00A2DE;
  background: #00A2DE;
}
p.btn_shop_apply a:before{
  width: 49px;
  aspect-ratio: 49 / 48;
  background: url(/img/flow/renew2026/ico_shop_apply.svg) center bottom no-repeat;
}

@media only screen and (max-width: 736px) {
  .btn_block:has(.btn_web_apply){
    display: block;
  }
  p.btn_web_apply a,
  p.btn_shop_apply a{
    min-width: inherit;
  }
}

/* --------------------------
ttl_start_step
-------------------------- */
.ttl_start_step{
  display: table;
  table-layout: fixed;
  margin: 0 auto;
  position: relative;
}
.ttl_start_step::before{
	content: "";
	display: block;
	width: 2.5rem;
  aspect-ratio: 25 / 41;
	position: absolute;
	bottom: 20px;
	left: 0;
	background: url(/img/common/renew2026/icon_ttl_deco_blue.svg) bottom left no-repeat;
	background-size: contain;
}
.ttl_start_step::after{
	content: "";
	display: block;
	width: 2.5rem;
  aspect-ratio: 25 / 41;
	position: absolute;
  bottom: 20px;
	right: 0;
	background: url(/img/common/renew2026/icon_ttl_deco_pink.svg) bottom right no-repeat;
	background-size: contain;
}
.ttl_start_step p{
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 0 5rem;
}


/* --------------------------
popup(flow common)
-------------------------- */
.mfp-bg{
  background: #A6A6A6;
}
.mfp-auto-cursor .mfp-content{
  border-radius: 10px;
  background: #fff;
  width: auto;
  padding: 1.6rem;
}
.mfp-auto-cursor .mfp-content .inner{
  padding: 4.8rem 0 4rem;
}
.mfp-close-btn-in .mfp-close{
  color: #1C1B1F;
}
/* --------------------------
popup(.btn_question)
-------------------------- */
.btn_question a{
  text-decoration: none;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: .8rem;
}

/* --------------------------
popup(flow_anchor)
-------------------------- */
.flow_anchor{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
 .flow_anchor li a{
  color: #333;
  display: flex;
  gap: .8rem;
  text-decoration: none;
  border-bottom: 1px solid #B5B5B5;
  padding: 1rem 3rem 1rem 0;
  position: relative;
 }
 .flow_anchor li a:after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #AACC03;
  border-right: 2px solid #AACC03;
  position: absolute;
  top: 50%;
  right: .8rem;
  transform: translateY(-50%) rotate(45deg);
 }
 .flow_anchor li a p{
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
 }
 .flow_anchor li a p span{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: #AACC03;
  padding: 0 8px;
 }

/* --------------------------
popup(flow_mnp_popup)
-------------------------- */
.ttl_mnp{
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #B5B5B5;
  margin-bottom: 0.8rem;
}


/* --------------------------
ttl_howto
-------------------------- */
.ttl_howto{
	font-size: 2.2rem;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 736px) {
  .ttl_howto:before{
    left: 50%;
    transform: translateX(-50%);
  }
}


/* --------------------------
ttl_border
-------------------------- */
.ttl_border{
	position: relative;
	font-size: 2.2rem;
	text-align: left !important;
  max-width: 1000px;
  padding-left: 2.2rem;
  margin: 0 auto 2rem;
}
.ttl_border:before{
	content: "";
	width: 15px;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border-radius: 2px;
	background: #AACC03;
}
.ttl_border h3{
	text-align: left !important;
}
@media only screen and (max-width: 736px) {
  .ttl_border{
      margin: 0 1.6rem 2rem;
  }
}

/* --------------------------
slide_contents
-------------------------- */
.slide_contents > div a img {
  width: calc(100% - 15px);
}



/* --------------------------
CVボタンのタイトル
-------------------------- */
.btn_block_ttl{
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.btn_block_ttl::before,
.btn_block_ttl::after {
  background-color: #161b15; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 3px; /* 線の高さ */
  width: 28px; /* 線の長さ */
}
.btn_block_ttl::before {
  margin-right: 5px; /* 文字との余白 */
  transform: rotate(60deg); /* 傾ける */
}
.btn_block_ttl::after {
  margin-left: 5px; /* 文字との余白 */
  transform: rotate(-60deg); /* 傾ける */
}