@charset "UTF-8";

@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 400;
  src: url("/font/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 500;
  src: url("/font/YakuHanJP/YakuHanJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 600;
  src: url("/font/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2");
}

/* @font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 400;
  src:  local('Noto Sans CJK JP'),
  local('NotoSansCJKjp-Regular'),
  local('NotoSansJP-Regular'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Regular.woff2') format('woff2');
}
@font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 500;
  src: local('NotoSansCJKjp-Medium'),
  local('NotoSansJP-Medium'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Medium.woff2') format('woff2');
}
@font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 700;
  src: local('NotoSansCJKjp-Bold'),
  local('NotoSansJP-Bold'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Bold.woff2') format('woff2');
} */

@font-face {
  font-family: "ZenKakuGothicNew"; font-style: normal; font-display: swap;
  font-weight: 400;
  src:  local('Noto Sans CJK JP'),
  local('ZenKakuGothicNew-Regular'),
  url('/font/ZenKakuGothicNew/ZenKakuGothicNew-Regular.woff2') format('woff2');
}
@font-face {
  font-family: "ZenKakuGothicNew"; font-style: normal; font-display: swap;
  font-weight: 500;
  src: local('ZenKakuGothicNew-Medium'),
  url('/font/ZenKakuGothicNew/ZenKakuGothicNew-Medium.woff2') format('woff2');
}
@font-face {
  font-family: "ZenKakuGothicNew"; font-style: normal; font-display: swap;
  font-weight: 700;
  src: local('NotoSansCJKjp-Bold'),
  local('ZenKakuGothicNew-Bold'),
  url('/font/ZenKakuGothicNew/ZenKakuGothicNew-Bold.woff2') format('woff2');
}

/* 1.reset
------------------------------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { 
  display: block;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
table {
  border-collapse: collapse;  
  border-spacing: 0;
}
caption, th  {
  text-align: left;
  font-weight: normal;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
object, embed {
  vertical-align: top;
}
button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}
a {
  background-color: transparent; /* IE 10 */
  -webkit-text-decoration-skip: objects; /* iOS 8+, Safari 8+ */
}
a:active, a:hover {
  outline-width: 0;
}
b, strong {
  font-weight: bolder;
}
hr, legend {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
img, abbr, acronym, fieldset {
  vertical-align: bottom;
  border-style: none;
}
ol, ul {
  list-style: none;
}
.clearfix:after{
  content : ''; display : block; clear : both; height:0;
}


/* 2.font
------------------------------------------- */
html {
  font-size: clamp(10px,3.125vw,17.5px);
  /*
    計算式：　10(px) / 320(px) * 100 = 3.125
    画面幅320pxの時に "font-size: 10px" 相当になる
  */
}
body {
  position: relative;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Roboto, '游ゴシック  Medium', meiryo, sans-serif; */
  font-family: "YakuHanJP","ZenKakuGothicNew",sans-serif;
  /* background:#000; */
}

body.lp{
  position: relative;
}
body.lp::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../img/main_back.jpg);
  /* background: linear-gradient(226deg, #000000, #180623,#000000,#09132e,#000000);  */
  background-size: 200% 150%;

  -webkit-animation: AnimationName 20s ease infinite;
  -moz-animation: AnimationName 20s ease infinite;
  animation: AnimationName 20s ease infinite;
}
@-webkit-keyframes AnimationName {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
@-moz-keyframes AnimationName {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
@keyframes AnimationName {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}

.all-wrap{
  max-width:560px;
  margin:0 auto;
  display:block;
  overflow:hidden;
  position:relative;
  padding-bottom:5em
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
.roboto {
  font-family: 'Roboto', sans-serif;
}


/* 3.particles
------------------------------------------- */
.res-img {
  width: 100%!important;
  height: auto;
}


/* header
------------------------------------------- */
/* .header {position: absolute;width: 100%;z-index: 150;transition: .3s;padding-top:1.5em;top:0;} */

/* .main-catch{
    width: 30%;
    position: absolute;
    top: 1rem;
    right: 3.3%;
}

.main-price{
    width: 30%;
    position: absolute;
    top: 2rem;
    left: 3%;
}

.main-logo{
    width: 15%;
    position: absolute;
    top: 83%;
    right: 7.3%;
} */

.movie-ttl{
  width: 5rem;
  margin: 0 auto 1rem;
}

.campain-container{
  padding:0 2rem 2rem 2rem;
}

.campain-video{
  width: 28rem;
  border: 1px solid #EF309E;
  margin: 0 auto;
}

.campain_price {
  width: 100%;
  margin: 1rem auto;
}


.key .catch {
  position: absolute;
  top: 2em;
  right: 2.2em;
  width: 7.2em;
}
.key .logo {
  position: absolute;
  top: 3.2em;
  left: 2.6em;
  width: 5.4em;
}
.key .darknessboxing {
  position: absolute;
  top: 32.2em;
  left: 2.8em;
  width: 12.4em;
}
.key .price_catch {
  position: absolute;
  top: 8.5em;
  left: 1.6em;
  width: 7.4em;
}



/* LP-contents
------------------------------------------- */
/* body.lp a{color:#ffa624;} */
#mainVisual{position:relative;margin:0;}
#mainVisual img{margin:0;padding:0;}
#mainVisual h1{position:absolute;bottom:20%;}

.campaign-ttl{ 
  padding: 0 1rem 0 0;
}


/*============================================
  slide.css / TOP animetion
============================================*/
.section .block {position: relative;display: inline-block;color: transparent;overflow:hidden;}
.section span.block,.section3 span.block{width:100%;}
.section .block p.news-date{color: transparent;}
.section .block img,.section .block svg{opacity:0;	transition: 0s all .6s;overflow:hidden;}
.section .block:nth-of-type(2){color: transparent;}
.section .block:nth-of-type(3) {position: relative;width: 100%;color: transparent;transition: 0 all .6s;}

.section2 .block,.section3 .block {position: relative;display: inline-block;color: transparent;overflow:hidden;}
.section2 .block img{opacity:0;	transition: 0s all .6s;width:100%}
.section3 .block img{opacity:0;	transition: 0s all .6s;width:100%}
.section3 .block img:nth-of-type(2){opacity:0;	transition: 0s all 2s;}

.section .block::after {content: ""; display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: #000; -webkit-transform: translateX(110vw) scaleX(1); transform: translateX(110vw) scaleX(1); -webkit-transform-origin: 0 0;
 transform-origin: 0 0;}
.section .block:nth-of-type(2)::after{background-color: #000;}
.section .block:nth-of-type(3)::after{background-color: transparent;}

.section2 .block::after {content: ""; display: block;position: absolute;top: 0;left: 0;width: 100%;height: 110%;background-color:rgba(255,255,255,.6); -webkit-transform: translateX(110vw) scaleX(1); transform: translateX(110vw) scaleX(1); -webkit-transform-origin: 0 0;transform-origin: 0 0;}
.section3 .block::after {content: ""; display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;
background-image: linear-gradient( 109.6deg,  rgba(156,252,248,.8) 11.2%, rgba(110,123,251,.8) 91% ); -webkit-transform: translateX(110vw) scaleX(1); transform: translateX(110vw) scaleX(1); -webkit-transform-origin: 0 0;transform-origin: 0 0;}
.section3 .block:nth-of-type(2)::after{background-image:rgba(255,255,255,.7);}


/*.showクラス付与後*/
.section.show .block {transition: 0s all .5s;color:#000;}
.section.show .block:nth-of-type(2) {transition: 0s all .5s;color:#000;}
.section.show .block:nth-of-type(3)  {-webkit-animation: fade 5s forwards; animation: fade 5s forwards;color:#000;}
.section.show .block p.news-date{color: #999;}
.section.show .block img{opacity:1; transition: 0s all .5s;}

.section.show .block::after {-webkit-animation: anime_show .5s forwards; animation: anime_show .5s forwards;}
.section.show .block:nth-of-type(2):after{-webkit-animation-delay: .5s;animation-delay: .5s;}

.section2.show .block img{opacity:1; transition: 0s all .1s;}
.section2.show .block::after {-webkit-animation: anime_show .7s forwards; animation: anime_show .7s forwards;}

.section3.show .block img{opacity:1; transition: 0s all .1s;}
.section3.show .block img:nth-of-type(2){opacity:1; transition: 0s all 1.5s;}
.section3.show .block::after {-webkit-animation: anime_show .9s forwards; animation: anime_show .9s forwards;}
.section3.show .block:nth-of-type(2)::after {-webkit-animation: anime_show 1.3s forwards; animation: anime_show 1.3s forwards;}


@keyframes anime_show {
    0% {
        transform: translateX(-110vw) scaleX(1);/*Windowの外へ配置*/
        transform-origin: 0 0;
    }
    50% {
        transform: translateX(0) scaleX(1);
		transform-origin: 0 0;
    }
    100% {
        transform: translateX(0) scaleX(-110vw);
		transform-origin: 0 0;
    }
}
/* Chrome, Safari */
@-webkit-keyframes anime_show {
    0% {
        -webkit-transform: translateX(-110vw) scaleX(0);/*Windowの外へ配置*/
		-webkit-transform-origin: 0 0;
    }
    50% {
        -webkit-transform: translateX(0) scaleX(1);
		-webkit-transform-origin: 0 0;
    }
    100% {
        -webkit-transform: translateX(0) scaleX(-110vw);
		-webkit-transform-origin: 0 0;
    }
}

.head-logo{animation-duration: .8s;animation-name: anime_logo;}

@keyframes anime_logo {
0% {opacity: 0;transform: translateY(-400px);}
100% {opacity: 1;transform: translateY(0);}
}
	
@-webkit-keyframes anime_logo {
    0% {
        -webkit-transform: translateY(-50px) scaleY(1);
		-webkit-transform-origin: 0 0;
    }
    100% {
        -webkit-transform: translateY(0) scaleY(1);
		-webkit-transform-origin: 0 0;
    }
}

/* ===================================
NEW LP 
==================================  */
/* SECTOIN */
.lp{
    color: #fcfcfc;
}
img{
 width: 100%;
}
.sec_bloc{
  padding: 3em 0;
}
.c_inner{
  padding:0 1.5em ;
}
.en{
  font-family: "Bebas Neue", sans-serif;
}
.pt{
  font-size: 1.1em;
  padding: .5em 0;
}

/* CURRICULUM ==================================*/
.curri_list{
  padding: 1em 0 3em;
}
.curri_list_box {
  padding: 1em 0;
}
.curri_list_head_wrap{
  position: relative;
}
.curri_ttl{
  /* position: absolute;
  bottom: 0;
  left: .5em;
  margin: auto; */
  padding:0 1.2rem;
  height: fit-content;
  font-size: 2.7em;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

.font_small {
  font-size: 2.5em;
}

.curri_ttl_num{
  width: 7rem;
  position: absolute;
  bottom: -1.5rem;
}
.curri_ttl_em{
  font-weight: 600;
  color:#74edff
}
.cross{
  display: block;
  font-weight: 100;
  line-height: .5;
  font-size: 1.3em;
  opacity: .8;
}
.curri_head_img{
    margin-bottom: -3em;
}
.curri_img_box {
  margin-bottom: 2em;
}
.curri_img_box img {
  filter: brightness(1.5);
}
.curri_txt{
  font-size: 1.2em;
  line-height: 1.6;
  padding: .5em 1em;
}
.red_line{
  display: block;
  width: 70%;
  height: 1px;
  background-color: #fff;
  margin: 1.2em 0;
}

/* .curri_list_box:nth-child(even){
  .curri_ttl{
    text-align: right;
    left:inherit;
    right: 0.5em;
  }
  .red_line{
    margin-left: auto;
  }

} */

/* PROGRAM ==================================*/
.voice_sec{
  background-image: url(../img/voice_back.png);
  background-size: 100%;
  background-position: top center;
}
.voice_list {
  padding: 1em 0;
}
.voice_list_box{
  padding: .5em 0;
}
.voice_result_box{
  position: relative;
  padding: 2em 1em 1.8em;
  border: 3px solid;
  border-image-source: linear-gradient(94deg, rgba(0,255,255,1) 0%, rgba(195,255,0,1) 100%);
  border-image-slice: 1;
  /* background: linear-gradient(94deg, rgba(0,255,255,1) 0%, rgba(195,255,0,1) 100%); */
  border-radius: .5em;
}
.voice_result_box::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: #000; */
  background-image: url(../img/voice_square_pattern.svg);
  background-size: 1.2em;
}
.voice_result_box_inner{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.voice_result_weight_wrap{
  font-size: 2.2em;
  line-height: 1.3;
  font-weight: 600;
}
.voice_user_name{
  display: block;
  font-size: 0.5em;
}
.voice_result_weight{
  font-family:  "Roboto",sans-serif;
  font-size: 3.6em;
  font-weight: 700;
  color: #ffff66;
  margin-bottom: -.05em;
}
.voice_arrow{
  display: block;
  width: 1.8em;
  margin-bottom: .7em;
}
.voice_down_icon{
  position: absolute;
  right: -.6em;
  top: -1.4em;
  font-family:  "Roboto",sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  color: #8a51b3;
  text-align: center;

  background-image: url(../img/rason_bg_down.svg);
  background-size: cover;
  background-position: center;

  width: 4em;
  aspect-ratio: 1/1;
}
.voice_down_num{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;

  width: fit-content;
  height: fit-content;
}
.voice_down_num span{
  display: block;
  font-size: 0.8em;
}
.voice_li_txt{
  font-size: 1.15em;
  line-height: 1.6;
  color: #ffff66;
  margin: .8em .3em;
}

.bars {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: .5rem;

  height: 5rem;
}
.bars__item {
  background-image: linear-gradient(to top, rgb(14 165 233), rgb(99 102 241));
  height: 100%;
  width: 1px;
  animation: play 1s ease-out infinite;

  &._a{ animation-delay: 0s; }
  &._b{ animation-delay: 0.5s; }
  &._c{ animation-delay: 0.2s; }
  &._d{ animation-delay: 0.75s; }
  &._e{ animation-delay: .4s; }
}
@keyframes play {
  0% {
    height: 5%;
  }
  25% {
    height: 75%;
  }
  50% {
    height: 50%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 5%;
  }
}





/* ABOUT NOA = REASON ==================================*/
.reason_list_box{
  position: relative;
  padding: 2em 0;
}
.reason_list_box::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-image: url(../img/reason_bg_texture.svg);
  background-repeat: no-repeat;
  background-position:  center;
  background-size: 100%;
  opacity: .5;
}
.reason_head_wrap{
  position: relative;
}

.reason_ttl_box{
  padding: 0 0 1em;
}
.reason_ttl_num{
  display: flex;
  align-items: flex-end;
  color: #e70b8c;
}
.reason_ttl_num .num{
  display: inline-block;
  font-size: 6em;
  line-height: 1;
}
.reason_tag{
  display: inline-block;
  font-size: 1.6em;
  line-height: 1;
  background-color: #e70b8c;
  color: #000;
  padding: .1em .3em 0;
  margin: 0 0 .9em .5em;
}

.reason_ttl .subtxt{
  position: relative;
  display: block;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 0.2em;
  margin-bottom: .5em;
  letter-spacing: -0.1rem;

}
.reason_ttl .subtxt::before{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: .8em;
  background-image: url(../img/reason_ttl_bg_tex.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: .7;
}
.reason_ttl .maintxt{
  display: block;
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.25;
  color: #e70b8c;
}

.reason_img_box{
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  width: 45%;
  /* height: 100%; */
  display: block;
}
.reason_img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason_list_box:nth-child(even){
  .reason_ttl_box{
    text-align: right;
  }
  .reason_ttl_num {
    justify-content: flex-end;
  }
  .reason_ttl .subtxt::before {
    background-position: right bottom;
  }
  .reason_img_box{
    right: inherit;
    left: 0;
  }
  .reason_ttl_box{
    padding-top: 1.5em;
  }
}


/* trial ==================================*/
.trial_head_block{
  position: relative;
}
.trial_balloon{
  position: absolute;
  left: 4.5em;
  width: 9.5em;
}
.a_swing{
  animation: anime_swing 1s infinite alternate;
}
@keyframes anime_swing {
	0% {	transform: translate(0, 0);}
	10% {	transform: translate(-.2em, -0) rotateZ(3deg);}
	20% {	transform: translate(.2em, 0) rotateZ(-3deg);}
	30% {	transform: translate(0, 0);}
	100% {	transform: translate(0, 0);}
}

.trial_sec_desc{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.8em;
  margin: auto;
  width: 90%;
  font-size: 1.15em;
  line-height: 1.6;
  padding: 1em;
  background: linear-gradient(56deg, rgba(102, 234, 255, 0) 15%, rgba(102, 234, 255, 0.35) 50%, rgba(102, 234, 255, 0) 80%);
  /* background-color:rgba(130,91,33,0.6); */
}

.trial_sec_link{
  width: 80%;
  margin: -1rem auto 2rem;
}

.trial_content_block{
  position: relative;
  /* background-image: url(../img/trial_light.png);
  background-size: 114%; */

  filter: brightness(1.1);
}
.trial_content_block::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/trial_light.png);
  background-size: 114%;
  z-index: 1;
  mix-blend-mode: plus-lighter;
}

.trial_list_arrow{
  display: block;
  width: 30%;
  margin: 2em auto -1rem;
}
.trial_step_list_num{
  width: 10em;
  position: relative;
  bottom: -15px;
  z-index: 1;
}
.trial_step_img_box{
  width: 84%;
  margin: .5em auto 1.5em;
}
.gradient_bar{
  display: block;
  width: 80%;
  height: 1px;
  background-color: #db8500;
  background: linear-gradient(94deg, rgba(102,234,255,1) 0%, rgba(235,220,33,0) 100%);
  margin: .8em 0;

  &._01{
    margin-left: auto;
  }
  &._02{
    margin-left: 1.5em;
  }
}




/* PRICE ==================================*/
.price_sec{
  position: relative;
  overflow: hidden;
  padding: 2.4em 0 3em;
}
.price_sec_bg{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - (4.4em *2) );
  object-fit: cover;
  object-position: center;
  z-index: -2;

  background-image: url(../img/bg_n.gif);
  background-repeat: repeat;
  background-size: 30%;
}
.price_sec_bg_img{
  position: relative;
  z-index: -1;
  opacity: .5;
}
.price_sec_bg img{
  height: 100%;
}
.price_sec_bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: -4.4em;
  width: 100%;
  height: 4.5em;
  /* background-image: url(../img/reason_bg_texture_mask.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%; */
  background-image: url(../img/bg_n.gif);
  background-repeat: repeat;
  background-size: 30%;
  mask-image: url(../img/reason_bg_texture_mask.svg);
}
 .price_sec_bg::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4.4em;
  width: 100%;
  height: 4.4em;
  /* background-image: url(../img/reason_bg_texture_mask.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
   */
  transform: rotateZ(180deg);
  background-image: url(../img/bg_n.gif);
  background-repeat: repeat;
  background-size: 30%;
  mask-image: url(../img/reason_bg_texture_mask.svg);
  /* mask-mode: luminance; */
} 

.price_li_box{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: .5em;
  margin: .5em 0 1em;
  border-bottom: 1px solid #fff;
}
.price_li_ttl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2em;
  padding: 0 .5em;
}
.price_course{
  font-weight: 500;
  color: #FFF;
  font-size: 2rem;
}
.price_num{
  font-size: 2.6em;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #FFF;
}
.yen{
  font-size: 0.8em;
}
.price_li_txt_wrap{
  font-size: 1.1em;
  color: #FFF;
  padding: 0 1em 1rem;
}
.price_caution{
  font-size: .95rem;
  text-align: center;
  color: #FFF;
  padding: 1em .5em;
}
/* .recommend{
  display: inline-block;
  font-size: .6em;
  font-weight: bold;
  line-height: 1;
  border-radius: 1.1em;
  padding: .5em 1em;
  margin-left: 1em;
  color: #fff;
  background-color:#74edff;
  vertical-align: .24em;
} */

.price_infinite{
  width: 6em;
  padding: .5em 1em .5em 0;
  /* background-image: url(../img/price_infinite.svg); */
}
.price_li_ttl_month {
  display: flex;
  align-items: flex-end;
}

/* Q&A ==================================*/
.qa_sec {
  filter: brightness(1.2);
}

.accordion-001/* :not([open]) */ {
  padding: .5rem 0;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2rem 2rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 100;
  background-image: url(../img/qa_back.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: center;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: .7rem;
    height: .7rem;
    margin-left: 1rem;
    border-bottom: .3rem solid #fff;
    border-right: .3rem solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

.accordion-001 p {
  transform: translateY(-10px);
  font-size: 1.15em;
  opacity: 0;
  margin: 0;
  padding: 1em 2em;
  transition: transform .5s, opacity .5s;
  line-height: 1.7;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

.sec_lp_girls_qa .accordion-001 summary {
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(90deg, rgba(255,81,161,1) 0%,  rgba(255,163,188,1) 100%);
}

.accordion-001 summary .txt{
  position: relative;
  font-size: 1.3em;
  font-weight: 500;
  padding-left: 2.2em;
}
.accordion-001 summary .txt::before{
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6em;
  margin: auto;
}
.sec_lp_girls_qa .accordion-001{
  transition: padding .3s;
  padding: 0rem 0;
}
.sec_lp_girls_qa .accordion-001 p{
  font-size: 1.2em;
  background-color: #fff1f8;
  padding: 1.5em 2em;
}
.sec_lp_girls_qa .accordion-001 summary::after{
  content: url("/assets-new/images/lp/girls/lp_girls_qa_plus_icon.svg");
  width: 1.2em;
  height: 1.2em;
  transform: rotateZ(0);
  margin-left: 0;
  border-bottom: none;
  border-right: none;
  transition: transform .2s;
}
.sec_lp_girls_qa .accordion-001[open] summary::after{
  transform: rotateZ(45deg);
}


/* STUDIO ==================================*/
.studio_sec::before,.studio_sec::after{
  content: "";
  display: block;
  width: 100%;
  height: 4.5em;
  background-image: url(../img/studio_flame.png);
  background-repeat: no-repeat;
}

.sec_lp_studio_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec_lp_studio_box{
  width: 50%;
}

.lp_studio_desc{
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  padding: 1em 0;
}
.sec_lp_studio_list{
  padding: 0 0 2em;
}
.sec_lp_studio_ph{
  position: relative;
  filter: brightness(.8);
  transition: filter 1s;
}
.on .sec_lp_studio_ph{
  filter: brightness(1.2);
}
/* .sec_lp_studio_ph::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: .5;
} */


.studio_box{
  padding: 2rem 0;
}
.studio_txt_cnt{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
}
.studio_txt_box{
  position: absolute;
}
.studio_txt{
  font-size: 1.8em;
  letter-spacing: 0.05em;
  line-height: 1;
}
.studio_txt_sub{
  font-size: 1.3rem;
}



/* FOOTER NAV */
.tgr-entry{
  position: fixed;
  bottom:0;
  z-index: 150;
  width: 100%;
  max-width: 560px;
  font-size:2em;
  font-weight:bold;
  background-color:rgba(0,0,0,0.8);
  /* padding:.9em 1em; */
}
.btn-trial{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.8em;
  padding: 0 1em;
}
.btn-trial .txt{
  display:block;
  background: rgb(48,89,186);
  /* background: linear-gradient(94deg, rgba(48,125,220,1) 0%, rgb(233, 8, 142) 38%, rgba(236,186,10,1) 70%); */
  background: linear-gradient(90deg, #307ddc, #e9088e, #74edff);
  background-size: 300% 300%;

  -webkit-animation: AnimationBtnGrad 15s ease infinite;
  -moz-animation: AnimationBtnGrad 15s ease infinite;
  animation: AnimationBtnGrad 15s ease infinite;

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@-webkit-keyframes AnimationBtnGrad {
  0%{background-position:0% 4%}
  50%{background-position:100% 97%}
  100%{background-position:0% 4%}
}
@-moz-keyframes AnimationBtnGrad {
  0%{background-position:0% 4%}
  50%{background-position:100% 97%}
  100%{background-position:0% 4%}
}
@keyframes AnimationBtnGrad {
  0%{background-position:0% 4%}
  50%{background-position:100% 97%}
  100%{background-position:0% 4%}
}

.btn-trial .arrow{
  position: relative;
  transform: rotateZ(-90deg);
  width: 1.6em;
  height: 1.5em;
  overflow: hidden;
}
.btn-trial img{
  position: absolute;
  width: 300%;
  top: 20%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* LP NAV ======================= */
.lp_nav{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  animation: lp_nav_anime .4s ease-out 2s 1  forwards ;
  transform: translateY(100%);
  opacity: 0;
}
@keyframes lp_nav_anime{
  0% { transform: translateY(100%); opacity: 0;}
  100% { transform: translateY(0); opacity :1;}
}

.lp_nav_list{
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  margin: auto;
}
.lp_nav_list_box{
  width: 50%;
  height: 5rem;
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--color-lp-pink);
  border-bottom: none;
  border-radius: .2em;
  margin: .2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp_nav_list_box._web{
  background-color: #000; 
  background: linear-gradient(45deg,#091382,#e9088e,#edc0db);
  background-size: 300% 300%;
  opacity: 0.95;
  -webkit-animation: AnimationBtnGrad 1.5s ease infinite;
  -moz-animation: AnimationBtnGrad 1.5s ease infinite;
  animation: AnimationBtnGrad 1.5s ease infinite;
}

.lp_nav_list_box._price{
  background-color: #000; 
  background: linear-gradient(45deg,#74edff,#2c1da0,#091382); 
  background-size: 300% 300%;
  opacity: 0.9;
  -webkit-animation: AnimationBtnGrad 1.5s ease infinite;
  -moz-animation: AnimationBtnGrad 1.5s ease infinite;
  animation: AnimationBtnGrad 1.5s ease infinite;
}

.speech_border{
  position: relative;
  display: block;
  width: fit-content;
  height: 100%;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 .7em;
  margin: auto;
}
.speech_border::before,
.speech_border::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 1em;
  background-color: currentColor;
}
.speech_border::before{
  left: 0;
  transform: rotateZ(-30deg);
}
.speech_border::after{
  right: 0;
  transform: rotateZ(30deg);
}



/* .tgr-entry a{border:2px solid #ffa624;color:#ffa624;padding:.75em 0;text-align:center;transition: .3s;font-size:4.75vw;font-weight:bold;display:block;border-radius:30px;-webkit-animation-name: pulse;-webkit-animation-duration: 1s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:ease-in-out;-webkit-animation-direction: alternate;-webkit-animation-delay: 0s;}
.tgr-entry a:after{content: "\f105";font-family: FontAwesome;color:#ffa624;font-size:5vw;padding-left:1em;-webkit-animation-name: pulse2;
-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:ease-in-out;-webkit-animation-direction: alternate;-webkit-animation-delay: 0s;}

@-webkit-keyframes pulse {
0% { color: #ffa624;border:2px solid #fa624;}
100% { color: #ffe349;border:2px solid #ffe349;}
}
@-webkit-keyframes pulse2 {
0% { color: #ffa624}
100% { color: #ffe349;}
} */



/* 6.footer
------------------------------------------- */
.footer {
  width:100%;
  height:auto;
  /* background-color: #333333; */
  padding:0em 1.5em;
  margin:0;
  color:#aaaaaa;
}
.footer a {
  color:#aaaaaa;
}
.footer .gnavi-sns {
  padding:2em 22% 0;
}
.footer .gnavi-sns li {
  float:left;
  border-bottom:none;
  width: 33.3%;    
}
.footer .gnavi-sns li img{
  width: 70%;
  height: 70%;
}
.foot-top-block {
  padding: 2.4rem 0 .5em;
}
.foot-lede-ttl {
  width: 90px;
  display: block;
  margin:0 auto;
}
.fcompany-box {
  margin-top:2em;
  text-align:center;
}
.fnavi-box {
  float:left;
  width:40%;
  display:none;  
}
.fnavi-box2 {
  float:right;
  width:60%;
  display:none;    
}

.fnavi-sec {
  margin-top:2em;
  text-align:center;
}
.fnavi-sec-ttl{
  font-weight:bold;
  margin-bottom:1em;
}
.fnavi-sec li {
  padding:0;
  margin-bottom:.5em;
  text-align:center;
  font-size:1.1rem;
}
.fnavi-sec li i {
  padding-right:.3em;
}
.fnavi-text {
  width:100%;
  padding:2em 0;
  margin-top:2em;
  font-size:.9rem;
  line-height:1.6;
  border-top:1px dotted #999;
}
.copyright {
  padding: 1.2rem 0;
  text-align: center;
  font-size: 10px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}


/* CAMPAIGN ==================================*/
/* LINK */
.link_circle_arrow{
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 1.5em;
  padding: 1.5em 0;
  transition: transform .2s;
}

/* LINK CIRCLE + BUTTON */
.link_circle_btn_wrap{
  background-color: #606060;
  border-radius: .1em;
  margin: 1.5em auto;
  /* max-width: 36rem; */
  color: var(--c-white);
  /* width: 82%; */
}
/* .link_circle_btn_wrap:hover {
  color: #fff;
} */
.link_circle_btn_wrap._left{
  /* margin: 1.5em auto 1.5em 0; */
  margin: 1.5em auto;
}
.link_circle_btn_wrap._right{
  margin: 1.5em 0 1.5em auto;
}
.link_circle_btn_wrap .link_circle_arrow{
  width: 100%;
  justify-content: center;
}
/* .link_circle_btn_wrap .arrow_circle{
  background-color: currentColor;
} */
.link_circle_btn_wrap .arrow_circle_img,
.link_circle_btn_wrap .arrow_circle::before{
  filter: var(--filter-w);
}

.link_circle_btn_wrap._border{
  background-color: transparent;
  color: currentColor;
  border: 1px solid var(--c-black3);
  /* min-width: 30rem; */
}
.link_circle_btn_wrap._border .arrow_circle_img,
.link_circle_btn_wrap._border .arrow_circle::before {
  filter: var(--filter-w);
}
