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

:root{
	--base_font_family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	--base_font_color: #0b5b30;
	--green_color: #0b5b30;
}

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

input,
select,
textarea{

	font-family: var(--base_font_family);
	color:var(--base_font_color);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-feature-settings: 'palt';
	touch-action: manipulation;
	resize: none;
	display: block;
}

button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	color: var(--base_font_color);
	font-size: 16px;
	font-family: var(--base_font_family);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: hidden;
}

section{
	position: relative;
}

main{
	padding-top: 100px;
}

a{
	color: var(--base_font_color);
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
a[href^="tel:"] {
	pointer-events: none;
}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

/* .c_hover_opa{
	transition-duration:0.4s
} */


/* @media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: 0.7;
	}
	
} */


.anime_fadein_bottom{
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	transform: translateY(40px);
}

.anime_fadein_bottom.anime_active ,
.anime_active .anime_fadein_bottom{
	animation-name:anime_fadein_bottom;
}

@keyframes anime_fadein_bottom {
	0% {
	opacity:0;
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}



/*
------------------------------------
共通パーツ
------------------------------------
*/

.hide{
	display: none;
}

.container{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto;
}


/*LINEボタン*/
.c_line_button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 420px;
	min-height: 90px;
	padding:8px 12px;
	border-radius: 9999px;
	background-color: #06c755;
	gap:0 20px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1.2px;
	color: #fff;
	transition-duration: 0.4s;
}

/* @media(any-hover:hover){
	.c_line_button:hover{
		opacity: 0.7;
	}
} */

.c_line_button::before{
	content:'';
	width: 43px;
	height: 43px;
	flex-shrink: 0;
	background-image: url('../img/common/icon_line.svg');
}

/*アニメーションボタン*/
.c_radi_button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 420px;
	min-height: 90px;
	padding:8px 12px;
	border-radius: 9999px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1.2px;
	overflow: hidden;
	border:3px solid var(--green_color);
	transition-duration: 0.4s;
	position: relative;
}

.c_radi_button span{
	position: relative;
	z-index: 2;
}

.c_radi_button::after {
    content: '';
    width: 110%;
    height: 400%;
    border-radius: 100%;
    background-color: var(--green_color);
    position: absolute;
    top: -150%;
    left: -5%;
    transform: scale(1, 0);
    transform-origin: left top;
    transition: transform 1s ease;
}


.c_radi_button.white{
	color:#fff;
	border-color: #fff;
}
.c_radi_button.white::after{
	background-color: #fff;
}

@media(any-hover:hover) {
    .c_radi_button:hover {
        color: #fff;
    }

    .c_radi_button:hover::after {
        transform: scale(1, 1); 
        transform-origin: left bottom;
    }

	.c_radi_button.white:hover {
        color: var(--green_color);
    }

}


/*セクションタイトルセット*/
.c_sec_title_set{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:12px 0;
}

.c_sec_title_set .title_ja{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3;
}
.c_sec_title_set .title_en{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
}

.c_sec_title_set.white{
	color:#fff;
}

.c_sec_title_set.left_side{
	align-items: flex-start;
}

/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
	position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index: 30;
	background-color: #fff;
}

header .header_inner{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto;
}


header .header_flex{
	min-height:100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:10px 0;
}

header .header_logo{
	display: block;
	width:157px;
}

header .header_parent_menu{
	display: flex;
	align-items: flex-start;
	gap:0 36px;
}

header .header_parent_link{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:6px 0;
	font-weight: 500;
	line-height: 1.3;
	transition-duration: 0.4s;
}

@media(any-hover:hover){
	/* header .header_parent_link:hover{
		opacity: 0.7;
	} */
}


header .header_parent_link_ja{
	font-size: 18px;
	
}

header .header_parent_link_en{
	font-size: 12px;
	letter-spacing: 0.04em;
	color: #9b9318;
}


/*
------------------------------------
SNSセクション
------------------------------------
*/

.common_sns_section{
	padding-top: 120px;
	padding-bottom: 120px;
}

.common_sns_section .sns_flex{
	margin-top: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:32px;
}

.common_sns_section .insta_button::before{
	content:'';
	width: 32px;
	height: 32px;
	background-image: url('../img/common/icon_insta_green.svg');
	flex-shrink: 0;
	margin-right: 18px;
	transition-duration: 0.4s;
	z-index: 1;
}

@media(any-hover:hover){
	.common_sns_section .insta_button:hover::before{
		background-image: url('../img/common/icon_insta_white.svg');
	}
}

/*
------------------------------------
フッター
------------------------------------
*/

footer{

}

footer .footer_area01{
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: var(--green_color);
}

footer .footer_logo{
	display: block;
	margin-inline:auto;
	width:157px;
}

footer .footer_address{
	text-align: center;
	color:#fff;
	margin-top: 24px;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.03em;
	text-align: center;
	color: #fff;
}

footer .footer_address a{
	color:#fff;
}

footer .footer_area02{
	padding-top: 48px;
	padding-bottom: 24px;
}

footer .footer_parent_menu{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:0 16px;
}

footer .footer_parent_link{
	font-size: 18px;
	letter-spacing: 0.25em;
	transition-duration: 0.4s;
}

@media(any-hover:hover){
	/* footer .footer_parent_link:hover{
		opacity: 0.7;
	} */
}

footer .footer_copy{
	text-align: center;
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.03em;
}

/*
------------------------------------
トップページ
------------------------------------
*/

body.top_body{

}

main.top_main{
	padding-top: 0;
}

.top_section{

}

.top_fv_section{
	padding-top: 100px;
	/* height:100vh;
	min-height: 600px; */
}

.top_fv_section video{
	display: block;
	width:100%;
	/* height:100%;
	object-fit: cover;
	position: absolute;
	top:0;
	left:0;
	z-index: -1; */
}

.top_fv_section .top_fv_bg{
	height:600px;
	/* background-image: url('../img/top/fv_pc.jpg'); */
	position: relative;
	animation-name:fv_bg ;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

@keyframes fv_bg {
	0%{
			background-image: url('../img/top/fv_sp.png');
	}
	100%{
			background-image: url('../img/top/fv_sp.png');
	}
}



.top_fv_section .fv_movie{
	z-index: 0;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.top_fv_section .movie{
	display: block;
	width:100%;
	height:100%;
	object-fit: cover;
	
}

.top_fv_section .top_fv_info_area{
	width:1200px;
	max-width: 90%;
	position: absolute;
	bottom:40px;
	left:0;
	right:0;
	margin:auto;
}

.top_fv_section .top_fv_track_box{
	width:560px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(236 , 105 , 26 , 0.9);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.13;
	letter-spacing: 0.04em;
	text-align: center;
	color: #fff;
	
}
.top_fv_section .top_fv_info_box{
	width:560px;
	border-radius: 10px;
	overflow: hidden;
	background-color: rgba(255,255,255,0.8);
	margin-top: 30px;
}

.top_fv_section .top_fv_info_head{
	height:45px;
	background-color: var(--green_color);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.21;
	color: #fff;
}

.top_fv_section .top_fv_info_contents{
	padding:24px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.top_track_section{
	padding-top: 120px;
	padding-bottom: 120px;
} 

.top_track_section .flex{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap:40px;
}

.top_track_section .text_area{
	width:560px;
}

.top_track_section .img_area{
	width:560px;
}

.top_track_section .track_head{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.4;
}

.top_track_section .track_text{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	margin-top: 30px;
	letter-spacing: -0.02em;
}

.top_track_section .button_list{
	margin-top: 30px;
}

.top_track_section .button_list a + a{
	margin-top: 30px;
}

.top_news_section{
	padding-top: 90px;
	padding-bottom: 90px;
	background-color: var(--green_color);
}

.top_news_section .news_frame{
	margin-top: 44px;
}

.top_news_section .news_list{
	display: flex;
	gap:27px;
}

.top_news_section .news_item{
	width:280px;
}

.top_news_section .news_card{
	display: block;
	background-color: #fff;
	min-height:100%;
}

.top_news_section .news_thumb{
	aspect-ratio: 1 / calc(220 / 280);
}

.top_news_section .news_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.top_news_section .news_contents{
	padding:20px;
	min-height: 150px;
}

.top_news_section .news_date{
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
}

.top_news_section .news_title{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 12px;
}

.top_news_section .news_button{
	margin:50px auto 0;
}

.top_info_section{
	
} 

.top_info_section .flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:40px;
}

.top_info_section .img_area{
	width: 560px;
} 

.top_info_section .text_area{
	width:560px;
}

.top_info_section .info_text{
	margin-top: 20px;
	font-size: 18px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
}

.top_info_section .info_button{
	margin-top: 36px;
}

.top_price_section{
	padding-top: 120px;
}

.top_facility_section{
	padding-top: 120px;
}

.top_facility_section .flex{
	flex-direction: row-reverse;
}



/*
------------------------------------
下層 fv
------------------------------------
*/

.page_fv_section{
	padding-top: 100px;
}

.page_fv_section .page_title_set{
	align-items: flex-start;
}

/*
------------------------------------
トラックマンレンジ
------------------------------------
*/

body.track_body{
	
}

main.track_main{
	
}

.track_section{
	
}

.track_fv_section .fv_img_frame{
	margin-top: 24px;
}


.track_info_section{
	padding-top: 120px;
} 

.track_info_section .flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:40px;
}

.track_info_section .flex.reverce{
	flex-direction: row-reverse;
}

.track_info_section .info_img_area{
	width:560px;
}
.track_info_section .info_text_area{
	width:560px;
}

.track_info_section .info_img01{
	max-width: 520px;
	margin:0 auto;
}

.track_info_section .info_head{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.4;
}

.track_info_section .info_text{
	margin-top: 30px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	letter-spacing: -0.02em;
}

.track_info_section .info_text p + p{
	margin-top: 24px;
}
.track_info_section .info_button{
	margin-top: 48px;
}


/*
------------------------------------
アクセス
------------------------------------
*/

body.access_body{
	
}

main.access_main{
	
}

.access_section{

}

.access_section .map_frame{
	margin-top: 24px;
	height:460px
}

.access_section .map_frame iframe{
	width:100%;
	height:100%;
	display: block;
}

.access_section .access_head{
	font-size: 30px;
	font-weight: bold;
	line-height: 2.1;
	margin-top: 32px;
}

.access_section .access_head + .access_head{
	margin-top: 0;
}

.access_section .access_text{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	margin-top: 16px;
}

/*
------------------------------------
スクール
------------------------------------
*/

body.school_body{
	
}

main.school_main{
	
}

.school_fv_section .fv_text{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	margin-top: 16px;
	color: #333;
}

.school_info_section{
	padding-top: 50px;
} 

.school_info_section + .school_info_section{
	padding-top: 100px;
}

.school_info_section .school_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:40px;
}

.school_info_section .school_img_area{
	width:560px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:20px;
}

.school_info_section .school_img{
	width:260px;
}

.school_info_section .school_text_area{
	width:560px;
}

.school_info_section .school_head{
	font-size: 30px;
	font-weight: bold;
}

.school_info_section .school_text{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	margin-top: 32px;
}

.school_info_section .school_button_list{
	margin-top: 36px;
}

.school_info_section .school_button + .school_button{
	margin-top: 32px;
}

.school_info_section .school_remark{
	text-align: center;
	margin-top: 100px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
}


/*
------------------------------------
施設案内
------------------------------------
*/

body.facility_body{
	
}

main.facility_main{
	
}

.facility_section{

}

.facility_info_section{
	padding-top: 30px;
	padding-bottom: 120px;
}

.facility_info_section .facility_flex_list{
	
}

.facility_info_section .facility_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:40px;
}

.facility_info_section .facility_flex:nth-child(odd){
	flex-direction: row-reverse;
}

.facility_info_section .facility_flex + .facility_flex{
	margin-top: 80px;
}

.facility_info_section .facility_img_area{
	width:560px;
}

.facility_info_section .facility_text_area{
	width:550px;
}

.facility_info_section .facility_head{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.5;
}

.facility_info_section .facility_text{
	margin-top: 24px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
}

.facility_info_section .facility_block_list{
	margin-top: 80px;
}

.facility_info_section .facility_block + .facility_block{
	margin-top: 44px;
}

.facility_gal_section{
	padding-top: 90px;
	padding-bottom: 120px;
	background-color: var(--green_color);
}

.facility_gal_section .gal_list{
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:40px 30px;
}

.facility_gal_section .gal_item{
	aspect-ratio: 1 / calc(285 / 380);
}

.facility_gal_section .gal_item img{
	width:100%;
	height:100%;
	object-fit: cover;
}

/*
------------------------------------
お知らせ
------------------------------------
*/

body.news_body{
	
}

main.news_main{
	
}

.news_section{

}

.news_article_section{
	padding-top: 24px;
}

.news_article_section .news_article_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:40px;
}

.news_article_section .sidebar{
	width:300px;
}

.news_article_section .sidebar_block + .sidebar_block{
	margin-top: 60px;
}

.news_article_section .sidebar .sidebar_item{
	font-weight: 500;
	line-height: 1.5;
}

.news_article_section .sidebar .sidebar_item + .sidebar_item{
	margin-top: 24px;
}

.news_article_section .sidebar .sidebar_contents{
	padding-top: 20px;
}

.news_article_section .sidebar .sidebar_head{
	min-height: 60px;
	padding: 12px 20px;
	background-color: var(--green_color);
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.06em;
	color: #fff;
}

.news_article_section .news_article{
	max-width:830px;
	width:calc(100% - 340px);
}

.news_article_section .tag_head{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 24px;
}

.news_article_section .news_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:56px 28px;
}

.news_article_section .news_list .news_card{
	display: block;
}

.news_article_section .news_list .news_thumb{
	aspect-ratio: 1 / calc(206 / 262);
}

.news_article_section .news_list .news_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.news_article_section .news_list .news_contents{
	padding-top: 16px;
}

.news_article_section .news_list .news_date{
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.news_article_section .news_list .news_title{
	margin-top: 16px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
}

.news_article_section .page_nation{
	margin-top: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:20px 12px;
	font-size: 20px;
	font-weight: 500;
}

.news_article_section .page_nation span.current{
	border-bottom:1px solid;
}

.news_article_section .page_nation a.page-numbers{
	
}

.news_article_section .page_nation a.page-numbers.next{
	margin-left: 10px;
}	
.news_article_section .page_nation a.page-numbers.prev{
	margin-right: 10px;
}


.news_article_section .news_single_frame .news_title{
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.news_article_section .news_single_frame .news_date{
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.news_article_section .news_single_block{
	margin-top: 40px;
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}


.news_article_section .news_single_block h2{
	margin:24px 0;
}

.news_article_section .news_single_block h3{
	margin:16px 0;
}

.news_article_section .news_single_block img{
	margin:16px 0;
}

.news_article_section .link_flex{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news_article_section .link_flex a{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.06em;
	transition-duration: 0.4s;
}

@media(any-hover:hover){
	/* .news_article_section .link_flex a:hover{
		opacity: 0.7;
	} */
}

/*
------------------------------------
利用案内
------------------------------------
*/

body.price_body{
	
}

main.price_main{
	
}

.price_section{

}

.price_section .sec_title{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.price_section .sec_title span{
	font-size: 18px;
	font-weight: 500;
}

.price_table_section{
	padding-top: 32px;
}

.price_table_section + .price_table_section{
	padding-top: 100px;
}

.price_table_section .table_area{
	margin-top: 24px;
}

.price_table_section table{
	border-collapse: collapse;
	width:100%;
	
}

.price_table_section table th,
.price_table_section table td{
	border:1px solid var(--green_color);
	padding:14px 12px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	text-align: center;
}

.price_table_section table th{
	background-color: #eee;
}

.price_table_section table.table_type01 th,
.price_table_section table.table_type01 td{
	width:50%;
}

.price_table_section .table_flex{
	display: flex;
}

.price_table_section .table_man_frame{
	width:59%;
}
.price_table_section .table_woman_frame{
	width:41%;
	margin-left: -1px;
}

.price_table_section .table_remark{
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.86;
	color: #333;
}

.price_table_section .table_woman tr > :first-child {
	display: none;
}

.price_table_section .taxt_box{
	margin-top: 30px;
	padding:28px 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border:1px solid var(--green_color);
	font-size: 18px;
	font-weight: 500;
}


/*
------------------------------------
利用案内
------------------------------------
*/

body.page404_body{
	
}

main.page404_main{
	
}

.page404_section{
	padding-top: 80px;
	padding-bottom: 80px;
}

.page404_section .p01{
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}

.page404_section .p02{
	margin-top: 24px;
	width: fit-content;
	margin-inline: auto;
	line-height: 1.75;
}