body {
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: normal;
  color: var(--txt);
  min-width: 320px;
}

:root {
  /* fonts */
  --font-rounded-mplus-1c: "M PLUS Rounded 1c";
  --font-noto-sans-jp: "Noto Sans JP";
  /* Colors */
  --white: #fff;
  --txt: #3D3937;

  --color-black: #000;
  --color-lemonchiffon: #fff6E5;
  --color-yellow: #FFB432;
  --color-yellow2: #FAE25A;
  --color-orange: #FF8400;
  --color-beige: #F9F4F1;
  --color-red: #D62D26;
  --color-pink: #f929a8;
  --color-skyblue: #B2C3EF;
  --color-blue: #406AD6;
  --color-blu2: #1947b5;
  --color-light-blue: #72E6FF;
  --color-navy: #002DC3;

  --btn-yellow: #F7E885;

  /* Paddings */
  --padding-5xl: 24px;
  --padding-xl: 20px;

  /* Border radiuses */
  --br-10xs: 3px;
  --br-100xl-4: 119.4px;
  --br-81xl: 100px;
  --br-3xs: 10px;
  --br-sm: 14px;
  --br-mini: 15px;
}

button {
  display: block;
  margin: auto;
  width: 100%;
}
img {
  width: 100%;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
p a{
  text-decoration: underline;
}
.asterisk{
  font-size: 0.7em;
  vertical-align: top;
}

footer{
  margin-top: 50px;
}

.inner {
  padding: 0 16px;
  margin: auto;
}
.fv {
  width: 100%;
}
.fv_bg {
  background-color: var(--color-light-blue);
  width: 100%;
  height: auto;
  text-align: center;
}
.fv_bg .fv_head {
  font-weight: bold;
  padding: 3px 0;
  font-size: 24px;
  color: #D90334;
}
.fv_bg .fv_period {
  font-weight: bold;
  padding: 3px 0;
  font-size: 14px;
}
/* 418 */
.stripe {
  background-image: url(./public/stripe.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 0 .94rem 4rem;
}
.end-text{
  padding: 15px 0;
  font-size: 24px;
  font-weight: bold;
  color: #D90334;
  text-align: center;
}
.cards {
  width: 100%;
  padding-top: 2rem;
  margin: 0 auto;
  display: flex;
  gap: .94rem;
  justify-content: center;
}
.cards .card {
  width: 50%;
  padding: 15px 5px;
  border-radius: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
}
.cards .card.pink {
  background-color: var(--color-pink);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-pink);
}
.cards .card.blue {
  background-color: var(--color-blu2);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-blu2);
}
.cards .card .title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.cards .card .title-line .line {
  flex: 1;
  height: 1px;
  background-color: white;
  margin: 0 8px;
}
.cards .card .title-line .title {
  font-weight: bold;
  font-size: 1.25rem;
  white-space: nowrap;
}
.cards .card .text {
  font-size: 0.9rem;
  margin-top: 8px;
}
.cards .card .text span {
  font-size: 0.75rem;
}
.point_img {
  width: 100%;
  margin: 2.999rem auto 0;
}
.point_text {
  text-align: center;
  font-size: 10px;
  margin-top: 15px;
  font-weight: bold;
}
/* benefits1 */
.benefits1 {
  width: 100%;
  padding: 30px 0 90px;
  background-color: var(--color-pink);
  position: relative;
}
.benefits1 .circle {
  position: absolute;
  top: -50px; /* ピンクからはみ出す位置 */
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 80px;
  background-color: var(--color-pink);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
  padding-top: 10px;
}
.benefits1 .circle .label {
  font-size: 30px;
}
.benefits1 .contents {
  width: 100%;
  padding: 0 .94rem;
  
}
.benefits1 .contents .title {
  font-size: 20px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.benefits1 .contents .box {
  width: min(100%, 360px);
  margin: 20px auto 0;
  background-color: white;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 15px;
}

.benefits1 .contents .box .step {
  color: var(--color-pink);
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}

.benefits1 .contents .box .text {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}

.benefits1 .contents .box .btn {
  width: 100%;
  color: white;
  background-color: #D90334;
  height: 70px;
  padding: 0 2rem;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
}

.benefits1 .contents .box .btn.-end {
  background-color: #868586;
}

.benefits1 .contents .box .btn.-end button{
  pointer-events: none;
}

.benefits1 .contents .box .btn img {
  width: 40px;
  height: auto;
  display: block;
}

.benefits1 .contents .box .attention {
  font-size: 12px;
  margin-top: 15px;
}
.benefits1 .contents .box .attention .red {
  color: #EF3A3A;
  font-weight: bold;
}
/* benefits2 */
.benefits2 {
  width: 100%;
  padding: 30px 0;
  margin-top: 1px;
  background-color: var(--color-blu2);
  position: relative;
}
.benefits2 .circle {
  position: absolute;
  top: -50px; /* ピンクからはみ出す位置 */
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 80px;
  background-color: var(--color-blu2);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
  padding-top: 10px;
  border: 1px solid white;
  border-bottom: none;
}
.benefits2 .circle .label {
  font-size: 30px;
}
.benefits2 .circle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: calc(100% + 10px);
  height: 30px;
  background-color: var(--color-blu2)
}
.benefits2 .contents {
  width: 100%;
  padding: 0 .94rem;
  
}
.benefits2 .contents .title {
  font-size: 20px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.benefits2 .contents .box {
  width: min(100%, 360px);
  margin: 20px auto 0;
  background-color: white;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 15px 15px 30px 15px;
}

.benefits2 .contents .box .step {
  color: var(--color-blu2);
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}

.benefits2 .contents .box .text {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
}
.benefits2 .contents .box .text02 {
  text-align: center;
  color: #EF3A3A;
  font-size: 14px;
}

.benefits2 .contents .box .btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 20px;
  font-weight: bold;
}

.benefits2 .contents .box .btn_text .red {
  color: #EF3A3A;
  font-weight: bold;
}

.benefits2 .contents .box .btn_text .center {
  text-align: center;
}

.benefits2 .contents .box .btn_text::before,
.benefits2 .contents .box .btn_text::after{
  content: "";
  margin: .1em .5em;
  width: 0;
  height: 2em;
  display: block;
  border-right: 1px solid var(--color-blu2);
  transform: rotate(-20deg);
}
.benefits2 .contents .box .btn_text::after{
  transform: rotate(20deg);
}

.benefits2 .contents .box a {
  width: 100%;
  display: block;
}

.benefits2 .contents .box .btn1 {
  width: 100%;
  color: var(--color-blu2);
  background-color: #F5F5F5;
  height: 70px;
  border: 2px solid var(--color-blu2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 10px auto 0;
  padding: 0 0.5rem;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
}

.benefits2 .contents .box .btn1.-end {
  font-size: 20px;
  color: #fff;
  background-color: #868586;
  border-color: #868586;
}

.benefits2 .contents .box .btn1.-end button{
  pointer-events: none;
}

.benefits2 .contents .box .btn1 img {
  width: 40px;
}

.benefits2 .contents .box .btn2 {
  position: relative;
  width: 100%;
  color: white;
  background-color: #156CE2;
  height: 70px;
  border: 2px solid var(--color-blu2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 10px auto 0;
  padding: 0 .5rem;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
}

.benefits2 .contents .box .btn2.-end {
  font-size: 20px;
  color: #fff;
  background-color: #868586;
  border-color: #868586;
}

.benefits2 .contents .box .btn2.-end button{
  pointer-events: none;
}

.benefits2 .contents .box .btn2 img {
  width: 40px;
  position: absolute;
  right: 10px;
  top: 44%;
  transform: translateY(-50%);
}

.benefits2 .contents .box .btn2 span {
  font-size: 10px;
}

.benefits2 .contents .box .icon_triangle,
.benefits3 .contents .box .icon_triangle {
  width: 8%;
  margin: 20px auto;
}

.benefits2 .contents .box .attention {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

/* benefits3 */
.benefits3 {
  width: 100%;
  padding: 30px 0;
  background-color: var(--color-yellow2);
  position: relative;
}
.benefits3 .contents {
  width: 100%;
  padding: 0 .94rem;
  
}
.benefits3 .contents .title {
  font-size: 20px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.benefits3 .contents .box {
  width: min(100%, 360px);
  margin: 0 auto;
  padding-top: 15px;
  background-color: white;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.benefits3 .contents .box .table_title {
  color: var(--color-blu2);
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.benefits3 .contents .box .step {
  color: var(--color-yellow2);
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}

.benefits3 .contents .box .text {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
}

.benefits3 .contents .box .attention {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.benefits3 .contents .box .img01 {
  width: 42.5%;
  margin: 20px auto 0;
}

.benefits3 .contents .box .img02 {
  width: 80%;
  margin: 20px auto 30px;
}

.benefits3 .contents .box .achievement {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  font-size: 12px;
  background-color: #F5F5F5;
  border: 2px solid var(--color-blu2);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.benefits3 .contents .box .achievement .achievement_box {
  margin-top: 20px;
}

.benefits3 .contents .box .achievement .achievement_box:first-of-type {
  margin-top: 0;
}

.benefits3 .contents .box .achievement .achievement_box .achievement_title {
  background-color: var(--color-blu2);
  color: white;
  padding: 5px;
  margin-bottom: 2px;
}

.benefits3 .contents .box .achievement .achievement_attention {
  margin-top: 15px;
  color: #EF3A3A;
}

#main_fv {
  max-width: 746px;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0 auto;
}
#main_fv img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.fv_btn.round_btn {
  background-color: #a7a7a7;
  pointer-events: none;
}
.fv_btn.entry-btnStyle_checked {
  background-color: #F0642D;
  pointer-events: auto;
}

/* ボタン */
.round_btn {
  display: block;
  width: min(100%, 296px);
  height: 64px;
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  background: #F0642D;
  border-radius: 100px;
  position: relative;
}
.round_btn span {
  display: block;
}
.round_btn .txt {
  text-align: center;
}

.round_btn .small {
  font-size: 0.6em;
}
.round_btn .icon-dl,.round_btn .icon-or,.round_btn .icon-bl {
  position: absolute;
  width: 21px;
  height: 21px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.round_btn .icon-or {
  background: url(./public/btn_arrow_or.svg) top right / contain no-repeat;
}
.round_btn .icon-dl {
  background: url(./public/btn_arrow_dl.svg) top right / contain no-repeat;
}
.round_btn .icon-bl {
  background: url(./public/btn_arrow_bl.svg) top right / contain no-repeat;
}

/* アコーディオン */
.accordion_wrap {
  margin-top: 30px;
}

.accordion_wrap .dl_accordion {
  clear: both;
  width: min(100%, 360px);
  margin: 0 auto;
}

.accordion_wrap .accordion_title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--white);
}

/* アコーディオンボタン */
.accordion_wrap .dl_accordion-btn {
  position: relative;
  outline: initial;
  width: 100%;
  margin: 15px auto 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--txt);
  background: var(--white);
  border-radius: 9999px;
  box-shadow: 0px 1px 3px 0px rgba(190, 190, 190, 1);
  padding: 10px;
}  
.accordion_wrap .dl_accordion-btn.active {
  color: var(--color-navy);
  background: var(--color-skyblue);
}  
.accordion_wrap .dl_accordion-btn .inn {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  background-color: var(--color-yellow);
  border-radius: 9999px;
  right: 1em;
  margin: auto;
}
.accordion_wrap .dl_accordion-btn.active .inn {
  background-color: var(--color-navy);
}
.accordion_wrap .dl_accordion-btn .inn .line {
  position: absolute;
  display: inline-block;
  background-color: var(--color-navy);
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  transition: 0.3s;
}
.accordion_wrap .dl_accordion-btn.active .inn .line {
  background-color: var(--white);
}
.accordion_wrap .dl_accordion-btn .inn .line:nth-of-type(1) {
  top: 45%;
  left: 22%;
  transform: rotate(90deg);
}
.accordion_wrap .dl_accordion-btn .inn .line:nth-of-type(1) {
  opacity: 1;
}
.accordion_wrap .dl_accordion-btn.active .inn .line:nth-of-type(1) {
  opacity: 0;
}

/* アコーディオン内容 */
.accordion_wrap .dl_accordion .dl_toggle {
  width: 100%;
  margin: 20px auto 0;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.8;
  font-weight: bold;
  background-color: white;
  padding: 20px;
}
.accordion_wrap .dl_accordion .dl_toggle dl hr {
margin: 40px 0;
}
.accordion_wrap .dl_accordion .dl_toggle dl dt{
  margin-top: 15px;
  padding: 4px;
  background: #EEEEEE;
}
.accordion_wrap .dl_accordion .dl_toggle dl dd{
  padding: 7px;
}
.accordion_wrap .dl_accordion .dl_toggle .numbering{
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

@media (max-width: 320px){
  .cards .card .text {
    font-size: .7rem;
  }
}

@media screen and (max-width: 768px) {
  .benefits1 .contents .box .btn {
    font-size: 20px;
  }
}

.toggle {
  display: none;
}

@media screen and (min-width: 1181px) {
  .fv_bg .fv_head {
    font-size: 32px;
  }
  .fv_bg .fv_period {
    font-size: 16px;
  }
  .stripe {
    padding: 0;
    padding-bottom: 4.5rem;
  }
  .end-text{
    padding: 37px 0 50px;
    font-size: 32px;
  }
  .cards {
    width: 33rem;
    gap: 20px;
  }
  .cards .card .title-line .title {
    font-size: 1.75rem;
  }
  .cards .card .text {
    font-size: 1.3rem;
  }
  .cards .card .text span {
    font-size: 1.08rem;
  }
  .point_img {
    width: 28.25rem;
    margin: 4.32rem auto 0;
  }
  .benefits1 .contents {
    padding: 0;
  }
  .benefits1 .contents .title {
    font-size: 30px;
  }
  .benefits2 .contents {
    padding: 0;
  }
  .benefits2 .contents .title {
    font-size: 30px;
  }
  .benefits3 {
    padding: 40px 0 70px;
  }
  .benefits3 .contents .box {
    margin: 0 auto;
  }
  .benefits3 .contents .box .achievement {
    width: 360px;
  }
  .benefits2 .contents .box .icon_triangle {
    margin: 30px auto;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  #main_fv{
    max-width: 1281px;
  }
  .round_btn{
    width: min(100%, 664px);
  }
  .round_btn .small {
    font-size: 12px;
  }
  .round_btn_btm {
    font-size: 16px;
  } 
  .round_btn_btm span {
    font-size: 16px;
  }
  .round_btn_btm span::after {
    width: 1.5em;
    height: 1.5em;
  }
  .accordion_wrap .dl_accordion {
    width: 360px;
    margin: 0 auto;
  }
  .accordion_wrap .dl_accordion-btn {
    font-size: 16px;
    padding: 9px 0;
    margin-top: 10px;
  }
}