@charset "utf-8";
/* --------------------
  constants
-------------------- */
:root {
  --font_color: #000; /* ベースの文字色  */
  --dark_pink: #E95D7E;
  --green: #809F36;
  /* ゴシック体 */
  --font_family: 'Noto Sans JP',
                 "Helvetica Neue",
                 "Helvetica",
                 "Hiragino Sans",
                 "Hiragino Kaku Gothic ProN",
                 "Arial",
                 "Yu Gothic",
                 "Meiryo",
                 sans-serif;;
}
/* --------------------
  base
-------------------- */
:root {
  font-size: 62.5%;
}
html {
  scroll-behavior: smooth;
}
body {
  color:  var(--font_color);
  font-family: var(--font_family);
  font-size: 1.6rem;
  line-height: 1.8em;
   position: relative;
    /*z-index: -1;*/
  background-attachment: fixed;
  background:#fff;
}
.main{
  position: relative;
    /*z-index: -1;*/
}
.main::before {
    background: url("/special/lp/assets/images/img_007/bg_body.png") no-repeat top center / cover;
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}
section {
  max-width: 750px;
  margin: 0 auto;
}
.x_shadow {
  box-shadow: 0 0 20px #9a9a9a63;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
.text__indent {
	padding-left: 1em;
	text-indent: -1em;
}
a {
	text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.7s;
}
.btn_download a:hover {
  transform: translate(0, 2px);
  box-shadow: 0 1px #2E70A0;
  transition: 0.2s;
}
/* header
------------------------------------------------*/
.header_img {
	background-color: #E76245;
  max-width: 750px;
  height: 100px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 14px 20px;
  transition: all .3s;
}
header a{
  display: block;
}
@media screen and (max-width: 750px) {
  .header_img {
    height: 13.33vw;
    padding: 1.87vw 2.67vw;
  }
  .d_sp_none{
    display: none;
  }
  a:hover {
  opacity: 1.0;
  transition: none;
  }
}

/* Key Visual
------------------------------------------------*/
.kv {
  position: relative;
	padding-bottom: 43px;
	background: #F3D8D8;
}
.kv_content {
  width: 93.33%;
  margin: 0 auto;
  padding: 46px 28px;
  background-color: #ffffff;
  border: 3px solid #E76245;
  border-radius: 14px;
}
.kv_content_detail {
  width: 86%;
  margin: 0 auto;
}
.kv_btn_lead {
  text-align: center;
  font-size: min(4.8vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 25px;
}
.kv_btn_lead_em {
  color: #E95D7E;
  /*display: inline-block;*/
  font-style: normal;
  -webkit-transform: rotate(3deg);
      -ms-transform: rotate(3deg);
          transform: rotate(3deg);
  position: relative;
}
.kv_btn_lead_em::after {
  display: inline-block;
  content: "　";
  background-image: url("/special/lp/assets/images/img_007/icon_type03.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 0.7em;
  top: -.2em;
  right: .2em;
}
.pink_cv_btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 110px;
  background-color: var(--dark_pink);
  border-radius: 55px;  
  -webkit-box-shadow: 1px 6px #802445;
          box-shadow: 1px 6px #802445;
  -webkit-transition: all .2s;
          transition: all .2s;
	color: #fff;
  font-size: min(4.27vw, 3.2rem);
  font-weight: 700;
}
.pink_cv_btn::before{
  display: inline-block;
  content: "";
  width: .5em;
  height: .5em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg) translate(-50%, 0);
  -ms-transform: rotate(45deg) translate(-50%, 0);
      transform: rotate(45deg) translate(-50%, 0);
  position: absolute;
  top: 47%;
  right: 1em;
}
.pink_cv_btn:hover {
  -webkit-transform: translate(0, 4px);;
  -ms-transform: translate(0, 4px);;
      transform: translate(0, 4px);
  -webkit-box-shadow: 0 0 #802445;
          box-shadow: 0 0 #802445;
}
.kv_note {
	margin-top: 20px;
	letter-spacing: .04em;
	line-height: 1.5;
	font-feature-settings: "palt";
	font-size: min(2.13vw, 1.6rem);
	font-weight: 200;
}
.nav_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
	align-items: center;
  border: 4px solid var(--green);
  border-left: 4px solid var(--green);
  border-right: 4px solid var(--green);
  border-radius: 15px;
  box-shadow: 0px 8px var(--green);
  padding: 0.8em 0;
  background-color: #fff;

  margin-top: 28px;
}
.nav_list a {
	position: relative;
	height: 119px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--font_color);
  font-size: min(2.67vw, 2.0rem);
  font-weight: 600;
  line-height: 1.25em;
  border-right: 4px solid var(--green);
  padding: .7em .5em 0;
  -webkit-transition: all .3s;
          transition: all .3s;
}
.nav_list li:nth-of-type(3) a {
	padding-top: 0;
}
.nav_list a:hover {
  color: #777;
}
.nav_list li:last-child a {
  border: none;
}
.nav_list a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  display: block;
  content: "";
  background-color: var(--blue);
  background-image: url("/special/lp/assets/images/img_007/btn_arrow_bottom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  width: 1.6em;
  height: 1.6em;
  margin-top: .7em;
}
.nav_list a:hover::after {
  -webkit-transform: translate(-50%, 3px);
      -ms-transform: translate(-50%, 3px);
          transform: translate(-50%, 3px);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  -o-transition: transform .2s;
}
@media screen and (max-width: 750px) {
  .kv_content {
    padding: 6.13vw 3.73vw;
    border: 0.6vw solid #E66245;
    border-radius: 1.87vw;
  }
  .kv_btn_lead {
    margin: 0 0 3.33vw;
  }
  .pink_cv_btn {
    height: 14.67vw;
    border-radius: 7.33vw;  
    -webkit-box-shadow: 1px 0.8vw #802445;
            box-shadow: 1px 0.8vw #802445;
  }
  .pink_cv_btn::before{
    border-top: 0.4vw solid #fff;
    border-right: 0.4vw solid #fff;
  }
  .pink_cv_btn:hover {
    -webkit-transform: translate(0, 0.53vw);;
    -ms-transform: translate(0, 0.53vw);;
        transform: translate(0, 0.53vw);
  }
  .kv_note {
    margin-top: 2.67vw;
  }
  .nav_list {
    border: 0.6vw solid var(--green);
    border-left: 0.6vw solid var(--green);
    border-right: 0.6vw solid var(--green);
		border-radius: 2vw;
    box-shadow: 0px 1.07vw var(--green);
    margin-top: 3.73vw;
  }
  .nav_list a {
		height: 15.87vw;
    border-right: 0.27vw solid var(--green);
  }
  .nav_list a:hover::after {
    -webkit-transform: translate(-50%, 0.4vw);
        -ms-transform: translate(-50%, 0.4vw);
            transform: translate(-50%, 0.4vw);
  }
}


/* tokuten_anchorlink
------------------------------------------------*/

.tokuten_anchorlink a {
    text-align: center;
    width: 690px;
    height: 150px;
    position: relative;
    display: block;
    margin:  auto auto 3.0rem auto;
    padding: 1.2rem 1rem 1rem;
    background: rgb(78, 177, 228);
    background: linear-gradient(164deg, rgba(78, 177, 228, 1) 27%, rgba(0, 134, 204, 1) 29%);
    box-shadow: 0 0.8rem #2E70A0;
    border: 0.4rem #4eb1e4 solid;
    font-size: 3.4rem;
    color: #fff;
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    line-height: 5rem;
    transition: all .2s;
}
.tokuten_anchorlink a span {
  font-size: 5.2rem;
  color: #FFEB5A;
  margin-top: 0.3rem;
  display: inline-block;
}
.tokuten_anchorlink a span::after {
  position: absolute;
  right: 6.5rem;
  top: calc(50% - 2.5rem);
  width: 5.3rem;
  height: 5.8rem;
  content: '';
  background: url("/special/lp/assets/images/img_007/ic_tokuten_anchorlink.svg") no-repeat center center;
  background-size: 100% auto;
}
.tokuten_anchorlink a::after {
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 1.6rem);
  width: 4.0rem;
  height: 4.0rem;
  content: '';
  background: url("/special/lp/assets/images/img_007/ic_tokuten_anchorlink_03.svg") no-repeat center center;
  background-size: 100% auto;
}

.tokuten_anchorlink a::before {
  position: absolute;
  left: 5.5rem;
  top: calc(50% - 1.6rem);
  width: 6.0rem;
  height: 5.0rem;
  content: '';
  background: url("/special/lp/assets/images/img_007/ic_tokuten_anchorlink_02.svg") no-repeat center center;
  background-size: 100% auto;
}

.tokuten_anchorlink a:hover{
    transform: translate(0, 0.8rem);
    box-shadow: none;
}
@media (max-width: 750px){
  .tokuten_anchorlink a {
    width: 92vw;
    height: 20vw;
    margin:  auto auto 2.0rem auto;
    padding: 3% 0.5rem;
    font-size: 4.5vw;
    border: 0.25rem #4eb1e4 solid;
    line-height: 1.1;
    border-radius: 1rem;
    box-shadow: 0 0.5rem #2E70A0;
}
.tokuten_anchorlink a span {
  font-size: 7vw;
  color: #FFEB5A;
}
.tokuten_anchorlink a span::after {
  right: 10%;
  top: 0;
  width: 7%;
  height: 100%;
}
.tokuten_anchorlink a::after {
  right: 2.5%;
  top: 0;
  width: 6%;
  height: 100%;
}

.tokuten_anchorlink a::before {
  position: absolute;
  left: 7%;
  top: 0;
  width: 7%;
  height: 100%;
  }
.tokuten_anchorlink a:hover{
    transform: none;
}
}
/* recommended-points
------------------------------------------------*/
.recommended-points {
	padding: 100px 0 60px;
	background: url("/special/lp/assets/images/img_007/bg_recommended_01.jpg") repeat-y;
}
.recommended-points .point-nav_list {
	width: 654px;
	margin: 10px auto 52px;
}
.recommended-points .point-nav_list li {
	position: relative;
	padding-top: 4px;
}
.recommended-points .point-nav_list li::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	border-radius: 2px;
	background: #809f36;
}
.recommended-points .point-nav_list li a {
	position: relative;
	height: 86px;
	display: flex;
	align-items: center;
	padding-top: 5px;
	transition: .2s;
}
.recommended-points .point-nav_list li a::after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: "";
	width: 27px;
	height: 15px;
	background: url("/special/lp/assets/images/img_007/ic_recommended_05.svg") no-repeat;
	transform: translateY(-5.5px);
	transition: .2s;
}
.recommended-points .point-nav_list li a:hover p {
	color: #777;
	transition: .2s;
}
.recommended-points .point-nav_list li a:hover::after {
	transform: translateY(-1.5px);
	transition: .2s;
}
.recommended-points .point-nav_list li a img {
	width: 141px;
	height: auto;
}
.recommended-points .point-nav_list li a p {
	padding-bottom: 7px;
  font-size: min(3.87vw, 2.9rem);
	font-weight: 600;
	color: #000;
}
.recommended-points .point-note_list {
	width: 634px;
	margin: 24px auto 28px;
}
.recommended-points .point-note_list li {
	position: relative;
	padding-left: 34px;
	line-height: 1.25;
	font-size: min(2.67vw, 2.0rem);
}
.recommended-points .point-note_list li span {
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 750px) {
	.recommended-points {
    padding: 13.33vw 0 8vw;
    background: url("/special/lp/assets/images/img_007/bg_recommended_01.jpg") repeat-y;
  }
  .recommended-points .point-nav_list {
    width: 87.2vw;
    margin: 1.33vw auto 6.93vw;
  }
  .recommended-points .point-nav_list li {
    padding-top: 0.53vw;
  }
  .recommended-points .point-nav_list li::after {
    bottom: -0.53vw;
    height: 0.53vw;
    border-radius: 0.27vw;
  }
  .recommended-points .point-nav_list li a {
    height: 11.47vw;
    padding-top: 0.67vw;
  }
  .recommended-points .point-nav_list li a::after {
    width: 3.6vw;
    height: 2vw;
    transform: translateY(-1vw);
  } 
	.recommended-points .point-nav_list li a img {
    width: 18.8vw;
  }
  .recommended-points .point-nav_list li a p {
    padding-bottom: 0.93vw;
  }
  .recommended-points .point-note_list {
    width: 84.53vw;
    margin: 3.2vw auto 3.73vw;
  }
  .recommended-points .point-note_list li {
    padding-left: 4.53vw;
  }
}

/* oomori
------------------------------------------------*/
.oomori {
	padding: 40px calc((100% - 93.33%) / 2) 58px;
  background-color: #f3d8d8; 
}
.oomori_icon {
	width: 195px;
  margin: 0 auto 50px;
}
.oomori_content {
	position: relative;
  padding: 83px 26px 52px;
	border: solid 3px #EF5D60;
	border-radius: 30px;
	background-color: #fff;
  z-index: 2; 
}
.powrap_anothernpoko_bg01 {
  position: absolute;
  top: -120px;
  right: -270px;
}
.ponpoko_bg01 {
  position: absolute;
  top: -137px;
  right: -30px;
}
.oomori_ttl {
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: #fff;
  border: 3px solid #D74C66;
  border-radius: 1.5em;
  color: #D74C66;
  text-align: center;
  font-size: min(3.2rem, 4.5vw);
  padding: .3em 1.25em;
  word-break: keep-all;
}
.oomori_option_img {
  max-width: 562px;
  height: auto;
  margin: 0 auto;
}
.oomori_content_ttl {
	line-height: 1.346;
  font-size: min(6.93vw, 5.2rem);
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  font-weight: bold;
}
.oomori_ttl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	margin-top: 45px;
	padding: 40px 0 15px;
  border-top: 2px solid #D2D2D2;
}
.oomori_ttl_wrap img {
	width: 62px;
  margin-right: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.oomori_subTtl {
	margin: 28px 0 30px;
  font-size: min(5.07vw, 3.8rem);
  text-align: center;
  color: #D74C66;  
}
.oomori_option_img2 img{
	width: 91%;
  max-width: 100%;
  margin: 0 auto 50px;
}
.oomori_text_img img{
  width: 83%;
  max-width: 446px;
	margin: 0 auto;
}
.oomori_option_img_text {
	display: block;
  margin: 10px auto 25px;
	text-align: center;
	font-size: min(2.67vw, 2.0rem);
}
.oomori_points {
  padding: 0 20px;
  font-weight: 600;
  font-size: min(3.47vw, 2.6rem);
  line-height: 1.8;
  width: fit-content;
  margin: 0 auto 30px;
}
.oomori_points li {
  padding: 3px 0;
}
.oomori_points li::before {
  display: inline-block;
  content: "";
  background-image: url("/special/lp/assets/images/img_007/icon_check_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  -webkit-transform: translate(-.2em, .2em);
      -ms-transform: translate(-.2em, .2em);
          transform: translate(-.2em, .2em);
}
.oomori_content .pink_cv_btn {
	width: 547px;
	margin: 0 auto;
}
.kv_btn_wrap_another:before {
  position: absolute;
  bottom: -20px;
  left: -20px;
  content: "";
  display: inline-block;
  width: 118px;
  height: 259px;
  background: url("/special/lp/assets/images/img_007/peanut_01.png")no-repeat center center;
  background-size: 118px auto;
  z-index: 99;
}
@media (max-width: 750px){
	.oomori {
    padding: 5.33vw calc((100% - 93.33%) / 2) 7.73vw;
  }
	.oomori_icon {
    width: 26vw;
    margin: 0 auto 6.67vw;
  }
  .ponpoko_bg01 {
		width: 23.33vw;
    top: -18.27vw;
    right: -4vw;
  }
  .oomori_content {
    padding: 11.07vw 3.47vw 6.93vw;
    border: solid 0.6vw #f05d60;
    border-radius: 4vw;
  }
  .powrap_anothernpoko_bg01 {
    top: -16vw;
    right: -36vw;
  }
  .oomori_ttl {
    border: 0.6vw solid var(--dark_pink);
  }
  .oomori_option_img {
    max-width: 74.93vw;
  }
  .oomori_content_ttl {
    -webkit-transform: translate(0, -0.67vw);
        -ms-transform: translate(0, -0.67vw);
            transform: translate(0, -0.67vw);
  }
  .oomori_ttl_wrap {
    margin-top: 6vw;
    padding: 5.33vw 0 2vw;
    border-top: 0.6vw solid #ddd;
  }
  .oomori_ttl_wrap img {
    width: 8.27vw;
    margin-right: 1.6vw;
  }
  .oomori_subTtl {
    margin: 3.73vw 0 4vw;
  }
  .oomori_option_img2 img{
    margin: 0 auto 6.67vw;
  }
  .oomori_text_img img{
    max-width: 59.47vw;
  }
  .oomori_option_img_text {
    margin: 1.33vw auto 3.33vw;
  }
  .oomori_points {
    padding: 0 2.67vw;
    margin: 0 auto 4vw;
  }
  .oomori_points li {
    padding: 0.4vw 0;
  }
  .oomori_content .pink_cv_btn {
    width: 72.93vw;
  }
  .kv_btn_wrap_another:before {
    bottom: -2.67vw;
    left: -2.67vw;
    width: 15.73vw;
    height: 34.53vw;
    background-size: 15.73vw auto;
  }
}

/* process
------------------------------------------------*/
.process {
  background: url("/special/lp/assets/images/img_007/cont_bg_type01.png") repeat-y top center;
  padding: 112px calc((100% - 93.33%) / 2) 122px;
  font-weight: 600;
}
.process_content {
  background-color: #fff;
  border: solid 3px #d84c66;
  border-radius: 25px;
}
.process_ttl {
	width: 648px;
	height: auto;
  margin: -3rem auto 0;
}
.process_inner {
  padding: 0 5%;
}
.process_point_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem;
  border-top: 2px solid #EBA5B2;
  border-bottom: 2px solid #EBA5B2;
  margin: 12px 0 28px;
  padding: 4px 0;
}
.process_point_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 20%;
  -webkit-transform: scale(.6);
      -ms-transform: scale(.6);
          transform: scale(.6);
}
.process_points {
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.6em;
}

.process_points li::before {
  display: inline-block;
  content: "";
  background-image: url("/special/lp/assets/images/img_007/icon_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  -webkit-transform: translate(-.2em, .2em);
      -ms-transform: translate(-.2em, .2em);
          transform: translate(-.2em, .2em);
}
.step__wrapper {
	border: 3px solid #B2CA68;
	border-radius: 20px;
}
.step {
  text-align: center;
  background-color: #DCE1C0;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: .8em 0;
}
.step img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 20px;
}
.step_desc {
  padding: 3% 0 3% 9%;
  font-size: min(3.2rem, 4.27vw);
  line-height: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step_desc em {
  font-style: normal;
}
.step_desc img {
  width: 136px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.step_desc .step__txt {
	width: 77%;
}
.text_pink {
	color: #d74c66;
}
.step_desc .caption_text_center {
  color: #6f6f6f;
}
.step_desc .caption_text_left {
  font-size: 37.5%;
	line-height: 1.5;
}
.down_triangle {
  width: 0;
  height: 0;
  margin: 15px auto;
  border-style: solid;
  border-width: 18px 35px 0 35px;
  border-color: var(--green) transparent transparent transparent;
}
.process_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: min(2.8rem, 3.73vw);
  line-height: 1.25em;
  border-top: 2px solid #ddd;
  padding: 34px 0 40px;
  margin-top: 40px;
}
.process_caption img {
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2em;
  margin-right: 20px;
}

@media (max-width: 750px){
	.process {
    background: url("/special/lp/assets/images/img_007/cont_bg_type01.png") repeat-y top center;
    padding: 14.93vw calc((100% - 93.33%) / 2) 16.27vw;
  }
  .process_content {
    border: solid 0.6vw #d84c66;
    border-radius: 3.33vw;
  }
  .process_ttl {
    width: 86.4vw;
		margin: -1rem auto 0;
  }
  .process_point_wrap {
    border-top: 0.6vw solid #EBA5B2;
    border-bottom: 0.6vw solid #EBA5B2;
    margin: 1.6vw 0 3.73vw;
    padding: 0.53vw 0;
  }
	.step__wrapper {
    border: 0.6vw solid #BFD768;
		border-radius: 2.67vw;
  }
  .step {
    border-radius: 2.67vw 2.67vw 0 0;
  }
  .step img {
    height: 2.67vw;
  }
  .step_desc img {
		width: 18.13vw;
    margin-right: 2.67vw;
  }
  .down_triangle {
    width: 0;
    height: 0;
    margin: 2vw auto;
    border-style: solid;
    border-width: 2.4vw 4.67vw 0 4.67vw;
  }
  .process_caption {
    border-top: 0.6vw solid #ddd;
    padding: 4.53vw 0 5.33vw;
    margin-top: 5.33vw;
  }
  .process_caption img {
    margin-right: 2.67vw;
  }
}

/* identity_doc
------------------------------------------------*/
.identity_doc {
  background-color: #f3d8d8;
  padding: 64px 3% 116px;
  font-weight: 600;
}
.identity_doc_content {
  background-color: #fff;
  border: 3px solid #B2CA68;
  border-radius: 25px;
	margin-bottom: 60px;
  padding: 5%;
}
.identity_doc_ttl {
  text-align: center;
  font-size: min(3.2rem, 4.27vw);
  margin-bottom: 1.5em;
  font-weight: 600;
}
.identity_doc_ttl img{
  width: 1.36em;
  height: 1.36em;
  margin: 0 auto 8px;
}
.identity_doc_sub_ttl {
  font-size: min(4.2rem, 5.6vw);
  color: var(--green);
  text-align: center;
  font-weight: 600;
}
.identity_doc_sub_ttl + p {
  text-align: center;
  margin: .5em 0 1.5em;
  font-size: min(2.2rem, 2.93vw);
}
.identity_doc_example {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.identity_doc_example li {
  width: 260px;
  text-align: center;
}

.identity_doc_example li:last-child figure {
  margin: 0 auto;
}
.identity_doc_example figure {
  margin-bottom: 2rem;
}

.identity_doc_example figcaption {
  font-size: min(1.8rem, 2.4vw);
}

.identity_doc_example img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.identity_doc_wave.reverse {
  -webkit-transform: rotate(180deg) translate(0, 14px);
      -ms-transform: rotate(180deg) translate(0, 14px);
          transform: rotate(180deg) translate(0, 14px);
  margin: 0 auto 0;
  z-index: 1;
  position: relative;
}
.kv_btn_wrap_another02 {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.kv_btn_wrap_another02:before {
  position: absolute;
  bottom: -85px;
  left: -55px;
  content: "";
  display: inline-block;
  width: 230px;
  height: 224px;
  background: url("/special/lp/assets/images/img_007/ponpoko_02.png")no-repeat center center;
  background-size: 230px auto;
  z-index: 99;
}
@media (max-width: 750px){
	.identity_doc {
    padding: 8.53vw 3% 15.47vw;
  }
  .identity_doc_content {
		margin-bottom: 5vw;
    border: 0.6vw solid #BFD768;
    border-radius: 3.33vw;
  }
  .identity_doc_ttl img{
    margin: 0 auto 1.07vw;
  }
  .identity_doc_example {
    gap: 0 8vw;
  }
  .identity_doc_example li {
    width: 34.67vw;
  }
	.kv_btn_wrap_another02:before {
    bottom: -11.33vw;
    left: -7.33vw;
    width: 30.67vw;
    height: 29.87vw;
    background-size: 30.67vw auto;
  }
}
  
/* tokuten
------------------------------------------------*/
.tokuten {
  background-color: #C8E3ED;
  padding-bottom: 30px;
  position: relative;
  z-index: 0;
}
.tokuten_ttl img {
    display: inline;
    min-width: 750px;
    width: 100%;
    position: relative;
    z-index: 5;
    margin-top: -5.0rem;
    margin-bottom: 3.0rem;
}
.img_clm ul {
  display: flex;
  width: 610px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.img_clm li {
  display: flex;
  width: 610px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.img_clm ul li {
  max-width: calc((100% - 10%)/2);
  margin-bottom: 10%;
}
.img_clm ul li:nth-of-type(2n) {
  margin-left: 10%;
}
.img_clm ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.notes {
  padding: 24px;
  text-align: left;
  line-height: 1.9;
  border: solid 1px;
  font-size: 2.1rem;
  width: 610px;
  margin: 60px auto 30px;
}
.btn_download a {
  text-align: center;
  width: 31.0rem;
  position: relative;
  display: block;
  margin: 2.0rem auto 0;
  padding: 1.2rem 1rem 1rem;
  background-color: #458ECC;
  box-shadow: 1px 4px #2E70A0;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 6rem;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.btn_download a span {
  font-size: 1.8rem;
  color: #fff;
  display: block;
}
.btn_download a::after {
  position: absolute;
  right: 2.0rem;
  top: calc(50% - 1.2rem);
  width: 2.6rem;
  height: 2.2rem;
  content: '';
  background: url("/special/lp/assets/images/img_007/btn_icon_download.svg") no-repeat center center;
  background-size: 100% auto;
}
@media (max-width: 750px){
   .img_clm ul {
    width: 100%;
    padding: 0 2.5rem;
  }
.notes {
    padding: 1.2rem;
    font-size: 1.0rem;
    width: 30.5rem;
    margin: 3.2rem auto 0;
  }
.tokuten_ttl img {
    min-width: 100vw;
    width: 100%;
    margin-top: -3.5rem;
}
.btn_download a {
  width: 16.0rem;
  margin: 1.5rem auto 0;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.3rem;
}
.btn_download a span {
  font-size: 1.0rem;
}

.btn_download a::after {
  position: absolute;
  right: 1.0rem;
  top: calc(50% - 0.5rem);
  width: 1.3rem;
  height: 1.1rem;
}
  }
/* Campaign PR
------------------------------------------------*/
.camp_pr {
  background-color: #d7c3be;
  padding: 40px 3% 66px;
  margin-top: -5px;
}
.camp_pr__icon {
	width: 346px;
	height: auto;
	margin: 0 auto;
}
.camp_pr_headline {
	position: relative;
  text-align: center;
  margin-bottom: 10px;
  font-size: min(3.8rem, 5.07vw);
  padding-top: .5em;
}
.camp_pr_headline::before,
.camp_pr_headline::after {
	position: absolute;
	top: 40%;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1em;
  height: 1em;
}
.camp_pr_headline::before {
	left: -.3em;
  background-image: url("/special/lp/assets/images/img_007/icon_type01.svg");
}
.camp_pr_headline::after {
	right: -.3em;
  background-image: url("/special/lp/assets/images/img_007/icon_type02.svg");
}
.camp_pr_img {
  display: block;
  width: 700px;
	height: auto;
	margin: 0 auto;
  -webkit-transition: all .3s;
          transition: all .3s;
}
.camp_pr_content {
  margin: 18px 0;
  text-align: center;
}
.camp_pr_content details {
	height: 65px;
  background-color: #fff;
  border: 3px solid var(--green);
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
  text-align: left;
}
.camp_pr_content details summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: .4em 0em .5em 0em;
  position: relative;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  color: var(--green);
}
.camp_pr_content details summary::-webkit-details-marker {
  display:none;
}
.camp_pr_content .accordion_content {
  padding: 30px 3.5%;
}
.camp_pr_content .accordion_content h2 {
  font-size: 19px;
  font-weight: 700;
  background-color: var(--green);
  color: #fff;
  padding: .5em 17.5px;
  border-radius: 8px;
}
.camp_pr_content .accordion_content p {
  padding: .5em 17.5px;
  margin-bottom: 30px;
}
.camp_pr_content .accordion_content p:last-child {
  margin-bottom: 0;
}
.camp_pr_content .accordion_content p a {
	color: rgb(0, 0, 238);
  text-decoration: underline;
}
.camp_pr_content .accordion_content p a:hover {
	text-decoration: none;
}
.camp_pr_content .toggle_sign::before,
.camp_pr_content .toggle_sign::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 4px;
  background-color: var(--green);
  border-radius: 1px;
  position: absolute;
  top: 47%;
  right: .7em;
}
.camp_pr_content .accordion .toggle_sign::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all .2s;
  transition: all .2s;
  -o-transition: all .2s;
}
.camp_pr_content .accordion[open] .toggle_sign::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.entry_wrap {
  margin: 2.0rem auto 0;
  text-align: center;
  font-size: 1.6rem;
}
.entry_wrap input[type="checkbox"] {
  display: none;
}
.entry_wrap input[type="checkbox"] + label, .entry_wrap input[type="checkbox"]:checked + label {
  cursor: pointer;
  position: relative;
  padding-left: 2.4rem;
  font-weight: 600;
  font-size: 20px;
}
.entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked + label::after {
  position: absolute;
  top: .7rem;
  left: 0;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5em;
  background-color: #fff;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
.entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked {
  border: .2rem solid #B1B1B1;
}
.entry_wrap input[type="checkbox"]:checked + label::after {
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  content: '';
  display: block;
  height: 11px;
  left: 7px;
  position: absolute;
  top: 37%;
  transform: rotate(45deg);
  width: 6px;
  border-radius: unset;
}
.entry_wrap .entryBtn {
  position: relative;
  /* width: 70.0rem; */
  height: 10.0rem;
  margin: 2.6rem auto 1.8rem;
}
.entry_wrap .entryBtn a {
  position: relative;
	display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--green);
  box-shadow: 1px 4px #55621F;
  transition: .3s;
  font-size: 3.5rem;
  font-weight: bold;
  border-radius: 9.9rem;
  color: #fff;
  text-decoration: none;
}
.entry_wrap .entryBtn.disable::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, .3);
  border-radius: 5.8rem;
}
.entry_wrap input:checked ~ .entryBtn a::before, .entry_wrap input:checked ~ .entryBtn a::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.7em;
  height: 0.7em;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  -webkit-transform: rotate(45deg) translate(-50%, 0);
  -ms-transform: rotate(45deg) translate(-50%, 0);
  transform: rotate(45deg) translate(-50%, 0);
  top: 47%;
  right: 1em;
}
.entry_wrap input:checked ~ .entryBtn a::before, .entry_wrap input:checked ~ .entryBtn a::after {
  animation: triAnimationFrame 0.75s 0s infinite;
}
.entry_wrap input:checked ~ .entryBtn.disable::after {
  display: none;
}

@media (max-width: 750px){
	.camp_pr {
    padding: 5.33vw 3% 8.8vw;
    margin-top: -0.67vw;
  }
	.camp_pr__icon {
    width: 46.13vw;
  }
  .camp_pr_headline {
    margin-bottom: 1.33vw;
  }
  .camp_pr_img {
    width: 93.33vw;
  }
  .camp_pr_content {
    margin: 2.4vw 0;
  }
  .camp_pr_content details {
    height: 13.5vw;
    border: 0.6vw solid var(--green);
    border-radius: 1.6vw;
    margin-bottom: 3.2vw;
  }
  .camp_pr_content .accordion_content {
    padding: 4vw 3.5%;
  }
  .camp_pr_content .accordion_content h2 {
    font-size: 1.4rem;
    border-radius: 1.07vw;
  }
  .camp_pr_content .accordion_content p {
    padding: .5em 2.33vw;
    margin-bottom: 4vw;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .camp_pr_content .toggle_sign::before,
  .camp_pr_content .toggle_sign::after {
    width: 4.67vw;
    height: 0.8vw;
    top: 45%;
  }
  .entry_wrap {
    margin: 2.67vw auto 0;
    font-size: 2.13vw;
  }
  .entry_wrap input[type="checkbox"] + label, .entry_wrap input[type="checkbox"]:checked + label {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked + label::after {
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
  }
  .entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked {
    border: 2px solid #B1B1B1;
  }
  .entry_wrap input[type="checkbox"]:checked + label::after {
    border-right: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    height: 10px;
		top: 6px;
    left: 7px;
    width: 6px;
    border-radius: unset;
  }
  .entry_wrap .entryBtn {
    height: 15.2vw;
    margin: 3.47vw auto 2.4vw;
  }
  .entry_wrap .entryBtn a {
    box-shadow: 0.13vw 0.53vw #647F29;
    font-size: 4.67vw;
    border-radius: 13.2vw;
  }
  .entry_wrap .entryBtn.disable::after {
    border-radius: 7.73vw;
  }
  .entry_wrap input:checked ~ .entryBtn a::before, .entry_wrap input:checked ~ .entryBtn a::after {
    border-top: 0.67vw solid #fff;
    border-right: 0.67vw solid #fff;
  }
  .camp_pr_content details summary {
    font-size: 2rem;
  }
}


/* faq
------------------------------------------------*/
.faq {
  background-color: #DBE1A2;
  position: relative;
  padding-bottom: 50px;
  z-index: 0;
}
.faq::before {
  display: block;
  content: "";
  background-image: url("/special/lp/assets/images/img_007/cont_bg_type02.png");
  background-size: 100% auto;
  background-position: 0 -70px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 1;
}
.faq_wrap {
  position: relative;
	padding: 80px 0 60px;
  z-index: 2;
}
.faq_ttl {
	margin-bottom: -4%;
  text-align: center;
}
.faq_ttl img {
  display: inline;
  min-width: 750px;
  width: 100%;
  position: relative;
  z-index: 5;
}
.faq_inner {
  padding: 0 3%;
}
.faq_content {
  background-color: #fff;
  border-radius: 14px;
  padding: 5% 3%;
  position: relative;
}
.faq_content details {
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq_content details:last-child {
  margin-bottom: 0;
}
.faq_content details summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  background-color: #DCE1C0;
  padding: 1em 3em 1em .7em;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
.faq_content details summary::-webkit-details-marker {
  display:none;
}
.faq_content details summary img {
  margin-right: .7em;
  width: 60px;
  height: 60px;
}
.toggle_sign::before,
.toggle_sign::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 3px;
  background-color: var(--green);
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: .7em;
}
.accordion .toggle_sign::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all .2s;
  transition: all .2s;
  -o-transition: all .2s;
}
.accordion[open] .toggle_sign::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.faq_content details p {
  padding: 0 0 1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.text_bold {
  font-weight: bold;
}
.faq .caption_text_center {
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1.25em;
  display: inline-block;
}
.faq a {
  color: var(--green);
  text-decoration: underline;
}
.faq a:hover {
  text-decoration:none;
}
.accordion_content p:last-child {
  padding-bottom: 30px;
}
@media (max-width: 750px){
  .faq::before {
    background-position: 0 -9.33vw;
  }
  .faq_wrap {
    padding: 10.67vw 0 8vw;
  }
  .faq_ttl img {
    min-width: 100vw;
  }
  .faq_content {
    border-radius: 1.87vw;
  }
  .faq_content details {
    border-radius: 1.6vw;
    margin-bottom: 1.33vw;
  }
  .faq_content details summary {
    font-size: 1.4rem;
  }
	.faq_content details summary img {
    width: 8vw;
    height: 8vw;
  }
  .toggle_sign::before,
  .toggle_sign::after {
    width: 4vw;
    height: 0.5vw;
  }
  .faq .caption_text_center {
    font-size: 1.87vw;
  }
  .accordion_content p:last-child {
    padding-bottom: 4vw;
  }
  .faq_content details p{
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/* faq
------------------------------------------------*/
footer {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 3% 6rem;
  text-align: center;
  background-color: #fff;
}

footer .kv_btn_lead,
.cv_area .kv_btn_lead {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  margin: 20px 0;
}
footer .black_cv_btn {
  margin: 0 auto 5rem;
}

.cv_area {
  max-width: 750px;
  position: fixed;
  bottom: 0;
  left: 50%;
  text-align: center;
  z-index: 99;
  display: none;
  width: 100%;
  padding: 15px 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.black_cv_btn {
  background-color: #E95D7E;
  color: #fff;
  font-size: min(4.27vw, 32px);
  font-weight: 700;
  display: block;
  padding: 1.41em;
  text-align: center;
  text-decoration: none;
  margin: 0 auto 2rem;
  border-radius: 2em;
  -webkit-box-shadow: 1px 4px #98415B;
  box-shadow: 1px 4px #98415B;
  position: relative;
  width: 547px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.black_cv_btn::before {
  display: inline-block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  -webkit-transform: rotate(45deg) translate(-50%, 0);
  -ms-transform: rotate(45deg) translate(-50%, 0);
  transform: rotate(45deg) translate(-50%, 0);
  position: absolute;
  top: 47%;
  right: 1em;
}
.cv_area.cv_area_fade {
  display: block;
  background-color: #ffffff;
}

.cv_area .black_cv_btn,
.cv_area .kv_btn_lead{
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-top: 0;
}

.cv_area.cv_area_fade .black_cv_btn,
.cv_area.cv_area_fade .kv_btn_lead {
  opacity: 1;
}

.black_cv_btn:hover {
  -webkit-transform: translate(0, 2px);
      -ms-transform: translate(0, 2px);
          transform: translate(0, 2px);
  -webkit-box-shadow: 0 1px #802445;
          box-shadow: 0 1px #802445;
}
footer p.copy {
  line-height: 1.6;
}
footer .kv_btn_lead,
.cv_area .kv_btn_lead {
  margin: 20px 0;
}
@media (max-width: 750px){
  footer .kv_btn_lead,
  .cv_area .kv_btn_lead {
    margin: 2.67vw 0;
  }
  footer .black_cv_btn {
    margin: 0 auto 6.67vw;
  }
  .cv_area {
    max-width: 100vw;
    padding: 2vw 0;
  }
  .black_cv_btn {
    margin: 0 auto 2.67vw;
		padding: .82em;
    -webkit-box-shadow: 0.13vw 0.8vw #802445;
    box-shadow: 0.13vw 0.8vw #802445;
    width: 72.93vw;
  }
  .black_cv_btn::before {
    border-top: 0.67vw solid #fff;
    border-right: 0.67vw solid #fff;
  }
  .black_cv_btn:hover {
    -webkit-transform: translate(0, 0.27vw);
        -ms-transform: translate(0, 0.27vw);
            transform: translate(0, 0.27vw);
    -webkit-box-shadow: 0 0.13vw #802445;
            box-shadow: 0 0.13vw #802445;
  }
  footer .kv_btn_lead,
  .cv_area .kv_btn_lead {
    margin: 2.67vw 0;
  }
}

/* bg_contens
------------------------------------------------*/
.bg_member02 {
  position: fixed;
  bottom: -7vw;
  left: 3vw;
  z-index: 1;
  width: 100%;
  max-width: calc((100% - 750px)/2);
  text-align: center;
}
.bg_member {
  position: fixed;
  bottom: -7vw;
  right: -1vw;
  z-index: 1;
  width: 100%;
  max-width: calc((100% - 750px)/2);
  text-align: center;
}
.bg_member .bg_member02 .bg_contents_inner {
  max-width: 90%;
  margin: 0 auto;
	padding: 0 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.bg_contents_inner img {
	width: 100%;
	max-width: 530px;
}

@media screen and (max-width: 1280px) {
  .bg_contents {
    display: none;
  }
}

/* bg_wave
------------------------------------------------*/
.wave__top01,
.wave__top02,
.wave__top03,
.wave__bottom01,
.wave__bottom02 {
	position: relative;
}

.wave__top03::before{
	position: absolute;
	left: 0;
	top: -63px;
	content: "";
	width: 100%;
	height: 65px;
	z-index: 0;
}
.wave__top01::before,
.wave__top02::before{
	position: absolute;
	left: 0;
	top: -63px;
	content: "";
	width: 100%;
	height: 65px;
	z-index: 1;
}

.wave__bottom01::after,
.wave__bottom02::after{
	position: absolute;
	left: 0;
	bottom: -65px;
	content: "";
	width: 100%;
	height: 65px;
	z-index: 1;
}
.wave__top01::before {
	background: url("/special/lp/assets/images/img_007/bg_wave_01.svg") no-repeat;
}
.wave__top02::before {
	background: url("/special/lp/assets/images/img_007/bg_wave_03.svg") no-repeat;
}
.wave__top03::before {
	background: url("/special/lp/assets/images/img_007/bg_wave_05.svg") no-repeat;
}
.wave__bottom01::after {
	background: url("/special/lp/assets/images/img_007/bg_wave_02.svg") no-repeat;
}
.wave__bottom02::after {
	background: url("/special/lp/assets/images/img_007/bg_wave_04.svg") no-repeat;
}
@media (max-width: 750px){
	.wave__top01::before,
  .wave__top02::before,
  .wave__top03::before{
    top: -8.4vw;
    height: 8.67vw;
  }
  .wave__bottom01::after,
  .wave__bottom02::after{
    bottom: -8.4vw;
    height: 8.67vw;
  }
}
/* --- アコーディオンアニメーション用 --- */
.accordion {
  overflow: hidden;
  height: var(--acc-height--closed ,auto);
  -webkit-transition: height .25s;
  -o-transition: height .25s;
  transition: height .25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.accordion.is-opened{
  height: var(--acc-height--opened ,auto);
}
.accordion + .accordion {
  margin-top: -1px;
}
.accordion_content {
  padding: 1em;
}
/* --- End アコーディオンアニメーション用 --- */

/* --------------------
  fade Animation
----------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 100px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}