/***  Bootstrap 上書き  ***/
@font-face {
	font-family: 'NotoSansJp';
	font-weight: 400;
	src: url("/fonts/NotoSansJP-normal.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: 'NotoSansJp';
	font-weight: 700;
	src: url("/fonts/NotoSansJP-bold.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: 'ZenKakuGothicAntique';
	font-weight: 400;
	src: url("/fonts/ZenKakuGothicAntique-Regular.ttf") format("truetype");
	font-display: swap;
}
@font-face {
	font-family: 'ZenKakuGothicAntique';
	font-weight: 700;
	src: url("/fonts/ZenKakuGothicAntique-Bold.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: 'Rubik';
	font-weight: 400;
	src: url("/fonts/Rubik-VariableFont_wght.ttf") format("truetype");
	font-display: swap;
}

.form-check-input {
	border-color: #999;
	width: 1.4em;
	height: 1.4em;
	margin-top: 0.15em;
}

/* SPメニューの二重スクロール防止 */
@media (max-width: 768px) {
	body.menu-open {
	    overflow: hidden;
	}
}

/* フォント*/
body {
	font-family: 'NotoSansJp';
}
.font-rubik {
	font-family: 'Rubik';
	font-weight: 900;
}
.font-antique {
	font-family: 'ZenKakuGothicAntique';
}

/* テキストカラー */
.text-main-color {
	color: #113B55;
}
.text-accent-color {
	color: #2ED198;
}
.text-accent-color-blue {
	color: #4ABACF;
}
.sub-title {
	color: #27B2A6;
	font-weight: bold;
}

/* パーツ背景色 */
.bg-lightbrown {
	background: #F5F7F1;
}

/* サブページタイトル */
.sub-page-title {
	font-size: 3.5em;
	font-family: 'Rubik';
	font-weight: 900;
	color: #113B55;
}
.sub-page-title-bg {
	background: #F5F7F1;
	padding: 16px 0;
	position: relative;
	clip-path: polygon(
	0 0,
	0 85%,
	20% 92%,
	40% 80%,
	60% 88%,
	80% 84%,
	100% 78%,
	100% 0
	);
}
@media (max-width: 768px) {
	.sub-page-title {
		font-size: 2.5em;
	}
	.sub-page-title-bg {
		clip-path: polygon(
		0 0,
		0 92%,
		0 94%,
		30% 88%,
		70% 94%,
		100% 88%,
		100% 0
	  );
	}
}

/* サブページ下部　連絡先 */
.sub-page-contact {
	color: #113B55;
	background: #F2F2A2;
	border-radius: 36px;
	padding: 40px 0;
}
.contact-telno {
	font-family: 'Rubik';
	font-weight: 700;
}

.contact-to-form {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #113B55;
	text-decoration: none;
	font-weight: bold;
	transition: color .2s ease;
}
.contact-to-form::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #113B55;
	border-right: 2px solid #113B55;
	transform: rotate(45deg);
	transition:
		transform .2s ease,
		border-color .2s ease;
}

.contact-to-form:hover {
	background: rgba(149, 180, 245, .3);
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 4px;
}

/* =========================
   共通セパレーター
========================= */
.pt-separator, .pt-separator-half {
	padding-top: 80px;
}
.pb-separator {
	padding-bottom: 80px;
}
@media (min-width: 992px) {
	.pt-separator {
		padding-top: 180px;
	}
	.pt-separator-half {
		padding-top: 90px;
	}
	.pb-separator {
		padding-bottom: 120px;
	}
}
.common-divider-short {
	width: 60px;
	height: 2px;
	background-color: #d9d9d9;
	margin: 40px auto;
	display: block;
}

/* =========================
   共通ボタン
========================= */
.btn-common {
	background-color: #113B55;
	min-width: 260px;
	max-width: 320px;
}
.btn-common:hover {
	background-color: #F1F160;
	color: #113B55!important;
	opacity: 0.8;
}
.btn-common[disabled] {
	background-color: #7e7e7e;
}
.btn-white-common {
	background-color: #fff;
	color: #113B55;
	border: 1px solid #113B55!important;
	min-width: 260px;
	max-width: 320px;
}
.btn-white-common:hover {
	background-color: #F1F160;
	border: 1px solid #F1F160!important;
	opacity: 0.8;
}

.btn-fit {
	width: fit-content;
	max-width: 100%;
}
@media (max-width: 768px) {
	.btn-fit {
		width: 100%;
	}
}

.icon-circle {
	width: 34px;
	height: 34px;
	background: #fff;
	border-radius: 50%;
	position: relative;
}
.back-icon-circle {
	width: 34px;
	height: 34px;
	background: #113B55;
	border-radius: 50%;
	position: relative;
}
.btn-white-common:hover .back-icon-circle {
	background-color: #fff;
}
.arrow {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #143a4a;
	border-right: 2px solid #143a4a;
	transform: rotate(45deg);
}
.back-arrow {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-135deg);
}
.btn-white-common:hover .back-arrow {
	border-top: 2px solid #143a4a;
	border-right: 2px solid #143a4a;
}

.ico-window-stack::before {
	content: "";
	position: absolute;
	top: 8px;
	padding-right: 14px;
	padding-bottom: 10px;
	margin-left: -0.5rem;
	border: 2px solid #113B55;
}

.ico-window-stack::after {
	content: "";
	position: absolute;
	top: 12px;
	padding-right: 16px;
	padding-bottom: 12px;
	margin-left: -0.75rem;
	border-bottom: 2px solid #113B55;
	border-left: 2px solid #113B55;
}

/* =========================
   共通下線
========================= */
.beige-border {
	border-bottom: 2px solid #E6E9DB;
}

/* =========================
   共通矢印+サークル
========================= */
.more-circle, .anchor-circle{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-left: 10px;
	border-radius: 50%;
	background: #F1F160;
	transition: all 0.1s ease;
}
.more-circle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #113B55;
	border-right: 2px solid #113B55;
	transform: rotate(45deg);
}
.anchor-circle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #113B55;
	border-right: 2px solid #113B55;
	transform: rotate(135deg); /* 下矢印 */
}
.more-text {
	text-decoration: none;
	color: #113B55;
	display: inline-flex;
	align-items: center;
	transition: all 0.1s ease;
}
.more-text:hover {
	color: #27B2A6;
}

.more-text:hover .more-circle,
.more-text:hover .anchor-circle {
	background: #113B55;
}

.more-text:hover .more-circle::before,
.more-text:hover .anchor-circle::before {
	border-color: #FFF;
}

/* =========================
   共通画像角丸処理
========================= */
.main-images {
	border-top-left-radius: 32px;
	border-bottom-right-radius: 32px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
}

.main-img {
	height: 320px;
}

@media (max-width: 768px) {
	.main-images {
		border-top-left-radius: 64px;
		border-bottom-right-radius: 64px;
	}
	.main-img {
		height: 220px;
	}
}

/* =========================
   ヘッダー
========================= */
body {
	overflow-x: hidden;
}

.hide-logo {
	pointer-events: auto;
}
/* メニュー開：ロゴ非表示 */
body.menu-open .hide-logo {
	display: none;
	pointer-events: none;
}

.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2500;
	pointer-events: none;
}
.header-fixed .menu-btn {
	pointer-events: auto;
}
.header-space {
	height: 160px;
}

/* SP時はロゴを上部固定しない */
@media (max-width: 992px) {
	.header-fixed {
		position: static;
		pointer-events: auto;
		background: #F5F7F1;
	}
	.header-fixed .menu-btn {
		position: fixed;
		right: 1rem;
		z-index: 3000;
	}
	.header-space {
		min-height: 0;
		height: 0;
	}
}

.breadcrumb-spacer {
	padding-right: 240px;
}
.menu-btn {
	width: clamp(80px, 8vw, 96px);
	height: clamp(80px, 8vw, 96px);
	border: none;
	border-radius: 50%;
	background: #F1F160;
	position: absolute;
	z-index: 3000;
	top: 1.5rem;
	right: 0;
	flex-shrink: 0;
	margin-right: 96px;
}

.menu-btn span {
	position: absolute;
	left: 50%;
	width: 36px;
	height: 3px;
	background: #113B55;
	transition: 0.3s;
}
.menu-btn span:nth-child(1) {
	top: 40%;
	transform: translateX(-50%);
}
.menu-btn span:nth-child(2) {
	top: 56%;
	transform: translateX(-50%);
}

.menu-btn.active span:nth-child(1) {
	top: 48%;
	transform:
		translateX(-50%)
		rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
	top: 48%;
	transform:
		translateX(-50%)
		rotate(-45deg);
}
.menu-btn:hover {
	background: #113B55;
}
.menu-btn:hover span {
	background: #FFF;
}
@media (max-width: 992px) {
	.menu-btn {
		margin-right: 8px;
	}
	.breadcrumb-spacer {
		padding-right: 120px;
	}
}

.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.35);
	z-index: 1500;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.menu-panel {
	position: fixed;
	inset: 0 0 auto 0;
	width: 100%;
	height: auto;
	background: #FFF;
	z-index: 2000;
	transform: translateY(-100%);
	transition: transform .45s ease;
	overflow: hidden;
}
.menu-panel.active {
	transform: translateY(0);
}
.mp-obj1 {
	top: 12vh; left: 16vw;
}
.mp-obj2 {
	top: 18vh; left: 14vw;
}
.mp-obj3 {
	top: 18vh; left: 80vw;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: table;
}

.menu-list li {
	margin-bottom: 28px;
}
.menu-list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-left: 54px;
	color: #113B55;
	text-decoration: none;
	transition: opacity .2s;
	font-weight: bold;
}
.menu-list a:hover {
	color: #27B2A6;
}

.menu-list a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #F1F160;
	transition: all 0.1s ease;
}
.menu-list a::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #113B55;
	border-right: 2px solid #113B55;
	transform:
		translateY(-50%)
		rotate(45deg);
	transition: all 0.1s ease;
}
.menu-list a:hover::before {
	background: #113B55;
}
.menu-list a:hover::after {
	border-color: #FFF;
}

.menu-link-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	text-align: center;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.2em;
}
.menu-link-btn.primary {
	background: #113B55;
	color: #FFF;
}
.menu-link-btn.secondary {
	background: #DDD;
	color: #113B55;
}
.menu-link-btn:hover {
	opacity: .8;
}
.external-link::after{
		display:none;
	}
@media (min-width: 769px) {
	
	.menu-link-window-stack{
		position:absolute;
		left:10px;
		top:50%;
		transform:translateY(-50%);
		width:18px;
		height:16px;
	}
	
	.menu-link-window-stack::before,
	.menu-link-window-stack::after{
		content: "";
		position: absolute;
		width: 12px;
		height: 10px;
		background: #F1F160;
		border: 2px solid #113B55;
	}
	
	.menu-link-window-stack::before{
		top: 4px;
		right: 4px;
	}
	
	.menu-link-window-stack::after{
		top: 1px;
		right: 1px;
	}
	.external-link:hover .menu-link-window-stack::before,
	.external-link:hover .menu-link-window-stack::after{
		background:#113B55;
		border-color:#fff;
	}
	
}
@media (max-width: 768px) {
	.menu-panel {
		height: 100vh;
		overflow-y: auto;
		padding: 100px 24px 40px;
	}
	.menu-grid {
		display: block;
	}
	.menu-col {
		width: 100%;
		max-width: 100%;
	}
	.menu-list {
		display: block;
		width: 100%;
	}
	.menu-list li {
		margin-bottom: 0;
	}
	.menu-list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
	}

	.menu-list a::before {
		display: none !important;
	}
	.menu-list a::after {
		right: 16px;
		left: auto;
		content: "";
		border-top: 2px solid #113B55;
		border-right: 2px solid #113B55;
		width: 8px;
		height: 8px;
		transform: translateY(-50%) rotate(45deg);
	}
	
	.menu-link-window-stack{
		right: 16px;
		left: auto;
		transform:translateY(-50%);
		width:18px;
		height:16px;
	}
	
	.menu-link-window-stack::before,
	.menu-link-window-stack::after{
		content: "";
		position: absolute;
		width: 12px;
		height: 10px;
		background: #fff;
		border: 2px solid #113B55;
	}
	
	.menu-link-window-stack::before{
		top: 11px;
		right: 13px;
	}
	.menu-link-window-stack::after{
		top: 7px;
		right: 9px;
	}
}

/* =========================
   宿泊予約固定メニュー
========================= */

.booking-fixed{
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 1050;
	padding: 16px 24px;
	background: #F1F160;
	box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.booking-fixed:hover {
	background: #113B55;
	color: #ffff;
}

/* =========================
   フッター
========================= */
.footer-contents {
	background-color: #2B3756;
}

.contents-border:after,
.contents-border:before {
	display: block;
	content: '';
	width: 80px;
	height: 2px;
	background-color: #ffffffa1;
	margin: 1rem auto;
}
.footer-group-list {
	background: #2B3756;
}
.footer-group {
	border-top: 2px solid #5B5B5B;
}

.footer-group:last-of-type {
	border-bottom: 2px solid #5B5B5B;
}

.footer-group ul.group-list>li:before {
	display: inline-block;
	content: '';
	width: 8px;
	height: calc(tan(60deg)* 10px/2);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #EC6B61;
	margin-right: 4px;
}
.footer-group ul.group-list-stay-travel>li:before {
	display: inline-block;
	content: '';
	width: 8px;
	height: calc(tan(60deg)* 10px/2);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #DA8E57;
	margin-right: 4px;
}
.lh-base a{
	text-decoration: none;
}

.group-collapse-button {
	display: inline-block;
	background-color: #3B5391;
	width: 32px;
	height: 32px;
	vertical-align: bottom;
	position: relative;
	border-radius: 4px;
}

.group-collapse-button:before {
	content: "";
	width: 18px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 15px;
	left: 7px;
}

.group-collapse-button[aria-expanded="false"]:after {
	content: "";
	width: 18px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	position: absolute;
	top: 15px;
	left: 7px;
}

.footer-copylight {
	background-color: #212121;
	color: #BCBCBC;
}
.footer-border-bottom {
	border-bottom: 1px solid #525252;
}
.border-copylight {
	border-top: 1px solid #525252;
}

/* @media (min-width : 768px) {
	.navbar:has(.navbar-brand) {
		background: #fff;
	}
	.navbar .navbar-brand {
		width: 100px;
		margin: 0;
		margin-left: var(--bs-navbar-brand-margin-end);
		margin-right: var(--bs-navbar-brand-margin-end);
	}
	#nav {
		background-color: transparent;
	}
	.navbar-btn {
		background: #fff;
	}
	.navbar-btn .navbar-line {
		width: 22px;
	}
	.navbar-btn .navbar-line:before {
		top: -10px;
	}
	.navbar-btn .navbar-line:after {
		top: 10px;
	}
	.dropdown-language:after {
		top: 12px;
	}
	.contents-border:before {
		display: none;
	}
} */

@media (min-width : 992px) {
	.footer-group-list {
		background: #2B3756;
	}
	.footer-group {
		border: none!important;
	}
	.group-list-wrap {
		display: block!important;
		background: transparent;
	}
	.group-collapse-button {
		display: none;
	}
}