/*
Theme Name: leosol_thema
Theme URI: https://leosol-sportsclub.com/
Author: leosol-sportsclub
Author URI:
Description: レオソルスポーツクラブ公式ホームページ
Version: 1.0
*/

@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	text-align: left;
	zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
table {
	border-collapse: collapse;
	font-family: inherit;
}
h1,h2,h3,h4,h5 {
	font-size: 100%;
	font-weight: normal;
	line-height: 1;
}
input,textarea,select {
	font-family: inherit;
	font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}
textarea {
	resize: none;
	-webkit-appearance: none;
	border-radius: 0;
}
th,td {
	border-collapse: collapse;
}
ul,ol {
	list-style-type: none;
}
img {
	vertical-align: text-bottom;
	vertical-align: -webkit-baseline-middle;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

a{
	text-decoration: none;
	border-bottom: none;
}

/***リセットCSS***/



/***body***/


body{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	font-size: 1rem;
	color: #000000;
	animation-name: fade;
	animation-duration: 2s;
}

@media screen and (min-width: 768px){
	body{
		font-size: 1.2rem;
	}
}

#logo {
	width:200px;
	margin:0 auto;
}


nav{
	width: 80%;
	height: 70px;
	position: relative;
	background-color: #ffffff;

}
.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0.1em;
}

/*ナビゲーション部分*/

.menu ul li a {
	display:block;
	font-weight:bold;
	padding: 1em;
	border-bottom: 1px dotted #CCC;
	color:#333;
	text-decoration:none;
}


.menu ul li a:hover
{background-color:#f2f2f2;
	color:#FF3E3E;}


#nav_taiken a{
	background-color: #FF3E3E;
	color: #ffffff;
	padding: ;
}

#nav_contact a{
	background-color:#000000;
	color: #ffffff;
	padding: ;
}


@media screen and (max-width: 768px){
	#nav_taiken a{
		padding: ;
	}
}


@media screen and (min-width: 900px) and (max-width: 1000px){
	#nav_contact {
		display: none !important;
	}
}


@media screen and (max-width: 768px){
	#nav_contact a{
		padding:;
	}
}

.menu{
	width: 100%;
	text-align:center;
	background-color:#ffffff;
	transition: 0.5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);/*左に隠しておく*/
	z-index: 2;
	position:fixed;
	overflow:auto;
	-webkit-overflow-scrolling: touch;
	top: 0;
}

/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/

}

.index{
	z-index: 0;
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 3;
	right:15px;
}

.Toggle span {
	display: block;
	position: absolute;
	width: 45px;
	border-bottom: solid 4px #000;
	border-radius: 60px;
	-webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
	transition: .35s ease-in-out;     /*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
	top:5px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 32px;
}



.Toggle.active span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}



@media screen and (min-width: 950px) {




	nav{
		display: flex;

	}
	.Toggle{
		display: none;
	}

	.menu{
		width: 100%;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.menu ul{
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
	}
	.menu ul li a{
		padding: 0.6em;
		border-bottom: none;

	}

	.menu ul li a:hover
	{
		background-color:transparent;
	}

}
/***header-----ここまで***/





/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger{
	opacity: 0;
}

/* 上から */

.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeDownAnime{
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeLeftAnime{
	from {
		opacity: 0;
		transform: translateX(-150px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}


main{
	background-color: #fff;
}

/***レオソルについて-----***/
section{
	width: 100%;
	height: auto;
	margin: 40px auto;
	border-radius: 40px 40px 0 0;
	background-color: #fff;
}

.wrapper{
	width: 90%;
	height: auto;
	margin: 40px auto;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.wrapper{
		width: 100%;
	}
}

h1{
	font-size: 3.8rem;
	font-weight: bold;
	color: #ff3e3e;
}

h2{
	background-color: #ff3e3e;
	padding: 0.4em;
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	margin: 8px 0;
}

h3{
	font-size: 2rem;
	font-weight: bold;
	color: #ff3e3e;
	padding-bottom: 10px;
	line-height: 60px;
}


@media screen and (min-width: 768px) {
	h1{
		font-size: 6rem;
	}

	h2{
		font-size: 1.4rem;
	}

	h3{
		font-size: 2.4rem;
		padding-bottom: 20px;
	}

}

p{
	line-height: 30px;
}

.link{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.link a{
	display: flex;
	justify-content: flex-end;
	text-align: justify;
	align-items: center;
}

.link p{
	color: #000;
	font-weight: bold;
}

.link img{
	width: 30px;
	height: auto;
	margin-left: 10px;
}


.sapace{
	margin: 40px auto;
}

/***レオソルについて-----ここまで***/

/***おすすめ***/
.gray{
	background-color: #f1f1f1;
	padding-top: 80px;
	padding-bottom: 40px;
	margin-top: 80px;
}

.osusume_title{
	width: 320px;
	height: auto;
	margin: -100px auto 40px auto;
}

.osusume_title h2{
	background-color: #000;
	border-radius: 10px;
}


.flex{
	width: 90%;
	height: auto;
	margin: 40px auto;
}

.osusume{
	width: 90%;
	height: auto;
	margin: 40px auto;
}

@media screen and (min-width: 1101px) {
	.flex{
		width: 90%;
		height: auto;
		margin: 10px auto;
		display: flex;
		justify-content: space-around;
	}

	.osusume{
		width: 400px;
		height: auto;
	}

}


@media screen and (min-width: 769px) and (max-width: 1100px){
	.flex {
		width: 60%;
	}
}


/***おすすめ-----ここまで***/


/***カリキュラム***/
.curriculum{
	width: 80%;
	height: auto;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.curriculum{
		width: 90%;
		height: auto;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
/***カリキュラム----ここまで***/


/***ポリシー***/
.border_red{
	border: solid 10px #ff3e3e;
	border-bottom: transparent;
	box-sizing: border-box;
	margin: 40px auto -80px auto;
	padding-bottom: 100px;
}

.policy_wrap{
	width: 100%;
	height: auto;
	margin: 90px auto 20px auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.policy_img{
	width: 20%;
	height: auto;
}

.policy_container{
	width: 70%;
	margin: 0 auto;
}

.bold_red{
	color: #ff3e3e;
	font-weight: bold;
}

.border_title{
	width: 100%;
	padding: 0.4em;
	font-size: 1.2rem;
	font-weight: bold;
	color: #000;
	background-color: #fff;
	border-bottom: solid 3px #000;
	text-align: left;

}
/***ポリシー----ここまで***/



/***体験申し込み----ここまで***/
.red{
	background-color: #ff3e3e;
	width: 100%;
	height: auto;
	padding-top: 10px;
}


.p_white{
	color: #fff;
}

.taiken_banner{
	width: 90%;
	margin: 10px auto;
}

.taiken_banner img:hover{
	transform: scale(1.2,1.2);
}

.img_grid_wrap{
	width: 100%;
	height: auto;
	margin: 20px auto 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;

}
/***体験申し込み----ここまで***/



/***子どもスポーツ教室***/
.kids_school_title{
	width: 100%;
	padding: 0.4em auto;
	font-size: 1.2rem;
	font-weight: bold;
	color: #000;
	text-align: left;
}

.kids_school_img{
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}


/***子どもスポーツ教室-----ここまで***/


/***オンラインスクール***/

.online_icon{
	width:30%;
	margin-right: 20px;
}

.online_wrap{
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
}

@media screen and (min-width: 768px) {
	.ps-br{
		display: none;
	}
}

.online_photo{
	width: 100%;
	height: auto;
}
/***オンラインスクール----ここまで***/




/***フッターお問い合わせ***/
#a_text{
	color: #fff !important;
	background-color:#000;
}

#b_text{
	color: #fff !important;
}

.background_gray{
	background-color: #f2f2f2;
	margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
}

.h1_bk{
	color: #000;
}

#contact_container{
	margin-top: 60px;
	padding-bottom: 100px;
}

@media screen and (min-width: 1300px) {
	.flex_style{
		display: flex;
		justify-content: space-between;
	}
}

.icon img{
	width: 60px;
	margin-right: 20px;
}

.icon{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}


#tell{
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
}

.leo_contact{
	width: 280px;
	margin: 0 auto 40px auto;
}

@media screen and (min-width: 1980px) {
	.leo_contact{
		width: 240px;
	}
}


/***フッターお問い合わせ----------------------------------------------------------------------------------------------------------------------------------------------------ここまで***/

/***フッター***/
.background_black{
	width: 100%;
	height: auto;
	background-color: #000000;
	margin-top: -80px;
	margin-bottom: 0;
	padding-top: 80px;
	border-radius: 40px 40px 0 0;
	display: flex;
	justify-content: center;
}


#footer_wrap{
	width: 80%;
	margin-bottom: 100px;
}


@media screen and (max-width: 1800px) {
	#footer_wrap{
		display: flex;
		flex-direction: column;
	}
}


#footer_wrap p{
	color: #ffffff;
	line-height: 40px;
}

#footer_line a{

}


#footer_logo{
	width: 600px;
	margin-bottom: 20px;
}

.footer_icon{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#mail{
	width: 20px;
	padding-right: 10px;
}

#add{
	width: 20px;
	padding-right: 10px;
}

.footer_left{
	margin-right: 20px;
	margin-bottom: 20px;
}

.footer_right{
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 1110px) {
	.footer_right{
		display: flex;
		flex-direction: column;
	}
}

.footer_line{
	height: auto;
}

.footer_line a p{
	padding-left: 40px;
	padding-right: 100px;
	border-left: solid 2px #ffffff;
}

.copyright{
	width: 100%;
	height: auto;
	background-color: #000000;
	display: flex;
	justify-content: center;
}

.copyright p{
	color: #ffffff;
	padding: 20px 0;
	font-size: 14px;
}
/***フッター-------------ここまで***/


/***指導理念----***/

.background_subpage{
	background-color: #f2f2f2;
	padding-top: 40px;
	padding-bottom: 40px;
}

.subpage_subtitle{
	width: fit-content;
}


@media screen and (min-width: 768px) {
	.coaching{
		padding: 80px;
	}
}

.box_design {
	position: relative;
	padding: 2rem;
	border-radius: 10px;
	border: 3px solid #333;
	box-shadow: 5px 5px 0 #333;
	color: #333;
	margin-top: 40px;
	margin-bottom: 100px;
	flex: 1;
}

@media screen and (min-width: 1600px) {
	.instructour_container{
		display: flex;
		justify-content: space-between;
	}

	.box_design{
		margin: 100px 40px;
		max-width: 800px;
	}
}

/***指導理念-------------ここまで***/

/***指導員-------***/
.profile_wrap{
	padding-bottom: 40px;
	margin-bottom: 40px;
}

#instructour{
	color: #000;
	position: relative;
	margin-bottom: 0.2rem;
	font-weight: bold;
	font-size: 26px;
	text-align: left;
}

#instructour::before {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 60px;
	content: 'DecideYourself.';
	z-index: -1;
}

@media screen and (min-width: 1100px) {
	#instructour::before {
		font-size: 120px;
	}
}

.font_bk{
	color: #000;
	padding-right: 10px;
}

.profile{
	line-height: 50px;
	border-bottom: solid 1px #000;
}

.awazu{
	display: flex;
	align-items: baseline;
}

@media screen and (min-width: 1100px) {
	.instructour_space{
		margin: auto 60px;
	}
}

/***指導員-------------ここまで***/

/***子どもスポーツ教室------***/
.container{
	width: 90%;
	padding: 20px;
	background-color: #fff;
	margin: 40px auto;
	border-radius: 30px;
}



@media screen and (min-width: 900px) {
	.container{
		width: 100%;
		padding: 40px;
	}


	.kids_school_info{
		display: flex;
		justify-content:space-around;
		gap:20px;
		padding:0 20px;
		box-sizing:border-box;
	}
}

table{
	width: 100%;
	line-height: 50px;
	margin-bottom: 40px;
}

tr{
	border-bottom: solid 1px #000;
}

.calendar{
	width:100%;
	margin: 40px auto;
}

/***子どもスポーツ教室-------------ここまで***/


/***オンラインスクール---------***/
#online_title{
	color: #000;
	position: relative;
	margin-bottom: 0.2rem;
	font-weight: bold;
	font-size: 26px;
	text-align: left;
}

#online_title::before {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 60px;
	content: 'OnlineSports';
	z-index: -1;
}

.online_p{
	margin-top: 40px;
	margin-bottom: 40px;
}

.online_point{
	margin: 40px auto;
}

.online_point div{
	text-align: center;
}

.online_point img{
	margin: 0 auto;
	width: 60%;
	max-width: 300px;
}

@media screen and (min-width: 1200px) {
	.online_point{
		margin: 40px auto;
		display: flex;
		justify-content: space-around;
	}

	.online_point img{
		width: 90%;
	}

	.online_p{
		margin: 40px;
	}
}

.online_form{
	background-color: #000;
}

.cordination{
	margin: 0 auto;
	max-width: 800px;
}

/***オンラインスクール-------------ここまで***/


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



/***ヘッダー-------------ここまで***/

th.bold_red {
	white-space: nowrap;
	padding-right: 10px;
}

td {
	line-height: 1.4;
	padding: 12px 0px;
}

.container {
	box-sizing: border-box;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

.column-link{
	color:#000;
}

.column-link:hover{
    color:blue;	
}

.column-title{
	font-size:2.4rem;
	background-color: unset;
    padding: 0;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin: 12px 0;
}