@charset "UTF-8";
/* CSS Document */

#header{
	height: 70vh;
	max-height: 1080px;
	background: url("../img/front/header_img.jpg") no-repeat center / cover;
	border-bottom-left-radius: 5em;
	border-bottom-right-radius: 5em;
	position: relative;
	overflow: hidden;
}
.header_text{
	position: absolute;
    top: 50%;
    left: 55%;
    transform: translateX(-50%);
	text-align: center;
	width: 100%;
}

.header_text span{
	display: block;
	font-weight: bold;
    font-size: 2.5em;
    color: #fff;
    line-height: 1.5;
	letter-spacing: 6px;
}

@media (min-width:400px){
	#header{
		height: 55vh
	}
}

@media (min-width:1200px){
	#header{
		height: 100vh
	}
	.header_text{
		top: 52%;
		left: 50%;
	}
	.header_text span{
		font-size: 3.5em;
	}
}


/*-------------------------

  お知らせ

-------------------------*/

#information {
	margin: 3em auto;
	align-items: center;
}

.info_title,
.info_list_wrap{
	width: 100%;
	margin-bottom: 1em;
}

.info_title{
	text-align: center
}

.info_title > span{
	color: var(--main-color);
	font-weight: bold;
	font-size: 2em;
	display: block;
}
#information .btn_wrap{
	margin: 1em auto;
	width: 100%;
}
#information .btn{
	width: 100%;
	max-width: 200px;
	padding: .8em;
}




@media (min-width:768px){
	.info_title{
		width: 30%
	}
	.info_title > span{
		font-size: 3em;
	}
	.info_list_wrap{
		width: 70%;
	}
}


/*-------------------------

  intro

-------------------------*/

#intro{
	background: url("../img/front/intro_bg.jpg")no-repeat top right / cover;
	padding: 6em 0;
	margin: 3em auto;
}

#intro h3{
	color: var(--main-color);
	letter-spacing: 3px;
	line-height: 2.2;
	margin-bottom: 2em;
	font-size: 1.8em;
}

#intro p{
	margin-bottom: 5em;
	line-height: 2.2
}

@media (max-width:767px){
	#intro .btn_wrap{
		text-align: center;
	}
}

@media (min-width:768px){
	#intro h3{
		font-size: 2em;
	}
}
@media (min-width:1600px){
	#intro h3{
		font-size: 2.3em;
	}
}


/*-------------------------

  number

-------------------------*/
#number{
	background: linear-gradient(90deg, rgba(79,135,206,1) 0%, rgba(79,166,206,1) 50%, rgba(79,196,206,1) 100%);
	padding: 3em 0 5em;
	margin-bottom: 5em
}
#number .title1{
	color: #fff;
	margin: 0 auto 3em;;
}
.num_list_wrap{
	gap:15px;
}
.num_list{
	width: 100%;
	background: #fff;
	border-radius: 1.5em;
	text-align: center;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 3px 6px #3f9ca5
}
.num_list h3{
	font-weight: bold;
	color: #575757;
	margin-bottom: .5em;
	font-size: 1.3em;
}
.num_large{
	font-weight: bold;
	font-size: 2em;
	color: #575757;
}
.num_large span{
	font-size: 2em;
	display: inline-block;
	margin: 0 10px;
	line-height: 1;
}
.num_large span,
.num_large2,
.num_large3 li{
	color: var(--main-color);
	font-weight: bold;
}
.num_sub{
	font-size: 15px;
	font-weight: 400;
	color: #575757;
	margin: 1em auto 0;
}

.num_large2{
	font-size: 3.3em;
	line-height: 1.2;
	text-align: left;
	width: 100%;
	max-width: 425px;
	margin: 0 auto;
}
.num_large3{
	justify-content: center;
	width: 100%;
	max-width: 535px;
	margin: 0 auto;
}

.num_large3 li{
	width: 100%;
	font-size: 3.3em;
	line-height: 1.3;
}

@media (min-width:768px){
	.num_list{
		width:calc(50% - 15px);
	}
}

@media (min-width:1200px){
	.num_list:not(.num_list2){
		width: calc((100% / 3) - 15px)
	}
	.num_large2{
		font-size: 4em;
	}
	.num_large3:after{
		content: '';
		width: 50%;
		display: block
	}
	.num_large3 li{
		width: 50%;
		text-align: left;
	}
}

.num_large2 i{
	font-size: .8em;
	margin-right: .5em;
	position: relative
}
.num_large2 i:after{
	content: '';
	width: 1em;
	height: 1em;
	border: solid 3px var(--main-color);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)
}


