@charset "utf-8";
/* CSS Document */

/*==========
Googleフォント
==========*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');


/*==========
リセットCSS
==========*/
@import url("../../css/destyle.css");


/*==========
共通パーツCSS
==========*/
@import url("../../css/common.css");


/*==========
色指定
==========*/
/* @import url("../../css/color.css"); */



.wrap {
	margin-top: 56px;
}

@media (min-width: 900px) {
	.container {
		max-width: 800px;
	}
}



/*==========
MV
==========*/
.mv_lesson {}

.mv_lesson .container {
	width: 100%;
}


/*==========
店舗情報
==========*/
.top_info {
	padding: 20px 0 0;
	background: #e9e9e9;
	margin-top: 42px;
}

.top_info_name {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 3px;
}

.top_info_catch {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.2;
}

@media (min-width: 900px) {
	.top_info_name {
		font-size: 2rem;
		margin-bottom: 5px;
	}

	.top_info_catch {
		font-size: 3.2rem;
	}
}


/*==========
お問い合わせボタン
==========*/
.contact_btn {
	margin-bottom: 20px;
	padding: 30px 0;
	background: #e9e9e9;
}

.contact_btn .container {
	width: 90%;
}

.contact_btn_item {
	margin-bottom: 12px;
}

.contact_btn_item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 64px;
	border-radius: 3px;
}

.contact_btn_item a:hover {
	opacity: .7;
	color: #FFF;
}

.contact_btn_item a svg {
	height: 40px;
	margin-right: 6px;
}

.contact_btn_item a span {
	font-size: 2rem;
	font-weight: 700;
}

.contact_btn_tel {
	color: #FFF;
}

.contact_btn_tel svg {
	fill: #FFF;
}

a.contact_btn_tel span {
	font-size: 2.4rem;
}

.contact_btn_mail {
	background: #0F8BFF;
	color: #FFF;
	fill: #FFF;
}

.contact_btn_line {
	background: #00c300;
	color: #FFF;
	fill: #FFF;
}

.contact_btn_message {
	width: 90%;
	margin: 12px auto 0;
}

@media (min-width: 900px) {
	.contact_btn .container {
		display: flex;
		justify-content: center;
		gap: 10px;
	}

	.contact_btn_item {
		width: calc((100% - 10px * 2) / 3);
	}

	.contact_btn_item a svg {
		height: 36px;
	}

	.contact_btn_message {
		max-width: 800px;
		font-size: 1.5rem;
		text-align: center;
	}
}



/*==========
メニューボタン
==========*/
.menu_wrap .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 10px 0 40px;
}

.menu_item {
	width: calc((100% - 20px * 3) / 4);
	text-align: center;
	line-height: 1.1;
	color: #3e3e3e;
}

.menu_item_icon {
	height: 45px;
	margin-bottom: 3px;
	fill: #3e3e3e;
}

.menu_item_icon:hover {
	fill: #b390b9;
}

.menu_item_arrow {
	height: 10px;
	fill: #b390b9;
}

.menu_item span {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
}


.menu_wrap.tanashi_menu .container {
	width: 100%;
	padding: 12px 0;
	justify-content: space-between;
	gap: 10px
}

.menu_wrap.tanashi_menu .menu_item {
	width: calc((100% - 10px * 4) / 5);
}


@media (min-width: 900px) {
	.menu_wrap .container {
		padding: 10px 40px 40px;
	}

	.menu_item_icon {
		height: 72px;
	}

	.menu_item span {
		font-size: 1.5rem;
	}

	.menu_wrap.tanashi_menu .container {
		padding: 12px 0 40px;
	}
}


/*==========
バナー
==========*/
.banner {
	padding-bottom: 60px;
}

.banner_item {
	margin-bottom: 20px;
}

@media (min-width: 900px) {
	.banner_item {
		margin-bottom: 40px;
	}
}


/*==========
スタジオ紹介
==========*/
.section_title_wrap {
	padding: 6px 0;
}

.section_title {
	font-size: 3rem;
}

.studio_item {
	padding-bottom: 20px;
}

.studio_title {
	font-size: 3rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 20px;
}

.studio_mv {
	position: relative;
	padding-bottom: 30px;
}

@media (min-width: 900px) {
	.section_title {
		font-size: 4rem;
	}
}



/*==========
インストラクター
==========*/
#instructor .container {
	padding: 20px 0 60px;
}

.instructor_item {
	background: #f5f5f5;
	margin-bottom: 12px;
}

.instructor_item_title {
	font-size: 2rem;
	font-weight: 900;
	padding: 12px 0 12px 15px;
	cursor: pointer;
	position: relative;
	transition: all .5s ease;
	display: flex;
	align-items: center;
}

.instructor_item_title img {
	height: 120px;
	margin-right: 6px;
}

.instructor_item_title::before,
.instructor_item_title::after {
	position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #333;
}

.instructor_item_title::before {
	top: 48%;
	right: 15px;
	transform: rotate(0deg);
}

.instructor_item_title::after {
	top: 48%;
	right: 15px;
	transform: rotate(90deg);
}

.instructor_item_title.close::before {
	transform: rotate(45deg);
}

.instructor_item_title.close::after {
	transform: rotate(-45deg);
}

.instructor_item_body {
	padding: 12px 15px;
	display: none;
}

.instructor_item_body p {
	margin-bottom: 16px;
}

.instructor_item_movie {
	position: relative;
	width: 100%;
	padding-top: 53.25%;
}

.instructor_item_movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

@media (min-width: 900px) {
	#instructor .container {
		padding: 0px 0 100px;
	}

	.instructor_item_title {
		font-size: 2.6rem;
	}

	.instructor_item_title img {
		height: 150px;
		margin-right: 12px;
	}

	.instructor_item_body p {
		margin-bottom: 32px;
		padding: 0 12px;
	}

}




/*==========
料金
==========*/
#price .container {
	padding: 0 0 60px;
}

#course .container {
	padding: 20px 0 60px;
}

.price_table {
	width: 100%;
	border: solid 1px #c2c2c2;
	margin-top: 20px;
}

.price_table th,
.price_table td {
	border: solid 1px #c2c2c2;
	padding: 24px 12px;
}

.price_table th {
	width: 40%;
	vertical-align: middle;
}

.price_table td {}

@media (min-width: 900px) {

	#price .container,
	#course .container {
		padding: 0 0 100px;
	}
}



/*==========
スケジュール
==========*/
#schedule .container {
	padding: 20px 0 60px;
}

@media (min-width: 900px) {
	#schedule .container {
		padding: 0 0 100px;
	}
}


/*==========
アクセス
==========*/
#access .container {
	padding: 20px 0 80px;
}

.access_map iframe {
	width: 100%;
	height: 50vh;
}

.access_shop_info {
	width: 90%;
	margin: 30px auto;
}

.access_shop_info dt {
	padding: 12px 0 0 6px;
}

.access_shop_info dd {
	border-bottom: solid 1px #c2c2c2;
	padding: 12px 12px 18px 12px;
}

@media (min-width: 900px) {
	#access .container {
		padding: 0 0 100px;
	}
}



/*==========
協力店様
==========*/
.sponsor {
	padding: 30px 0 70px;
}

.sponsor_list {
	margin: 0 auto;
	display: flex;
	gap: 20px;
}

.sponsor_list_item {
	width: calc((100% - 20px * 1)/2);
	text-align: center;
}

.sponsor_list_item a {
	color: #3e3e3e;
}

.sponsor_list_item a:hover {
	opacity: .7;
}

.sponsor_list_item img {
	width: 100%;
}

.sponsor_list_item span {
	font-size: 12px;
}



/*==========
SNSリンク
==========*/
.sns_link {
	display: flex;
	justify-content: space-around;
}

.sns_link_item svg {
	height: 48px;
}

@media (min-width: 900px) {
	.sns_link {
		justify-content: center;
		gap: 40px;
	}
}



/*==========
スペーシング
==========*/
.mt_10 {
	margin-top: 10px;
}

.mt_15 {
	margin-top: 15px;
}

.mt_20 {
	margin-top: 20px;
}

.mt_25 {
	margin-top: 25px;
}

.mt_30 {
	margin-top: 30px;
}

.mt_35 {
	margin-top: 35px;
}

.mt_40 {
	margin-top: 40px;
}

.mt_45 {
	margin-top: 45px;
}

.mt_50 {
	margin-top: 50px;
}

.mt_55 {
	margin-top: 55px;
}

.mt_60 {
	margin-top: 60px;
}

.mt_65 {
	margin-top: 65px;
}

.mt_70 {
	margin-top: 70px;
}

.mt_80 {
	margin-top: 80px;
}

.mt_90 {
	margin-top: 90px;
}

.mt_100 {
	margin-top: 100px;
}

.mt_110 {
	margin-top: 110px;
}

.mt_120 {
	margin-top: 120px;
}

.mt_130 {
	margin-top: 130px;
}

.mb_10 {
	margin-bottom: 10px;
}

.mb_15 {
	margin-bottom: 15px;
}

.mb_20 {
	margin-bottom: 20px;
}

.mb_25 {
	margin-bottom: 25px;
}

.mb_30 {
	margin-bottom: 30px;
}

.mb_35 {
	margin-bottom: 35px;
}

.mb_40 {
	margin-bottom: 40px;
}

.mb_45 {
	margin-bottom: 45px;
}

.mb_50 {
	margin-bottom: 50px;
}

.mb_55 {
	margin-bottom: 55px;
}

.mb_60 {
	margin-bottom: 60px;
}

.mb_65 {
	margin-bottom: 65px;
}

.mb_70 {
	margin-bottom: 70px;
}

.mb_80 {
	margin-bottom: 80px;
}

.mb_90 {
	margin-bottom: 90px;
}

.mb_100 {
	margin-bottom: 100px;
}

.mb_110 {
	margin-bottom: 110px;
}

.mb_120 {
	margin-bottom: 120px;
}

.mb_130 {
	margin-bottom: 130px;
}

.pt_20 {
	padding-top: 20px;
}

.pt_25 {
	padding-top: 25px;
}

.pt_30 {
	padding-top: 30px;
}

.pb_20 {
	padding-bottom: 20px;
}

.pb_25 {
	padding-bottom: 25px;
}

.pb_30 {
	padding-bottom: 30px;
}
