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


/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	position: relative;
}

html,body {
	width: 100%;
	height: 100%;
	font-family: "Noto Serif JP", serif;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	display: inline-flex;
    height: 100%;
    width: 100%;
}

a:hover {
	opacity: 0.6;
	transition: 0.6s;
}

li {
	list-style: none;
}

.sp {
	display: none;
}

section {
	padding: 50px 0px;
}

.inner_wrap {
	max-width: 1600px;
	width: 90%;
	margin: 0px auto;
}

.btn_wrap {
	max-width: 412px;
	width: 80%;
	margin: 50px auto 0px;
}

header {
	width: 100%;
	padding: 10px 0px;
	display: flex;
	align-items: center;
	z-index: 100;
}

.header_wrap {
	width: 94%;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 4px;
}

.logo {
	max-width: 360px;
	width: 23%;
	z-index: 1;
}

.header_menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 50px;
	width: 60%;
}

.header_tel {
	max-width: 190px;
	width: 13%;
}

#contents {
	padding: 0px 0px 100px;
	background: linear-gradient(to bottom,#FFF,#D3ECF9 40%);
}

.inner_img {
	display: flex;
	justify-content: center;
}

footer {
	background: #D3ECF9;
	border-top: 5px solid #FFF;
	padding-bottom: env(safe-area-inset-bottom);
}

.footer_img {
	max-width: 630px;
	width: 90%;
	padding: 50px 0px;
}

.copyright {
	padding: 20px 0px;
}

.copyright > p {
	font-size: 15px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: center;
	color: #004F9E;
}



/* ---------------------------------------------------------
ページタイトル
--------------------------------------------------------- */
.page_ttl_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 100px 0px 0px;
}

.page_ttl_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.page_ttl_inner > * {
	text-align: center;
}

.page_ttl {
	font-size: clamp(24px,5vw,50px);
	font-weight: bold;
	color: #00498B;
}

.page_ttl_inner > small {
	font-size: clamp(16px,2.6vw,26px);
	color: #00BFE3;
}

.page_ttl_wrap::after {	
	content: '';
	background: url("../images/common/wave.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	width: 100%;
	height: 200px;
	bottom: 0px;
	position: relative;
	mix-blend-mode: multiply;
}


.box_wrap {
	max-width: 1600px;
	margin: 0px auto;
}

.white_box > * {
	text-align: center;
}

.white_box > dt {
	background: #004F9E;
	color: #FFF;
	padding: 10px;
	font-size: clamp(18px,3vw,30px);
}

.white_box > dd {
	padding: 50px 15px;
}














