@charset "utf-8";

/* ------------------------------
 リセット
------------------------------ */
* {
border:0;
margin:0;
/* outline:0; */
padding:0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-ms-box-sizing:border-box;
-o-box-sizing:border-box;
box-sizing:border-box;
font:inherit;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
text-decoration:none;
vertical-align:baseline;
}
html {font-size:62.5%; width:100%; height:100%;}
body {
font-size:10px;
font-size:1.0rem;
line-height:1;
position:relative;
text-align:center;
-webkit-text-size-adjust:100%;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
width:100%;
height:100%;
}
article, aside, dialog, figure, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}
hr {display:block;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:""; content:none;}
input, select {vertical-align:middle;}
table {border-collapse:collapse; border-spacing:0; empty-cells:show;}

/* input focus outline */
input:focus {
	outline: solid 2px var(--main-font-color);
}
:root {
	--main-font-color: #333333;
	--base-color: #eff1f3;
	--red-color: #CC4625;
	--blue-color: #1a57a0;
}
/* ------------------------------
 サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	color: var(--main-font-color);
	font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.75;
	font-weight: 500;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
.site {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.7rem;
	line-height: 1.75;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.cf:after {
	content: "";
	clear: both;
	display: block;
}
.fl { float: left; }
.fr { float: right; }
.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.vat { vertical-align: top; }
.vam { vertical-align: middle; }
.vab { vertical-align: bottom; }
strong, .bold { font-weight: 600; }
.nobold { font-weight: 500 !important; }
.auto {
	margin-left: auto;
	margin-right: auto;
}
input.none { display:none; }
/* 行スペース */
.t1 { margin-top: 1.75em; }
.b1 { margin-bottom: 1.75em; }
.b2 { margin-bottom: 3.5em; }
.b3 { margin-bottom: 5.25em; }
/* スペース */
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt80 { margin-top: 80px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }
.mb110 { margin-bottom: 110px !important; }
.mb120 { margin-bottom: 120px !important; }
.ml0 { margin-left: 0 !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }
.ml50 { margin-left: 50px !important; }
.ml1em { margin-left: 1em !important; }
.ml2rem { margin-left: 2rem !important; }
.mr0 { margin-right: 0 !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr20 { margin-right: 20px !important; }
.pt0 { padding-top: 0px !important; }
.pb50 { padding-bottom: 50px !important; }
.nopd { padding: 0 !important; }

/* リンク */
a {
	color: var(--main-font-color);
	text-decoration: none;
	transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.7;
	}
}
/* カラー */
.red { color: var(--red-color) !important; }
.blue { color: var(--blue-color) !important; }
.gray { color: #808080 !important; }
/* フォントサイズ */
.f11 { font-size: 1.1rem; }
.f12 { font-size: 1.2rem; }
.f13 { font-size: 1.3rem; }
.small, small,
.f14 { font-size: 1.4rem; }
.f15 { font-size: 1.5rem; }
.f16 { font-size: 1.6rem; }
.big,
.f18 { font-size: 1.8rem; }
.f19 { font-size: 1.9rem; }
.f20 { font-size: 2rem; }
.f21 { font-size: 2.1rem; }
.f22 { font-size: 2.2rem; }
.f23 { font-size: 2.3rem; }
.f24 { font-size: 2.4rem; }
.f25 { font-size: 2.5rem; }
.f26 { font-size: 2.6rem; }
.f27 { font-size: 2.7rem; }
.f28 { font-size: 2.8rem; }
.f48 { font-size: 4.8rem; }

/* 上付き */
sup {
	font-size: 80%;
	vertical-align:top;
}
/* 下付き */
sub {
	font-size: 80%;
	vertical-align:bottom;
}
/* 強調 */
em { font-style: italic; }
/* 打消し */
del { text-decoration: line-through; }
/* 引用・転用 */
blockquote { margin: 1em 3em; }
/* 非表示 */
.hide { display: none; }
/* インラインブロック */
.inline-block {
	display: inline-block;
}
/* インデント */
.ti1c {
	padding-left: 1em;
	text-indent: -1em;
}
.ti1hc {
	padding-left: 1.6em;
	text-indent: -1.6em;
}
.ti2c {
	padding-left: 2em;
	text-indent: -2em;
}
.ti3c {
	padding-left: 3em;
	text-indent: -3em;
}
.ti4c {
	padding-left: 4em;
	text-indent: -4em;
}
.ti5c {
	padding-left: 5em;
	text-indent: -5em;
}
/* 下線 */
u { text-decoration: underline; }
/* ルビ */
ruby rt { font-size: 50%; }
/* ------------------------------
 サイト全体（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.pc { display: block !important; }
	.sp { display: none !important;}
	.pc_tal { text-align: left !important; }
	.pc_tac { text-align: center !important; }
	.pc_tar { text-align: right !important; }
	.pc_bold { font-weight: bold;}
	.pc_nobr br { display: none; }
	/* スペース */
	.pc_mt20 { margin-top: 20px !important }
	.pc_mt10 { margin-top: 10px !important }
	.pc_mt5 { margin-top: 5px !important }
	.pc_mb0 { margin-bottom: 0 !important }
	.pc_mb10 { margin-bottom: 10px !important; }
	.pc_mb20 { margin-bottom: 20px !important; }
	.pc_mb25 { margin-bottom: 25px !important; }
	.pc_mb30 { margin-bottom: 30px !important; }
	.pc_mb40 { margin-bottom: 40px !important; }
	.pc_mb50 { margin-bottom: 50px !important; }
	.pc_mb60 { margin-bottom: 60px !important; }
	.pc_mb70 { margin-bottom: 70px !important; }
	.pc_mb80 { margin-bottom: 80px !important; }
	.pc_mr0 { margin-right: 0 !important; }
	.pc_mr10 { margin-right: 10px !important; }
	.pc_ml20 { margin-left: 20px !important; }
	/* TEL Link */
	a[href^="tel:"] {
		color: var(--main-font-color);
		text-decoration: none;
		pointer-events: none;
		cursor: default;
	}
	/* PCのみブロック */
	.pc_block {
		display: block;
	}
	/* PCのみインラインブロック */
	.pc_inline-block {
		display: inline-block;
	}

}
/* ------------------------------
 サイト全体（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	html, body {
		min-width: 100%;
		max-width: 100%;
	}
	.site { 
		min-width: 0;
		font-size: 1.6rem;
	}
	.pc { display: none !important; }
	.sp { display: block !important; }
	.sp_db { display: block !important; }
	.sp_tac { text-align: center !important; }
	.sp_tal { text-align: left !important; }
	.sp_nobr br { display: none; }
	.fl, .fr { float: none; }
	/* スペース */
	.mt80 { margin-top: 50px !important; }
	.mb15 { margin-bottom: 10px !important; }
	.mb20 { margin-bottom: 15px !important; }
	.mb25 { margin-bottom: 15px !important; }
	.mb30 { margin-bottom: 20px !important; }
	.mb35 { margin-bottom: 20px !important; }
	.mb40 { margin-bottom: 25px !important; }
	.mb50 { margin-bottom: 30px !important; }
	.mb60 { margin-bottom: 40px !important; }
	.mb70 { margin-bottom: 45px !important; }
	.mb80 { margin-bottom: 50px !important; }
	.mb90 { margin-bottom: 55px !important; }
	.mb100 { margin-bottom: 60px !important; }
	.mb110 { margin-bottom: 65px !important; }
	.mb120 { margin-bottom: 70px !important; }
	.sp_mt10 { margin-top: 10px !important; }
	.sb_mt-30 { margin-top: -30px !important; }
	.sp_mb0 { margin-bottom: 0 !important; }
	.sp_mb5 { margin-bottom: 5px !important; }
	.sp_mb10 { margin-bottom: 10px !important; }
	.sp_mb15 { margin-bottom: 15px !important; }
	.sp_mb20 { margin-bottom: 20px !important; }
	.sp_mb25 { margin-bottom: 25px !important; }
	.sp_mb30 { margin-bottom: 30px !important; }
	.sp_mb40 { margin-bottom: 40px !important; }
	.sp_mb50 { margin-bottom: 50px !important; }
	.sp_mb60 { margin-bottom: 60px !important; }
	.sp_ml2em { margin-left: 2rem !important; }
	.sp_mr0 { margin-right: 0 !important; }
	/* フォントサイズ */
	.f11 { font-size: 1rem; }
	.f12 { font-size: 1.1rem; }
	.f13 { font-size: 1.1rem; }
	.small,
	.f14 { font-size: 1.2rem; }
	.f15 { font-size: 1.3rem; }
	.f16 { font-size: 1.4rem; }
	.big,
	.f18 { font-size: 1.6rem; }
	.f19 { font-size: 1.6rem; }
	.f20 { font-size: 1.6rem; }
	.f21 { font-size: 1.7rem; }
	.f22 { font-size: 1.7rem; }
	.f23 { font-size: 1.8rem; }
	.f24 { font-size: 1.8rem; }
	.f25 { font-size: 1.9rem; }
	.f26 { font-size: 2rem; }
	.f27 { font-size: 2.1rem; }
	.f28 { font-size: 2.2rem; }
	.f48 { font-size: 2.8rem; }
	.nobr br { display: none; }
	/* PCのみインラインブロックのスマホ表示 */
	.pc_inline-block {
		display: block;
		margin-bottom: 5px;
	}
	/* spのみインラインブロック */
	.sp_inline-block {
		display: inline-block;
	}
}

/* ------------------------------
 ヘッダー（PC）
------------------------------ */
.header {
	display: block;
	position: fixed;
	z-index: 1000;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--main-font-color);
	font-weight: 500;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.05) 0 0 4px 0;
	transition: background-color 0.2s ease-in-out;
}
.headerBlock {
	width: 100%;
	height: 100%;
	text-align: left;
}
.header a {
	color: var(--main-font-color);
}
/* -- ロゴ -- */
.logoBox {
	display: flex;
	align-items: center;
	width: auto;
}
/* -- SNS -- */
.sns {
	display: grid;
	align-items: center;
}
.sns ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
}
.sns ul li img {
	width: 40px;
}
.sns ul li a[target="_blank"]::after {
	display: none;
}
/* -- リンク -- */
.headerSubMenu {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	gap: 0 20px;
}
.headerSubMenu ul {
	display: flex;
	flex-flow: row wrap;
}
.headerSubMenu ul > li {
	font-size: 1.5rem;
}
/* ボタンリンク */

.headBtnBox li a {
	line-height: 1.5;
	min-width: 100px;
	min-height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: -webkit-linear-gradient(45deg, #122a5e, #1a57a0);
	font-weight: bold;
}
.headBtnBox .contact a {
	color: #000000;
	background: -webkit-linear-gradient(45deg, #f4babe, #f7d2d6);
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	.header {
		min-width: 1240px;
	}
    .headerBlock {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #fff;
	}
	.slidemenu-btn,
	.btn-submenu-toggle {
		display: none !important;
	}
	/* -- ロゴ -- */
	.header .logoBox {
		margin-left: 10px;
	}
	.header .logoBox > a img {
		width: 280px;
		height: auto;
	}
	/*-- グローバルナビ --*/
	.headerBlock .gnav {
		display: flex;
		align-items: center;
        justify-content: flex-end;
		width: auto;
		height: 100px;
		gap: 10px;
	}
	/* グローバルナビメニュー */
	.headerBlock .gnav .headerMenu {
		display: flex;
		justify-content: center;
		gap: 0 18px;
		height: 100px;
		visibility: visible;
	}
	.headerBlock .gnav .headerMenu > li {
		display: flex;
		align-items: center;
	}
	.headerBlock .gnav .headerMenu > li > p {
		font-size: 1.5rem;
		font-weight: 600;
		width: 100%;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > p a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li.on > p a {
		opacity: 0.7;
	}
	/* -- リンク -- */
	.headerSubMenu {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-end;
		align-items: center;
		gap: 0 20px;
	}
	.headerSubMenu ul {
		display: flex;
		flex-flow: row wrap;
	}
	.headerSubMenu ul > li {
		font-size: 1.5rem;
	}
	/* 開閉コンテンツ */ 
	.select_block {
		position: absolute;
		transition: opacity 0.2s ease-in-out;
		visibility: hidden;
		opacity: 0;
	}
	.check_select_block:checked + div .select_block {
		visibility: visible;
		opacity: 1;
	}
	/* 開閉アイコン */
	.icon_open {
		display: inline-block;
		position: relative;
		width: 19px;
		height: 19px;
		background: url(../img/icon_search.svg) no-repeat center / cover;
		vertical-align: middle;
		margin-right: 5px;
		margin-bottom: 4px;
		transition: transform 0.2s ease-in-out;
	}
	.searchCloseBtn {
		position: absolute;
		width: 20px;
		height: 20px;
		top: 20px;
		right: 20px;
		background-color: transparent;
		cursor: pointer;
	}
	.searchCloseBtn::before,
	.searchCloseBtn::after {
		content: "";
		position: absolute;
		display: block;
		height: 2px;
		width: 20px;
		background-color: #000;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.searchCloseBtn::before {
		transform: rotate(45deg);
	}
	.searchCloseBtn::after {
		transform: rotate(-45deg);
	}
	/* クリックされたら */
	#check_search:checked ~ .header + div {
		visibility: visible;
		opacity: 1;
	}
}
@media print, screen and (min-width: 1450px) {
	/* -- ロゴ -- */
	.header .logoBox {
		margin-left: 30px;
	}
	.header .logoBox > a img {
		width: 368px;
	}
	/* グローバルナビメニュー */
	.headerBlock .gnav {
		gap: 30px;
	}
	.headerBlock .gnav .headerMenu {
		gap: 0 30px;
	}
	.headerBlock .gnav .headerMenu > li > p {
		font-size: 1.6rem;
	}
}
/* ------------------------------
 プルダウンメニュー部分（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.headerBlock .gnav .headerMenu > li > .pulldown {
		display: block !important;
        width: 100%;
		min-height: 160px;
        background-color: var(--base-color);
		padding: 40px 0;
        position: absolute;
        left: 0;
		right: 0;
        transition: 0.2s ease-out;
		visibility: hidden;

		top: -200%;
		z-index: -1;
		transition-duration:0.6s;
		transition-timing-function:ease-in-out;
		transition-delay:0.2s;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown:hover,
	.headerBlock .gnav .headerMenu > li:hover > .pulldown {
		visibility: visible;
		opacity: 1;

		top: 100px;
		-webkit-transition: all 0.6s 0s ease-in-out;
		transition: all 0.6s 0s ease-in-out;
		transition-delay: 0s;
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}


	/* -- 下層メニュー -- */
	.headerBlock .gnav .headerMenu > li > .pulldown .inBlock {
		display: flex;
		justify-content: space-between;
		width: 1260px;
	}
	/* 第2階層 */
	.headerBlock .gnav .headerMenu > li > .pulldown .title {
		font-size: 2rem;
		font-weight: 700;
		position: relative;
		text-align: center;
	}
	
	/* 第3階層 */
	.headerBlock .gnav .headerMenu > li > .pulldown ul {
		display: flex;
		flex-flow: row wrap;
		width: 942px;
		gap: 12px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li {
		width: 306px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li p {
		width: 100%;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li p a {
		position: relative;
		display: flex;
		width: 100%;
		height: 100%;
		padding: 14px 10px 14px 35px;
		line-height: 1.25;
		background: #fff;
		font-weight: bold;
		font-size: 1.6rem;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li p a::before {
		position: absolute;
		content: "";
		width: 18px;
		height: 18px;
		display: inline-block;
		margin-right: 8px;
		margin-top: -4px;
		vertical-align: middle;
		background: url(../img/arrow_right.svg) no-repeat 0 0 / cover;
		left: 12px;
    	top: 19px;
	}
	
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul {
		display: none !important;
	}
	.headBtnBox li a {
		padding-left: 11px;
	}
}
/* ------------------------------
 スマホ用コード（ヘッダ）
------------------------------ */
@media screen and (max-width: 767px) {
	.header {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		min-width: 100%;
		z-index: 1000;
	}
	.headerBlock  {
		width: 100%;
		margin: 0 auto;
	}
	/* ロゴ */
	.header .logoBlock {
		z-index: 1000;
		width: 100%;
		top: 0;
		position: relative;
	}
	.header .logoBox {
		position: relative;
		display: flex;
		align-items: center;
		background-color: #fff;
		padding-left: 3%;
		height: 60px;
		z-index: 1000;
	}
	.header .logoBox > a img {
		width: 237px;
		height: auto;
	}
	.page-open-slidemenu .header .logoBox {
		background-color: #fff;
		box-shadow: rgba(23, 144, 188, 0.08) 0 0 7px 0;
	}
	/* 開閉メニューボタン */
	.slidemenu-btn {
		display: block;
		width: 60px;
		height: 60px;
		background: #fff;
		position: absolute;
		top: 0;
		right: 0;
		transition: 0.2s ease-in-out;
		cursor: pointer;
		z-index: 1000;
	}
	.header .menu-icon,
	.header .menu-icon:before,
	.header .menu-icon:after {
		display: block;
		position: absolute;
	}
	.header .menu-icon,
	.header .menu-icon:before,
	.header .menu-icon:after {
		width: 33px;
		height: 2px;
		background-color: #25497d;
		border-radius: 1px;
		-webkit-transition: color .25s ease;
		transition: color .25s ease;
	}
	body.page-open-slidemenu {
		height: 100%;
		overflow: hidden;
	}
	.page-open-slidemenu .header .menu-icon,
	.page-open-slidemenu .header .menu-icon:before,
	.page-open-slidemenu .header .menu-icon:after {
		background-color: #25497d;
	}
	.header .menu-icon,
	.header .menu-icon:before,
	.header .menu-icon:after {
		content: "";
		-webkit-transform-origin: 50% 50%;
		-moz-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	.header .menu-icon {
		display: block;
		width: 33px;
		height: 2px;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background-color: #25497d;
		transition: all .25s ease-out;
	}
	.header .menu-icon:before {
		top: -8px;
		-webkit-transition: -webkit-transform .1s ease-out;
		transition: -webkit-transform .1s ease-out;
		transition: transform .1s ease-out;
		transition: transform .1s ease-out, -webkit-transform .1s ease-out;
	}
	.header .menu-icon:after {
		bottom: -8px;
		-webkit-transition: -webkit-transform .1s ease-out;
		transition: -webkit-transform .1s ease-out;
		transition: transform .1s ease-out;
		transition: transform .1s ease-out, -webkit-transform .1s ease-out;
	}
	.page-open-slidemenu .header .menu-icon {
		background-color: transparent;
	}
	.page-open-slidemenu .header .menu-icon:before {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
		-webkit-transition: -webkit-transform .1s ease-out .25s;
		transition: -webkit-transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s, -webkit-transform .1s ease-out .25s;
	}
	.page-open-slidemenu .header .menu-icon:after {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
		-webkit-transition: -webkit-transform .1s ease-out .25s;
		transition: -webkit-transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s;
		transition: transform .1s ease-out .25s, -webkit-transform .1s ease-out .25s;
	}
	
	/* グローバルナビ */
	.headerBlock .gnav {
		-webkit-transition: opacity .15s ease-in-out, visibility 0s step-start 0.2s;
		transition: opacity .15s ease-in-out, visibility 0s step-start 0.2s;
		position: fixed;
		top: 0;
		z-index: 999;
		width: 100%;
		padding: 60px 0 0;
		background: #e9ebee;
		opacity: 0;
		visibility: hidden;
		display: flex;
		flex-flow: column;
	}
	
	/* 開いたら固定 */
	.page-open-slidemenu .headerBlock {
		position: fixed;
		top: 0;
	}
	.page-open-slidemenu .headerBlock .gnav {
		height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: visible;
		opacity: 1;
		transition: opacity 0.2s ease-in-out;
	}
	.headerBlock .gnav .headerMenu {
		margin-bottom: 30px;
	}
	.page-open-slidemenu .headerBlock .gnav .headerMenu > li {
		
		text-align: left;
	}
	.headerBlock .gnav .headerMenu > li {
		width: 90%;
		position: relative;
		z-index: 1;
		margin: auto;
	}
	.headerBlock .gnav .headerMenu > li > p {
		position: relative;
	}
	.headerBlock .gnav .headerMenu > li > p > a {
		display: flex;
		align-items: center;
		height: 68px;
        line-height: 1.3;
		font-weight: bold;
	}
	.headerBlock .gnav .headerMenu > li  {
		border-bottom: solid 1px #c1c8d3;
	}
	.headerBlock .gnav .headerMenu > li:last-child {
		border-bottom: solid 1px #c1c8d3;
	}
	
	/* ------------------------------
	 プルダウンメニュー部分
	------------------------------ */
	.headerBlock .gnav .headerMenu > li > .pulldown {
		position: relative;
		display: none;
		overflow: hidden;
		transition: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown > .inBlock {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .title {
		display: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul {
		margin-bottom: -1px;
		padding-bottom: 30px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li > p {
		position: relative;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li > p .btn-submenu-toggle {
		box-shadow: none;
		right: 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li > p > a {
		display: flex;
		align-items: center;
		width: 90%;
		height: 25px;
		line-height: 1.3;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li > p > a::before {
		content: "-";
		display: inline-block;
		margin-right: 5px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul {
		display: none;
		padding-top: 20px;
		padding-bottom: 20px;
		margin-bottom: 0;
		border-top: dotted 1px #C2C2C2;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul li {
		position: relative;
		border-bottom: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul li:not(:last-child) {
		margin-bottom: 10px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul li a {
		display: block;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 1.75;
		padding-left: 30px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul li a::before {
		content: "●";
		position: absolute;
		font-size: 60%;
		color: var(--blue-color);
		left: 18px;
		top: .5em;
	}
	/* トグルボタン */
	.btn-submenu-toggle {
		display: block;
		width: 22px;
		height: 68px;
		background: url(../img/icon_gnav_close.svg) no-repeat center;
		background-size: 18px;
		border-radius: 100%;
		position: absolute;
		top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
		z-index: 10;
		transition: 0.2s ease-in-out;
		cursor: pointer;
	}
	.is-open .btn-submenu-toggle {
		background: url(../img/icon_gnav_open.svg) no-repeat center;
	}
	.pulldown .btn-submenu-toggle {
		background: url(../img/icon_gnav_close_w.svg) no-repeat center;
		background-size: 18px;
	}
	.pulldown .is-open .btn-submenu-toggle {
		background: url(../img/icon_gnav_open_w.svg) no-repeat center;
	}
	.headerBlock .gnav .headerMenu > li.is-open > .pulldown {
		display: block;
		overflow: visible;
	}
	.headerSubMenu {
		width: 100%;
		margin: 30px auto 0;
		justify-content: center;
	}
	.headerSubMenu ul {
		display: flex;
		justify-content: center;
		flex-flow: row wrap;
	}
	
	.headerSubMenu ul li a {
		font-size: 1.6rem;
		font-weight: 600;
	}
	/* ボタンリンク */
	.headerSubMenu ul.headBtnBox {
		width: 100%;
	}
	.headBtnBox li {
		width: 50%;
	}
	.headBtnBox li a {
		min-height: 76px;
		background-color: #fff;
		font-size: 1.5rem;
	}
	.headBtnBox li a br {
		display: none;
	}	
}
/* ------------------------------
 メニューレイヤー（PC）
------------------------------ */
.menu-layer {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	transition: 0.2s ease-in-out;
}
/* ------------------------------
 メニューレイヤー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.menu-layer {
		visibility: hidden;
		opacity: 0;
	}
	.page-open-slidemenu .menu-layer {
		visibility: visible;
		opacity: 1;
	}
}

/* ------------------------------
 コンテンツ（PC）
------------------------------ */
.contentsHome,
.contents {
	position: relative;
	width: 100%;
	text-align: left;
}
.inBlock {
	text-align: left;
}
.mainContents,
.sideContents {
	position: relative;
	z-index: 1;
}
.cms_block {
	scroll-margin-top: 100px;
}
@media print, screen and (min-width: 768px) {
	.site {
		min-width: 1240px;
	}
	.contentsHome,
	.contents {
		min-width: 1240px;
	}
	.contentsHome {
		margin: 100px auto 0;
	}
	.contents {
		margin: 100px auto 0;
	}
	/* サイドコンテンツ有り */
	.mainContents {
		width: 820px;
		float: left;
	}
	.sideContents {
		width: 272px;
		float: right;
	}
	.inBlock .mainContents .cms_block {
		width: 100%;
	}
	/* 横幅1140px */
	.inBlock {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.contents .inBlock::after {
		content: "";
		display: block;
		clear: both;
	}
	/* 横幅1920px */
	.cms_block {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.cms_block.wide {
		width: 100%;
	}
	.wide > * {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* ------------------------------
 コンテンツ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.site {
		min-width: 320px;
		position: relative;
        bottom: 0;
	}
	.page-open-slidemenu {
		overflow: hidden;
	}
	.contentsHome,
	.contents {
		min-width: 320px;
	}
	.contentsHome {
		margin-top: 60px;
		padding-bottom: 90px;
	}
	.contents {
		padding: 60px 0 0;
	}
	.cms_block:last-child {
		margin-bottom: 120px;
	}
	/* サイドコンテンツ有り */
	.mainContents {
		margin-bottom: 50px;
	}
	.inBlock .mainContents .cms_block {
		width: 100%;
		margin-left: 0;
        margin-right: 0;
	}
	/* 入力 */
	.inBlock {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	/* Wideの場合 */
	.cms_block.wide {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.cms_block.wide > *:not(.wide) {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* ------------------------------
 下層ページヘッダー（PC）
------------------------------ */
.heading {
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
	width: 100%;
    min-height: 500px;
	margin-bottom: 200px;
	z-index: 1;
}
.heading::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 500px;
	background: url(../img/heading_bg.jpg) no-repeat center / cover;
	top: 0;
	z-index: -1;
}
.heading figure {
	position: absolute;
	max-width: 1400px;
	width: 67%;
	height: 500px;
    overflow: hidden;
	right: 0;
	top: 95px;
	display: flex;
	align-items: center;
	filter: drop-shadow(0 0 3px #dee5eb);
}
.heading figure img {
	width: 100%;
	object-fit: cover;
}
/* メイン画像無し */
.heading.noimg {
    min-height: 300px;
	margin-bottom: 90px;
}
.heading.noimg::before {
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.heading.noimg::after {
	display: none;
}

@media print, screen and (min-width: 768px) {
	/* メイン画像無し */
	.heading::after {
		content: "";
		position: absolute;
		width: 230px;
		height: 183px;
		background: url(../img/heading_slash.png) no-repeat center / cover;
		bottom:-183px;
		left: 10%;
		z-index: -1;
	}
	.heading.noimg::after {
		width: 252px;
		height: 304px;
		background: url(../img/header_noimg_line.png) no-repeat center / cover;
		right: calc(50% + 1140px/ 2);
	}
	
}
@media print, screen and (min-width: 1350px) {
	.heading figure {
		width: 70%;
	}
}
@media print, screen and (min-width: 1850px) {
	.heading figure {
		width: 75%;
	}
}
/* ------------------------------
 下層ページヘッダー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.heading {
    	min-height: 300px;
    	margin-bottom: 150px;
	}
	.heading::before {
		height: 300px;
		background: url(../img/heading_bg_sp.jpg) no-repeat center / cover;
	}
	.heading figure {
		position: relative;
		width: 95%;
		height: 190px;
		margin-left: 5%;
		top: 140px;
	}
	/* メイン画像無し */
	.heading.noimg {
		min-height: 150px;
	}
}

/* ------------------------------
 フッターリンクボタン（PC）
------------------------------ */
.footer_link .btn {
	position: relative;
}
.footer_link .btn a {
    width: 310px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
	margin: auto;
	background: #fff;
	color: #1a57a0;
}
.footer_link .btn a::after {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background: url(../img/arrow_right.svg) no-repeat center / cover;
	top: 0;
	bottom: 0;
	right: 22px;
	left: auto;
	margin: auto;
	transition: .3s ease-in-out;
}
.footer_link .btn img {
  	width: 100%;
}
@media print, screen and (min-width: 768px) {
	.footer_link {
		display: flex;
	}
	.footer_link .btn {
		width: 33.33%;
	}
}
/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	position: relative;
	width: 100%;
	text-align: center;
	background: linear-gradient(rgba(24,44,80,0.7),rgba(24,44,80,1) 50%,rgba(24,44,80,1));
	margin: 0 auto;
	padding: 100px 0 90px;
	z-index: 1;
}
/*フッターナビ*/
.footerNav a {
	color: #fff;
}
.footerNav > ul > li > p a {
	font-size: 1.5rem;
	font-weight: bold;
}
.footerNav > ul > li > p a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 22px;
    height: 22px;
	background: url(../img/icon_blank_w.svg) no-repeat center / 11px auto;
    vertical-align: -5px;
}
.footerNav > ul > li > ul {
	font-size: 1.4rem;
	margin-bottom: 5px;
}
.footerNav > ul > li > ul > li > a::before {
	content: "-";
	display: inline-block;
	margin-right: 5px;
}

/* ロゴ */
.footer .logoBox {
	margin-bottom: 30px;
	justify-content: center;
}
.footer .logoBox img {
	width: 422px;
}
/* 住所 */
.footer .address {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.footer .address a {
	color: #fff;
}
/* メニューリンク */
.footerMenu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 36px;
}
.footerMenu ul li {
	width: 258px;
}
.footerMenu a {
	background: #fff;
	line-height: 50px;
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	font-weight: bold;
	font-size: 1.6rem;
}
.footerMenu a[target="_blank"]::after {
	position: absolute;
	content: "";
	display: block;
	width: 11px;
	height: 10px;
	margin-left: 5px;
	background: url(../img/icon_blank.svg) no-repeat center / cover;
	top: 10px;
	right: 10px;
	transition: .3s ease-in-out;
}
/* -- コピーライト -- */
.copyright {
	font-size: 1.4rem;
	line-height: 1;
	background: #fff;
	text-align: center;
	padding: 50px;
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	/*フッターナビ*/
	.footerNav {
		display: flex;
		width: 100%;
		margin: 60px auto 50px;
	}
	.footerNav > ul {
		border-left: 1px solid #5873a7;
		width: 25%;
		padding: 0 30px;
	}
	.footerNav > ul:last-child {
		border-right: 1px solid #5873a7;
	}
	.footerNav > ul > li > ul {
		font-feature-settings: "palt";
		line-height: 2;
	}
	.footerNav > ul > li:not(:last-child) {
		margin-bottom: 12px;
	}
	.footerNav > ul > li > p {
		margin-bottom: 5px;
	}
}
/* ------------------------------
 スマホ用コード（フッタ）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		padding: 55px 0 70px;
	}
	.footer .logoBox img {
		width: 100%;
        max-width: 493px;
    }
	/*フッターナビ*/
	.footerNav {
		text-align: center;
	}
	.footerNav ul {
		text-align: center;
		display: inline-block;
	}
	.footerNav li {
		display: inline-block;
		font-size: 1.4rem;
		line-height: 1;
		margin-right: 5px;
		padding-right: 10px;
		border-right: solid 1px #fff;
	}
	.footerNav ul:last-child li:last-child {
		border-right: none;
	}
	/* 住所 */
	.footer .address {
		font-size: 1.3rem;
		padding-bottom: 45px;
		margin-bottom: 45px;
		border-bottom: solid 1px #6886c1;
	}
	/* メニューリンク */
	.footerMenu {
		margin-top: 50px;
	}
	.footerMenu ul {
		gap: 8px 12px;
		justify-content: center;
	}
	.footerNav > ul > li > p a {
		font-size: 1.3rem;
	}
	.footerNav > ul > li > p a[target="_blank"]::after {
		width: 11px;
		height: 10px;
		vertical-align: 1px;
		margin-left: 4px;
	}
	/* -- コピーライト -- */
	.copyright {
		font-size: 1.2rem;
		padding: 30px;
	}
}

/* ------------------------------
 ページトップ（PC）
------------------------------ */
.js-btn-pagetop {
	display: block;
	width: 60px;
    height: 60px;
	background: -webkit-linear-gradient(45deg, #122a5e, #1a57a0);
	position: fixed;
	bottom: 50px;
	right: 3%;
	z-index: 999;
	cursor: pointer;
	transition: none;
}
.js-btn-pagetop::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 7px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(-45deg);
}

/* ------------------------------
 ページトップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.js-btn-pagetop {
		width: 40px;
		height: 40px;
		bottom: 20px;
    	right: 3%;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html, 
	body {
		background: none;
	}
	.header {
		position: absolute;
	}
	.header .logoBox > a img {
		width: 300px;
	}
	.headerSubMenu ul > li {
		font-size: 1.5rem;
	}
	.headerBlock .gnav .headerMenu {
		gap: 0 20px;
	}
}

 /* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}