@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 #000;
}

/* ------------------------------
 サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	color: #000;
	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%;
	background-color: #fff;
}
.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: bold; }
.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; }
.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: #000;
	text-decoration: none;
	transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.7;
	}
}
/* カラー */
.red { color: #D64040 !important; }
.gray { color: #808080 !important; }
.green { color: #007A46 !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: 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: #000;
		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.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; }
	.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;
	}
}
/* ------------------------------
 ヘッダー（PC）
------------------------------ */
.header {
	display: block;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 110px;
	background-color: #fff;
	border-bottom: solid 1px #e3edf1;
	margin: 0;
	padding: 0;
	transition: background-color 0.2s ease-in-out;
}
.headerBlock {
	width: 100%;
	height: 100%;
	text-align: left;
}
.header a {
	color: #000;
}
.logoBox > a {
	display: block;
	width: 350px;
	height: auto;
}
.logoBox > a img {
	width: 100%;
	height: 100%;
}
/* -- リンク -- */
.headerBlock .gnav .order1 > li > p {
	width: 100%;
	height: 100%;
}
.headerBlock .gnav .order1 > li > p > a {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 0 3px;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
	font-weight: bold;
	color: #007a46;
	background-color: #ecf3f6;
}
.headerBlock .gnav .order1 > li.contact > p > a {
	color: #fff;
	background-color: #007a46;
}
.headerBlock .gnav .order1 > li > p > a::before {
    content: "";
	display: inline-block;
	width: 14px;
	height: 18px;
	background: url(../img/icon_recruit.svg) no-repeat center / cover;
}
.headerBlock .gnav .order1 > li.access > p > a::before {
	background: url(../img/icon_access.svg) no-repeat center / cover;
}
.headerBlock .gnav .order1 > li.contact > p > a::before {
	background: url(../img/icon_contact.svg) no-repeat center / cover;
}
.headerBlock .gnav .order1 > li.official > p > a::before {
	width: 18px;
	background: url(../img/icon_official.svg) no-repeat center / cover;
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@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;
	}
	/*-- グローバルナビ --*/
	.headerBlock .gnav {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
        justify-content: space-between;
		width: auto;
		height: 100%;
	}
	/* グローバルナビメニュー */
	.headerBlock .gnav .headerMenu {
		display: flex;
		justify-content: center;
		height: 46px;
		visibility: visible;
		margin-right: 20px;
	}
	.headerBlock .gnav .headerMenu > li {
		position: relative;
		display: flex;
		align-items: center;
	}
	.headerBlock .gnav .headerMenu > li:not(:first-child) {
		margin-left: 35px;
	}
	.headerBlock .gnav .headerMenu > li > p {
		width: 100%;
		height: 100%;
	}
	.headerBlock .gnav .headerMenu > li > p a {
		position: relative;
		display: flex;
		justify-content: center;
		width: 100%;
		height: 100%;
		font-size: 1.7rem;
		font-weight: bold;
		letter-spacing: 0.05em;
	}
	.headerBlock .gnav > .headerMenu > li > p > a:hover {
		opacity: 1;
	}
	.headerBlock .gnav > .headerMenu > li > p > a::before {
		content: "";
		position: absolute;
		left: 0;
		right: 100%;
		bottom: 0;
		width: 100%;
		height: 4px;
		background-color: #007a46;
		border-radius: 4px 4px 0 0;
		transform: scale(1, 0);
		transform-origin: center bottom;
		transition: transform 0.2s ease-in-out;
	}
	.headerBlock .gnav > .headerMenu > li.on > p > a::before,
	.headerBlock .gnav > .headerMenu > li:hover > p > a::before {
		transform: scale(1, 1);
	}
	.headerBlock .gnav > .headerMenu > li:not(:last-child) > p > a::after {
		content: "";
		position: absolute;
		width: 5px;
		height: 5px;
		background-color: #b4cfda;
		border-radius: 100%;
        top: 14px;
		right: -20px;
	}
	/* -- リンク -- */
	.headerBlock .gnav .order1 {
        display: flex;
		justify-content: flex-end;
        width: 100%;
		height: 50px;
    }
	.headerBlock .gnav .order1 > li {
		width: 140px;
	}
	.headerBlock .gnav .order1 > li:not(:last-child) {
        border-right: solid 1px #fff;
    }
	.headerBlock .gnav .order1 > li.official {
		width: 218px;
		border-bottom-left-radius: 10px;
		overflow: hidden;
	}
}
/* ------------------------------
 プルダウンメニュー部分（PC）
------------------------------ */
/* -- 下層メニュー -- */
.headerBlock .gnav .headerMenu > li > .pulldown li:not(:last-child) {
	border-bottom: dotted 1px #d0e1e8;
}
.headerBlock .gnav .headerMenu > li > .pulldown li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 23px 20px 23px 40px;
}
.headerBlock .gnav .headerMenu > li > .pulldown li a::before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	background-color: #007a46;
	border-radius: 100%;
	top: calc(23px + 0.6em);
	left: 25px;
}
@media print, screen and (min-width: 768px) {
	.headerBlock .gnav .headerMenu > li > .pulldown {
		display: block !important;
        width: 100%;
        min-width: 280px;
        background-color: #f6f9fa;
		border-radius: 0 0 18px 18px;
        position: absolute;
        top: 47px;
        left: 0;
		right: 0;
        transition: 0.2s ease-out;
		visibility: hidden;
        opacity: 0;
	}
	/* -- 下層メニュー -- */
	.headerBlock .gnav .headerMenu > li > .pulldown:hover,
	.headerBlock .gnav .headerMenu > li:hover > .pulldown {
		visibility: visible;
		opacity: 1;
	}
}
/* ------------------------------
 スマホ用コード（ヘッダ）
------------------------------ */
@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;
	}
	/* ロゴ */
	.logoBlock {
		z-index: 1000;
		width: 100%;
		top: 0;
		position: relative;
	}
	.header .logoBox {
		position: relative;
		display: flex;
		align-items: center;
		height: 60px;
		background-color: transparent;
		padding-left: 3%;
		z-index: 1000;
	}
	.page-open-slidemenu .header .logoBox {
		background-color: #fff;
		box-shadow: rgba(23, 144, 188, 0.08) 0 0 7px 0;
	}
	.logoBox > a {
		width: 205px;
		height: auto;
	}
	/* 開閉メニューボタン */
	.slidemenu-btn {
		display: block;
		width: 38px;
		height: 38px;
		background-color: #007A46;
		border-radius: 100%;
		position: absolute;
		top: 10px;
		right: 3%;
		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: 16px;
		height: 2px;
		background-color: #fff;
		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:before,
	.page-open-slidemenu .header .menu-icon:after {
		background-color: #fff;
	}
	.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 {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background-color: transparent;
	}
	.header .menu-icon:before {
		top: -3px;
		-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: -3px;
		-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(3px) rotate(45deg);
		transform: translateY(3px) 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(-3px) rotate(-45deg);
		transform: translateY(-3px) 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 150px;
		background: #ecf3f6;
		opacity: 0;
		visibility: hidden;
		display: flex;
		flex-flow: column;
	}
	/* 開いたら固定 */
	.page-open-slidemenu .headerBlock {
		position: fixed;
		top: 0;
	}
	.page-open-slidemenu .headerBlock .gnav {
		height: 100vh;
		max-height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: visible;
		opacity: 1;
		transition: opacity 0.2s ease-in-out;
	}
	.headerBlock .gnav .headerMenu {
		background-color: #f6f9fa;
		margin-bottom: 30px;
	}
	.page-open-slidemenu .headerBlock .gnav .headerMenu > li {
		position: relative;
		text-align: left;
		z-index: 1;
	}
	.headerBlock .gnav .headerMenu > li > p {
		position: relative;
	}
	.headerBlock .gnav .headerMenu > li > p > a {
		display: flex;
		align-items: center;
		width: 85%;
		height: 68px;
        font-size: 1.6rem;
		font-weight: 500;
        line-height: 1.3;
		padding-left: 5%;
	}
	.headerBlock .gnav .headerMenu > li  {
		border-bottom: 1px dotted #d0e1e8;
	}
	/* -- リンク -- */
	.headerBlock .gnav .order1 {
		display: flex;
		flex-direction: column;
		gap: 10px 0;
		width: 64%;
		margin-left: auto;
		margin-right: auto;
	}
	.headerBlock .gnav .order1 > li > p > a {
		position: relative;
		min-height: 56px;
		background-color: #fff;
		border-radius: 30px;
	}
	.headerBlock .gnav .order1 > li.contact > p > a {
		color: #fff;
		background-color: #007a46;
	}
	.headerBlock .gnav .order1 > li.official > p > a {
		padding-left: 20px;
	}
	.headerBlock .gnav .order1 > li > p > a::before {
		width: 16px;
		height: 21px;
		position: absolute;
		left: 25px;
	}
	/* ------------------------------
	 プルダウンメニュー部分
	------------------------------ */
	.headerBlock .gnav .headerMenu > li > .pulldown {
		position: relative;
		display: none;
		background-color: #fff;
		border-top: 1px dotted #d0e1e8;
		overflow: hidden;
		transition: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown .title {
		display: none;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul {
		margin-bottom: -1px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li {
		border-bottom: dotted 1px #d0e1e8;
	}
	.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: 68px;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 1.3;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul {
		display: none;
		padding-bottom: 20px;
		margin-bottom: 0;
	}
	.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: 15px;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown ul > li ul li a::before {
		content: "●";
		position: absolute;
		font-size: 0.9rem;
		color: #6A93A1;
		left: 0;
		top: 7px;
	}
	/* トグルボタン */
	.btn-submenu-toggle {
		display: block;
		width: 28px;
		height: 28px;
		background: transparent;
		position: absolute;
		top: 0;
        bottom: 0;
        right: 5%;
        margin: auto;
		z-index: 10;
		transition: 0.2s ease-in-out;
		cursor: pointer;
	}
	.btn-submenu-toggle::before,
	.btn-submenu-toggle::after {
        content: "";
        background-color: #007a46;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        transition: 0.2s ease-in-out;
    }
	.btn-submenu-toggle::before {
        width: 14px;
        height: 2px;
    }
	.btn-submenu-toggle::after {
        width: 2px;
        height: 14px;
    }
	.headerBlock .gnav .headerMenu > li p.is-open > .btn-submenu-toggle::after {
		opacity: 0;
	}
	.headerBlock .gnav .headerMenu > li > .pulldown li a {
		padding: 20px 5% 20px calc(5% + 15px);
	}
	.headerBlock .gnav .headerMenu > li > .pulldown li a::before {
		top: calc(20px + 0.6em);
		left: 20px;
	}
	.headerBlock .gnav .headerMenu > li.is-open > .pulldown {
		display: block;
		overflow: visible;
	}
}
/* ------------------------------
 メニューレイヤー（PC）
------------------------------ */
.menu-layer {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: 0.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 {
		min-width: 1240px;
	}
	.contentsHome,
	.contents {
		min-width: 1240px;
	}
	.contentsHome {
		margin: 110px auto 0;
	}
	.contents {
		margin: 110px auto 0;
		padding-bottom: 160px;
	}
	/* サイドコンテンツ有り */
	.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%;
	}
	.cms_block.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;
	}
	.contents {
		padding: 60px 0 90px;
	}
	/* サイドコンテンツ有り */
	.mainContents {
		margin-bottom: 50px;
	}
	.sideContents {
		margin-left: -6%;
		margin-right: -6%;
	}
	.inBlock .mainContents .cms_block {
		width: 100%;
		margin-left: 0;
        margin-right: 0;
	}
	/* 入力 */
	.inBlock {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	.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 > *:not(.wide) {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}
/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	position: relative;
	width: 100%;
	height: 480px;
	text-align: center;
	background-color: #fff;
	border-top: solid 1px #e3edf1;
	margin: 0 auto;
	z-index: 1;
}
.footerTop {
	height: calc(100% - 58px);
	padding: 120px 0 30px;
}
.footerTop .inBlock {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.footerTop .logoBox > a {
	display: block;
	width: 386px;
    margin-bottom: 20px;
}
/* 右側のメニュー */
.footerTop ul {
	display: flex;
	flex-flow: row wrap;
}
.footerTop .footerMenu {
	width: 470px;
}
/* アクセス・お問合せリンク */
.footerTop .footerMenu ul:first-child {
	gap: 0 2.12%;
}
.footerTop .footerMenu ul li.btn {
	width: 48.937%;
}
.footerTop .footerMenu ul li.btn a {
	justify-content: center;
	width: 100%;
	min-width: unset;
	min-height: 70px;
	letter-spacing: 0.030em;
	background-color: #007a46;
	padding: 10px 55px;
}
.footerTop .footerMenu ul li.btn a::before {
	content: none;
}
.footerTop .footerMenu ul li.btn a::after {
    width: 20px;
    height: 24px;
    left: 30px;
    right: auto;
    mask-image: unset;
}
.footerTop .footerMenu ul li.access a::after {
	background: url(../img/icon_access_footer.svg) no-repeat center / cover;
}
.footerTop .footerMenu ul li.contact a::after {
	background: url(../img/icon_contact_footer.svg) no-repeat center / cover;
}
/* 普通のリンク */
.footerTop .footerMenu ul:last-child {
	gap: 5px 20px;
}
.footerTop .footerMenu ul:last-child li {
	position: relative;
	padding-left: 15px;
	line-height: 1.5;
}
.footerTop .footerMenu ul:last-child li::before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	background-color: #007a46;
	border-radius: 100%;
	top: 0.5em;
	left: 0;
	margin: auto;
}
/* 下のメニュー */
.footerTop .footerSubMenu ul {
	gap: 20px;
}
.footerTop .footerSubMenu ul li a {
	font-size: 1.4rem;
}
/* -- コピーライト -- */
.footerBottom {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 58px;
	background-color: #007a46;
	padding: 22px 100px;
}
.copyright {
	font-family: 'Roboto', sans-serif;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1;
	text-align: right;
}
/* 下層のみ背景イラスト */
.contents + .footer::before {
	content: "";
	position: absolute;
	width: 350px;
	height: 263px;
	background: url(../img/bg_footer.png) no-repeat center / cover;
	top: -170px;
	left: calc(50% - 1140px / 2 - 357px);
	z-index: -1;
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	.footerTop .footerMenu ul:last-child {
		flex-flow: column wrap;
		height: 95px;
	}
}
/* ------------------------------
 スマホ用コード（フッタ）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		height: auto;
	}
	.footerTop {
		height: auto;
		padding: 55px 0 20px;
	}
	.footerTop .inBlock {
		gap: 35px 0;
	}
	.footerTop .inBlock .flexBox {
		gap: 45px 0;
	}
	.footer .logoBox {
        height: auto;
        padding-left: 0;
		margin-bottom: 15px;
        z-index: auto;
    }
	.footer .logoBox a {
		width: 100%;
		max-width: 335px;
	}
	.footerTop .footerMenu {
		width: auto;
	}
	.footerTop .footerMenu ul:last-child {
		gap: 0 30px;
	}
	.footerTop .footerMenu ul li.btn a {
		min-height: 56px;
		padding: 5px 40px;
	}
	.footerTop .footerMenu ul li.btn a::after {
		width: 18px;
		height: 22px;
		left: 20px;
	}
	.footerTop .footerSubMenu ul {
		gap: 0px 15px;
	}
	/* -- コピーライト -- */
	.footerBottom {
		justify-content: flex-start;
		height: 57px;
		padding: 23px 25px 18px;
	}
	.copyright {
		font-size: 1.2rem;
	}	
	/* 下層のみ背景イラスト */
	.contents + .footer::before {
		width: 127px;
		height: 96px;
		top: -70px;
		left: 2.5%;
	}
}
/* ------------------------------
 ページトップ（PC）
------------------------------ */
.js-btn-pagetop {
	display: block;
	width: 80px;
    height: 80px;
	background: url(../img/pagetop.png) no-repeat center / cover;
	border-radius: 50%;
	position: fixed;
	bottom: 50px;
	right: 3%;
	z-index: 100;
	transition: 0.2s ease 0s;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
}
.js-btn-pagetop.is-show {
	opacity: 1;
	visibility: visible;
}
@media print, screen and (min-width: 768px) {
	a.js-btn-pagetop.is-show:hover {
		opacity: 0.7;
	}
}
/* ------------------------------
 ページトップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.js-btn-pagetop {
		width: 42px;
		height: 42px;
		bottom: 35px;
    	right: 3%;
		padding: 2px 13px 7px;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html, 
	body {
		background: none;
	}
	.header {
		position: absolute;
	}
	.mainimg {
		position: relative;
	}
	.contents {
		margin-top: 0;
	}
}
 /* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}