@charset "UTF-8";
/* CSS Document */

:root {
	/* メインカラー */
	--color-primary: #1B395A;
	--color-primary-light: #E8EFF5;
	--color-secondary: #1E806F;

	/* テキストカラー */
	--color-text: #1B395A;
	--color-text-secondary: #333;

	/* 背景色 */
	--color-bg: #ffffff;
	--color-bg-dark: #1B395A;
	--color-bg-light: #E8EFF5;

	/* ボーダーカラー */
	--color-border: #DFDFDF;

	/* リンクカラー */
	--color-link: #006FFF;
	--color-link-hover: #348cff;

	/* 最大幅 */
	--w-max-xs: 600px;
	--w-max-s: 960px;
	--w-max-s2: 1040px;
	--w-max-m: 1200px;
	--w-max-l: 1440px;
}

html {
	font-size: 20px;
}
@media (max-width: 1800px) {
	html {
		font-size: 18px;
	}
}
@media (max-width: 1024px) {
	html {
		font-size: 16px;
	}
}
@media (max-width: 700px) {
	html {
		font-size: 14px;
	}
}
body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
}


.btn1 {
	display: inline-block;
	padding: 10px 30px;
	background-color: var(--color-bg-dark);
	border: none;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	min-width: 400px;
	text-align: center;
	cursor: pointer;
}
.btn1.big {
	font-size: 1.4rem;
	padding: 20px 60px;
	min-width: 500px;
	border-radius: 50px;
}
.btn1.yajirusi-sita {
	position: relative;
}
.btn1.yajirusi-sita::before {
	content: '';
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: #fff;
	border-radius: 50%;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.btn1.yajirusi-sita::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 22px;
	width: 10px;
	height: 10px;
	line-height: 1;
	border: 0.1em solid var(--color-primary);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translate(-75%, -75%) rotate(135deg);
}
.btn1.big.yajirusi-sita {
	padding-right: 70px;
}
.btn1.big.yajirusi-sita::before {
	width: 35px;
	height: 35px;
}
.btn1.big.yajirusi-sita::after {
	width: 12px;
	height: 12px;
}
@media (max-width: 600px) {
	.btn1 {
		min-width: auto;
	}
	.btn1.big {
		min-width: auto;
		padding: 15px 40px;
		font-size: 1.2rem;
	}
	.btn1.big.yajirusi-sita::before {
		width: 30px;
		height: 30px;
	}
	.btn1.big.yajirusi-sita::after {
		width: 10px;
		height: 10px;
	}
}

.marker {
    background: linear-gradient(transparent 30%, #FFFFA2 30%);
}

form {
	display: block;
}
form input[type="text"],
form input[type="date"],
form input[type="time"],
form input[type="tel"],
form input[type="email"] {
	width: 90%;
	display: inline-block;
	max-width: 340px;
	padding: 10px 10px;
	font-size: 18px;
	border: 1px solid var(--color-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
form input[type="date"] {
	max-width: 220px;
}
form input[type="time"] {
	max-width: 120px;
	padding: 9px 10px;
}
form input[type="checkbox"] {
	width: 35px;
	height: 35px;
	vertical-align: sub;
	border: 1px solid var(--color-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
form input[type="radio"] {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	border: 1px solid var(--color-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
	display: inline-block;
}
form select {
	width: auto;
	display: inline-block;
	padding: 10px 10px;
	font-size: 18px;
	border: 1px solid var(--color-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
form label.big-label {
	font-size: 22px;
	font-weight: bold;
}
form textarea {
	width: 90%;
	height: 235px;
	display: inline-block;
	padding: 10px 10px;
	font-size: 18px;
	border: 1px solid var(--color-border);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 700px) {
	form input[type="checkbox"] {
		width: 25px;
		height: 25px;
	}
	form label.big-label {
		font-size: 20px;
	}
	form textarea {
		height: 180px;
	}
}

.w-max-xs {
	max-width: var(--w-max-xs);
	margin-left: auto;
	margin-right: auto;
}
.w-max-s {
	max-width: var(--w-max-s);
	margin-left: auto;
	margin-right: auto;
}
.w-max-m {
	max-width: var(--w-max-m);
	margin-left: auto;
	margin-right: auto;
}
.w-max-l {
	max-width: var(--w-max-l);
	margin-left: auto;
	margin-right: auto;
}



/* 全体のレイアウト */
#site-wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.js-notopscrolled #site-wrapper {
	padding-top: 82px;
}
.body-home #site-wrapper {
	padding-top: 0px;
}

/* ヘッダー */
#site-header {
	width: 100%;
	background: var(--color-bg-dark);
	color: #fff;
	padding: 0;
	transition: all 0.4s ease;
}
.js-notopscrolled #site-header {
	position: fixed;
	z-index: 990;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	color: var(--color-text);
	box-shadow: 0 2px 4px rgba(27, 57, 90, 0.2);
}
.body-home #site-header {
	background-color: rgba(255, 255, 255, 0.95);
	color: var(--color-text);
	box-shadow: 0 2px 4px rgba(27, 57, 90, 0.2);
}
.js-notopscrolled.js-downscrolled #site-header {
	top: -100%;
}

#site-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 82px;
	max-width: 100vw;
	padding: 0 16px;
}
.js-notopscrolled #site-header .header-inner {
	height: 62px;
}
.body-home #site-header .header-inner {
	height: 62px;
}
#site-header .header-inner div,
#site-header .header-inner nav {
	position: relative;
	z-index: 2;
}


#site-header .header-logo {
	display: flex;
	align-items: center;
	margin-right: auto;
}
#site-header .header-logo img {
	height: 48px;
	width: auto;
	margin-right: 8px;
}
#site-header .header-logo img.c2 {
	display: none;
}
.js-notopscrolled #site-header .header-logo img.c1,
.body-home #site-header .header-logo img.c1 {
	display: none;
}
.js-notopscrolled #site-header .header-logo img.c2,
.body-home #site-header .header-logo img.c2 {
	display: block;
}

#site-header .header-nav {
	margin-right: 24px;
}

#site-header .header-nav ul {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#site-header .header-nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	position: relative;
}
#site-header .header-nav a::before {
	content: '';
	display: block;
	width: 0px;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}
#site-header .header-nav a:hover::before,
#site-header .header-nav .current a::before {
	width: 30px;
}

.js-notopscrolled #site-header .header-nav a,
.body-home #site-header .header-nav a {
	color: var(--color-text);
}
.js-notopscrolled #site-header .header-nav a::before,
.body-home #site-header .header-nav a::before {
	background-color: var(--color-text);
}
@media (max-width: 1400px) {
	#site-header .header-nav ul {
		gap: 16px;
	}
	#site-header .header-nav a {
		font-size: 14px;
	}
}
@media (max-width: 900px) {
	#site-header .header-nav {
		display: none;
	}
}

#site-header .header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

#site-header .btn {
	border-radius: 24px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s;
}
@media (max-width: 1200px) {
	#site-header .btn {
		display: none !important;
	}
}

#site-header .btn.contact {
	background: var(--color-secondary);
	color: #fff;
}

#site-header .btn.tel {
	background: var(--color-secondary);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 2px;
}

#site-header .menu-btn {
	background: none;
	border: none;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	width: 44px;
	height: 44px;
	position: relative;
}
.js-notopscrolled #site-header .menu-btn,
.body-home #site-header .menu-btn {
	color: var(--color-text);
}

#site-header .menu-icon {
	display: block;
	width: 24px;
	height: 24px;
	position: relative;
	margin: 0;
}

#site-header .menu-icon::before,
#site-header .menu-icon::after {
	content: '';
	display: block;
	width: 24px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 0;
}
.js-notopscrolled #site-header .menu-icon::before,
.body-home #site-header .menu-icon::before,
.js-notopscrolled #site-header .menu-icon::after,
.body-home #site-header .menu-icon::after {
	background: var(--color-text);
	transition: all 0.3s ease;
}

#site-header .menu-icon::before {
	top: 6px;
}

#site-header .menu-icon::after {
	bottom: 6px;
}
/* menu-open時の×印アニメーション */
.js-menu-open #site-header .menu-icon::before {
	top: 11px;
	transform: rotate(45deg);
}

.js-menu-open #site-header .menu-icon::after {
	bottom: 11px;
	transform: rotate(-45deg);
}


#site-menu {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: var(--color-bg-light);
	opacity: 0;
	left: 0;
	top: 0;
	z-index: -10;
	transition: opacity 0.5s ease;
	overflow: hidden;
}
.js-menu-open #site-menu {
	opacity: 1;
	z-index: 999;
}
#site-menu .menu-close-btn {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	background-color: var(--color-primary);
	cursor: pointer;
	border: none;
}
#site-menu .menu-close-btn .menu-close-icon {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#site-menu .menu-close-btn .menu-close-icon::before,
#site-menu .menu-close-btn .menu-close-icon::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
}
#site-menu .menu-close-btn .menu-close-icon::before {
	top: 11px;
	transform: rotate(45deg);
}
#site-menu .menu-close-btn .menu-close-icon::after {
	bottom: 11px;
	transform: rotate(-45deg);
}
@media (max-width: 600px) {
	#site-menu .menu-close-btn {
		width: 40px;
		height: 40px;
		top: 20px;
		right: 20px;
	}	
}



#site-menu .global-nav {
	display: flex;
	justify-content: space-between;
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	align-items: stretch;
}
#site-menu .menu-l {
	width: 70%;
	display: flex;
	flex-direction: column;
}
#site-menu .menu-r {
	width: 30%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 120px 30px 0 30px;
	box-sizing: border-box;
	border-left: 1px solid #e0e6ed;
}
#site-menu .menu-logo {
	width: 120px;
	margin: 30px 0 0 5%;
}
#site-menu .menu-logo-img2 {
	display: none;
}
#site-menu .menu-home {
	width: 120px;
	margin: 60px 0 0 5%;
}
@media (max-width: 1400px) {
	#site-menu .menu-l {
		width: 60%;
	}
	#site-menu .menu-r {
		width: 40%;
	}
}
@media (max-width: 1000px) {
	#site-menu .menu-home {
		width: 100px;
		margin-top: 40px;
	}
}
@media (max-width: 600px) {
	#site-menu .menu-logo {
		width: 173px;
		margin-top: 20px;
	}
	#site-menu .menu-logo-img1 {
		display: none;
	}
	#site-menu .menu-logo-img2 {
		display: block;
	}
	#site-menu .menu-home {
		width: 80px;
	}
}


/* メニューリンク部分 */
#site-menu .menu-links {
	width: 90%;
	margin: 60px auto 0;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    gap: 30px;
    flex: 1;
}
#site-menu .menu-col {
    min-width: 220px;
	width: calc((100% - 90px) / 4);
}
#site-menu .menu-col-title {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-primary);
    padding: 0 10px 8px;
}
#site-menu .menu-col-title img {
    width: 100%;
	max-width: 220px;
}
#site-menu .menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 10px;
}
#site-menu .menu-col ul li {
    margin-bottom: 8px;
}
#site-menu .menu-col ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.2s;
	letter-spacing: -0.03em;
}
#site-menu .menu-col ul li a:hover {
    text-decoration: underline;
}
#site-menu .menu-col ul li.current > a::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-primary);
	margin-left: 10px;
}
#site-menu .menu-col ul.menu-sub {
    margin-left: 12px;
    margin-top: 4px;
}
#site-menu .menu-col ul.menu-sub li::before {
	content: '＿';
	display: inline-block;
	color: var(--color-primary);
}
#site-menu .menu-col ul.menu-sub li a {
    font-size: 18px;
}
@media (max-width: 1900px) {
	#site-menu .menu-col ul li a {
		font-size: 16px;
	}
	#site-menu .menu-col ul.menu-sub li a {
		font-size: 14px;
	}
}
@media (max-width: 1000px) {
	#site-menu .menu-links {
		gap: 20px;
		justify-content: center;
		width: 95%;
		margin-top: 30px;
	}
	#site-menu .menu-col {
		min-width: 195px;
	}
	#site-menu .menu-col ul li a {
		font-size: 14px;
	}
	#site-menu .menu-col ul.menu-sub li a {
		font-size: 12px;
	}
}
@media (min-width: 601px) {
	#site-menu .menu-col-title .menu-col-title-btn {
		display: none;
	}
}
@media (max-width: 600px) {

	#site-menu .menu-links {
		flex-direction: column;
		width: 90%;
	}
	#site-menu .menu-col {
		min-width: 100%;
	}
	
	#site-menu .menu-col-title {
		position: relative;
	}
	#site-menu .menu-col-title .menu-col-title-btn {
		content: '';
		display: block;
		width: 25px;
		height: 25px;
		border-radius: 50%;
		border: none;
		background-color: #fff;
		position: absolute;
		bottom: 10px;
		right: 0;
	}
	#site-menu .menu-col-title .menu-col-title-btn::before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		color: var(--color-primary);
		line-height: 1;
		width: 8px;
		height: 8px;
		border: 0.16em solid currentColor;
		border-left: 0;
		border-bottom: 0;
		box-sizing: border-box;
		transform: translateX(-100%) translateY(-75%) rotate(135deg);
		position: absolute;
		top: 50%;
		right: 0px;
	}
	#site-menu .open .menu-col-title .menu-col-title-btn::before {
		transform: translateX(-100%) translateY(-25%) rotate(-45deg);
	}
	#site-menu .menu-col-title img {
		max-width: 180px;
	}
	#site-menu .menu-col ul li a {
		font-size: 15px;
	}
}


/* 右側バナー・SNSエリア */
#site-menu .menu-bnr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
}
#site-menu .menu-bnr-list li {
    margin-bottom: 30px;
	text-align: center;
}
#site-menu .menu-bnr-list img {
    width: 100%;
	max-width: 430px;
}
#site-menu .menu-bottom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	width: 100%;
    align-items: center;
}
#site-menu .menu-bottom-list li {
    margin: 0;
}
#site-menu .menu-bottom-list a {
    color: #1b395a;
    font-size: 16px;
    text-decoration: none;
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 4px;
}

/* HOMEタイトル画像 */
#site-menu .menu-links > .menu-col-title {
    margin-bottom: 32px;
    border: none;
    font-size: 32px;
    justify-content: flex-start;
}

@media (max-width: 768px) {
	#site-menu .global-nav {
		flex-direction: column;
	}	
	#site-menu .menu-l {
		width: 100%;
	}
	#site-menu .menu-r {
		width: 100%;
		background-color: var(--color-bg-light);
		padding-top: 30px;
		padding-bottom: 50px;
	}
	#site-menu .menu-bottom-list li:first-child {
		width: 100%;
		text-align: center;
	}
}
@media (max-width: 600px) {
	#site-menu .menu-bnr-list {
		margin-bottom: 10px;
	}
	#site-menu .menu-bnr-list li {
		margin-bottom: 10px;
	}
	#site-menu .menu-bottom-list {
		gap: 20px 30px;
	}
}






/* メインコンテンツエリア */
#site-contents {
	flex: 1;
}

/* メインコンテンツ */
#site-main {
	width: 100%;
}

#site-main-inner {
	width: 100%;
	padding: 80px 0 0px;
}
#site-main-inner.w-default {
	width: 90%;
	max-width: var(--w-max-s);
	margin: 0 auto;
}
@media (max-width: 768px) {
	#site-main-inner {
		padding: 60px 0 0px;
	}
}
@media (max-width: 700px) {
	#site-main-inner {
		padding: 50px 0 0px;
	}
}

/* フッター */
#site-footer {
	background: #F3F3F3;
	color: var(--color-text);
	font-size: 14px;
	letter-spacing: 0.02em;
	margin-top: 100px;
}

#site-footer .footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#site-footer .footer-logo-block {
	text-align: center;
	padding: 50px 0;
}

#site-footer .footer-logo {
	width: 120px;
}

#site-footer .footer-title {
	font-size: 16px;
	font-family: "noto serif JP", serif;
	font-weight: 600;
	margin-bottom: 4px;
	letter-spacing: 0.08em;
	position: relative;
	max-width: 500px;
	margin: 35px auto 0 auto;
}

#site-footer .footer-title::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #999;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
}

#site-footer .footer-title span {
	background: #F3F3F3;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}


#site-footer .footer-brand {
	font-size: 12px;
	font-family: "noto serif JP", serif;
}
#site-footer .footer-brand img {
	width: 172px;
	margin-top: 8px;
}

#site-footer .footer-address {
	margin-top: 18px;
}

#site-footer .footer-tel {
	margin-top: 25px;
	font-size: 26px;
}
#site-footer .footer-tel a {
	color: var(--color-text);
	text-decoration: none;
}

#site-footer .footer-tel .footer-time {
	font-size: 13px;
	margin-top: 2px;
}

#site-footer .footer-holiday {
	margin-top: 35px;
}
#site-footer .footer-holiday p {
	display: inline-block;
}
#site-footer .footer-holiday p:first-child {
	margin-right: 1rem;
}

#site-footer .footer-links-block {
	width: 100%;
	background: #F8F8F8;
	padding: 50px 0;
	border-top: 1px solid var(--color-border);
	overflow: hidden;
}

#site-footer .footer-links {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 57px;
}

#site-footer .footer-links a {
	text-decoration: none;
	color: var(--color-text);
}

#site-footer .footer-col {
	min-width: 180px;
}

#site-footer .footer-col-title {
	font-size: 20px;
	font-weight: 500;
	color: #3a4a4a;
	border-bottom: 2px solid #b7c3c3;
	margin-bottom: 10px;
	padding-bottom: 2px;
	letter-spacing: 0.04em;
}

#site-footer .footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#site-footer .footer-col ul li {
	margin-bottom: 7px;
}

#site-footer .footer-col ul.footer-sub {
	margin-top: 4px;
	margin-left: 10px;
}
#site-footer .footer-col ul.footer-sub li::before {
	content: '＿';
	display: inline-block;
	color: var(--color-primary);
}
#site-footer .footer-col ul.footer-sub a {
	font-size: 11px;
}

#site-footer .footer-col ul.footer-sub li {
	margin-bottom: 2px;
}

#site-footer .footer-bottom-block {
	width: 100%;
	background: #fff;
	padding: 16px 0;
}

#site-footer .footer-bottom {
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: var(--w-max-s);
	margin: 0 auto;
	font-size: 13px;
	gap: 24px;
}

#site-footer .footer-copyright {
	font-size: 16px;
	order: 1;
}

#site-footer .footer-policy {
	order: 2;
}

#site-footer .footer-policy a {
	color: var(--color-text);
	text-decoration: none;
}

@media (max-width: 1000px) {
	#site-footer .footer-links {
		gap: 24px;
	}

	#site-footer .footer-col {
		min-width: 140px;
	}
}

@media (min-width: 701px) {
	#site-footer .footer-copyright br {
		display: none;
	}
}
@media (max-width: 700px) {
	#site-footer {
		margin-top: 60px;
	}
	#site-footer .footer-logo-block {
		padding: 0px 0;
	}
	
	#site-footer .footer-inner {
		padding: 40px 0;
	}
	#site-footer .footer-address {
		margin-top: 30px;
	}
	#site-footer .footer-holiday p:first-child {
		margin-right: 0;
	}
	#site-footer .footer-holiday p {
		display: block;
	}
	#site-footer .footer-holiday p b {
		display: block;
		margin-top: 20px;
	}
	#site-footer .footer-tel .footer-time {
		font-size: 14px;
	}
	#site-footer .footer-links-block {
		display: none;
	}
	

	#site-footer .footer-col {
		min-width: 0;
		width: 100%;
		max-width: 320px;
	}

	#site-footer .footer-bottom {
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding: 12px 0 6px 0;
		align-items: flex-end;
	}
	#site-footer .footer-copyright {
		order: 2;
		width: 100%;
		text-align: center;
		margin-top: 10px;
		font-size: 12px;
	}
	
	#site-footer .footer-policy {
		order: 1;
		width: 100%;
		text-align: center;
	}
}


/* パンくずリスト */
.breadcrumb-wrap {
	width: 100%;
	background-color: var(--color-bg-dark);
	color: #6284A8;
	padding: 1px 16px 10px;
	margin-top: -1px;
}
.breadcrumb {
	list-style: none;
	display: flex;
	overflow-x: auto;
	gap: 3px 8px;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}
.breadcrumb li {
	font-size: 12px;
	white-space: nowrap;
}
.breadcrumb li::after {
	content: '>';
	margin-left: 10px;
}
.breadcrumb li:last-child::after {
	content: '';
}
.breadcrumb li a {
	color: #6284A8;
	text-decoration: none;
}

#site-main-header {
	background-color: var(--color-bg-dark);
	color: #fff;
	padding-top: 1px;
	margin-top: -1px;
}
#site-main-header .title-inner {
	width: 100%;
	margin: 0 auto;
}
#site-main-header .title-inner.home {
	width: 90%;
	max-width: var(--w-max-s);
	padding: 3px 0 3px;
}
#site-main-header .title-inner.home a {
	color: #fff;
	text-decoration: none;
	font-family: "noto serif JP", serif;
	display: inline-block;
	padding: 10px 40px 10px 0px;
	position: relative;
}
#site-main-header .title-inner.big {
	max-width: var(--w-max-m);
	padding: 60px 0 100px;
	position: relative;
}
#site-main-header .title-inner.big .midasi {
	font-size: 32px;
	font-family: "noto serif JP", serif;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	position: relative;
	z-index: 2;
}
#site-main-header .title-inner.big .midasi-sub {
	width: 98%;
	max-width: 1330px;
	position: absolute;
	bottom: 10px;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
#site-main-header .title-inner.small {
	padding: 10px 16px 35px;
}
#site-main-header .title-inner.small .midasi {
	font-size: 28px;
	line-height: 1.4;
	font-family: "noto serif JP", serif;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: justify;
}
@media (max-width: 768px) {
	#site-main-header .title-inner.big {
		padding: 40px 0 60px;
	}
	#site-main-header .title-inner.big .midasi {
		font-size: 28px;
	}
	#site-main-header .title-inner.small .midasi {
		font-size: 14px;
	}
}
@media (max-width: 600px) {
	#site-main-header .title-inner.big {
		padding: 30px 0 50px;
	}
	#site-main-header .title-inner.big .midasi {
		font-size: 24px;
	}
}


.font-ta-koigokoro {
	font-family: ta-koigokoro, sans-serif;
}/* ローディング中のスタイル */
.wf-loading .font-ta-koigokoro {
	opacity: 0;
	transform: translateY(20px);
}

/* フォント読み込み完了後のスタイル */
.wf-active .font-ta-koigokoro {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

/* フォント読み込み失敗時のスタイル */
.wf-inactive .font-ta-koigokoro {
	opacity: 1;
}

.main-bottom-box {
	width: 90%;
	max-width: var(--w-max-s);
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding-top: 220px;
}
.main-bottom-box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px 30px;
	list-style: none;
}
.main-bottom-box li {
	width: calc(50% - 15px);
}
.main-bottom-box li.full {
	width: 100%;
}
.main-bottom-box li a.doc-bnr {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0px;
	color: var(--color-text);
	text-decoration: none;
}
.main-bottom-box li a.doc-bnr.siryou {
	background-color: #FFF5E2;
}
.main-bottom-box li a.doc-bnr.tel {
	background-color: #EEFFE2;
}
.main-bottom-box li a.doc-bnr .doc {
	width: 100%;
	padding: 10px 20px;
	text-align: justify;
}
.main-bottom-box li a.doc-bnr .doc .p1 {
	font-size: 1.6rem;
	font-weight: bold;
}
.main-bottom-box li a.doc-bnr .doc .p2 {
	font-size: 1.0rem;
	font-weight: bold;
}
.main-bottom-box li a.doc-bnr .doc .p3 {
	font-size: 0.8rem;
}
.main-bottom-box li a.doc-bnr .doc .tel {
	font-size: 1.4rem;
	font-weight: bold;
	background-image: url(../images/temp/freedial-ic.png);
	background-size: 34px auto;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 40px;
}
.main-bottom-box li a.doc-bnr .doc .tel span {
	font-size: 15px;
	font-weight: normal;
	margin-left: 10px;
}
.main-bottom-box li a.doc-bnr .image {
	width: 100%;
	aspect-ratio: 463 / 256;
	overflow: hidden;
}
.main-bottom-box li a.doc-bnr .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-bottom-box li a.doc-bnr .bottom {
	width: 100%;
	padding: 10px 10px;
	text-align: center;
	background-color: var(--color-primary);
	color: #fff;
}
.main-bottom-box li a.doc-bnr .bottom p {
	font-size: 0.9rem;
	font-weight: bold;
	display: inline-block;
	background-image: url(../images/temp/arrow-ic.png);
	background-size: 22px auto;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 30px;
}
@media (max-width: 768px) {
	.main-bottom-box {
		padding-top: 120px;
	}
	.main-bottom-box::before {
		width: 30px;
		height: 120px;
	}
	.main-bottom-box ul {
		gap: 20px 15px;
		flex-direction: column;
	}
	.main-bottom-box li {
		width: 100%;
		max-width: 580px;
	}
}


  
.event-news-btn .arrow-icon {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	width: 25px;
	height: 25px;
	display: inline-block;
	border-radius: 50%;
	background-color: #fff;
}
.event-news-btn .arrow-icon::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border: solid 2px var(--color-primary);
	border-width: 0 2px 2px 0;
	padding: 2px;
	margin: 0 auto;
	transition: transform 0.3s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%) rotate(-135deg);
}

/* closeクラスが付いたら下向きに */
.event-news-btn.close .arrow-icon::before {
	transform: translate(-50%, -75%) rotate(45deg);
}

.body-home {
	background-color: #F8F8F8;
	/*animation: fadeIn 0.3s ease-in-out;*/
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: none;
}
#page-top a {
	display: block;
	width: 50px;
	height: 50px;
	background-image: url(../images/temp/to-pagetop.png);
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
@media (max-width: 700px) {
	#page-top {
		bottom: 15px;
		right: 15px;
	}
	#page-top a {
		width: 35px;
		height: 35px;
	}
}

main iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 960 / 540;
	object-fit: cover;
}


@media print {
	.global-nav {
		display: none !important;
	}	
}