@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 #333;
}
:root {
	--header-height-pc: 90px /* PC時のheaderの高さ */;
	--header-height-sp: 50px /* SP時のheaderの高さ */;
}
/* ------------------------------
 サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	background-color: #fff;
	color: #1a1a1a;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.75;
	font-weight: 400;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}
.site {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	text-align: left;
}
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: 700; }
.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; }
/* スペース */
.mt-30 { margin-top: -30px;}
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt25 { margin-top: 25px !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; }
.mb120 { margin-bottom: 120px !important; }
.mb130 { margin-bottom: 130px !important; }
.mb150 { margin-bottom: 150px !important; }
.mb200 { margin-bottom: 200px !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; }
.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: #1a1a1a;
	text-decoration: none;
	transition: .3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
	a:hover {
		opacity: .7;
	}
}
.cms_link a {
	text-decoration: none;
}
.cms_text a {
	color: #506c75;
}
a .img_hover {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
}
a .img_hover img {
	display: block;
	overflow: hidden;
	width: 100%;
	transition-duration: .3s;
}
a:hover .img_hover img {
	opacity: 1;
	overflow: hidden;
	transform: scale(1.03);
	transition-duration: .3s;
}
.contents .cms_text:not(.btn) :not(.btn) a {
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.contents a,
	.contentsWide a {
		transition: .3s ease-in-out;
	}
	.contents a:hover,
	.contentsWide a:hover {
		opacity: .5;
	}
}
/* カラー */
.green { color: #139b7d; }
.yellow { color: #fcee21; }
.red { color: #ff0000; }
/* フォントサイズ */
.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; }
.f24 { font-size: 2.4rem; }
.f25 { font-size: 2.5rem; }
.f26 { font-size: 2.6rem; }
.f28 { font-size: 2.8rem; }
.f31 { font-size: 3.1rem; }
.f32 { font-size: 3.2rem; }
.f19,.f20,.f21,.f22,.f25,.f26,.f28,.f31,.f32 { line-height: 1.4; }
/* 上付き */
sup {
	font-size: 1.3rem;
	vertical-align:top;
}
/* 下付き */
sub {
	font-size: 1.3rem;
	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;
}
.ti2c {
	padding-left: 2em;
	text-indent: -2em;
}
.ti2hc {
	padding-left: 2.5em;
	text-indent: -2.5em;
}
/* ------------------------------
 サイト全体（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.pc { display: block !important; }
	.sp { display: none !important;}
	.pc_tal { text-align: left; }
	.pc_tac { text-align: center; }
	.pc_tar { text-align: right; }
	.pc_bold { font-weight: 700;}
	.pc_nobr br { display: none; }
	/* スペース */
	.pc_mb0 { margin-bottom: 0 !important }
	.pc_mb10 { margin-bottom: 10px !important; }
	.pc_mb20 { margin-bottom: 20px !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_mb80 { margin-bottom: 80px !important; }
	.pc_mb100 { margin-bottom: 100px !important; }
	.pc_mr0 { margin-right: 0 !important; }
	.pc_mr10 { margin-right: 10px !important; }
	/* TEL Link */
	a[href^="tel:"] {
		color: #1a1a1a;
		text-decoration: none !important;
		pointer-events: none;
		cursor: default;
	}
	/* 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;}
	.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; }
	/* スペース */
	.mt25 { margin-top: 20px !important; }
	.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: 40px !important; }
	.mb80 { margin-bottom: 40px !important; }
	.mb100 { margin-bottom: 60px !important; }
	.mb120 { margin-bottom: 60px !important; }
	.mb130 { margin-bottom: 60px !important; }
	.mb150 { margin-bottom: 60px !important; }
	.mb200 { margin-bottom: 80px !important; }
	.sp_mt30 { 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,
	.mb10.sp_mb40  { margin-bottom: 40px !important; }
	.sp_mb50 { margin-bottom: 50px !important; }
	.sp_mb60 { margin-bottom: 60px !important; }
	.sp_mb80 { margin-bottom: 80px !important; }
	.sp_ml2em { margin-left: 2rem !important; }
	.sp_ml_auto { margin-left: auto !important; }
	.sp_mr0 { margin-right: 0 !important; }
	/* フォントサイズ */
	.f20 { font-size: 1.8rem; }
	.f21 { font-size: 1.8rem; }
	.f22 { font-size: 1.8rem; }
	.f24 { font-size: 2rem; }
	.f25 { font-size: 2rem; }
	.f26 { font-size: 2rem; }
	.f28 { font-size: 2rem; }
	.f31 { font-size: 2.6rem; }
	.f32 { font-size: 2.7rem; }
	.nobr br { display: none; }
	/* PCのみインラインブロックのスマホ表示 */
	.pc_inline-block {
		display: block;
		margin-bottom: 5px;
	}
	/* spのみインラインブロック */
	.sp_inline-block {
		display: inline-block;
	}
	.sp_auto {
		margin-left: auto;
		margin-right: auto;
	}
}
/* ------------------------------
 ヘッダー
------------------------------ */
.header {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.header-block {
	margin: 0 auto;
	text-align: left;
}
.header-block a {
	color: #1a1a1a;
}
/* ロゴ */
.header-block_logo a {
	display: flex;
	align-items: center;
	column-gap: 25px;
	position: relative;
	text-decoration: none;
}
.header-block_logo img {
	vertical-align: middle;
}
.header-block_logo:hover img {
	opacity: 1;
}
.header-block_logo p {
	color: #1a1a1a;
	font-size: 1.6rem;
	line-height: 20px;
	font-weight: 700;
}
.header-block_logo p span {
	font-size: 1.3rem;
	line-height: 20px;
	font-weight: 500;
	color: #666666;
}
.visually-hidden {
	display: block !important;
	overflow: hidden !important;
	visibility: visible !important;
	opacity: 0 !important;
	position: fixed !important;
	top: 0px !important;
	left: 0px !important;
	width: 0px !important;
	height: 0px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}
/* お問い合わせ */
.header-block .gnav .contact a {
	display: flex;
	align-items: center;
	height: 50px;
	min-width: 150px;
	padding: 5px 40px 5px 22px;
	background: #4cd3af;
	background: url(../../img/pcb/icon_mail.svg) no-repeat right 20px center / 16px 12px,
				linear-gradient(90deg, #142860 0%, #2baa8b 100%);
	border-radius: 5px;
	font-weight: bold;
	color: #fff;
}

/* ------------------------------
 ヘッダー（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.header {
		max-width: 100%;
		min-width: 1240px;
	}
	.slidemenu-btn,
	.btn-submenu-toggle {
		display: none !important;
	}
	.header-block {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		width: 100%;
		height: 90px;
		margin: 0 auto;
		background-color: rgba(255, 255, 255, .7);
		padding: 20px 1.9%;
	}
	/* ロゴ */
	.header-block_logo img {
		width: 149px;
	}
	/* グローバルナビ */
	.gnav {
		width: 100%;
		display: flex;
		align-items: center;
		column-gap: 37px;
	}
	.header-block .gnav .header-menu {
		display: flex;
		justify-content: center;
		column-gap: 32px;
		visibility: visible;
	}
	.header-block .gnav .header-menu > li {
		display: flex;
		align-items: center;
		font-weight: 700;
	}
	.header-block .gnav .header-menu > li a {
		display: flex;
		align-items: center;
		position: relative;
		height: 100%;
		color: #1a1a1a;
		line-height: 1;
		text-decoration: none;
		white-space: nowrap;
		transition: .3s ease-in-out;
	}
	.header-block .gnav .header-menu > li a:hover {
		color: #2baa8b;
		opacity: 1;
	}
	.header-block .gnav .header-menu > li a::after {
		content: "";
		display: block;
		opacity: 0;
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: -8px;
		left: 0;
		right: 0;
		margin: 0 auto;
		border-radius: 3px;
		background-color: #2baa8b;
		transition: .3s ease-in-out;
	}
	.header-block .gnav .header-menu > li:hover a::after,
	.header-block .gnav .header-menu > li:focus a::after,
	.header-block .gnav .header-menu > li.on a::after {
		opacity: 1;
	}
	.header-navigation {
		display: flex;
	}
}

/* ------------------------------
 ヘッダー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.header {
		min-width: 100%;
	}
	.header-block {
		display: flex;
		align-items: center;
		position: relative;
		top: 0;
		z-index: 10;
		height: var(--header-height-sp);
		margin: 0 auto;
		background-color: #fff;
		transition: 0s all !important;
	}
	/* ロゴ */
	.header-block_logo {
		display: flex;
		align-items: center;
		position: relative;
		z-index: 99;
		padding-left: 5%;
	}
	
	.header-block_logo a {
		column-gap: 8px;
		margin-top: 0;
	}
	.header-block_logo img {
		width: 109px;
	}
	.header-block_logo p {
		font-size: 1.2rem;
		line-height: 18px;
	}
	.header-block_logo p span {
		font-size: 1rem;
	}
	/* グローバルナビ 開閉ボタン */
	.slidemenu-btn {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 100;
		width: 50px;
		height: var(--header-height-sp);
		background: linear-gradient(90deg, #142860 0%, #2baa8b 100%);
		transition: .3s ease-in-out;
		cursor: pointer;
	}
	.menu-icon,
	.menu-icon:before,
	.menu-icon:after {
		display: block;
		position: absolute;
		width: 28px;
		height: 2px;
		background-color: #fff;
	}
	.menu-icon:before,
	.menu-icon:after {
		transition: color .25s ease;
	}
	body.page-open-slidemenu {
		height: 100%;
		overflow: hidden;
	}
	.page-open-slidemenu .slidemenu-btn {
		background-color: #fff;
	}
	.page-open-slidemenu .menu-icon::before,
	.page-open-slidemenu .menu-icon::after {
		background-color: #fff;
	}
	.menu-icon:before,
	.menu-icon:after {
		content: "";
		transform-origin: 50% 50%;
	}
	.menu-icon {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	.menu-icon:before {
		top: -9px;
		transition: transform .05s ease-out;
	}
	.menu-icon:after {
		bottom: -9px;
		transition: transform .05s ease-out;
	}
	.page-open-slidemenu .menu-icon {
		background-color: transparent !important;
	}
	.page-open-slidemenu .menu-icon:before {
		transform: translateY(9px) rotate(45deg);
	}
	.page-open-slidemenu .menu-icon:after {
		transform: translateY(-9px) rotate(-45deg);
	}
	/* グローバルナビ */
	.header-block .gnav {
		display: flex;
		flex-flow: column;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 89px 5% 50px;
		background-color: #fff;
		transition: .3s ease-in-out;
	}
	/* 開いたら固定 */
	.page-open-slidemenu .header-block_logo {
		background-color: #fff;
	}
	.page-open-slidemenu .header-block_logo::before {
		opacity: 1;
	}
	.page-open-slidemenu .header-block .gnav {
		visibility: visible;
		opacity: 1;
		overflow-y: auto;
		max-height: 100svh;
		height: 100svh;
		transition: .3s ease-in-out;
		-webkit-overflow-scrolling: touch;
	}
	.header-block .gnav .header-menu > li {
		position: relative;
		border-bottom: 1px solid rgba(221,221,221,1);
		transition: .1s ease;
	}
	.header-block .gnav .header-menu > li a {
		display: block;
		line-height: 1;
		padding: 20px 0;
		font-weight: 700;
		text-decoration: none;
	}
	/* お問い合わせ */
	.header-block .gnav .contact a {
		height: 70px;
		margin-top: 35px;
		background: url(../../img/pcb/icon_mail.svg) no-repeat right 20px center / 20px 15px,
					linear-gradient(90deg, #142860 0%, #2baa8b 100%);
		border-radius: 8px;
		font-size: 1.7rem;
	}
}

/* ------------------------------
 コンテンツ
------------------------------ */
.contents {
	position: relative;
	width: 100%;
	text-align: left;
}

/* 横幅1140px */
.inBlock {
	text-align: left;
}
/* 入力 */
.contents > .inBlock {
	position: relative;
}
.contents > .inBlock > *:last-child {
	margin-bottom: 0;
}
/* ------------------------------
 コンテンツ（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	html,
	body {
		background-color: #fff;
	}
	.site {
		min-width: 1240px;
		margin: 0 auto;
		background-color: #fff;
	}
	.contents {
		line-height: 2;
		min-width: 1240px;
	}
	/* 横幅1140px */
	.inBlock {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.contents .inBlock::after {
		content: "";
		display: block;
		clear: both;
	}
	.cms_block {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	.cms_block.wide {
		width: 100%;
	}
	.cms_block.wide > *:not(.auto) {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* ------------------------------
 コンテンツ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.site {
		min-width: 320px;
	}
	.page-open-slidemenu {
		overflow: hidden;
	}
	.contents {
		min-width: 320px;
	}
	/* 入力 */
	.contents > .inBlock,
	.cms_block {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	/* Wideの場合 */
	.cms_block.wide {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.cms_block.wide > * {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	padding: 60px 0 45px;
	background-color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
}
/* 住所 */
.guroupList {
	margin-bottom: 20px;
	font-weight: bold;
}
.guroupList dt {
	min-width: 145px;
	padding-left: 10px;
	position: relative;
}
.guroupList dt::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 0;
	top: .7em;
	margin-right: 3px;
	background-color: #139b7d;
	border-radius: 50%;
	vertical-align: middle;
}
/* ナビ */
.footerNav ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 35px;
}
.footerNav ul li a {
	font-size: 1.3rem;
	color: #7a7d80;
}
.footerNav ul li {
	position: relative;
}
.footerNav ul li:not(:last-child)::after {
	content: "";
	width: 1px;
	position: absolute;
	top: .3em;
	bottom: .3em;
	right: -18px;
	background-color: #7a7d80;
}
.footerNav ul li a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 0 4px .3em;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../img/pcb/icon_blank.svg);
  background: #7a7d80;
  vertical-align: middle;
}
/* コピーライト */
.copyright {
	color: #bbbdbf;
	font-family: "Inter", sans-serif;
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 600;
}
@media print, screen and (min-width: 768px) {
	/* 住所 */
	.guroupList {
		display: flex;
		flex-wrap: wrap;
		gap: 5px 10px;
	}
	.guroupList dt {
		width: 150px;
	}
	.guroupList dd {
		width: calc(100% - (10px + 150px));
	}
	/* ナビ */
	.footerNav {
		width: 50%;
	}
	/* コピーライト */
	.copyright {
		width: 50%;
		text-align: right;
	}
}

/* ------------------------------
 フッター（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		padding: 30px 0 90px;
	}
	.footer .inBlock {
		padding-left: 5%;
		padding-right: 5%;
		font-size: 1.5rem;
	}
	/* ナビ */
	.footerNav {
		margin-bottom: 20px;
	}
	/* コピーライト */
	.copyright {
		text-align: center;
	}
}
/* ------------------------------
 ポップアップ（PC）
------------------------------ */
.popupBox {
	min-width: 270px;
	position: fixed;
	right: 4%;
	bottom: calc(10px + 5vh);
	z-index: 100;
	background-color: #fff;
	border: solid 6px #fff000;
	border-radius: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	color: #102735;
	animation: fadeIn .5s ease-in 1s 1 forwards;
	opacity: 0;
}
.popupBox a {
	display: block;
	padding: 15px 20px;
}
.popupBox .imgBox {
	width: 66px;
	margin-right: 10px;
}
.textBox {
	width: cacl(100% - (66px + 10px));
}
/* 閉じるボタン */
.close-btn {
	display: block;
	width: 26px;
	height: 26px;
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
	border-radius: 100%;
	background-color: #102735;
	cursor: pointer;
}
.close-btn::before,
.close-btn::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	width: 11px;
	height: 2px;
	background-color: #fff;
}
.close-btn::before {
	transform: rotate(45deg);
}
.close-btn::after {
	transform: rotate(-45deg);
}
/* input隠し */
#popupToggle {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}
/* ボタンクリックで消える */
#popupToggle:not(:checked) ~ .popupBox {
	display: none;
}
/* 表示の動き */
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@media print, screen and (min-width: 768px) {
}
/* ------------------------------
 ポップアップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.popupBox {
		left: 5%;
		right: 5%;
		bottom: 0;
		z-index: 100;
		border-bottom: none;
		border-radius: 10px 10px 0 0;
		font-size: 1.5rem;
	}
	.popupBox a {
		padding: 12px 20px;
	}
	.popupBox .imgBox {
		width: 48px;
		margin-top: -24px;
	}
	.textBox {
		width: cacl(100% - (48px + 10px));
	}
}
/* ------------------------------
 ページトップ（PC）
------------------------------ */
/* -- PAGE TOP -- */
.js-btn-pagetop {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: calc(150px + 7vh);
	right: 4%;
	z-index: 900;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background: #8fa3aa;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.js-btn-pagetop span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
}
.js-btn-pagetop span::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 9px;
	margin: 0 auto;
	background: url(../../img/pcb/icon_arrow_w.svg) no-repeat 0 0 / cover;
}
.js-btn-pagetop.is-show {
	visibility: visible;
	opacity: 1;
}
/* ------------------------------
 ページトップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* -- PAGE TOP -- */
	.js-btn-pagetop {
		right: 5%;
		bottom: 95px;
		width: 30px;
		height: 30px;
	}
	.js-btn-pagetop span {
		width: 30px;
		height: 30px;
	}
	.js-btn-pagetop span::before {
		width: 9px;
		height: 5px;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	.header {
		position: relative;
	}
	.contents {
		margin-top: 90px;
	}
	.popupBox {
		position: absolute;
		z-index: 999;
	}
}
@media print {
	body {
		-webkit-print-color-adjust: exact;
	}
	html,
	body {
		width: 1600px;
		margin: 0;
	}
	@page {
		margin: 0;
		size: 11in 14.028in;
	}
	@page :left {
		margin: 0;
	}
	@page :right {
		margin: 0;
	}
	@page :first {
		margin-top: 0;
	}
}

/* 余白 */
@page {
	margin: 9.7mm 9.7mm;
}