@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 {
	/* 共通カラー */
	--blue-color: #0a56b7;
	--co-color: #12b9d8;
	--pvc-color: #031a38;
	--evc-color: #223a70;
	--asap-color: #f77d1e;
	--asap-sub-color: #ffc000;
	--red-color: #ff0000;
	--gray-color: #798d95;
	--bg-color: #f3f5f9;
	--blue-bg-color: #f6fbff;
	--border: solid 1px #d7dce2;
	--border-color: #d7dce2;
	--box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
	--main-font-color: #222222;
	/* headerの高さ */;
	--header-height-pc: 110px;	/* PC時 */
	--header-height-sp: 60px;	/* SP時 */
}
/* ------------------------------
 サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	color: var(--main-font-color);
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.75;
	font-weight: normal;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
.site {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	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: 400 !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; }
.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; }
.nopd { padding: 0 !important; }

/* リンク */
a {
	color: var(--main-font-color);
	text-decoration: none;
	transition: opacity .3s ease-in-out;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: .7;
	}
}
/* カラー */
.gray {
	color: var(--gray-color) !important;
}
.red {
	color: var(--red-color) !important;
}
.blue {
	color: var(--blue-color) !important;
}
.orange {
	color: var(--asap-color) !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; }
.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: 70%;
	vertical-align:top;
}
/* 下付き */
sub {
	font-size: 70%;
	vertical-align:bottom;
}
/* 強調 */
em { font-style: italic; }
/* 打消し */
del,
s { 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;
	}
	/* 別ページからのアンカーリンクの頭出し調整 */
	:is(.contentsHome, .contentsTop, .contents) [id] {
		scroll-margin-top: var(--header-height-pc);
	}
}
/* ------------------------------
 サイト全体（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	html, body {
		min-width: 100%;
		max-width: 100%;
	}
	.site {
		min-width: 0;
		font-size: 1.5rem;
	}
	.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; }
	.sp_mt10 { margin-top: 10px !important; }
	.sp_mt60 { margin-top: 60px !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.2rem; }
	.small,
	.f14 { font-size: 1.3rem; }
	.f15 { font-size: 1.4rem; }
	.f16 { font-size: 1.5rem; }
	.big,
	.f18 { font-size: 1.7rem; }
	.f19 { font-size: 1.8rem; }
	.f20 { font-size: 1.9rem; }
	.f21 { font-size: 2rem; }
	.f25 { font-size: 2.3rem; }
	.f26 { font-size: 2.4rem; }
	.f27 { font-size: 2.5rem; }
	.f28 { font-size: 2.6rem; }
	.f48 { font-size: 3rem; }
	.nobr br { display: none; }
	/* PCのみインラインブロックのスマホ表示 */
	.pc_inline-block {
		display: block;
		margin-bottom: 5px;
	}
	/* spのみインラインブロック */
	.sp_inline-block {
		display: inline-block;
	}
	/* 別ページからのアンカーリンクの頭出し調整 */
	:is(.contentsHome, .contentsTop, .contents) [id] {
		scroll-margin-top: var(--header-height-sp);
	}
}

/* ------------------------------
 ヘッダー
------------------------------ */
.header {
	display: block;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 110px;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: var(--main-font-color);
	transition: background-color .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;
}
/* -- サブメニュー -- */
.headerSubMenu {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	gap: 0 20px;
	font-size: 1.5rem;
}
.headerSubMenu ul {
	display: flex;
	flex-flow: row wrap;
	gap: 0 20px;
}
.headerSubMenu ul li.association a::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 23px;
	margin: -10px 6px 0 0;
	background: url(../img/icon_association.svg) no-repeat center / cover;
	vertical-align: middle;
}
.headerSubMenu ul li.access a::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 21px;
	margin: -6px 5px 0 0;
	background: url(../img/icon_access.svg) no-repeat center / cover;
	vertical-align: middle;
}
.headerSubMenu ul li.contact a::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 17px;
	margin: -6px 6px 0 0;
	background: url(../img/icon_mail.svg) no-repeat center / cover;
	vertical-align: middle;
}
.headerSubMenu ul li.floor a::before {
	content: "";
	display: inline-block;
	width: 23px;
	height: 22px;
	margin: -5px 3px 0 0;
	background: url(../img/icon_floor.svg) no-repeat center / cover;
	vertical-align: middle;
}
/* -- 検索 -- */
.search .select_block form {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}
/* 検索窓 */
.search .select_block .searchBox {
	width: 100%;
	padding: 15px 95px 15px 20px;
	border-radius: 8px;
	background-color: #fff;
	color: var(--main-font-color);
	font-size: 1.6rem;
	border: var(--border);
}
.search .select_block .searchBox::placeholder {
	font-weight: normal;
	color: var(--gray-color);
}
.search .select_block .submit {
	position: absolute;
	width: 80px;
	height: 100%;
	background: url(../img/icon_search.svg) no-repeat center / 28px;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	cursor: pointer;
}
.search .select_block .submit::before {
	content: "";
	position: absolute;
	width: 0;
	height: 40px;
	border-left: var(--border);
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
/* -- メルマガ・お問い合わせ -- */
.headerBlock .gnav .contactMenu > li.link a,
.headerBlock .gnav .contactMenu > li.contact a {
	position: relative;
	z-index: 1;
	display: flex;
	color: #fff;
	font-weight: bold;
	background-color: var(--blue-color);
}
.headerBlock .gnav .contactMenu > li.link a {
	background-color: var(--co-color);
}
.headerBlock .gnav .contactMenu > li.link a::before,
.headerBlock .gnav .contactMenu > li.contact a::before {
	content: "";
	display: block;
	width: 30px;
	height: 22px;
	margin: 0 0 4px 0;
}
.headerBlock .gnav .contactMenu > li.link a::before {
	background: url(../img/icon_book.svg) no-repeat center / 30px 22px;
}
.headerBlock .gnav .contactMenu > li.contact a::before {
	background: url(../img/icon_mail.svg) no-repeat center / 26px 20px;
}
/* ------------------------------
 ヘッダー（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.header {
		min-width: 1240px;
		padding-left: 20px;
	}
    .headerBlock {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.slidemenu-btn,
	.btn-submenu-toggle {
		display: none !important;
	}
	/* ロゴ */
	.header .logoBox > a img {
		width: 378px;
	}
	/* グローバルナビ */
	.headerBlock .gnav {
		display: flex;
        justify-content: center;
		width: auto;
		height: 110px;
		gap: 30px;
	}
	/* グローバルナビメニュー */
	.headerBlock .gnav .headerMenu {
		display: flex;
		justify-content: center;
		gap: 0 30px;
		height: 100%;
		visibility: visible;
	}
	.headerBlock .gnav .headerMenu > li {
		display: flex;
		align-items: center;
	}
	.headerBlock .gnav .headerMenu > li > p,
	.headerBlock .gnav .headerSubMenu li a {
		display: inline-block;
		font-size: 1.5rem;
		font-weight: 500;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > p a,
	.headerBlock .gnav .headerMenu > li.search > p {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		letter-spacing: .05em;
	}
	.headerBlock .gnav .headerMenu > li > p a,
	.headerBlock .gnav .headerMenu > li.search > p {
		padding: 10px 0;
	}
	.headerBlock .gnav > ul > li > p > a:hover {
		opacity: 1;
	}
	.headerBlock .gnav > ul > li > p > a::before {
		content: "";
		position: absolute;
		bottom: 30px;
		left: 0;
		right: 100%;
		width: 100%;
		height: 3px;
		margin: auto;
		background: var(--blue-color);
		transform: translateY(-3px);
		opacity: 0;
		transition: .2s ease-in-out;
	}
	.headerBlock .gnav > ul > li.on > p > a::before,
	.headerBlock .gnav > ul > li:hover > p > a::before {
		transform: translateY(0);
		opacity: 1;
	}
	/* -- 検索 -- */
	.headerBlock .gnav .headerMenu > li.search p {
		position: relative;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: .3s ease-in-out;
	}
	.headerBlock .gnav .headerMenu > li.search p::before {
		content: "";
		display: inline-block;
		position: relative;
		width: 22px;
		height: 22px;
		background: url(../img/icon_search.svg) no-repeat center / cover;
		vertical-align: middle;
	}
	/* 検索窓 */
	.headerBlock .gnav .headerMenu > li.search .select_block {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 110px;
		left: 0;
		right: 0;
		z-index: 50;
		height: 200px;
		background-color: var(--bg-color);
		position: absolute;
		transition: .2s ease-in-out;
		visibility: hidden;
		opacity: 0;
	}
	.headerBlock .gnav > ul > li.search:hover > p {
		color: var(--blue-color);
	}
	/* -- メルマガ・お問い合わせ -- */
	.headerBlock .gnav .contactMenu {
		display: flex;
	}
	.headerBlock .gnav .contactMenu > li.link a,
	.headerBlock .gnav .contactMenu > li.contact a {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 112px;
		height: 100%;
		font-size: 1.3rem;
	}
	.headerBlock .gnav .contactMenu > li.link a::after,
	.headerBlock .gnav .contactMenu > li.contact a::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 64px;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		opacity: 0.3;
		mix-blend-mode: multiply;
		z-index: -1;
	}
	.headerBlock .gnav .contactMenu > li.link a::after {
		background-color: var(--co-color);
	}
	.headerBlock .gnav .contactMenu > li.contact a::after {
		background-color: var(--blue-color);
	}
	/* -- スマホ限定メニュー -- */
	.headerBlock .gnav .spMenu {
		display: none;
	}
}
/* ------------------------------
 プルダウンメニュー部分（PC）
------------------------------ */
.headerBlock .gnav .headerMenu > li > .pulldown ul li p a::after,
.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a p::after,
.headerBlock .gnav .spMenu > li > p > a::after {
	content: "";
	width: 16px;
	height: 10px;
	background: url(../img/icon_arrow_b.svg) no-repeat center / cover;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.headerBlock .gnav .headerMenu > li > .pulldown ul li p a[target="_blank"]::after,
.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a[target="_blank"] p::after,
.headerBlock .gnav .spMenu > li > p > a[target="_blank"]::after {
	width: 11px;
	height: 11px;
	background: url(../img/icon_blank.svg) no-repeat center / cover;
	margin: -4px 0 0 8px;
}
.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a p::after {
	position: static;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	margin-bottom: 4px;
}
.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a figure {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
	.headerBlock .gnav .headerMenu > li > .pulldown {
		display: block !important;
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 110px;
		left: 0;
		right: 0;
		width: 100%;
		padding: 48px 0 60px;
		background-color: var(--bg-color);
		transition: .2s ease-out;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .inBlock {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}
	/* -- 下層メニュー -- */
	/* 第2階層 */
	.headerBlock .gnav .headerMenu > li > .pulldown .title {
		position: relative;
		width: 100%;
		font-size: 2.8rem;
		font-weight: bold;
		line-height: 1;
		border-bottom: solid 2px var(--border-color);
		padding-bottom: 18px;
		margin-bottom: 20px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .title span {
		display: block;
		font-family: "Montserrat", sans-serif;
		font-size: 1.2rem;
		font-weight: 600;
		color: var(--blue-color);
		letter-spacing: 0.035em;
		margin-left: 4px;
		margin-bottom: 10px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .title a::after {
		content: "";
		display: inline-block;
		width: 28px;
		height: 28px;
		background: url(../img/icon_arrowbox_b_28.svg) no-repeat center / cover;
		vertical-align: middle;
		margin-left: 25px;
		margin-bottom: 5px;
	}
	/* 第3階層 */
	.headerBlock .gnav .headerMenu > li > .pulldown ul {
		display: flex;
		flex-flow: row wrap;
		gap: 0 3.947%;
		width: 100%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li {
		width: 30.702%;
		border-bottom: var(--border);
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li p {
		position: relative;
		width: 100%;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li a {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 15px 40px 15px 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown:hover,
	.headerBlock .gnav .headerMenu > li:hover > .pulldown,
	.headerBlock .gnav .headerMenu > li > .select_block:hover,
	.headerBlock .gnav .headerMenu > li:hover > .select_block {
		visibility: visible;
		opacity: 1;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul {
		display: none !important;
	}
	/* 画像あり */
	.headerBlock .gnav .headerMenu > li > .pulldown ul.inBox.w2-3 {
		width: 59.123%;
		gap: 0 3.856%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.inBox.w2-3 li {
		width: 48.072%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink {
		align-items: flex-start;
		width: 38.685%;
		gap: 0 5.668%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li {
		width: 47.166%;
		border-bottom: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a {
		flex-direction: column;
		padding: 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform .3s ease-in-out;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink > li ul {
		display: block !important;
		margin-top: 20px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink > li ul li {
		width: 100%;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a:hover {
		opacity: 1;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a:hover figure img {
		transform: scale(1.1);
	}
}
/* ------------------------------
 ヘッダー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.header {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		width: 100%;
		height: 60px;
		min-width: 100%;
	}
	.headerBlock  {
		width: 100%;
		margin: 0 auto;
	}
	/* ロゴ */
	.header .logoBlock {
		position: relative;
		top: 0;
		z-index: 1000;
		width: 100%;
	}
	.header .logoBox {
		display: flex;
		align-items: center;
		position: relative;
		z-index: 1000;
		height: 60px;
		padding-left: 3%;
		background-color: transparent;
	}
	.header .logoBox > a img {
		width: 235px;
		height: auto;
	}
	.page-open-slidemenu .header .logoBox {
		background-color: #fff;
	}
	/* 開閉メニューボタン */
	.slidemenu-btn {
		display: block;
		width: 60px;
		height: 60px;
		background-color: transparent;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1000;
		transition: .2s ease-in-out;
		cursor: pointer;
	}
	.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: 26px;
		height: 2px;
		background-color: var(--blue-color);
		transition: color .25s ease;
	}
	.header .menu-icon {
		background-color: var(--blue-color);
		top: 0;
		left: 0;
		right: 0;
		bottom: 10px;
		margin: auto;
	}
	.header .menu-icon:before,
	.header .menu-icon:after {
		content: "";
		transform-origin: 50% 50%;
	}
	.header .menu-icon:before {
		top: -6px;
		transition: transform .1s ease-out;
	}
	.header .menu-icon:after {
		bottom: -6px;
		transition: transform .1s ease-out;
	}
	/* MENU／CLOSE */
	.header .open,
	.header .close {
		font-family: "Montserrat", sans-serif;
		font-size: 0.9rem;
		font-weight: 600;
		color: var(--blue-color);
		text-align: center;
		line-height: 1;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 12px;
		margin: auto;
		transition: opacity .25s ease-in-out;
	}
	.header .open,
	.page-open-slidemenu .header .close {
		opacity: 1;
	}
	.header .close,
	.page-open-slidemenu .header .open {
		opacity: 0;
	}
	/* メニュー開いたとき */
	body.page-open-slidemenu {
		height: 100%;
		overflow: hidden;
	}
	.page-open-slidemenu .header .menu-icon {
		background-color: transparent;
	}
	.page-open-slidemenu .header .menu-icon:before,
	.page-open-slidemenu .header .menu-icon:after {
		background-color: var(--blue-color);
	}
	.page-open-slidemenu .header .menu-icon:before {
		transform: translateY(6px) rotate(45deg);
		transition: transform .25s ease-in-out;
	}
	.page-open-slidemenu .header .menu-icon:after {
		transform: translateY(-6px) rotate(-45deg);
		transition: transform .25s ease-in-out;
	}
	/* -- グローバルナビ -- */
	.headerBlock .gnav {
		display: flex;
		flex-flow: column;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		z-index: 999;
		width: 100%;
		padding: 60px 0;
		background: #f3f5f9;
		transition: opacity .15s ease-in-out, visibility 0s step-start .2s;
	}
	.headerBlock .gnav .headerMenu {
		padding-top: 100px;
		margin-bottom: 20px;
	}
	.headerBlock .gnav .headerMenu > li {
		position: relative;
		z-index: 1;
		text-align: left;
		border-bottom: var(--border);
	}
	.headerBlock .gnav .headerMenu > li:first-child {
		border-top: var(--border);
	}
	.headerBlock .gnav .headerMenu > li > p {
		position: relative;
	}
	.headerBlock .gnav .headerMenu > li > p > a {
		display: flex;
		align-items: center;
		width: 85%;
		height: 70px;
		font-size: 1.6rem;
		font-weight: normal;
		padding-left: 5%;
        line-height: 1.3;
	}
	.headerBlock .gnav .headerMenu > li > p:not(:has(.btn-submenu-toggle)) > a {
		width: 100%;
	}
	.headerBlock .gnav .headerMenu > li > p:not(:has(.btn-submenu-toggle)) > a::after {
		content: "";
		width: 70px;
		height: 70px;
		background: url(../img/icon_arrow_b_spheader.svg) no-repeat center / 18px 14px;
		position: absolute;
		right: 0;
		top: 0;
		margin: auto;
	}
	.headerBlock .gnav .headerMenu > li > p:not(:has(.btn-submenu-toggle)) > a[target="_blank"]::after {
		background: url(../img/icon_blank_spheader.svg) no-repeat center / 14px 14px;
	}
	/* メニュー開いたら固定 */
	.page-open-slidemenu .headerBlock {
		position: fixed;
		top: 0;
	}
	.page-open-slidemenu .headerBlock .gnav {
		visibility: visible;
		opacity: 1;
		overflow-y: auto;
		height: 100svh;
		max-height: 100svh;
		padding-bottom: 50px;
		transition: opacity .2s ease-in-out;
		-webkit-overflow-scrolling: touch;
	}
	/* -- トグルボタン -- */
	.btn-submenu-toggle,
	.btn_opener_month {
		display: block;
		width: 70px;
		height: 70px;
		background-color: transparent;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 10;
		cursor: pointer;
	}
	.btn-submenu-toggle::before,
	.btn-submenu-toggle::after,
	.btn_opener_month::before,
	.btn_opener_month::after {
		content: "";
		width: 16px;
		height: 2px;
		background-color: var(--blue-color);
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	.btn-submenu-toggle::after,
	.btn_opener_month::after {
		width: 2px;
		height: 16px;
		transition: opacity .2s ease-in-out;
	}
	.is-open .btn-submenu-toggle::after,
	.is-open .btn_opener_month::after {
		opacity: 0;
	}
	/* ------------------------------
	 プルダウンメニュー部分
	------------------------------ */
	.pulldown .btn-submenu-toggle, .pulldown .btn_opener_month {
		right: -5.5% !important;
		background: url(../img/icon_gnav_open_w.svg) no-repeat center center / 28px 28px;
	}
	.pulldown .is-open .btn-submenu-toggle, .pulldown .is-open .btn_opener_month {
		right: -5.5% !important;
		background: url(../img/icon_gnav_close_w.svg) no-repeat center center / 28px 28px;
	}
	.headerBlock .gnav .headerMenu > li.is-open > .pulldown {
		display: block;
		overflow: visible;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown {
		display: none;
		position: relative;
		background-color: #fff;
		border-top: var(--border);
		padding: 10px 0 15px;
		overflow: hidden;
		transition: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .title {
		display: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.inBox {
		margin-bottom: 20px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li > p > a,
	.headerBlock .gnav .spMenu > li > p > a {
		position: relative;
		display: block;
		height: auto;
		font-weight: normal;
		line-height: 1.3;
		padding: 7px 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li {
		width: 208px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li:not(:last-child) {
		margin-bottom: 20px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a figure {
		margin-bottom: 5px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a p {
		font-size: 1.6rem;
		font-weight: normal;
		line-height: 1.3;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul li p a::after,
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li a p::after,
	.headerBlock .gnav .spMenu > li > p > a::after {
		position: static;
		display: inline-block;
		vertical-align: middle;
		margin-left: 10px;
		margin-bottom: 1px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li ul {
		margin-top: 20px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul.imgLink li ul li figure {
		border: var(--border);
	}
	/* -- 検索 -- */
	.page-open-slidemenu .headerBlock .gnav .headerMenu > li.search {
		border-bottom: none;
		position: absolute;
		top: 88px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.page-open-slidemenu .headerBlock .gnav .headerMenu > li.search p {
		display: none;
	}
	.search .select_block .searchBox {
		padding: 8px calc(17.911% + 5px) 8px 12px;
	}
	.search .select_block .submit {
		width: 17.911%;
		background-size: 24px;
	}
	.search .select_block .submit::before {
		height: 30px;
	}
	/* -- メルマガ・お問い合わせ -- */
	.headerBlock .gnav .contactMenu {
		margin-bottom: 20px;
	}
	.headerBlock .gnav .contactMenu > li.link,
	.headerBlock .gnav .contactMenu > li.contact {
		border-bottom: none;
	}
	.headerBlock .gnav .contactMenu > li.link {
		margin-bottom: 10px;
	}
	.headerBlock .gnav .contactMenu > li.link a,
	.headerBlock .gnav .contactMenu > li.contact a {
		justify-content: center;
    	align-items: center;
		width: 90%;
		height: 60px;
		border-radius: 4px;
		margin: 0 auto;
	}
	.headerBlock .gnav .contactMenu > li.link a::before,
	.headerBlock .gnav .contactMenu > li.contact a::before {
		position: absolute;
		left: 7%;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.headerBlock .gnav .contactMenu > li.link a::before {
		background-size: 28px 20px;
	}
	.headerBlock .gnav .contactMenu > li.contact a::before {
		background-size: 25px 18px;
	}
	/* -- スマホ限定メニュー -- */
	.headerBlock .gnav .spMenu {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
}

/* ------------------------------
 メニューレイヤー（PC）
------------------------------ */
.menu-layer {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background-color: rgba(95, 99, 102, 1);
	mix-blend-mode: multiply;
	transition: .2s ease-in-out;
}
@media print, screen and (min-width: 768px) {
	.menu-layer.is-visivle {
		visibility: visible;
		opacity: 1;
	}
}
/* ------------------------------
 メニューレイヤー（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;
}
@media print, screen and (min-width: 768px) {
	.site,
	.contentsHome,
	.contents {
		min-width: 1240px;
	}
	.contentsHome {
		margin: 110px auto 0;
	}
	.contents {
		margin: 110px auto 100px;
	}
	.contents .inBlock {
		position: relative;
		z-index: 3;
	}
	/* サイドコンテンツ有り */
	.mainContents {
		width: 745px;
		float: left;
	}
	.sideContents {
		width: 300px;
		float: right;
	}
	/* 横幅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;
	}
	.mainContents .cms_block {
		width: 100%;
	}
}
/* ------------------------------
 コンテンツ（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;
		margin-top: 60px;
	}
	.contents {
		padding-bottom: 40px;
	}
	/* サイドコンテンツ有り */
	.mainContents {
		margin-bottom: 50px;
	}
	.inBlock .mainContents .cms_block {
		width: 100%;
		margin-left: 0;
        margin-right: 0;
	}
	/* 入力 */
	.inBlock,
	.cms_block {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	.inBlock .cms_block {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
	}
	/* 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）
------------------------------ */
.localnavi {
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 30px 35px 35px;
	margin-top: 130px;
}
/* -- 親ページタイトル -- */
.localnavi p {
	margin-bottom: 30px;
}
.localnavi p a {
	font-size: 2.2rem;
	font-weight: 500;
}
.localnavi p a::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../img/icon_arrowbox_b_24.svg) no-repeat center / cover;
	vertical-align: middle;
	margin-left: 15px;
	margin-bottom: 4px;
}
/* -- リンク -- */
.localnavi a {
	color: var(--main-font-color);
	text-decoration: none;
}
.localnavi ul {
	display: flex;
	flex-flow: row wrap;
	gap: 15px 40px;
}
.localnavi ul li {
	position: relative;
	padding-left: 0 !important;
	margin-bottom: 0 !important;
}
.localnavi ul li:not(:last-child)::before {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #bfbfbf;
	position: absolute;
	left: auto;
	right: -20px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.localnavi ul li a {
	display: block;
	font-size: 1.8rem;
	line-height: 1.5;
}
/* 現在表示しているページ */
.localnavi ul > li.on a {
	color: var(--blue-color);
	text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
	.localnavi ul > li.on a:hover {
		opacity: 1;
	}
}
/* ------------------------------
 同階層リンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.localnavi {
		padding: 20px 5%;
		margin-top: 60px;
		border-radius: 8px;
	}
	/* -- 親ページタイトル -- */
	.localnavi p {
		margin-bottom: 10px;
	}
	.localnavi p a {
		font-size: 1.8rem;
	}
	.localnavi p a::after {
		width: 22px;
		height: 22px;
		margin-left: 10px;
		margin-bottom: 3px;
	}
	/* -- リンク -- */
	.localnavi ul {
		gap: 8px 20px;
	}
	.localnavi ul li a {
		font-size: 1.6rem;
	}
	.localnavi ul li:not(:last-child)::before {
		right: -10px;
	}
}

/* ------------------------------
 パンくず（PC）
------------------------------ */
.crumb {
	position: relative;
	z-index: 999;
	margin-top: 160px;
	line-height: 14px;
}
.crumb ul {
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
}
.crumb ul li {
	font-size: 1.3rem;
	line-height: 14px;
	font-weight: 400;
}
.crumb ul li:first-child::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: -4px 6px 0 0;
	background: url(../img/icon_home.svg) no-repeat 0 0 / cover;
	vertical-align: middle;
}
.crumb ul li:not(:last-child)::after {
	content: "/";
	display: inline-block;
	margin: 0 10px;
}
.crumb ul li a {
	color: var(--main-font-color);
}
@media print, screen and (min-width: 768px) {
	.crumb {
		text-align: center;
	}
	.crumb ul {
		width: 1140px;
	}
}
/* ------------------------------
 パンくず（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.crumb {
		margin: 20px 5% 0;
	}
	.crumb ul {
		width: 100%;
		row-gap: 10px;
	}
}

/* ------------------------------
 お問い合わせ・メルマガ（PC）
------------------------------ */
.contactBlock {
	background: #0A56B7;
	background: linear-gradient(45deg, rgba(10, 86, 183, 1) 0%, rgba(33, 64, 147, 1) 100%);
	padding: 70px 0;
}
.contactBlock .inBox {
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 48px 30px 35px;
}
.contactBlock .inBox img {
	margin-bottom: 20px;
}
.contactBlock .inBox p {
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: -0.05em;
	margin-bottom: 15px;
}
.contactBlock .inBox a.tel {
	font-family: "Montserrat", sans-serif;
	font-size: 3.0rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--blue-color);
}
.contactBlock .magazine .inBox .btn a {
	background-color: var(--co-color);
}
@media print, screen and (min-width: 768px) {
	.contactBlock .inBlock {
		display: flex;
		justify-content: space-between;
	}
	.contactBlock :is(.contact, .magazine) > p {
		width: 100%;
	}
	.contactBlock .contact {
		display: flex;
		justify-content: space-between;
		flex-flow: row wrap;
		width: 65.9215%;
	}
	.contactBlock .magazine {
		display: flex;
		flex-direction: column;
		width: 31.843%;
	}
	.contactBlock .inBox {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contactBlock .contact .inBox {
		width: 48.304%;
	}
	.contactBlock .magazine .inBox {
		flex-grow: 1;
	}
}
/* ------------------------------
 お問い合わせ・メルマガ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contactBlock {
		padding: 30px 0 40px;
	}
	.contactBlock .inBlock {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
	}
	.contactBlock .inBlock .contact {
		margin-bottom: 25px;
	}
	.contactBlock .inBox {
		padding: 25px 5%;
	}
	.contactBlock .inBox:not(:last-child) {
		margin-bottom: 8px;
	}
	.contactBlock .inBox img {
		margin-bottom: 15px;
	}
	.contactBlock .inBox p {
		font-size: 1.7rem;
		margin-bottom: 8px;
	}
	.contactBlock .inBox a.tel {
		display: block;
		font-size: 2.6rem;
		line-height: 1.3;
	}
}
/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	width: 100%;
}
.footerTop {
	position: relative;
	padding: 70px 0 40px;
}
.footerTop .inBlock {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
/* 住所 */
address p {
	font-size: 1.3rem;
	line-height: 1.75;
	margin-top: 20px;
}
address a.logo {
	display: block;
}
address a.logo img {
	width: 378px;
	height: auto;
}
/* 右側のメニュー */
.footerTop .footerMenu ul li {
	position: relative;
	line-height: 1;
}
.footerTop .footerMenu ul li a {
	font-size: 1.4rem;
	font-weight: 500;
}
.footerTop .footerMenu ul li::after {
	content: "";
	display: inline-block;
    width: 14px;
    height: 9px;
    background: url(../img/icon_arrow.svg) no-repeat center / cover;
    vertical-align: middle;
    margin-left: 6px;
    margin-bottom: 2px;
}
.footerTop .footerMenu ul li:has(a[target="_blank"])::after {
    width: 11px;
    height: 11px;
    background: url(../img/icon_blank_g.svg) no-repeat center / cover;
}
/* コピーライト */
.footerBottom {
	width: 100%;
	height: 64px;
	padding: 24px 0;
	border-top: var(--border);
}
.footerBottom.flexBox {
	height: auto;
	padding-bottom: 30px;
}
.footerBottom.flexBox .ftlogo img {
	width: 256px;
}
.copyright {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	color: #828993;
	line-height: 1;
}
@media print, screen and (min-width: 768px) {
	.footerTop .flexBox {
		position: relative;
	}
	.footerTop .footerMenu ul {
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(4, auto);
		gap: 1.5em 3em;
		margin-top: 18px;
	}
	/* コピーライト */
	.footerBottom.flexBox {
		margin-top: 15px;
	}
}
/* ------------------------------
 フッター（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		height: auto;
	}
	.footerTop {
		flex-direction: column-reverse;
		padding: 25px 0;
	}
	/* 住所 */
	address a.logo {
		display: block;
	}
	address a.logo img {
		width: 281px;
		height: auto;
	}
	address p {
		font-size: 1.3rem;
		margin-top: 20px;
	}
	.footerTop .footerMenu {
		margin-bottom: 30px;
	}
	.footerTop .footerMenu ul {
		display: flex;
		flex-flow: row wrap;
		gap: 20px 25px;
	}
	/* -- コピーライト -- */
	.footerBottom {
		height: 60px;
		padding: 20px 0;
	}
	.footerBottom.flexBox {
		flex-direction: column;
		gap: 20px 0;
		height: auto;
		padding-bottom: 20px;
	}
	.copyright {
		font-size: 1.2rem;
	}
}

/* ------------------------------
 ページトップ（PC）
------------------------------ */
.js-btn-pagetop {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 70px;
	right: 2%;
	z-index: 100;
	width: 44px;
    height: 44px;
	border-radius: 5px;
	overflow: hidden;
	transition: .2s ease-in-out;
}
.js-btn-pagetop.is-show {
	visibility: visible;
	opacity: 1;
}
@media print, screen and (min-width: 768px) {
	a.js-btn-pagetop.is-show:hover {
		opacity: .7;
	}
}
/* ------------------------------
 ページトップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.js-btn-pagetop {
		bottom: 65px;
		right: 3%;
		width: 38px;
		height: 38px;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html,
	body {
		background: none;
	}
	.header {
		position: absolute;
	}
	.header .logoBox > a img {
		width: 378px;
	}
	.headerSubMenu ul > li {
		font-size: 1.5rem;
	}
	.headerBlock .gnav .headerMenu {
		gap: 0 30px;
	}
}
/* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}