﻿@charset "utf-8";
/* CSS Document */

/* =============================================================================
 Reset
============================================================================= */

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
*,:after,:before{box-sizing:border-box}button,input[type=button]{margin:0;padding:0;border:0;border-radius:0;background-color:transparent;outline:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}





/* =============================================================================
 variable
============================================================================= */
:root {
  --color-base: #000;
  --color-black: #000;
  --color-white: #fff;
  --color-green: #049849;
}





/* =============================================================================
 Fonts
============================================================================= */

html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP","source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}





/* =============================================================================
 Elements
============================================================================= */

/* color setting */



/* link setting */
a {
  transition: opacity ease 0.4s;
  text-decoration: none;
  color: var(--color-base);
}
@media (hover: hover) {
a:hover {
  opacity: 0.4;
  text-decoration: none;
  cursor: pointer;
}
a.line:hover {
  text-decoration: underline;
}
}


/* image setting */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}



/* box */
*,*:before,*:after {
  box-sizing: border-box;
}



/* cursor */
button {
  cursor: pointer;
}





/* =============================================================================
 Responsive Class
============================================================================= */

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}





/* =============================================================================
 Base Layout & common section
============================================================================= */

.header {
  background-color: var(--color-white);
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 20;
  width: min(100%, 108rem);
  margin-inline: auto;
}
.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  padding: 0 32px 0 39px;
  line-height: 1;
}
.headerInner h1 {
  width: 18.7rem;
}
.headerInner p {
  width: 30rem;
}
@media (min-width: 768px) {
  .headerInner p {
      max-width: 26.3rem;
  }
}
@media (max-width: 767px) {
  .headerInner {
    height: calc(80/750*100vw);
    padding: 0 calc(32/750*100vw) 0 calc(39/750*100vw);
  }
  .headerInner h1 {
    width: calc(187/750*100vw);
  }
  .headerInner p {
    width: calc(300/750*100vw);
  }
}

@media (min-width: 768px) {
  .contInner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer {
  padding: 15px;
  padding-bottom: 100px;
  line-height: 1;
  background-color: var(--color-green);
  font-size: 1rem;
  text-align: center;
}
.footer small {
  color: var(--color-white);
}
@media (min-width: 1080px) {
  .footer {
      margin-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 0.1rem;
    margin-bottom: 5.2rem;
    padding-bottom: 55px;
  }
}


/* =============================================================================
 contents
============================================================================= */

/* hero */
.hero {
  height: calc(532/1200*100vw);
  position: relative;
  z-index: 1;
  max-height: 532px;
  background: #f9dbe8 url(../images/bg_mv.png) top center / auto 100% no-repeat;
}
.hero:before {
  content: '';
  display: block;
  border-radius: 100%;
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #fff681;
}
.heroInner {
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  height: calc(532/1200*100vw);
  max-height: 532px;
  background: #f9dbe8 url(../images/bg_mv.png) top center / auto 100% no-repeat;
}
.heroTitle {
  margin: 0 auto;
  padding: calc(26/1200*100%) 0 0;
  position: relative;
  z-index: 2;
  width: calc(568/1200*100%);
}
.heroTerm {
  margin: calc(-7/1200*100%) auto calc(27/1200*100%);
  position: relative;
  z-index: 2;
  width: calc(702/1200*100%);
}
.heroCopy {
  margin-left: calc(233/1200*100%);
  position: relative;
  z-index: 2;
  width: calc(696/1200*100%);
}
.heroIllust {
}
.heroIllustCB {
  position: absolute;
}
.heroIllustImg {
  position: absolute;
}
.-illust01 .heroIllustCB {
  top: calc(53/532*100%);
  left: calc(38/1200*100%);
  width: calc(252/1200*100%);
}
.-illust01 .heroIllustImg {
  top: calc(205/532*100%);
  left: calc(106/1200*100%);
  width: calc(156/1200*100%);
}
.-illust02 .heroIllustCB {
  top: calc(40/532*100%);
  right: calc(47/1200*100%);
  width: calc(256/1200*100%);
}
.-illust02 .heroIllustImg {
  top: calc(180/532*100%);
  right: calc(41/1200*100%);
  width: calc(271/1200*100%);
}
.-illust02 .heroIllustImg.-img02 {
  z-index: 5;
}
@media (min-width: 768px) {
  .-illust01 .heroIllustImg {
    aspect-ratio: 156/330;
    overflow: hidden;
  }
  .-illust02 .heroIllustImg:not(.-img02) {
    aspect-ratio: 271/350;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .hero {
    height: calc(670/750*100vw);
    max-height: calc(670/750*100vw);
    background-image: url(../images/bg_mv_sp.png);
    background-size: 100% auto;
  }
  .hero:before {
    bottom: calc(40/750*100vw);
    z-index: 4;
    height: calc(40/750*100vw);
  }
  .hero:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(60/750*100vw);
    background: #fff681 url(../images/bg_dot_sp.png) top left repeat-y,url(../images/bg_dot_sp.png) top right repeat-y;
    background-color: #fff681;
    background-image:
      url(../images/bg_dot_sp.png), url(../images/bg_dot_sp.png);
    background-repeat: repeat-y, repeat-y;
    background-position:
      left,
      right;
  }
  .heroInner {
    position: static;
    height: calc(670/750*100vw);
    max-height: calc(670/750*100vw);
    background: none;
    z-index: 3;
  }
  .heroTitle {
    padding: calc(36/750*100vw) 0 0;
    width: calc(568/750*100vw);
  }
  .heroTerm {
    margin: calc(38/750*100vw) 0 calc(38/750*100vw) calc(174/750*100vw);
    width: calc(402/750*100vw);
  }
  .heroCopy {
    margin-left: calc(53/750*100vw);
    z-index: 6;
    width: calc(666/750*100vw);
  }
  .heroIllust {
  }
  .heroIllustCB {
    position: absolute;
  }
  .heroIllustImg {
    position: absolute;
  }
  .-illust01 .heroIllustCB {
    top: calc(240/750*100vw);
    left: calc(11/750*100vw);
    width: calc(203/750*100vw);
  }
  .-illust01 .heroIllustImg {
    top: calc(326/750*100vw);
    left: calc(59/750*100vw);
    width: calc(125/750*100vw);
  }
  .-illust02 {
    display: contents;
  }
  .-illust02 .heroIllustCB {
    top: calc(225/750*100vw);
    right: calc(9/750*100vw);
    width: calc(207/750*100vw);
  }
  .-illust02 .heroIllustImg {
    z-index: 3;
    top: calc(314/750*100vw);
    right: calc(16/750*100vw);
    width: calc(217/750*100vw);
  }
}




/* .heroTitle {
  opacity: 0;
  transform: scale(.6);
  transform-origin: center bottom;
  transition: opacity ease .6s, transform ease .6s;
}
.heroTerm {
  opacity: 0;
  transition: opacity ease .6s .5s;
}
.-illust01 .heroIllustCB {
  opacity: 0;
  transform: scale(.9) translateY(40px);
  transition: opacity ease .4s .9s, transform ease .4s .9s;
}
.-illust02 .heroIllustCB {
  opacity: 0;
  transform: scale(.9) translateY(40px);
  transition: opacity ease .4s 1.1s, transform ease .4s 1.1s;
}
.heroCopy {
  opacity: 0;
  transform: scale(1.15);
  transition: opacity ease .6s 1.3s, transform ease .6s 1.3s;
} */


.loaded .heroTitle {
  opacity: 1;
  transform: scale(1);
}
.loaded .heroTerm {
  opacity: 1;
}
.loaded .-illust01 .heroIllustCB,
.loaded .-illust02 .heroIllustCB {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.loaded .heroCopy {
  opacity: 0;
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 767px) {
  .-illust01 .heroIllustCB {
    transform: scale(.9) translateY(20px);
  }
  .-illust02 .heroIllustCB {
    transform: scale(.9) translateY(20px);
  }
}



/* tab */
.tabMenu {
  display: flex;
  justify-content: center;
  gap: 0 4px;
}
.tabMenu .tabBtn {
  width: 320px;
  color: #666;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding: 0.8em 0;
  border-radius: 20px 20px 0 0;
  border: #b8b8b8 solid 5px;
  border-bottom: none;
  background-color: #d5d4d4;
  text-align: center;
  transition: all ease 0.4s;
}
.tabMenu .tabBtn:nth-child(1).current {
  color: #fff;
  border: #da465b solid 5px;
  border-bottom: none;
  background-color: #da465b;
}
.tabMenu .tabBtn:nth-child(2).current {
  color: #fff;
  border: #3cafbe solid 5px;
  border-bottom: none;
  background-color: #3cafbe;
}
.tabContent {
  display: none;
}
/* .showDetailAnchor {
  transition: opacity ease 0.4s;
} */
@media (hover: hover) {
.tabMenu .tabBtn:hover {
  opacity: 0.4;
  text-decoration: none;
  cursor: pointer;
}
.showDetailAnchor:hover {
  opacity: 0.4;
  text-decoration: none;
  cursor: pointer;
}
}
@media (max-width: 767px) {
  .tabMenu .tabBtn {
    width: calc(254/750*100vw);
    font-size: calc(32/750*100vw);
    border-radius: 10px 10px 0 0;
    border: #b8b8b8 solid 3px;
    border-bottom: none;
  }
  .tabMenu .tabBtn:nth-child(1).current {
    border: #da465b solid 3px;
    border-bottom: none;
  }
  .tabMenu .tabBtn:nth-child(2).current {
    border: #3cafbe solid 3px;
    border-bottom: none;
  }
}


.iconBlank {
  position: relative;
  top: -0.1em;
  display: inline-block;
  width: 1em;
  margin-left: 0.5em;
}
.iconBlank img {
  max-width: inherit;
  vertical-align: middle;
}

.box {
  animation-fill-mode: forwards;
}
@keyframes fadeInUpSmall {
  from {
      opacity: 0;
      transform: translate3d(0, 30px, 0);
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

.wrapper {
  position: relative;
}

/* navi */
.naviCont {
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
}
.naviCont .naviContInner {
  position: relative;
  padding: 12px 10px;
  background-color: #f5f5f5;
}
.naviCont .naviGoTop {
  position: absolute;
  right: 30px;
  top: -132px;
  width: 74px;
}
ul.naviArea {
  display: flex;
  justify-content: center;
  gap: 0 14px;
  margin-bottom: 20px;
}
ul.naviArea li {
  width: 340px;
}
.naviCont .naviAddLink {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
@media (min-width: 768px) {
  .only-pc.naviCont {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 150px;
  }
  .only-pc.naviCont .naviContInner {
    margin: 0 auto;
    background-color: inherit;
  }
  .naviCont.naviFix {
    display: none;
  }
}
@media (max-width: 767px) {
  .naviCont .naviContInner {
    padding: 6px 0;
   }
  .naviCont .naviGoTop {
    right: 4px;
    top: -66px;
    width: 36px;
  }
  ul.naviArea {
    gap: 0 4px;
    margin-bottom: 10px;
  }
  ul.naviArea li {
    width: calc(240/750*100vw);
  }
  .naviCont .naviAddLink {
    font-size: 11px;
  }
  .naviCont.naviFix {
    display: block !important;
  }
}


/* detail */
.detail {
  position: relative;
  background-color: #fff681;
  width: 100%;
}
.detail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 100%;
  display: block;
  background: url(../images/bg_dot.png) center repeat-y;
  background-size: 64px auto;
}
.detail:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 100%;
  display: block;
  background: url(../images/bg_dot.png) center repeat-y;
  background-size: 64px auto;
}
.detail .detailInner {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 86px;
}
.detail .detailInner:after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 102px solid transparent;
  border-left: 102px solid transparent;
  border-top: 74px solid #fff681;
  border-bottom: 0;
  position: absolute;
  bottom: -74px;
  left: 0;
  right: 0;
}
.detail .lead01 {
  width: 100%;
  max-width: 980px;
  padding-top: 40px;
  margin: 0 auto 40px;
}
.detail .figure01 {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 40px;
}
.detail .figure02 {
  width: 100%;
  max-width: 812px;
  margin: 0 auto 32px;
}
.detail .img01 {
  width: 100%;
  max-width: 892px;
  margin: 0 auto 40px;
}
.detail .btn01 {
  width: 100%;
  max-width: 732px;
  margin: 0 auto 64px;
}
.detail .figure03 {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 38px;
}
.detail .figure04 {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 60px;
}
.detail .lead02 {
  width: 100%;
  max-width: 434px;
  margin: 0 auto 24px;
}
.detail .figure05 {
  width: 100%;
  max-width: 978px;
  margin: 0 auto 60px;
}
.detail .flexArea01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 710px;
  margin: 0 auto 40px;
}
.detail .flexArea01 .text {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.64;
}
.detail .flexArea01 .text:before {
  content: "";
  position: absolute;
  left: -64px;
  top: -24px;
  z-index: -1;
  display: block;
  background: url(../images/icon_circle.png) top left no-repeat;
  background-size: cover;
  width: 120px;
  height: 110px;
}
.detail .btn02 {
  width: 100%;
  max-width: 732px;
  margin: 0 auto 100px;
}
.detail .bnr01 {
  width: 100%;
  max-width: 942px;
  margin: 0 auto 20px;
}
.detail .bnr02 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.detail .campBox01 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 10px 60px;
  background-color: var(--color-white);
  border-radius: 0 0 18px 18px;
}
.detail .campBox01 .campboXText01 {
  width: 100%;
  max-width: 752px;
  margin: 0 auto 26px;
  padding-bottom: 20px;
  border-bottom: #B9C9C8 1px solid;
}
.detail .campBox01 .campboXText02 {
  width: 100%;
  max-width: 752px;
  margin: 0 auto 40px;
}
.detail .campBox01 .btn03 {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .detail:before {
    width: 19px;
    background: url(../images/bg_dot_sp.png) center repeat-y;
    background-size: 19px;
  }
  .detail:after {
    width: 19px;
    background: url(../images/bg_dot_sp.png) center repeat-y;
    background-size: 19px;
  }
  .detail .detailInner {
    padding-top: 0;
    padding-bottom: calc(90/750*100vw);
  }
  .detail .detailInner:after {
    border-right: 51px solid transparent;
    border-left: 51px solid transparent;
    border-top: 37px solid #fff681;
    bottom: -37px;
  }
  .detail .lead01 {
    width: calc(594/750*100vw);
    padding-top: calc(64/750*100vw);
    margin: 0 auto calc(40/750*100vw);
  }
  .detail .figure01 {
    width: calc(590/750*100vw);
    margin: 0 auto calc(40/750*100vw);
  }
  .detail .figure02 {
    width: calc(590/750*100vw);
    margin: 0 auto calc(40/750*100vw);
  }
  .detail .img01 {
    width: calc(604/750*100vw);
    margin: 0 auto calc(40/750*100vw);
  }
  .detail .btn01 {
    width: calc(540/750*100vw);
    margin: 0 auto calc(64/750*100vw);
  }
  .detail .figure03 {
    width: calc(590/750*100vw);
    margin: 0 auto calc(38/750*100vw);
  }
  .detail .figure04 {
    width: calc(590/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
  .detail .lead02 {
    width: calc(434/750*100vw);
    margin: 0 auto calc(24/750*100vw);
  }
  .detail .figure05 {
    width: calc(590/750*100vw);
    margin: 0 auto calc(80/750*100vw);
  }
  .detail .flexArea01 {
    display: block;
    width: calc(540/750*100vw);
    margin: 0 auto calc(84/750*100vw);
  }
  .detail .flexArea01 .text {
    width: calc(400/750*100vw);
    font-size: calc(24/750*100vw);
    margin: 0 auto calc(40/750*100vw);
    padding-left: calc(50/750*100vw);
  }
  .detail .flexArea01 .text:before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(-30/750*100vw);
    width: calc(120/750*100vw);
    height: calc(110/750*100vw);
  }
  .detail .flexArea01 .btn {
    width: calc(340/750*100vw);
    margin: 0 auto;
  }
  .detail .btn02 {
    width: calc(540/750*100vw);
    margin: 0 auto calc(84/750*100vw);
  }
  .detail .bnr01 {
    width: calc(592/750*100vw);
    margin: 0 auto calc(20/750*100vw);
  }
  .detail .bnr02 {
    width: calc(590/750*100vw);
  }
  .detail .campBox01 {
    width: calc(590/750*100vw);
    padding: calc(24/750*100vw) 0 calc(50/750*100vw);
    border-radius: 0 0 9px 9px;
  }
  .detail .campBox01 .campboXText01 {
    width: calc(452/750*100vw);
    margin: 0 auto;
    padding-bottom: calc(26/750*100vw);
    border-bottom: none;
  }
  .detail .campBox01 .campboXText02 {
    width: calc(482/750*100vw);
    margin: 0 auto calc(40/750*100vw);
    padding-top: calc(26/750*100vw);
    border-top: #B9C9C8 1px solid;
  }
  .detail .campBox01 .btn03 {
    width: calc(540/750*100vw);
  }
}


/* nisa */
.nisa {
  position: relative;
  background-color: #2eb6aa;
  width: 100%;
}
.nisa .nisaInner {
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
}
.nisa .nisaInner:after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 102px solid transparent;
  border-left: 102px solid transparent;
  border-top: 74px solid #2eb6aa;
  border-bottom: 0;
  position: absolute;
  bottom: -74px;
  left: 0;
  right: 0;
}
.nisa .lead01 {
  width: 100%;
  max-width: 222px;
  padding-top: 90px;
  margin: 0 auto 24px;
}
.nisa .text01 {
  margin: 0 auto 1em;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.64;
}
.nisa .nisaBox {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 50px 10px;
  background-color: var(--color-white);
  border-radius: 18px;
}
.nisa .lead02 {
  margin: 0 auto 0.8em;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.46;
}
.nisa .text02 {
  width: 100%;
  max-width: 638px;
  margin: 0 auto 46px;
}
.nisa .figure01 {
  width: 100%;
  max-width: 717px;
  margin: 0 auto 24px;
}
ul.cautionList {
  width: 100%;
  padding: 0 40px 0 50px;
  margin-bottom: 32px;
}
ul.cautionList li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.3em;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.46;
}
.nisa .btn01 {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .nisa .nisaInner {
    padding-bottom: calc(86/750*100vw);
  }
  .nisa .nisaInner:after {
    border-right: 51px solid transparent;
    border-left: 51px solid transparent;
    border-top: 37px solid #2eb6aa;
    bottom: -37px;
  }
  .nisa .lead01 {
    width: calc(222/750*100vw);
    padding-top: calc(90/750*100vw);
    margin: 0 auto calc(24/750*100vw);
  }
  .nisa .text01 {
    font-size: calc(22/750*100vw);
  }
  .nisa .nisaBox {
    width: calc(590/750*100vw);
    padding: calc(50/750*100vw) 0;
    border-radius: 10px;
  }
  .nisa .lead02 {
    font-size: calc(36/750*100vw);
  }
  .nisa .text02 {
    width: calc(491/750*100vw);
    margin: 0 auto calc(56/750*100vw);
  }
  .nisa .figure01 {
    width: calc(541/750*100vw);
    margin: 0 auto calc(28/750*100vw);
  }
  ul.cautionList {
    width: 100%;
    padding: 0 calc(24/750*100vw) 0 calc(26/750*100vw);
    margin-bottom: calc(32/750*100vw);
  }
  ul.cautionList li {
    font-size: calc(16/750*100vw);
  }
  .nisa .btn01 {
    width: calc(540/750*100vw);
  }
}


/* merit */
.merit {
  position: relative;
  background-color: #f8b62d;
  width: 100%;
}
.merit .meritInner {
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
}
.merit .meritInner:after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 102px solid transparent;
  border-left: 102px solid transparent;
  border-top: 74px solid #f8b62d;
  border-bottom: 0;
  position: absolute;
  bottom: -74px;
  left: 0;
  right: 0;
}
.merit .lead01 {
  width: 100%;
  max-width: 822px;
  padding-top: 90px;
  margin: 0 auto 30px;
}
.meritArea {
  margin-top: 30px;
}
.meritArea .lead {
  width: 100%;
  max-width: 198px;
  margin: 0 auto;
}
.meritArea .meritBox {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 36px 10px 46px;
  border-radius: 18px;
  position: relative;
  background-color: var(--color-white);
}
.meritBox .sublead {
  margin: 0 auto 1em;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: var(--color-base);
  line-height: 1.46;
  letter-spacing: 0.04em;
}
.marker {
  background: linear-gradient(transparent 64%, #fff000 0%);
  text-decoration-skip-ink: none;
}
.meritBox .add {
  position: absolute;
  right: 120px;
  top: -50px;
  width: 158px;
}
.meritBox .text {
  margin: 0 auto 2em;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-base);
  line-height: 1.46;
}
.meritArea .btn {
  width: 100%;
  max-width: 432px;
  margin: 0 auto;
}
.meritArea .figure01 {
  width: 100%;
  max-width: 677px;
  margin: 0 auto 20px;
}
.meritArea .text02 {
  margin: 0 auto 1em;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: var(--color-base);
  line-height: 1.46;
}
.meritArea .btn02 {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 960px) {
  .meritBox .add {
    right: 6%;
}
}
@media (max-width: 767px) {
  .merit .meritInner {
    padding-bottom: calc(86/750*100vw);
  }
  .merit .meritInner:after {
    content: "";
    border-right: 51px solid transparent;
    border-left: 51px solid transparent;
    border-top: 37px solid #f8b62d;
    bottom: -37px;
  }
  .merit .lead01 {
    width: calc(468/750*100vw);
    padding-top: calc(90/750*100vw);
    margin: 0 auto calc(30/750*100vw);
  }
  .meritArea {
    margin-top: calc(30/750*100vw);
  }
  .meritArea .lead {
    max-width: calc(198/750*100vw);
  }
  .meritArea .meritBox {
    width: calc(590/750*100vw);
    padding: calc(36/750*100vw) 0 calc(46/750*100vw);
    border-radius: 10px;
  }
  .meritBox .sublead {
    font-size: calc(25/750*100vw);
  }
  .meritBox .add {
    position: absolute;
    right: calc(-32/750*100vw);
    top: calc(-90/750*100vw);
    width: calc(158/750*100vw);
  }
  .meritBox .text {
    font-size: calc(22/750*100vw);
  }
  .meritArea .btn {
    width: calc(432/750*100vw);
  }
  .meritArea .figure01 {
    width: calc(355/750*100vw);
    margin: 0 auto calc(20/750*100vw);
  }
  .meritArea .text02 {
    font-size: calc(25/750*100vw);
  }
  .meritArea .btn02 {
    width: calc(540/750*100vw);
  }
}


/* method */
.method {
  position: relative;
  background-color: #fef0d5;
  width: 100%;
}
.method .methodInner {
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
}
.method .methodInner:after {
  content: "";
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 102px solid transparent;
  border-left: 102px solid transparent;
  border-top: 74px solid #fef0d5;
  border-bottom: 0;
  position: absolute;
  bottom: -74px;
  left: 0;
  right: 0;
}
.method .lead01 {
  width: 100%;
  max-width: 429px;
  padding-top: 90px;
  margin: 0 auto 24px;
}
.method .text01 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 2em;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-base);
  line-height: 1.46;
  text-indent: -1em;
  padding-left: 1em;
}
.method .methodBox {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 72px 20px 46px;
  border-radius: 18px;
  position: relative;
  background-color: var(--color-white);
}
.methodFlex01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 50px;
  margin-bottom: 50px;
}
.methodFlex01 .flexImg {
  width: 263px;
  margin-left: 90px;
}
.methodFlex01 .flexCont {
  width: calc(100% - 263px);
}
.methodFlex01 .flexCont .lead02 {
  margin-bottom: 0.6em;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.46;
  text-align: left;
}
.methodFlex01 .flexCont .text02 {
  margin-bottom: 1em;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-base);
  line-height: 1.46;
}
.method .img01 {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 24px;
}
.method .btn02 {
  width: 100%;
  margin: 0 0 40px 0;
  padding-right: 48px;
  text-align: right;
}
.method .btn02 a {
  display: inline-block;
}
.method .bnr01 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.method .text03 {
  width: 100%;
  max-width: 784px;
  margin: 0 auto 64px;
}
.method .btn03 {
  margin: 0 auto 56px;
  text-align: center;
}
.method .figure01 {
  width: 100%;
  max-width: 852px;
  margin: 0 auto 50px;
}
ul.stepArea li {
  width: 100%;
  max-width: 765px;
  margin: 0 auto 54px;
  position: relative;
}
ul.stepArea li:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 40px solid #80ccae;
  border-bottom: 0;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -60px;
}
ul.stepArea li:last-of-type {
  margin-bottom: 0;
}
ul.stepArea li:last-of-type:after {
  content: none;
}
@media (max-width: 767px) {
  .method .methodInner {
    padding-bottom: calc(86/750*100vw);
  }
  .method .methodInner:after {
    border-right: 51px solid transparent;
    border-left: 51px solid transparent;
    border-top: 37px solid #fef0d5;
    bottom: -36px;
    z-index: 2;
  }
  .method .lead01 {
    max-width: calc(429/750*100vw);
    padding-top: calc(90/750*100vw);
    margin: 0 auto calc(24/750*100vw);
  }
  .method .text01 {
    max-width: calc(590/750*100vw);
    margin: 0 auto 1em;
    font-size: calc(15/750*100vw);
  }
  .method .methodBox {
    width: calc(590/750*100vw);
    margin: 0 auto;
    padding: calc(70/750*100vw) 0 calc(46/750*100vw);
    border-radius: 8px;
  }
  .methodFlex01 {
    display: block;
    margin-bottom: calc(50/750*100vw);
  }
  .methodFlex01 .flexImg {
    width: calc(232/750*100vw);
    margin: 0 auto calc(20/750*100vw);
  }
  .methodFlex01 .flexCont {
    width: calc(510/750*100vw);
    margin: 0 auto;
  }
  .methodFlex01 .flexCont .lead02 {
    text-align: center;
    font-size: calc(36/750*100vw);
  }
  .methodFlex01 .flexCont .text02 {
    margin-bottom: 2em;
    font-size: calc(22/750*100vw);
  }
  .method .img01 {
    width: calc(464/750*100vw);
    margin: 0 auto calc(30/750*100vw);
  }
  .method .btn01 {
    width: calc(340/750*100vw);
    margin: 0 auto;
  }
  .method .btn02 {
    width: calc(438/750*100vw);
    margin: 0 auto calc(40/750*100vw);
    padding-right: 0;
    text-align: center;
  }
  .method .bnr01 {
    width: calc(540/750*100vw);
  }
  .method .text03 {
    width: calc(482/750*100vw);
    margin: 0 auto calc(60/750*100vw);
  }
  .method .btn03 {
    margin: 0 auto calc(56/750*100vw);
    width: calc(340/750*100vw);
  }
  .method .figure01 {
    width: calc(540/750*100vw);
    margin: 0 auto calc(50/750*100vw);
  }
  ul.stepArea li {
    width: calc(550/750*100vw);
    margin: 0 auto calc(100/750*100vw);
  }
  ul.stepArea li:after {
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 20px solid #80ccae;
    bottom: -40px;
  }
}


/* flow */
.flow {
  position: relative;
  background-color: #c8a4cb;
  width: 100%;
}
.flow .flowInner {
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
}
.flow .lead01 {
  width: 100%;
  max-width: 584px;
  padding-top: 90px;
  margin: 0 auto 24px;
}
.flow .flowBox {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 50px 10px 46px;
  border-radius: 18px;
  position: relative;
  background-color: var(--color-white);
}
.flow .flowBox .flowBoxLead {
  margin-bottom: 64px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.46;
  text-align: center;
}
.flow .flowBox .flowBoxLead .txt_green {
  color: var(--color-green);
}
.flow .flowBox .flowBoxLead .txt_small {
  font-size: 22px;
  position: relative;
  top: -4px;
}
ul.flowArea {
  width: 100%;
  max-width: 730px;
  margin: 0 auto 50px;
  padding-left: 20px;
}
ul.flowArea li {
  position: relative;
  margin-bottom: 120px;
  padding: 50px 0 35px 50px;
  background-color: #e5f5ef;
}
ul.flowArea li:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 40px solid #80ccae;
  border-bottom: 0;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -80px;
}
ul.flowArea li:last-of-type {
  margin-bottom: 0;
}
ul.flowArea li:last-of-type:after {
  content: none;
}
ul.flowArea li .icon {
  position: absolute;
  left: -30px;
  top: -34px;
}
ul.flowArea li .label.label_app {
  position: absolute;
  right: 22px;
  top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 0.4em 1.4em;
  border-radius: 20px;
  background-color: #3cafbe;
}
ul.flowArea li .label.label_gate {
  position: absolute;
  right: 22px;
  top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 0.4em 1.4em;
  border-radius: 20px;
  background-color: #8aba28;
}
ul.flowArea li .text {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  line-height: 1.64;
}
ul.flowArea li .caution {
  font-size: 15px;
  font-weight: 300;
  margin-top: 0.8em;
}
ul.flowArea li .iconProf {
  position: relative;
  top: 6px;
  width: 28px;
  margin-left: 0.2em;
  line-height: 1;
}
.flow .text01 {
  margin-bottom: 1em;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  line-height: 1.64;
}
.flow .btn01 {
  width: 340px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .flow .flowInner {
    padding-bottom: calc(86/750*100vw);
  }
  .flow .lead01 {
    max-width: calc(584/750*100vw);
    padding-top: calc(90/750*100vw);
    margin: 0 auto calc(24/750*100vw);
  }
  .flow .flowBox {
    width: calc(590/750*100vw);
    padding: calc(50/750*100vw) 0 calc(46/750*100vw);
    border-radius: 10px;
  }
  .flow .flowBox .flowBoxLead {
    margin-bottom: calc(64/750*100vw);
    font-size: calc(36/750*100vw);
  }
  .flow .flowBox .flowBoxLead .txt_small {
    font-size: calc(22/750*100vw);
    top: -3px;
  }
  ul.flowArea {
    width: 100%;
    max-width: calc(520/750*100vw);
    margin: 0 auto calc(50/750*100vw);
    padding-left: calc(10/750*100vw);
  }
  ul.flowArea li {
    margin-bottom: calc(120/750*100vw);
    padding: calc(50/750*100vw) 0 calc(35/750*100vw) calc(20/750*100vw);
    letter-spacing: -0.04em;
  }
  ul.flowArea li:after {
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 20px solid #80ccae;
    bottom: -40px;
  }
  ul.flowArea li .icon {
    width: calc(140/750*100vw);
    position: absolute;
    left: calc(-30/750*100vw);
    top: calc(-34/750*100vw);
  }
  ul.flowArea li .label.label_app {
    right: calc(22/750*100vw);
    top: calc(14/750*100vw);
    font-size: calc(18/750*100vw);
  }
  ul.flowArea li .label.label_gate {
    right: calc(22/750*100vw);
    top: calc(14/750*100vw);
    font-size: calc(18/750*100vw);
  }
  ul.flowArea li .text {
    font-size: calc(22/750*100vw);
  }
  ul.flowArea li .caution {
    font-size: calc(15/750*100vw);
  }
  ul.flowArea li .iconProf {
    display: inline-block;
    top: -1px;
    width: 14px;
  }
  .flow .text01 {
    font-size: calc(22/750*100vw);
  }
  .flow .btn01 {
    width: calc(340/750*100vw);
  }
}


/* note */
.note {
  width: 100%;
}
.note .noteInner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 90px 20px 140px;
}
.note .noteArea {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
}
.note .noteArea .noteTitle {
  background-color: #43bdb2;
  padding: 0.6em 60px 0.6em 1.5em;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
/* .note .noteArea .accBtn {
  position: relative;
  transition: opacity ease 0.4s;
} */
.note .noteArea .accBtn:before {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin: auto 0;
  border:  #fff 1px solid;
  border-radius: 3px;
  background-color: #82d3cc;
}
.note .noteArea .accBtn:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 6px;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border-right:  #fff 3px solid;
  border-bottom:  #fff 3px solid;
  transform: rotate(45deg);
  transition: all ease 0.4s;
}
.note .noteArea .accBtn.is-active:after {
  bottom: -6px;
  transform: rotate(-135deg);
}
.note .noteCont {
  margin-top: 0.6em;
  line-height: 1.46;
  font-size: 16px;
  display: none;
}
.note .noteCont .iconCircle {
  color: #BB8DBE;
}
.note .noteCont .txt_red {
  color: #E50065;
}
.note ul.cautionList {
  width: 100%;
  padding: 0;
  margin-bottom: 32px;
}
.note ul.cautionList li {
  margin-bottom: 0.1em;
}
.note .text01 {
  font-size: 14px;
  line-height: 1.46;
}
@media (hover: hover) {
  .note .noteArea .accBtn:hover {
    opacity: 0.4;
    text-decoration: none;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .note .noteInner {
    width:calc(590/750*100vw);
    padding: calc(90/750*100vw) 0 calc(140/750*100vw);
  }
  .note .noteArea {
    margin: 0 auto calc(24/750*100vw);
  }
  .note .noteArea .noteTitle {
    padding: 0.8em calc(60/750*100vw) 0.8em 1.5em;
    font-size: calc(19/750*100vw);
    letter-spacing: -0.06em;
  }
  .note .noteArea .accBtn:before {
    right: 7px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
  }
  .note .noteArea .accBtn:after {
    right: 12px;
    bottom: 3px;
    width: 8px;
    height: 8px;
    border-right:  #fff 2px solid;
    border-bottom:  #fff 2px solid;
  }
  .note .noteArea .accBtn.is-active:after {
    bottom: -3px;
  }
  .note .noteCont {
    font-size: calc(16/750*100vw);
  }
  .note .lead01 {
    width: calc(346/750*100vw);
  }
  .note ul.cautionList {
    margin-bottom: calc(32/750*100vw);
  }
  .note .text01 {
    font-size: calc(16 / 750* 100vw);
  }
}

