@import url(reset.css);

html {
	scroll-behavior: smooth;
}

img {
	vertical-align: bottom;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1;
}


/* 
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-weight: <weight>; 100-900
}

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: <weight>; 100-900
}
*/


.en {
	font-family: "Montserrat", sans-serif;
}

.section_title {
	font-family: "Montserrat", sans-serif;
	font-size: 25px;
	font-weight: bold;
	color: #001F62;
}

.section_sub {
	display: block;
	font-size: 12px;
	margin-top: 6px;
	color: #001F62;
}

.btn {
	text-align: center;
	margin-top: 40px;
}

.btn_round {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 14px 20px;
	border: 2px solid #006400;
	background: #fff;
	border-radius: 300px;

	color: #006400;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;

	width: auto;
	max-width: 100%;
}

.btn_arrow::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #006400;
	border-right: 2px solid #006400;
	transform: rotate(45deg);
}





.header_top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background: #fff;
	z-index: 3000;
}

.header_inner {
	height: 55px;
	display: grid;
	grid-template-columns: auto 1fr 56px 56px 56px;
	align-items: center;
	height: 100%;
	padding: 0 12px;
}




.tel_btn span:last-child {
	display: none;
}

.logo {
	grid-column: 1;
}

.logo img {
	display: block;
	height: 40px;
}

.header_right {
	display: contents;
}

.header_icon {
	width: 60px;
	height: 44px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
	text-decoration: none;
	color: #006400;
}

.tel_btn,
.contact_btn {
	width: 56px;
	height: 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 11px;
}

.tel_btn {
	grid-column: 3;
	justify-self: end;
}

.contact_btn {
	grid-column: 4;
	justify-self: end;
}



.tel_btn span:last-child {
	display: none;
}

.header_icon img {
	width: 24px;
	height: 24px;
}

.icon_white {
	display: none;
}




.hamburger {
	grid-column: 5;
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 44px;
	position: relative;
	cursor: pointer;
}

.hamburger_icon {
	position: relative;
	width: 32px;
	height: 20px;
}


.hamburger_icon span {
	display: block;
	width: 32px;
	height: 2px;
	background-color: #006400;
	position: absolute;
	left: 0;
	transition: .3s;
}

.hamburger_icon span:nth-child(1) {
	top: 0;
}

.hamburger_icon span:nth-child(2) {
	top: 9px;
}

.hamburger_icon span:nth-child(3) {
	top: 18px;
}

.hamburger_text {
	font-size: 12px;
	margin-top: 8px;
	color: #006400;
}


.hamburger.close .hamburger_icon span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.hamburger.close .hamburger_icon span:nth-child(2) {
	opacity: 0;
}

.hamburger.close .hamburger_icon span:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}


.gnav {
	position: fixed;
	top: 55px;
	right: 0;
	bottom: 0;
	width: 70%;
	background-color: #1f7a1fe3;
	padding: 100px 60px 80px;
	box-sizing: border-box;

	transform: translateX(100%);
	transition: transform .4s ease;
	z-index: 2000;
	overflow-y: auto;
}

.gnav.show {
	transform: translateX(0);
}

.gnav_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gnav_list li {
	margin-bottom: 20px;
}

.gnav_list a {
	text-decoration: none;
	color: #fff;
	display: block;
	transition: .3s;
}

.gnav_list .en {
	display: block;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
}

.gnav_list .jp {
	display: block;
	font-size: 12px;
	margin-top: 8px;
	opacity: 0.9;
}

.gnav_list a:hover {
	transform: translateX(10px);
	opacity: 0.8;
}

.gnav_sns {
	display: flex;
	position: absolute;
	margin-top: 40px;
	left: 60px;
}

.gnav_sns a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
}


/* ==========================
SP ドロワーアコーディオン
========================== */

.menu_toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.menu_link {
	display: block;
	flex: 1;
	color: #fff;
	text-decoration: none;
}

.menu_link .en,
.menu_link .jp {
	display: block;
}

.toggle_icon {
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	flex-shrink: 0;
}

.has_sub.active .toggle_icon {
	transform: rotate(180deg);
}

#aboutclass,
#price,
#schedule,
#class {
	scroll-margin-top: 100px;
}



/* 初期非表示 */
.gnav .sub_panel {
	display: none;
	position: static;
	width: 100%;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	margin-top: 10px;
}

/* 開いた時 */
.has_sub.active .sub_panel {
	display: block;
}

.gnav .sub_nav {
	padding: 15px 0;
}

.gnav .sub_nav li {
	margin-bottom: 15px;
}

.gnav .sub_nav a {
	display: block;
	text-align: center;
	color: #fff;
}

.gnav .sub_nav .en {
	font-size: 18px;
	font-weight: 700;
}

.gnav .sub_nav .jp {
	font-size: 11px;
	margin-top: 4px;
}


/* メイン */
.main_pic {
	position: relative;
	margin-top: 55px;
}

.main_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_pic .main_slider li {
	height: 60vw;
}

.main_slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_slider {
	position: relative;
	z-index: 0;
}

.main_pic::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.247);
	/* ← 50% */
	z-index: 1;
}

.main_pic_top h1 {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	z-index: 2;
	/* ← レイヤーより上 */
}

.footer {
	background: #243b6b;
	padding: 60px 28px;
	color: #fff;
	text-align: center;
}

.footer_inner {
	max-width: 600px;
	margin: 0 auto;
}

.footer_logo img {
	display: block;
	width: 220px;
	margin: 0 auto;
}

/* 区切り線 */
.footer hr {
	border: none;
	border-top: 2px solid rgba(255, 255, 255, 0.9);
	margin: 35px 0;
}

/* 住所 */
.footer_place {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
}

.footer_place_title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

/* ナビ */
.footer_nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_nav li {
	margin-bottom: 18px;
}

.footer_nav li:last-child {
	margin-bottom: 0;
}

.footer_nav a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}

/* レッスンスケジュール */
.footer_contact {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

.schedule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	width: 240px;
	height: 42px;

	margin: 0;

	border: 2px solid #fff;
	border-radius: 6px;
}

.schedule img {
	width: 20px;
	height: 20px;
}

.schedule a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
}

/* SNS */
.footer_sns {
	margin-top: 40px;
}

.footer_sns a {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}

.footer_sns img {
	width: 28px;
	height: 28px;
	display: block;
}

/* プライバシーポリシー */
.footer_policy {
	margin-top: 36px;
}

.footer_policy a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}


@media screen and (min-width:960px) {
	body {
		font-size: 16px;
		line-height: 1.6;
	}


	.school_inner,
	.coach .section_title,
	.coach_list,
	.access_inner,
	.facility,
	.flow_list,
	.footer_inner {
		max-width: 1200px;
		margin: 0 auto;
	}



	.section_title {
		font-size: 30px;
	}

	.section_sub {
		font-size: 18px;
	}


	/*==================================
PC Header
==================================*/

	.header_top {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 103px;
		background: #fff;
		z-index: 3000;
	}

	.header_inner {
		position: relative;
		max-width: 1000px;
		height: 103px;
		margin: 0 auto;
		padding: 0 20px;

		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	/*--------------------
Logo
--------------------*/

	.logo {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
	}

	.logo img {
		height: 60px;
	}

	/*--------------------
Right
--------------------*/

	.header_right {
		grid-column: 3;
		justify-self: end;

		display: flex;
		align-items: center;
		gap: 16px;
	}

	/*--------------------
Phone
--------------------*/

	.tel_btn {
		grid-column: 1;
		justify-self: start;

		display: flex;
		align-items: center;
		gap: 10px;

		width: auto;
		height: auto;

		font-family: "Montserrat", sans-serif;
		font-size: 18px;
		font-weight: 700;

		color: #006400;
		text-decoration: none;
	}

	.tel_btn span:first-of-type {
		display: none;
	}

	.tel_btn span:last-child {
		display: block;
	}

	.header_icon {
		width: auto;
		height: auto;
		flex-direction: row;
		gap: 10px;
	}

	.header_icon img {
		width: 22px;
		height: 22px;
	}

	/*--------------------
Contact
--------------------*/

	.contact_btn {
		display: flex;
		align-items: center;
		gap: 10px;

		padding: 0 22px;
		height: 44px;

		background: #006400;
		border-radius: 999px;

		color: #fff;
		text-decoration: none;
		font-size: 14px;
		font-weight: 700;
	}

	.icon_green {
		display: none;
	}

	.icon_white {
		display: block;
	}

	.contact_btn img {
		width: 18px;
		height: 18px;
	}

	/*--------------------
Hamburger
--------------------*/

	.hamburger {
		display: none;
	}

	/*==================================
Navigation
==================================*/

	.header_nav {
		position: fixed;
		top: 103px;
		left: 0;
		width: 100%;
		background: #fff;
		z-index: 2999;
	}


	.gnav {
		position: static;
		width: 100%;
		background: none;
		padding: 0;
		transform: none;
		overflow: visible;
	}

	.gnav_list {
		max-width: 1000px;
		margin: 0 auto;

		padding: 0 20px;

		display: flex;
		align-items: stretch;
		justify-content: space-between;
	}

	.gnav_list>li {
		flex: 1;
		position: relative;
		list-style: none;
		margin: 0;
	}

	/* Home Coach Event Access */

	.gnav_list>li>a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		height: 67px;

		color: #000;
		text-decoration: none;
	}

	/* School Academy */
	.menu_toggle {
		display: flex;
		text-align: center;
		width: 100%;
		height: 67px;
	}

	.menu_link {
		display: flex;
		flex: 1;
		width: 100%;
	}



	.toggle_icon {
		display: none;
		width: 0;
		padding: 0;
		margin: 0;
		border: 0;
	}

	.has_sub {
		position: relative;
	}

	/*--------------------
Font
--------------------*/

	.gnav_list .en {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.2;
		color: #000;
	}

	.gnav_list .jp {
		margin-top: 2px;
		font-size: 12px;
		color: #666;
	}

	/*==================================
Mega Menu
==================================*/

.gnav .sub_panel {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);

    width: 170px;
    background: #fff;
    z-index: 3000;
}

	.sub_panel .wrapper {
		width: 100%;
	}

	.sub_nav {
		padding: 10px 0;
		margin: 0;
		list-style: none;
	}

	.sub_nav li {
		margin: 0;
	}

	.sub_nav a {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		color: #565A61;
		padding: 10px 10px;
	}

	.sub_nav .en {
		color: #565A61;

		font-size: 20px;
		font-weight: 700;
	}

	.sub_nav .jp {
		font-size: 12px;
		margin-top: 4px;
	}

	.has_sub:hover>.sub_panel {
		display: block;
		opacity: 1;
		visibility: visible;
	}



	.gnav_sns {
		display: none;
	}







	.main_pic {
		margin: 170px auto 0;
	}

	.main_pic .main_slider li {
		height: 450px;
	}

	.main_slider img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.main_pic_top h1 {
		font-size: 25px;
		top: 50%;
		left: 120px;
		transform: translateY(-50%);
	}


	/*=========================
Footer PC
=========================*/

	.footer {
		background: #243b6b;
		padding: 70px 0;
	}

	.footer hr,
	.footer_nav,
	.footer_contact {
		display: none;
	}

	.footer_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;

		position: relative;
		/* ←これを追加 */
		max-width: 1100px;
		margin: 0 auto;
		padding: 20px;
	}

	/*----------------
左
----------------*/
	.footer_place {
		order: 1;
		flex: 1;
		text-align: center;
		padding-left: 50px;
	}

	.footer_place_title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.footer_place {
		font-size: 12px;
		line-height: 1.9;
	}

	.footer_map {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-top: 12px;
		color: #fff;
		text-decoration: none;
		font-size: 12px;
	}

	.footer_map img {
		width: 14px;
	}

	/*----------------
中央
----------------*/


	.footer_logo {
		order: 2;
		flex: 1;
		display: flex;
		justify-content: center;
	}

	.footer_logo img {
		width: 200px;
	}

	/*----------------
右
----------------*/

	.footer_right {
		order: 3;
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-left: 100px;
	}

	.footer_sns {
		margin: 0;
	}

	.footer_sns a {
		display: flex;
		align-items: center;
		gap: 10px;

		color: #fff;
		text-decoration: none;
		font-size: 18px;
		font-weight: 700;
	}

	.footer_sns img {
		width: 26px;
		height: 26px;
	}

	.footer_policy {
		margin: 0;
	}

	.footer_policy a {
		color: #fff;
		text-decoration: none;
		font-size: 13px;
		font-weight: 700;
	}

	/*----------------
縦線
----------------*/

	.footer_inner::before,
	.footer_inner::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
		height: 210px;
		background: #fff;
	}

	.footer_inner::before {
		left: 33.333%;
	}

	.footer_inner::after {
		left: 66.666%;
	}

}