@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root {
	--black: #333333;
	--mainColor: #41b04d;
	--accentColor: #004ea2;
	--lightGray: #f8f8f8;
	--gray: #e8e8e8;
	--darkGray: #b1b1b1;
	--pink: #d17389;
	--purple: #a68dae;
	--green: #5eb0ad;

	/* ベースフォントが16pxの場合 */
	--fontSize10: .625rem;
	--fontSize11: .687rem;
	--fontSize12: .75rem;
	--fontSize13: .812rem;
	--fontSize14: .875rem;
	--fontSize15: .937rem;
	--fontSize16: 1rem;
	--fontSize17: 1.062rem;
	--fontSize18: 1.125rem;
	--fontSize19: 1.187rem;
	--fontSize20: 1.25rem;
	--fontSize21: 1.312rem;
	--fontSize22: 1.375rem;
	--fontSize23: 1.437rem;
	--fontSize24: 1.5rem;
	--fontSize25: 1.562rem;
	--fontSize26: 1.625rem;
	--fontSize27: 1.687rem;
	--fontSize28: 1.75rem;
	--fontSize29: 1.812rem;
	--fontSize30: 1.875rem;
	--fontSize31: 1.937rem;
	--fontSize32: 2rem;
	--fontSize33: 2.062rem;
	--fontSize34: 2.125rem;
	--fontSize35: 2.187rem;
	--fontSize36: 2.25rem;
	--fontSize37: 2.312rem;
	--fontSize38: 2.375rem;
	--fontSize39: 2.437rem;
	--fontSize40: 2.5rem;
	--fontSize41: 2.562rem;
	--fontSize42: 2.625rem;
	--fontSize43: 2.687rem;
	--fontSize44: 2.75rem;
	--fontSize45: 2.812rem;
	--fontSize46: 2.875rem;
	--fontSize47: 2.937rem;
	--fontSize48: 3rem;
	--fontSize49: 3.062rem;
	--fontSize50: 3.125rem;

	/* ベースフォント18pxの場合 */
	/* --fontSize10: 0.555rem;
	--fontSize11: 0.611rem;
	--fontSize12: 0.666rem;
	--fontSize13: 0.722rem;
	--fontSize14: 0.777rem;
	--fontSize15: 0.833rem;
	--fontSize16: 0.888rem;
	--fontSize17: 0.944rem;
	--fontSize18: 1rem;
	--fontSize19: 1.055rem;
	--fontSize20: 1.111rem;
	--fontSize21: 1.166rem;
	--fontSize22: 1.222rem;
	--fontSize23: 1.277rem;
	--fontSize24: 1.333rem;
	--fontSize25: 1.388rem;
	--fontSize26: 1.444rem;
	--fontSize27: 1.5rem;
	--fontSize28: 1.555rem;
	--fontSize29: 1.611rem;
	--fontSize30: 1.666rem;
	--fontSize31: 1.722rem;
	--fontSize32: 1.777rem;
	--fontSize33: 1.833rem;
	--fontSize34: 1.888rem;
	--fontSize35: 1.944rem;
	--fontSize36: 2rem;
	--fontSize37: 2.055rem;
	--fontSize38: 2.111rem;
	--fontSize39: 2.166rem;
	--fontSize40: 2.222rem;
	--fontSize41: 2.277rem;
	--fontSize42: 2.333rem;
	--fontSize43: 2.388rem;
	--fontSize44: 2.444rem;
	--fontSize45: 2.5rem;
	--fontSize46: 2.555rem;
	--fontSize47: 2.611rem;
	--fontSize48: 2.666rem;
	--fontSize49: 2.722rem;
	--fontSize50: 2.777rem; */

	/* 基準幅設定 */
	--vw-base: 1920;
}

/* ******************************************************************************************
	ベースフォント設定
****************************************************************************************** */
html {
	font-size: 16px;
	/* ベースフォント */
	scroll-behavior: smooth;
	overflow-x: hidden;
}



/* ******************************************************************************************
	body設定
****************************************************************************************** */
body {
	display: grid;
	/* フッター浮き上がり対策 */
	grid-template-rows: auto 1fr auto;
	/* フッター浮き上がり対策 */
	grid-template-columns: 100%;
	/* フッター浮き上がり対策 */
	min-height: 100vh;
	/* フッター浮き上がり対策 */
	color: var(--black);
	line-height: 1.5;
	font-family: "M PLUS Rounded 1c", sans-serif;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	position: relative;
	/* 追従サイドボタンの基準設定 */
	background-image: url(../img/common/bg.png);
	overflow-x: hidden;
}

p,
a,
span,
li,
dt,
dd,
th,
td,
label,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
figcaption,
caption,
time,
.breadcrumbs,
address {
	transform: rotate(0.03deg);
	transform: rotateZ(0.03deg);
	z-index: 1;
}

th,
td {
	font-family: "M PLUS 1", sans-serif;
	transform: initial;
}

@media (max-width: 576px) {
	body {
		padding-bottom: 57px;
	}
}

/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby) {
	line-height: 2;
}

/* ******************************************************************************************
	画像設定
****************************************************************************************** */
img {
	vertical-align: bottom;
	/* 余白防止 */
	max-width: 100%;
	/* 画像のデフォルトサイズ */
	height: auto;
	object-fit: cover;
}

/* ******************************************************************************************
	フォーム設定（適宜設定）
****************************************************************************************** */
select {
	-webkit-appearance: auto;
	appearance: auto;
	/* デフォルトの矢印を表示 */
}

select:hover {
	cursor: pointer;
}

input {
	border: 1px solid rgb(0 0 0 / 20%);
}

[type="button"],
[type="reset"],
[type="submit"] {
	padding: 0 .5em;
	border: none;
	background-color: var(--mainColor);
	color: var(--black);
	cursor: pointer;
}

/* ******************************************************************************************
	リンク設定
****************************************************************************************** */
a {
	display: inline-block;
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: .2rem;
	text-decoration-thickness: 1px;
	text-decoration-skip-ink: none;
}

a:hover,
a:focus {
	text-underline-offset: .2rem;
	opacity: .8;
}

/* ******************************************************************************************
	フォーカス設定
****************************************************************************************** */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
	outline: 3px solid #000;
	outline-offset: 2px;
}

/* ******************************************************************************************
	リスト設定
****************************************************************************************** */
ol {
	list-style: decimal;
	/* リセットCSS打ち消し */
}

/* ******************************************************************************************
	電話番号設定（576px以下タップ有効化）
****************************************************************************************** */
/* タップ電話 */
a[href^="tel:"] {
	display: inline-block;
	text-decoration: none;
	pointer-events: none;
}

@media screen and (max-width:576px) {
	a[href^="tel:"] {
		text-decoration: underline;
		cursor: pointer;
		pointer-events: auto;
		/* フォントサイズを変更する場合適宜修正 */
		/* font-size: 1.2rem; */
	}
}

/* ******************************************************************************************
	サイト幅設定（適宜設定）
****************************************************************************************** */
.ly_inner {
	width: 100%;
	max-width: calc(1200px + 20px);
	/* 基準幅 + 両padding余白分 */
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}

/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
/* .ly_section{
	padding-top: 3rem;
	padding-bottom: 3rem;
} */
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_englishJapaneseTitle {
	margin-bottom: 50px;
	padding: 10px 20px;
	text-align: center;
}

.el_englishJapaneseTitle_english {
	display: block;
	font-size: var(--fontSize40);
	font-family: "Times New Roman", Times, "serif";
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	カラーライン見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_colorLineTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}

.el_colorLineTitle_title {
	position: relative;
	padding: 0 30px;
	/* 見出しと線の余白 */
	background-color: var(--white);
	font-weight: bold;
	font-size: var(--fontSize21);
	text-align: center;
	z-index: 2;
	font-size: var(--fontSize32);
}

.el_colorLineTitle_line {
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
	opacity: .5;
	border-radius: var(--borderRadius3);
	background-color: var(--purple);
	z-index: 1;
}

.el_colorLineTitle_line::after,
.el_colorLineTitle_line::before {
	content: "";
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
}

.el_colorLineTitle_line::before {
	top: calc(50% - 8px);
	left: calc(50% + 10px);
	background-color: var(--pink);
}

.el_colorLineTitle_line::after {
	top: calc(50% + 8px);
	left: calc(50% + 20px);
	background-color: var(--green);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	ヘッダー
//////////////////////////////////////////////////////////////////////////////////////////////////// */
.ly_header {
	padding: 1.5rem;
	margin-right: 30px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}



/* デスクトップ表示（992px以上）でスクロール時に追従ヘッダー表示 */
@media screen and (min-width: 992px) {

	/* スクロール時の固定ヘッダー */
	.ly_header.is-scrolled {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		background-color: #fff;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin-right: 0;
		animation: slideDown 0.3s ease-in-out;
	}

	@keyframes slideDown {
		from {
			transform: translateY(-100%);
		}

		to {
			transform: translateY(0);
		}
	}

	h1.bl_header_name {
		display: none;
	}

	header.ly_header.is-scrolled .bl_header_name {
		display: block;
	}
}

.bl_gNavContainer {
	margin-left: auto;
}

.bl_header_name a {
	font-size: var(--fontSize22);
	text-decoration: none;
	display: flex;
	align-items: center;
	/* 文字と画像を縦位置揃え */
	gap: 8px;
	/* 画像と文字の間隔 */
	text-decoration: none;
}

.bl_header_icon {
	width: 35px;
	/* 好きなサイズに調整 */
	height: auto;
}


.bl_header_name_highlight {
	font-weight: bold;
}


@media (max-width: 576px) {
	.bl_header_icon {
		width: 25px;
	}

	.bl_header_name a {
		font-size: var(--fontSize18);
	}

	.ly_header {
		padding: 1rem .5rem;
	}
}

@media screen and (max-width: 1200px) {
	.bl_header_name a {
		font-size: var(--fontSize18);
	}
	.ly_header {
	padding: 1.5rem .75rem;
}
}




/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_gNavUnit {
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width:992px) {
	.bl_gNav_area {
		position: fixed;
		top: 0;
		right: -100%;
		overflow: auto;
		transition: .4s;
		width: 100%;
		max-width: 500px;
		background-color: #f2f5edf5;
		height: 100vh;
		visibility: hidden;
		padding: calc(70px + 20px) 20px 20px;
		/* calc(ハンバーガーメニュー高さ分 + 余白) */
		z-index: 3;
	}

	.is_active .bl_gNav_area {
		right: 0;
		visibility: visible;
	}

	.bl_gNav.is_open {
		left: 0;
		transition: all .6s;
	}

	.bl_gNav {
		overflow-x: hidden;
		overflow-y: auto;
		transition: all .6s;
		width: 100%;
	}

	.bl_gNavUnit {
		display: block;
		margin-bottom: 2rem;
	}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ======================================================================
	グローバルメニューのリスト
====================================================================== */
.bl_gNav_item {
	position: relative;
}

.bl_gNav_item_child a {
	padding: 1rem;
}

/* 採用ボタン */
.bl_gNav_item_recruit .bl_gNav_link {
	background-color: #d76933;
	position: relative;
	color: #fff;
	border-radius: 50vh;
	font-weight: initial;
}

/* 疑似要素でアイコンを追加 */
.bl_gNav_item_recruit .bl_gNav_link::before {
	content: "";
	display: inline-block;
	width: 20px;
	/* アイコンの幅 */
	height: 20px;
	/* アイコンの高さ */
	background: url("../img/icon/person.svg") no-repeat center / contain;
}

/* お問い合わせボタン */
.bl_gNav_item_contact .bl_gNav_link {
	background-color: var(--mainColor);
	color: #fff;
	border-radius: 50vh;
	font-weight: initial;
}

/* 疑似要素でアイコンを追加 */
.bl_gNav_item_contact .bl_gNav_link::before {
	content: "";
	display: inline-block;
	width: 20px;
	/* アイコンの幅 */
	height: 20px;
	/* アイコンの高さ */
	background: url("../img/icon/mail.svg") no-repeat center / contain;
}


.bl_gNav_item_recruit+.bl_gNav_item_contact {
	margin-left: 1em;
}


.bl_gNav_link {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	padding: .5rem 1.5rem;
	font-size: 1.1rem;
	color: var(--black);
	font-weight: bold;
	letter-spacing: 2px;
	font-size: var(--fontSize17);
	text-decoration: none;
	letter-spacing: 2px;
	gap: 3px;
}

.bl_gNav_link:is(:hover, :focus) {
	opacity: 1;
}

.bl_gNav_link:hover {
	color: var(--mainColor);
}

.bl_gNav_item.bl_gNav_item_recruit .bl_gNav_link:hover,
.bl_gNav_item.bl_gNav_item_contact .bl_gNav_link:hover {
	color: #fff;
	opacity: .8;
}


@media screen and (max-width:1300px) {
	.bl_gNav_link {
		padding: .5rem .75rem;
		font-size: var(--fontSize16);
	}
	.bl_gNav_item_recruit+.bl_gNav_item_contact {
    margin-left: .5em;
}
}

@media screen and (max-width:576px) {
	.bl_gNav_link {
		font-size: var(--fontSize15);
	}

	.bl_gNav_item_child a {
		padding: .75rem 0 .75rem 1rem;
		text-decoration: none;
		font-weight: 500;
	}
}


/* ------------------------------------------------------------
	子リスト
------------------------------------------------------------ */
@media screen and (min-width:992px) {
	.bl_gNav_item_child {
		/* display: grid; */
		opacity: 0;
		visibility: hidden;
		position: absolute;
		left: 0;
		background-color: #fff;
		padding: 2rem;
		width: 500px;
		z-index: 2;
		border-radius: 20px;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	}

	.bl_gNav_item_child.is-open {
		opacity: 1;
		visibility: visible;
	}

	.bl_gNav_item_child>li {
		border-bottom: dashed 1px #ccc;
	}

	.bl_gNav_item_child>li:last-child {
		border-bottom: none;
	}

	.bl_gNav_item_child a {
		text-decoration: none;
		font-weight: 500;
		display: block;
		position: relative;
		padding-right: 2.5rem;
		padding-left: 0;
		transition: all 0.3s ease;
	}

	.bl_gNav_item_child a::after {
		content: "→";
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 50%;
		background-color: #e5f2e8;
		color: #36a853;
		transition: all 0.3s ease;
		font-size: 1rem;
		right: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.bl_gNav_item_child a:hover,
	.bl_gNav_item_child a:focus {
		padding-left: 0.5rem;
	}

	.bl_gNav_item_child a:hover::after,
	.bl_gNav_item_child a:focus::after {
		right: -0.5rem;
		background-color: #36a853;
		color: #fff;
	}
}

@media screen and (max-width:992px) {
	.bl_gNav_item {
		width: 100%;
	}

	.bl_gNav_item a::after {
		content: "→";
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 50%;
		color: #36a853;
		transition: all 0.3s ease;
		font-size: 1rem;
		right: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.bl_gNav_item+.bl_gNav_item::before {
		content: none;
	}

	/* 親リンクのスタイル */
	.bl_gNav_link {
		position: relative;
		display: block;
		padding: 1rem;
		border-bottom: 1px solid #ccc;
	}

	.bl_gNav_item_recruit a,
	.bl_gNav_item_contact a {
		padding: .75rem 1rem;
		display: flex;
		align-items: center;
	}

	/* 親リンクに＋ボタンを追加 */
	.st_gNav_itemParent>.bl_gNav_link::after {
		content: "+";
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba(65, 176, 77, 0.2);
		border-radius: 50%;
		font-size: 18px;
		color: var(--mainColor);
		transition: all 0.3s ease;
		line-height: 1;
		padding: 0;
	}

	/* 展開時は−に変更 */
	.st_gNav_itemParent.is-open>.bl_gNav_link::after {
		content: "−";
		line-height: 1;
	}

	/* 子リストを初期状態で非表示 */
	.bl_gNav_item_child {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	/* 展開時に表示 */
	.st_gNav_itemParent.is-open .bl_gNav_item_child {
		max-height: 1000px;
	}

	.bl_gNav_item_child li {
		padding: 1rem 0 1rem 1rem;
		border-bottom: dashed 1px #ccc;
	}

	.bl_gNav_item_child li:last-child {
		border-bottom: none;
	}

	.bl_gNav_item_child a {
		text-decoration: none;
		font-weight: 500;
		display: block;
		position: relative;
		padding-right: 2.5rem;
		padding-left: 0;
		transition: all 0.3s ease;
	}

	.bl_gNav_item_child a::after {
		content: "→";
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 50%;
		color: #36a853;
		transition: all 0.3s ease;
		font-size: 1rem;
		right: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.bl_gNav_item_child a:hover,
	.bl_gNav_item_child a:focus {
		padding-left: 0.5rem;
	}

	.bl_gNav_item_child a:hover::after,
	.bl_gNav_item_child a:focus::after {
		right: -0.5rem;
		/* background-color: #36a853;
		color: #fff; */
	}

	.bl_gNav_item_recruit+.bl_gNav_item_contact {
		margin-left: 0;
	}

	.bl_gNav_item_recruit,
	.bl_gNav_item_contact {
		/* width: 48%; */
		display: inline-block;
		/* margin-top: 1rem; */
		padding: .5rem 0;
	}
	li.bl_gNav_item.bl_gNav_item_recruit {
    margin-top: 1rem;
}

	.bl_gNav_item.bl_gNav_item_recruit .bl_gNav_link::after,
	.bl_gNav_item.bl_gNav_item_contact .bl_gNav_link::after {
		content: none;
	}
}

@media (max-width: 576px) {
	.bl_gNav_item_child li {
		padding: .25rem 0 .25rem .25rem;
	}

	.bl_gNav_link {
		padding: 1rem 1rem 1rem 0;
	}

	/* .bl_gNav_link::after {
		content: "→";
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 50%;
		background-color: #ffffff;
		color: #36a853;
		transition: all 0.3s ease;
		font-size: 1rem;
		right: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	} */

	.bl_gNav_item_child a {
		font-size: var(--fontSize14);
	}

	.bl_gNav_item_recruit a::after,
	.bl_gNav_item_contact a::after {
		content: none;
	}

}

/* ============================================================
	ハンバーガーメニュー
============================================================ */
/* フォーカストラップ非表示 */
#js_focusTrapFirst,
#js_focusTrapEnd {
	display: none;
}

.el_trigger {
	display: none;
}

@media screen and (max-width:992px) {

	/* ハンバーガーメニューオープン時のみフォーカストラップ有効化 */
	.is_active #js_focusTrapFirst,
	.is_active #js_focusTrapEnd {
		display: block;
	}

	.el_trigger {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		transition: .2s;
		width: 60px;
		height: 60px;
		margin: 0;
		border: 2px solid var(--mainColor);
		background-color: var(--mainColor);
		cursor: pointer;
		z-index: 1000;
		border-radius: 0 0 0 10px;
	}

	.is_active .el_trigger .el_trigger_line {
		background-color: transparent;
	}

	.is_active .el_trigger .el_trigger_line::before {
		top: 0;
		transform: rotate(45deg);
	}

	.is_active .el_trigger .el_trigger_line::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.is_active .el_trigger .el_trigger_text::before {
		content: "閉じる";
	}

	.el_trigger_line {
		display: block;
		position: absolute;
		top: 18px;
		left: 50%;
		transform: translateX(-50%);
		transition: .4s;
		width: 35px;
		height: 2px;
		border-radius: 5px;
		background-color: #fff;
	}

	.el_trigger_line::before,
	.el_trigger_line:after {
		content: "";
		display: block;
		position: absolute;
		transition: inherit;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}

	.el_trigger_line::before {
		top: -10px;
	}

	.el_trigger_line:after {
		top: 10px;
	}

	.el_trigger_text {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}

	.el_trigger_text::before {
		content: "メニュー";
		color: #fff;
		font-weight: bold;
		font-size: 13px;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター
//////////////////////////////////////////////////////////////////////////////////////////////////// */


.bl_footer_logo {
	width: 166px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	text-align: center;
}

.bl_footer_name {
	font-size: var(--fontSize24);
	margin-bottom: 2rem;
}

.bl_footer_name_highlight {
	font-weight: bold;
	text-align: center;
}



.bl_footerContainerTop {
	position: relative;
	padding: 5rem 0 3rem 0;
}

/* .bl_footer_main{
	position: relative;
} */
/* 装飾 */
.bl_footerContainerTop::after,
.bl_footerContainerTop::before {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
}

.bl_footerContainerTop::before {
	width: 170px;
	height: 128px;
	background-image: url(../img/common/footer-left.png);
	bottom: 30px;
	left: 150px;
}

.bl_footerContainerTop::after {
	width: 162px;
	height: 258px;
	background-image: url(../img/common/footer-right.png);
	top: -23px;
	right: 0;
}


.bl_footerContainerBtm_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	font-size: var(--fontSize14);
}

.copy {
	text-align: end;
}

.bl_pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	/* 初期は非表示 */
	pointer-events: none;
	/* 非表示時はクリック不可 */
	transition: opacity 0.3s ease;
	background-color: var(--black);
	color: #fff;
	z-index: 1000;
	padding: 30px;
}

.bl_pageTop.js_showStyle {
	opacity: 1;
	/* 表示時はふわっと見える */
	pointer-events: auto;
	/* 表示時はクリック可能 */
}

.bl_footer_add {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
	font-weight: 500;
	font-size: var(--fontSize18);
}


.bl_footer_num {
	display: flex;
	gap: 2em;
}

@media (max-width: 576px) {
	.bl_footer_add {
		font-size: var(--fontSize14);
	}

	.bl_footerContainerBtm_wrap {
		flex-direction: column;
	}

	.bl_footerContainerTop {
		padding: 3rem 0 1.5rem 0;
	}

	.bl_footerContainerBtm_wrap>p {
		font-size: var(--fontSize14);
	}

	.copy {
		font-size: var(--fontSize12);
		margin: .5rem;
	}

	.bl_footer_logo_img {
		max-width: 110px;
	}
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	印刷用スタイル
//////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print {
	body {
		/* 背景色反映のため */
		-webkit-print-color-adjust: exact;
	}
}

/* ===================================
   FAQ タブスタイル
=================================== */
.faq-tabs {
	margin-bottom: 30px;
}

.faq-tab-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #e0e0e0;
}

.faq-tab-item {
	margin: 0;
	padding: 0;
}

.faq-tab-button {
	display: block;
	padding: .75rem 3rem;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	color: #4b4b4b;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.faq-tab-button:hover {
	color: #333;
	background-color: #f5f5f5;
}

.faq-tab-item.active .faq-tab-button {
	color: var(--mainColor);
	border-bottom-color: var(--mainColor);
	background-color: #fff;
}

.faq-tab-contents {
	position: relative;
}

.faq-tab-content {
	display: none;
}

.faq-tab-content.active {
	display: block;
}

.faq-empty {
	text-align: center;
	color: #999;
	font-style: italic;
	padding: 40px 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.faq-tab-nav {
		flex-direction: column;
	}

	.faq-tab-item {
		width: 100%;
	}

	.faq-tab-button {
		width: 100%;
		text-align: left;
		padding: 15px 20px;
		border-bottom: 1px solid #e0e0e0;
		border-right: none;
	}

	.faq-tab-item.active .faq-tab-button {
		border-bottom: none;
		border-left: none;
	}
}

/* ===================================
   施設ページ - スマホ用固定ボタン
=================================== */
.bl_facility-fixed-buttons {
	display: none;
	/* デスクトップでは非表示 */
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 0;
}

.bl_facility-fixed-buttons-inner {
	display: flex;
	max-width: 100%;
}

.bl_facility-fixed-button {
	/* flex: 1; */
	display: flex;
	align-items: center;
	padding: 12px 16px;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	border: none;
	outline: none;
}

a.bl_facility-fixed-button.bl_facility-fixed-button--phone {
	display: flex;
	width: 50%;
	text-decoration: none;
}

a.bl_facility-fixed-button.bl_facility-fixed-button--contact {
	width: 50%;
}

.bl_facility-fixed-button--phone {
	background: #d76933;
}

.bl_facility-fixed-button--phone:hover {
	background: #c2602f;
	color: #fff;
}

.bl_facility-fixed-button--contact {
	background: #555;
}

.bl_facility-fixed-button--contact:hover {
	background: #333;
	color: #fff;
}

.bl_facility-fixed-button-icon {
	flex-shrink: 0;
	margin-right: 12px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bl_facility-fixed-button-content {
	flex: 1;
	text-align: center;
}

.bl_facility-fixed-button-title {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 2px;
	position: relative;
	padding-left: 30px;
	/* アイコン分のスペース */
	width: fit-content;
	margin: 0 auto;
}

/* 電話アイコン（疑似要素） */
.bl_facility-fixed-button--phone .bl_facility-fixed-button-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" fill="white"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* お問い合わせアイコン（疑似要素） */
.bl_facility-fixed-button--contact .bl_facility-fixed-button-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" fill="white"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.bl_facility-fixed-button-info {
	font-size: 11px;
	line-height: 1.2;
	opacity: 0.9;
}

.bl_facility-fixed-button-hours {
	margin-bottom: 1px;
}

.bl_facility-fixed-button-closed {
	font-size: 10px;
}

/* スマホサイズでのみ表示 */
@media (max-width: 768px) {
	.bl_facility-fixed-buttons {
		display: block;
	}

	/* メインコンテンツの下部にパディングを追加（固定ボタンと重ならないように） */
	body.page-template-page-facility main {
		padding-bottom: 80px;
	}
}

/* より小さい画面での調整 */
@media (max-width: 576px) {
	/* .bl_facility-fixed-button {
		padding: 20px 12px;
	} */

	.bl_facility-fixed-button-icon {
		margin-right: 8px;
		width: 25px;
		height: 25px;
	}

	.bl_facility-fixed-button-title {
		font-size: var(--fontSize14);
	}

	.bl_facility-fixed-button-info {
		font-size: 12px;
	}

	.bl_facility-fixed-button-closed {
		font-size: 12px;
	}

	.bl_facility-fixed-buttons {
		display: block;
		height: 57px;
	}
}