@-webkit-keyframes opening_mv {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opening_mv {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes opening_logo {
  0% {
    width: 300px;
  }
  100% {
    width: 140%;
  }
}

@keyframes opening_logo {
  0% {
    width: 300px;
  }
  100% {
    width: 140%;
  }
}

@-webkit-keyframes scroll_anime {
  0% {
    bottom: 20px
  }
  18% {
    bottom: 26px
  }
  36% {
    bottom: 20px
  }
  100% {
    bottom: 20px;
  }
}

@keyframes scroll_anime {
  0% {
    bottom: 20px
  }
  18% {
    bottom: 26px
  }
  36% {
    bottom: 20px
  }
  100% {
    bottom: 20px;
  }
}

.topvisual {
  position: relative;
  width: 100%;
  padding: 30px 2% 90px;
  background: linear-gradient(
    to right,
    #5F32A0 50%,
    #0094D3 50%
  );
}

.topvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img_b/top/bg_mv.svg) top center no-repeat;
  background-size: cover;
}

.topvisual .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.topvisual h2 {
  padding: 0 2%;
  position: relative;
  z-index: 9;
  margin-bottom: -5%;
}

.topvisual h2 .date {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
}

.topvisual .benefit_block {
  position: relative;
  z-index: 99;
  display: flex;
  column-gap: 4%;
  justify-content: space-between;
  align-items: stretch;
}

.topvisual .benefit_box {
  background: #FFF;
  border-radius: 20px;
  flex-basis: 48%;
  padding: 20px 20px 50px;
  text-align: center;
  position: relative;
}

.topvisual .benefit_box .tit {
  background: #5F32A0;
  border-radius: 30px;
  line-height: 60px;
  color: #FFF;
  font-size: min(2.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.topvisual .benefit_box.blue .tit {
  background: #0094D3;
}

.topvisual .benefit_box .lead {
  font-size: min(2.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}

.topvisual .benefit_box .price {
  color: #5F32A0;
  font-weight: 700;
  font-size: min(2vw, 3.6rem);
  line-height: 1.0;
}

.topvisual .benefit_box.blue .price,
.topvisual .benefit_box.blue .price em {
  color: #0094D3;
}

.topvisual .benefit_box .price span {
  background: #ECE6F4;
  font-size: 2.0rem;
  display: inline-block;
  vertical-align: middle;
  padding: 12px 15px;
  border-radius: 7px;
  transform: translateY(-36%);
  margin-right: 15px;
}

.topvisual .benefit_box .price em {
  color: #5F32A0;
  font-weight: 800;
  font-size: min(8vw, 10.4rem);
  padding-right: 5px;
}

.topvisual .benefit_box .price small {
  font-size: min(6vw, 6.4rem);
}

.topvisual .benefit_box .target_box {
  display: flex;
  line-height: 1.3;
  width: 90%;
  margin: 10px auto 0;
  border-radius: 10px;
  font-size: 2.0rem;
  font-weight: 700;
  border: 1px solid rgba(160,160,160,.3);
  overflow: hidden;
}

.topvisual .benefit_box .target_box dt {
  flex-basis: 30%;
  background: #8C6CB9;
  color: #FFF;
  padding: 20px 0;
  display: grid;
  place-items: center;
}

.topvisual .benefit_box.blue .target_box dt {
  background: #3DACDB;
}

.topvisual .benefit_box .target_box dd {
  flex-basis: 70%;
  background: rgba(160,160,160,.12);
  padding: 15px 20px;
  text-align: left;
  display: grid;
  place-items: center;
  justify-items: start;
}

.topvisual .benefit_box .target_box .check {
  padding-left: 30px;
  background: url(../img_b/top/icon_check01.svg) 0 2px no-repeat;
  background-size: 22px auto;
  margin-bottom: 6px;
}

.topvisual .benefit_box.blue .target_box .check {
  background-image: url(../img_b/top/icon_check02.svg);
}

.topvisual .benefit_box .target_box .check:last-child {
  margin-bottom: 0;
}

.topvisual .benefit_box .arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,50%);
  width: 50px;
}

.topvisual .notice {
  text-align: right;
  color: #FFF;
  font-size: 1.2rem;
  margin-top: 15px;
  line-height: 1.0;
}

@media screen and (max-width: 760px) {
.topvisual {
  padding: 4% 0% 15%;
}

.topvisual::before {
  background-size: auto 108%;
}

.topvisual h2 {
  padding: 0 2%;
  margin-bottom: 12%;
}

.topvisual h2 .date {
  bottom: -3%;
  width: 86%;
}

.topvisual .benefit_block {
  display: block;
  padding: 0 4%;
}

.topvisual .benefit_box {
  border-radius: 10px;
  padding: 4% 4% 5%;
}

.topvisual .benefit_box:last-child {
  margin-top: 6%;
}

.topvisual .benefit_box .tit {
  line-height: 36px;
  font-size: 1.6rem;
  margin-bottom: 3%;
}

.topvisual .benefit_box .lead {
  font-size: 1.4rem;
  margin-bottom: 1%;
}

.topvisual .benefit_box .price {
  font-size: 1.6rem;
}

.topvisual .benefit_box .price span {
  font-size: 1.3rem;
  padding: 7px 12px;
  transform: translateY(-36%);
  margin-right: 3%;
  border-radius: 4px;
}

.topvisual .benefit_box .price em {
  font-size: 5.4rem;
  padding-right: 3px;
}

.topvisual .benefit_box .price small {
  font-size: 3.6rem;
}

.topvisual .benefit_box .target_box {
  margin: 1% auto 0;
  border-radius: 6px;
  font-size: 1.3rem;
  width: 100%;
}

.topvisual .benefit_box .target_box dt {
  flex-basis: 30%;
  padding: 4% 0;
}

.topvisual .benefit_box .target_box dd {
  flex-basis: 70%;
  padding: 4% 3%;
}

.topvisual .benefit_box .target_box .check {
  padding-left: 22px;
  background-size: 15px auto;
}

.topvisual .benefit_box .target_box .check:last-child {
  margin-bottom: 0;
}

.topvisual .benefit_box .arrow {
  width: 30px;
}

.topvisual .notice {
  font-size: 1.0rem;
  margin-top: 4%;
}

}


/* section_howto */
.section_howto {
  background: linear-gradient(
    to right,
    #5F32A0 50%,
    #0094D3 50%
  );
}

.section_howto .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.section_howto .howto_block {
  flex-basis: 50%;
  text-align: center;
  position: relative;
  background: #5F32A0;
  padding-right: 2%;
  padding-bottom: 100px;
}

.section_howto .howto_block.blue {
  background: #0094D3;
  padding-right: 0;
  padding-left: 2%;
}

.section_howto .howto_block.blue {
  background: #0094D3;
}

.section_howto .howto_block .icon {
  width: 116px;
  margin: -58px auto 15px;
}

.section_howto .howto_block .catch {
  font-size: min(3vw, 3.4rem);
  font-weight: 700;
  color: #FFF;
  line-height: 1.0;
  margin-bottom: 30px;
}

.section_howto .howto_box {
  padding: 0 8%;
}

.section_howto .howto_box .box {
  background: #FFF;
  border-radius: 12px;
}

.section_howto .howto_box .box:not(:last-child) {
  margin-bottom: 30px;
  position: relative;
}

.section_howto .howto_box .box:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #FFF;
  opacity: .6;
}

.section_howto .howto_box .step_tit {
  background: rgba(74,32,135,.15);
  padding: 20px;
  border-radius: 12px 12px 0 0;
}

.section_howto .blue .howto_box .step_tit {
  background: rgba(0,148,211,.1);
}

.section_howto .howto_box .step_tit .num {
  color: #5F32A0;
  font-size: 2.0rem;
  margin-bottom: 8px;
}

.section_howto .blue .howto_box .step_tit .num {
  color: #0094D3;
}

.section_howto .howto_box .step_tit h4 {
  font-size: min(2.4vw, 2.8rem);
  line-height: 1.0;
  font-weight: 700;
}

.section_howto .howto_box .box_inner {
  padding: 20px 40px 40px;
}

.section_howto .howto_box .txt {
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.section_howto .howto_box .txt a {
  color: #0094D3;
  text-decoration: underline;
}

.section_howto .howto_box .txt em {
  color: #0094D3;
  font-weight: 800;
}

.section_howto .howto_box .ph.w80 {
  padding: 0 10%;
}

.section_howto .howto_box .notice {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: .5;
  text-align: left;
  margin-top: 20px;
}

.section_howto .howto_box .last {
  border: 8px solid rgba(74,32,135,.15);
  padding: 30px;
}

.section_howto .blue .howto_box .last {
  border: 8px solid rgba(0,148,211,.2);
}

.section_howto .howto_box .last .lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.section_howto .howto_box .last .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #5F32A0;
  line-height: 1.3;
}

.section_howto .blue .howto_box .last .price {
  color: #0094D3;
}

.section_howto .howto_box .last .price strong {
  font-size: 6.4rem;
  background: linear-gradient(transparent 60%, #FFF15C 60% 85%,#FFF 85%);
  vertical-align: middle;
  font-weight: 800;
  display: inline-block;
}

.section_howto .howto_box .last .price small {
  font-size: 3.0rem;
  padding: 0 4px;
}

.section_howto .howto_box .last .price span {
  font-size: 1.6rem;
  padding-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

@media screen and (max-width: 761px) {
.section_howto {
  background: none;
  margin-top: 2px;
}

.section_howto .inner {
  display: block;
}

.section_howto .howto_block {
  padding: 0 6% 12%;
}

.section_howto .howto_block.blue {
  padding: 0 3% 12%;
}

.section_howto .howto_block .icon {
  width: 76px;
  transform: translateY(-50%);
  margin: 0 auto 4%;
}

.section_howto .howto_block .catch {
  font-size: 2.4rem;
  margin-top: -40px;
  margin-bottom: 5%;
  line-height: 1.2;
}

.section_howto .howto_box {
  padding: 0;
}

.section_howto .howto_box .box {
  border-radius: 6px;
}

.section_howto .howto_box .box:not(:last-child) {
  margin-bottom: 20px;
}

.section_howto .howto_box .box:not(:last-child)::after {
  bottom: -15px;
  width: 22px;
  height: 10px;
}

.section_howto .howto_box .step_tit {
  padding: 4%;
  border-radius: 6px 6px 0 0;
}

.section_howto .howto_box .step_tit .num {
  font-size: 1.2rem;
  margin-bottom: 2%;
}

.section_howto .howto_box .step_tit h4 {
  font-size: 1.8rem;
}

.section_howto .howto_box .box_inner {
  padding: 4% 5% 5%;
}

.section_howto .howto_box .txt {
  margin-bottom: 4%;
}

.section_howto .howto_box .ph.w80 {
  padding: 0 5%;
}

.section_howto .howto_box .notice {
  font-size: 1.0rem;
  margin-top: 4%;
}

.section_howto .howto_box .last {
  border: 6px solid rgba(74,32,135,.15);
  padding: 5%;
}

.section_howto .blue .howto_box .last {
  border: 6px solid rgba(0,148,211,.2);
}

.section_howto .howto_box .last .lead {
  font-size: 1.4rem;
}

.section_howto .howto_box .last .price {
  font-size: 2.2rem;
}

.section_howto .howto_box .last .price strong {
  font-size: 4.4rem;
  display: inline-flex;
  align-items: flex-end;
}

.section_howto .howto_box .last .price small {
  font-size: 2.2rem;
  padding: 0 1%;
}

.section_howto .howto_box .last .price span {
  font-size: 1.3rem;
  padding-right: 2%;
}
}


/* section_detail */
.section_detail {
  padding: 80px 0;
  background: #F9F9F9;
}

.section_detail .title_box {
  margin-bottom: 30px;
  text-align: center;
}

.section_detail .title_box h3 {
  font-size: 10rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5F32A0;
  opacity: .3;
  margin-bottom: -10px;
}

.section_detail .title_box .stit {
  font-size: 2.8rem;
  font-weight: 700;
}

.section_detail .content_block {
  background: #FFF;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 6px;
  padding: 60px 80px 80px;
  margin-bottom: 40px;
  text-align: center;
}

.section_detail .content_block:last-child {
  margin-bottom: 0;
}

.section_detail .content_block h4 {
  font-size: 3.6rem;
  color: #5F32A0;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 30px;
}

.section_detail .detail_block dt {
  background: #5F32A0;
  color: #FFF;
  line-height: 60px;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 6px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.section_detail .detail_block dd {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.section_detail .detail_block dd mark {
  color: #5F32A0;
  font-weight: 700;
  display: inline;
  padding: 0 6px;
  background: #FFF15C;
}

.section_detail .detail_block dd.date {
  font-size: 2.4rem;
  vertical-align: bottom;
  line-height: 1.5;
  display: block;
}

.section_detail .detail_block dd.date em {
  font-size: 5.2rem;
  vertical-align: bottom;
  line-height: 1.0;
  padding: 0 4px;
}

.section_detail .detail_block dd.target {
  font-size: 3.0rem;
}

.section_detail .detail_block dd.small {
  font-size: 1.8rem;
  text-align: left;
  font-weight: 500;
}

.section_detail .detail_block dd .check {
  font-size: 3.0rem;
  padding-left: 40px;
  background: url(../img_b/top/icon_check01.svg) 0 10px no-repeat;
  background-size: 27px auto;
  text-align: left;
}

.section_detail .detail_block small {
  font-size: 1.2rem;
  opacity: .5;
  line-height: 1.6;
  display: block;
  margin-top: 10px;
}

.section_detail .caution_list li {
  padding-left: 20px;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.section_detail .caution_list li:last-child {
  margin-bottom: 0;
}

.section_detail .caution_list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 13px;
  background: #5F32A0;
  border-radius: 50%;
}


@media screen and (max-width: 761px) {
.section_detail {
  padding: 10% 3% 12%;
}

.section_detail .inner {
  padding: 0;
}

.section_detail .title_box {
  margin-bottom: 3%;
}

.section_detail .title_box h3 {
  font-size: 5.4rem;
  margin-bottom: -3%;
}

.section_detail .title_box .stit {
  font-size: 1.8rem;
}

.section_detail .content_block {
  border-radius: 4px;
  padding: 6% 5%;
  margin-bottom: 6%;
}

.section_detail .content_block h4 {
  font-size: 1.8rem;
  margin-bottom: 4%;
}

.section_detail .detail_block dt {
  line-height: 32px;
  font-size: 1.4rem;
  border-radius: 3px;
  margin-top: 6%;
  margin-bottom: 4%;
}

.section_detail .detail_block dd {
  font-size: 1.4rem;
}

.section_detail .detail_block dd mark {
  padding: 0 6px;
}

.section_detail .detail_block dd.date {
  font-size: 1.4rem;
}

.section_detail .detail_block dd.date em {
  font-size: 2.8rem;
  padding: 0 1%;
}

.section_detail .detail_block dd.target {
  font-size: 1.6rem;
}

.section_detail .detail_block dd.small {
  font-size: 1.3rem;
}

.section_detail .detail_block dd .check {
  font-size: 1.5rem;
  padding-left: 20px;
  background: url(../img_b/top/icon_check01.svg) 0 6px no-repeat;
  background-size: 15px auto;
}

.section_detail .detail_block small {
  font-size: 1.0rem;
  margin-top: 10px;
}

.section_detail .caution_list li {
  padding-left: 18px;
  font-size: 1.2rem;
  margin-bottom: 2%;
}

.section_detail .caution_list li::before {
  top: 4px;
  width: 12px;
  height: 12px;
}

}
