@charset "utf-8";
/* CSS Document */


/*==========
MV
==========*/
.mv {
	height: 70vh;
	overflow: hidden;
	position: relative;
}

.mv_bg {
	height: 75vh;
	object-fit: cover;
	object-position: 55% -5vh;
}

.mv_layer {
	position: absolute;
	bottom: 6px;
	width: 100%;
}

.mv_copy {
	text-align: right;
	transform: translateY(22px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.mv_copy_blue,
.mv_copy_pink {
	color: #FFF;
	font-size: 2.4rem;
	font-weight: 900;
	transform: skewX(-10deg);
	padding: 9px 24px 9px 24px;
	margin-right: -12px;
	margin-bottom: 9px;
	text-align: right;
	inline-size: fit-content;
}

.mv_copy_blue {
	background-color: rgba(50, 192, 239, 0.9);
}

.mv_copy_pink {
	background-color: rgba(230, 46, 138, 0.9);
}

.mv_giogio_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-decoration: none;
}

.mv_giogio_link img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: solid 6px #def51f;
	z-index: 99;
}

.mv_giogio_link p {
	background-color: #def51f;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 3px 12px 3px 18px;
	transform: translateX(-12px);
}


@media (min-width: 768px) {
	.mv {
		height: 660px;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		background-color: #dbddda;
		text-align: center;
	}

	.mv_layer {
		width: 100%;
		bottom: 12px;
	}

	.mv_bg {
		height: 100vh;
		/* max-width: 1200px; */
		object-position: 0% -22vh;
	}

	.mv_copy {
		transform: translateY(45px);
	}

	.mv_copy_blue,
	.mv_copy_pink {
		font-size: 3.6rem;
		padding: 15px 66px 15px 42px;
		margin-right: -42px;
		margin-bottom: 9px;
	}

	.mv_giogio_link {
		position: relative;
		left: 15%;
	}

	.mv_giogio_link img {
		width: 150px;
		height: 150px;
	}

	.mv_giogio_link p {
		font-size: 2rem;
		line-height: 1.4;
	}

}


/*==========
体験レッスン
==========*/
.trial_info {
	padding: 30px 0;
}

.trial_info .container {
	border: solid 2px var(--line_color);
	border-radius: 18px;
	padding-bottom: 12px;
	background-color: #fff;
}

.trial_info .container h2 {
	text-align: center;
	padding: 12px 0;
	background-color: #ffe007;
	font-size: 2.4rem;
	font-weight: 600;
	border-radius: 18px 18px 0 0;
}

.trial_info .container .price {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
}

.trial_info .container .info {
	text-align: center;
}


/*==========
特色
==========*/
#feature {
	margin-top: 36px;
	padding: 54px 0;
	background-color: var(--bg_gray);
}

.feature_list_item {
	background-color: #FFF;
	padding: 30px;
	box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
	position: relative;
	margin-bottom: 18px;
}

.feature_list_item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 36px solid var(--main_color);
	border-right: 36px solid transparent;
}

.feature_list_item::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 36px solid var(--main_color);
	border-left: 36px solid transparent;
}

.feature_list_item h3 {
	font-size: 2rem;
	color: var(--main_color);
	margin-bottom: 9px;
}


@media (min-width: 768px) {
	#feature {
		padding: 72px 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.feature_list_item {
		padding: 42px 60px;
		margin-bottom: 30px;
	}

	.feature_list_item::after {
		border-top: 48px solid var(--main_color);
		border-right: 48px solid transparent;
	}

	.feature_list_item::before {
		border-bottom: 48px solid var(--main_color);
		border-left: 48px solid transparent;
	}

	.feature_list_item h3 {
		font-size: 2.8rem;
	}
}



/*==========
特色
==========*/
#course {
	padding: 54px 0;
}

.course_item {
	width: 96%;
	margin: 0 auto 60px;
}

.course_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	padding-bottom: 5px;
	border-bottom: solid 5px var(--main_color);
	margin-bottom: 24px;
}

.course_item h3 span {
	font-size: 1.6rem;
	background-color: #FFEB3B;
	padding: 0 12px;
	margin-left: 6px;
}

.course_item_description {
	margin-bottom: 24px;
}

.course_item_type {
	margin-bottom: 42px;
}

.course_item_type li {
	font-size: 1.6rem;
	font-weight: 900;
	padding: 9px 6px;
	border-bottom: solid 1px var(--line_color);
	color: #444343;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.course_item_type li span {
	display: block;
	width: 9px;
	height: 9px;
	background: #fc49a4;
	transform: rotate(45deg);
}

.course_item_photo {
	margin-bottom: 30px;
}

.course_item_table_description {
	width: 78%;
	margin: 0 auto 30px;
	font-size: 2rem;
	font-weight: 600;
	padding: 9px 0;
	text-align: center;
	background-color: #fff387;
	transform: skewX(350deg);

}

.course_item_table {
	width: 100%;
	border: solid 1px var(--line_color);
	margin-bottom: 30px;
}

.course_item_table caption {
	background-color: var(--main_color);
	color: #FFF;
	padding: 9px 12px;
	border: solid 1px var(--line_color);
	border-bottom: none;
	font-size: 2rem;
	font-weight: 900;
	text-align: left;
}

.course_item_table th,
.course_item_table td {
	padding: 9px 6px;
	border-bottom: solid 1px var(--line_color);
}

.course_item_table th {
	text-align: left;
}

.course_item_table th .subject {
	font-size: 1.8rem;
	margin-bottom: 6px;
}

.course_item_table th .time {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.course_item_table th .time svg {
	width: 18px;
	fill: #ff9800;
	margin-right: 3px;
}

.course_item_table td .price {
	font-weight: 600;
	font-size: 2.2rem;
}

.course_item_table td .price span {
	font-size: 3.6rem;
}

.course_item_table td .campaign {
	font-weight: 600;
	background-color: #ffe137;
	margin-top: 3px;
}

.course_item_table_img {
	margin-bottom: 30px;
}

.course_item_table_img p {
	margin-bottom: 30px;
}

.course_item_column {
	padding: 24px 0;
	background-color: #fbffce;
	margin-bottom: 30px;
}

.course_item_column h4 {
	color: #ff840c;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 18px;
}

.course_item_column ul {
	width: 84%;
	margin: 0 auto;
}

.course_item_column ul li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 9px;
}

.course_item_column ul li svg {
	height: 18px;
	fill: #FF0000;
	margin-top: 3px;
}

.course_item_column ul li span {
	width: calc(100% - 24px);
	font-size: 1.4rem;
}

.course_item_line_copy {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 600;
}

.course_item_line_copy span {
	display: block;
}

/* ダンスボーカルコース  */
.dancevocal_course_table caption {
	background-color: #df74b3;
}

.dancevocal_course_table td .line_through {
	text-decoration: line-through;
	color: #dc1e1e;
	margin-bottom: -12px;
	display: block;
}

.dancevocal_course_table td .line_through .price {
	color: #8d8d8d;
}

.dancevocal_course_table .border_white th,
.dancevocal_course_table .border_white td {
	border-bottom: solid 1px #ffffff
}

.dancevocal_course_table .border_white.plus th,
.dancevocal_course_table .border_white.plus td {
	padding: 0;
}

.dancevocal_course_table .border_white.plus td svg {
	height: 30px;
	fill: #73bdc5;
	margin-left: 18px;
}

.dancevocal_course_description p {
	margin-bottom: 12px;
}

.dancevocal_course_description a {
	color: #03A9F4;
}

.dancevocal_course_description a svg {
	height: 12px;
	fill: #03A9F4;
}



@media (min-width: 768px) {
	#course {
		padding: 72px 0;
	}

	.course_item {
		margin-bottom: 120px;
	}

	.course_item h3 {
		font-size: 3rem;
		padding-bottom: 6px;
		border-bottom: solid 6px var(--main_color);
		margin-bottom: 36px;
	}

	.course_item_description {
		margin-bottom: 36px;
	}

	.course_item_type {
		margin-bottom: 60px;
	}

	.course_item_type li {
		font-size: 1.8rem;
		padding: 12px 9px;
		gap: 9px;
	}

	.course_item_photo {
		margin-bottom: 48px;
	}

	.course_item_table {
		margin-bottom: 48px;
	}

	.course_item_table caption {
		padding: 12px 15px;
		font-size: 2rem;
	}

	.course_item_table th,
	.course_item_table td {
		padding: 24px 12px;
	}

	.course_item_column {
		padding: 36px 0;
		margin-bottom: 48px;
	}

	.course_item_column h4 {
		font-size: 2.4rem;
		margin-bottom: 24px;
	}

	.course_item_column ul {
		width: 78%;
	}

	.course_item_column ul li {
		gap: 9px;
		margin-bottom: 12px;
	}

	.course_item_column ul li svg {
		height: 24px;
	}

	.course_item_column ul li span {
		width: calc(100% - 36px);
		font-size: 1.6rem;
	}

	.course_item_line_copy {
		font-size: 3.2rem;
	}

	.course_item_line_copy span {
		display: inline-block;
	}

	.dancevocal_course_table .border_white.plus td svg {
		height: 42px;
	}
}



/*==========
特色
==========*/
#flow {
	padding: 54px 0;
	background-color: var(--bg_gray);
}

.flow_list_item {
	background-color: #FFF;
	padding: 12px 24px 36px;
	box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
	position: relative;
	margin-bottom: 42px;
}

.flow_list_item:not(:last-child)::before {
	content: '';
	position: absolute;
	bottom: -36px;
	left: 50%;
	width: 1px;
	height: 30px;
	background-color: #c9c9c9;
}

.flow_list_item h3 {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 900;
}

.flow_list_item_no {
	font-family: 'Geologica', sans-serif;
	font-size: 7.8rem;
	color: var(--main_color);
}


@media (min-width: 768px) {
	#flow {
		padding: 72px 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.flow_list_item {
		padding: 24px 36px 42px;
		margin-bottom: 60px;
	}

	.flow_list_item:not(:last-child)::before {
		bottom: -48px;
		height: 42px;
	}

	.flow_list_item h3 {
		font-size: 3rem;
	}

	.flow_list_item_no {
		font-size: 9rem;
	}

}



/*==========
講師紹介
==========*/
#instructor {
	padding: 54px 0;
}

.instructor_list {}

.instructor_list_item {
	margin-bottom: 60px;
}

.instructor_list_item_photo {
	margin-bottom: 12px;
}

.instructor_list_item_wrap {
	padding-bottom: 30px;
}

.instructor_list_item_op {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.instructor_list_item_op span {
	background-color: #ffeb3b;
	display: inline-block;
	padding: 1px 15px;
	margin-right: 6px;
	border: solid 1px #c1c1c1;
	box-shadow: 2px 2px 0px 1px rgb(0 0 0 / 36%);
}

.instructor_list_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--main_color);
	margin-bottom: 9px;
}

.instructor_list_item_area {
	font-size: 1.3rem;
	margin-bottom: 9px;
	background-color: #fff4de;
	display: inline-block;
	padding: 1px 15px;
	border-radius: 18px;
}

.instructor_list_item_sns {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.instructor_list_item_sns svg {
	height: 24px;
}

.instructor_item_course {
	margin-bottom: 24px;
}

.instructor_item_course p {
	margin-bottom: 9px;
	background-color: #f2f2f2;
	text-align: center;
	padding: 3px 0;
	font-size: 1.25rem;
	font-weight: 600;
}

.instructor_item_course_list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.instructor_item_course_list li {
	display: block;
	padding: 5px 15px;
	font-size: 1.2rem;
	border-radius: 30px;
	font-weight: 600;
	border: 2px solid #03A9F4;
}

.instructor_list_item_body {
	margin-top: 30px;
}

.instructor_list_item_body .block {
	border-bottom: solid 1px var(--line_color);
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.instructor_list_item_body p {
	margin-bottom: 12px;
}

.instructor_list_instagram {
	border-bottom: solid 1px var(--line_color);
	margin-top: 30px;
	padding-bottom: 36px;
}

.google_calendar iframe {
	width: 100%;
	height: 400px;
}


@media (min-width: 768px) {
	#instructor {
		padding: 72px 0;
	}

	.instructor_list_item {
		margin-bottom: 78px;
	}

	.instructor_list_item_wrap {
		padding-bottom: 60px;
	}

	.instructor_list_item_photo {
		max-height: 480px;
		margin: 0 auto 36px;
	}

	.instructor_list_item h3 {
		font-size: 3.6rem;
		margin-bottom: 24px;
	}

	.instructor_list_item_sns {
		gap: 18px;
		margin-bottom: 24px;
	}

	.instructor_list_item_sns svg {
		height: 30px;
	}

	.instructor_item_course {
		margin-bottom: 36px;
	}

	.instructor_item_course p {
		margin-bottom: 12px;
		padding: 5px 0;
		font-size: 1.5rem;
	}

	.instructor_item_course_list {
		gap: 9px;
	}

	.instructor_item_course_list li {
		padding: 6px 18px;
		font-size: 1.4rem;
		border-radius: 30px;
	}

	.instructor_list_item_body {
		margin-top: 54px;
	}
}



/*==========
レッスンの流れ
==========*/
#lesson {
	padding: 54px 0;
	background-color: var(--bg_gray);
}

.instagram_embed {
	margin-bottom: 36px;
}

.lesson_list_item {
	background-color: #FFF;
	padding: 30px 18px 36px;
	box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.4);
	position: relative;
	margin-bottom: 42px;
}

.lesson_list_item:not(:last-child)::before {
	content: '';
	position: absolute;
	bottom: -36px;
	left: 50%;
	width: 1px;
	height: 30px;
	background-color: #c9c9c9;
}

.lesson_list_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--main_color);
	margin-bottom: 12px;
}

.lesson_list_item p {
	margin-bottom: 18px;
}

@media (min-width: 768px) {
	#lesson {
		padding: 72px 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.lesson_list_item {
		padding: 24px 36px 42px;
		margin-bottom: 60px;
	}

	.lesson_list_item:not(:last-child)::before {
		bottom: -48px;
		height: 42px;
	}

	.lesson_list_item h3 {
		font-size: 3rem;
	}
}


/*==========
スタジオ
==========*/
#studio {
	padding: 54px 0;
}

.studio_description {
	margin-bottom: 24px;
}

.studio_list_item {
	margin-bottom: 48px;
}

.studio_list_item_photo {
	margin-bottom: 18px;
}

.studio_list_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 3px;
}

.studio_list_item_url {
	margin-bottom: 3px;
}

.studio_list_item_url a {
	color: var(--a_color);
	text-decoration: none;
}

.studio_list_item_url a svg {
	fill: var(--a_color);
	height: 12px;
}

.studio_list_item_address {
	margin-bottom: 3px;
}

.studio_list_item_access {
	list-style: inside;
	list-style-type: disc;
}

@media (min-width: 768px) {
	#studio {
		padding: 72px 0;
	}

	.studio_list_item {
		margin-bottom: 60px;
	}

	.studio_list_item_photo {
		margin-bottom: 24px;
	}

	.studio_list_item h3 {
		font-size: 3rem;
	}

	.studio_list_item_url {
		margin-bottom: 6px;
	}
}


/*==========
SNS
==========*/
#sns {
	padding: 54px 0;
	background-color: var(--bg_gray);
}

.sns_list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.sns_list li svg {
	height: 48px;
	fill: #819dab;
}

@media (min-width: 768px) {
	#sns {
		padding: 72px 0 90px;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.sns_list li svg {
		height: 54px;
	}
}


/*==========
よくある質問
==========*/
#faq {
	padding: 54px 0;
	background-color: var(--bg_gray);
}

.faq_section {
	margin-bottom: 60px;
}

.faq_section h3 {
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 24px;
}

.faq_list_item {
	padding: 30px 12px;
	border-bottom: solid 1px var(--line_color);
}

.faq_list_item:first-child {
	padding-top: 0;
}

.faq_list_item h4 {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 9px;
}

.faq_list_item h4 svg {
	width: 24px;
	fill: var(--main_color);
}

.faq_list_item h4 span {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--main_color);
	width: calc(100% - 24px - 6px);
	line-height: 1.35;
}

@media (min-width: 768px) {
	#faq {
		padding: 72px 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.faq_list {
		margin-bottom: 48px;
	}

	.faq_list_item {
		padding: 36px 24px;
	}

	.faq_section h3 {
		font-size: 3rem;
		margin-bottom: 36px;
	}

	.faq_list_item h4 svg {
		width: 30px;
	}

	.faq_list_item h4 span {
		font-size: 2.4rem;
		width: calc(100% - 30px - 6px);
	}
}



/*==========
インストラクターリスト
==========*/
#instructor_table {
	padding: 54px 0;
}

#instructor_table ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 12px;
}

#instructor_table ul li {
	width: calc((100% - 12px)/2);
}

#instructor_table ul li a {
	display: block;
	text-decoration: none;
	line-height: 1.3;
}

#instructor_table ul li a img {
	margin-bottom: 3px;
}

#instructor_table ul li a span {
	/* color: #ffa907; */
	font-size: 1.25rem;
	background-color: #fff4de;
	padding: 0 3px;
}

#instructor_table ul li a span.op {
	background-color: #ffeb3b;
}



@media (min-width: 768px) {
	#instructor_table {
		padding: 72px 0;
	}
}
