@charset "utf-8";


*{
	font-size: 100%;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

html{
	word-break:break-all;
	color: #303030;
	scroll-behavior: smooth;
}

body{
	backface-visibility: hidden;
}

a{
	color:#303030;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

::selection {
	background: #8ce4ff;
	color: #fff;
}

html,
section,
header,
nav,
body,
footer {
	display: block;
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/


h1 {
	color: #ff6401;
	background-image: url('../img/h1_bg.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
}

	h1 > p {
		width: calc(100% - 20px);
		max-width: 1280px;
		margin: 0 0 5px;
		font-size: 3.5em;
		font-weight: 700;
		line-height: 1.2em;
		letter-spacing: 0.13em;
	}

@media screen and (max-width:750px){
	h1 > p {
		font-size: 2.5em;
		letter-spacing: 0.1em;
	}
}
@media screen and (max-width:450px){
	h1 > p {
		font-size: 1.8em;
	}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
section_00
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#section_00 {
	width: 100%;
	max-width: 1280px;
	margin: 80px auto 0;
	text-align: center;
	color: #06a1de;
}

	#section_00 > h2 {
		width: 100%;
		font-size: 3.8em;
		font-weight: 700;
	}
	
	#section_00 > p {
		width: 100%;
		font-size: 2.8em;
		font-weight: 700;
	}

@media screen and (max-width:750px){
	#section_00 > h2 {
		font-size: 2.2em;
	}
	
	#section_00 > p {
		font-size: 2.0em;
	}
}

@media screen and (max-width:450px){
#section_00 {
	margin: 40px auto 0;
}

	#section_00 > h2 {
		font-size: 1.7em;
	}
	
	#section_00 > p {
		font-size: 1.5em;
	}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
section_01
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#section_01 {
	width: 100%;
	max-width: 1280px;
	margin: 80px auto 0;
	background-image: url('../img/section_01_2.jpg');
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	text-align: center;
	color: #fff;
}

#section_01::before {
	content: '';
	display: block;
	width: 100%;
	/*
	padding-top: 84.53125%;
	*/
	padding-top: 68.229167%;
	position: relative;
	z-index: 1;
}

	#section_01 > h2 {
		position: absolute;
		z-index: 2;
		left: 0;
		top: 3px;
		width: 100%;
		font-size: 3.8em;
		font-weight: 700;
	}
	
	#section_01 > p {
		position: absolute;
		z-index: 2;
		left: 0;
		top: 93px;
		width: 100%;
		font-size: 2.8em;
		font-weight: 700;
	}

@media screen and (max-width:450px){
#section_01 {
	margin: 40px auto 0;
}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
section_02
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#section_02 {
	width: 100%;
	max-width: 1280px;
	margin: 80px auto 0;
	text-align: center;
}

	#section_02 > h2 {
		width: calc(100% - 20px);
		font-size: 2.8em;
		font-weight: 500;
		margin: 0 auto;
	}
	
	#section_02 > p {
		width: calc(100% - 20px);
		font-size: 1.5em;
		font-weight: 500;
		margin: 40px auto 0;
	}
	
	#section_02 > p + p {
		font-size: 1.2em;
		margin: 40px auto 0;
	}
	
	#section_02 > img {
		display: block;
		width: 100%;
		margin: 60px auto 0;
	}

@media screen and (max-width:750px){
	#section_02 > h2 {
		font-size: 2.2em;
	}
	
	#section_02 > p {
		font-size: 1.2em;
	}
	
		#section_02 > p > br {
			display: none;
		}
	
}

@media screen and (max-width:450px){
#section_02 {
	margin: 40px auto 0;
}

	#section_02 > h2 {
		font-size: 1.5em;
	}
	
	#section_02 > p {
		font-size: 1.1em;
	}
	
	#section_02 > img {
		margin: 40px auto 0;
	}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
section_03
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#section_03 {
	width: calc(100% - 20px);
	max-width: 1280px;
	margin: 80px auto 0;
}
	
	#section_03 > p {
		font-size: 1.5em;
		font-weight: 500;
	}
	
	#section_03 > table {
		table-layout: fixed;
		border-collapse: collapse;
		width: 100%;
		max-width: 1000px;
		margin: 80px auto 0;
		font-size: 1.1em;
	}
	
		#section_03 > table col:nth-child(1),
		#section_03 > table col:nth-child(3) {
			width: 20%;
		}
		
		#section_03 > table col:nth-child(2),
		#section_03 > table col:nth-child(4) {
			width: 30%;
		}
		
		#section_03 > table th {
			border: 1px #808080 solid;
			padding: 5px 10px;
			text-align: center;
			vertical-align: top;
			font-weight: 500;
		}
		
		#section_03 > table td {
			border: 1px #808080 solid;
			padding: 5px 10px;
			vertical-align: top;
		}
		
		#section_03 > table h3 {
			margin: 0 0 0 34px;
			font-weight: 500;
		}
		
		#section_03 > table dl {
			width: 100%;
			max-width: 300px;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: flex-start;
			margin: 0 auto;
		}
		
			#section_03 > table dl > dt {
				width: calc(40% - 10px);
				letter-spacing: 0.2em;
				margin: 3px 10px 3px 0;
			}
			
			#section_03 > table dl > dd {
				width: calc(60% - 10px);
				margin: 3px 0 3px 10px;
			}
			
			#section_03 > table ul > li {
				margin: 3px 0;
			}
			
			#section_03 > table ul > li:first-child {
				margin: 0;
			}
			
	#section_03 > table + p {
		font-size: 1.1em;
		max-width: 1000px;
		margin: 20px auto 0;
	}
	#section_03 > table + p + p {
		font-size: 1.1em;
		max-width: 1000px;
		margin: 0 auto 0;
	}
	
	#section_03 > dl {
		display: none;
	}

@media screen and (max-width:1000px){
	#section_03 > table {
		font-size: 1.0em;
	}
	
		#section_03 > table h3 {
			margin: 0;
		}
}
@media screen and (max-width:750px){
	#section_03 > p {
		font-size: 1.2em;
	}
}
@media screen and (max-width:650px){
	#section_03 > table {
		display: none;
	}
	
	#section_03 > dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 40px auto 0;
	}
	
		#section_03 > dl > dt {
			width: 45%;
			letter-spacing: 0.2em;
			border-right: 1px #808080 solid;
			border-bottom: 1px #808080 solid;
			border-left: 1px #808080 solid;
			padding: 5px 10px;
			text-align: center;
			font-weight: 500;
			box-sizing: border-box;
		}
		
		#section_03 > dl > dd {
			width: 55%;
			border-right: 1px #808080 solid;
			border-bottom: 1px #808080 solid;
			padding: 5px 10px;
			box-sizing: border-box;
		}
		
		#section_03 > dl > dt:first-child,
		#section_03 > dl > dt:first-child + dd {
			border-top: 1px #808080 solid;
		}
		
			#section_03 > dl dl {
				width: 100%;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: flex-start;
			}
			
				#section_03 > dl dl > dt {
					width: calc(50% - 10px);
					letter-spacing: 0.2em;
				}
				
				#section_03 > dl dl > dd {
					width: calc(50% - 10px);
				}
}
@media screen and (max-width:450px){
#section_03 {
	margin: 60px auto 0;
}

	#section_03 > p {
		font-size: 1.05em;
	}
	
	#section_03 > table {
		margin: 40px auto 0;
		font-size: 1.1em;
	}
	
	#section_03 > dl {
		font-size: 0.9em;
	}
	
		#section_03 > dl > dt {
			width: 40%;
		}
		
		#section_03 > dl > dd {
			width: 60%;
		}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: linear-gradient(#fff, #75cf75);
	font-size: 1.8em;
	font-weight: 700;
	margin: 80px 0 0;
	padding: 60px 0 40px;
}

	footer > p {
		width: calc(50% - 10px);
		max-width: 400px;
	}
	
	footer > p:first-child {
		margni: 0 10px 0 0;
		text-align: center;
	}
	
@media screen and (max-width:750px){
footer {
	font-size: 1.2em;
}
	
	footer > p {
		width: calc(55% - 10px);
	}
	
	footer > p:first-child {
		width: calc(45% - 10px);
	}
}

@media screen and (max-width:450px){
footer {
	margin: 60px 0 0;
	padding: 40px 0 20px;
}

	footer > p {
		width: 100%;
		text-align: center;
	}
	
	footer > p:first-child {
		width: 100%;
		margin: 0 0 20px;
	}
}
