@charset "utf-8";


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

.minchou,
.minchou * {
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "黎ミン L","Reimin Light", "ヒラギノ明朝 ProN W6","HiraMinProN-W6","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
}

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

body{
	backface-visibility: hidden;
}

a{
	color:#1a1a1a;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

::selection {
	background: rgba(10,105,194,0.6);
	color: #fff;
}

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

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

header {
	background-color: #fff;
	position: relative;
}

header::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	top: 0;
	background-image: 
		url('../img/menu_bg.svg'), 
		url('../img/header_bg.jpg');
	background-position: 
		center top, 
		center top;
	background-size: 
		auto 150px, 
		cover;
	background-repeat: 
		repeat-x, 
		no-repeat;
}

	header > div.header_01 {
		width: calc(100% - 20px);
		max-width: 1440px;
		min-height: 150px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		position: relative;
	}
	
		header > div.header_01 > div {
			/*font-size: 1.24em;*/
		}
		
			header > div.header_01 > div > a {
				//color: #333436;
				color: #fff;
				display: flex;
				flex-wrap: wrap;
				flex-direction: column;
				align-items:center;
				justify-content: center;
				width: 100%;
				max-width: 360px;
				min-height: 70px;
				box-sizing: border-box;
				padding: 0 20px;
				transition: 0.1s;
				border-radius: 30px;
				position: relative;
			}
			
			header > div.header_01 > div > a:hover::after {
				opacity: 0.5;
			}
			
			header > div.header_01 > div > a:hover {
				text-decoration: none;
			}
			
				header > div.header_01 > div > a > span {
					display: block;
					width: 100%;
					box-sizing: border-box;
					padding-left: 3px;
					font-size: 0.88em;
				}
				
				header > div.header_01 > div > a > p {
					display: block;
					width: 100%;
					font-size: 1.4em;
				}
		
		header > div.header_01 > nav {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			max-width: 785px;
		}
		
			header > div.header_01 > nav > a {
				//color: #333436;
				color: #fff;
				display: inline-block;
				padding: 5px 10px;
				letter-spacing: 0.05em;
			}
			
			header > div.header_01 > nav > a.contact {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				width: 100%;
				max-width: 200px;
				height: 60px;
				border-radius: 30px;
				background-color: #144e85;
				box-sizing: border-box;
				border: 1px #144e85 solid;
				transition: 0.2s;
				margin: 0 0 0 15px;
				padding: 0;
				letter-spacing: 0.1em;
				font-size: 1.05em;
				color: #fff;
			}
			
			header > div.header_01 > nav > a.contact:hover {
				text-decoration: none;
				background-color: #fff;
				color: #144e85;
			}
			
			
	header > div.header_03 {
		width: calc(100% - 20px);
		max-width: 1560px;
		min-height: 330px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		margin: 0 auto;
		box-sizing: border-box;
		border-bottom: 1px #9ba3bc solid;
		position: relative;
	}
	
		header > div.header_03 > h1 {
			width: calc(100% - 40px);
			max-width: 1220px;
			font-size: 3.1em;
			margin: 0 auto;
			font-weight: 500;
			color: #144e85;
		}
		
		header > div.header_03 > div {
			position: absolute;
			bottom: 20px;
			right: 170px;
			color: #707070;
		}
		
			header > div.header_03 > div > a {
				color: #707070;
			}
			
			header > div.header_03 > div > a + span {
				margin: 0 10px;
			}
		
		
@media screen and (max-width:1100px){
	header > div.header_01 {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 10px 0 0;
	}
	
		header > div.header_01 > nav {
			max-width: 100%;
		}
		
		header > div.header_03 > div {
			right: 20px;
			color: #707070;
		}
}

@media screen and (max-width:800px){
	header > div.header_01 {
		position: relative;
	}
	
		header > div.header_01 > nav {
			position: absolute;
			left: 0;
			top: 0;
			padding: 85px 0 0;
		}
		
			header > div.header_01 > nav > a.contact {
				position: absolute;
				right: 0;
				top: 15px;
			}
			
		header > div.header_03 > h1 {
			font-size: 2.5em;
		}
}

@media screen and (max-width:600px){
header::before {
	height: 100px;
	background-image: 
		url('../img/menu_bg.svg'), 
		url('../img/header_bg.jpg');
	background-position: 
		center -60px, 
		center top;
	background-size: 
		auto 150px, 
		cover;
	background-repeat: 
		repeat-x, 
		no-repeat;
}

	header > div.header_01 {
		min-height: 0;
	}
	
	header > div.header_03 {
		min-height: 200px;
	}
}

@media screen and (max-width:500px){
		header > div.header_01 > div {
			font-size: 0.8em;
		}
		
		header > div.header_03 > h1 {
			font-size: 2.0em;
		}
}

@media screen and (max-width:400px){
		header > div.header_01 > div {
			/*font-size: 1.1em;*/
		}
		
			header > div.header_01 > div > a {
				min-height: 60px;
				padding: 0;
				position: relative;
			}
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	display: none;
	position: fixed;
	width: 52px;
	height: 60px;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	top: 20px;
	right: 20px;
	z-index: 100;
	background-color: rgba(20,78,133,0.7);
}
.menu-trigger::after {
	content: 'MENU';
	display: block;
	width: 100%;
	font-size: 0.75em;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 35px 0 0;
	font-weight: 300;
	white-space: nowrap;
}

.menu-trigger.active::after {
	content: 'CLOSE';
}

.menu-trigger span {
	position: absolute;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	background-color: #fff;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 10px;
}
.menu-trigger span:nth-of-type(2) {
	top: 21px;
}
.menu-trigger span:nth-of-type(3) {
	top: 32px;
}

.menu-trigger.active span:nth-of-type(1) {
	top: 8px;
	transform: translateY(12px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	width: 32px;
	bottom: 8px;
	left: 10px;
	transform: translateY(-12px) rotate(45deg);
}

@media screen and (max-width:600px){
.menu-trigger {
	display: inline-block;
}

		header > div.header_01 > nav {
			position: fixed;
			top: 0;
			left: auto;
			right: -400px;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: space-between;
			flex-direction: column;
			width: 100%;
			max-width: 350px;
			height: 100vh;
			box-sizing: border-box;
			z-index: 7;
			background-color: rgba(20,78,133,1);
			//background-color: #c1b09d;
			margin: 0;
			padding: 100px 0 60px 0;
		}

			header > div.header_01 > nav > a {
				width: 100%;
				box-sizing: border-box;
				text-align: center;
				color: #fff;
				padding: 10px 0;
				margin: 0;
				font-size: 1.1em;
			}
			
			header > div.header_01 > nav > a.contact {
				position: relative;
				top: auto;
				background-color: #fff;
				color: #144e85;
				margin: 0;
			}
			
		header > div.header_01 > nav.active {
			animation: nav_open 0.7s ;
			animation-timing-function: ease;
			animation-iteration-count: 1;
			right: 0;
		}

		header > div.header_01 > nav.close {
			animation: nav_close 0.7s ;
			animation-timing-function: ease;
			animation-iteration-count: 1;
			right: -400px;
		}

@keyframes nav_close {
	0% {
		right: 0;
	}
	100% {
		right: -400px;
	}
}
}

@keyframes nav_open {
	0% {
		right: -400px;
	}
	100% {
		right: 0;
	}
}


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

footer {
	display: block;
	width: 100%;
	background-color: #144e85;
	padding: 190px 0 0;
	color: #fff;
}

	footer > div {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		width: calc(100% - 20px);
		max-width: 1200px;
		margin: 0 auto;
	}
	
		footer > div > div.footer_01 {
			width: 100%;
			max-width: 290px;
		}
		
			footer > div > div.footer_01 > img {
				display: block;
				width: 100%;
				max-width: 270px;
			}
			
			footer > div > div.footer_01 > h2 {
				font-size: 1.5em;
				margin: 10px 0 25px;
			}
			
				footer > div > div.footer_01 > h2 > a {
					color: #fff;
					transition: 0.2s;
				}
				
				footer > div > div.footer_01 > h2 > a:hover {
					text-decoration: none;
					opacity: 0.5;
				}
			
			footer > div > div.footer_01 > p {
				margin: 12px 0 0;
			}
		
		
		footer > div > div.footer_02 {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: flex-start;
			width: 100%;
			max-width: 250px;
		}
		
			footer > div > div.footer_02 > div {
				display: flex;
				flex-wrap: wrap;
				justify-content: flex-start;
				align-items: flex-start;
				flex-direction: column;
				width: 55%;
			}
			
			footer > div > div.footer_02 > div:last-child {
				width: 45%;
			}
			
				footer > div > div.footer_02 > div > a {
					display: block;
					position: relative;
					box-sizing: border-box;
					margin: 0 0 24px;
					padding: 0 0 0 10px;
					color: #fff;
				}
				
				footer > div > div.footer_02 > div > a::before {
					content: '';
					display: block;
					width: 4px;
					height: 1px;
					background-color: #fff;
					position: absolute;
					left: 0;
					top: calc(50% - 0px);
				}
			
		
		
		footer > div > a {
			display: block;
			width: 100%;
			max-width: 420px;
			background-color: #84aede;
		}
		
			footer > div > a > img {
				width: 100%;
				transition: 0.2s;
			}
			
			footer > div > a:hover > img {
				opacity: 0.5;
			}
	
	
	footer > p {
		width: calc(100% - 20px);
		margin: 240px auto 0;
		padding: 0 0 25px;
		text-align: center;
		color: #fff;
		font-size: 0.8em;
		letter-spacing: 0.1em;
		word-break: break-word;
	}


@media screen and (max-width:1080px){
	footer > div {
		max-width: 750px;
	}
	
		footer > div > div.footer_01 {
			max-width: calc(100% - 280px);
		}
		
		footer > div > a {
			margin: 60px 0 0 auto;
		}
		
	footer > p {
		margin: 150px auto 0;
	}
}

@media screen and (max-width:750px){
footer {
	padding: 100px 0 0;
}
}

@media screen and (max-width:600px){
	footer > div {
		max-width: 350px;
	}
	
		footer > div > div.footer_01 {
			max-width: 100%;
		}
		
			footer > div > div.footer_01 > h2 {
				font-size: 1.25em;
			}
		
		footer > div > div.footer_02 {
			max-width: 100%;
			margin: 60px 0 0;
		}
		
		footer > div > a {
			margin: 60px auto 0;
			max-width: 240px;
		}
		
	footer > p {
		margin: 100px auto 0;
		font-size: 0.5em;
	}
}

