/* リキッドレイアウト対応 */

:root {
	--inner-value: 1200;
	--inner: 1200px;
	--padding-pc: 25px;
	--padding-sp: 20px;
}

:root {
	--rem: 1rem / 16;
	--em: 1em / 16;
	--vw: 1440 * 100vw;
	--inner-percent: var(--inner-value) * 100%;
}

:root {
	--base-font: "Noto Serif JP", serif;
	--second-font: "Noto Serif JP", serif;
	--fw-extralight: 200;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--fw-extrabold: 800;
	--fw-black: 900;
	--leading-trim: calc((1em - 1lh) / 2);
}

:root {
	--white: #fff;
	--black333: #333;
	--black1c1: #1c1b1b;
	--black201: #201502;
	--black233: #233535;
	--ochre: #a69675;
}

:root {
	--z-index-loader: 1000;
	--z-index-header: 100;
	--z-index-drawer: 99;
	--z-index-cta: 90;
}

:root {
	--header-height: calc(120 * var(--rem));
	--scrollbar-width: 0;
}

@property --scrollbar {
	syntax: "<length>";
	initial-value: 0;
	inherits: true;
}

:root:has(:modal[open],
.is-scroll-lock,
.loader) {
	overflow: hidden;
	scrollbar-gutter: stable;
}

html {
	scrollbar-gutter: stable;
}

body {
	font-family: var(--base-font);
	color: var(--white);
	font-weight: var(--fw-light);
	background-color: var(--black1c1);
	line-height: 1.5;
}

body.is-hidden {
	container-type: normal;
	overflow: hidden;
}

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-padding-top: 3.75rem;
}

/* Set core body defaults */

body {
	min-height: 100svh;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
	line-break: strict;
	overflow-wrap: anywhere;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* picture*/

picture {
	display: block;
	width: 100%;
	height: 100%;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

:where(dialog) {
	width: unset;
	max-width: unset;
	height: unset;
	max-height: unset;
	padding: unset;
	color: unset;
	background-color: unset;
	border: unset;
	overflow: unset;
}

:where(dialog:focus-visible) {
	outline: none;
}

/* フォームリセット */

input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: opacity 0.3s;
}

a[href^="tel:"] {
	pointer-events: none;
}

.inner {
	max-width: calc(var(--inner) + var(--padding-pc) * 2);
	margin-inline: auto;
	padding-inline: var(--padding-pc);
	width: 100%;
}

.inner.inner--lower {
	max-width: calc(var(--inner) + var(--padding-pc) * 2 - 0.75rem);
}

.layout-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: var(--z-index-drawer);
}

.layout-header {
	position: fixed;
	z-index: var(--z-index-header);
	top: 0;
	left: 0;
	right: 0;
}

.layout-sub-access {
	margin-top: 2.75rem;
}

.layout-sub-faq {
	margin-top: 8.25rem;
}

.article-nav {
	padding-top: 5rem;
	gap: 2.5rem;
	display: flex;
	justify-content: center;
}

.article-nav__prev a,
.article-nav__archive a,
.article-nav__next a {
	font-size: 1.125rem;
	font-weight: var(--fw-medium);
	padding: 0 0.5rem 0.5rem;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 0.5rem;
	position: relative;
	z-index: 1;
}

.article-nav__prev a::after,
.article-nav__archive a::after,
.article-nav__next a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: -1;
	background-image: linear-gradient(to right, var(--black1c1) 0%, var(--black1c1) 100%);
	background-size: 0% 100%;
	background-position: left bottom;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
}

.article-nav__prev a::before,
.article-nav__next a::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 0.0625rem solid currentColor;
	border-right: 0.0625rem solid currentColor;
	rotate: 45deg;
}

.article-nav__prev a {
	flex-direction: row;
}

.article-nav__prev a::before {
	rotate: -135deg;
}

.article {
	color: var(--black1c1);
}

.article__date {
	font-size: 1rem;
}

.article__title {
	font-weight: var(--fw-medium);
	font-size: 1.875rem;
}

.article__thumbnail {
	margin-top: 2.5rem;
}

.article__content {
	margin-top: 2.5rem;
}

.article__content {
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.article__content * {
	margin-top: 0.5rem;
}

.article__content h2 {
	font-weight: var(--fw-medium);
	font-size: 1.5rem;
	border-left: 0.5rem solid var(--ochre);
	padding-left: 1rem;
}

.article__content h3 {
	font-weight: var(--fw-medium);
	font-size: 1.375rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #b3b3b3;
	padding-inline: 1rem;
	position: relative;
}

.article__content h3::before {
	content: "";
	display: block;
	width: min(13.8888888889vw, 12.5rem);
	height: 2px;
	top: 100%;
	left: 0;
	background-color: var(--ochre);
	position: absolute;
}

.article__content p {
	font-size: 1.125rem;
	min-height: 1em;
}

.article__content .wp-block-image {
	display: block;
	height: auto;
}

.article__content .alignright {
	margin-left: auto;
	float: none;
}

.article__nav {
	margin-top: 5rem;
	border-top: 1px solid var(--black1c1);
}

.bg-video {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.bg-video__container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.bg-video__container::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--black1c1);
	opacity: 0.96;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.bg-video__inner {
	position: relative;
	z-index: 5;
}

.bg-video__container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.button {
	font-weight: var(--fw-medium);
	font-size: min(1.4583333333vw, 1.3125rem);
	width: 100%;
	max-width: 17.125rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: min(1.3194444444vw, 1.1875rem);
	color: var(--white);
	text-align: center;
	border: 1px solid var(--white);
	position: relative;
	z-index: 1;
	transition: color 0.3s, border 0.3s;
}

.button::before {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: linear-gradient(to right, var(--white) 0%, var(--white) 100%);
	background-size: 0% 100%;
	background-position: left bottom;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
}

.button::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	display: block;
	width: 0.375rem;
	height: 0.375rem;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
	translate: 0 -50%;
	rotate: 45deg;
	transition: border 0.3s;
}

.button.button--black {
	background-color: var(--black1c1);
}

.button.button--sm,
.header.is-change .button.button--sm {
	font-size: 0.875rem;
	max-width: 10.375rem;
	padding-block: 0.5rem;
	padding-inline: 0.25rem;
}

.is-change .button {
	background-color: var(--black1c1);
}

.concept {
	position: relative;
	min-height: 100vh;
	overflow: visible;
}

.concept__sticky {
	position: relative;
}

.concept__fade {
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 50;
	opacity: 0;
	will-change: opacity;
}

.concept__fade--top {
	top: 0;
	height: 40vh;
	background: linear-gradient(180deg, var(--black1c1) 30%, color-mix(in srgb, var(--black1c1) 70%, transparent) 65%, transparent 100%);
}

.concept__fade--bottom {
	bottom: 0;
	height: 40vh;
	background: linear-gradient(360deg, var(--black1c1) 30%, color-mix(in srgb, var(--black1c1) 70%, transparent) 65%, transparent 100%);
}

.concept__container {
	height: 100vh;
	min-height: 100vh;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	inset: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: opacity, transform;
	z-index: 1;
}

.concept__inner {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	height: 100%;
}

.concept__img {
	position: absolute;
	inset: 0;
	z-index: -1;
	margin-inline: calc(50% - 50vw);
}

.concept__img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: color-mix(in srgb, var(--black333) 30%, transparent);
}

.concept__img picture,
.concept__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.concept__content {
	position: relative;
	z-index: 7;
	width: 100%;
	padding-block: 6.25rem;
}

.concept__progress {
	position: absolute;
	z-index: 3;
	bottom: 6.25rem;
	left: 0.8125rem;
}

.concept__text {
	font-weight: var(--fw-medium);
	font-size: 1.25rem;
	line-height: 1.75;
	text-align: center;
	color: var(--black201);
	max-width: 20.25rem;
	height: auto;
	aspect-ratio: 1;
	background-color: color-mix(in srgb, var(--white) 70%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: 1px color-mix(in srgb, var(--white) 70%, transparent) solid;
	outline-offset: 8px;
	margin-top: 1.875rem;
	margin-inline: auto;
}

.concept__link {
	margin-top: 4.375rem;
	display: flex;
	justify-content: center;
}

.drawer {
	background-color: color-mix(in srgb, var(--black333) 70%, transparent);
	justify-content: right;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
	display: flex;
}

.drawer.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.drawer__container {
	padding-block: 10rem 2.5rem;
	width: 40%;
	max-width: 31.25rem;
	background-color: var(--black1c1);
	translate: 100% 0;
	transition: translate 0.5s;
}

.drawer__wrap {
	overflow-y: auto;
	height: 100%;
}

.drawer.is-active .drawer__container {
	translate: 0;
}

.drawer__logo {
	max-width: 12.5rem;
	margin-inline: auto;
}

.drawer__nav {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 16.875rem;
	margin-inline: auto;
}

.drawer__nav-link {
	display: inline-block;
	padding-block: 1rem;
	padding-inline: 1rem;
	font-size: 1.3125rem;
	font-weight: var(--fw-medium);
	text-align: center;
	width: 100%;
	position: relative;
}

.drawer__nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, var(--white) 0%, var(--white) 100%);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-position: left bottom;
	transition: background-size 0.3s ease;
}

.drawer__contact-wrap {
	margin-top: 2.5rem;
}

.drawer__contact {
	display: flex;
	justify-content: center;
}

.drawer__contact + .drawer__contact {
	margin-top: 1.25rem;
}

.facilities-slider {
	pointer-events: none;
}

.facilities-slider.js-facilities-slider02 {
	transform: rotate(180deg);
}

.facilities-slider__wrapper {
	transition-timing-function: linear;
}

.facilities-slider__slide {
	width: min(25.4166666667vw, 22.875rem);
	height: auto;
	margin-top: 0.5rem;
}

.js-facilities-slider02 .facilities-slider__slide {
	transform: rotate(180deg);
}

.facilities-slider__slide picture,
.facilities-slider__slide img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.facilities {
	padding-block: 7.5rem;
}

.facilities__contents {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: min(7.7777777778vw, 7rem);
	margin-left: max(50% - 50vw, -7.5rem);
}

.facilities__slider {
	height: 52.75rem;
}

.facilities__gallery {
	width: min(51.1805555556vw, 46.0625rem);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.facilities__content {
	margin-top: 6.25rem;
}

.facilities__text {
	margin-top: 1.625rem;
}

.facilities__link {
	margin-top: 5.3125rem;
}

.faq-list__item {
	background-color: var(--white);
	color: var(--black233);
	padding-inline: 2.5rem;
}

.faq-list__item + .faq-list__item {
	margin-top: 0.625rem;
}

.faq-list__item-question,
.faq-list__item-answer {
	padding-block: 2.0625rem;
	padding-inline: 0 1.5625rem;
	font-size: 1rem;
	line-height: 1.5;
	display: flex;
	position: relative;
}

.faq-list__item-question::after {
	content: "";
	position: absolute;
	display: block;
	top: 3rem;
	right: 0;
	width: 16px;
	height: 7px;
	background-image: url(../images/icon_arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	rotate: 0deg;
	transition: rotate 0.3s;
}

.faq-list__item-question.is-open::after {
	rotate: -180deg;
}

.faq-list__item-answer {
	border-top: 1px solid var(--ochre);
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
}

.faq-list__item-question.is-open + .faq-list__item-answer {
	display: flex !important;
	visibility: visible;
	opacity: 1;
}

.faq-list__item-question span {
	font-size: 1.25rem;
	font-weight: var(--fw-medium);
	color: var(--black201);
	display: inline-block;
	margin-right: 1rem;
	flex-shrink: 0;
}

.faq-list__item-answer span {
	font-size: 1.25rem;
	font-weight: var(--fw-medium);
	color: var(--ochre);
	display: inline-block;
	margin-right: 1rem;
	flex-shrink: 0;
}

.faq {
	padding-block: 7.5rem 8.875rem;
}

.faq__content {
	margin-top: 5.0625rem;
}

.faq__list {
	margin-top: 1.5rem;
}

.faq__link {
	margin-top: 5.5rem;
	display: flex;
	justify-content: center;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	gap: 0.5rem 1rem;
	position: relative;
}

.footer-nav__item a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	font-size: 1rem;
}

.footer-nav__item a::before {
	content: "";
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 100vh;
	background-color: currentColor;
}

.footer-nav__item a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, var(--white) 0%, var(--white) 100%);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-position: left bottom;
	transition: background-size 0.3s ease;
}

.footer__reservation {
	padding-block: 3rem;
	background-color: var(--white);
	border-top: 1px solid var(--black333);
	border-bottom: 1px solid var(--black333);
	display: flex;
	justify-content: center;
}

.footer__cta {
	background-color: var(--white);
	padding-block: 0.25rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.25rem;
}

.footer__cta-link {
	padding-block: 7.3125rem;
	text-align: center;
	position: relative;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 1.125rem;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.footer__cta-link::before {
	z-index: -1;
	content: "";
	background-color: color-mix(in srgb, var(--black333) 70%, transparent);
	position: absolute;
	inset: 0;
	transition: background 0.3s;
}

.footer__cta-link::after {
	content: "";
	width: 0.5625rem;
	height: 0.5625rem;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
	rotate: 45deg;
	align-self: center;
	margin-left: 4.375vw;
}

.footer__cta-link:nth-child(1) {
	background-image: -webkit-image-set(url(../images/img_title-introduction.avif) type("image/avif"), url(../images/img_title-introduction.jpg) type("image/jpg"));
	background-image: image-set(url(../images/img_title-introduction.avif) type("image/avif"), url(../images/img_title-introduction.jpg) type("image/jpg"));
}

.footer__cta-link:nth-child(2) {
	background-image: -webkit-image-set(url(../images/bg_cta-link02.avif) type("image/avif"), url(../images/bg_cta-link02.jpg) type("image/jpg"));
	background-image: image-set(url(../images/bg_cta-link02.avif) type("image/avif"), url(../images/bg_cta-link02.jpg) type("image/jpg"));
}

.footer__cta-link span {
	font-size: 2.5rem;
	text-transform: uppercase;
}

.footer__contents {
	padding-block: 5rem 2.5rem;
}

.footer__links {
	margin-inline: 1.5625rem;
	padding-bottom: 4.25rem;
	border-bottom: 1px solid var(--white);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: min(1.1111111111vw, 1rem);
}

.footer__links .button {
	justify-self: center;
}

.footer__info-wrap {
	display: grid;
	grid-template-columns: 1fr 22.5rem;
	margin-inline: 1.5625rem;
	margin-top: 1rem;
}

.footer__logo {
	width: 9.1875rem;
}

.footer__address {
	margin-top: -1rem;
	font-size: 1rem;
}

.footer__address-text,
.footer__address-link {
	margin-top: 0.5rem;
}

.footer__nav-reservation {
	margin-top: 2.3125rem;
	display: flex;
	justify-content: right;
}

.footer__nav {
	margin-top: 4rem;
}

.footer__copy {
	grid-column: 1/3;
	margin-top: 4rem;
	text-align: right;
	font-weight: var(--fw-regular);
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
}

.hamburger {
	width: -moz-fit-content;
	width: fit-content;
	height: 34px;
	display: flex;
	align-items: end;
	justify-content: center;
	position: relative;
}

.hamburger span:not(:last-child),
.is-change .hamburger.is-active span:not(:last-child) {
	display: inline-block;
	width: 1.9375rem;
	height: 1px;
	background-color: var(--white);
	position: absolute;
}

.is-change .hamburger span:not(:last-child) {
	background-color: var(--black1c1);
}

.hamburger span:nth-child(1) {
	top: 0;
	rotate: 0deg;
	transition: top 0.3s, rotate 0.3s;
}

.hamburger span:nth-child(2) {
	top: 0.5rem;
	opacity: 1;
	transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
	top: 1rem;
	transition: top 0.3s, rotate 0.3s;
}

.hamburger.is-active span:nth-child(1) {
	top: 0.5rem;
	rotate: -205deg;
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	top: 0.5rem;
	rotate: 205deg;
}

.hamburger__text,
.is-change .hamburger.is-active .hamburger__text {
	font-size: 12px;
	color: var(--white);
	letter-spacing: 0.05em;
}

.is-change .hamburger__text {
	color: var(--black1c1);
}

.header {
	padding-block: 2.5rem;
}

.header__inner.inner {
	display: flex;
	justify-content: right;
	align-items: center;
	max-width: 100%;
	padding-inline: 3.3125rem;
}

.header__logo {
	width: 12.5rem;
	height: 6.25rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, filter 0.3s;
}

.header.is-change .header__logo {
	filter: invert(100%);
}

.header__logo a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.header.is-logo-visible .header__logo {
	opacity: 1;
	visibility: visible;
}

.header__logo picture,
.header__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.header__cta {
	width: -moz-max-content;
	width: max-content;
	flex: 1;
	display: flex;
	justify-content: right;
}

.header__hamburger {
	margin-left: 2.5rem;
}

.intro {
	padding-block: 8.75rem 10rem;
}

.intro__inner.inner {
	position: relative;
	z-index: 5;
}

.intro__contents {
	display: flex;
	gap: min(8.3333333333vw, 7.5rem);
}

.intro__textarea {
	padding-right: 2rem;
	align-self: center;
	flex-shrink: 0;
}

.intro__title {
	font-weight: var(--fw-medium);
	font-size: 1.875rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

.intro__text {
	margin-top: 2rem;
	font-size: 1.125rem;
	line-height: 1.6666666667;
	letter-spacing: 0;
}

.intro__gallery {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.9444444444vw;
	position: relative;
	margin-left: max(50% - 50vw, -2.5rem);
}

.intro__img {
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.intro__img.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.intro__img--01 {
	width: min(24.0972222222vw, 21.6875rem);
	height: auto;
	aspect-ratio: 347/252;
}

.intro__img--02 {
	width: min(12.2222222222vw, 11rem);
	height: auto;
	aspect-ratio: 176/280;
	position: absolute;
	grid-column: 2/3;
	grid-row: 1/2;
	top: 6.25rem;
}

.intro__img--03 {
	width: min(20.8333333333vw, 18.75rem);
	height: auto;
	aspect-ratio: 300/476;
	justify-self: right;
	grid-column: 1/2;
	grid-row: 2/3;
}

.intro__img--04 {
	width: min(23.8194444444vw, 21.4375rem);
	height: auto;
	aspect-ratio: 343/268;
	grid-column: 2/3;
	grid-row: 2/3;
	margin-left: min(3.8888888889vw, 3.5rem);
	margin-top: 7.875rem;
}

.intro__img picture,
.intro__img img {
	width: 100%;
	height: auto;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	transform: scale(1.08);
	transform-origin: center;
}

.map-link {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	gap: 0.25rem;
	align-items: center;
	margin-top: 0.5rem;
	padding-bottom: 0.25rem;
	border-bottom: 1px var(--white) solid;
	opacity: 1;
	transition: opacity 0.3s;
}

.map-link::before {
	content: "";
	width: 0.9375rem;
	height: 1.375rem;
	background-image: url(../images/icon_pin.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.modal-slider__prev,
.modal-slider__next {
	position: absolute;
	top: 50%;
	right: 0;
	color: var(--white);
	width: 3.75rem;
	height: 3.75rem;
	display: block;
	border-top: 2px solid var(--white);
	border-right: 2px solid var(--white);
	rotate: 45deg;
	translate: -25% 0;
}

.modal-slider__prev::after,
.modal-slider__next::after {
	content: "";
}

.modal-slider__prev {
	rotate: -135deg;
	left: 0;
	translate: 25% 0;
}

.modal {
	position: fixed;
	inset: 0;
	background-color: color-mix(in srgb, var(--black333) 90%, transparent);
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100%;
	z-index: var(--z-index-drawer);
	transition: opacity 0.3s, visibility 0.3s;
	display: flex;
}

.modal.is-active {
	align-items: center;
	visibility: visible;
	opacity: 1;
}

.modal__overlay {
	position: absolute;
	inset: 0;
}

.modal__inner.inner {
	display: grid;
	grid-template-rows: 1fr auto 1fr;
	position: relative;
	z-index: 1;
	align-items: center;
	gap: 0.5rem;
}

.modal__close-button {
	color: var(--white);
	font-size: 0.75rem;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	justify-self: right;
	padding-top: 0.625rem;
}

.modal__close-button span {
	display: inline-block;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	top: 0;
}

.modal__close-button span:nth-child(1) {
	rotate: 205deg;
}

.modal__close-button span:nth-child(2) {
	rotate: -205deg;
}

.modal__slider {
	width: 100%;
}

.more {
	font-family: var(--second-font);
	display: flex;
	gap: 1.125rem;
	align-items: center;
	justify-content: center;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid var(--white);
	width: -moz-fit-content;
	width: fit-content;
	opacity: 1;
	transition: opacity 0.3s;
	font-weight: var(--fw-medium);
	font-size: 0.875rem;
}

.more::after {
	content: "";
	width: 0.25rem;
	height: 0.25rem;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
	rotate: 45deg;
}

.more.more--black {
	border-color: var(--black333);
}

.more.more--black::after {
	border-color: inherit;
}

.more.more--facilities {
	width: 7.5rem;
	justify-content: space-between;
}

/* 初期：必ず隠す（フラッシュ防止） */

.mv-slider {
	opacity: 0;
	visibility: hidden;
}

body.is-mv-fade .mv-slider {
	transition: opacity 2s ease, visibility 0s linear 0s;
}

body.is-mv-visible .mv-slider {
	opacity: 1;
	visibility: visible;
}

.mv-slider,
.mv-slider__wrapper,
.mv-slider__slide,
.mv-slider__image {
	width: 100%;
	height: 100%;
}

.mv-slider__image img,
.mv-slider__image picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv {
	height: 100lvh;
	max-height: calc(100lvh - 6.25rem);
}

.mv__inner.inner {
	padding-inline: 0;
	max-width: 100%;
	height: 100%;
	position: relative;
}

.mv__inner.inner::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--black333);
	opacity: 0.4;
	position: absolute;
	inset: 0;
	z-index: 5;
}

.mv__logo {
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(24.1666666667vw, 21.75rem);
	opacity: 0;
}

body.is-mv-fade .mv__logo {
	animation: slide 1s ease 0.5s forwards;
}

body.is-mv-visible .mv__logo {
	opacity: 1;
	clip-path: none;
	animation: none;
}

.mv__logo img,
.mv__logo picture {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0px 0px 0.6875rem rgba(0, 0, 0, 0.6));
}

.mv__scroll {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: 10;
}

.mv__scroll::before {
	content: "";
	display: block;
	width: 1px;
	height: 5.1875rem;
	background-color: var(--white);
	opacity: 0.5;
}

.mv__scroll::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 2.5rem;
	background-color: var(--white);
	animation: line-flow 2s ease-in-out infinite;
	translate: -50%;
}

.news-list__link {
	display: flex;
	padding-block: 2rem;
	padding-inline: 1.5625rem 3.125rem;
	gap: min(5.1388888889vw, 4.625rem);
	align-items: center;
	border-bottom: 1px solid var(--black333);
	position: relative;
	opacity: 1;
	transition: opacity 0.3s;
}

.news-list__link::after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	width: 10px;
	height: 5px;
	background-image: url(../images/icon_arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	rotate: -90deg;
}

.news-list__date {
	flex-shrink: 0;
	font-weight: var(--fw-semibold);
	font-size: 1rem;
}

.news-list__title {
	flex: 1;
	font-size: 1rem;
	font-weight: var(--fw-light);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.news {
	background-color: var(--white);
	padding-block: 7rem 8.75rem;
	color: var(--black333);
}

.news__list {
	margin-top: 4.0625rem;
}

.news__link {
	margin-top: 2.5rem;
	display: flex;
	justify-content: right;
}

.news__pagination {
	margin-top: 5rem;
}

.page-template {
	padding-bottom: 5rem;
}

.page-template__content {
	background-color: var(--white);
	color: var(--black1c1);
	padding: 2.5rem 1.25rem;
}

.page-template__content p {
	font-size: 1rem;
	min-height: 1em;
}

.page-template__content h2 {
	font-size: 1.25rem;
	font-weight: var(--fw-medium);
}

.page-template__content ol {
	list-style-type: decimal;
	padding-left: 1.25rem;
}

.pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.page-numbers {
	display: flex;
	width: 2rem;
	height: 2rem;
	justify-content: center;
	align-items: center;
	color: var(--black1c1);
	border: 1px solid currentColor;
	transition: color 0.3s, background-color 0.3s;
}

.page-numbers.next::before,
.page-numbers.prev::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: inherit;
	border-right: inherit;
	rotate: 45deg;
}

.page-numbers.prev::before {
	rotate: -135deg;
}

.page-numbers.current,
.page-numbers:hover {
	background-color: var(--black1c1);
	color: var(--white);
}

.progress {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.progress::before,
.progress::after {
	content: attr(data-index);
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1rem;
	letter-spacing: 0.08em;
	color: var(--white);
	font-style: italic;
}

.progress::after {
	content: attr(data-index-next);
}

.concept__container:last-child .progress::after {
	content: "";
}

.progress__bar {
	position: relative;
	width: 1px;
	height: 7.375rem;
	background: var(--white);
}

.progress__barFill {
	position: absolute;
	inset: 0;
	width: 0.125rem;
	background: var(--white);
	transform: scaleY(0);
	transform-origin: top center;
	will-change: transform;
}

.reservation {
	padding-block: 7.5rem;
	background-image: -webkit-image-set(url(../images/img_title-faq.avif) type("image/avif"), url(../images/img_title-faq.jpg) type("image/jpg"));
	background-image: image-set(url(../images/img_title-faq.avif) type("image/avif"), url(../images/img_title-faq.jpg) type("image/jpg"));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.reservation::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: color-mix(in srgb, var(--black333) 50%, transparent);
}

.reservation__inner.inner {
	position: relative;
	z-index: 1;
}

.reservation__contents {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: min(26.3888888889vw, 23.75rem);
}

.reservation__content + .reservation__content {
	margin-top: 11.25rem;
}

.reservation__text {
	margin-top: 3.75rem;
}

.reservation__list + .reservation__list {
	margin-top: 2.5rem;
}

.reservation__ttl,
.reservation__item {
	font-size: 1rem;
	line-height: 1.2;
}

.reservation__item {
	margin-top: 0.8125rem;
}

.reservation__link {
	margin-top: 3.25rem;
}

.reservation__link + .reservation__link {
	margin-top: 0.8125rem;
}

.single__wrapper {
	background-color: var(--white);
	padding-block: 7.5rem;
}

.single__inner.inner {
	max-width: 56.25rem;
}

.sub-404 {
	background-color: var(--white);
	padding-block: 6.25rem;
}

.sub-404__text {
	margin-top: 5rem;
	color: var(--black1c1);
	text-align: center;
	font-size: 1rem;
}

.sub-404__link {
	margin-top: 6.25rem;
	display: flex;
	justify-content: center;
}

.sub-access {
	padding-bottom: 7rem;
}

.sub-access__inner.inner {
	display: grid;
	grid-template-columns: 1fr min(41.6666666667vw, 37.5rem);
	gap: min(2.7777777778vw, 2.5rem);
	align-items: center;
}

.sub-access__info {
	display: grid;
	grid-template-columns: 7.5rem 1fr;
	gap: min(0.4861111111vw, 0.4375rem);
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--white);
}

.sub-access__info + .sub-access__info {
	margin-top: 1rem;
}

.sub-access__ttle,
.sub-access__item {
	font-size: 1rem;
	line-height: 1.875;
}

.sub-access__map {
	filter: grayscale(1);
}

.sub-access__map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 600/450;
}

.sub-facilities-slider {
	overflow: visible;
}

.sub-facilities-slider__wrapper {
	transition-timing-function: linear;
	gap: 0.625rem;
}

.sub-facilities-slider__slide {
	width: min(51.5277777778vw, 46.375rem);
	cursor: pointer;
}

.sub-facilities-slider__slide img,
.sub-facilities-slider__slide picture {
	width: 100%;
	height: auto;
	aspect-ratio: 742/320;
	object-fit: cover;
}

.sub-facilities-slider__pagination.swiper-pagination {
	bottom: -3rem;
	width: -moz-max-content;
	width: max-content;
	left: auto;
	right: calc(50% - min(48vw, 37.75rem));
}

.sub-facilities-slider__pagination .swiper-pagination-bullet {
	width: 1.25rem;
	height: 0.0625rem;
	background-color: var(--white);
	opacity: 1;
	border-radius: 0;
}

.sub-facilities-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--ochre);
}

.sub-facilities__content {
	overflow-x: clip;
}

.sub-facilities__content + .sub-facilities__content {
	margin-top: 10rem;
}

.sub-facilities__desc {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding-block: 6rem 6.8125rem;
}

.sub-facilities__desc::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: color-mix(in srgb, var(--black1c1) 60%, transparent);
	position: absolute;
	inset: 0;
}

.sub-facilities__desc-inner.inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2.5rem;
}

.sub-facilities__content:nth-child(2n) .sub-facilities__desc-inner.inner {
	grid-template-columns: auto 1fr;
	direction: rtl;
}

.sub-facilities__desc-title p {
	font-size: 6.4375rem;
}

.sub-facilities__desc-title h3 {
	font-size: 1rem;
	margin-top: -0.375rem;
}

.sub-facilities__desc-texts {
	direction: ltr;
}

.sub-facilities__desc-topText {
	margin-top: 5.25rem;
	width: min(24.5138888889vw, 22.0625rem);
	font-size: 1.875rem;
	line-height: 1.3333333333;
}

.sub-facilities__desc-bottomText {
	margin-top: 4.375rem;
	margin-left: min(7.7777777778vw, 7rem);
	width: min(23.1944444444vw, 20.875rem);
	font-size: 1.125rem;
	line-height: 1.6666666667;
}

.sub-facilities__slider {
	margin-top: 2rem;
}

.sub-faq__content {
	margin-top: 0.875rem;
}

.sub-faq__content + .sub-faq__content {
	margin-top: 2.5rem;
}

.sub-faq__list {
	margin-top: 1.3125rem;
}

.sub-title {
	padding-block: 6rem 8.25rem;
	overflow-x: clip;
}

.sub-title__inner.inner {
	padding-inline: 0;
	display: grid;
	grid-template-columns: 1fr min(15.7638888889vw, 14.1875rem);
}

.sub-title__image {
	margin-left: max(50% - 50vw, -6.25rem);
	height: 30.3125rem;
}

.sub-title__image picture,
.sub-title__image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1123/486;
	object-fit: cover;
}

.sub-title__ttl {
	display: flex;
	justify-content: right;
	padding-inline: 1.375rem;
	margin-top: 6rem;
}

.sub-title__ttl p {
	writing-mode: vertical-rl;
	font-size: 1.0625rem;
	letter-spacing: 0.05em;
	text-transform: capitalize;
}

.sub-title__ttl h2 {
	writing-mode: vertical-rl;
	font-size: 3.625rem;
	letter-spacing: 0.05em;
	font-weight: var(--fw-light);
	margin-right: 0.625rem;
}

.sub-title.sub-title--reverse .sub-title__inner.inner {
	direction: rtl;
}

.sub-title.sub-title--reverse .sub-title__ttl {
	direction: ltr;
	justify-content: left;
	margin-top: 5rem;
}

.sub-title.sub-title--reverse .sub-title__image {
	margin-right: max(50% - 50vw, -6.25rem);
	margin-left: 0;
}

.text {
	font-size: 0.9375rem;
	line-height: 1.6666666667;
}

.title {
	text-align: center;
}

.title h2 {
	font-size: 3.75rem;
	letter-spacing: 0.05em;
}

.title p {
	font-size: 1.5625rem;
	letter-spacing: 0.05em;
}

.title.title--left {
	text-align: left;
}

.title.title--faq {
	text-transform: uppercase;
}

.title.title--black {
	color: var(--black333);
}

.inline-block {
	display: inline-block;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	position: absolute;
	inset: 0;
	white-space: nowrap;
}

@media (any-hover: hover) {

.article-nav__prev a:hover::after,
.article-nav__archive a:hover::after,
.article-nav__next a:hover::after {
	background-size: 100% 100%;
}

.button:hover {
	color: var(--black1c1);
	border-color: var(--black1c1);
}

.button:hover::before {
	background-size: 100% 100%;
}

.button:hover::after {
	border-color: var(--black1c1);
}

.drawer__nav-link:hover::after {
	background-size: 100% 100%;
}

.footer-nav__item a:hover::after {
	background-size: 100% 100%;
}

.footer__cta-link:hover::before {
	background-color: color-mix(in srgb, var(--black333) 90%, transparent);
}

.map-link:hover {
	opacity: 0.7;
}

.more:hover {
	opacity: 0.7;
}

.news-list__link:hover {
	opacity: 0.7;
}

}

@media (min-width: 768px) {

html {
	scroll-padding-top: 8.75rem;
}

}

@media (max-width: 1000px) {

html {
	font-size: calc(16 / var(--inner-value) * 100vw);
}

}

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

:root {
	--vw: 375 * 100vw;
}

:root {
	--header-height: calc(64 * var(--rem));
}

html {
	font-size: 16px;
}

.inner {
	max-width: 600px;
	padding-inline: var(--padding-sp);
}

.inner.inner--lower {
	max-width: 600px;
}

.article-nav {
	flex-direction: column;
	gap: 1.25rem;
}

.article-nav__prev a,
.article-nav__archive a,
.article-nav__next a {
	font-size: 1rem;
	justify-content: center;
}

.article__title {
	font-size: 1.625rem;
}

.article__content h2 {
	font-size: 1.25rem;
}

.article__content h3 {
	font-size: 1.125rem;
}

.article__content p {
	font-size: 1rem;
}

.button {
	font-size: 1rem;
	padding: 1rem;
}

.concept {
	min-height: auto;
}

.concept__sticky {
	position: static;
}

.concept__fade {
	display: none;
}

.concept__container {
	position: static;
	inset: auto;
	height: auto;
	min-height: auto;
	margin-top: 7.5rem;
}

.concept__title {
	grid-row: 1/2;
}

.concept__inner {
	height: auto;
	display: grid;
	grid-template-columns: 1fr;
}

.concept__img {
	margin-inline: auto;
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	margin-top: 1.5rem;
}

.concept__content {
	padding-block: 0;
	display: contents;
}

.concept__progress {
	display: none;
}

.concept__text {
	aspect-ratio: auto;
	outline: none;
	background-color: transparent;
	color: var(--white);
	font-size: 1rem;
	margin-top: 1.5rem;
}

.concept__link {
	justify-content: right;
	margin-top: 2.5rem;
}

.drawer__container {
	width: 90%;
	height: 100dvh;
}

.drawer__logo {
	max-width: 7.5rem;
}

.drawer__nav-link {
	font-size: 1.125rem;
	padding: 1rem;
}

.facilities-slider {
	width: 100%;
}

.facilities-slider__slide {
	margin-top: 0;
	margin-left: 0.5rem;
	width: 40%;
}

.facilities__contents {
	grid-template-columns: 1fr;
	margin-inline: 0;
}

.facilities__slider {
	height: auto;
}

.facilities__gallery {
	grid-template-columns: 1fr;
	width: auto;
	margin-inline: -1.25rem;
}

.facilities__content {
	margin-top: 0;
}

.facilities__link {
	margin-top: 2.5rem;
}

.faq-list__item {
	padding-inline: 1rem;
}

.faq-list__item-question,
.faq-list__item-answer {
	padding-block: 1.5rem;
}

.faq-list__item-question span {
	margin-right: 0.5rem;
}

.faq-list__item-answer span {
	margin-right: 0.5rem;
}

.faq__link {
	margin-top: 2.5rem;
}

.footer-nav {
	justify-content: left;
}

.footer__cta {
	grid-template-columns: 1fr;
}

.footer__cta-link {
	padding-block: 2.5rem;
	font-size: 1rem;
}

.footer__cta-link span {
	font-size: 2rem;
}

.footer__links {
	grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
	margin-inline: 0rem;
}

.footer__info-wrap {
	grid-template-columns: 1fr;
	margin-inline: 0;
	margin-top: 0rem;
}

.footer__info {
	margin-top: 4rem;
}

.footer__address {
	margin-top: 0;
}

.footer__nav-reservation {
	margin-top: 2.5rem;
	justify-content: left;
}

.footer__nav-wrap {
	grid-row: 1/2;
}

.footer__nav {
	margin-top: 2rem;
}

.footer__copy {
	grid-column: unset;
}

.header {
	padding-block: 1.25rem;
}

.header__inner.inner {
	padding-inline: 1.25rem;
}

.header__logo {
	width: 10rem;
}

.intro__contents {
	flex-direction: column;
	gap: 5rem;
}

.intro__textarea {
	padding: 0;
}

.intro__title {
	font-size: 1.5rem;
}

.intro__text {
	font-size: 1rem;
}

.intro__gallery {
	gap: 1rem;
}

.intro__img--01 {
	width: min(50vw, 12.1875rem);
}

.intro__img--02 {
	width: min(25.641025641vw, 6.25rem);
}

.intro__img--03 {
	width: min(38.4615384615vw, 9.375rem);
}

.intro__img--04 {
	width: 100%;
}

.modal-slider__prev,
.modal-slider__next {
	width: 1.875rem;
	height: 1.875rem;
}

.mv__logo {
	width: 60%;
	max-width: 20.625rem;
}

.news-list__link {
	flex-direction: column;
	padding-block: 1.5625rem 0.5rem;
	padding-inline: 0 1.5rem;
	align-items: start;
	gap: 0.5rem;
}

.news-list__link::after {
	top: auto;
	bottom: 1.25rem;
}

.news__pagination {
	margin-top: 2.5rem;
}

.progress__barFill {
	transform: scaleY(1);
}

.reservation__contents {
	grid-template-columns: 1fr;
	gap: 0;
}

.reservation__content + .reservation__content {
	margin-top: 5rem;
}

.reservation__text {
	margin-top: 2.5rem;
}

.reservation__list + .reservation__list {
	margin-top: 1.25rem;
}

.reservation__item {
	margin-top: 0.5rem;
}

.sub-404 {
	padding-block: 5rem;
}

.sub-404__text {
	margin-top: 2.5rem;
}

.sub-404__link {
	margin-top: 2.5rem;
}

.sub-access__inner.inner {
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.sub-access__info {
	grid-template-columns: 1fr;
	gap: 0.5rem;
}

.sub-facilities__desc-inner.inner {
	grid-template-columns: 1fr;
	gap: 5rem;
}

.sub-facilities__content:nth-child(2n) .sub-facilities__desc-inner.inner {
	grid-template-columns: 1fr;
}

.sub-facilities__desc-title p {
	font-size: 3.75rem;
}

.sub-facilities__desc-title h3 {
	margin-top: 0;
}

.sub-facilities__desc-topText {
	width: 100%;
	font-size: 1.5rem;
	margin-top: 0;
}

.sub-facilities__desc-bottomText {
	font-size: 1rem;
	width: auto;
}

.sub-title {
	padding-block: 5rem;
}

.sub-title__inner.inner {
	position: relative;
}

.sub-title__image {
	min-height: auto;
	margin-left: 0;
}

.sub-title__image picture,
.sub-title__image img {
	height: auto;
	aspect-ratio: 4/3;
}

.sub-title__ttl {
	position: absolute;
	flex-direction: column-reverse;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	margin-top: 0;
	padding-inline: 1.25rem;
	text-shadow: 0 0 0.625rem var(--black1c1);
}

.sub-title__ttl p {
	writing-mode: horizontal-tb;
	font-size: 0.8125rem;
}

.sub-title__ttl h2 {
	writing-mode: horizontal-tb;
	font-size: 2.5rem;
	margin-right: 0;
}

.sub-title.sub-title--reverse .sub-title__ttl {
	right: auto;
	left: 0;
	margin-top: 0;
}

.sub-title.sub-title--reverse .sub-title__image {
	margin-right: 0;
}

.title h2 {
	font-size: 2.375rem;
}

.title p {
	font-size: 1rem;
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

}

@media (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: auto;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes slide {

0% {
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	opacity: 0;
}

100% {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	opacity: 1;
}

}

@keyframes line-flow {

0% {
	transform: translateY(0);
	opacity: 0;
}

20% {
	opacity: 1;
}

80% {
	opacity: 1;
}

100% {
	transform: translateY(2.6875rem);
	opacity: 0;
}

}

