@charset "utf-8";

/* ==================================================
   変数
-------------------------------------------------- */
:root {
	--c_text: #333;
	--c_white: #e9ecf2;
	--c_yellow: #febe35;
	--c_lightyellow: #fedd16;
	--c_blue: #0087db;
	--c_blue_hover: #00afec;
	--c_lightblue: #edf8ff;
	--c_navy: #004690;
	--c_red: #f14c39;
	--c_link_hover: #ccc;
	--c_bdc: #d8dce6;
	--c_bdc_news: #999;
	--c_blue_bg: #e2f4ff;
	--c_gray_bg: #f5f6f7;
	--bg_cc_contain: center center / contain no-repeat;
	--bg_cc_cover: center center / cover no-repeat;
	--fw_r: 400;
	--fw_m: 500;
	--fw_b: 700;
	--fz_base: 1.8rem;
	--fz_xs: calc( var(--fz_base) * .8 ); /* → 1.4rem */
	--fz_md: calc( var(--fz_base) * 1.3 ); /* → 2.3rem */
	--fz_lg: calc( var(--fz_base) * 1.6 ); /* → 2.8rem */
	--fz_xl: calc( var(--fz_base) * 1.9 ); /* → 3.4rem */
	--fz_xxl: calc( var(--fz_base) * 2.2 ); /* → 3.9rem */
	--fz_xxxl: calc( var(--fz_base) * 2.5 ); /* → 4.5rem */
	--ff_en: "Lato";
	--lh_main: 2;
	--transition: .2s linear;
}



/* ==================================================
   共通タグ
-------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	letter-spacing: .06em;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	background-color: #fff;
	color: var(--c_text);
	font-size: var(--fz_base);
	line-height: var(--lh_main);
	font-family: var(--ff_en), 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
	color: var(--c_text);
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: #ccc;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;
	/* font-style: italic; */
	vertical-align: middle;
	/* shape-margin: .75rem; */
}
img[src$=".svg"] {
	display: block;
	width: 100%;
	height: auto;
}
a img {
	transition: var(--transition);
}
a img:hover {
	opacity: .5;
}

p + p {
	margin-top: 1em;
}

ul {
	list-style-type: none;
	/* margin-top: 10px; */
}

ul:not(.esc) > li {
	padding-left: 26px;
	text-indent: -26px;
}
ul:not(.esc) > li::before {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 14px 0 6px;
	border-radius: 50%;
	background-color: #999;
	vertical-align: 3px;
	content: "";
	line-height: 1.9;
}

ol:not(.esc) {
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: 10px;
	counter-reset: num;
}

ol:not(.esc) > li {
	padding-left: 40px;
	text-indent: -40px;
}
ol:not(.esc) > li::before {
	margin-right: 9px;
	font-weight: bold;
	font-size: 1.9rem;
	content: counter(num, decimal-leading-zero) ".";
	counter-increment: num;
}

ul:not(.esc) > li:nth-of-type(n + 2),
ol:not(.esc) > li:nth-of-type(n + 2) {
	margin-top: .5em;
}

table {
	table-layout: fixed;
	width: 100%;
}

table tr {
	border-bottom: 1px solid #ccc;
}

table th {
	width: 30%;
	padding: 10px 15px;
	background-color: #e6e6e6;
	font-weight: normal;
	font-size: 1.5rem;
	text-align: left;
	vertical-align: top;
}
table thead th + th {
	border-left: 1px dotted #ccc;
}
table thead + tbody th {
	background-color: #f6f6f6;
}

table td {
	width: 70%;
	padding: 10px 15px;
	font-size: 1.5rem;
}
table tbody td + td {
	border-left: 1px dotted #ddd;
}

input[type="checkbox"],
input[type="radio"],
label,
button {
	cursor: pointer;
}

body input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	background-color: #fff !important;
	color: var(--c_text) !important;
}

textarea {
	display: block;
	resize: vertical;
}

input,
textarea,
select,
button {
/*	-webkit-appearance: none;*/
	padding: 2px 5px;
	border: 1px solid #a9a9a9;
	border-radius: 0;
	color: var(--c_text);
	font-size: var(--fz_base);
	font-family: var(--ff_en), 'Noto Sans JP', sans-serif;
	line-height: var(--lh_main);
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

fieldset.radioArea {
	display: flex;
	flex-wrap: wrap;
	gap: .3em 2em;
	border: none;
}

.radioArea label {
	position: relative;
	padding-left: calc(20px + .5em);
	transition: var(--transition);

	/* display: flex;
	align-items: center;
	gap: 0 .5em;
	position: relative;
	cursor: pointer; */
}
.radioArea label::before,
.radioArea label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	border-radius: 50%;
	content: '';
	transition: var(--transition);
}
.radioArea label::before {
	left: 0;

	width: 20px;
	height: 20px;
	border: 2px solid var(--c_bdc_news);
	box-sizing: border-box;
}
.radioArea label::after {
	/* position: absolute; */
	top: 50%;
	left: 10px;
	transform: translate(-50%, -50%);
	width: 11px;
	height: 11px;
	/* background-color: var(--c_bdc); */
}
.radioArea label:hover::before {
	border-color: var(--c_blue_hover);
}
.radioArea label:has(:checked)::before {
	border-color: var(--c_blue);
}
.radioArea label:has(:checked)::after {
	background-color: var(--c_blue);
	animation: anim-radio .3s linear;
}

.radioArea label:has(:checked) span {
	color: var(--c_blue);
	transition: .15s linear;
}

@keyframes anim-radio {
	0% {
		box-shadow: 0 0 0 1px transparent;
	}
	50% {
		box-shadow: 0 0 0 10px #2589d033;
	}
	100% {
		box-shadow: 0 0 0 10px transparent;
	}
}

.radioArea input {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	border-width: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 324px;
	height: 66px;
	border-radius: 33px;
	background: var(--c_yellow) url("../images/btn_arrow.webp") right 16px center / 7px 12px no-repeat;
	color: var(--c_text) !important;
	text-decoration: none !important;
}
.btn a:hover {
	opacity: .5;
}

.ib {
	display: inline-block;
}

.tac {
	text-align: center;
}

input[type=checkbox] {
	display: none;
}

/* input[type=checkbox] + label { */
input[type=checkbox] + span {
	position: relative;
	/* padding-left: 24px; */
	padding-left: calc(20px + .5em);
	transition: .15s linear;
}
.radioArea input[type=checkbox] + span {
	padding-left: 0;
}

/* input[type=checkbox] + label:hover::before,
input[type=checkbox]:checked + label:hover::before { */
input[type=checkbox] + span:hover::before,
input[type=checkbox]:checked + span:hover::before {
	/* border-color: #68b7ed; */
	border-color: var(--c_blue_hover);
}
/* input[type=checkbox] + label::before,
input[type=checkbox] + label::after { */
input[type=checkbox] + span::before,
input[type=checkbox] + span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: .15s linear;
}
.radioArea input[type=checkbox] + span::before,
.radioArea input[type=checkbox] + span::after {
	content: none;
}
/* input[type=checkbox] + label::before { */
input[type=checkbox] + span::before {
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid var(--c_bdc_news);
	border-radius: 3px;
}
/* input[type=checkbox] + label::after { */
input[type=checkbox] + span::after {
	left: 6px;
	width: 8px;
	height: 13px;
	margin-top: -8px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	opacity: 0;
}

/* input[type=checkbox]:checked + label { */
input[type=checkbox]:checked + span {
	color: var(--c_blue);
}
/* input[type=checkbox]:checked + label::before { */
input[type=checkbox]:checked + span::before {
	border-color: var(--c_blue);
	background-color: var(--c_blue);
	animation: anim-radio .3s linear;
}
/* input[type=checkbox]:checked + label::after { */
input[type=checkbox]:checked + span::after {
	opacity: 1;
}

@media print, screen and (min-width: 768px) {
	a[href*="tel:"] {
		color: var(--c_text);
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

@media only screen and (max-width: 767px) {
	* {
		word-break: normal !important;
		word-wrap: break-word;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	table:not(.sp-table) tr {
		border-bottom: 0;
	}

	table:not(.sp-table) th {
		display: block;
		width: 100%;
	}

	table:not(.sp-table) td {
		display: block;
		width: 100%;
		padding-bottom: 1em;
	}

	input[type="submit"] {
		-webkit-appearance: none;
		border-radius: 0;
	}
	input:-webkit-autofill {
		-webkit-box-shadow: 0 0 0 1000px #fff inset;
	}
}

@media only screen and (max-width: 500px) {
	.btn a {
		width: 100%;
	}
}



/* ==================================================
   共通クラス
-------------------------------------------------- */
.container {
	display: block;
	width: 1260px;
	margin: 0 auto;
	padding: 0 40px;
}
.container_l {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0 4.167vw;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.bold {
	font-weight: var(--fw_b);
}

.br::before {
	white-space: pre;
	content: "\A";
}

.embeddedArea {
	position: relative;
	overflow: hidden;
	height: 0;
	margin-top: 10px;
	padding-bottom: 56.25%;
}

.embeddedArea iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.embed-youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.embed-youtube iframe {
	width: 100%;
	height: 100%;
}

/* .hoverTrans {
	transition: .2s linear;
} */

.linkArea {
	cursor: pointer;
}
.linkArea:active {
	opacity: .5;
}

.notes {
	margin-top: 1em;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
.notes::before {
	margin-right: .2em;
	content: "※";
}
.notes + .notes {
	margin-top: 0;
}

.sp-swipe {
	display: none;
}

.sp-swipeArea {
	margin-top: 1em;
}

.ofi {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.external::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: .3em;
	background-color: #000;
	-webkit-mask: url("../images/icon-external_link.svg") no-repeat center center / contain;
	mask: url("../images/icon-external_link.svg") no-repeat center center / contain;
	vertical-align: middle;
}

.pdf::after {
	content: "";
	display: inline-block;
	width: .75em;
	height: .75em;
	/* margin-left: .3em; */
	background-color: var(--c_red);
	-webkit-mask: url("../images/icon-pdf.svg") no-repeat center center / contain;
	mask: url("../images/icon-pdf.svg") no-repeat center center / contain;
	vertical-align: middle;
}
.xls::after {
	content: "";
	display: inline-block;
	width: .75em;
	height: .75em;
	/* margin-left: .3em; */
	background-color: #19b418;
	-webkit-mask: url("../images/icon-xls.svg") no-repeat center center / contain;
	mask: url("../images/icon-xls.svg") no-repeat center center / contain;
	vertical-align: middle;
}

@media only screen and (max-width: 1276px) {
	.container {
		width: 100%;
	}
}

@media print, screen and (min-width: 1025px) {
	.linkArea:hover {
		opacity: .5;
	}
}

@media only screen and (max-width: 1024px) {
	.container,
	.container_l {
		width: 100%;
		padding: 0 15px;
	}
}

@media only screen and (max-width: 767px) {
	.flex {
		flex-direction: column;
	}

	.br-sp::before {
		white-space: pre;
		content: "\A";
	}

	.sp-swipe {
		display: block;
	}
	.sp-swipe::before {
		display: inline-block;
		width: 45px;
		height: 45px;
		margin-right: 7px;
		background: url("../images/sp-swipe.png") center center no-repeat;
		background-size: contain;
		vertical-align: bottom;
		content: "";
	}

	.sp-swipeArea {
		overflow-x: scroll;
	}
	.sp-swipeArea::-webkit-scrollbar {
		height: 3px;
	}
	.sp-swipeArea::-webkit-scrollbar-track {
		background-color: #eee;
		border-radius: 3px;
	}
	.sp-swipeArea::-webkit-scrollbar-thumb {
		background-color: #666;
		border-radius: 3px;
	}

	.sp-swipeArea table th,
	.sp-swipeArea table td {
		display: table-cell;
	}
}



/* ==================================================
   共通パーツ
-------------------------------------------------- */
/* ----- ヘッダー ----- */
/* メイン */
.headerArea {
	display: flex;
	position: fixed;
	left: 32px;
	top: 0;
	z-index: 500;
	width: calc(100% - 64px);
	height: 92px;
}

.header_mainArea {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 200px);
	height: 100%;
	padding: 0 32px;
	border-radius: 0 0 6px 6px;
	background-color: #fff;
	box-shadow: 0 0 40px 0 rgba(28, 46, 89, .05);
}

.header_main_logo {
	width: 304px;
}

.header_main_navArea {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
}

.header_main_nav > ul {
	display: flex;
}

.header_main_nav > ul > li {
	position: relative;
}
.header_main_nav > ul > li:nth-of-type(n + 2) {
	margin-left: 2.083vw;
}

.headerNav_child {
	display: none;
	position: absolute;
	left: -2em;
	top: 2em;
	z-index: 500;
	width: 12em;
}

.headerNav_child a {
	display: block;
	padding: 12px 20px;
	background-color: var(--c_blue);
	color: var(--c_white);
	line-height: 1.8;
}
.headerNav_child a:hover {
	background-color: var(--c_blue_hover);
}

@media only screen and (max-width: 1400px) {
	.header_main_nav > ul > li {
		font-size: calc( var(--fz_base) * .9 );
	}
	.header_main_nav > ul > li:nth-of-type(n + 2) {
		margin-left: 1.778vw;
	}
}

@media only screen and (max-width: 1280px) {
	.headerArea {
		height: 72px;
	}

	.header_mainArea {
		padding: 0 16px;
	}

	.header_main_nav ul {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {
	/**/
	.headerArea {
		left: 15px;
		width: calc(100% - 30px);
		height: 56px;
	}
	.header_mainArea {
		width: calc(100% - 100px);
	}
	/* .header_mainArea {
		width: calc(100% - 64px);
		padding: 0 12px;
	} */
	.header_main_logo {
		width: auto;
		height: 28px;
	}
	.header_main_logo img[src$=".svg"] {
		width: auto;
		height: 100%;
	}
	/**/
}

@media only screen and (max-width: 840px) {
	.header_mainArea {
		width: calc(100% - 100px);
	}
}

@media only screen and (max-width: 767px) {
	.headerArea {
		left: 15px;
		width: calc(100% - 30px);
		/* height: 56px; */
		height: 52px;
	}

	.header_mainArea {
		/* width: calc(100% - 64px); */
		width: calc(100% - 104px);
		padding: 0 12px;
	}

	.header_main_logo {
		width: auto;
		height: 28px;
	}

	.header_main_logo img[src$=".svg"] {
		width: auto;
		height: 100%;
	}
}

@media only screen and (max-width: 500px) {
	.headerArea {
		left: 10px;
		width: calc(100% - 20px);
	}
}

/* 検索窓 */
.header_main_search form {
	position: relative;
	width: 210px;
}

.header_main_search input[type="textbox"] {
	width: 100%;
	padding-left: 16px;
	border: 0;
	border-radius: 30px;
	background-color: var(--c_white);
	font-size: 1.4rem;
}

.header_main_search input[type="submit"] {
	display: block;
	position: absolute;
	right: 4px;
	top: 8px;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: var(--c_blue) url("../images/icon-search.svg") center center / 14px 14px no-repeat;
	text-indent: 200%;
	white-space: pre;
}

@media only screen and (max-width: 600px) {
	.header_main_navArea .header_main_search {
		display: none;
	}
}

/* ログイン */
.header_loginArea,
.header_menuArea {
	width: 92px;
	height: 100%;
	margin-left: 8px;
	box-shadow: 0 0 40px 0 rgba(28, 46, 89, .05);
}

.header_loginArea a,
.header_menuArea {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 8px;
	border-radius: 0 0 6px 6px;
	font-size: 1.6rem;
}
.header_loginArea a {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: var(--c_yellow);
	color: var(--c_text);
}
.header_loginArea a::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 25px;
	width: 25px;
	height: 25px;
	background-color: var(--c_text);
	-webkit-mask: url("../images/icon-login.svg") no-repeat center center / contain;
	mask: url("../images/icon-login.svg") no-repeat center center / contain;
	vertical-align: middle;
	transform: translateX(-50%);
}
.header_loginArea[data-login_action_status="logout"] a::before {
	-webkit-mask-image: url("../images/icon-logout.svg");
	mask-image: url("../images/icon-logout.svg");
}
.header_loginArea[data-login_action_status="mypage"] a::before {
	-webkit-mask-image: url("../images/icon-mypage.svg");
	mask-image: url("../images/icon-mypage.svg");
}
.header_loginArea a:hover {
	background-color: var(--c_lightyellow);
}

@media only screen and (max-width: 1280px) {
	.header_loginArea a,
	.header_menuArea {
		padding-bottom: 0;
	}
	.header_loginArea a::before {
		top: 16px;
	}
}

@media only screen and (max-width: 1024px) {
	/**/
	.header_loginArea {
		/* display: none;
	}
	.header_menuArea { */
		width: 56px;
		padding-bottom: 0;

	}
	.header_loginArea a {
		font-size: 1rem;
	}
	.header_loginArea a::before {
		top: 14px;
		width: 20px;
		height: 20px;
	}
	/**/
}

@media only screen and (max-width: 840px) {
	.header_loginArea {
		/* display: none; */
	}
/*
	.header_menuArea {
		width: 56px;
		padding-bottom: 0;
		font-size: 1rem;
	} */
}

@media only screen and (max-width: 767px) {
	.header_loginArea a::before {
		top: 12px;
	}
}

@media only screen and (max-width: 500px) {
	.header_loginArea,
	.header_menuArea {
		margin-left: 4px;
	}
}




/* メニュー */
.header_menuArea {
	position: relative;
	z-index: 150;
	border: 0;
	background-color: var(--c_blue);
	color: var(--c_white);
	transition: var(--transition);
}
.header_menuArea::before,
.header_menuArea::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	width: 53.5%;
	height: 2px;
	background-color: var(--c_white);
	transform: translateX(-50%);
	transition: var(--transition);
}
.header_menuArea::before {
	top: 30px;
}
.header_menuArea::after {
	top: 44px;
}
.header_menuArea:hover {
	background-color: var(--c_blue_hover);
}
.header_menuArea.is__active::before,
.header_menuArea.is__active::after {
	top: 36px;
	width: 38%;
}
.header_menuArea.is__active::before {
	transform: translateX(-50%) rotate(225deg);
}
.header_menuArea.is__active::after {
	transform: translateX(-50%) rotate(-225deg);
}

@media only screen and (max-width: 1280px) {
	.header_menuArea::before {
		top: 21px;
	}
	.header_menuArea::after {
		top: 35px;
	}
	.header_menuArea.is__active::before,
	.header_menuArea.is__active::after {
		top: 27px;
	}
}

@media only screen and (max-width: 1024px) {
	/**/
	.header_menuArea {
		width: 56px;
		padding-bottom: 0;
		font-size: 1rem;
	}
	.header_menuArea::before {
		top: 18px;
	}
	.header_menuArea::after {
		top: 28px;
	}
	.header_menuArea.is__active::before,
	.header_menuArea.is__active::after {
		top: 24px;
	}
	/**/
}

@media only screen and (max-width: 767px) {
	.header_menuArea {
		width: 56px;
		padding-bottom: 0;
		font-size: 1rem;
	}

	.header_menuArea::before {
		/* top: 18px; */
		top: 16px;
	}
	.header_menuArea::after {
		/* top: 28px; */
		top: 26px;
	}
	.header_menuArea.is__active::before,
	.header_menuArea.is__active::after {
		/* top: 24px; */
		top: 20px;
	}
}



/* ----- グローバルナビ（ハンバーガー・フッター・404） ----- */
.gNav {
	display: none;
}

.allNav_navArea {
	justify-content: center;
	display: grid;
	/* grid-template-columns: repeat(5, auto); */
	grid-template-columns: repeat(4, auto);
}

.allNav_nav {
	margin-left: 2.917vw;
}
/* .allNav_nav:nth-of-type(2n + 1) {
	margin-left: 0;
} */

.allNav_nav a:hover {
	opacity: .5;
}

.allNav_nav > li:not(.allNav_nav_login) {
	position: relative;
	padding-left: 16px;
}
.allNav_nav > li:not(.allNav_nav_login)::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: .5em;
	width: 3px;
	height: 18px;
	background-color: var(--c_text);
}
.allNav_nav > li:nth-of-type(n + 2) {
	margin-top: 16px;
}

.allNav_nav_child {
	margin-top: 16px;
}

.allNav_nav_child li {
	position: relative;
	font-size: 1.6rem;
}
.allNav_nav_child li:not(.allNav_nav_login)::before {
	content: "";
	display: block;
	position: absolute;
	left: -16px;
	top: calc(50% - 2px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--c_text);
}
.allNav_nav_child li:nth-of-type(n + 2) {
	margin-top: .5em;
}
.allNav_nav > li:not(.allNav_nav_login) > a {
	font-weight: var(--fw_b);
}

.allNav_nav_sns {
	display: flex;
	padding-left: 0 !important;
}
.allNav_nav_sns::before {
	content: none !important;
}

.allNav_nav_sns a {
	display: block;
	width: 32px;
	height: 32px;
	/* background-color: #ccc; */
	/* background: center center / contain no-repeat; */
	background: var(--bg_cc_contain);
}
.allNav_nav_sns a:nth-of-type(n + 2) {
	margin-left: 16px;
}

.allNav_nav_sns a.allNav_nav_sns_fb {
	background-image: url("../images/nav_fb.png");
}
.allNav_nav_sns a.allNav_nav_sns_ig {
	background-image: url("../images/nav_ig.png");
}
.fContent .allNav_nav_sns a.allNav_nav_sns_fb {
	background-image: url("../images/nav_fb_w.png");
}
.fContent .allNav_nav_sns a.allNav_nav_sns_ig {
	background-image: url("../images/nav_ig_w.png");
}

.allNav_nav_login a {
	display: block;
	position: relative;
	padding: 8px;
	border: 2px solid var(--c_text);
	border-radius: 3rem;
	text-align: center;
}
.allNav_nav_login a::before {
	content: "";
	display: block;
	position: absolute;
	left: 12px;
	top: calc(50% - 8px);
	width: 18px;
	height: 19px;
	background-color: var(--c_text);
	-webkit-mask: url("../images/icon-login.svg") no-repeat center center / contain;
	mask: url("../images/icon-login.svg") no-repeat center center / contain;
	vertical-align: middle;
}

/* フッター */
.fContent .allNav_navArea {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	justify-content: flex-end;
}

.fContent .allNav_nav a {
	color: var(--c_white);
}

.fContent .allNav_nav > li:not(.allNav_nav_login)::before,
.fContent .allNav_nav_child li:not(.allNav_nav_login)::before,
.fContent .allNav_nav_login a::before {
	background-color: var(--c_white);
}

.fContent .allNav_nav_login a {
	border-color: var(--c_white);
}

/* 404 */
/* .notFound_sitemap .allNav_navArea {
	justify-content: space-between;
} */

@media only screen and (max-width: 1480px) {
	.allNav_nav_login {
		width: 200px;
	}

	/* フッター */
	.fContent .allNav_navArea {
		/* grid-template-columns: repeat(3, auto); */
	}

	/* .fContent .allNav_nav:nth-of-type(4) {
		margin-left: 0;
	}
	.fContent .allNav_nav:nth-of-type(n + 4) {
		margin-top: 2.917vw;
	}
	.fContent .allNav_nav.allNav_nav_other {
		grid-column: 2 / 4;
	} */
}

@media only screen and (max-width: 1280px) {
	.fContent .allNav_navArea {
		grid-template-columns: repeat(2, auto);
	}

	.fContent .allNav_nav:nth-of-type(n + 3) {
		margin-top: 2.917vw;
	}
	.fContent .allNav_nav:nth-of-type(2n + 1) {
		margin-left: 0;
	}
}

@media only screen and (max-width: 1024px) {
	.allNav_navArea {
		/* grid-template-columns: repeat(3, auto); */
	}

	.allNav_nav {
		margin-left: 4.719vw;
	}
	/* .allNav_nav:nth-of-type(4) {
		margin-left: 0;
	} */
	/* .allNav_nav:nth-of-type(n + 3) {
		margin-top: 40px;
	} */

	/* .allNav_nav.allNav_nav_other {
		grid-column: 2 / 4;
	} */

	/* フッター */
	/* .fContent .allNav_navArea {
		grid-template-columns: auto;
	} */

	/* 404 */
	.notFound_sitemap .allNav_navArea {
		justify-content: center;
	}
}

@media only screen and (max-width: 880px) {
	.allNav_navArea {
		grid-template-columns: repeat(2, auto);
	}

	.allNav_nav:nth-of-type(2n + 1) {
		margin-left: 0;
	}
	.allNav_nav:nth-of-type(n + 3) {
		margin-top: 40px;
	}

	/* フッター */
	/* .fContent .allNav_navArea {
		grid-template-columns: repeat(2, auto);
	}

	.fContent .allNav_nav {
		margin-top: 16px;
		margin-left: 0;
	}
	.fContent .allNav_nav_forVisitor {
		margin-top: 0;
	}
	.fContent .allNav_nav.allNav_nav_about {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		margin-top: 0;
	}
	.fContent .allNav_nav.allNav_nav_guide {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.fContent .allNav_nav.allNav_nav_houseMaker {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		margin-top: 16px;
	}
	.fContent .allNav_nav.allNav_nav_other {
		grid-column: 2 / 3;
		grid-row: 1 / 6;
		margin-top: 0;
		margin-left: 4vw;
	}

	.fContent .allNav_nav_child {
		display: none;
	} */
}

@media only screen and (max-width: 816px) {
	.fContent .allNav_nav:not(.allNav_nav_other),
	.fContent .allNav_nav_other li:not(.allNav_nav_login) {
		display: none;
	}
/* }

@media only screen and (max-width: 767px) { */
	.allNav_navArea {
		grid-column: auto;
		grid-row: 2 / 3;
		justify-content: center;
	}

	.allNav_nav_login {
		display: block;
		width: 100%;
		margin-top: 40px !important;
	}

	.allNav_nav_login a {
		padding: 12px;
		border-radius: 4rem;
	}
	.allNav_nav_login a::before {
		left: 16px;
		top: calc(50% - 14px);
		width: 28px;
		height: 28px;
	}

	/* フッター */
	.fContent .allNav_navArea {
		grid-column: auto;
		grid-row: auto;
	}

	.fContent .allNav_nav:not(.allNav_nav_other),
	.fContent .allNav_nav_other li:not(.allNav_nav_login) {
		display: none;
	}

	.fContent .allNav_nav.allNav_nav_other {
		margin-left: 0;
	}

	.fContent .allNav_nav_login {
		width: 302px;
	}
}

@media only screen and (max-width: 640px) {
	.allNav_navArea {
		/* grid-template-columns: repeat(2, auto); */
	}

	/* .allNav_nav:nth-of-type(4) {
		margin-left: 5.834vw;
	} */
	.allNav_nav:nth-of-type(2n + 1) {
		margin-left: 0;
	}
	.allNav_nav:nth-of-type(n + 3) {
		margin-top: 40px;
	}
	.allNav_nav.allNav_nav_other {
		grid-column: auto;
	}
}

@media only screen and (max-width: 480px) {
	.allNav_navArea {
		grid-template-columns: repeat(1, auto);
	}

	.allNav_nav:nth-of-type(n + 2) {
		margin-top: 40px;
		margin-left: 0;
	}

	/* フッター */
	.notFound_sitemap .allNav_navArea {
		justify-content: flex-start;
	}
}


/* @media only screen and (max-width: 1024px) { */
	.spNav {
		/* display: none; */
		/* overflow-x: hidden; */
		overflow-y: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		padding: 80px 15px;
		background-color: rgba(255, 255, 255, .9);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}

	.spNav > ul {
		flex-direction: column;
		padding: 54px 0;
		/* -webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px); */
	}

	.spNav > ul > li {
		width: 100%;
		height: auto;
		text-align: center;
	}
/* } */

/* スマホメニューアイコン */
.gNavMenu {
	display: none;
}

@media only screen and (max-width: 1024px) {
	body.is__fix {
		position: fixed !important;
		width: 100%;
	}

	.gNav {
		position: relative;
	}
}


/* ----- フローティングバナー ----- */
.floating_bn {
	position: fixed;
	right: 8px;
	bottom: 160px;
	/* top: 70%; */
	z-index: 150;
	/* width: 300px; */
	width: 184px;
	transition: .15s linear;
}
.floating_bn.bn_hidden {
	animation: bn_fadeOut .2s;
	animation-fill-mode: both;
}
@keyframes bn_fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; display: none; }
}

.floating_bn.bn_scroll {
	opacity: .12;
}

.floating_bn a:hover {
	opacity: .5;
}

.floating_bn button {
	position: absolute;
	/* right: -16px;
	top: -16px; */
	right: 4px;
	top: 4px;
	/* width: 32px;
	height: 32px; */
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background-color: var(--c_navy);
	font-size: 0;
	transition: var(--transition);
}
.floating_bn button::before,
.floating_bn button::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background-color: var(--c_white);
}
.floating_bn button::before {
	transform: translate(-50%) rotate(45deg);
}
.floating_bn button::after {
	transform: translate(-50%) rotate(-45deg);
}
.floating_bn button:hover {
	background-color: var(--c_blue);
}

@media only screen and (max-width: 767px) {
	.floating_bn {
		/* right: 16px; */
		left: 50%;
		/* top: auto; */
		bottom: 0;
		/* width: 343px; */
		width: 71%;
		transform: translateX(-50%);
	}

	.floating_bn button {
		/* right: -16px; */
		left: -16px;
		top: -16px;
		width: 32px;
		height: 32px;
	}
	.floating_bn button::before,
	.floating_bn button::after {
		width: 16px;
	}
}



/* ----- フッター ----- */
/* 問い合わせ */
.footer_contactArea {
	padding: 80px;
	background: url("../images/footer_contact_bg.jpg") var(--bg_cc_cover);
}

.footer_contact {
	display: flex;
	/* flex-direction: column; */
	/* align-items: center; */
	justify-content: space-between;
	align-items: flex-start;
	width: 900px;
	margin: auto;
	color: #fff;
}

.footer_contact_title {
	font-size: var(--fz_lg);
	text-align: center;
}

.footer_contact_tel {
	display: flex;
	align-items: center;
	/* margin-top: 20px; */
	margin-top: 12px;
	font-weight: var(--fw_b);
	/* font-size: var(--fz_xxxl); */
	font-size: var(--fz_xl);
}
a.footer_contact_tel[href*="tel:"] {
	color: #fff;
}
.footer_contact_tel::before {
	content: "";
	/* width: 56px;
	height: 56px; */
	width: 48px;
	height: 48px;
	margin-right: 20px;
	background-color: #fff;
	-weblit-mask: url("../images/footer_contact_tel.svg") var(--bg_cc_contain);
	mask: url("../images/footer_contact_tel.svg") var(--bg_cc_contain);
}

.footer_contact_businessHours {
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin-top: 24px; */
	margin-top: 8px;
	text-align: center;
}

.footer_contact_businessHours span {
	/* margin-right: 8px; */
	margin-right: 12px;
	padding: 0 12px;
	border: 1px solid #fff;
	border-radius: 4px;
	font-size: 1.6rem;
	line-height: 1.65;
}

.footer_contact_mail_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 364px;
	/* width: 100%; */
	height: 72px;
	/* margin: 32px auto 0; */
	margin: 24px auto 0;
	padding-left: 28px;
	border-radius: 36px;
	background-color: var(--c_yellow);
	color: var(--c_text);
	font-size: var(--fz_md);
}
.footer_contact_mail_btn::before {
	content: "";
	width: 26px;
	height: 20px;
	position: absolute;
	left: 24px;
	top: 50%;
	background-color: var(--c_text);
	-webkit-mask: url("../images/footer_contact_mail.svg") var(--bg_cc_contain);
	mask: url("../images/footer_contact_mail.svg") var(--bg_cc_contain);
	transform: translateY(-50%);
}
.footer_contact_mail_btn:hover {
	/* opacity: .5; */
	background-color: var(--c_lightyellow);
	color: var(--c_text);
}

@media only screen and (max-width: 1080px) {
	.footer_contactArea {
		padding: 5.556vw 4.444vw;
		background: url("../images/footer_contact_bg.jpg") var(--bg_cc_cover);
	}

	.footer_contact {
		justify-content: space-around;
		width: 100%;
	}

	.footer_contact_title {
		font-size: var(--fz_md);
	}

	.footer_contact_tel {
		margin-top: 4px;
		/* font-size: var(--fz_xxl); */
	}

	.footer_contact_mail_btn {
		/* margin-top: 24px; */
		margin-top: 16px;
		font-size: var(--fz_base);
	}
}

@media only screen and (max-width: 880px) {
	.footer_contact {
		flex-direction: column;
		align-items: center;
		line-height: 1.7;
	}

	.footer_contact_title {
		font-weight: var(--fw_b);
		line-height: 1.45;
	}

	.footer_contact_tel {
		margin-top: 8px;
	}

	/* .footer_contact_mailArea { */
	.footer_contact > div:nth-of-type(2) {
		margin-top: 5.556vw;
	}

	.footer_contact_mail_btn {
		margin-top: 16px;
	}
}

@media only screen and (max-width: 500px) {
	.footer_contactArea {
		padding: 40px 15px;
	}

	.footer_contact_tel {
		justify-content: center;
		margin-top: 4px;
		font-size: var(--fz_xl);
	}
	.footer_contact_tel::before {
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}
	.footer_contact_mailArea {
		max-width: 364px;
		width: 100%;
	}

	.footer_contact_businessHours {
		/* flex-direction: column; */
		/* margin-top: 20px; */
	}

	/* .footer_contact_businessHours span {
		width: 100%;
		margin-right: 0;
		margin-bottom: 4px;
	} */

	/* .footer_contact_mailArea { */
	.footer_contact > div:nth-of-type(2) {
		width: 100%;
		margin-top: 40px;
	}

	.footer_contact_mail_btn {
		max-width: 364px;
		width: 100%;
		height: 64px;
		padding-left: 16px;
	}
}

/* .footer_contactArea {
	position: relative;
}
.footer_contactArea::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background-color: var(--c_navy);
}

.footer_contact {
	position: relative;
	width: 1180px;
	height: 318px;
	margin: auto;
	padding: 64px 0;
	border-radius: 12px;
	background-color: var(--c_yellow);
}
.footer_contact::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 196px;
	background-color: var(--c_white);
	transform: translateY(-50%);
}

.footer_contact > dl {
	width: 50%;
	text-align: center;
}

.footer_contact dt {
	font-size: 2.8rem;
}

.footer_contact_tel_num {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw_b);
	font-size: 4.4rem;
	line-height: 1.5;
}
.footer_contact_tel_num::before {
	content: "";
	width: 56px;
	height: 56px;
	margin-right: 20px;
	background-color: var(--c_text);
	-webkit-mask: url("../images/footer_contact_tel.svg") no-repeat center center / contain;
	mask: url("../images/footer_contact_tel.svg") no-repeat center center / contain;
}

.footer_contact_tel_title {
	display: inline-block;
	margin-right: .5em;
}

.footer_contact_mail_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 364px;
	height: 72px;
	margin: 32px auto 0;
	padding-left: 28px;
	border: 2px solid var(--c_text);
	border-radius: 36px;
	color: var(--c_text);
	font-size: 2.2rem;
}
.footer_contact_mail_btn a::before {
	content: "";
	width: 26px;
	height: 20px;
	position: absolute;
	left: 24px;
	top: 50%;
	background-color: var(--c_text);
	-webkit-mask: url("../images/footer_contact_mail.svg") no-repeat center center / contain;
	mask: url("../images/footer_contact_mail.svg") no-repeat center center / contain;
	transform: translateY(-50%);
}
.footer_contact_mail_btn a:hover {
	opacity: .5;
}

@media only screen and (max-width: 1260px) {
	.footer_contact {
		width: calc(100% - 80px);
	}
}

@media only screen and (max-width: 1024px) {
	.footer_contact {
		flex-direction: column;
		height: auto;
		padding: 40px 0;
	}
	.footer_contact::before {
		content: none;
	}

	.footer_contact_tel_time {
		margin-top: 8px;
	}

	.footer_contact > dl {
		width: 100%;
	}
	.footer_contact_mail {
		margin: 32px 0 16px;
	}

	.footer_contact_mail_btn a {
		margin-top: 8px;
	}
}

@media only screen and (max-width: 767px) {
	.footer_contact {
		width: calc(100% - 30px);
	}

	.footer_contact dt {
		font-size: 2.2rem;
	}

	.footer_contact_tel_title {
		display: block;
		margin-right: 0;
	}

	.footer_contact_tel_num {
		font-size: 3.4rem;
	}
	.footer_contact_tel_num::before {
		content: "";
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}

	.footer_contact_tel_num a {
		color: var(--c_text);
	}

	.footer_contact_mail {
		margin-bottom: 24px;
	}

	.footer_contact_mail_btn a {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 560px) {
	.footer_contact {
		padding: 24px 0;
	}

	.footer_contact dt {
		font-size: 1.8rem;
		font-weight: var(--fw_b);
	}

	.footer_contact_tel_num {
		font-size: 2.8rem;
		line-height: 1.5;
	}
	.footer_contact_tel_num::before {
		width: 32px;
		height: 32px;
		margin-right: 8px;
	}

	.footer_contact_tel_time {
		margin-top: 2px;
		font-size: 1.5rem;
		line-height: 1.5;
	}

	.footer_contact_mail {
		margin: 20px 0 8px;
	}

	.footer_contact_mail_btn a {
		width: calc(100% - 56px);
		height: 64px;
		margin-top: 4px;
		font-size: 1.6rem;
	}
} */

/* ナビゲーション */
.footerArea {
	padding: 80px 0;
	background-color: var(--c_navy);
}

.fContent {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr auto;
	color: var(--c_white);
}

.fContect_logo {
	width: 302px;
}

.fContect_logo + .fContect_access {
	margin-top: 2px;
	font-style: normal;
}

@media only screen and (max-width: 1480px) {
	.fContect_logo + .fContect_access {
		margin-top: 1em;
	}
	.fContect_access_br {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.footerArea {
		padding: 48px 0;
	}

	.fContent {
		grid-template-columns: auto;
		grid-template-rows: repeat(3, auto);
		justify-content: center;
	}
}

/* PAGE TOP */
.pageTop {
	display: none;
	position: fixed;
	/* right: 8px;
	bottom: 8px; */
	right: .417vw;
	bottom: .417vw;
	z-index: 1000;
	width: 54px;
	height: 54px;
}

.pageTop a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	/* background: var(--c_yellow) url("../images/pagetop.png") center center no-repeat; */
	border-radius: 50%;
	background-color: var(--c_yellow);
	/* background-size: 24px 14px; */
	text-indent: 100%;
	white-space: nowrap;
}
.pageTop a::before {
	content: "";
	display: block;
	position: absolute;
	left: calc(50% - 8px);
	top: calc(50% - 4px);
	width: 16px;
	height: 16px;
	border-top: 2px solid var(--c_text);
	border-right: 2px solid var(--c_text);
	transform: rotate(-45deg);
}
.pageTop a:active {
	background-color: var(--c_lightyellow);
}
@media print, screen and (min-width: 1025px) {
	.pageTop a:hover {
		background-color: var(--c_lightyellow);
	}
}

@media only screen and (max-width: 1200px) {
	.pageTop {
		width: 44px;
		height: 44px;
	}

	.pageTop a::before {
		left: calc(50% - 6px);
		top: calc(50% - 3px);
		width: 12px;
		height: 12px;
	}
}

@media only screen and (max-width: 500px) {
	.pageTop {
		width: 40px;
		height: 40px;
	}
}


/* コピーライト */
.copy {
	font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
	.copy {
		margin-top: 40px;
		text-align: center;
	}
}



/* ==================================================
   印刷
-------------------------------------------------- */
@page {
	margin: 10mm;
	size: 210mm 297mm; /* A4縦サイズの場合 */
}

@media print {
	* {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
		zoom: .8; /* なるべく多くのブラウザで切れないようにするため */
	}

	/* ----- 改ページをいれる場合 ----- */
	/* 各セクションで改ページが行われるようにしています */
	/* section {
		page-break-before: always;
	} */

	/* 特定のセクション（section.new-none）では改ページを入れない場合の指定 */
	section.new-none:not(:root) {
		page-break-before: avoid;
	}

	/* 特定の場所（.new-page）で改ページを入れたいときの指定 */
	.new-page {
		page-break-before: always;
	}
}