@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #6D6D6D;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	--base-bg-color: #FCF6EF;
	--white: #fff;

	/* site color */
	--primary: #047387;
	--primary-hover: #f55;
	--secondary: #00f;
	--secondary-hover: #55f;
	--tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff;

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Shippori Mincho B1", serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Hina Mincho", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
	scroll-behavior: smooth;
}

canvas {
	width: 100%;
	height: 100%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background: var(--base-bg-color);
}

.fontA {
	font-weight: 400;
	font-family: var(--font-family01);
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

.paddingWr01 {
	padding: 0 1.5rem;
}

.pc-deco {
	display: block;
}

.sp-deco {
	display: none;
}

.text01 {
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.667em;
}

.text02 {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2.5em;
}

.en-title01 {
	font-size: 2.5rem;
	letter-spacing: 0.15em;
	line-height: 1.44em;
}

.jp-title01 {
	font-size: 4rem;
	letter-spacing: 0.1em;
}

.jp-title01 strong {
	font-size: 5rem;
	font-weight: 400;
}

.jp-title02 {
	font-size: 4rem;
	letter-spacing: 0.1em;
}

.jp-title02 strong {
	font-size: 5.5rem;
	font-weight: 400;
}

.common-title-box {
	position: relative;
	text-align: center;
}

.common-title-line {
	margin: 2.8rem auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 40rem;
	width: 100%;
}

.common-title-color01 {
	color: var(--primary);
}

.common-title-color02 {
	color: var(--base-bg-color);
}


.comBtn {
	max-width: 30rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6rem;
	position: relative;
	border-radius: 3rem;
	transition: all .5s;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.comBtnArrow {
	max-width: 2.6rem;
	width: 100%;
	position: absolute;
	margin: auto;
	display: flex;
	align-items: center;
	right: 3.4rem;
	transition: all .5s;
}

.comBtn01 {
	background-color: #047387;
	color: #FCF6EF;
}

.comBtn02 {
	background-color: #FCF6EF;
	color: #047387;
}

.comBtn:hover .comBtnArrow {
	transition: all .5s;
	transform: translateX(5px);
}

.tit-br-none01 br {
	display: none;
}



.maskBaseWr {
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 13rem 0 14rem;
	color: #FCF6EF;
}

.maskBaseWr:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #0A5461;
	opacity: 0.75;
	z-index: 1;
}

.maskBaseWr:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	opacity: 1;
	z-index: 1;
}

.maskTopDecoSet {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 5;
}

.maskBottomDecoSet {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 5;
}

.maskPc {
	display: block;
}

.maskSp {
	display: none;
}


/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 9rem;
	display: none;
	padding: 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 98;
	border: 0.1rem solid #047387;
	background-color: #FCF6EF;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link>a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link>a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop>a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel>a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact>a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.5rem;
	margin: .7rem 0 0;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #047387;
}

.sp-header-block01 {
	width: 22.47%;
	border-left: 0.1rem solid #047387;
}

.sp-header-link-reservation-box {
	flex: 1;
	height: 100%;
}

.sp-header-link-tit02 {
	background-color: #047387;
	color: #FCF6EF;
	text-align: center;
	height: 3.781rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}

.sp-header-link-tel,
.sp-header-link-web {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5.3rem;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.3em;
	color: #047387;
}

.sp-header-block02 {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	height: 100%;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 7.364rem;
	height: 7.364rem;
	display: none;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	z-index: 9999999;
	border-radius: 2px;
	margin-left: 2rem;
	position: fixed;
	top: 1.2rem;
	right: 1.2rem;
	transition: all .5s;
	padding-bottom: 1rem;
}

.header.is-animation .sp-nav-btn {
	background-color: #047387;
}

.sp-nav-btn-color {
	color: var(--white);
}

.sp-nav-btn-bar-box {
	width: 4rem;
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 0;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 100%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

.sp-nav-icon-set {
	width: 100%;
	padding-top: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	filter: drop-shadow(0 0.2rem 0.6rem rgb(0 0 0 / 25%));
}

.sp-nav-icon-set .sp-nav-icon-open {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s;
	bottom: 0;
}

.sp-nav-icon-set .sp-nav-icon-close {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s;
	bottom: 0;
}

.sp-nav-ham-text {
	font-size: 2.2rem;
	letter-spacing: 0.12em;
	line-height: 1em;
	margin-top: -0.7rem;
}

.sp-nav-btn.js-open .sp-nav-icon-set .sp-nav-icon-open {
	opacity: 0;
}

.sp-nav-btn.js-open .sp-nav-icon-set .sp-nav-icon-close {
	opacity: 1;
}

.sp-nav-btn-color:hover {
	background-color: #047387;
	box-shadow: 0 0.2rem 0.6rem rgb(0 0 0 / 25%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 998;
}

.js-sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: #328C9B;
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 15rem 1.5rem;
	overflow-y: scroll;
	-ms-overflow-style: none;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sp-nav-area::-webkit-scrollbar {
	display: none;
}

.hHamWr {
	width: 100%;
	height: 100%;
	max-width: 37rem;
	margin: 0 auto;
}

.hHamNavWr {
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	gap: 2rem;
}

.sp-nav-list::-webkit-scrollbar {
	display: none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	color: #FCF6EF;
	text-align: center;
}

.sp-nav-list-item a {
	display: block;
	padding: 1.1rem 0;
	font-size: 1.8rem;
	transition: .3s;
}

.sp-nav-list-item a:hover {
	opacity: .6;
}

.sp-nav-list-item-color {
	border-bottom-color: var(--sp-border-color);
}

.sp-header-link>figure {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-web-modal-btn {
	cursor: pointer;
}

.sp-header-link-tel {
	border-right: 0.1rem solid #047387;
}

.hHamIcon01 {
	width: 2.013rem !important;
	height: 2.821rem !important;
}

.sp-header-link-pagetop {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

/*-----*/

.privacy-box a {
	text-decoration: underline;
}

.privacy-box a:hover {
	text-decoration: unset;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	body {
		font-size: 1.6rem;
	}

	.text02 {
		font-size: 1.6rem;
	}

	.jp-title01 {
		font-size: 3rem;
	}

	.jp-title01 strong {
		font-size: 4rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.comBtn {
		max-width: 27rem;
		height: 5rem;
		font-size: 1.8rem;
	}

	.comBtnArrow {
		max-width: 2rem;
		right: 2.5rem;
	}

	.maskBaseWr {
		padding: 9rem 0 9rem;
	}

	.sp-header {
		display: flex;
		flex-direction: row-reverse;
	}

	.pc-deco {
		display: none;
	}

	.sp-deco {
		display: block;
	}

	.maskPc {
		display: none;
	}

	.maskSp {
		display: block;
	}

	.jp-title02 {
		font-size: 2.8rem;
	}

	.jp-title02 strong {
		font-size: 3.3rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	body {
		font-size: 1.6rem;
	}

	.text02 {
		font-size: 1.6rem;
	}

	.common-title-line {
		margin: 1rem auto 0;
		max-width: 23.3rem;
	}

	.jp-title01 {
		font-size: 2.8rem;
	}

	.jp-title01 strong {
		font-size: 3.3rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header {
		height: 9rem;
		padding: 0;
	}

	.sp-header-link>a:before {
		font-size: 2rem;
	}

	.sp-header-link-text {
		font-size: 1.5rem;
		margin: 0;
	}

	.sp-nav-ham-text {
		font-size: 1.8rem;
	}

	.sp-nav-icon-set {
		/* width: 3rem; */
		/* height: 3rem; */
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		width: 6.5rem;
		height: 6.5rem;
	}

	.sp-nav-btn-bar-box {
		max-width: 4rem;
	}

	.sp-nav-btn-text {
		font-size: 1rem;
	}

	.sp-nav-btn-text {
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a {
		padding: 1.2rem 0;
		font-size: 1.8rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

	.tit-br-none01 br {
		display: block;
	}

	.jp-title01 {
		font-size: 2.3rem;
	}

	.jp-title01 strong {
		font-size: 3rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */