@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: "Noto Serif JP";
	font-style: normal;
	font-weight: 700;
	src: url("fonts/NSerif-700.woff2") format("woff2"), url("fonts/NSerif-700.woff") format("woff");
	font-display: swap;
}


/*---------------------------------------------
    base settings
*/
:root {
	font-size: 62.5%;
	--s-2: calc(var(--s1) / 2);
	--s1: 0.8rem;
	--s2: calc(var(--s1) * 2);
	--s3: calc(var(--s1) * 3);
	--s4: calc(var(--s1) * 4);
	--s5: calc(var(--s1) * 5);
	--s6: calc(var(--s1) * 6);
	--s7: calc(var(--s1) * 7);
	--s8: calc(var(--s1) * 8);
	--s9: calc(var(--s1) * 9);
	--s10: calc(var(--s1) * 10);
	--s11: calc(var(--s1) * 11);
	--s12: calc(var(--s1) * 12);
	--s13: calc(var(--s1) * 13);
	--s14: calc(var(--s1) * 14);
	/* Color settings */
	--site-color01: #5D5D5D;
	--site-color02: #1A426A;
	--site-color03: #141414;
	--site-color04: #6A6A6A;
	--site-color05: #786407;
	--site-color06: #999;
	--site-color07: #E3B21F;
	--site-color08: #201F1E;
	--site-color09: #818181;
	--site-color10: #F7F7F7;
	--site-color11: #D7D7AE;
	--site-color12: #33312E;
	--site-color13: #E5E5DA;
	--site-color14: #5B4C06;
	/* メインのカラー、濃いキャッチコピー */
	--accent-color01: #E6DC14;
	--sub-font: "Noto Serif JP", serif;
}

@media screen and (max-width: 1000px) {
	:root {
		font-size: 1vw;
	}
}
html {
	overflow: auto;
}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.03em;
	line-height: 1;
	color: #1d1d1d;
	min-width: 110rem;
	overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
	margin: 0;
	padding: 0;
	border: 0;
}
ul li,
ol li {
	list-style: none;
	line-height: 1.4;
	position: relative;
}
ul:not([class]) li {
	padding-left: 2.4rem;
	margin-bottom: 1em;
	word-break: break-word;
}
ul:not([class]) li::before {
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #286bae;
	position: absolute;
	top: 0.6rem;
	left: 0;
}
ol:not([class]) li {
	padding-left: 3rem;
	margin-bottom: 1em;
	counter-increment: number;
}
ol:not([class]) li::before {
	content: counter(number);
	width: 2rem;
	height: 2rem;
	color: #fff;
	background-color: #286bae;
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.9rem;
	text-align: center;
	position: absolute;
	top: 0.2rem;
	left: 0;
}
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: inherit;
	transition: opacity 0.6s ease, color 0.6s ease;
}
a:active,
a:hover {
	text-decoration: none;
	opacity: 0.7;
}
strong {
	font-weight: 700;
}
em {
	font-style: italic;
	font-weight: normal;
}
small {
	font-size: 80%;
}
p:not([class]) {
	line-height: 2;
}
p + p {
	margin-top: 1em;
}
* {
	box-sizing: border-box;
}
.sp_br {
	display: none;
}
.pc_br {
	display: inline;
}

@media screen and (min-width: 768px) {
	.for-sp {
		display: none;
	}
}


/*---------------------------------------------
    Emphasize
*/
.marker {
	font-weight: 700;
	border-bottom: 3px solid #008cff;
}
.txt_bold {
	font-weight: 700;
	color: #286bae;
}


/*---------------------------------------------
    layout center
*/
.l-center {
	max-width: 100rem;
	margin-right: auto;
	margin-left: auto;
	box-sizing: content-box;
}


/*---------------------------------------------
    layout stack
*/
.l-stack {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--s4);
	align-items: stretch;
}
.l-stack-small {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--s2);
}
.l-stack-xsmall {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--s1);
}
.l-stack-large {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--s6);
}
.l-stack-xlarge {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--s8);
}


/*---------------------------------------------
    layout cluster
*/
.l-cluster {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
}


/*---------------------------------------------
    layout grid
*/
.l-grid-two,
.l-grid-two-flex {
	--minimum: calc((100% - var(--s2)) / 2);
	display: grid;
	grid-gap: var(--s2);
}
.l-grid-two-large {
	--minimum: calc((100% - var(--s4)) / 2);
	display: grid;
	grid-gap: var(--s4);
}
.l-grid-three,
.l-grid-three-flex {
	--minimum: calc((100% - var(--s2) * 2) / 3);
	display: grid;
	grid-gap: var(--s2);
}
.l-grid-four,
.l-grid-four-flex {
	--minimum: calc((100% - var(--s2) * 3) / 4);
	display: grid;
	grid-gap: var(--s2);
}

@supports (width: min(var(--minimum), 100%)) {
	.l-grid-two,
	.l-grid-two-flex,
	.l-grid-two-large,
	.l-grid-three,
	.l-grid-three-flex,
	.l-grid-four,
	.l-grid-four-flex {
		grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
	}
}


/*---------------------------------------------
    layout column
*/
.l-column {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s5);
}
.l-column__side {
	width: calc((100% - var(--s5)) * 0.4);
}
.l-column__main {
	width: calc((100% - var(--s5)) * 0.6);
}
.l-column--row-reverse {
	flex-direction: row-reverse;
}


/*---------------------------------------------
    layout float
*/
.l-float {
	display: flow-root;
}
.l-float__left-pc {
	width: 40rem;
	margin-right: var(--s5);
	margin-bottom: var(--s2);
	float: left;
}
.l-float__right-pc {
	width: 40rem;
	margin-left: var(--s5);
	margin-bottom: var(--s2);
	float: right;
}
.l-float__center {
	width: 64rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--s2);
}
.l-float__left {
	width: 40rem;
	margin-right: var(--s5);
	margin-bottom: var(--s2);
	float: left;
}
.l-float__right {
	width: 40rem;
	margin-left: var(--s5);
	margin-bottom: var(--s2);
	float: right;
}


/*---------------------------------------------
    layout scroll x
*/
.l-scroll-x {
	width: 100%;
	padding-bottom: 0.6rem;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
}
/* chrome safari */
.l-scroll-x::-webkit-scrollbar {
	height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
	border-radius: 0.3rem;
	background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
	border-radius: 0.3rem;
	background: #ddd;
}
.l-scroll-x table {
	width: inherit;
}
.l-scroll-x table th,
.l-scroll-x table td {
	min-width: 20rem;
}


/*---------------------------------------------
    layout header
*/
.l-header {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*---------------------------------------------
    layout gnavi
*/
.l-gnavi {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
}
.l-gnavi::-webkit-scrollbar {
	display: none;
}


/*---------------------------------------------
    toggle sp
*/
.toggle-sp-content {
	display: block;
}


/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
	margin: 0;
}
#pankuzu {
	font-size: 1.3rem;
	padding: 1.2rem 0;
	line-height: 1.4;
}
#pankuzu a {
	color: inherit;
	text-decoration: underline;
}
#pankuzu a:hover {
	text-decoration: none;
}
#pankuzu span {
	color: inherit;
	font-weight: inherit;
}


/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
	position: relative;
	width: 100%;
	margin: 5rem 0;
	padding: 0 0 1.5rem 0;
	border-bottom: 1px solid #ebe9e9;
	font-family: var(--sub-font);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.4;
}
#low-page h1:not([class])::before {
	position: absolute;
	right: 100%;
	top: 100%;
	width: 100vw;
	height: 0.1rem;
	border-top: 1px solid #ebe9e9;
	content: "";
}
#low-page h2:not([class]) {
	position: relative;
	width: 100%;
	margin-block: 5rem 2rem;
	padding: 1.5rem 2rem;
	background: #464441;
	background: -webkit-linear-gradient(90deg, rgba(70, 68, 65, 1) 0%, rgba(67, 65, 62, 1) 100%);
	background: linear-gradient(90deg, rgba(70, 68, 65, 1) 0%, rgba(67, 65, 62, 1) 100%);
	color: #fff;
	font-family: var(--sub-font);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
}
#low-page h3:not([class]) {
	position: relative;
	width: 100%;
	margin-block: 4rem 2rem;
	padding: 0 2rem 1rem 1.5rem;
	border-bottom: 1px solid #ebe9e9;
	font-family: var(--sub-font);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
}
#low-page h3:not([class])::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 0.4rem;
	height: calc(100% - 1rem);
	background: #d9d3c0;
	content: "";
}
#low-page h4:not([class]) {
	position: relative;
	width: 100%;
	margin-block: 3rem 2rem;
	padding: 0 2rem 1rem 0;
	border-bottom: 1px solid #e3d7b4;
	font-family: var(--sub-font);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}
#low-page h5:not([class]) {
	position: relative;
	width: 100%;
	margin-block: 3rem 2rem;
	padding: 0 2rem 0 1.5rem;
	font-family: var(--sub-font);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}
#low-page h5:not([class])::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 2.8rem;
	height: 2.8rem;
	background: #e3d7b4;
	border-radius: 50%;
	content: "";
	z-index: -1;
}
#low-page h2:not([class]) a,
#low-page h3:not([class]) a,
#low-page h4:not([class]) a,
#low-page h5:not([class]) a {
	display: block;
	padding: 0 3.5rem 0 0;
	background: url(img/arrow02-black.png) no-repeat right center;
	background-size: 2.8rem auto;
	color: inherit;
	text-decoration: none;
}
#low-page h2:not([class]) a {
	background: url(img/arrow02-white.png) no-repeat right center;
	background-size: 2.8rem auto;
}
#low-page h2:not([class]) a:hover,
#low-page h3:not([class]) a:hover,
#low-page h4:not([class]) a:hover,
#low-page h5:not([class]) a:hover {
	text-decoration: none;
	opacity: 0.7;
}


/*---------------------------------------------
    low-page center-img
*/
.low-center-img-box {
	display: flow-root;
	margin-block: 4rem;
}
.low-center-img {
	max-width: 60%;
	margin: 0 auto;
	padding-bottom: var(--s2);
	text-align: center;
}
.low-center-img-catch {
	margin: 0 0 1.5rem 0;
	color: #162761;
	font-family: var(--sub-font);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}


/*---------------------------------------------
    low-page left-img
*/
.low-left-img-box {
	display: flow-root;
	margin-block: 4rem;
}
.low-left-img {
	width: 40%;
	margin-right: var(--s4);
	padding-bottom: var(--s1);
	text-align: center;
	float: left;
}
.low-left-img-catch {
	margin: 0 0 1.5rem 0;
	color: #162761;
	font-family: var(--sub-font);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}


/*---------------------------------------------
    low-page right-img
*/
.low-right-img-box {
	display: flow-root;
	margin-block: 4rem;
}
.low-right-img {
	width: 40%;
	margin-left: var(--s3);
	padding-bottom: var(--s1);
	text-align: center;
	float: right;
}
.low-right-img-catch {
	margin: 0 0 1.5rem 0;
	color: #162761;
	font-family: var(--sub-font);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}


/*---------------------------------------------
    Caption settings
*/
.caption {
	margin-top: 0.8em;
	color: var(--site-color06);
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: left;
	word-break: break-all;
}
.caption a {
	color: var(--site-color06);
}
/* スライダー等の画像直下キャプション（中央揃え） */
.slide-text-img .caption,
.onb-slider-2 .swiper-slide .caption,
.fig + .caption {
  margin: 1rem auto;
  color: var(--site-color06);
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  word-break: break-all;
}
.caption--right {
	text-align: right;
}
.caption-scroll {
	margin-top: 0.8em;
	color: var(--site-color06);
	font-size: 1.2rem;
	line-height: 1.6;
	text-align: center;
	word-break: break-all;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	/* chrome safari */
}
.caption-scroll a {
	color: var(--site-color06);
}
.caption-scroll::-webkit-scrollbar {
	height: 0.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
	border-radius: 0.3rem;
	background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
	border-radius: 0.3rem;
	background: #ddd;
}


/*---------------------------------------------
    Table settings
*/
table {
	width: 100%;
	line-height: 1.4;
	border-collapse: collapse;
}
table th,
table td {
	padding: 1rem;
	border-bottom: 1px solid #ebe9e9;
	word-break: break-all;
}
table th {
	border-bottom: 2px solid #d9d3c0;
	font-weight: 700;
	text-align: center;
}


/*---------------------------------------------
    low-page table
*/
#low-page table {
	margin-block: 4rem;
}


/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]),
#low-page ol:not([class]) {
	margin-block: 4rem;
}


/*--------------------------------------------
    Button Internal settings
*/
.btn-internal {
	position: relative;
	max-width: 46rem;
	margin: 4rem auto;
}
.btn-internal a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 7rem;
    width: 100%;
    margin: 0;
    padding: 2rem 4rem;
    background-color: #2c2c2c;
    border-radius: 6rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
}
.btn-internal a::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 40%;
    width: 1.6rem;
    height: 1.6rem;
    background: url(img/arrow01-white.svg) no-repeat center center / contain;
}
.btn-internal:hover a {
	opacity: 0.7;
}


/*--------------------------------------------
    Button Ancher settings
*/
.btn-ancher {
	position: relative;
	max-width: 46rem;
	margin: 4rem auto;
}
.btn-ancher a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 7rem;
	width: 100%;
	margin: 0;
	padding: 2rem 4rem;
	background: #2c2c2c url(img/arrow01-white-down.svg) no-repeat right 2.5rem center;
	background-size: auto 1.6rem;
	border: 2px solid #827855;
	border-radius: 6rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: 0.2s;
}
.btn-ancher:hover a {
	opacity: 0.7;
}


/*--------------------------------------------
    Button Web settings
*/
.btn-web {
	position: relative;
	max-width: 46rem;
	margin: 4rem auto;
}
.btn-web a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 7rem;
	width: 100%;
	margin: 0;
	padding: 2rem 4rem;
	background: #ae4f28 url(img/arrow01-white.svg) no-repeat right 2rem center;
	background-size: 1.6rem auto;
	border-radius: 6rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: 0.2s;
}
.btn-web:hover a {
	opacity: 0.7;
}


/*--------------------------------------------
    Text Link settings
*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	min-height: 2.2rem;
	margin: 0;
	padding: 0.2rem 0 0.3rem 3rem;
	background: url(img/arrow02-black.png) no-repeat left center;
	background-size: 2.2rem auto;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}
.btn-link a:hover {
	text-decoration: none;
	opacity: 0.7;
}


/*---------------------------------------------
    Tel Link settings
*/
.btn-tel {
	display: none;
}


/*---------------------------------------------
  footer
*/
.footer-area {
	padding: var(--s5) 0 0;
	background: #322e21;
	position: relative;
	color: #fff;
}
.footer-area a:hover {
	opacity: .6;
	transition: .2s;
}
.footer-area-logo {
	width: 11.3rem;
	max-width: 100%;
	margin: 0 auto var(--s5);
}
.footer-area-logo a {
	display: block;
}
.footer-main {
	max-width: 100rem;
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--s3);
	padding-left: var(--s3);
	box-sizing: content-box;
}
.footer-bottom {
	padding: var(--s2) 0;
	background: #1f1c14;
	color: #fff;
}
.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-box + .footer-box {
	margin-top: var(--s5);
}
.footer-menu-title {
	margin-bottom: var(--s1);
	font-size: 1.6rem;
	line-height: 1.6;
	border-bottom: 1px solid #fff;
}
.footer-menu-title__link {
	padding: var(--s1);
	display: block;
	text-decoration: none;
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
}
.footer-menu__item {
	width: calc((100% - var(--s2) * 3) / 4);
	font-size: 1.6rem;
	line-height: 1.6;
}
.footer-menu__item::before {
	display: none;
}
.footer-menu__link {
	padding: var(--s1);
	display: block;
	text-decoration: none;
}
.footer-menu-sub {
	margin-left: var(--s1);
}
.footer-menu-sub__item {
	font-size: 1.2rem;
	line-height: 1.6;
}
.footer-menu-sub__item::before {
	display: none;
}
.footer-menu-sub__link {
	padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
	display: block;
	text-decoration: none;
	position: relative;
}
.footer-menu-sub__link::before {
	content: "└";
	position: absolute;
	top: var(--s-2);
	left: 0;
}
.footer-disclaimer {
	width: 60rem;
	margin: var(--s5) auto;
	font-size: 1rem;
	line-height: 1.8;
}
.footer-disclaimer__label {
	display: inline;
}
.footer-disclaimer__text {
	display: inline;
}
.footer-nocopy {
	margin: var(--s5) 0;
	font-size: 1.2rem;
	text-align: center;
}
.footer-copyright {
	font-size: 1.2rem;
}
.footer-copyright__link {
	color: #FFF;
	text-decoration: none;
}
.footer-sitemap {
	font-size: 1.2rem;
}
.footer-sitemap__link {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.footer-area-logo {
		width: 8rem;
		margin: 0 auto 2rem auto;
	}
}


/*---------------------------------------------
  Page top Button
*/
.page-top {
	width: 6rem;
	height: 6rem;
	border-radius: 10rem;
	position: fixed;
	right: var(--s4);
	bottom: var(--s7);
	z-index: 10;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.page-top.js-show {
	opacity: 1;
}
.page-top__link {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media screen and (max-width: 767px) {
	/*---------------------------------------------
	    sp base settings
	*/
	:root {
		font-size: 2.6666666667vw;
	}
	body {
		min-width: auto;
	}
	.sp_br {
		display: inline;
	}
	.pc_br,
	.for-pc {
		display: none;
	}


	/*---------------------------------------------
	    sp layout center
	*/
	.l-center {
		padding-right: calc(var(--s1) + var(--s-2));
		padding-left: calc(var(--s1) + var(--s-2));
		box-sizing: border-box;
	}


	/*---------------------------------------------
	    sp layout stack
	*/
	.l-stack {
		gap: var(--s2);
	}


	/*---------------------------------------------
	    sp layout cluster
	*/
	.l-cluster {
		gap: var(--s1);
	}


	/*---------------------------------------------
	    sp layout grid
	*/
	.l-grid-two,
	.l-grid-two-large {
		grid-template-columns: 100%;
	}
	.l-grid-three {
		grid-template-columns: 100%;
	}
	.l-grid-four {
		grid-template-columns: 100%;
	}
	.l-grid-two-flex,
	.l-grid-three-flex,
	.l-grid-four-flex {
		--minimum: calc((100% - var(--s2)) / 2);
	}


	/*---------------------------------------------
	    sp toggle sp
	*/
	.toggle-sp-content {
		display: none;
	}


	/*---------------------------------------------
	    sp layout column
	*/
	.l-column {
		gap: var(--s2);
	}
	.l-column__side {
		width: 100%;
	}
	.l-column__main {
		width: 100%;
	}


	/*---------------------------------------------
	    sp layout float
	*/
	.l-float__left-pc {
		width: 100%;
		margin-right: 0;
		float: none;
	}
	.l-float__right-pc {
		width: 100%;
		margin-left: 0;
		float: none;
	}
	.l-float__center {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.l-float__left {
		width: 45%;
		margin-right: var(--s2);
		margin-bottom: var(--s1);
	}
	.l-float__right {
		width: 45%;
		margin-left: var(--s2);
		margin-bottom: var(--s1);
	}


	/*---------------------------------------------
	    sp layout scroll
	*/
	.l-scroll-x-sp {
		width: 100%;
		padding-bottom: 0.6rem;
		overflow: hidden;
		overflow-x: scroll;
		overflow-y: visible;
		/* chrome safari */
	}
	.l-scroll-x-sp::-webkit-scrollbar {
		height: 0.6rem;
	}
	.l-scroll-x-sp::-webkit-scrollbar-track {
		border-radius: 0.3rem;
		background: #eee;
	}
	.l-scroll-x-sp::-webkit-scrollbar-thumb {
		border-radius: 0.3rem;
		background: #ddd;
	}


	/*---------------------------------------------
	  pankuzu
	*/
	#pankuzuWrap {
		position: relative;
		overflow: auto;
		margin: 0 auto 4rem auto;
		white-space: nowrap;
	}
	#pankuzu {
		padding: 0.7rem 0 1rem 0;
		letter-spacing: 0.05em;
		font-size: 1.1rem;
		line-height: 1.2;
	}
	#pankuzu a {
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
	}
	#pankuzu a:hover {
		text-decoration: underline;
	}
	#pankuzu span:last-child {
		margin-right: calc(var(--s1) + var(--s-2));
	}
	#pankuzu a span:last-child {
		margin-right: 0;
	}


	/*---------------------------------------------
	  low-page common heading
	*/
	#low-page h1:not([class]) {
		margin: 0 0 4rem 0;
		font-size: 2.4rem;
	}
	#low-page h2:not([class]) {
		margin-block: 4rem 2rem;
		padding: 1.5rem;
		font-size: 2.1rem;
	}
	#low-page h3:not([class]) {
		padding: 0 1.5rem 1rem 1.2rem;
		font-size: 2.1rem;
	}
	#low-page h4:not([class]) {
		padding: 0 1.5rem 0.8rem 0;
		font-size: 1.8rem;
	}
	#low-page h5:not([class]) {
		padding: 0 1.5rem 0.8rem 1.5rem;
		font-size: 1.8rem;
	}
	#low-page h2:not([class]) a,
	#low-page h3:not([class]) a,
	#low-page h4:not([class]) a,
	#low-page h5:not([class]) a {
		min-height: 2.4rem;
		padding: 0 3rem 0 0;
		background-size: 2.4rem auto;
	}


	/*---------------------------------------------
	low-page center-img
	*/
	.low-center-img {
		max-width: 100%;
	}


	/*---------------------------------------------
	low-page left-img
	*/
	.low-left-img {
		width: 100%;
		margin-right: 0;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}


	/*---------------------------------------------
	low-page right-img
	*/
	.low-right-img {
		width: 100%;
		margin-left: 0;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}


	/*---------------------------------------------
	    sp table
	*/
	.sp-table-vertical th,
	.sp-table-vertical td {
		width: 100%;
		display: block;
	}
	.table-label thead {
		display: none;
	}
	.table-label tbody th {
		background: var(--site-color09);
	}
	.table-label td {
		padding: 0;
		display: flex;
		position: relative;
	}
	.table-label td::before {
		content: attr(data-label);
		width: 7em;
		background: #efefef;
		border-right: solid 1px #000;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		font-weight: 700;
		text-align: center;
	}
	.table-label__cell {
		padding: var(--s1) var(--s2);
	}
	.l-scroll-x table thead,
	.l-scroll-x-sp table thead {
		display: table-header-group;
	}
	.l-scroll-x table tbody,
	.l-scroll-x-sp table tbody {
		display: table-row-group;
	}
	.l-scroll-x table tr,
	.l-scroll-x-sp table tr {
		display: table-row;
	}
	.l-scroll-x table th,
	.l-scroll-x table td,
	.l-scroll-x-sp table th,
	.l-scroll-x-sp table td {
		width: inherit;
		min-width: 15rem;
		display: table-cell;
	}
	.l-scroll-x-sp table {
		width: inherit;
	}


	/*--------------------------------------------
	    Button Internal settings
	*/
	.btn-internal {
		max-width: 90%;
		margin: 3rem auto;
	}
	.btn-internal a {
		min-height: 6rem;
	}


	/*--------------------------------------------
	    Button Ancher settings
	*/
	.btn-ancher {
		max-width: 90%;
		margin: 3rem auto;
	}
	.btn-ancher a {
		min-height: 6rem;
	}


	/*--------------------------------------------
	    Button Web settings
	*/
	.btn-web {
		max-width: 90%;
		margin: 3rem auto;
	}
	.btn-web a {
		min-height: 6rem;
	}


	/*--------------------------------------------
	    Text Link settings
	*/
	.btn-link {
		position: relative;
		max-width: 90%;
		margin: 3rem auto;
	}
	.btn-link a {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		min-height: 6rem;
		width: 100%;
		margin: 0;
		padding: 2rem 4.2rem;
		background: #fff url(img/arrow02-black.png) no-repeat right 1.4rem center;
		background-size: 2.4rem auto;
		border: 1px solid #2c2c2c;
		border-radius: 6rem;
		color: #000;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
		transition: 0.2s;
	}
	.btn-link:hover a {
		opacity: 0.7;
	}


	/*---------------------------------------------
	    Tel Link settings
	*/
	.btn-tel {
		display: block;
		position: relative;
		max-width: 90%;
		margin: 3rem auto;
	}
	.btn-tel a {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		min-height: 6rem;
		width: 100%;
		margin: 0;
		padding: 2rem 4.2rem;
		background: #286bae url(img/icon-tel.png) no-repeat left 1.8rem center;
		background-size: 2rem auto;
		border-radius: 6rem;
		color: #fff;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
		transition: 0.2s;
	}
	.btn-tel:hover a {
		opacity: 0.7;
	}


	/*---------------------------------------------
		footer
	*/
	.footer-area {
		padding: var(--s3) 0 0;
		/* margin-top: var(--s12); */
	}
	.footer-area a:hover {
		opacity: 1;
		transition: unset;
	}
	.footer-main {
		padding-right: 0;
		padding-left: 0;
		box-sizing: border-box;
	}
	.footer-bottom {
		padding: var(--s1) 0;
	}
	.footer-logo {
		margin: var(--s3) var(--s1);
		font-size: 1.8rem;
	}
	.footer-box + .footer-box {
		margin-top: var(--s2);
	}
	.footer-menu-title {
		margin-bottom: 0;
	}
	.footer-menu-title__link {
		padding: var(--s1) 3rem var(--s1) var(--s2);
		position: relative;
	}
	.footer-menu-title__link::after {
		content: "";
		width: 1.5rem;
		height: 100%;
		background: url(img/arrow03-white-down.svg) no-repeat center;
		background-size: contain;
		position: absolute;
		top: 0;
		right: 1rem;
		transform: rotate(0);
		transition: transform 0.3s;
	}
	.footer-menu-title__link.is-open::after {
		transform: rotate(180deg);
	}
	.footer-menu-title__link--not-toggle::after {
		right: 0.8rem;
		background: url(img/arrow03-white.svg) no-repeat center/1rem auto;
	}
	.footer-menu {
		padding: var(--s1) 0;
		background: #fff;
		gap: 0;
	}
	.footer-menu__item {
		width: 100%;
	}
	.footer-menu__link {
		padding: var(--s2) 3.5rem var(--s2) var(--s2);
		background: url(img/arrow03-black.svg) no-repeat right 1rem center;
		background-size: 0.8rem auto;
		color: #000;
	}
	.footer-menu-sub {
		margin-left: var(--s2);
	}
	.footer-menu-sub__link {
		padding: var(--s1) var(--s2) var(--s1) 1.1em;
		color: #000;
	}
	.footer-menu-sub__link::before {
		top: var(--s1);
	}
	.footer-disclaimer {
		width: calc(100% - var(--s2));
		margin: var(--s2) auto;
		padding: var(--s1) var(--s2);
	}
	.footer-nocopy {
		margin: var(--s2) var(--s1);
		font-size: 1rem;
	}
	.footer-copyright {
		width: 100%;
		text-align: center;
		font-size: 1rem;
	}
	.footer-sitemap {
		display: none;
	}
	.page-top {
		width: 4rem;
		height: 4rem;
		right: var(--s1);
		bottom: var(--s3);
	}
	.page-top__link {
		background-size: 1.5rem auto;
	}
}
