/* $brakepointsキーで指定 */

/* --px以上から指定 */

/* --pxまで指定 */

/* 範囲指定 $min:最小値 $max:最大値 */

.u-desktop {
	display: none;
}

:root {
	--fade-duration: 1s;
	--fade-fill: forwards;
	--fadeUp-movement: 50px;
	--fadeLeft-movement: 50px;
	--fadeRight-movement: -50px;
}

/* 共通 */

.u-fadeUp,
.u-fadeLeft,
.u-fadeRight {
	-webkit-animation-duration: var(--fade-duration);
	-webkit-animation-fill-mode: var(--fade-fill);
	animation-duration: var(--fade-duration);
	animation-fill-mode: var(--fade-fill);
}

/* それぞれの設定 */

.u-fadeUp {
	-webkit-animation-name: fadeup;
	animation-name: fadeUp;
}

.u-fadeLeft {
	-webkit-animation-name: fadeleft;
	animation-name: fadeLeft;
}

.u-fadeRight {
	-webkit-animation-name: faderight;
	animation-name: fadeRight;
}

fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	background: #fff;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

input[type="checkbox"]:focus + span::before {
	border-color: blue;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

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

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
	color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
	border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
	color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
	border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
	background: #3498db;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
	border-radius: 50%;
}

/* button */

/* focus */

input:focus,
textarea:focus {
	border-color: #3498db;
}

input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

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

html {
	font-size: 4.2666666667vw;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	background: #fff;
	color: #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

summary {
	cursor: pointer;
	display: list-item;
}

section {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */

/* tel only SP */

.c-btn {
	background-color: #9B8858;
	border-radius: 0.625rem;
	color: #fff;
	display: inline-block;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7142857143;
	max-width: 320px;
	padding: 1.125rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.c-btn::before,
.c-btn::after {
	-webkit-transform: translateY(-50%);
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-btn::before {
	background-image: url("../images/sns/instagram.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 2.125rem;
	left: 1.25rem;
	width: 2.125rem;
}

.c-btn::after {
	content: "→";
	height: 1.6875rem;
	right: 0.875rem;
	width: 1rem;
}

.c-btn.c-btn--header {
	background-color: #9B8858;
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	padding: 0.5625rem 0.25rem;
}

.c-btn.c-btn--header::before,
.c-btn.c-btn--header::after {
	display: none;
}

.c-btn.c-btn--header {
	font-family: "Noto Serif JP";
}

.c-btn.c-btn--header span {
	display: block;
	font-size: 0.75rem;
	font-family: "Noto Serif JP";
}

.c-test {
	color: red;
	font-size: 1.25rem;
}

.c-title {
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.c-title__img {
	height: 3.5rem;
	margin: auto;
	width: 3.5rem;
}

.c-title__jp {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 12%;
	line-height: 1.7;

}
.c-title.c-title--sub02 .c-title__jp {
	color: #fff;
}
.c-title__en {
	font-family: "Cormorant Garamond";
	font-size: 2.25rem;
	letter-spacing: 12%;
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
}

.p-activity .c-title__en, .p-gallery .c-title__en, .p-food .c-title__en, {
		color: #fff;
}

.p-amenities .c-title__en {
	color: #333;
}
.c-title__en.c-title__en--white,
.c-title__jp.c-title__jp--white {
	color: #fff;
}

.c-title__en.c-title__en--black,
.c-title__jp.c-title__jp--black {
	color: rgba(0, 0, 0, 0.2);
}

.c-title__en.c-title__en--transparent,
.c-title__jp.c-title__jp--transparent {
	color: rgba(255, 255, 255, 0.4);
}

.c-title__en span,
.c-title__en.c-title__en--white span {
    color: #9B8858;
}

.c-title__en.c-title__en--big {
    color: rgba(255, 255, 255, 0.20);
    font-family: "Cormorant Garamond";
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.c-title__en.c-title__en--large {
	color: rgba(255, 255, 255, 0.50);
	text-align: center;
	font-family: "Cormorant Garamond";
 font-size: 3.3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	   white-space: nowrap;
}

.c-title__jp.c-title__jp--large {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	line-height: 1.7;
}

.c-title.c-title--sub .c-title__en,
.c-title.c-title--sub02 .c-title__en {
	margin-top: 0.375rem;
}

.c-title.c-title--sub .c-title__jp {
	position: relative;
	color: #fff;
}

.l-about {
	padding: 4rem 0;
}

.l-access {
	padding: 4rem 0;
}

.l-activity {
	padding: 0;
}

.l-amenities {
	padding-bottom: 5.3125rem;
	padding-top: 4rem;
}

.l-food {
	padding: 4rem 0;
}

.l-footer {
	margin-top: auto;
}

.l-gallery {
	padding: 4rem 0;
	background: #1E1D1D;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 33.75rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.l-price {
	padding: 3.9375rem 0 4rem;
}

.l-reserve {
	padding-bottom: 4rem;
	padding-top: 6.25rem;
}

.l-spend {
	padding: 4rem 0;
	background: #1E1D1D;
}

.l-sub-privacy {
	padding-bottom: 6.25rem;
	padding-top: 4rem;
}

.l-sub-rule {
	padding-bottom: 6.25rem;
	padding-top: 4rem;
}

.l-sv {
	padding: 4.125rem 0;
}

.entry-title {
	display: none;
}

/* sass関数使用例 */

.p-sass-function { /* color関数 */
	background-color: rgba(0, 78, 245, 0.6);
	background-color: rgba(0, 78, 245, 0.6);
	color: #fff;
	display: inline-block; /* メディアクエリ使用例 */
	margin-bottom: 6.25rem; /* 除算処理 */
	padding: 20px;
	padding: 20px; /* vw()関数 */
	width: 13.8888888889vw;
	width: 80vw;
}

.p-about-contents__item + .p-about-contents__item {
	margin-top: 2.125rem;
}

.p-about-contents__item {
	position: relative;
	background-color: #1E1D1D;
}

.p-about-contents__item .p-about-contents__textbox::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	position: absolute;
}

.p-about-contents__item:nth-child(2n+1) .p-about-contents__textbox::before {
	background-image: url("../images/about/about-treat01.svg");
	bottom: -2.125rem;
	height: 11.75rem;
	right: -1.875rem;
	width: 8.9375rem;
}

.p-about-contents__item:nth-child(2n) .p-about-contents__textbox::before {
	background-image: url("../images/about/about-treat02.svg");
	bottom: -5.4375rem;
	height: 9.9375rem;
	left: -0.4375rem;
	width: 5.625rem;
	z-index: 1;
}

.p-about-contents__img {
	padding-top: 63.4782608696%;
	position: relative;
}

.p-about-contents__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-about-contents__img::before {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 4.25rem;
	left: 1.0625rem;
	position: absolute;
	top: 1.0625rem;
	width: 8.125rem;
	z-index: 1;
}

.p-about-contents__img::after {
	-webkit-transform: translateX(-50%);
	background: linear-gradient(180deg, rgba(30, 29, 29, 0.00) 4.25%, #1E1D1D 83.99%);
	
	bottom: 0px;
	content: "";
	display: block;
	height: 42.4528301887%;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 101%;
	height: 102%;
}

.p-about-contents__title {
	display: none;
}

.p-about-contents__item:nth-child(n+2) .p-about-contents__title {
	display: none;
}

.p-about-contents__head {
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7;

color: #FFF;
        font-family: "Noto Serif JP";
        font-size: 31px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 3.1px;
}

.p-about-contents__explain {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 0.625rem;
color: #FFF;
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
letter-spacing: 1.6px;
}

.p-about {
	display: inline-table;
	overflow: hidden;
	background-color: #1E1D1D;
    padding-left: 15px;
    padding-right: 15px;
}

.p-about__inner.l-inner {
	max-width: 600px;
	width: 100%;
	padding-inline: 0;
}

.p-about__title {
	margin: auto;
}

.p-about__contents {
	margin-top: 1.25rem;
}

.p-access-contents {
	color: #fff;
}

.p-access-contents__map {
	position: relative;
	width: 100%;
}

.p-access-contents__map::before {
	content: "";
	display: block;
	padding-top: 74.7826086957%;
}

.p-access-contents__map iframe {
	-webkit-transform: translate(-50%, -50%);
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-access-contents__guide {
	margin-top: 0.75rem;
}

.p-access-contents__guide-address,
.p-access-contents__guide-text {
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.p-access-contents__guide-address {
	font-size: 0.875rem;
}

.p-access-contents__guide-title {
	display: none;
}

.p-access-contents__guide-img {
	margin-top: 1.25rem;
	position: relative;
	width: 100%;
}

.p-access-contents__guide-img::before {
	content: "";
	display: block;
	padding-top: 64.9275362319%;
}

.p-access-contents__guide-img img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-access-contents__guide-text {
	font-size: 0.75rem;
	margin-top: 0.375rem;
}

.p-access {
	position: relative;
	background: #1E1D1D;
}

.p-access__inner {
	position: relative;
	z-index: 80;
}

.p-access::before,
.p-access::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

.p-access::after {
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	background-color: rgba(0 ,0, 0,0.7);
}

.p-access__title {
	color: #fff;
	margin: auto;
}

.p-access__contents {
	margin-top: 1.25rem;
}

.p-activity-gallery__item + .p-activity-gallery__item {
	margin-top: 1.5rem;
}

.p-activity-gallery__media {
	position: relative;
	width: 100%;
}

.p-activity-gallery__media::before {
	content: "";
	display: block;
	padding-top: 65.7971014493%;
}

.p-activity-gallery__media img,
.p-activity-gallery__media iframe {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-activity-gallery__title,
.p-activity-gallery__text {
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.p-activity-gallery__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: bold;
	margin-top: 0.75rem;
	padding-bottom: 1.375rem;
	position: relative;
	text-align: center;
	color: #fff;
}

.p-activity-gallery__title::before {
	-webkit-transform: translateX(-50%);
	background-image: url("../images/activity/underline.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0.8125rem;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 5rem;
}

.p-activity-gallery__text {
	font-size: 0.875rem;
	color: #fff;
}

.p-activity {
	background: rgba(30, 29, 29, 0.81);
	overflow: hidden;
	background-size: cover;
}

.p-activity {
	background-image: url("../images/activity/activity-bg.webp");
	position: relative;
}

.p-activity::before,
.p-activity::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	position: absolute;
	background: rgba(30, 29, 29, 0.81);
	width: 100%;
	height: 100%;
}



.p-activity__inner.l-inner {
	position: relative;
	z-index: 1;
	padding-bottom: 3rem;
}

.p-activity__title {
	margin: auto;
}

.p-activity__gallery {
	margin-top: 1.25rem;
}

.p-amenities-list {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.p-amenities {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.p-amenities::before {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.2);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-amenities__title {
	margin: auto;
	position: relative;
	z-index: 1;
}

.p-amenities__contents {

	margin-top: -1.5625rem;
	padding: 2.5625rem 1rem 0.1875rem;
	position: relative;
}

.p-amenities__contents::before,
.p-amenities__contents::after {
    background: rgba(255, 255, 255, 0.60);
    content: "";
    display: block;
	  height: 31.3125rem;
    position: absolute;
    width: 100%;
}

.p-amenities__contents::before {
	right: 0;
	background: rgba(255, 255, 255, 0.60);
	top: -1.33rem;
}

/* .p-amenities__contents::after {
	-webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 1.1875rem) 100%, 0% 100%);
	bottom: -1.25rem;
	clip-path: polygon(0 0, 100% 0%, calc(100% - 1.1875rem) 100%, 0% 100%);
	left: 0;
} */

.p-amenities__lists {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position:relative;
}

.p-amenities__list {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 50%;
}

.p-amenities__attention-head {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-align: center;
}

.p-amenities__attention-head span {
	color: #476030;
}

.p-amenities__attention-textbox {
	margin-top: 0.375rem;
}

.p-amenities__attention-text {
	font-size: 0.625rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.p-amenities__attention-wrapper {
	background-color: #fff;
	border: 2px solid #9B8858;
	border-radius: 0.625rem;
	margin-top: 1.5rem;
	padding: 0.875rem 0.875rem 1.125rem;
	position:relative;
}

.p-food-contents__item {
	background-color: rgba(225,225, 225,0.03);
	border-radius: 0.625rem;
	padding: 2.25rem 1rem 1.5rem;
	position: relative;
}

.p-food-contents__head, .p-food-contents__text {
	color :#fff;
}


.p-food-contents__item::after {
	-webkit-transform: rotate(-5deg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 1.75rem;
	left: 1rem;
	position: absolute;
	top: 2rem;
	transform: rotate(-5deg);
	width: 6.0625rem;
	z-index:10;
}

.p-food-contents__item + .p-food-contents__item {
	margin-top: 1.25rem;
}

.p-food-contents__title-img {
	content: "";
	display: block;
	height: 100%;
	height: 1.75rem;
	left: 1rem;
	position: absolute;
	top: 1.75rem;
	width: 100%;
	width: inherit;
}

.p-food-contents__title-img img {
	height: inherit;
}

.p-food-contents__head {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
	text-align: center;
	position: relative;
	z-index: 20;
}

.p-food-contents__imgs {
	margin-top: 0.5rem;
}

.p-food-contents__img {
	position: relative;
	width: 100%;
}

.p-food-contents__img + .p-food-contents__img {
	margin-top: 0.5rem;
}

.p-food-contents__img::before {
	content: "";
	display: block;
	padding-top: 67.0926517572%;
}

.p-food-contents__img img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-food-contents__text {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 0.5rem;
}

.p-food {
    background-color: #1E1D1D;
}

.p-food__title {
	margin: auto;
}

.p-food__contents {
	margin-top: 1.25rem;
}

.l-footer {
	padding: 2.5rem 0 0.75rem;
}

.p-footer {
	background-color: #1E3756;
}

.p-footer__contents {
	color: #fff;
}

.p-footer__copyright {
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 2rem;
	text-align: center;
}

.p-footer-info__logo {
	display: block;
	max-width: 100px;
	position: relative;
	width: 100%;
}

.p-footer-info__logo::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-footer-info__logo img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-footer-info__address {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 0.625rem;
	white-space:nowrap;
	font-family: "Noto Serif JP", sans-serif;
}

.p-footer__menu {
	margin-top: 1.5625rem;
}

.p-footer-menu {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.p-footer-menu__items {
	width: 50%;
}

.p-footer-menu__item {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	font-family: "Noto Serif JP", sans-serif;
}

.p-footer-menu__item + .p-footer-menu__item {
	margin-top: 0.25rem;
}

.p-gallery {
	position: relative;
}

.p-gallery::before,
.p-gallery::after {
	bottom: 0;
	content: "";
	display: block;
	height: 30.1863354037%;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-gallery::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.p-gallery::after {
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	background-color: rgba(255, 255, 255, 0.5);
	bottom: 0;
	content: "";
	display: block;
	height: 30.1863354037%;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-gallery__title {
	margin: auto;
}

.p-gallery__swiper-container {
	margin: 1.75rem auto auto;
	position: relative;
}

.p-gallery__swiper-img {
	position: relative;
	width: 100%;
}

.p-gallery__swiper-img::before {
	content: "";
	display: block;
	padding-top: 66.6666666667%;
}

.p-gallery__swiper-img img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-gallery__prevBtn.swiper-button-prev::after,
.p-gallery__nextBtn.swiper-button-next::after {
	background-color: #000;
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	height: 56px;
	letter-spacing: 0.03em;
	padding: 14px;
	width: 56px;
}

.p-gallery__prevBtn.swiper-button-prev::after {
	content: "←";
}

.p-gallery__nextBtn.swiper-button-next::after {
	content: "→";
}

.p-gallery__swiper-text {
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 1rem;
}

/* アクセシビリティ対応ドロワーメニュー */

.p-hamburger {
	-webkit-transition: ease 0.3s;
	-webkit-box-shadow: 0 0 2rem transparent;
	background: #9B8858;
	border: none;
	box-shadow: 0 0 2rem transparent;
	height: 1.375rem;
	padding: 15px 7px 17px;
	position: relative;
	transition: ease 0.3s;
	width: 2.5rem;
	z-index: 999;
}

/* ドロワーボタンfocus時 */

/* ハンバーガー真ん中のライン */

.p-hamburger__line {
	-webkit-transform: translateX(50%);
	-webkit-transition: ease 0.3s;
	background-color: #fff;
	height: 2px;
	position: absolute;
	right: 50%;
	transform: translateX(50%);
	transition: ease 0.3s;
	width: 40px;
}

/* ハンバーガー上下のライン */

.p-hamburger__line::before,
.p-hamburger__line::after {
	-webkit-transition: ease 0.3s;
	background-color: inherit;
	background-color: #fff;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	transition: ease 0.3s;
	width: 100%;
}

/* ハンバーガー上のラインの位置 */

.p-hamburger__line::before {
	top: -10px;
}

/* ハンバーガー下のラインの位置 */

.p-hamburger__line::after {
	top: 10px;
}

/* ドロワーメニューオープン時のハンバーガー真ん中ライン */

.p-hamburger[aria-expanded="true"] .p-hamburger__line {
	-webkit-box-shadow: none;
	background-color: transparent;
	box-shadow: none;
}

/* ドロワーメニューオープン時のハンバーガー上下ライン */

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
	background-color: #fff;
	top: 0;
}

/* ドロワーメニューオープン時のハンバーガー上ラインの回転 */

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ドロワーメニューオープン時のハンバーガー下ラインの回転 */

.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.p-hamburger__hidden {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.p-header-item__link {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	padding: 1.25rem 0;
	font-family: "Noto Serif JP", sans-serif;
}

.p-header-item__desc {
	display: block;
	font-family: "Cormorant Garamond";
	font-size: 1.5rem;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.p-header-item.is-reserve {
	background-color: #fff;
	color: #9B8858 !important;
}

.p-header-item:first-child {
	border-top: 1px solid #fff;
}

.p-header-item {
	border-bottom: 1px solid #fff;
}

.p-header {
	-webkit-transition: background-color 0.3s ease-out;
	background-color: transparent;
	height: 70px;
	left: 0;
	position: relative;
	position: fixed;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease-out;
	z-index: 100;
}

.p-header__inner.l-inner {
	height: inherit;
	max-width: initial;
	padding: 0;
	width: 90.6666666667%;
}

.p-header__wrapper {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	justify-content: space-between;
}

.p-header__logo {
	color: #fff;
	max-height: 70px;
	max-width: 70px;
	position: relative;
	position: relative;
	width: 100%;
	z-index: 100;
}

.p-header__logo::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-header__logo img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-header__logoImg {
	-webkit-transition: display 0.3s;
	transition: display 0.3s;
}

.p-header.is-headerScrolled .p-header__logoImg.p-header__logoImg--01 {
	display: none;
}

.p-header .p-header__logoImg.p-header__logoImg--02 {
	display: none;
}

.p-header.is-headerScrolled .p-header__logoImg.p-header__logoImg--02 {
	display: block;
}

.p-header.is-headerScrolled .p-header__logo.is-opened .p-header__logoImg.p-header__logoImg--01 {
	display: block;
}

.p-header.is-headerScrolled .p-header__logo.is-opened .p-header__logoImg.p-header__logoImg--02 {
	display: none;
}

.p-header__nav {
	-webkit-transition: color 0.3s;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	display: none;
	height: calc(100vh + 66px);
	height: calc(var(--vh, 1vh) * 100 + 66px);
	left: 0;
	overflow-y: scroll;
	position: absolute;
	right: 0;
	text-transform: capitalize;
	top: 0;
	transition: color 0.3s;
	width: 100%;
	z-index: 99;
}

.p-header__nav::before {
	background-color: rgba(155, 136, 88, 0.9);
	bottom: 0;
	content: "";
	display: block;
	height: inherit;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.p-header__items {
	margin-top: 100px;
	padding-bottom: 65px;
	position: relative;
	text-align: center;
}

.p-header__item {
	height: inherit;
}

.p-header__btn {
	display: none;
}

.p-header.is-subpage {
	background-color: #fff;
}

.p-header.is-subpage .p-header__nav {
	color: #333;
}

.p-header.is-subpage .p-header__nav.is-opened {
	color: #fff;
}

.p-header.is-subpage .p-header__logoImg.p-header__logoImg--01 {
	display: none;
}

.p-header.is-subpage .p-header__logoImg.p-header__logoImg--02 {
	display: block;
}

.p-header.is-subpage .p-header__logo.is-opened .p-header__logoImg.p-header__logoImg--01 {
	display: block-w
}

.p-header.is-subpage .p-header__logo.is-opened .p-header__logoImg.p-header__logoImg--02 {
	display: none;
}

.js-fadeUp,
.js-fadeRight,
.js-fadeLeft {
	opacity: 0;
}

.p-mv-contents__title {
	font-size: clamp(30px, 7.4vw, 68px);
padding-left: 1rem;
letter-spacing: 0.1em;
line-height: 0.7;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
color: #FFF;
text-shadow: 2px 2px 2px #000;
font-family: "Noto Serif JP";
font-style: normal;
font-weight: 700;
/* line-height: 150%; */
letter-spacing: 6.8px;
white-space: pre-wrap;
}

.p-mv-contents__title {
	@media screen and (max-width: 768px)  {
		font-size: 2rem;
	}
}

.p-mv-contents__text {
    font-size: min(5.2vw, 38px);
    font-weight: bold;
    letter-spacing: 0.07em;
    line-height: 1.5;
    color: #FFF;
    text-shadow: 2px 2px 2px #000;
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 700;
    line-height: 178%;
    letter-spacing: 3.8px;
    margin-top: 17px;
}

.p-mv-contents__text.p-mv-contents__text--pc {
	display: none;
}

.p-mv-contents__title.p-mv-contents__title--pc {
	display: none;
}

.p-mv {
	background-color: #fff;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
}

.p-mv::before {
	content: "";
	display: block;
	position: absolute;
}

.p-mv::before {
	background: #eef3e7;
	bottom: 0;
	height: 23.0769230769%;
	left: 0;
	width: 100%;
}

.p-mv__inner.l-inner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 736px;
	position: relative;
	z-index: 1;
	padding-inline: 0;}

.p-mv__wrapper {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 92.3076923077%;
	margin: 0 calc(50% - 50vw) auto auto;
	padding-left: 0.25rem;
	width: 100vw;
	height: 100%;
}

.p-mv__contents {
	color: #fff;
	margin-top: 3.3125rem;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.p-price-contents__title {
	margin: auto;
}

.p-price-contents__explain {
	background: rgba(255, 255, 255, 0.10);
	border-radius: 0.625rem;
	margin-top: 1.25rem;
	padding: 1rem;
}

.p-price-contents__explain-head {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.7;
	color: #fff;
}

.p-price-contents__explain-head.--serif {
	font-family: "Noto Serif JP", serif;
	font-weight:bold;
}

.p-price-contents__explain-text {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	color: #fff;
}

.p-price {
	background: #1E1D1D;
}

.p-reserve-contents {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.625rem;
}

.p-reserve-contents__head {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-align: center;
}

.p-reserve-contents__text {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 1.0625rem;
	text-align: center;
}

.p-reserve-contents__attention {
	font-size: 0.875rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 1.0625rem;
	text-align: center;
}

.p-reserve-contents__attention a:not([href^="tel:"]) {
	text-decoration: underline;
}

.p-reserve-contents__attention a[href^="tel:"] {
	text-decoration: underline;
}

.p-reserve-contents__booking {
	margin-top: 2.0625rem;
}

.p-reserve-contents__tel-content,
.p-reserve-contents__instagram-content {
	background-color: #fff;
	border-radius: 0.625rem;
	padding: 1.125rem 1.25rem 0.75rem;
	position: relative;
}

.p-reserve-contents__tel-title,
.p-reserve-contents__instagram-title {
	-webkit-transform: translateX(-50%);
	height: 1.75rem;
	left: 50%;
	position: absolute;
	text-align: center;
	top: -0.9375rem;
	transform: translateX(-50%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-reserve-contents__tel-title img,
.p-reserve-contents__instagram-title img {
	height: inherit;
	margin: auto;
}

.p-reserve-contents__tel-head,
.p-reserve-contents__instagram-head {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-align: center;
}

.p-reserve-contents__tel {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2.5rem;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-reserve-contents__tel span {
	position: relative;
}

.p-reserve-contents__tel span::before {
	-webkit-transform: translateY(-50%);
	background-image: url("../images/reserve/tel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 2.5rem;
	left: -2.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
}

.p-reserve-contents__instagram-content {
	margin-top: 1.5rem;
}

.p-reserve-contents__instagram-btn {
	font-family: "Noto Serif JP", serif;
	margin-top: 0.25rem;
	text-align: center;
}

.p-reserve-contents__instagram-title {
    height: 33px;
}

.p-reserve {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.p-reserve::before {
	-webkit-transform: translate(-50%, -50.1%);
	background: rgba(30, 29, 29, 0.60);
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50.1%;
	transform: translate(-50%, -50.1%);
	width: 100%;
}

.p-reserve__inner.l-inner {
	position: relative;
	z-index: 1;
}

.p-reserve__title {
	margin: auto;
	position: relative;
	width: 100%;
}

.p-reserve__title-en {
	-webkit-transform: translateX(-50%);
	bottom: 2.0625rem;
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

.p-reserve__contents {
	margin: 1.25rem auto 0;
	max-width: 600px;
	padding: 1.25rem 1rem 1.5rem;
	width: 100%;
}

.p-spend-how {
	background-color: #1E3756;
	border-radius: 0.625rem;
	padding: 3.5rem 0.9375rem 1.5rem;
}

.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:not(:last-of-type)::before,
.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:last-of-type::before,
.p-spend-how__items > .p-spend-how__item:last-of-type > .p-spend-how__box:not(:last-of-type)::before {
	background: #fff;
	content: "";
	display: block;
	left: -1.0625rem;
	position: absolute;
	top: 1.0625rem;
	width: 2px;
}

.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:not(:last-of-type)::before {
	height: 100%;
}

.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:last-of-type::before {
	height: calc(100% + 3.75rem);
}

.p-spend-how__items > .p-spend-how__item:last-of-type > .p-spend-how__box:not(:last-of-type)::before {
	height: 100%;
}

.p-spend-how__items {
	margin: auto;
	max-width: 510px;
}

.p-spend-how__item {
	padding-left: 1.625rem;
	position: relative;
}

.p-spend-how__item + .p-spend-how__item {
	margin-top: 1.25rem;
}

.p-spend-how__title {
	background-color: #fff;
	border-radius: 0.25rem;
	color: #1E3756;
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.03em;
	line-height: 1.7;
	padding: 0 0.5rem;
}

.p-spend-how__box {
	color: #fff;
	margin-top: 0.75rem;
	position: relative;
}

.p-spend-how__box.is-line::before {
	background: #fff;
	content: "";
	display: block;
	height: 100%;
	left: -1.0625rem;
	position: absolute;
	top: 1.0625rem;
	width: 2px;
}

.p-spend-how__box.is-line.is-line--long::before {
	height: calc(100% + 3rem);
}

.p-spend-how__box + .p-spend-how__box {
	margin-top: 0.75rem;
}

.p-spend-how__head,
.p-spend-how__text {
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.p-spend-how__head {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: bold;
	position: relative;
}

.p-spend-how__head::before {
	-webkit-transform: translateY(-50%);
	content: "◆";
	display: block;
	font-size: 1.25rem;
	height: inherit;
	left: -1.625rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-spend-how__text {
	font-size: 0.875rem;
}

.p-spend__title {
	margin: auto;
}

.p-spend__img {
	margin-top: 1.25rem;
	position: relative;
	width: 100%;
}

.p-spend__img::before {
	content: "";
	display: block;
	padding-top: 66.6666666667%;
}

.p-spend__img img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-spend__how {
	margin: -2.5rem calc(50% - 50vw) 0;
	width: 100vw;

}

.p-sub-privacy__inner.l-inner {
	max-width: 630px;
}

.p-sub-privacy__text {
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-sub-privacy__text a[href^="tel:"] {
	text-decoration: underline;
}

.p-sub-rule__inner.l-inner {
	max-width: 630px;
	width: 100%;
}

.p-rule-contents__item + .p-rule-contents__item {
	margin-top: 3rem;
}

.p-rule-contents__item-title {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.5;
	padding-left: 1rem;
	position: relative;
	font-family: "Noto Serif JP";
}

.p-rule-contents__item-title::before {
	background: #9B8858;
	border-radius: 0.25rem;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0.25rem;
}

.p-rule-contents__item-img {
	margin-top: 1.25rem;
	position: relative;
	width: 100%;
}

.p-rule-contents__item-img::before {
	content: "";
	display: block;
	padding-top: 50%;
}

.p-rule-contents__item-img img {
	-webkit-transform: translate(-50%, -50%);
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-rule-contents__item-text {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-top: 1.25rem;
}

.p-sv {
	margin-top: 70px;
	position: relative;
}

.p-sv::before,
.p-sv::after {
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-sv::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.p-sv::after {
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	background-color: rgba(30, 55, 86, 0.8);
}

.p-sv__title {
	color: #fff;
	margin: auto;
}

.p-amenities__contents::after {
	display:none!important
}

@media (prefers-reduced-motion: reduce) {

	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		-webkit-animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

}

@media screen and (min-width: 375px) {

	html {
		font-size: 16px;
	}

}

@media screen and (min-width: 768px) {

	.u-mobile {
		display: none;
	}

	.u-desktop {
		display: block;
	}

	html {
		font-size: 1.4035087719vw;
	}

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

	.c-btn {
		font-size: 1rem;
		line-height: 1.6875;
	}

	.c-btn::after {
		right: 1.25rem;
	}

	.c-test {
		color: green;
		font-size: 3.125rem;
	}

	.c-title__img {
		height: 4rem;
		width: 4rem;
	}

	.c-title__img.c-title__img--left {
		margin-left: initial;
	}

	.c-title__jp {
		font-size: 1.75rem;
	}

	.c-title__en {
		font-size: 3.5rem;
	}
	
	.p-activity .c-title__en {
		color: #fff !important;
	}
	
	.c-title--sub02 {
		color: #fff !important;
	}
	
	.p-activity__title {
		color: #fff !important;
	}

	.c-title__en.c-title__en--big {
    font-size: 102px;
	}

	.c-title__en.c-title__en--large {
		font-size: 10rem;
		line-height: 1.075;
	}

	.c-title__jp.c-title__jp--large {
		font-size: 3rem;
	}

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

	.c-title.c-title--sub .c-title__en,
	.c-title.c-title--sub02 .c-title__en {
		margin-top: 0.5rem;
		color: #fff;
	}

	.c-title.c-title--sub .c-title__jp {
		margin-top: 0.4375rem;
		padding-left: 1.4em;
	}

	.c-title.c-title--sub02 .c-title__jp {
		margin-top: 0.4375rem;
	}

	.c-title.c-title--sub .c-title__jp::before {
		content: "／ ";
		display: block;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		color: #fff;
	}

	.l-about {
		padding: initial;
	}

	.l-access {
		padding: 6.25rem 0 2.375rem;
	}

	.l-activity {
		padding: 0;
	}

	.l-amenities {
		padding-bottom: 10.625rem;
		padding-top: 6.375rem;
	}

	.l-food {
		padding: 6.25rem 0;
	}

	.l-gallery {
		padding: 6.25rem 0;
	}

	.l-inner {
		max-width: 1190px;
		padding-left: 25px;
		padding-right: 25px;
	}

	.l-price {
		padding: 5rem 0;
	}

	.l-reserve {
		padding-top: 9.625rem;
	}

	.l-spend {
		padding: 6.25rem 0;
	}

	.l-sv {
		padding: 4.125rem 0;
	}

	.p-sass-function {
		font-size: 1.5rem;
	}


	.p-mv-contents__title {
		font-size: min(4.4vw, 68px);
		padding-left: 0;
		letter-spacing: 0.1em;
		line-height: 1;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		color: #FFF;
	text-shadow: 2px 2px 2px #000;
	font-family: "Noto Serif JP";
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 102px */
	letter-spacing: 6.8px;
	}

	.p-about-contents__item + .p-about-contents__item {
		margin-top: initial;
	}

	.p-about-contents__item {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin: 0 0 0 calc(50% - 50vw);
	}

	.p-about-contents__item:nth-child(2n) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		margin: 0 calc(50% - 50vw) 0 0;
	}

	.p-about-contents__item:nth-child(2n+1) .p-about-contents__textbox::before {
		height: 77.2428884026%;
		right: 2rem;
		width: 18.6805555556%;
	}

	.p-about-contents__item:nth-child(2n) .p-about-contents__textbox::before {
		bottom: -7.9375rem;
		height: 124.2888402626%;
		left: 2.9375rem;
		width: 22.3611111111%;
	}

	.p-about-contents__img {
		padding-top: 32.296819788%;
		width: 50%;
		width: 50.8833922261%;
	}

	.p-about-contents__img::before {
		height: 4.9375rem;
		left: 9.1875rem;
		top: 3.125rem;
		width: 16.1875rem;
	}

	.p-about-contents__item:nth-child(2n) .p-about-contents__img::before {
		left: initial;
		right: 1.6875rem;
	}

	.p-about-contents__img::after {
		-webkit-transform: initial;
		background: linear-gradient(90deg, rgba(30, 29, 29, 0.00) 14.25%, #1E1D1D 64.99%);
		right: -1px;
		transform: initial;
		width: 34.3055555556%;
		left: unset;
	}

	.p-about-contents__item:nth-child(2n) .p-about-contents__img::after {
		-webkit-transform: rotate(180deg);
		left: -1px;
		right: initial;
		transform: rotate(180deg);
	}

	.p-about-contents__textbox {
		margin-left: -4.375rem;
		max-width: 640px;
		position: relative;
		width: 56.1403508772%;
		z-index: 1;
	}

	.p-about-contents__item:first-child .p-about-contents__textbox {
		margin-top: 4.375%;
	}

	.p-about-contents__item:nth-child(2n) .p-about-contents__textbox {
		margin-left: initial;
		margin-right: -4.4375rem;
	}

	.p-about-contents__title {
		content: "";
		display: block;
		display: block;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		position: absolute;
		right: 0.9375rem;
		top: -4.125rem;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

	.p-about-contents__head {
       font-size: 31px;
	}

	.p-about-contents__explain {
		font-size: 1rem;
		line-height: 1.6875;
		margin-top: 1rem;
	}

	.p-about__inner.l-inner {
		max-width: initial;
		max-width: 2000px;
		position: relative;
	}

	.p-about__title {
		display: none;
	}

	.p-about__contents {
		margin-top: initial;
	}

	.p-access-contents {
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.p-access-contents__map {
		margin: -6.25rem 0 0 calc(50% - 50vw);
		width: 63.1578947368%;
	}

	.p-access-contents__map::before {
		padding-top: 75%;
	}

	.p-access-contents__guide {
		margin-left: 4.2105263158%;
		margin-top: initial;
		width: 45.7894736842%;
	}

	.p-access-contents__guide-address {
		font-size: 1rem;
		margin-top: 1.5625rem;
	}

	.p-access-contents__guide-title {
		display: block;
	}

	.p-access-contents__guide-img {
		max-width: 386px;
	}

	.p-access-contents__guide-img::before {
		padding-top: 64.9350649351%;
	}

	.p-access-contents__guide-text {
		font-size: 12px;
		margin-top: 1.1875rem;
	}

	.p-access::before,
	.p-access::after {
		bottom: 0;
		height: 92.0212765957%;
		left: initial;
		right: 0;
		top: initial;
		width: 73.6842105263%;
	}

	.p-access__title {
		display: none;
	}

	.p-access__contents {
		margin-top: initial;
	}

	.p-activity-gallery {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.p-activity-gallery__item {
		width: 30.701754386%;
	}

	.p-activity-gallery__item + .p-activity-gallery__item {
		margin-top: initial;
	}

	.p-activity-gallery__item:nth-child(3n+2),
	.p-activity-gallery__item:nth-child(3n) {
		margin-left: 3.9473684211%;
	}

	.p-activity-gallery__item:nth-child(3n+2) {
		margin-top: 1.875rem;
	}

	.p-activity-gallery__item:nth-child(3n) {
		margin-top: 3.75rem;
	}

	.p-activity-gallery__media::before {
		padding-top: 65.7142857143%;
	}

	.p-activity-gallery__title {
		font-size: 1.5rem;
		padding-bottom: 1.25rem;
	}

	.p-activity-gallery__title::before {
		bottom: 0.75rem;
	}

	.p-activity-gallery__text {
		font-size: 1rem;
	}


	.p-activity__gallery {
		margin-top: 1.9375rem;
	}

	.p-amenities-list {
		font-size: 1rem;
	}

	.p-amenities__contents {
		margin-top: 1rem;
		padding: 0.75rem 1rem 0;
	}

	.p-amenities__contents::before
	{
		height: 4.375rem;
	}

	.p-amenities__contents::before {
           top: -4.38rem;
        height: 28.3125rem;
	}

/* 	.p-amenities__contents::after {
		-webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 4.25rem) 100%, 0% 100%);
		bottom: -4.36rem;
		clip-path: polygon(0 0, 100% 0%, calc(100% - 4.25rem) 100%, 0% 100%);
	} */
	.p-amenities__contents::after {
		display:none!important;
	}
	.p-amenities__lists,
	.p-amenities__attention-wrapper {
		margin: auto;
		max-width: 800px;
		width: 100%;
		width: 72.202166065%;
	}

	.p-amenities__list {
		width: 33.3333333333%;
	}

	.p-amenities__attention-head {
		font-size: 1.25rem;
	}

	.p-amenities__attention-textbox {
		margin-top: 0.5rem;
	}

	.p-amenities__attention-text {
		font-size: 12px;
	}

	.p-amenities__attention-wrapper {
		margin-top: -0.375rem;
		padding: 0.875rem 4.7833935018% 0.9375rem;
		position: relative;
		top: 1.375rem;
		z-index: 1;
	}

	.p-food-contents {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.p-food-contents__item {
		padding: 3.8125rem 1.375rem 1.6875rem 1.5rem;
		width: 62.368421%;
		border: 1px solid #2A2A2A;
		box-shadow: 0 10px 30px rgba(0,0,0,0.3);
		background-color: rgba(225,225, 225,0.03);
	}

	.p-food-contents__item::before {
		-webkit-transform: translateX(-22%) rotate(40deg);
		height: 5rem;
		top: -1.875rem;
		transform: translateX(-22%) rotate(40deg);
		width: 2.1875rem;
	}

	.p-food-contents__item::after {
		height: 3.125rem;
		left: 0.875rem;
		top: 2.6875rem;
	}

	.p-food-contents__item + .p-food-contents__item {
		margin-top: 2.5rem;
	}

	.p-food-contents__item:nth-child(2) {
		margin-top: initial;
	}

	.p-food-contents__item:nth-child(2n) {
		margin-left: 3.263158%;
		flex: 1;
	}

	.p-food-contents__title-img {
		height: 3.125rem;
	}

	.p-food-contents__head {
		font-size: 2rem;
	}

	.p-food-contents__imgs {
		display: flex;
		gap: 1rem;
		margin-top: 1rem;
	}

	.p-food-contents__img {
		flex: 1;
	}

	.p-food-contents__img + .p-food-contents__img {
		margin-top: 0;
	}

	.p-food-contents__img::before {
		padding-top: 66.9387755102%;
	}

	.p-food-contents__text {
		font-size: 1rem;
		margin-top: 1rem;
	}

	.p-food__contents {
		margin-top: 1.75rem;
	}

	.l-footer {
		padding: 1.75rem 0 1.25rem;
	}

	.p-footer__contents {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.p-footer__info {
		width: 25.1851851852%;
	}

	.p-footer__menu {
		margin-left: 2.0625rem;
	}

	.p-footer__copyright {
		margin-top: 1.25rem;
	}

	.p-footer-info__logo {
		max-width: 150px;
	}

	.p-footer-info__logo::before {
		padding-top: 100%;
	}

	.p-footer-info__address {
		font-size: 1rem;
		margin-top: 1.25rem;
	}

	.p-footer__menu {
		margin-top: initial;
	}

	.p-footer-menu {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-webkit-align-content: flex-start;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		flex-wrap: wrap;
	}

	.p-footer-menu__items {
		display: contents;
		width: initial;
	}

	.p-footer-menu__item {
		font-size: 1rem;
		width: 33.3333333333%;
	}

	.p-footer-menu__item + .p-footer-menu__item {
		margin-top: initial;
	}

	.p-footer-menu__items:first-child .p-footer-menu__item:nth-child(n+4),
	.p-footer-menu__items:not(:first-child) .p-footer-menu__item {
		margin-top: 0.625rem;
	}

	.p-gallery::before,
	.p-gallery::after {
		height: 30.1863354037%;
	}

	.p-gallery::after {
		height: 30.1863354037%;
	}

	.p-gallery__swiper-img::before {
		padding-top: 66.6666666667%;
	}

	.p-gallery__prevBtn.swiper-button-prev {
		left: -0.625rem;
	}

	.p-gallery__nextBtn.swiper-button-next {
		right: -0.625rem;
	}

	.p-hamburger {
		display: none;
	}

	.p-header-item__link {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
		height: inherit;
		justify-content: center;
		padding: initial;
		white-space: nowrap;
	}

	.p-header-item.is-reserve {
		display: none;
	}

	.p-header-item:first-child {
		border: initial;
	}

	.p-header-item {
		border: initial;
	}

	.p-header {
		height: 116px;
	}

	.p-header.is-headerScrolled {
		background-color: rgba(255, 255, 255, 0.8);
	}

	.p-header__inner.l-inner {
		margin: auto;
		max-width: 72.8125rem;
		padding-left: 3.125%;
		padding-right: 25px;
	}

	.p-header__wrapper {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.p-header__logo {
		height: 6.25rem;
		max-height: initial;
		max-width: initial;
		width: 6.25rem;
	}

	.p-header__logo::before {
		padding-top: 100%;
	}

	.p-header__nav {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		align-items: center;
		background-color: transparent;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: inherit;
		justify-content: space-between;
		left: initial;
		left: initial;
		margin-left: 2.125rem;
		position: initial;
		right: initial;
		top: initial;
	}

	.p-header__nav::before {
		display: none;
	}

	.p-header.is-headerScrolled .p-header__nav {
		color: #333;
	}

	.p-header__items {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: inherit;
		justify-content: flex-end;
		margin-top: initial;
		padding-bottom: initial;
	}

	.p-header__item + .p-header__item {
		margin-left: 2.5rem;
		padding-top: initial;
	}

	.p-header__btn {
		display: block;
		margin-left: 1.25rem;
		max-width: 240px;
		width: 100%;
	}

	.p-mv-contents__title {
	font-size: min(5.4vw, 68px);
line-height: 1;

	}

	.p-mv-contents__text {
		font-size: min(5.2vw, 38px);
		font-weight: bold;
		letter-spacing: 0.07em;
		line-height: 1.5;
		color: #FFF;
		text-shadow: 2px 2px 2px #000;
		font-family: "Noto Serif JP";
		font-style: normal;
		font-weight: 700;
		line-height: 178%;
		letter-spacing: 3.8px;
		margin-top: 0;
	}

	.p-mv-contents__text.p-mv-contents__text--sp {
		display: none;
	}

	.p-mv-contents__text.p-mv-contents__text--pc {
		display: block;
	}

	.p-mv-contents__title.p-mv-contents__title--sp {
		display: none;
	}
	.p-mv-contents__title--sp {
		font-size:2rem;
	}

	.p-mv-contents__title.p-mv-contents__title--pc {
		display: block;
	}

	.p-mv::before {
		height: 34.0909090909%;
	}

	.p-mv__inner.l-inner {
		max-width: initial;
		max-width: 2000px;
	}

	.p-mv__wrapper {
		height: 85%;
		margin: 0 calc(50% - 50vw) auto auto;
		padding-left: 3.125rem;
		width: 100vw;
		height: 100%;
	}

	.p-mv__contents {
		margin-top: 6.1875rem;
	}

	.p-price-contents {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-between;
	}

	.p-price-contents__title {
		margin: initial;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

	.p-price-contents__explain {
		margin-left: 20px;
		margin-top: initial;
		max-width: 896px;
		padding: 1.625rem 2.5625rem 1.5rem;
		width: 100%;
		background: rgba(255, 255, 255, 0.10);
	}

	.p-price-contents__explain-head {
		font-size: 1.25rem;
	}

	.p-price-contents__explain-text {
		font-size: 1rem;
		margin-top: 0.8125rem;
	}

	.p-reserve-contents__head,
	.p-reserve-contents__text,
	.p-reserve-contents__attention,
	.p-reserve-contents__booking {
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
		width: 100%;
	}

	.p-reserve-contents__head {
		font-size: 1.75rem;
	}

	.p-reserve-contents__text {
		font-size: 1rem;
		margin-top: 1rem;
	}

	.p-reserve-contents__attention {
		font-size: 1rem;
		margin-top: 1.25rem;
	}

	.p-reserve-contents__attention a[href^="tel:"] {
		text-decoration: none;
	}

	.p-reserve-contents__booking {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-between;
		margin-top: 2.125rem;
	}

	.p-reserve-contents__tel-content,
	.p-reserve-contents__instagram-content {
		padding: 1.375rem 1.875rem 1.4375rem;
		width: 47.5%;
	}

	.p-reserve-contents__tel-title,
	.p-reserve-contents__instagram-title {
		-webkit-transform: translateX(-45%);
		top: -0.8125rem;
		transform: translateX(-45%);
	}

	.p-reserve-contents__tel {
		font-size: 2rem;
		margin-top: 0.6875rem;
	}

	.p-reserve-contents__instagram-content {
		margin-top: initial;
		padding: 1.4375rem 0.625rem 1.25rem;
	}

	.p-reserve-contents__instagram-btn {
		margin-top: 0.3125rem;
	}

	.p-reserve__title-en {
		bottom: 6.0625rem;
	}

	.p-reserve__contents {
		max-width: initial;
		padding: 1.5rem 1rem 1.5rem;
	}

	.p-spend-how {
		padding: 2.5rem;
	}

	.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:not(:last-of-type)::before,
	.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:last-of-type::before,
	.p-spend-how__items > .p-spend-how__item:last-of-type > .p-spend-how__box:not(:last-of-type)::before {
		left: -1.3125rem;
	}

	.p-spend-how__items > .p-spend-how__item:not(:last-of-type) > .p-spend-how__box:last-of-type::before {
		height: calc(100% + 4.8125rem);
	}

	.p-spend-how__items {
		margin: initial;
		max-width: initial;
		padding-left: 16.9117647059%;
		width: 100%;
	}

	.p-spend-how__item {
		padding-left: 2rem;
	}

	.p-spend-how__item + .p-spend-how__item {
		margin-top: 1.375rem;
	}

	.p-spend-how__title {
		font-size: 1.5rem;
	}

	.p-spend-how__box {
		margin-top: 0.3125rem;
	}

	.p-spend-how__box.is-line.is-line--long::before {
		height: calc(100% + 4.0625rem);
	}

	.p-spend-how__box + .p-spend-how__box {
		margin-top: 0.5rem;
	}

	.p-spend-how__head {
		font-size: 1.25rem;
	}

	.p-spend-how__head::before {
		-webkit-transform: translateY(-52%);
		left: -1.875rem;
		transform: translateY(-52%);
	}

	.p-spend-how__text {
		font-size: 1rem;
	}

	.p-spend__contents {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-between;
	}

	.p-spend__wrapper {
		width: 42.5438596491%;
		z-index: 1;
	}

	.p-spend__title {
		margin: initial;
	}

	.p-spend__img {
		margin-top: 1.5625rem;
	}

	.p-spend__img::before {
		padding-top: 66.8041237113%;
	}

	.p-spend__how {
		margin: 0 0 0 -9.2105263158%;
		width: 66.6666666667%;
	}

	.p-sub-privacy__inner.l-inner {
		max-width: 850px;
	}

	.p-sub-privacy__text {
		font-size: 1rem;
	}

	.p-sub-privacy__text a[href^="tel:"] {
		text-decoration: none;
	}

	.p-sub-rule__inner.l-inner {
		max-width: 850px;
	}

	.p-rule-contents__item-title {
		font-size: 2rem;
	}

	.p-rule-contents__item-img::before {
		padding-top: 50%;
	}

	.p-rule-contents__item-text {
		font-size: 1rem;
	}

	.p-sv {
		margin-top: 116px;
	}

	.p-activity__inner.l-inner {
		padding-bottom: 6rem;
	}
}

@media (min-width: 1140px) {

	html {
		font-size: 16px;
	}

}

@media screen and (min-width: 1140px) {

	.c-test {
		color: blue;
	}

}

@media screen and (min-width: 1200px) and (max-width: 1440px) {

	.p-sass-function {
		font-size: 1.5rem;
		font-weight: bold;
	}

}

@media screen and (min-width: 1440px) {

	.c-test {
		color: brown;
	}

	.p-sass-function {
		font-size: 1.5rem;
		font-weight: bold;
	}

}

@media screen and (min-width: 1441px) {

	.p-about-contents__item {
		margin: auto;
	}

	.p-about-contents__item:nth-child(2n) {
		margin: auto;
	}

	.p-about__inner.l-inner {
		padding: initial;
	}

	.p-access-contents__map {
		margin: -6.25rem 0 0 0;
		max-height: 540px;
		max-width: 720px;
	}

	.p-access__inner.l-inner {
		max-width: 70%;
	}

	.p-header__inner.l-inner {
		margin-left: auto;
		max-width: 81%;
		max-width: 2000px;
		padding-left: 4%;
	}

	.p-header__nav {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.p-header__btn {
		margin-left: auto;
	}

	.p-mv__inner.l-inner {
		padding: initial;
	}

	.p-mv__wrapper {
		margin: 0 auto auto;
		max-width: 2000px;
		width: 100%;
		height: 100%;
	}

}

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

	.p-sass-function {
		font-size: 1.5rem;
		font-weight: bold;
	}

}

@media screen and (min-width: 769px) {
	.p-about-contents__item:nth-child(2n) {
		padding-left: 2rem;
	}
	
	.p-reserve-contents__instagram-title {
    height: 28px;
}
}

@-webkit-keyframes fadeUp {

	0% {
		-webkit-transform: translateY(var(--fadeUp-movement));
		opacity: 0;
		transform: translateY(var(--fadeUp-movement));
	}

	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
		transform: translateY(0);
	}

}

@keyframes fadeUp {

	0% {
		-webkit-transform: translateY(var(--fadeUp-movement));
		opacity: 0;
		transform: translateY(var(--fadeUp-movement));
	}

	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
		transform: translateY(0);
	}

}

@-webkit-keyframes fadeLeft {

	0% {
		-webkit-transform: translateX(var(--fadeLeft-movement));
		opacity: 0;
		transform: translateX(var(--fadeLeft-movement));
	}

	100% {
		-webkit-transform: translateX(0);
		opacity: 1;
		transform: translateX(0);
	}

}

@keyframes fadeLeft {

	0% {
		-webkit-transform: translateX(var(--fadeLeft-movement));
		opacity: 0;
		transform: translateX(var(--fadeLeft-movement));
	}

	100% {
		-webkit-transform: translateX(0);
		opacity: 1;
		transform: translateX(0);
	}

}

@-webkit-keyframes fadeRight {

	0% {
		-webkit-transform: translateX(var(--fadeRight-movement));
		opacity: 0;
		transform: translateX(var(--fadeRight-movement));
	}

	100% {
		-webkit-transform: translateX(0);
		opacity: 1;
		transform: translateX(0);
	}

}

.c-title__img {
	display:none;
}

@keyframes fadeRight {

	0% {
		-webkit-transform: translateX(var(--fadeRight-movement));
		opacity: 0;
		transform: translateX(var(--fadeRight-movement));
	}

	100% {
		-webkit-transform: translateX(0);
		opacity: 1;
		transform: translateX(0);
	}

}

