@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

/* FONT size
---------------------------------------------------------------------
[ px ]	[ % ]
10px 	72  %		19px 	136 %
11px 	79  %		20px 	143 %
12px 	86 %		21px 	150 %
13px 	93 %		22px 	158 %
14px 	100 %		23px 	165 %
15px 	108 %		24px 	172 %
16px 	115 %		25px 	179 %
17px 	122 %		26px 	186 %
18px 	129 %
---------------------------------------------------------------------*/




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.6em;}



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: bold;
}
blue {
	font-weight: bold;
	color: #1B9FFC;
}


ul li {
	list-style:none;	
}


/* box-sizing */ 
* {
	box-sizing: border-box;
}



/* img */ 
img {
	width: 100%;
	height: auto;
}



/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #424245;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover {
	opacity: 0.7;
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 小文字 */
.cap {
	line-height: 1.5;
	font-size: 1.2rem;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-weight: 500;
	color: #424245;
	padding: 0;
	margin: 0;
	letter-spacing: 0.06em;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}




/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: 'Viga', sans-serif;
	font-weight: 400;
}




/* flex */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
	#header .logo {
		width: 200px;
		margin-top: 50px;
		margin-left: 50px;
	}
		#header .logo a .trimcup {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 80px;
			height: 80px;
			background: #fff;
			box-shadow: 0px 0px 30px 0px rgba(27,159,252,0.16);
			border-radius: 50%;
		}
			#header .logo a .trimcup img {
				width: 100px;
			}

		#header .logo a h1 {
			padding-top: 18px;
			font-size: 1.9rem;
			font-weight: 700;
			color: #1B9FFC;
			line-height: 1.0em;
		}
			#header .logo a h1 span {
				font-size: 1.2rem;
			}


	#header .globalnav {
		background: #fff;
		box-shadow: 0px 0px 30px 0px rgba(27,159,252,0.16);
		border-radius: 40px;
		position: fixed;
		top: 50px;
		right: 50px;
		z-index: 10;
	}
		#header .globalnav .futsal {
			display: flex;
			justify-content: center;
			align-items: center;
			margin-left: 20px;
			margin-right: 30px;
		}

		#header .globalnav ul.nav li {
			margin-left: 30px;
		}
			#header .globalnav ul.nav li a {
				display: block;
				height: 80px;
				font-size: 1.4rem;
				font-weight: 700;
				line-height: 80px;
			}


	#header .menu {
		display: none;
	}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */


/* main */
#main {
	display: block;
	padding: 100px 0 150px 0;
}
.inner {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}


/* btn */
.btn {
	width: 220px;
	margin: 50px auto 0 auto;
}
	.btn a {
		height: 50px;
		background: #1B9FFC url("../img/btn_arrow.svg") no-repeat right 6px center;
		border-radius: 35px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		color: #fff;
		text-align: center;
	}


/* list_icon */
ul.list_icon {
	padding: 10px 0;
}
ul.list_icon li {
	font-size: 1.5rem;
	padding-left: 14px;
	line-height: 1.8em;
	margin-bottom: 5px;
	position: relative;
}
/* ul.list_icon li:nth-last-child(1) { */
/* 	margin-bottom: 0; */
/* } */

ul.list_icon li:before {
	content: "";
	width: 8px;
	height: 8px;
	background: #004479;
	border-radius: 50%;
	opacity: 0.2;
	position: absolute;
	top: 10px;
	left: 0;
}


ol.list_num {
	list-style: none;
	counter-reset: li;
	padding: 10px 0;
}
	ol.list_num li:before {
		font-family: 'Viga', sans-serif;
		font-weight: 500;
		margin-right: .20em;
		counter-increment: li;
		content: counter(li) ". ";
	}
	ol.list_num li {
		margin-bottom: 5px;
		margin-left: 1.3em;
		text-indent: -1.3em;
	}


/* table01 */
.table01 {
	width: 100%;
	border-collapse: collapse;
}
	.table01 th {
		width: 140px;
		border-bottom: solid 1px #1B9FFC;
		font-size: 1.5rem;
		line-height: 1.8em;
		text-align: left;
		padding-top: 35px;
		padding-bottom: 15px;
	}
	.table01 td {
		width: -webkit-calc(100% - 140px);
		width: calc(100% - 140px);
		border-bottom: solid 1px #ddd;
		font-size: 1.5rem;
		line-height: 1.8em;
		text-align: left;
		padding-top: 35px;
		padding-bottom: 15px;
		padding-left: 20px;
	}


/* set */
.set {
	margin-bottom: 80px;
}
.set:nth-last-child(1) {
	margin-bottom: 0;
}
	.set h2 {
		background: #F8FCFF;
		font-size: 2.4rem;
		line-height: 1.5em;
		font-weight: 700;
		color: #1B9FFC;
		padding: 10px 15px;
		border-radius: 10px;
		margin-bottom: 25px;
	}

	.set .cell {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: dashed 1px #ddd;
	}
	.set .cell:nth-last-child(1) {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
		.set .cell h3 {
			font-size: 2.0rem;
			font-weight: 700;
			line-height: 1.4em;
			margin-bottom: 15px;
		}

		.set .cell p {
			font-size: 1.5rem;
			line-height: 1.8em;
			margin-bottom: 15px;
		}
		.set .cell p:nth-last-child(1) {
			margin-bottom: 0;
		}

		.set .cell ul.column02 {
			display: flex;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		}
			.set .cell ul.column02 li {
				width: 48%;
				margin-right: 4%;
				margin-top: 20px;
			}
			.set .cell ul.column02 li:nth-child(2n) {
				margin-right: 0;
			}
				.set .cell ul.column02 li p {
					margin: 0;
					padding-top: 5px;
					text-align: center;
				}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#pagetitle {
	width: 100%;
	background: url("../img/pagetitle_bg.jpg") no-repeat center / cover;
}
#pagetitle .inner {
	height: 520px;
}
	#pagetitle .inner .headtit {
		padding-top: 240px;
		color: #1B9FFC;
	}
		#pagetitle .inner .headtit .en {
			font-size: 6.0rem;
			letter-spacing: 0.1em;
			line-height: 1;
			margin-bottom: 10px;
		}

		#pagetitle .inner .headtit h1 {
			font-size: 2.0rem;
			letter-spacing: 0.1em;
			line-height: 1;
		}


	#pagetitle .inner ul.breadcrumb {
		width: 100%;
		height: 60px;
		background: #fff;
		padding: 0 50px;
		border-radius: 20px 20px 0 0;
		position: absolute;
		bottom: 0;
		left: 0;
	}
		#pagetitle .inner ul.breadcrumb li {
			font-size: 1.2rem;
			font-weight: 700;
			line-height: 60px;
			padding-right: 20px;
			margin-right: 10px;
			position: relative;
		}
		#pagetitle .inner ul.breadcrumb li:before {
			content: "";
			width: 12px;
			height: 1px;
			background: #1B9FFC;
			position: absolute;
			top: 50%;
			right: 0;
			margin-top: -0.5px;
		}
		#pagetitle .inner ul.breadcrumb li:nth-last-child(1):before {
			display: none;
		}
			#pagetitle .inner ul.breadcrumb li a {
				display: block;
				color: #1B9FFC;
			}



/* list_icon */
.title {
	margin-bottom: 50px;
}
	.title h2 {
		font-size: 3.4rem;
		font-weight: 700;
		line-height: 1.4em;
		letter-spacing: 0.15em;
		padding-right: 20px;
		margin-right: 20px;
		position: relative;
	}
		.title h2:before {
			content: "";
			width: 1px;
			height: 16px;
			background: #ddd;
			position: absolute;
			top: 50%;
			right: 0;
			margin-top: -8px;
		}

	.title .en {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		font-size: 1.4rem;
		color: #1B9FFC;
		text-align: left;
		line-height: 1;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #F8FCFF;
	padding: 60px 0;
}
	#footer ul.logo_nav li {
		width: 31%;
	}
		#footer ul.logo_nav li img {
			border-radius: 0 0 20px 0;
			box-shadow: 0px 0px 30px 0px rgba(27,159,252,0.16);
		}


	#footer .text {
		padding-top: 60px;
		text-align: center;
	}
		#footer .text .link {
			font-size: 1.2rem;
			color: #1B9FFC;
		}
			#footer .text .link a {
				font-size: 1.2rem;
				font-weight: 700;
				color: #1B9FFC;
			}

		#footer .text .copyright {
			margin-top: 20px;
			font-size: 1.0rem;
			color: #1B9FFC;
			line-height: 1;
		}







/* 1260px */
@media screen and (max-width: 1260px) {



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .logo {
	margin-top: 30px;
	margin-left: 30px;
}
	
	
#header .globalnav {
	top: 30px;
	right: 130px;
	z-index: 11;
}
	#header .globalnav .futsal {
		height: 80px;
	}

	#header .globalnav ul.nav {
		display: none;
	}


#header .menu {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #1B9FFC;
	display: block;
	box-shadow: 0px 0px 30px 0px rgba(27,159,252,0.16);
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 11;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#pagetitle .inner {
	height: 480px;
}
	#pagetitle .inner .headtit {
		padding-top: 200px;
	}


	#pagetitle .inner ul.breadcrumb {
		width: 90%;
		padding: 0 30px;
		left: 5%;
	}
	
	

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.inner {
	width: 100%;
	padding: 0 5%;
	z-index: 10;
}
	
	
	
}






/* 1080px */
@media screen and (max-width: 1080px) {








}






/* 800px */
@media screen and (max-width: 800px) {



/* sp */ 
.sp {
	display: block;
}

/* pc */ 
.pc {
	display: none;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	z-index: 11;
}
#header .logo {
	width: 165px;
	margin-top: 20px;
	margin-left: 20px;
}
	#header .logo a .trimcup {
		width: 50px;
		height: 50px;
	}
		#header .logo a .trimcup img {
			width: 50px;
		}

	#header .logo a h1 {
		width: -webkit-calc(100% - 50px);
		width: calc(100% - 50px);
		padding-top: 10px;
		padding-left: 8px;
		font-size: 1.6rem;
	}
		#header .logo a h1 span {
			font-size: 1.0rem;
		}


#header .globalnav {
	border-radius: 25px;
	top: 20px;
	right: 80px;
}
	#header .globalnav .futsal {
		display: block;
		width: 100px;
		height: 50px;
		margin: 0;
	}
		#header .globalnav .futsal a {
			display: flex;
			justify-content: center;
			align-items: center;
			padding: 15px 15px 0 15px;
		}


#header .menu {
	width: 50px;
	height: 50px;
	top: 20px;
	right: 20px;
}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */


/* main */
#main {
	display: block;
	padding: 60px 0 70px 0;
}
	
/* btn */
.btn {
	width: 70%;
}


/* table01 */
.table01 th {
	display: block;
	width: 100%;
	border-top: solid 1px #1B9FFC;
	border-bottom: none;
	font-size: 1.5rem;
	line-height: 1.4em;
	padding-top: 20px;
	padding-bottom: 8px;
}
.table01 td {
	display: block;
	width: 100%;
	border-bottom: none;
	font-size: 1.4rem;
	padding-top: 0;
	padding-bottom: 35px;
	padding-left: 0;
}


/* list_icon */
.list_icon li {
	font-size: 1.4rem!important;
}
.list_icon li:before {
	top: 8px!important;
}


/* set */
.set {
	margin-bottom: 50px;
}
	.set h2 {
		font-size: 2.0rem;
		margin-bottom: 20px;
	}

	.set .cell {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
		.set .cell h3 {
			font-size: 1.7rem;
			margin-bottom: 12px;
		}

		.set .cell p {
			font-size: 1.4rem;
			line-height: 2em;
			margin-bottom: 12px;
		}

		.set .cell ul.column02 li {
			margin-top: 15px;
		}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#pagetitle .inner {
	height: 320px;
}
	#pagetitle .inner .headtit {
		padding-top: 130px;
	}
		#pagetitle .inner .headtit .en {
			font-size: 4.0rem;
		}

		#pagetitle .inner .headtit h1 {
			font-size: 1.7rem;
		}


	#pagetitle .inner ul.breadcrumb {
		height: 50px;
		padding: 0 25px;
	}
		#pagetitle .inner ul.breadcrumb li {
			font-size: 1.0rem;
			line-height: 50px;
		}


/* list_icon */
.title {
	margin-bottom: 30px;
}
	.title h2 {
		font-size: 2.6rem;
		padding-right: 15px;
		margin-right: 15px;
	}

	.title .en {
		font-size: 1.2rem;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #F8FCFF;
	padding: 40px 0;
}
	#footer ul.logo_nav {
		display: block;
	}
		#footer ul.logo_nav li {
			width: 100%;
			max-width: 400px;
			margin: 0 auto 20px auto;
		}


	#footer .text {
		padding-top: 20px;
	}







}





.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1000ms;
 }
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}