@charset "utf-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 37.5);
}

.fontMontserrat{
	font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
	font-size: 4rem;
}
@media screen and (min-width: 500px) {
  html {
    font-size: 62.5%;
  }
}
/*======================================================
追従ボタン
======================================================*/
.cta_follow {
  position: fixed;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: none;
  z-index: 100;
}
.cta_follow .btn_try{
	animation: none;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 500px) {
	.cta_follow .btn_try{
	max-width: 410px;
}
	.cd_tx span {
    font-size: 3vw;
}
}
/*header*/
header{
	height: 6.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo_hd{
	width: 14.7rem;
}
/*btn_wrap*/
.btn_wrap {
  padding: 1% 0 3%;
	color: white;
  font-size: 1.7rem;
  font-weight: 600;
	text-align: center;
	background: rgb(234, 150, 156);
	background: linear-gradient(90deg, rgba(234, 150, 156, 1) 0%, rgba(236, 174, 104, 1) 100%);
	letter-spacing: 0.15rem;
}
.btn_wrap span{
	font-size: 2.4rem;
}
.btn_try {
  width: 85%;
  display: block;
  margin: 0 auto;
  animation: purupuru_anim 1.5s infinite;
}

.cta_lead {
  width: 30.5rem;
}

/*===============　マーカーアニメーション ===============*/
.text_marker_yellow { /*黄色マーカー 0.5秒*/
  padding-bottom: 2px;
  background: -webkit-linear-gradient(left, rgb(255,240,99) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(255,240,99) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255,240,99) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em; 
  background-position: 100% .8em;
  transition: .5s;
  transition-delay: .5s;
}
.text_marker_pale_red { /*薄赤色マーカー 0.5秒*/
  padding-bottom: 2px;
  background: -webkit-linear-gradient(left, rgb(251,219,212) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(251,219,212) 50%, transparent 50%);
  background: linear-gradient(left, rgb(251,219,212) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em; 
  background-position: 100% .8em;
  transition: 2.0s;
  transition-delay: .8s;
}
.text_marker_white { /*白マーカー 0.5秒*/
  padding-bottom: 2px;
  background: -webkit-linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em; 
  background-position: 100% .8em;
  transition: .5s;
  transition-delay: .5s;
}
.text_marker_blue { /*blueマーカー 0.5秒*/
  padding-bottom: 2px;
  background: -webkit-linear-gradient(left, rgb(210,226,249) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(210,226,249) 50%, transparent 50%);
  background: linear-gradient(left, rgb(210,226,249) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em; 
  background-position: 100% .8em;
  transition: .5s;
  transition-delay: .5s;
}
.text_marker_wide { /*白wideマーカー 0.5秒*/
  padding-bottom: 2px;
  background: -webkit-linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255,255,255) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 2em; 
  background-position: 100% .8em;
  transition: .5s;
  transition-delay: .5s;
}
.delay-time-line-next{
	transition-delay: 1s;
}
[class*='text_marker_'].marker_10 { /*マーカー 1秒*/
  transition: 1.0s;
  transition-delay: .8s;
}
[class*='text_marker_'].marker_20 { /*マーカー 2秒*/
  transition: 2.0s;
  transition-delay: .8s;
}
[class*='text_marker_'].marker_30 { /*マーカー 3秒*/
  transition: 3.0s;
  transition-delay: .8s;
}
[class*='text_marker_'].delay-time20 { /*マーカー ディレイ 2秒*/
  transition-delay: 2.0s;
}
.text_marker_yellow.marker_trigger
{
 background-position: 0% 3em;
}
.text_marker_pale_red.marker_trigger
{
  background-position: 0% .8em;
}
.text_marker_white.marker_trigger
{
  background-position: 0% 2em;
}
.text_marker_wide.marker_trigger{
	background-position: 0% 0em;
}
.point_title_03 .text_marker_white.marker_trigger
{
  background-position: 0% 1.2em;
}
/*about*/
#about{
	background: url("../img/about_bg.png") no-repeat 0 0/cover;
	padding: 5.5rem 2rem;
}
.bg_white{
	padding: 13% 4% 10%;
	background-color: #fff;
}
.about_tx {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 2.4;
	margin-bottom: 2%;
}
.mint_tx{
	color: #69b3a2;
	font-weight: bold;
}
.lesson_clm{
	display: flex;
  justify-content: center;
	margin: 12% 0 10%;
}
.lesson_clm li{
	width: 14.7rem;
}
.lesson_clm li p{
	font-size: 1.2rem;
	margin-top: 1rem;
}
.lesson_clm li:first-of-type p{
	padding-right: 0.4rem;
}
.lesson_clm li:nth-of-type(2) {
	padding-left: 1.4rem;
}
.lesson_clm_img {
  width: 13rem;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 500px) {
  .about_tx {
    font-size: 2rem;
}
	.shop_comment {
    font-size: 1.3rem;
}
	.lesson_clm li {
    width: 45%;
}
	.lesson_clm_img {
    width: 15rem;
}
	.lesson_clm li:nth-of-type(2) {
    padding-left: 3rem;
}
	.lesson_clm li p {
    font-size: 1.4rem;
}
}
/*worries*/
#worries{
	padding-bottom: 2.7rem;
}
.worries_list{
	position: relative;
}
.worries_list li{
	position: absolute;
}
.worries_01{
	left: 2.2rem;
    top: -17.2rem;
	width: 16.6rem;
}
.worries_02{
	right: 6.2rem;
    top: -18.5rem;
    width: 14.4rem;
}
.worries_03{
	left: 9.4rem;
    bottom: -2rem;
    width: 14.4rem;
}
.worries_04{
	right: 2.2rem;
    bottom: 0rem;
	width: 14.05rem;
}
@media screen and (min-width: 500px) {
	.worries_01 {
    left: 2rem;
    top: -25rem;
    width: 24rem;
}
	.worries_02 {
    right: 4rem;
    top: -25rem;
    width: 22rem;
}
	.worries_03 {
    left: 7rem;
    bottom: -8rem;
    width: 23rem;
}
  .worries_04 {
    right: 4rem;
    bottom: -3rem;
    width: 20rem;
}
}
/*point_01*/
#point_01 {
  background: rgb(120, 186, 173);
  background: linear-gradient(0deg, rgba(120, 186, 173, .45) 0%, rgba(228, 216, 106, .45) 100%);
  padding-bottom: 5rem;
}
#point_01 p{
	text-align: center;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2.1;
}
.point_title_01{
	margin: 9% auto 7%;
	text-align: center;
}
#point_02 .point_title_02 .text_marker_blue {
    height: 3.5rem;
    width: auto;
	margin: auto;
}
.text_marker_white+.text_marker_white,.point_title_02 .text_marker_blue.delay-time-line02{
	margin-top: 0.5rem;
	width: 30%;
    margin: auto;
}
.delay-time-line01 {
    width: 90%;
    height: auto;
    margin: auto;
}
.point_tx{
	margin-bottom: 10%;
}
#point_01 .fukidashi{
	font-size: 1.6rem;
    height: 3rem;
    width: 33.5rem;
    margin: 9% auto 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    border-radius: 1.5rem;
	padding-bottom: 0.25rem;
}
#point_01 .fukidashi.tx02{
	width: 11.5rem;
	margin: 1.5rem auto;
}
#point_01 .fukidashi::after{
	position: absolute;
    display: block;
    content: '';
    bottom: -0.9rem;
    left: calc(50% - 0.5rem);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    border-color: #ffffff transparent transparent transparent;
}
.top_img {
    width: 14.4rem;
    margin: 1rem auto;
    display: block;
}
.grand_prix {
    display: flex;
    margin: 2rem;
}
.grand_prix li:nth-of-type(2){
	margin-left: 1rem;
}
#point_01 .size_s{
	font-size: 1.3rem;
}
@media screen and (min-width: 500px) {
	#point_01 p {
    font-size: 2rem;
	}
	.top_img {
    width: 50%;
}
}
/*point_02*/
#point_02{
	background: url("../img/point_02_bg.png") no-repeat 0 0/cover;
	padding-bottom: 5rem;
}
.point_title_02{
	padding: 6.2rem 0 2.6rem;
	text-align: center;
}
#point_02 > p{
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.3;
}
#point_02 .fukidashi{
	font-size: 1.6rem;
    height: 2.8rem;
    width: 27.5rem;
    margin: 1.6rem auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6998bc;
    position: relative;
    border-radius: 1.5rem;
	padding-bottom: 0.32rem;
	color: #fff;
}

.text_marker_blue.marker_trigger
{
  background-position: 0% 2em;
}

#point_02 .fukidashi::after{
	position: absolute;
    display: block;
    content: '';
    bottom: -0.9rem;
    left: calc(50% - 0.5rem);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    border-color: #6998bc transparent transparent transparent;
}
.lesson_icon{
	display: flex;
	justify-content: center;
}
.lesson_icon li{
	font-size: 1.1rem;
	font-weight: 500;
	position: relative;
	padding-left: 1.5rem;
}
.lesson_icon li+li{
	margin-left: 1.5rem;
}
.lesson_icon li::before{
	position: absolute;
	display: block;
	content: '';
	width: 1rem;
	height: 1rem;
	top: calc(50% - 0.5rem);
	left: 0;
}
.lesson_icon li:first-of-type::before{
	background-color: #eb9d5c;
}
.lesson_icon li:nth-of-type(2)::before{
	background-color: #81d086;
}
.lesson_icon li:nth-of-type(3)::before{
	background-color: #6ba7d1;
}
.lesson_table{
	width: 90%;
	margin: 1.4rem auto 1rem;
}
#point_02 .small_tx{
	font-size: 1rem;
	font-weight: 500;
}

@media screen and (min-width: 500px) {
	#point_02{
	font-size: 62.5%;
		}
	.point_title_02 {
    padding: 6.2rem 0 4rem;
}
#point_02 .point_title_02 .text_marker_blue {
    height: 4.6rem;
}
	#point_02 > p {
    font-size: 2rem;
		line-height: 2.5;
}
	#point_02 .fukidashi {
		font-size: 2rem;
    height: 3rem;
    width: 35rem;
    margin: 4rem auto 3rem;
	}
	.lesson_icon li {
    font-size: 1.6rem;
}
	.text_marker_blue {
    background-size: 200% 1.5em;
}
	 .text_marker_pale_red.marker_trigger {
    background-position: 0% 2em;
}
	 .text_marker_white.marker_trigger {
    background-position: 0% 2em;
}
	.text_marker_blue.marker_trigger {
    background-position: 0% 4em;
}
}
	
/*point_03*/
#point_03{
	background: rgb(120, 186, 173);
    background: linear-gradient(0deg, rgba(120, 186, 173, .45) 0%, rgba(228, 216, 106, .45) 100%);
	padding: 5rem 0 3rem;
	text-align: center;
}
.point_title_03{
	text-align: center;
}
.point_title_03 .text_marker_white.marker_trigger {
    height: 2.8rem;
    width: auto;
	margin: auto;
}
#point_03 > p{
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.3;
}
#point_03 .txtUnderline{
	font-size: 1.8rem;
	font-weight: 600;
	display: inline-block;
}
#point_03 .fontMontserrat span{
	font-size: 2.5rem;
}
.price_normal {
	width: 80%;
	margin-top: 8%;
  display: inline-block;
}
.price_special{
	width: 33.6rem;
}
#point_03 .fukidashi{
	font-size: 1.8rem;
    height: 3rem;
    width: 25rem;
    margin: 4.2rem auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    border-radius: 1.5rem;
	padding-bottom: 0.25rem;
}
#point_03 .fukidashi::after{
	position: absolute;
    display: block;
    content: '';
    bottom: -0.9rem;
    left: calc(50% - 0.5rem);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    border-color: #ffffff transparent transparent transparent;
}
.price_table {
	width: 80%;
    margin: 1.4rem auto 0;
}
.price_1980 {
  width: 20rem;
  margin: 0 auto;
  display: block;
}
.price_line {
  width: 25rem;
  margin-top: 1rem;
}

@media screen and (min-width: 500px) {
	
	.point_title_03 .text_marker_white.marker_trigger {
        height: 3.5rem;
        background-position: 0% 1.5em;
    }
	#point_03 > p {
        font-size: 2rem;
        line-height: 2.5;
    }
	.price_1980 {
    width: 25rem;
}
	.price_line {
    width: 30rem;
		margin-top: 2rem;
}
	}
/*voice*/
#voice {
  background: rgb(234, 150, 156);
  background: linear-gradient(0deg, rgba(234, 150, 156, .35) 0%, rgba(236, 174, 104, .35) 100%);
  padding: 14% 5% 1%;
}
.voice_list li {
    display: flex;
    margin: 2rem 0;
    justify-content: space-between;
}
.voice_img {
    width: 30%;
    height: 100%;
}
.right_contents {
    width: 60%;
}
.right_contents p{
	font-size: 1.2rem;
	margin-top: 1rem;
}
.text_marker_wide{
	height: 3rem;
	width: auto;
}
@media screen and (min-width: 500px) {
	.voice_list li {
        margin: 6rem 0;
    }
	.right_contents p {
    font-size: 1.85rem;
}
}
/*footer*/
footer{
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6rem;
	font-size: 1rem;
}

/*======================================================
CDタイマー
======================================================*/

#countdownArea.cd_tx {
  color: #6998bc;
  margin: 0;
  position: absolute;
  top: -15px;
  left: calc(50% - 2.6em);
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 1;
  text-shadow:
    -2px -2px 0 #fff063,
     2px -2px 0 #fff063,
    -2px  2px 0 #fff063,
     2px  2px 0 #fff063,
     0px -2px 0 #fff063,
     0px  2px 0 #fff063,
    -2px  0px 0 #fff063,
     2px  0px 0 #fff063;
}

#countdownArea.cd_tx .timer_tx strong span{
	font-size: 2.4rem;
}
/*2402*/
.comparison_lead {
  width: 50%;
  margin: 1.5rem auto 3rem;
}

/*2404_店舗数470店舗*/
.shop_comment {
  font-size: 1rem;
  text-align: center;
	letter-spacing: 0;
}
.shop_comment_icon {
  font-size: 1rem;
  vertical-align: text-top;
  line-height: 1.8;
}
  .shop_comment_icon {
    font-size: 1.6rem;
    line-height: 2;
  }
/*240415*/

.lesson_clm,
.grand_prix,
.voice_list {
  padding-left: 0;
}

.btn_try {
  filter: none;
}
#point_01 .fukidashi::after,
#point_02 .fukidashi::after,
#point_03 .fukidashi::after {
  left: calc(50% - 0.9rem);
}

/*2407*/
.lead_wrap {
  background: rgb(244,144,130);
  background: linear-gradient(90deg, rgba(244,144,130,1) 0%, rgba(252,193,76,1) 100%);
}
.lead_tx01 {
  padding-top: 1rem;
}

@media screen and (min-width: 500px) {
	.cd_tx .timer_tx {
    font-size: 2rem;
}
	#countdownArea.cd_tx {
    top: -20px;
    left: calc(50% - 3.5em);
	}
	.comparison_lead {
    margin: 4rem auto 2rem;
}
	#countdownArea.cd_tx .timer_tx strong span {
    font-size: 3rem;
}
}