@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
	overflow-x: hidden;
}
body {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
	font-size: 12px;
	color: #000000;
	text-align: left;
	line-height: 1.5em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	clear: both;
	overflow-x: hidden;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
body.loading main {
    opacity: 0;
    transition: opacity 0.3s;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.wrapper {
	overflow-x: hidden;
}
a {text-decoration: none; }
a:link { color: #000000; }
a:visited { color: #000000; }
a:active { color: #000000; }
a:hover { opacity: 0.5; transition: 0.5s;}
body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s;
}
body img,
body video{
	border-style:none;
	width: 100%;
	display: block;
}
body a img{
	border-style:none; 
}
ul,li{
	list-style-type:none;
	margin:0;
	padding:0;
}
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.03);
  opacity: 1;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}
.zoomOutTrigger{
    opacity: 100;
}
.scrollanime {
  opacity: 0;
  transform: translateY(30px);
}
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.downup {
	transform: translateY(30px);
}
.updown {
  transform: translateY(-30px);
}
.slide-right {
	transform: translateX(100px);
}
.slide-left {
	transform: translateX(-100px);
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time12 {
  animation-delay: 1.2s;
}






/*======================================================================================
HEADER
======================================================================================*/
header{
	position: relative;
	z-index: 1;
}
h1{
	width: 110px;
	padding: 25px 0 0 25px;
	box-sizing: content-box;
}
.menu_btn{
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #000000;
	top: 30px;
  	right: 25px;
	position: absolute;
	z-index: 10001;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu_btn.is-active {
    background-color: #C5FF50;
}
#menu_modal {
	width: 100%;
	height: 100vh;
	background-color: #000000;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	transition: 0.3s;
	opacity: 0;
    visibility: hidden;
    overflow: hidden;
	display: flex;
	align-items: center;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
#menu_modal.modal.is-active {
	opacity: 1;
    visibility: visible;
    top: 0;
}
.menu-trigger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 19px;
}
.menu-trigger span {
	z-index: 1001;
	left: 10px;
	display: inline-block;
	box-sizing: border-box;
	width: 25px;
	height: 2px;
	background-color: #FFFFFF;
	transition: all .5s;
}
.menu-trigger.active span {
	background-color: #000000;
}
.menu-trigger span:nth-of-type(1) {
	top: 31px;
	left: 21px;
}
.menu-trigger.active span:nth-of-type(1) {
	z-index: 400;
	position: absolute;
	transform: translateY(1px) rotate(-30deg);
}
.menu-trigger span:nth-of-type(2) {
	top: 6px;
	left: 0;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 20px;
	left: 21px;
}
.menu-trigger.active span:nth-of-type(3) {
	position: absolute;
	transform: translateY(-11px) rotate(30deg);
}
a.menu-trigger:hover {
	opacity: 1;
}
@media screen and (max-width:540px){
	.wrapper {
		position: relative;
	}
	.menu_btn {
		position: absolute !important;  /* スクロールに追従 */
		z-index: 9999 !important;
	}

	.menu_btn.is-active {
		position: fixed !important;  /* モーダル開いた時だけ固定 */
		z-index: 10002 !important;
	}
}
@media screen and (min-width:541px) and (max-width:1279px){
	.wrapper {
		position: relative;
	}
}
@media screen and (min-width:1280px){
	.menu_btn{
		display: none;
	}
}

/* NAVIGATION */
.menu_inner{
	width: 540px;
	height: 100vh;
	padding: 0 25px;
	color: #FFFFFF;
}
@media screen and (min-width:540px){
	.menu_inner{
		width: 100%;
		margin: 0 auto;
	}
}
.menu_logo{
	width: 110px;
	margin-top: 25px;
}
#menu_modal ul:first-of-type{
	margin-top: 120px;
}
#menu_modal ul:first-of-type li{
	margin-top: 20px;
}
#menu_modal ul:first-of-type li a{
	color: #FFFFFF;
	font-size: 21px;
}
#menu_modal ul:first-of-type li a span{
	font-size: 11px;
	margin-left: 10px;
}
#menu_modal ul:last-of-type{
	width: 66px;
	margin: 120px auto 0 auto;
	display: flex;
	justify-content: space-between;
}
#menu_modal ul:last-of-type li{
	width: 28px;
}
.copyright{
	font-size: 11px;
	font-weight: 400;
	text-align: center;
	margin-top: 40px;
}



/*======================================================================================
FOOTER
======================================================================================*/
footer{
    background-image: url("images/bg12.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
#thanks footer{
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: -1;
	background-color: transparent;
}
.officialaccount{
	color: #FFF;
	font-weight: 600;
	padding-top: 110px;
}
.footer_sns{
	display: flex;
	justify-content: center;
}
.footer_sns li{
	width: 45px;
	margin: 0 5px;
}
.footer_logo{
	width: 110px;
	margin: 20px auto 0 auto;
}
.footer_copyright{
	color: #FFF;
	font-weight: 400;
	padding-bottom: 20px;
}
@media screen and (max-width:539px){
	.officialaccount{
		font-size: 14px;
	}
	.footer_sns{
		margin-top: 20px;
	}
	.footer_sns li{
		width: 45px;
	}
	.footer_logo{
		width: 110px;
		margin: 20px auto 0 auto;
	}
	.footer_copyright{
		font-size: 12px;
		margin-top: 15px;
	}
}
@media screen and (min-width:540px){
	footer {
		padding-top: 60px;
	}
	.officialaccount{
		font-size: 17px;
	}
	.footer_sns{
		margin-top: 30px;
	}
	.footer_sns li{
		width: 55px;
	}
	.footer_logo{
		width: 130px;
		margin: 30px auto 0 auto;
	}
	.footer_copyright{
		font-size: 14px;
		margin-top: 25px;
	}
}

/*======================================================================================
COMMON
======================================================================================*/
main {
	display: block;
	clear: both;
	height: 100vh;
	margin: 0 auto;
	background-color: #FFFFFF;
	position: absolute;
	z-index: 11;
	top: 0;
	left: 0;
	right: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE, Edge */
}
/* Chrome, Safari用 */
main::-webkit-scrollbar{
	display: none;
}
@media screen and (max-width:539px){
	main{
		width: 100%;
	}
}
@media screen and (min-width:540px){
	main{
		width: 540px;
	}
}
.tac{
	text-align: center;
}

/*LEFT →　RIGHT ANIMATION*/
.left-to-right {
	display: inline-block;
	opacity: 0;
}

.left-to-right.animate {
	animation: slideReveal 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slideReveal {
	0% {
		opacity: 1;
		clip-path: inset(0 100% 0 0);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}
h2.ttl{
	width: 100%;
	font-weight: 900;
	line-height: 1em;
	letter-spacing: -7%;
	text-align: center;
}
.subttl{
	font-weight: 500;
	text-align: center;
	margin-top: 40px;
}
h3 {
	line-height: 1.2em;
	text-align: center;
}
section.needhelp,
section.logo,
section.whatsmaila,
section.produce,
section.point,
section.slide,
section.whoitsfor,
section.scrolly,
section.voice,
section.lesson,
section.schedule,
section.pricing_reserve,
section.news,
footer{
	background-color:#FFF;
	position: relative;
    z-index: 2;
	margin-top: -1px;
}
section.lesson h2.ttl#lesson,
section.lesson h2.ttl#schedule,
h2.ttl#pricingsystem,
h2.ttl#reservation{
	position: relative;
}
section.lesson h2.ttl#lesson,
section.schedule h2.ttl#schedule{
	margin-top: 200px;
}
h2.ttl#pricingsystem{
	margin-top: 50px;
}
h2.ttl#reservation{
	margin-top: 170px;
}
h2.ttl#news{
	margin-top: 160px;
}
section.lesson h2#lesson::before,
section.schedule h2.ttl#schedule::before{
	top: 200px;
}
h2.ttl#pricingsystem::before{
	top: 50px;
}
h2.ttl#reservation::before{
	top: 170px;
}
h2.ttl#news::before{
	top: 160px;
}
#lesson::before,
#schedule::before,
h2.ttl#pricingsystem::before,
h2.ttl#reservation::before{
	position: relative;
	content: "";
	display: block;
}
@media screen and (max-width:539px){
	.contents{
		padding: 0 25px;
	}
	.contents2{
		padding: 0 15px;
	}
	h2.ttl{
		font-size: 37px;
	}
	.subttl{
		font-size: 18px;
	}
	h3 {
		font-size: 33px;
	}
	br.pc{
		display: none;
	}
}
@media screen and (min-width:540px){
	.contents{
		padding: 0 35px;
	}
	.contents2{
		padding: 0 20px;
	}
	h2.ttl{
		font-size: 55px;
	}
	.subttl{
		font-size: 25px;
	}
	h3 {
		font-size: 50px;
	}
	br.sp{
		display: none;
	}
}

/* PC */
.pc_wrap{
	width: 100%;
	height: 100vh !important;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}
@media screen and (max-width:1279px){
	.pc_contents{
		display: none;
	}
}
@media screen and (min-width:1280px){
	.pc_contents{
		width: 100%;
		height: 100vh;
		display: flex;
	}
	.pc_contents_l{
		width: 50%;
		padding-right: 270px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.pc_contents_r{
		width: 50%;
		padding-left: 270px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.pc_contents_l_top{
		width: 300px;
	}
	.pc_contents_l_top .pc_logo{
		width: 226px;
	}
	.pc_ttl{
		font-size: 20px;
		font-weight: 700;
		text-align: center;
		width: 258px;
		background-color: #C5FF50;
		padding: 10px 0;
		margin-top: 15px;
	}
	.pc_copy {
		font-size: 21px;
		font-weight: 700;
		color: #FFFFFF;
		line-height: 1.7em;
		margin-top: 25px;
	}
	.pc_copy_en{
		font-size: 14.5px;
		font-weight: 400;
		color: #FFFFFF;
		margin-top: 10px;
	}
	.pc_contents_l_instawrap{
		width: 300px;
		height: 300px;
		background-image: url("images/pc_instagram_bg.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100%;
		color: #FFFFFF;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		margin-top: 85px;
	}
	.pc_insta_ttl{
		font-size: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.pc_insta_ttl::before,
	.pc_insta_ttl::after{
		content: "";
		width: 15px;
		height: 18px;
		border-left: 1px solid #FFFFFF;
		position: relative;
	}
	.pc_insta_ttl::before {
		transform: rotate(-40deg);
		top: -5px;
		left: 0;
	}
	.pc_insta_ttl::after {
		transform: rotate(40deg);
		top: 4px;
		right: -11px;
	}
	.pc_insta_txt{
		font-size: 20px;
		font-weight: 600;
		line-height: 1.2em;
		margin-top: 10px;
	}
	.pc_contents_l_instawrap img{
		width: 128px;
		margin: 15px auto 0 auto;
	}
	.pc_contents_r nav{
		text-align: center;
		color: #FFFFFF;
	}
	.pc_nav_contents{
		font-size: 26px;
		font-weight: 700;
	}
	.pc_contents_r nav ul:first-of-type li{
		margin-top: 25px;
	}
	.pc_contents_r nav ul:first-of-type li:first-of-type{
		margin-top: 45px;
	}
	.pc_contents_r nav ul:first-of-type li a{
		display: block;
		font-size: 19px;
		color: #FFFFFF;
		line-height: 1.25em;
	}
	.pc_contents_r nav ul:first-of-type li a:hover{
		opacity: 1;
	}
	.change-text { 
		position: relative; 
		display: inline-block; 
		color: #FFFFFF; 
		text-decoration: none; 
		overflow: hidden; 
	}
	.change-text span {
		display: block;
		transition: opacity 0.3s ease;
	}
	.change-text::after { 
		content: attr(data-hover); 
		position: absolute; 
		left: 0; 
		top: 100%; 
		width: 100%; 
		text-align: center;
		color: #C5FF50;
		transition: top 0.3s ease; 
	} 
	.change-text:hover span {
		opacity: 0;
	}
	.change-text:hover::after { 
		top: 0;
	}
	.pc_contents_r nav ul:last-of-type{
		width: 80px;
		display: flex;
		justify-content: space-between;
		margin: 140px auto 0 auto;
	}
	.pc_contents_r nav ul:last-of-type li{
		width: 34px;
	}
	.pc_copyright{
		font-size: 11px;
		font-weight: 400;
		margin-top: 30px;
	}
}

/*======================================================================================
CONTENTS
======================================================================================*/
.fv_movie {
	aspect-ratio: 9 / 16;
	position: fixed;
	z-index: 0;
	top: 0;
}
.fv_movie video{
	width: 100%;
	height: auto;
	display: block;
}
.fv_movie::before{
	content:"";
	background-image: url("images/bg01_2.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	aspect-ratio: 750 / 1377;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: -350px;
}
section.fv{
	background-image: url("images/bg01.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 540px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:539px){
	.fv_movie,
	.fv_movie::before {
		width: 100%;
	}
}
@media screen and (min-width:540px){
	.fv_movie,
	.fv_movie::before {
		width: 540px;
	}
}
.fv_contents{
	position: relative;
	z-index: 1;
}
.fv_copy_jp{
	margin-top: 100px;
}
.fv_copy_jp span{
	font-weight: 700;
	background-color: #C5FF50;
	padding: 3px 10px;
}
.fv_copy_en{
	margin-top: 40px;
	position: relative;
}
.fv_copy_en li{
	margin-top: 20px;
}
.fv_cursive{
	position: relative;
	z-index: 1;
}
@media screen and (max-width:539px){
	.fv_contents{
		padding: 0 30px;
	}
	.fv_copy_jp{
		margin-top: 50px;
	}
	.fv_copy_jp span{
		font-size: 18px;
	}
	.fv_cursive {
		width: 260px;
		right: -30px;
		bottom: 130px;
	}
}
@media screen and (min-width:540px){
	.fv_contents{
		padding: 0 40px;
	}
	.fv_copy_jp{
		margin-top: 100px;
	}
	.fv_copy_jp span{
		font-size: 19px;
	}
	.fv_cursive {
		width: 380px;
		right: -10%;
		bottom: 200px;
	}
}
.btn_reserve{
	width: 100%;
	margin-top: -25px;
	position: relative;
	z-index: 1;
}
.btn_reserve a{
	width: 100%;
	display: block;
	color: #FFFFFF;
	font-weight: 700;
	background-color: #000000;
	border-radius: 50px;
	position: relative;
	transition: all 0.5s;
}
.btn_reserve a::before{
	position: absolute;
	content: "初回";
	color: #FFFFFF;
	font-weight: 400;
	background-image: url("images/btn_bg_first.png");
	width: 80px;
	aspect-ratio: 89 / 41;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	top: -25px;
	left: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 10px;
	box-sizing: border-box;
}
.btn_reserve a:hover{
	color: #000000;
	background-color: #C5FF50;
	opacity: 1;
}
.btn_reserve a .arrow{
    position: absolute;
    background-image: url("images/btn_arrow.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 34px;
    height: 34px;
    z-index: 1;
    top: calc(50% - 17px);
    transition: opacity 0.5s;
}
.btn_reserve a .arrow::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/btn_arrow_hover.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s;
}
.btn_reserve a:hover .arrow::after{
    opacity: 1;
}
.intro_txt1{
	font-weight: 900;
	line-height: 1.5em;
	color: #FFF;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, .13);
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.intro_txt2{
	font-weight: 700;
	line-height: 2em;
	color: #FFF;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, .13);
	margin-top: 40px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:539px){
	section.intro {
		margin-top: 10px;
	}
	.btn_reserve a{
		text-align: center;
		font-size: 24px;
		padding: 25px 54px 25px 25px;
	}
	.btn_reserve a span{
		font-size: 15px;
	}
	.btn_reserve a::before{
		font-size: 16px;
	}
	.btn_reserve a .arrow{
		right: 20px;
	}
	.intro_txt1{
		font-size: 24px;
	}
	.intro_txt2{
		font-size: 20px;
	}
}
@media screen and (min-width:540px){
	.btn_reserve a{
		font-size: 32px;
		padding: 30px 50px;
	}
	.btn_reserve a span{
		font-size: 23px;
	}
	.btn_reserve a::before{
		font-size: 19px;
	}
	.btn_reserve a .arrow{
		right: 40px;
	}
	.intro_txt1{
		font-size: 39px;
	}
	.intro_txt2{
		font-size: 30px;
	}
}
section.feature3{
	background-image: url("images/bg01_3.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	position: relative;
}
.feature3_img{
	margin-top: 70px;
}
.feature3_txt{
	line-height: 1.7em;
}
section.needhelp dl{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px #000 solid;
}
section.needhelp dl:first-of-type{
	border-top: 1px #000 solid;
	margin-top: 70px;
}
section.needhelp dl dd{
	font-weight: 700;
	line-height: 1.4em;
}
section.needhelp p{
	font-weight: 700;
	text-align: center;
	line-height: 1.2em;
	margin-top: 30px;
	padding-bottom: 20px;
}
@media screen and (max-width:539px){
	section.feature3{
		width: 100%;
		padding-bottom: 110px;
	}
	h3.feature3_ttl {
		margin-top: 150px;
	}
	.feature3_txt{
		font-size: 17px;
		margin-top: 40px;
	}
	section.needhelp dl{
		padding: 20px 35px;
	}
	section.needhelp dl dt{
		width: 17%;
	}
	section.needhelp dl dd{
		font-size: 18px;
		width: 75%;
	}
	section.needhelp p {
		font-size: 17px;
	}
}
@media screen and (min-width:540px){
	section.feature3{
		width: 540px;
		padding-bottom: 169px;
	
	}
	h3.feature3_ttl {
		margin-top: 250px;
	}
	.feature3_txt{
		font-size: 22px;
		margin-top: 60px;
	}
	section.needhelp dl{
		padding: 20px 45px;
	}
	section.needhelp dl dt{
		width: 64px;
	}
	section.needhelp dl dd{
		font-size: 22px;
		width: 340px;
	}
	section.needhelp p {
		font-size: 20px;
	}
}
section.logo{
	background-image: url("images/bg02.jpg");
	background-repeat: no-repeat;
	background-position: center top -55px;
}
h3.logo {
	padding-top: 150px;
}
@media screen and (max-width:440px){
	section.logo{
		background-size: cover;
		padding-bottom: 180px;
	}
	section.logo .contents div {
		margin: 50px auto 0 auto;
		width: 216px;
	}
}
@media screen and (min-width:441px) and (max-width:539px){
	section.logo{
		background-size: contain;
		padding: 50px 0 300px;
	}
	section.logo .contents div {
		margin: 60px auto 0 auto;
		width: 240px;
	}
}
@media screen and (min-width:540px){
	section.logo{
		background-size: cover;
		padding-bottom: 210px;
	}
	section.logo .contents div {
		margin: 80px auto 0 auto;
		width: 300px;
	}
	
}
.whatsmaila_copy{
	font-weight: 700;
	line-height: 1.5em;
}
section.whatsmaila p {
	font-size: 17px;
	line-height: 1.6em;
}
section.produce{
	background-image: url("images/bg03.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding-top: 200px;
}
.producedby{
	color: #FFF;
	text-align: center;
	background-color: #000;
	border-radius: 50px;
	margin: 0 auto;
}
.yokoi{
	font-weight: 700;
	line-height: 1.2em;
	margin-top: 30px;
}
.yokoi span {
	vertical-align: middle;
}
.yokoi span + span {
	font-size: 39px;
	font-weight: 900;
	margin-left: 10px;
}
.yokoi_img{
	margin-top: 40px;
}
section.produce p{
	line-height: 1.6em;
	margin-top: 20px;
}
.history {
	line-height: 1.5em;
}
section.produce ul{
	margin-top: 10px;
}
section.produce ul li{
	line-height: 1.5em;
	margin-top: 5px;
}
section.point{
	background-image: url("images/bg04.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}
@media screen and (max-width:539px){
	.whatsmaila_copy{
		font-size: 28px;
		margin-top: 30px;
	}
	section.whatsmaila p {
		font-size: 17px;
		margin-top: 15px;
	}
	.producedby{
		width: 140px;
		font-size: 13px;
		padding: 3px 0 6px;
	}
	.yokoi{
		font-size: 37px;
	}
	.yokoi span {
		font-size: 16px;
	}
	.yokoi span + span {
		font-size: 39px;
	}
	section.produce p{
		font-size: 17px;
	}
	.history {
		font-size: 17px;
		margin-top: 30px;
	}
	section.produce ul li{
		font-size: 14px;
	}
	section.point{
		padding-bottom: 50px;
	}
}
@media screen and (min-width:540px){
	.whatsmaila_copy{
		font-size: 36px;
		margin-top: 40px;
	}
	section.whatsmaila p {
		font-size: 22px;
		margin-top: 20px;
	}
	.producedby{
		width: 200px;
		font-size: 20px;
		padding: 8px 0 12px;
	}
	.yokoi{
		font-size: 50px;
	}
	.yokoi span {
		font-size: 26px;
	}
	.yokoi span + span {
		font-size: 52px;
	}
	section.produce p{
		font-size: 22px;
	}
	.history {
		font-size: 22px;
		margin-top: 40px;
	}
	section.produce ul li{
		font-size: 18px;
	}
	section.point{
		width: 540px;
		padding-bottom: 110px;
	}
}
section.point h2{
	margin-top: 200px;
}
.point_list{
	margin-top: 50px;
}
.point_list li{
	background-color: #FFF;
}
.point_list li dl{
	display: flex;
}
.point_list li dl dt{
	width: 18%;
}
.point_list li dl dd{
	width: 82%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 5%;
}
.point_ttl2{
	background: linear-gradient(90deg, #30E9C5 0%, #8270FC 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1em;
}
.point_list li p{
	line-height: 1.6em;
}
.point_list li:last-of-type{
	position: relative;
}
.point_list li:last-of-type::before{
	content: "";
	position: absolute;
	z-index: 1;
	background-image: url("images/point_3_fukidashi.png");
	background-repeat: no-repeat;
	background-size: cover;
	width: 24%;
	aspect-ratio: 1 / 1;
	right: -10px;
}
section.point .btn_reserve{
	margin-top: 70px;
}
@media screen and (max-width:539px){
	.point_list li{
		margin-top: 40px;
	}
	.point_ttl1{
		font-size: 19px;
	}
	.point_ttl2{
		font-size: 27px;
		margin-top: 5px;
	}
	.point_list li p{
		padding: 15px 5%;
		font-size: 17px;
	}
	.point_list li:last-of-type::before{
		top: -20px;
	}
	section.point .btn_reserve {
		padding: 0 10px;
	}
}
@media screen and (min-width:540px){
	.point_list li{
		margin-top: 55px;
	}
	.point_ttl1{
		font-size: 26px;
	}
	.point_ttl2{
		font-size: 40px;
		margin-top: 10px;
	}
	.point_list li p{
		padding: 20px;
		font-size: 22px;
	}
	.point_list li:last-of-type::before{
		top: -45px;
	}
	section.point .btn_reserve {
		padding: 0 15px;
	}
}
section.point h2.threeelements{
	margin-top: 150px;
}
.slide1-wrapper {
	position: relative;
}
.slide1{
	width: 100%;
	margin: 60px auto 0 auto;
 	padding: 0;
}
button.slide1-prev,
button.slide1-next {
	width: 43px;
	position: absolute;
	top: calc(50% + 10px);
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	opacity: 1;
	transition: opacity 0.5s ease;
}
button.slide1-prev {
	left: 2.5%;
}
button.slide1-next {
	right: 2.5%;
}
button.slide1-prev img,
button.slide1-next img {
	display: block;
}
.slide1-prev.hidden,
.slide1-next.hidden {
	opacity: 0;
	pointer-events: none;
}
.slide1-prev:hover,
.slide1-next:hover {
	opacity: 0.7;
	transition: opacity 0.3s;
}
.slide1 .slick-list{
	
}
/*
.slide1 .slick-list{
	padding: 0 15% 0 0 !important;
}
.slide1 .slick-next{
	right: 40px !important;
	top: calc(50% - 21.5px) !important;
	right: 10% !important;
	z-index: 1;
}
.slide1 .slick-next::before{
	background: url("images/slider_btn_threeelements.png") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	opacity: 1 !important;
}
.slide1 .slick-arrow::before {
	content: "" !important;
	width: 43px !important;
	height: 43px !important;
	position: absolute;
	top: 50% !important;
}
.slide1 > div > div{
	padding: 15px;
}
*/
.slide1 li{
	color: #283549;
	background-color: #FFF;
	border-radius: 20px;
	margin: 0 25px;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
	position: relative;
}
.slide1_img{
	box-shadow: none !important;
}
.slide1_ttl{
	font-weight: 700;
	box-shadow: none !important;
	margin-top: 25px;
}
.slide1 li p{
	line-height: 1.6em;
}
@media screen and (max-width:539px){
	/*
	.slide1 .slick-arrow::before{
		right: 0;
	}
	*/
	 .slide1 > div > div {
		padding: 20px 0 15px;
	  }
	.slide1 li{
		padding: 30px 2.65%;
		height: 432px;
		/*margin: 0 15px;*/
	}
	.slide1_ttl{
		font-size: 22px;
		margin-top: 25px;
	}
	.slide1 li p{
		font-size: 14px;
		margin-top: 20px;
	}
}
@media screen and (min-width:540px){
	/*
	.slide1 .slick-arrow::before{
		right: 15px;
	}
	*/
	.slide1 > div > div{
		padding: 35px 0 15px;
	}
	.slide1 li{
		height: 618px;
		padding: 40px 2.7%;
		/*margin: 0 25px;*/
	}
	.slide1_ttl{
		font-size: 27px;
		margin-top: 35px;
	}
	.slide1 li p{
		font-size: 20px;
		margin-top: 30px;
	}
}
section.whoitsfor{
	background-image: url("images/bg05.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding-top: 230px;
}
section.whoitsfor ul li{
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
}
section.whoitsfor ul li::before{
	content: "";
	background-image: url("images/whoitsfor_icon.png");
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	aspect-ratio: 31 / 30;
	position: relative;
}
.etc{
	text-align: right;
}
.whoitsfor2{
	background-image: url("images/bg06.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	margin-top: 20px;
	position: relative;
}
.whoitsfor2 div.ttl1,
.whoitsfor2 div.ttl2{
	line-height: 1.4em;
	padding-top: 90px;
}
.whoitsfor2 div.ttl2{
	padding-top: 30px;
}
.whoitsfor2 p{
	line-height: 1.6em;
	margin-top: 30px;
	padding-bottom: 50px;
}
.ttl2 + p {
	padding-bottom: 30px;
}
@media screen and (max-width:539px){
	section.whoitsfor{
		margin-top: -30px;
	}
	section.whoitsfor ul{
		margin-top: 60px;
	}
	section.whoitsfor ul li{
		font-size: 16px;
		margin-top: 40px;
	}
	section.whoitsfor ul li::before{
		width: 17px;
		margin-right: 20px;
	}
	.etc{
		font-size: 18px;
	}
	.whoitsfor2 div.ttl1,
	.whoitsfor2 div.ttl2{
		font-size: 23px;
	}
	.whoitsfor2 p,
	.ttl2 + p{
		font-size: 17px;
	}
}
@media screen and (min-width:540px){
	section.whoitsfor{
		margin-top: -110px;
	}
	section.whoitsfor ul{
		margin-top: 80px;
	}
	section.whoitsfor ul li{
		font-size: 22px;
		margin-top: 50px;
	}
	section.whoitsfor ul li::before{
		width: 27px;
		margin-right: 35px;
	}
	.etc{
		font-size: 25px;
	}
	.whoitsfor2 div.ttl1,
	.whoitsfor2 div.ttl2{
		font-size: 32px;
	}
	.whoitsfor2 p,
	.ttl2 + p{
		font-size: 22px;
	}
}
section.scrolly {
	background-image: url("images/bg07.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding: 120px 0 100px;
}
:root{
	--circle-sticky-span: 320vh;
	--stack-top: 180px;
	--c2-shift: 25px;
	--c3-shift: 50px;
}
.circle-wrapper{ 
	position:relative;
	top:-24px;
}
.circle{ 
	position:sticky;
	overflow:visible;
}
.circle > p{
	line-height:1.3em;
	text-align:center;
	position:sticky;
	top:20px;
	z-index:5;
	opacity:1;
	transition:opacity .10s ease-out;
	will-change:opacity;
	margin-bottom: 60px;
}
.circle > p.is-fadeout{
	opacity:0;
}
.circle > p.is-fading{
	z-index:40;
}
.stack{
	position:relative;
}
.stack::after{
	content:"";
	display:block;
	height:50px;
}
.card{
	margin:0 auto 50px auto;
	border-radius:50%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background:linear-gradient(90deg,#81CBFA 0%,#30E9C5 50%,#8270FC 90%);
	color:#000;
	padding:5px;
	border:none;
	position:sticky; 
	top:var(--stack-top);
	opacity:0;
	transform:translateY(30px);
	transition:opacity .4s ease-out,transform .4s ease-out;
}
.card.visible{
	opacity:1;transform:translateY(0);
}
.c2{ 
	top: calc(var(--stack-top) + var(--c2-shift)); 
}
.c3{ 
	top: calc(var(--stack-top) + var(--c3-shift)); 
}
.card::before{
	content:"";
	position:absolute;
	inset:7px;
	border-radius:50%;
	background:#fff;
	z-index:1
}
.card > * {
	position:relative;
	z-index:2
}
.card .card_ttl{
	line-height:1.2;
	text-align:center;
	color:#fff;
	font-weight:400;
	display:inline-block;
	padding:5px 20px;
	margin-bottom:15px;
	border-radius:9999px
}
.c1 .card_ttl{
	background:#8B70FF
}
.c2 .card_ttl{
	background:#0173FF
}
.c3 .card_ttl{
	background:#13C8F5
}
.card p{
	text-align:center;
	line-height:1.4
}
.c1 p{
	color:#8B70FF
}
.c2 p{
	color:#0173FF
}
.c3 p{
	color:#13C8F5
}
.card ul li{
	text-align:center;
	line-height:1.3em;
}
.card ul li:first-child{
	font-weight:700;
}
.c1{
	z-index:10;
}
.c2{
	z-index:20;
}
.c3{
	z-index:30;
}
@media screen and (max-width:539px){
	section.scrolly {
		margin-top: -1px;
	}
	.circle > p{
		font-size:28px;
	}
	.card{
		width:330px;
		height:330px;
	}
	.card .card_ttl{
		font-size:19px;
		margin-bottom: 10px;
	}
	.card p{
		font-size:23px;
	}
	.card ul{
		font-size:16px;
	}
	.card ul li:first-child{
		font-size:20px;
		margin:15px 0 10px;
	}
}
@media screen and (min-width:540px){
	.circle > p{
		font-size:38px;
	}
	.card{
		width:480px;
		height:480px;
	}
	.card .card_ttl{
		font-size:30px;
		margin-bottom: 20x;
	}
	.card p{
		font-size:33px;
	}
	.card ul{
		font-size:23px;
	}
	.card ul li:first-child{
		font-size:32px;
		margin:20px 0 15px;
	}
}
section.voice{
	padding-top: -350px;
	margin-top: -1px;
}
.voice_box{
	background: linear-gradient(90deg, #81CBFA 0%, #30E9C5 50%, #8270FC 90%);
	color: #000;
	z-index: 0;
	position: relative;
	padding: 6px; /* ボーダー幅 */
	border: none;
	border-radius: 20px;
	text-align: center;
}
.voice_box::before{
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	border-radius: 14px; /* 20px - 6px = 14px */
	background: #fff;
	z-index: 0;
}
/* コンテンツを前面に */
.voice_box > * {
	position: relative;
	z-index: 1;
}
.voice_box dt{
	font-weight: 600;
	border-bottom: 4px solid;
	border-image: linear-gradient(90deg, #81CBFA 0%, #30E9C5 50%, #8270FC 90%)1;
}
.voice_box dd:first-of-type{
	margin: 0 20px;
}
.voice_box dd:last-of-type{
	line-height: 1.6em;
	text-align: left;
}
section.lesson{
	background-image: url("images/bg08.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}
.slide2-wrapper {
	position: relative;
}
.slide2{
	width: 100%;
 	padding: 0;
}
button.slide2-prev,
button.slide2-next {
	width: 43px;
	position: absolute;
	top: calc(50% + 10px);
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	opacity: 1;
	transition: opacity 0.5s ease;
}
button.slide2-prev {
	left: 2.5%;
}
button.slide2-next {
	right: 2.5%;
}
button.slide2-prev img,
button.slide2-next img {
	display: block;
}
.slide2-prev.hidden,
.slide2-next.hidden {
	opacity: 0;
	pointer-events: none;
}
.slide2-prev:hover,
.slide2-next:hover {
	opacity: 0.7;
	transition: opacity 0.3s;
}
.slide2 .slick-list{
	
}
/*
.slide2 .slick-next{
	right: 40px !important;
	top: calc(50% - 21.5px) !important;
	right: 2.5% !important;
	z-index: 1;
}
.slide2 .slick-next::before{
	background: url("images/slider_btn_lesson.png") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	opacity: 1 !important;
}
.slide2 .slick-arrow::before {
	content: "" !important;
	width: 43px !important;
	height: 43px !important;
	position: absolute;
	top: 50% !important;
	right: 0;
}
*/
.slide2 li{
	background-color: #FFF;
	border-radius: 20px;
	margin: 0 25px;
	box-shadow: 0 0 15px rgba(0,0,0,0.6);
	position: relative;
}
.slide2_time{
	width: 25%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #000;
	color: #FFF;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	right: -14px;
}
.freelesson{
	font-weight: 700;
	color: #283549;
}
.slide2_ttl{
	font-weight: 700;
	box-shadow: none !important;
	text-align: center;
}
.slide2_ttl span{
	border-bottom: 7px solid;
	border-image: linear-gradient(90deg, #6CD7BB 0%, #DBCF6A 27%, #F5B2CF 62%, #A59BFF 92%)1;
}
.slide2_ttl_jp{
	font-weight: 700;
	box-shadow: none !important;
	text-align: center;
}
.slide2_img{
	box-shadow: none !important;
}
.slide2 li p{
	line-height: 1.6em;
}
.slide2_copy{
	width: 100%;
	font-weight: 600;
	line-height: 1.4em;
	color: #FFF;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	border-radius: 50px;
}
.rest{
	color: #FFF;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	margin-top: 25px;
	padding-bottom: 60px;
}
.movie_txt1,
.movie_txt2{
	color: #FFF;
	background-color: #000;
	line-height: 1.6em;
}
.movie{
	position: relative;
    padding-top: 54%;
    height: 0;
    overflow: hidden;
	margin-bottom:-2px;
}
.movie iframe{
	position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:539px){
	.voice_box{
		margin-top: 25px;
	}
	.voice_box:first-of-type{
		margin-top: 50px;
	}
	.voice_box dt{
		font-size: 20px;
		margin: 25px 20px 10px 20px;
		padding-bottom: 15px;
	}
	.voice_box dd:first-of-type{
		font-size: 14px;
	}
	.voice_box dd:last-of-type{
		margin: 10px 20px 20px 20px;
		font-size: 17px;
	}
	.slide2{
		margin: 50px auto 0 auto;
	}
	.slide2 > div > div {
		padding: 20px 0 15px;
	}
	.slide2_time{
		font-size: 25px;
	}
	.slide2_time span{
		font-size: 16px;
		margin-bottom: -7px;
	}
	.slide2_time{
		top: -20px;
	}
	.freelesson{
		font-size: 14px;
		padding: 30px 9% 0 9%;
	}
	.slide2_inner{
		padding: 30px 9%;
	}
	.slide2_ttl{
		font-size: 17px;
	}
	.slide2_ttl span{
		padding-bottom: 5px;
	}
	.slide2_ttl_jp{
		margin-top: 35px;
	}
	.slide2_img{
		margin-top: 20px;
	}
	.slide2 li p{
		font-size: 14px;
		margin-top: 20px;
	}
	.slide2_copy{
		height: 70px;
		font-size: 15px;
		margin-top: 15px;
	}
	.rest{
		font-size: 20px;
	}
	.movie_txt1{
		font-size: 15px;
		padding: 20px 25px;
	}
	.movie_txt2{
		font-size: 14px;
		padding: 20px 25px;
	}
}
@media screen and (min-width:540px){
	.voice_box{
		margin-top: 35px;
	}
	.voice_box:first-of-type{
		margin-top: 70px;
	}
	.voice_box dt{
		font-size: 30px;
		margin: 25px 20px 20px 20px;
		padding-bottom: 25px;
	}
	.voice_box dd:first-of-type{
		font-size: 18px;
	}
	.voice_box dd:last-of-type{
		margin: 20px;
		font-size: 22px;
	}
	.slide2{
		margin: 70px auto 0 auto;
	}
	.slide2 > div > div {
		padding: 35px 0 15px;
	}
	.slide2_time{
		font-size: 39px;
	}
	.slide2_time span{
		font-size: 25px;
		margin-bottom: -10px;
	}
	.slide2_time{
		top: -35px;
	}
	.freelesson{
		font-size: 18px;
		padding: 40px 9% 0 9%;
	}
	.slide2_inner{
		padding: 40px 9%;
	}
	.slide2_ttl{
		font-size: 30px;
	}
	.slide2_ttl span{
		padding-bottom: 15px;
	}
	.slide2_ttl_jp{
		font-size: 20px;
		margin-top: 60px;
	}
	.slide2_img{
		margin-top: 30px;
	}
	.slide2 li p{
		font-size: 22px;
		margin-top: 30px;
	}
	.slide2_copy{
		height: 90px;
		font-size: 23px;
		margin-top: 25px;
	}
	.rest{
		font-size: 30px;
	}
	.movie_txt1,
	.movie_txt2{
		font-size: 22px;
		padding: 30px 35px;
	}
}
section.schedule{
	background-image: url("images/bg09.jpg");
	background-repeat: no-repeat;
	background-position: center top -240px;
	background-size: 100%;
}
section.schedule p{
	line-height: 1.6em;
	text-align: left;
}
.border{
	height: 1px;
	background-color: #000;
}
section.schedule .contents {
	text-align: center;
}
.class_name1,
.class_name2,
.class_name3 {
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1em;
	position: relative;
}
.class_name1 span,
.class_name2 span,
.class_name3 span {
	color: #FFF;
	padding: 2px 10px;
	line-height: normal;
	position: absolute;
}
.class_name1 {
	color: #C42383;
}
.class_name2 {
	color: #4993D2;
}
.class_name3 {
	color: #76B141;
}
.class_name1 span {
	background-color: #C42383;
}
.class_name2 span {
	background-color: #4993D2;
}
.class_name3 span {
	background-color: #76B141;
}
.class_time{
	font-weight: 700;
}
.instructor_ttl span {
	color: #FFF;
	font-weight: 700;
	background-color: #000;
	border-radius: 50px;
	padding: 2px 50px;
}
.instructor_box1,
.instructor_box3 {
	display: flex;
	justify-content: space-between;
}
.instructor_box1 li,
.instructor_box3 li{
	width: 48%;
}
.instructor_name {
	font-weight: 700;
}
.instructor_box2 .instructor_img {
	width: 90%;
}
@media screen and (max-width:539px){
	section.schedule p{
		font-size: 17px;
		margin: 40px 0 50px;
	}
	.border {
		margin: 0 15px;
	}
	.class_name1,
	.class_name2,
	.class_name3 {
		font-size: 32px;
		margin-top: 40px;
	}
	.class_name1 span,
	.class_name2 span,
	.class_name3 span {
		font-size: 13px;
		left: 15px;
	}
	.class_time{
		font-size: 18px;
		margin-top: 20px;
	}
	.instructor_ttl{
		margin-top: 15px;
	}
	.instructor_box1,
	.instructor_box2,
	.instructor_box3 {
		margin-top: 15px;
	}
	.instructor_box1 .instructor_name,
	.instructor_box3 .instructor_name {
		font-size: 16px;
	}
	.instructor_box2 .instructor_name {
		font-size: 19px;
	}
	.instructor_img {
		margin: 20px 0 40px;
	}
	.instructor_box2 .instructor_img {
		margin: 20px 5% 40px 5%;
	}
}
@media screen and (min-width:540px){
	section.schedule p{
		font-size: 22px;
		margin: 60px 0 70px;
	}
	.border {
		margin: 0 20px;
	}
	.class_name1,
	.class_name2,
	.class_name3 {
		font-size: 48px;
		margin-top: 50px;
	}
	.class_name1 span,
	.class_name2 span,
	.class_name3 span {
		font-size: 20px;
		left: 20px;
	}
	.class_time{
		font-size: 22px;
		margin-top: 30px;
	}
	.instructor_ttl{
		margin-top: 25px;
	}
	.instructor_ttl span{
		font-size: 16px;
	}
	.instructor_box1,
	.instructor_box2,
	.instructor_box3 {
		margin-top: 25px;
	}
	.instructor_box1 .instructor_name,
	.instructor_box3 .instructor_name {
		font-size: 21px;
	}
	.instructor_box2 .instructor_name {
		font-size: 24px;
	}
	.instructor_img {
		margin: 30px 0 50px;
	}
	.instructor_box2 .instructor_img {
		margin: 30px 5% 50px 5%;
	}
}
section.pricing_reserve {
	background-image: url("images/bg10.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
}
.pricingsystem p {
	line-height: 1.6em;
}
.first{
	color: #FFF;
	text-align: center;
}
.price_list{
	position: relative;
	margin-top: 40px;
}
.price_list li{
	background-color: #FFF;
	padding: 15px 6% 20px 6%;
	margin-top: 25px;
}
.price_list li:nth-child(2){
	margin-top: 40px;
}
.price_list_ttl {
	font-size: 22px;
	letter-spacing: 18%;
	line-height: 1em;
	text-align: center;
	padding: 10px 0;
	background: linear-gradient(90deg, #30E9C5 0%, #8270FC 90%);
}
div.price{
	width: 53%;
	margin: 25px 23.5% 0 23.5%;
}
.price_list li:last-child{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 14%;
	left: calc((100% - 14%) / 2);
	top: 150px;
}
/*
.price_list li:first-child::after{
	content:"";
	position: absolute;
	background-image: url("images/pricesystem_plus.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	aspect-ratio: 93 / 94;
	width: 14%;
	left: calc((100% - 14%) / 2);
	top: 140px;
}
*/

dl.price{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 25px;
}
.price_list li:nth-child(2) dl.price dt,
.price_list li:nth-child(3) dl.price dt{
	width: 46%;
}
.price_list li:nth-child(2) dl.price dd,
.price_list li:nth-child(3) dl.price dd{
	width: 53%;
}
.pricingsystem dl.price dt p{
	font-size: 12px;
	color: #CD164B;
	margin: 0;
}
.pricingsystem dl.price dt p span{
	font-size: 10px;
}
.price_list li:nth-child(4) dl.price dt{
	width: 39%;
}
.price_list li:nth-child(4) dl.price dd{
	width: 59.5%;
}
@media screen and (max-width:539px){
	section.pricing_reserve{
		background-position: center top -100px;
	}
	.pricingsystem p {
		font-size: 17px;
		margin: 40px 0 50px;
	}
	.first{
		font-size: 28px;
		margin-top: 30px;
	}
	.plus{
		top: 125px;
	}
	.price_list li:last-child{
		top: 143px;
	}
	.price_list li dl.price dt {
		font-size: 11px;
	}
	.pricingsystem dl.price dt p{
		font-size: 10px;
	}
	.pricingsystem dl.price dt p span{
		font-size: 9px;
	}
}
@media screen and (min-width:540px){
	section.pricing_reserve{
		background-position: center top -160px;
	}
	.pricingsystem p {
		font-size: 22px;
		margin: 50px 0 60px;
	}
	.first{
		font-size: 35px;
		margin-top: 40px;
	}
	.plus{
		top: 128px;
	}
	.price_list li:last-child{
		top: 150px;
	}
	.price_list li dl.price dt {
		font-size: 13px;
	}
	.pricingsystem dl.price dt p{
		font-size: 12px;
	}
	.pricingsystem dl.price dt p span{
		font-size: 10px;
	}
}
section.reservation {
	position: relative;
}
section.reservation::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 800px; /* 背景画像の高さ固定 */
	background-image: url("images/bg10_form.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	z-index: -1;
	pointer-events: none;
}
section.reservation h2.ttl#reservation{
	margin-top: 50px;
}
.reservation p {
	line-height: 1.6em;
}
#thanks .reservation p{
	margin-top: 200px;
}
#thanks .reservation p + p {
	display: none;
}
form {
	padding-bottom: 50px;
}
form dl dt{
	font-weight: 700;
}
form dl dt span{
	color: #FF0000;
}
form dl dd.flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.note{
	line-height: 1.6em;
	margin-top: 40px;
}
.note ul{
	padding-left: 10px;
}
.note ul li{
	position: relative;
	list-style-type: none;
	padding-left: 1em;
}
.note ul li::before{
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
input[type="text"], 
input[type="textarea"], 
input[type="tel"], 
input[type="email"], 
input[type="date"],
textarea {
    width: 100%;
	background-color: #FFF;
    border: #000 1px solid;
	border-radius: 7px;
}
form dl dd.arrow input[type="text"],
form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 40px 10px 10px;
	line-height: 1.1em;
	border: #000 1px solid;
	border-radius: 7px;
	background-image: url("images/form_arrow.png");
	background-repeat: no-repeat;
	background-size: 16px 8px;
	background-position: right 10px center;
	background-color: #FFFFFF;
}
form select {
	-webkit-text-fill-color: #000;
}
form dl dd.arrow input[type="text"].hasDatepicker::-webkit-input-placeholder,
form dl dd.arrow inputt[type="text"].hasDatepicker::-moz-placeholder,
form dl dd.arrow input[type="text"].hasDatepicker::placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
input[name="addr1_hidden"] {
    position: absolute;
    left: -9999px;
}
.p-country-name {
    display: none !important;
}
form dl:last-child select{
	width: 100%;
}
input[type="radio"] {
	appearance: none;
 	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #000;
	border-radius: 50%;
}
input[type="radio"]::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	content: "";
}
input[type="radio"]:checked::before{
	background: #000;
}
.mwform-radio-field label {
	display: flex;
	align-items: center;
}
.mwform-radio-field input {
	margin-right: 3px !important;
}
input[type="submit"],
input[type="back"],
input[type="button"],
button[type="submit"] {
	max-width: 270px;
	width: 90%;
	display: block;
	clear: both;
	color: #FFF;
	font-weight: 700;
	background-color: #000;
	text-align: center;
	padding: 15px 0;
	border-radius: 50px;
	border: none;
	cursor: pointer;
}
input[type="submit"]:hover,
input[type="back"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
	color: #000;
	background-color: #C5FF50;
	transition: 0.5s;
}
.mw_wp_form .error{
	margin-top: 5px;
}
/* Datepicker を強制的に表示 */
#ui-datepicker-div {
    position: absolute !important;
    z-index: 99999 !important;
    background: white !important;
    border: 1px solid #aaa !important;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
}
@media screen and (max-width:539px){
	.reservation p {
		font-size: 17px;
		margin: 40px 0 50px;
	}
	form dl{
		margin-top: 25px;
	}
	form dl dt{
		font-size: 16px;
	}
	form dl dd{
		margin-top: 10px;
		font-size: 17px;
	}
	.note{
		font-size: 12px;
	}
	input[type="text"], 
	input[type="textarea"], 
	input[type="tel"], 
	input[type="email"], 
	input[type="date"],
	textarea{
		font-size: 15px;
		padding: 8px;
	}
	input[name="zip"]{
		width: 120px;
		margin-left: 5px;
	}
	select[name="addr1"]#prefecture-select{
		width: 155px;
		font-size: 15px;
		padding: 9px;
	}
	form dl dd.arrow input[type="text"].hasDatepicker{
		padding: 9px;
	}
	input[type="submit"],
	input[type="back"],
	input[type="button"],
	button[type="submit"] {
		font-size: 20px;
		margin: 50px auto 0 auto;
	}
}
@media screen and (min-width:540px){
	.reservation p {
		font-size: 22px;
		margin: 50px 0 60px;
	}
	form dl{
		margin-top: 40px;
	}
	form dl dt{
		font-size: 23px;
	}
	form dl dd{
		margin-top: 20px;
		font-size: 22px;
	}
	.note{
		font-size: 14.5px;
	}
	input[type="text"], 
	input[type="textarea"], 
	input[type="tel"], 
	input[type="email"], 
	input[type="date"],
	textarea{
		font-size: 22px;
		padding: 16px;
	}
	input[name="zip"]{
		width: 180px;
		margin-left: 5px;
	}
	select[name="addr1"]#prefecture-select{
		width: 230px;
		font-size: 22px;
		padding: 18px;
	}
	form dl dd.arrow input[type="text"].hasDatepicker{
		padding: 18px;
	}
	.mw_wp_form .horizontal-item + .horizontal-item {
	  margin-left: 20px !important;
	}
	.mwform-radio-field input {
		margin-top: 3px !important;
	}
	input[type="submit"],
	input[type="back"],
	input[type="button"],
	button[type="submit"] {
		font-size: 24px;
		margin: 70px auto 0 auto;
	}
}
section.news{
	background-image: url("images/bg11.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	position: relative;
	z-index: 0;
}
section.news p{
	line-height: 1.6em;
}
.phone{
	background-image: url("images/bg11_phone.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}
.phone_check{
	font-weight: 700;
	letter-spacing: 35%;
	display: flex;
	justify-content: center;
}
.phone_check::before,
.phone_check::after{
	content: "";
	width: 15px;
	height: 22px;
	border-left: 1px solid #000;
	position: relative;
	
}
.phone_check::before {
	transform: rotate(-27deg);
	top: -5px;
	left: 0;
}
.phone_check::after {
	transform: rotate(27deg);
	top: 4px;
	right: -11px;
}
.instabranm_qr{
	width: 41.7%;
	margin: 10px auto 0 auto;
}
.phone h2.ttl{
	margin-top: 180px;
}
.studio_name{
	font-weight: 700;
}
.studio_name_jp{
	font-weight: 700;
}
.studio_address{
	line-height: 1.7em;
}
.map{
	width: 100%;
	border: 1px #7B7B7B solid;
	border-radius: 20px;
	position: relative;
}
.map iframe{
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
.access{
	line-height: 1.7em;
}
@media screen and (max-width:539px){
	section.news p{
		font-size: 17px;
		margin-top: 40px;
	}
	.phone_check{
		font-size: 20px;
		padding-top: 60px;
	}
	.studio_name{
		font-size: 25px;
		margin-top: 60px;
	}
	.studio_name_jp{
		font-size: 14px;
		margin-top: 15px;
	}
	.studio_address{
		font-size: 14px;
		margin-top: 20px;
	}
	.map{
		height: 250px;
		margin-top: 15px;
	}
	.access{
		font-size: 12px;
		margin-top: 15px;
	}
}
@media screen and (min-width:540px){
	section.news p{
		font-size: 22px;
		margin-top: 50px;
	}
	.phone_check{
		font-size: 22px;
		padding-top: 70px;
	}
	.studio_name{
		font-size: 33px;
		margin-top: 70px;
	}
	.studio_name_jp{
		font-size: 18px;
		margin-top: 25px;
	}
	.studio_address{
		font-size: 18px;
		margin-top: 30px;
	}
	.map{
		height: 300px;
		margin-top: 25px;
	}
	.access{
		font-size: 15px;
		margin-top: 25px;
	}
}





