@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: #004da0;
	--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: 100px;	/* 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; }
.mb100 { margin-bottom: 100px !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(--blue-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; }
.f22 { font-size: 2.2rem; }
.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; }
	.mb100 { 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; }
	.f22 { 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);
	}
}
/* ------------------------------
 マージン
------------------------------ */
.box_block {
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: auto;
}
.box_block:last-child,
.box_text:last-child,
.box_image:last-child {
	margin-bottom: 0 !important;
}
.box_image {
	margin-bottom: 40px;
}
.box_text {
	margin-bottom: 40px;
}
/* ------------------------------
 マージン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.box_block {
		margin-bottom: 40px;
	}
	.box_image {
		text-align: center;
		margin-bottom: 25px;
	}
	.box_image .box_caption_t,
	.box_image .box_caption_b {
		text-align: left;
	}
	.box_text {
		margin-bottom: 25px;
	}
}
/* ------------------------------
 ヘッダー
------------------------------ */
.header {
	display: block;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100px;
	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;
}

/* ------------------------------
 ヘッダー（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.header {
		min-width: 1240px;
		padding-left: 30px;
		padding-right: 40px;
	}
    .headerBlock {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.slidemenu-btn,
	.btn-submenu-toggle {
		display: none !important;
	}
	/* ロゴ */
	.header .logoBox > a img {
		width: 235px;
	}
	/* グローバルナビ */
	.headerBlock .gnav {
		height: 100px;
	}
	/* グローバルナビメニュー */
	.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 {
		display: inline-block;
		font-size: 1.5rem;
		font-weight: 500;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > p a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		letter-spacing: .05em;
	}
	.headerBlock .gnav .headerMenu > li > p a {
		padding: 10px 0;
	}
	.headerBlock .gnav > ul > li.on > p > a {
		color: var(--blue-color);
	}
	.headerBlock .gnav > ul > li > p > a:hover {
		opacity: 1;
		color: var(--blue-color);
	}
	.headerBlock .gnav > ul > li > p > a::before {
		content: "";
		position: absolute;
		bottom: 25px;
		left: 0;
		right: 0;
		width: 8px;
		height: 8px;
		margin: auto;
		border-radius: 50%;
		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 .spMenu {
		display: none;
	}
}
/* ------------------------------
 プルダウンメニュー部分（PC）
------------------------------ */
.headerBlock .gnav .spMenu > li > p > a::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 8px;
	height: 8px;
	border-top: solid 1px #004da0;
	border-right: solid 1px #004da0;
	transform: rotate(45deg);
	vertical-align: 1px;
}
.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;
}
/* ------------------------------
 ヘッダー（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: #fff;
	}
	.header .logoBox > a img {
		width: 154px;
		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: "Inter", sans-serif;
		font-size: 0.9rem;
		font-weight: 600;
		text-align: center;
		line-height: 1;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 12px;
		margin: auto;
		transition: opacity .25s ease-in-out;
		color: var(--main-font-color);
	}
	.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 {
		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 > a {
		width: 100%;
		position: relative;
	}
	.headerBlock .gnav .headerMenu > li > p > a::after {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		position: absolute;
		right: 5%;
		top: 0;
		bottom: 0;
		margin: auto;
		border-top: solid 2px #004da0;
		border-right: solid 2px #004da0;
		transform: rotate(45deg);
	}
	/* メニュー開いたら固定 */
	.page-open-slidemenu .headerBlock {
		position: fixed;
		top: 0;
	}
	.page-open-slidemenu .headerBlock .gnav {
		visibility: visible;
		opacity: 1;
		overflow-y: auto;
		height: 100dvh;
		max-height: 100dvh;
		padding-bottom: 50px;
		transition: opacity .2s ease-in-out;
		-webkit-overflow-scrolling: touch;
	}
	/* -- スマホ限定メニュー -- */
	.headerBlock .gnav .spMenu {
		display: block;
		width: 90%;
		margin: 0 auto;
		font-size: 1.4rem;
	}
}

/* ------------------------------
 メニューレイヤー（PC）
------------------------------ */
.menu-layer {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	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: 100px auto 150px;
	}
	.contents {
		margin: 100px auto 180px;
		padding-top: 60px;
	}
	.contents .inBlock {
		position: relative;
		z-index: 3;
	}
	/* 横幅1140px */
	.inBlock {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.contents .inBlock::after {
		content: "";
		display: block;
		clear: both;
	}
	/* 横幅1920px */
	.box_block {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.box_block.wide {
		width: 100%;
	}
	.wide > * {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.mainContents .box_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;
	}
	.contentsHome {
		padding-bottom: 90px;
	}
	.contents {
		padding-top: 40px;
    	padding-bottom: 90px;
	}
	/* 入力 */
	.inBlock,
	.box_block {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	.inBlock .box_block {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
	}
	/* Wideの場合 */
	.box_block.wide {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.box_block.wide > *:not(.wide) {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	width: 100%;
	color: #808080;
}
.footer a {
	color: #808080;
}
.footerTop {
	position: relative;
	padding: 50px 0 130px;
	background-color: #ecebe8;
}
.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: 10px;
}
address a.logo {
	display: block;
	font-weight: bold;
	font-size: 1.8rem;
}
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: 600;
}
.footerTop .footerMenu ul li::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: auto 0;
	border-top: solid 1px #808080;
	border-right: solid 1px #808080;
	transform: rotate(45deg);
	vertical-align: 2px;
	margin-left: 5px;
}
.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%;
	padding: 14px 0;
	background-color: #e3e2dd;
}
.copyright {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	
	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(2, auto);
		gap: 1.5em 4.5em;
		margin-top: 18px;
	}
}
/* ------------------------------
 フッター（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		height: auto;
	}
	.footerTop {
		padding: 40px 0 30px;
	}
	.footerTop .flexBox {
		flex-direction: column-reverse;
	}
	/* 住所 */
	address a.logo {
		display: block;
		font-size: 1.5rem;
	}
	address p {
		font-size: 1.3rem;
		margin-top: 5px;
	}
	.footerTop .footerMenu {
		margin-bottom: 80px;
	}
	.footerTop .footerMenu ul {
		display: flex;
		flex-flow: row wrap;
		gap: 20px 25px;
	}
	.footerTop .footerMenu ul li a {
		font-size: 1.3rem;
		font-weight: 500;
	}
	.footerTop .footerMenu ul li::after {
		vertical-align: 1px;
		margin-left: 4px;
	}
	/* -- コピーライト -- */
	.footerBottom {
		padding: 10px 0;
	}
	.copyright {
		font-size: 1.1rem;
	}
}

/* ------------------------------
 ページトップ（PC）
------------------------------ */
.js-btn-pagetop {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 20px;
  	right: 30px;
	z-index: 100;
	width: 70px;
    height: 70px;
	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: 10px;
		right: 3%;
		width: 40px;
		height: 40px;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html,
	body {
		background: none;
	}
	.header {
		position: absolute;
	}
	.header .logoBox > a img {
		width: 235px;
	}
	.headerBlock .gnav .headerMenu {
		gap: 0 30px;
	}
}
/* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}