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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}

html {
    line-height: 1
}

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

    *,
    *::before,
    *::after {
        -webkit-animation-duration: .01ms !important;
        animation-duration: .01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

ol,
ul {
    list-style: none
}

li,
dd {
    list-style-type: none
}

em,
i {
    font-style: normal
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
    display: block
}

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

input,
button,
textarea,
select {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

textarea {
    resize: vertical;
    overflow: auto
}

button {
    cursor: pointer
}

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

table {
    border-collapse: collapse;
    border-spacing: 0
}

:root {
    --color-text: #666261;
    --color-primary: #3a716b;
    --color-secondary: #ccc5b3;
    --color-bg: #fdfaf5;
    --color-bg2: #f2ebe1;
    --color-accent: #cf2d2d;
    --color-white: #fff;
    --color-black: #000
}

@-webkit-keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fade-in-down {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

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

@keyframes fade-in-down {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

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

@-webkit-keyframes fade-in-up {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

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

@-webkit-keyframes fade-in-left {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

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

@keyframes fade-in-left {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

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

@-webkit-keyframes fade-in-right {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

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

@keyframes fade-in-right {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

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

@-webkit-keyframes fade-in-scale {
    from {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes fade-in-scale {
    from {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes slide-in-down {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-in-down {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-in-up {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-in-up {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-out-up {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-out-up {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@-webkit-keyframes slide-out-down {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slide-out-down {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes pulse {

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

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: .8
    }
}

@keyframes pulse {

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

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: .8
    }
}

@-webkit-keyframes shake {

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

    25% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    75% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }
}

@keyframes shake {

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

    25% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    75% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }
}

@-webkit-keyframes overlaySlide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

@keyframes overlaySlide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

@-webkit-keyframes imageReveal {
    0% {
        clip-path: inset(0 100% 0 0)
    }

    100% {
        clip-path: inset(0 0 0 0)
    }
}

@keyframes imageReveal {
    0% {
        clip-path: inset(0 100% 0 0)
    }

    100% {
        clip-path: inset(0 0 0 0)
    }
}

@media screen and (max-width: 1999px)and (min-width: 768px) {
    html {
        font-size: calc(16/2000*100vw)
    }
}

@media screen and (max-width: 389px) {
    html {
        font-size: calc(16/390*100vw)
    }
}

body {
    color: var(--color-text);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-display: swap;
    background: var(--color-bg)
}

summary,
label,
button,
a {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: inherit
}

summary:focus,
label:focus,
button:focus,
a:focus {
    outline: none
}

summary:focus-visible,
label:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px
}

a {
    text-decoration: none
}

.mouse-mode a:hover:not(:disabled) {
    opacity: .7
}

button {
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer
}

.mouse-mode button:hover:not(:disabled) {
    opacity: .7
}

button:disabled {
    cursor: not-allowed;
    opacity: .6
}

button:active:not(:disabled) {
    -webkit-transform: scale(0.98);
    transform: scale(0.98)
}

label {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mouse-mode label:hover:not(:disabled) {
    opacity: .7
}

summary {
    cursor: pointer;
    list-style: none
}

summary::-webkit-details-marker {
    display: none
}

.mouse-mode summary:hover:not(:disabled) {
    opacity: .7
}

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

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

    a,
    button,
    label,
    summary {
        -webkit-transition: none;
        transition: none
    }

    a:active,
    button:active,
    label:active,
    summary:active {
        -webkit-transform: none;
        transform: none
    }
}

picture,
img,
span {
    display: inline-block
}

video,
img,
svg {
    width: 100%;
    height: 100%
}

input,
textarea,
select {
    font: inherit
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px
}

dialog {
    padding: 0;
    border: none;
    border-radius: 1.25rem;
    -webkit-box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, .15);
    box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, .15);
    max-width: 43.75rem;
    width: 90%;
    max-height: 90vh;
    overflow: visible;
    background: rgba(0, 0, 0, 0)
}

dialog::-ms-backdrop {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(0.625rem);
    animation: fade-in .3s ease
}

dialog::backdrop {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(0.625rem);
    -webkit-animation: fade-in .3s ease;
    animation: fade-in .3s ease
}

dialog[open] {
    -webkit-animation: slide-in .3s ease;
    animation: slide-in .3s ease
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes slide-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(-1.875rem);
        transform: translateY(-1.875rem)
    }

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

@keyframes slide-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(-1.875rem);
        transform: translateY(-1.875rem)
    }

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

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

.l-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 25%;
    max-width: 500px;
    background: var(--color-bg)
}

@media(min-width: 2000px) {
    .l-header {
        left: 50%;
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px)
    }
}

.l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    -webkit-box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow .3s ease;
    transition: -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow .3s ease;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s ease, -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow .3s ease
}

.l-header.is-fixed.is-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

@media screen and (width < 768px) {
    .l-header.is-fixed {
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

@media screen and (width < 768px) {
    .l-header {
        position: fixed;
        width: 100%;
        max-width: none;
        height: 3.75rem;
        background: var(--color-primary);
        -webkit-transform: none;
        transform: none
    }
}

.l-lower-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background: var(--color-bg);
    -webkit-box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    z-index: 100
}

@media screen and (width < 768px) {
    .l-lower-header {
        width: 100%;
        height: 3.75rem;
        background: var(--color-primary);
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.l-drawer {
    position: fixed;
    z-index: 101;
    overflow-y: scroll;
    top: 0;
    right: 0;
    width: 20rem;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: visibility .3s, opacity .3s ease;
    transition: visibility .3s, opacity .3s ease
}

.l-drawer.js-show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

@media screen and (width >=768px) {
    .l-drawer {
        display: none
    }
}

.l-container {
    position: relative;
    overflow: clip;
    width: 100%;
    height: 100%
}

@media screen and (width < 768px) {
    .l-main {
        -webkit-margin-before: 3.75rem;
        margin-block-start: 3.75rem
    }
}

.l-inner {
    position: relative;
    width: 100%;
    max-width: 2000px;
    height: inherit;
    padding: 0 1.875rem;
    margin-inline: auto
}

@media screen and (width < 768px) {
    .l-inner {
        width: 100%;
        max-width: 430px;
        padding: 0 1.25rem
    }
}

.l-inner__narrow {
    max-width: 93.75rem
}

@media screen and (width < 768px) {
    .l-inner__narrow {
        padding: 0 1.25rem;
        max-width: 390px
    }
}

.l-footer {
    background: var(--color-primary);
    padding-block: 7.5rem 8.75rem;
    -webkit-margin-after: 7.8125rem;
    margin-block-end: 7.8125rem
}

@media screen and (width < 768px) {
    .l-footer {
        padding-block: 3.125rem;
        -webkit-margin-after: 0;
        margin-block-end: 0
    }
}

.c-btn {
    width: 18.75rem;
    height: 3.75rem;
    -webkit-padding-end: 1.875rem;
    padding-inline-end: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: .3125rem;
    background: var(--color-primary);
    position: relative;
    cursor: pointer
}

@media screen and (width < 768px) {
    .c-btn {
        width: 12.5rem;
        height: 3.125rem;
        font-size: 1rem
    }
}

.c-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: .625rem;
    height: .625rem;
    border-right: .1875rem solid var(--color-white);
    border-bottom: .1875rem solid var(--color-white);
    rotate: -45deg;
    pointer-events: none
}

@media screen and (width < 768px) {
    .c-btn::after {
        right: 1.25rem;
        width: .5rem;
        height: .5rem;
        border-right: .125rem solid var(--color-white);
        border-bottom: .125rem solid var(--color-white)
    }
}

.c-fade-in {
    translate: 0 1.25rem;
    opacity: 0;
    will-change: translate, opacity;
    -webkit-transform: translateY(1.25rem);
    transform: translateY(1.25rem);
    -webkit-transition: translate .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: translate .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: translate .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: translate .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.c-fade-in.js-show {
    translate: 0;
    opacity: 1;
    will-change: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

@media(prefers-reduced-motion: reduce) {
    .c-fade-in {
        -webkit-transition: none;
        transition: none
    }

    .c-fade-in.js-show {
        -webkit-transition: none;
        transition: none
    }
}

.c-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    -webkit-transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), visibility .6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), visibility .6s cubic-bezier(0.4, 0, 0.2, 1)
}

.c-loading.js-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.c-loading__content {
    text-align: center;
    -webkit-animation: fade-in-up .8s ease-out;
    animation: fade-in-up .8s ease-out
}

@media(prefers-reduced-motion: reduce) {
    .c-loading__content {
        -webkit-animation: none;
        animation: none
    }
}

.c-loading__logo {
    margin-bottom: 2rem
}

.c-loading__logo img {
    width: 12.5rem;
    height: auto
}

.c-loading__spinner {
    width: 3.75rem;
    height: 3.75rem;
    position: relative;
    margin: 0 auto 2rem
}

.c-loading__spinner-body {
    width: 100%;
    height: 100%;
    border: .1875rem solid rgba(0, 0, 0, .1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    -webkit-animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite
}

@media(prefers-reduced-motion: reduce) {
    .c-loading__spinner-body {
        -webkit-animation: none;
        animation: none;
        border-top-color: rgba(0, 0, 0, 0);
        border-right-color: var(--color-primary)
    }
}

.c-loading__progress {
    width: min(12.5rem, 80vw);
    height: .25rem;
    background-color: rgba(0, 0, 0, .1);
    border-radius: .125rem;
    overflow: hidden;
    margin: 0 auto 1.5rem
}

.c-loading__progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: .125rem;
    -webkit-animation: progress 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: progress 3s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@media(prefers-reduced-motion: reduce) {
    .c-loading__progress-bar {
        -webkit-animation: none;
        animation: none;
        width: 100%
    }
}

.c-loading__text {
    font-size: .875rem;
    -webkit-animation: pulse 2s ease-in-out infinite;
    animation: pulse 2s ease-in-out infinite
}

@media(prefers-reduced-motion: reduce) {
    .c-loading__text {
        -webkit-animation: none;
        animation: none
    }
}

.c-loading__skip {
    position: absolute;
    bottom: 2rem;
    font-size: .75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem 1rem;
    border-radius: .25rem;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    text-decoration: underline;
    font-family: inherit
}

.mouse-mode .c-loading__skip:hover:not(:disabled) {
    color: var(--color-text);
    background-color: rgba(0, 0, 0, .05)
}

.c-loading__skip:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px
}

.mouse-mode .c-loading__skip:hover:not(:disabled) {
    color: var(--color-primary);
    background-color: hsla(0, 0%, 100%, .05)
}

@media screen and (width < 768px) {
    .c-loading {
        font-size: .6875rem;
        padding: .375rem .75rem
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        -webkit-transform: translateY(1.25rem);
        transform: translateY(1.25rem)
    }

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

@-webkit-keyframes progress {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

@keyframes progress {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.c-reveal-image {
    position: relative;
    overflow: hidden
}

.c-reveal-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.c-reveal-image img {
    display: block;
    width: 100%;
    height: auto;
    clip-path: inset(0 100% 0 0)
}

.c-reveal-image.js-show::before {
    -webkit-animation: overlaySlide 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: overlaySlide 1s cubic-bezier(0.77, 0, 0.175, 1) forwards
}

.c-reveal-image.js-show img {
    -webkit-animation: imageReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: imageReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

@media(prefers-reduced-motion: reduce) {
    .c-reveal-image::before {
        display: none
    }

    .c-reveal-image img {
        clip-path: none
    }

    .c-reveal-image.js-show::before {
        -webkit-animation: none;
        animation: none
    }

    .c-reveal-image.js-show img {
        -webkit-animation: none;
        animation: none
    }
}

.c-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: .625rem
}

.c-title__h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 2
}

@media screen and (width < 768px) {
    .c-title__h2 {
        font-size: 1.25rem;
        line-height: 1.5
    }
}

.c-title__h2 span {
    margin-inline: -1.25rem;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 4.375rem;
    line-height: .5
}

@media screen and (width < 768px) {
    .c-title__h2 span {
        margin-inline: -0.625rem;
        font-size: 2.5rem;
        line-height: 1
    }
}

.c-title__text {
    font-size: 1.25rem;
    letter-spacing: .1em;
    line-height: 1.8
}

@media screen and (width < 768px) {
    .c-title__text {
        font-size: 1rem;
        line-height: 1.75
    }
}

.c-section-title {
    -webkit-margin-after: 3.125rem;
    margin-block-end: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: .5rem
}

@media screen and (width < 768px) {
    .c-section-title {
        -webkit-margin-after: 1.875rem;
        margin-block-end: 1.875rem
    }
}

.c-section-title__en {
    color: var(--color-primary);
    font-size: 1.5rem;
    letter-spacing: .2em;
    line-height: 1.5
}

@media screen and (width < 768px) {
    .c-section-title__en {
        font-size: 1.125rem
    }
}

.c-section-title__ja {
    font-family: "Zen Kurenaido", sans-serif;
    color: var(--color-primary);
    font-size: 3rem;
    letter-spacing: .1em;
    line-height: 1.5
}

@media screen and (width < 768px) {
    .c-section-title__ja {
        font-size: 1.5rem
    }
}

.c-fukidashi {
    position: relative;
    padding: 1.25rem 3.75rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: .2em;
    background-color: var(--color-primary);
    border-radius: 3.125rem;
    color: #fff
}

@media screen and (width < 768px) {
    .c-fukidashi {
        padding: .5rem 1.875rem;
        font-size: 1rem
    }
}

.c-fukidashi::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 1
}

.c-fukidashi--top-right::before {
    top: -1.21875rem;
    right: 3.125rem;
    border-width: 0 1.25rem 1.25rem 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--color-primary) rgba(0, 0, 0, 0)
}

@media screen and (width < 768px) {
    .c-fukidashi--top-right::before {
        top: -0.90625rem;
        right: .625rem;
        border-width: 0 .9375rem .9375rem 0
    }
}

.c-fukidashi--bottom-right::before {
    bottom: -1.21875rem;
    right: 3.125rem;
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: var(--color-primary) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

@media screen and (width < 768px) {
    .c-fukidashi--bottom-right::before {
        bottom: -0.59375rem;
        right: 1.875rem;
        border-width: .625rem .625rem 0 .625rem
    }
}

.c-fukidashi--top-left::before {
    top: -1.21875rem;
    left: 3.125rem;
    border-width: 0 1.25rem 1.25rem 1.25rem;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--color-primary) rgba(0, 0, 0, 0)
}

.c-fukidashi--bottom-left::before {
    bottom: -1.21875rem;
    left: 3.125rem;
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: var(--color-primary) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.p-header__inner {
    padding: 13.75rem 0 12.5rem 17.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3rem;
    -webkit-transition: padding .3s ease;
    transition: padding .3s ease
}

.is-fixed .p-header__inner {
    padding: 1.25rem 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    max-width: 1500px;
    margin: 0 auto
}

@media screen and (width < 768px) {
    .is-fixed .p-header__inner {
        height: 3.75rem;
        padding: 0rem 1.25rem
    }
}

@media screen and (width < 768px) {
    .p-header__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 3.75rem;
        padding-block: 0;
        padding-inline: 1.25rem
    }
}

.p-header__logo {
    width: 11.5625rem;
    -webkit-transition: width .3s ease;
    transition: width .3s ease
}

.is-fixed .p-header__logo {
    width: 7.5rem
}

@media screen and (width < 768px) {
    .is-fixed .p-header__logo {
        width: 4.375rem
    }
}

@media screen and (width < 768px) {
    .p-header__logo {
        width: 4.375rem
    }
}

@media screen and (width < 768px) {
    .p-header__nav {
        display: none
    }
}

.p-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.is-fixed .p-header__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 0
}

.p-header__list li a {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .06em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.mouse-mode .p-header__list li a:hover:not(:disabled) {
    opacity: 1;
    color: var(--color-secondary)
}

.p-lower-header__inner {
    width: 100%;
    height: 6.25rem;
    padding: 1.25rem 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    max-width: 93.75rem;
    margin: 0 auto
}

@media screen and (width < 768px) {
    .p-lower-header__inner {
        height: 3.75rem;
        padding: 0rem 1.25rem
    }
}

.p-lower-header__logo {
    width: 7.5rem
}

@media screen and (width < 768px) {
    .p-lower-header__logo {
        width: 4.375rem
    }
}

@media screen and (width < 768px) {
    .p-lower-header__nav {
        display: none
    }
}

.p-lower-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

.p-lower-header__list li a {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .06em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.mouse-mode .p-lower-header__list li a:hover:not(:disabled) {
    opacity: 1;
    color: var(--color-secondary)
}

.p-drawer__icon {
    position: fixed;
    z-index: 104;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 1.25rem;
    right: 1.25rem;
    width: 1.875rem;
    height: 1.25rem;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (width >=768px) {
    .p-drawer__icon {
        display: none
    }
}

.p-drawer__icon--bar {
    width: 100%;
    height: .125rem;
    background: var(--color-white);
    border-radius: .3125rem;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-child(1) {
    rotate: 45deg;
    translate: 0 .5625rem
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-child(2) {
    opacity: 0
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-child(3) {
    rotate: -45deg;
    translate: 0 -0.5625rem
}

.p-drawer {
    width: 100%;
    height: 100%
}

.p-drawer__overlay {
    position: fixed;
    z-index: 102;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none
}

.l-drawer.js-show .p-drawer__overlay {
    opacity: 1;
    pointer-events: none;
    cursor: pointer
}

.p-drawer__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 20rem;
    height: 100%;
    padding: 5rem 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem;
    background-color: var(--color-primary);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    overflow-y: auto;
    z-index: 103
}

.l-drawer.js-show .p-drawer__content {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.p-drawer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

.p-drawer__list li a {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .06em
}

.p-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--color-white)
}

@media screen and (width < 768px) {
    .p-footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 2.5rem
    }
}

.p-footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem
}

.p-footer__logo img {
    width: 6.25rem;
    height: auto
}

.mouse-mode .p-footer__logo:hover:not(:disabled) {
    opacity: .7
}

.p-footer__info-name {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2
}

@media screen and (width < 768px) {
    .p-footer__info-name {
        font-size: .875rem
    }
}

.p-footer__info-address {
    -webkit-margin-before: .5rem;
    margin-block-start: .5rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3333333333
}

@media screen and (width < 768px) {
    .p-footer__info-address {
        font-size: .875rem
    }
}

.p-footer__info-tel {
    -webkit-margin-before: .5rem;
    margin-block-start: .5rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3333333333
}

@media screen and (width < 768px) {
    .p-footer__info-tel {
        font-size: .875rem
    }
}

.p-footer__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
}

@media screen and (width < 768px) {
    .p-footer__sns {
        -webkit-column-gap: .625rem;
        -moz-column-gap: .625rem;
        column-gap: .625rem
    }
}

.p-footer__sns-icon {
    width: 2.5rem;
    height: 2.5rem
}

@media screen and (width < 768px) {
    .p-footer__sns-icon {
        width: 1.875rem;
        height: 1.875rem
    }
}

.p-footer__nav {
    -webkit-margin-end: 13.75rem;
    margin-inline-end: 13.75rem
}

@media screen and (width < 768px) {
    .p-footer__nav {
        -ms-flex-item-align: start;
        align-self: start;
        -webkit-margin-start: 2.5rem;
        margin-inline-start: 2.5rem;
        -webkit-margin-end: 0;
        margin-inline-end: 0
    }
}

.p-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem
}

@media screen and (width < 768px) {
    .p-footer__list {
        -ms-flex-item-align: start;
        align-self: flex-start;
        row-gap: 1rem
    }
}

.p-footer__list li a {
    font-size: 1.25rem;
    font-weight: 500
}

@media screen and (width < 768px) {
    .p-footer__list li a {
        font-size: 1rem
    }
}

.mouse-mode .p-footer__list li a:hover:not(:disabled) {
    color: var(--color-secondary)
}

.p-page-head__inner {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    width: 100%;
    height: 21.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

@media screen and (width < 768px) {
    .p-page-head__inner {
        -webkit-margin-before: 3.75rem;
        margin-block-start: 3.75rem;
        height: 15.625rem
    }
}

.p-page-head__title {
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 3.75rem;
    color: var(--color-white);
    text-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .2);
    text-align: center;
    position: relative;
    z-index: 2
}

@media screen and (width < 768px) {
    .p-page-head__title {
        font-size: 2rem;
        line-height: 1.5
    }
}

.p-page-head__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

@media screen and (width < 768px) {
    .p-page-head__image {
        height: 15.625rem
    }
}

.p-page-head__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1
}

#p-experience .p-page-head__image {
    background-image: url("../../f-experience/bg_mv.jpg")
}

#p-facility .p-page-head__image {
    background-image: url("../../f-facility/bg_mv.jpg")
}

#p-meal .p-page-head__image {
    background-image: url("../../f-meal/bg_mv.jpg")
}

#p-room .p-page-head__image {
    background-image: url("../../f-room/bg_mv.jpg")
}

#p-access .p-page-head__image {
    background-image: url("../../f-access/bg_mv.jpg")
}

.p-page-top {
    position: fixed;
    bottom: 9.375rem;
    right: 1.25rem;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--color-text);
    border-radius: 50%;
    text-decoration: none;
    -webkit-box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .2);
    box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .2);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
}

@media screen and (width < 768px) {
    .p-page-top {
        bottom: .625rem;
        right: .625rem;
        width: 3.125rem;
        height: 3.125rem
    }
}

.p-page-top.js-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.mouse-mode .p-page-top:hover:not(:disabled) {
    opacity: 1;
    background-color: var(--color-primary);
    -webkit-transform: translateY(-0.125rem);
    transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 .125rem .75rem rgba(0, 0, 0, .3);
    box-shadow: 0 .125rem .75rem rgba(0, 0, 0, .3)
}

.p-page-top:focus {
    background-color: var(--color-primary);
    -webkit-transform: translateY(-0.125rem);
    transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 .125rem .75rem rgba(0, 0, 0, .3);
    box-shadow: 0 .125rem .75rem rgba(0, 0, 0, .3);
    outline: 3px solid var(--color-primary);
    outline-offset: 2px
}

.p-page-top:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2)
}

.p-page-top__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .25rem
}

.p-page-top__arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 .5rem .75rem;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--color-white);
    margin-bottom: .125rem
}

@media screen and (width < 768px) {
    .p-page-top__arrow {
        border-width: 0 .375rem .625rem
    }
}

.p-page-top__text {
    color: var(--color-white);
    font-size: .75rem;
    font-weight: bold;
    letter-spacing: .05em
}

@media screen and (width < 768px) {
    .p-page-top__text {
        font-size: .625rem
    }
}

@media(prefers-contrast: high) {
    .p-page-top {
        border: 2px solid currentcolor
    }
}

@media(prefers-reduced-motion: reduce) {
    .p-page-top {
        -webkit-transition: opacity .3s ease, visibility .3s ease;
        transition: opacity .3s ease, visibility .3s ease
    }

    .p-page-top.js-show {
        -webkit-transform: none;
        transform: none
    }

    .p-page-top:hover,
    .p-page-top:focus {
        -webkit-transform: none;
        transform: none
    }
}

.p-fixed-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ccc5b3;
    -webkit-box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, .15);
    box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, .15);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.p-fixed-area.js-show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto
}

.p-fixed-area img { max-width: 250px; }

@media screen and (width < 1250px) {
    .p-fixed-area img { max-width: 150px; }
}

@media screen and (width < 768px) {
    .p-fixed-area {
        display: none
    }
}

.p-fixed-area__container {
    max-width: auto;
    margin-inline: auto;
    padding: 1.25rem .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
}

.p-fixed-area__title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--color-text)
}

.p-fixed-area__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .6rem;
    -moz-column-gap: .6rem;
    column-gap: .6rem;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.p-fixed-area__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: .5rem
}

.p-fixed-area__item>span {
    color: #1a1a1a;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap
}

.p-fixed-area__item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3rem;
    -moz-column-gap: .3rem;
    column-gap: .3rem;
    cursor: auto
}

.mouse-mode .p-fixed-area__item label:hover:not(:disabled) {
    opacity: 1
}

.p-fixed-area__item label>span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    white-space: nowrap
}

.p-fixed-area__item--adults {
    -webkit-margin-start: 0;
    margin-inline-start: 0
}

.p-fixed-area__selects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3rem;
    -moz-column-gap: .3rem;
    column-gap: .3rem
}

.p-fixed-area__select {
    display: inline-block;
    position: relative
}

.p-fixed-area__select::after {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: .75rem;
    width: .625rem;
    height: .625rem;
    border-right: .125rem solid #1a1a1a;
    border-bottom: .125rem solid #1a1a1a;
    rotate: 45deg;
    pointer-events: none
}

.p-fixed-area__select select {
    padding: .9375rem 2.1875rem .9375rem .625rem;
    color: #1a1a1a;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    background: var(--color-white);
    border: .0625rem solid #1a1a1a;
    border-radius: .125rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border-color .2s;
    transition: border-color .2s
}

.p-fixed-area__select select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-color: var(--color-primary)
}

.mouse-mode .p-fixed-area__select select:hover:not(:disabled) {
    border-color: var(--color-primary)
}

.p-fixed-area__nodate {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem;
    cursor: pointer !important
}

.mouse-mode .p-fixed-area__nodate:hover:not(:disabled) {
    opacity: .7 !important
}

.p-fixed-area__nodate input[type=checkbox] {
    margin: .3125rem 0 0;
    width: 1.5625rem;
    height: 1.5625rem;
    background: var(--color-white);
    border: .0625rem solid #1a1a1a;
    border-radius: .125rem;
    position: relative;
    cursor: pointer
}

.p-fixed-area__nodate input[type=checkbox]:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px
}

.p-fixed-area__nodate input[type=checkbox]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.p-fixed-area__nodate input[type=checkbox]:checked::after {
    content: "";
    position: absolute;
    top: .1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    width: .5rem;
    height: .875rem;
    border-right: .125rem solid var(--color-white);
    border-bottom: .125rem solid var(--color-white)
}

.p-fixed-area__nodate span {
    color: #1a1a1a !important;
    font-size: 1.3rem !important;
    font-weight: 500
}

.p-fixed-area__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem
}

.p-fixed-area__btn-search {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 7rem;
    height: 4.3875rem;
    padding-inline: 3rem 1.5rem ;
    color: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--color-text);
    border-radius: .25rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative
}

.p-fixed-area__btn-search::after {
    content: "";
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1rem;
    height: .625rem;
    background: var(--color-white);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.p-fixed-area__btn-search--primary {
    background: var(--color-primary)
}

.mouse-mode .p-fixed-area__btn-search:hover:not(:disabled) {
    opacity: .8;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .2);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .2)
}

.p-fixed-area__btn-search:active {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.p-fixed-area__btn-link {
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    white-space: nowrap;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.mouse-mode .p-fixed-area__btn-link:hover:not(:disabled) {
    opacity: .7
}

#p-top .p-mv {
    width: 75%;
    max-width: 1500px;
    -webkit-margin-start: auto;
    margin-inline-start: auto
}

@media(min-width: 2000px) {
    #p-top .p-mv {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-31.25rem);
        transform: translateX(-31.25rem);
        -webkit-margin-start: 0;
        margin-inline-start: 0
    }
}

@media screen and (width < 768px) {
    #p-top .p-mv {
        width: 100%;
        -webkit-margin-start: 0;
        margin-inline-start: 0
    }
}

#p-top .p-mv__inner {
    padding: 5rem 3.125rem 2.625rem 1.25rem;
    max-width: 2000px;
    width: 100%;
    margin-inline: auto
}

@media screen and (width < 768px) {
    #p-top .p-mv__inner {
        padding: .625rem
    }
}

#p-top .p-mv__image {
    width: 100%;
    height: auto
}

#p-top .p-banner__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-block: 3.75rem 5rem
}

@media screen and (width < 768px) {
    #p-top .p-banner__inner {
        padding-block: 1.875rem 2.5rem
    }
}

#p-top .p-banner__link {
    width: 45.5rem;
    max-width: 728px
}

@media screen and (width < 768px) {
    #p-top .p-banner__link {
        width: 100%
    }
}


#p-top .p-banner2__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-block: 3.75rem 0.5rem
}

@media screen and (width < 768px) {
    #p-top .p-banner2__inner {
        padding-block: 1.875rem 0.5rem
    }
}

#p-top .p-banner2__link {
    width: 35rem;
    max-width: 728px
}

@media screen and (width < 768px) {
    #p-top .p-banner2__link {
        width: 100%
    }
}


#p-top .p-message__inner {
    -webkit-padding-after: 20rem;
    padding-block-end: 20rem
}

@media screen and (width < 768px) {
    #p-top .p-message__inner {
        -webkit-padding-after: 15rem;
        padding-block-end: 15rem
    }
}

#p-top .p-message__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (width < 768px) {
    #p-top .p-message__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-top .p-message__content {
    -webkit-margin-before: 3.75rem;
    margin-block-start: 3.75rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: calc(100% - 46.875rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-top .p-message__content {
        -webkit-margin-before: 0rem;
        margin-block-start: 0rem;
        width: 100%;
        row-gap: 1.25rem
    }
}

#p-top .p-message__text {
    font-size: 1.125rem;
    letter-spacing: .1em;
    line-height: 2.7777777778
}

@media screen and (width < 768px) {
    #p-top .p-message__text {
        font-size: 1rem;
        line-height: 2.1
    }
}

#p-top .p-message__images {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 43.75rem;
    position: relative
}

@media screen and (width < 768px) {
    #p-top .p-message__images {
        width: 100%
    }
}

#p-top .p-message__image {
    position: absolute
}

#p-top .p-message__image--first {
    top: 0;
    left: -3.125rem;
    width: 53.125rem;
    z-index: 2
}

@media screen and (width < 768px) {
    #p-top .p-message__image--first {
        position: relative;
        top: 0rem;
        left: 0rem;
        width: 100%
    }
}

#p-top .p-message__image--second {
    top: 33.75rem;
    right: -9.375rem;
    width: 33.125rem;
    z-index: 1
}

@media screen and (width < 768px) {
    #p-top .p-message__image--second {
        top: 14.375rem;
        right: 0rem;
        width: 15.625rem
    }
}

#p-top .p-enjoy {
    background: url(../../f-index/bg_enjoy.png) no-repeat top center/100% 100%;
    position: relative
}

@media screen and (width < 768px) {
    #p-top .p-enjoy {
        background-size: cover
    }
}

#p-top .p-enjoy::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: calc(50% + 35.625rem);
    width: 11.875rem;
    height: 17.8125rem;
    background: url(../../f-index/deco_enjoy1.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-enjoy::before {
        top: -2.5rem;
        left: calc(50% + 5.9375rem);
        right: 2.5rem;
        width: 3.75rem;
        height: 6.25rem
    }
}

#p-top .p-enjoy::after {
    content: "";
    position: absolute;
    bottom: 3.125rem;
    left: calc(50% + 33.125rem);
    width: 9.375rem;
    height: 18.75rem;
    background: url(../../f-index/deco_enjoy2.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-enjoy::after {
        bottom: 3.75rem;
        left: calc(50% + 7.5rem);
        width: 3.75rem;
        height: 6.875rem
    }
}

#p-top .p-enjoy__inner {
    padding-block: 9.375rem 12.5rem
}

@media screen and (width < 768px) {
    #p-top .p-enjoy__inner {
        padding-block: 5rem 6.25rem
    }
}

#p-top .p-enjoy__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#p-top .p-enjoy__list {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3.75rem 2.375rem
}

@media screen and (width < 768px) {
    #p-top .p-enjoy__list {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.875rem 1.25rem
    }
}

#p-top .p-enjoy__item-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: .75rem
}

@media screen and (width < 768px) {
    #p-top .p-enjoy__item-image {
        row-gap: .5rem
    }
}

#p-top .p-enjoy__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1
}

#p-top .p-enjoy__item-text {
    font-size: 1.25rem;
    letter-spacing: .06em;
    line-height: 2;
    text-align: center
}

@media screen and (width < 768px) {
    #p-top .p-enjoy__item-text {
        font-size: 1rem;
        line-height: 1.5
    }
}

#p-top .p-enjoy__btn {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-top .p-enjoy__btn {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem
    }
}

#p-top .p-facility {
    position: relative
}

#p-top .p-facility::before {
    content: "";
    position: absolute;
    top: -6.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 28.125rem;
    background: url(../../f-index/bg_facility_top.png) no-repeat top center/100% 100%;
    z-index: -1
}

#p-top .p-facility::after {
    content: "";
    position: absolute;
    top: 17.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% - 17.5rem);
    background: url(../../f-index/bg_facility_bottom.png) no-repeat top center/100% 100%;
    z-index: -2
}

#p-top .p-facility__inner {
    padding-block: 7.5rem 5.625rem
}

@media screen and (width < 768px) {
    #p-top .p-facility__inner {
        padding-block: 3.75rem 2.5rem
    }
}

#p-top .p-facility__lists {
    -webkit-margin-before: 4.375rem;
    margin-block-start: 4.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (width < 768px) {
    #p-top .p-facility__lists {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.25rem
    }
}

#p-top .p-facility__list {
    width: calc((100% - 2.5rem)/2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-top .p-facility__list {
        width: 100%
    }
}

#p-top .p-facility__list--margin {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem
}

@media screen and (width < 768px) {
    #p-top .p-facility__list--margin {
        -webkit-margin-before: 0rem;
        margin-block-start: 0rem
    }
}

#p-top .p-facility__item {
    height: 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--color-white);
    border-radius: 1.25rem 0 1.25rem 0;
    background: var(--color-white)
}

@media screen and (width < 768px) {
    #p-top .p-facility__item {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-top .p-facility__item-content {
    width: calc(100% - 20.625rem);
    padding: 2.5rem 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
    border-radius: 1.25rem 0 0 0;
    background: var(--color-primary)
}

@media screen and (width < 768px) {
    #p-top .p-facility__item-content {
        width: 100%;
        row-gap: .625rem
    }
}

#p-top .p-facility__item-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2857142857
}

@media screen and (width < 768px) {
    #p-top .p-facility__item-title {
        font-size: 1.25rem;
        line-height: 1.4
    }
}

#p-top .p-facility__item-text {
    font-size: 1.125rem;
    letter-spacing: .1em;
    line-height: 1.7777777778
}

@media screen and (width < 768px) {
    #p-top .p-facility__item-text {
        font-size: .875rem;
        line-height: 1.7142857143
    }
}

#p-top .p-facility__item-text--small {
    font-size: .9375rem;
    letter-spacing: normal;
    line-height: 2
}

@media screen and (width < 768px) {
    #p-top .p-facility__item-text--small {
        font-size: .875rem;
        line-height: 1.7142857143
    }
}

#p-top .p-facility__item-image {
    width: 20.625rem;
    overflow: hidden;
    border-radius: 0 0 1.25rem 0
}

@media screen and (width < 768px) {
    #p-top .p-facility__item-image {
        width: 100%
    }
}

#p-top .p-facility__item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

#p-top .p-meal {
    background: url(../../f-index/bg_meal.png) no-repeat top center/cover;
    position: relative
}

#p-top .p-meal__decoration1 {
    position: absolute;
    top: -0.9375rem;
    right: calc(50% + 19.6875rem);
    width: 6.25rem;
    height: 4.6875rem;
    background: url(../../f-index/deco_meal1.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-meal__decoration1 {
        top: -0.625rem;
        right: calc(50% - .625rem);
        width: 2.5rem;
        height: 1.875rem
    }
}

#p-top .p-meal__decoration2 {
    position: absolute;
    top: 20rem;
    right: calc(50% + 45.5rem);
    width: 7.625rem;
    height: 10.3125rem;
    background: url(../../f-index/deco_meal2.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-meal__decoration2 {
        top: 23.75rem;
        right: calc(50% + 6.25rem);
        width: 3.125rem;
        height: 4.375rem
    }
}

#p-top .p-meal__decoration3 {
    position: absolute;
    top: 20.9375rem;
    right: calc(50% - 11rem);
    width: 11rem;
    height: 6.625rem;
    background: url(../../f-index/deco_meal3.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-meal__decoration3 {
        top: 9.375rem;
        right: calc(50% - 11.25rem);
        width: 4.375rem;
        height: 2.5rem
    }
}

#p-top .p-meal__decoration4 {
    position: absolute;
    bottom: 9.375rem;
    right: calc(50% + 35.125rem);
    width: 12.375rem;
    height: 7.125rem;
    background: url(../../f-index/deco_meal4.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-meal__decoration4 {
        bottom: 1.25rem;
        right: calc(50% + 6.25rem);
        width: 5rem;
        height: 3.125rem
    }
}

#p-top .p-meal__inner {
    padding-block: 8.75rem 12.5rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__inner {
        padding-block: 4.375rem 6.25rem
    }
}

#p-top .p-meal__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (width < 768px) {
    #p-top .p-meal__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 2.5rem
    }
}

#p-top .p-meal__wrap--bottom {
    -webkit-margin-before: 17.5rem;
    margin-block-start: 17.5rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__wrap--bottom {
        -webkit-margin-before: 6.25rem;
        margin-block-start: 6.25rem
    }
}

#p-top .p-meal__main-column {
    width: calc(100% - 32.5rem)
}

@media screen and (width < 768px) {
    #p-top .p-meal__main-column {
        width: 100%
    }
}

#p-top .p-meal__sub-column {
    width: 32.5rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__sub-column {
        width: 100%
    }
}

#p-top .p-meal__title {
    font-size: 2.5rem;
    letter-spacing: .1em;
    line-height: 1.25
}

@media screen and (width < 768px) {
    #p-top .p-meal__title {
        font-size: 1.5rem;
        line-height: 1.5
    }
}

#p-top .p-meal__text {
    -webkit-margin-before: 1.25rem;
    margin-block-start: 1.25rem;
    font-size: 1.125rem;
    letter-spacing: .1em;
    line-height: 2
}

@media screen and (width < 768px) {
    #p-top .p-meal__text {
        -webkit-margin-before: .625rem;
        margin-block-start: .625rem;
        font-size: 1rem
    }
}

#p-top .p-meal__list {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (width < 768px) {
    #p-top .p-meal__list {
        -webkit-margin-before: 1.25rem;
        margin-block-start: 1.25rem
    }
}

#p-top .p-meal__item {
    width: 10.3125rem
}

#p-top .p-meal__item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1
}

#p-top .p-meal__item-text {
    -webkit-margin-before: .3125rem;
    margin-block-start: .3125rem;
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: .1em;
    line-height: 2
}

@media screen and (width < 768px) {
    #p-top .p-meal__item-text {
        font-size: .875rem
    }
}

#p-top .p-meal__image img {
    display: block
}

#p-top .p-meal__image-plate {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    width: 43.125rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-plate {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem;
        width: 18.75rem
    }
}

#p-top .p-meal__image-kiz-plate {
    -webkit-margin-before: -3.75rem;
    margin-block-start: -3.75rem;
    margin-inline: auto 1.5rem;
    width: 28.75rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-kiz-plate {
        -webkit-margin-before: -2.5rem;
        margin-block-start: -2.5rem;
        margin-inline: auto 0rem;
        width: 12.5rem
    }
}

#p-top .p-meal__image-vegetable {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    width: 31.25rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-vegetable {
        -webkit-margin-before: .625rem;
        margin-block-start: .625rem;
        width: 100%
    }
}

#p-top .p-meal__image-bread {
    -webkit-margin-before: -5rem;
    margin-block-start: -5rem;
    margin-inline: auto 5.3125rem;
    width: 35.9375rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-bread {
        -webkit-margin-before: 0rem;
        margin-block-start: 0rem;
        margin-inline: auto 0rem;
        width: 15.625rem
    }
}

#p-top .p-meal__image-rice {
    -webkit-margin-before: -16.875rem;
    margin-block-start: -16.875rem;
    width: 21.875rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-rice {
        -webkit-margin-before: -6.25rem;
        margin-block-start: -6.25rem;
        width: 9.375rem
    }
}

#p-top .p-meal__image-illust {
    -webkit-margin-before: 3.75rem;
    margin-block-start: 3.75rem;
    width: 27.1875rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__image-illust {
        -webkit-margin-before: 1.25rem;
        margin-block-start: 1.25rem;
        width: 100%
    }
}

#p-top .p-meal__fukidashi {
    position: relative
}

#p-top .p-meal__fukidashi::after {
    content: "";
    position: absolute;
    top: -9.375rem;
    left: 5.3125rem;
    width: 11.5625rem;
    height: 11.5625rem;
    background: url(../../f-index/img_meal_fukidashi.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-meal__fukidashi::after {
        top: -3.125rem;
        left: 1.25rem;
        width: 6.25rem;
        height: 6.25rem
    }
}

#p-top .p-meal__images {
    -webkit-margin-before: 1.75rem;
    margin-block-start: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__images {
        -webkit-margin-before: 0.75rem;
        margin-block-start: 0.75rem;
        -webkit-column-gap: .625rem;
        -moz-column-gap: .625rem;
        column-gap: .625rem
    }
}

#p-top .p-meal__images img {
    width: 12.5rem;
    height: 12.5rem
}

@media screen and (width < 768px) {
    #p-top .p-meal__images img {
        width: 5rem;
        height: 5rem
    }
}

#p-top .p-meal__content-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
    text-align: center;
}

@media screen and (width < 768px) {
    #p-top .p-meal__content-title {
        font-size: 1.5rem
    }
}


#p-top .p-room__inner {
    padding-block: 6.25rem 12.5rem
}

@media screen and (width < 768px) {
    #p-top .p-room__inner {
        padding-block: 3.125rem 11.25rem
    }
}

#p-top .p-room__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#p-top .p-room__title .c-title__h2 {
    position: relative
}

#p-top .p-room__title .c-title__h2::after {
    content: "";
    position: absolute;
    top: -8.125rem;
    right: -9.375rem;
    width: 10rem;
    height: 10rem;
    background: url(../../f-index/img_room_fukidashi.png) no-repeat center/contain
}

@media screen and (width < 768px) {
    #p-top .p-room__title .c-title__h2::after {
        top: -4.375rem;
        right: -5rem;
        width: 5rem;
        height: 5rem
    }
}

#p-top .p-room__title .c-title__text {
    text-align: center
}

#p-top .p-room__list {
    -webkit-margin-before: 7.5rem;
    margin-block-start: 7.5rem;
    display: grid;
    grid-template-columns: 14.375rem 14.375rem 14.375rem 29.0625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
}

@media screen and (width < 768px) {
    #p-top .p-room__list {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1.25rem .625rem
    }
}

#p-top .p-room__item-image {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-top .p-room__item-image {
        row-gap: .625rem
    }
}

#p-top .p-room__item-image img {
    width: 14.375rem
}

@media screen and (width < 768px) {
    #p-top .p-room__item-image img {
        width: 6.875rem
    }
}

#p-top .p-room__item-image-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem
}

#p-top .p-room__item-text {
    font-size: 1.5rem;
    letter-spacing: .1em;
    line-height: 1.3333333333;
    text-align: center
}

@media screen and (width < 768px) {
    #p-top .p-room__item-text {
        font-size: .875rem;
        line-height: 1.7142857143
    }
}

#p-top .p-room__btn {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-top .p-room__btn {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem
    }
}

#p-top .p-map {
    background: var(--color-bg2)
}

#p-top .p-map__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-top .p-map__inner {
        padding-block: 3.125rem
    }
}

#p-top .p-map__image {
    margin-inline: auto;
    max-width: 62.5rem;
    width: 100%;
    height: auto;
    -webkit-transform: translateX(6.25rem);
    transform: translateX(6.25rem)
}

@media screen and (width < 768px) {
    #p-top .p-map__image {
        width: 90%;
        -webkit-transform: translateX(1.25rem);
        transform: translateX(1.25rem)
    }
}

#p-top .p-cafe__text {
    -webkit-margin: 2.25rem;
    margin-block: 2.25rem;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .625rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-top .p-cafe__text {
        -webkit-margin: 1.125rem;
        margin-block: 1.125rem;
        font-size: 1rem;
        padding: .625rem 1.25rem
    }
}


#p-top .p-cafe__image {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    margin-inline: auto;
    max-width: 62.5rem;
    width: 100%;
    height: auto;
}

@media screen and (width < 768px) {
    #p-top .p-cafe__image {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem;
        width: 90%;
    }
}

#p-top .p-overview__text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-top .p-overview__text {
        font-size: .875rem
    }
}

#p-top .p-cafe_menu__text-wrap {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    padding: 1.875rem;
    font-weight: 500;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-top .p-cafe_menu__text-wrap {
        max-width: 100%;
        -webkit-margin-before: 1.25rem;
        margin-block-start: 1.25rem;
        padding: 1.25rem;
    }
}

#p-top .p-cafe_menu__text {
    margin-block-end: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-top .p-cafe_menu__text {
        margin-block-end: 1rem;
        font-size: .875rem
    }
}

#p-experience .p-anchor__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-anchor__inner {
        padding-block: 3.125rem
    }
}

#p-experience .p-anchor__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-anchor__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: .625rem
    }
}

#p-experience .p-anchor__link {
    width: 12.5rem;
    height: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: .1em;
    background-color: var(--color-white);
    border: .125rem solid var(--color-primary);
    border-radius: 1.875rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (width < 768px) {
    #p-experience .p-anchor__link {
        width: 9.375rem;
        height: 2.5rem;
        font-size: 1rem
    }
}

.mouse-mode #p-experience .p-anchor__link:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: var(--color-white);
    opacity: 1
}

#p-experience .p-eat__inner {
    padding-block: 3.125rem 6.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__inner {
        padding-block: 1.5625rem 3.125rem
    }
}

#p-experience .p-eat__contents {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__contents {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem;
        row-gap: 3.125rem
    }
}

#p-experience .p-eat__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-experience .p-eat__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-experience .p-eat__content-wrap {
    width: calc(100% - 46.875rem - 3.75rem);
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-wrap {
        width: 100%;
        -webkit-margin-before: 0rem;
        margin-block-start: 0rem;
        row-gap: 1.25rem
    }
}

#p-experience .p-eat__content-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .05em
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-title {
        font-size: 1.5rem
    }
}

#p-experience .p-eat__content-text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-text {
        font-size: .875rem
    }
}

#p-experience .p-eat__content-images {
    width: 46.875rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-images {
        width: 100%
    }
}

#p-experience .p-eat__content-images .c-fukidashi {
    top: -1.875rem;
    left: -1.875rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-images .c-fukidashi {
        top: -1.25rem;
        left: 14.375rem
    }
}

#p-experience .p-eat__content-image {
    position: relative
}

#p-experience .p-eat__content-image img {
    width: 100%;
    height: auto;
    border-radius: .625rem
}

#p-experience .p-eat__content-image--main {
    width: 100%;
    -webkit-margin-start: auto;
    margin-inline-start: auto
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-image--main {
        width: 90%;
        -webkit-margin-start: auto;
        margin-inline-start: auto
    }
}

#p-experience .p-eat__content-image--sub {
    width: 50%;
    margin-block-start: -3rem;
    margin-inline-start: -2.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-image--sub {
        width: 40%;
        -webkit-margin-before: -3.125rem;
        margin-block-start: -3.125rem;
        -webkit-margin-start: -0.625rem;
        margin-inline-start: -0.625rem
    }
}

#p-experience .p-eat__content-image--sub2 {
    width: 60%;
    margin-block-start: -23rem;
    margin-inline-start: 36rem
}

@media screen and (width < 768px) {
    #p-experience .p-eat__content-image--sub2 {
        width: 40%;
        margin-block-start: -3.125rem;
        margin-inline-start: -0.625rem
    }
}

#p-experience .p-cafe_menu__text-wrap {
    -webkit-margin-before: 0.3rem;
    margin-block-start: 0.3rem;
    padding: 1.875rem;
    font-weight: 500;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-experience .p-cafe_menu__text-wrap {
        max-width: 100%;
        -webkit-margin-before: 0.25rem;
        margin-block-start: 0.25rem;
        padding: 1.25rem;
    }
}

#p-experience .p-cafe_menu__text {
    margin-block-end: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-experience .p-cafe_menu__text {
        margin-block-end: 1rem;
        font-size: .875rem
    }
}

#p-experience .p-amenity__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .5rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin-block-end: .35rem;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-experience .p-amenity__text {
        font-size: 1rem;
        margin-block-end: 0.15rem;
        padding: .625rem 1.25rem
    }
}





#p-experience .p-refresh {
    background: var(--color-bg2)
}

#p-experience .p-refresh__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__inner {
        padding-block: 3.125rem
    }
}

#p-experience .p-refresh__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__contents {
        row-gap: 3.125rem
    }
}

#p-experience .p-refresh__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-experience .p-refresh__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-experience .p-refresh__content-wrap {
    width: calc(100% - 46.875rem - 3.75rem);
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-wrap {
        width: 100%;
        -webkit-margin-before: 0rem;
        margin-block-start: 0rem;
        row-gap: 1.25rem
    }
}

#p-experience .p-refresh__content-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-title {
        font-size: 1.5rem
    }
}

#p-experience .p-refresh__content-text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-text {
        font-size: .875rem
    }
}

#p-experience .p-refresh__content-images {
    width: 46.875rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-images {
        width: 100%
    }
}

#p-experience .p-refresh__content-image {
    position: relative
}

#p-experience .p-refresh__content-image--main {
    width: 100%
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-image--main {
        width: 90%;
        -webkit-margin-start: auto;
        margin-inline-start: auto
    }
}

#p-experience .p-refresh__content-image--sub {
    width: 50%;
    -webkit-margin-before: -9.375rem;
    margin-block-start: -9.375rem;
    -webkit-margin-start: -12.5rem;
    margin-inline-start: -12.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__content-image--sub {
        width: 40%;
        -webkit-margin-before: -3.125rem;
        margin-block-start: -3.125rem;
        -webkit-margin-start: -0.625rem;
        margin-inline-start: -0.625rem
    }
}

#p-experience .p-refresh__content-image img {
    width: 100%;
    height: auto;
    border-radius: .625rem
}

#p-experience .p-refresh__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-experience .p-refresh__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-experience .p-play__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-play__inner {
        padding-block: 3.125rem
    }
}

#p-experience .p-play__items {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-experience .p-play__items {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 2.5rem
    }
}

#p-experience .p-play__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-play__item {
        row-gap: .75rem
    }
}

#p-experience .p-play__item-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .05em;
    -webkit-margin-after: 1.25rem;
    margin-block-end: 1.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-play__item-title {
        font-size: 1.125rem;
        -webkit-margin-after: .75rem;
        margin-block-end: .75rem
    }
}

#p-experience .p-play__item-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: .75rem
}

@media screen and (width < 768px) {
    #p-experience .p-play__item-image {
        row-gap: .5rem
    }
}

#p-experience .p-play__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1
}

@media screen and (width < 768px) {
    #p-experience .p-play__item-image img {
        width: 80%
    }
}

#p-experience .p-play__item-text {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    white-space: nowrap
}

@media screen and (width < 768px) {
    #p-experience .p-play__item-text {
        font-size: .875rem
    }
}

#p-experience .p-relax {
    background: var(--color-bg2)
}

#p-experience .p-relax__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-relax__inner {
        padding-block: 3.125rem
    }
}

#p-experience .p-relax__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
}

@media screen and (width < 768px) {
    #p-experience .p-relax__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 3.125rem
    }
}

#p-experience .p-relax__item {
    width: 31.25rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: var(--color-white);
    border: .125rem solid var(--color-primary)
}

@media screen and (width < 768px) {
    #p-experience .p-relax__item {
        width: 100%
    }
}

#p-experience .p-relax__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: .625rem
}

#p-experience .p-relax__item-body {
    padding-block: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-experience .p-relax__item-body {
        padding-block: 1.25rem;
        row-gap: .75rem
    }
}

#p-experience .p-relax__item-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .05em
}

@media screen and (width < 768px) {
    #p-experience .p-relax__item-title {
        font-size: 1.125rem
    }
}

#p-experience .p-relax__item-text {
    font-size: 1rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-experience .p-relax__item-text {
        font-size: .875rem
    }
}

#p-experience .p-relax__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-experience .p-relax__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-facility .p-facility__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__inner {
        padding-block: 3.125rem
    }
}

#p-facility .p-facility__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__items {
        row-gap: 3.75rem
    }
}

#p-facility .p-facility__item--reverse .p-facility__item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (width < 768px) {
    #p-facility .p-facility__item--reverse .p-facility__item-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-facility .p-facility__item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__item-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-facility .p-facility__item-content {
    width: calc(100% - 46.25rem - 3.75rem);
    -webkit-padding-before: 3.125rem;
    padding-block-start: 3.125rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__item-content {
        width: 100%;
        -webkit-padding-before: 1.875rem;
        padding-block-start: 1.875rem
    }
}

#p-facility .p-facility__item-image {
    width: 46.25rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__item-image {
        width: 100%
    }
}

#p-facility .p-facility__item-image img {
    width: 100%;
    height: auto;
    border-radius: .625rem
}

#p-facility .p-facility__item-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-margin-after: 1.25rem;
    margin-block-end: 1.25rem
}

#p-facility .p-facility__item-text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-facility .p-facility__item-text {
        font-size: .875rem
    }
}

#p-facility .p-facility__images {
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    display: grid;
    grid-template-columns: 18.75rem 18.75rem 37.8125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__images {
        -webkit-margin-before: 1.25rem;
        margin-block-start: 1.25rem;
        grid-template-columns: 5rem 5rem 10.3125rem;
        -webkit-column-gap: .625rem;
        -moz-column-gap: .625rem;
        column-gap: .625rem
    }
}

#p-facility .p-facility__images-item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__images-item {
        -webkit-column-gap: .125rem;
        -moz-column-gap: .125rem;
        column-gap: .125rem
    }
}

#p-facility .p-facility__images-item img {
    width: 18.75rem;
    height: 18.75rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-facility .p-facility__images-item img {
        width: 5rem;
        height: 5rem
    }
}

#p-facility .p-facility__images-item div:nth-child(1) img {
    border-radius: .625rem 0 0 .625rem
}

#p-facility .p-facility__images-item div:nth-child(2) img {
    border-radius: 0 .625rem .625rem 0
}

#p-facility .p-facility__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-facility .p-facility__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-facility .p-kidsarea {
    background: var(--color-bg2)
}

#p-facility .p-kidsarea__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__inner {
        padding-block: 3.125rem
    }
}

#p-facility .p-kidsarea__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.5rem 1.875rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__list {
        gap: 1.875rem 1.25rem
    }
}

#p-facility .p-kidsarea__item {
    width: 30rem;
    padding: 2.5rem 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.875rem;
    border-radius: 1.25rem;
    background: var(--color-white);
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item {
        width: 100%;
        padding: 1.875rem 1.25rem
    }
}

#p-facility .p-kidsarea__item--wide {
    width: 50rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item--wide {
        width: 100%
    }
}

#p-facility .p-kidsarea__item-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary)
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item-name {
        font-size: 1.25rem
    }
}

#p-facility .p-kidsarea__item-image img {
    width: 100%;
    height: 15.625rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item-image img {
        height: auto
    }
}

#p-facility .p-kidsarea__item-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item-images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: .625rem
    }
}

#p-facility .p-kidsarea__item-images img {
    width: 100%;
    height: 15.625rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__item-images img {
        height: auto
    }
}

#p-facility .p-kidsarea__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-facility .p-kidsarea__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-facility .p-freecoffee {
    background: var(--color-bg2)
}

#p-facility .p-freecoffee__inner {
    -webkit-padding-after: 6.25rem;
    padding-block-end: 6.25rem
}

#p-facility .p-freecoffee__container {
    max-width: 62.5rem;
    margin-inline: auto;
    padding: 2.5rem 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-facility .p-freecoffee__container {
        padding: 1.875rem 1.25rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 1.875rem;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0
    }
}

#p-facility .p-freecoffee__image {
    width: 25rem
}

@media screen and (width < 768px) {
    #p-facility .p-freecoffee__image {
        width: 100%
    }
}

#p-facility .p-freecoffee__image img {
    width: 100%;
    height: auto;
    border-radius: .625rem
}

#p-facility .p-freecoffee__content {
    -webkit-padding-before: 1.875rem;
    padding-block-start: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-facility .p-freecoffee__content {
        -webkit-padding-before: 0;
        padding-block-start: 0
    }
}

#p-facility .p-freecoffee__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary)
}

@media screen and (width < 768px) {
    #p-facility .p-freecoffee__title {
        font-size: 1.25rem
    }
}

#p-facility .p-freecoffee__text {
    font-size: 1rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-facility .p-freecoffee__text {
        font-size: .875rem
    }
}

#p-facility .p-info__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-facility .p-info__inner {
        padding-block: 3.125rem
    }
}

#p-facility .p-info__list {
    max-width: 62.5rem;
    padding: 2.5rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 1.25rem;
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-facility .p-info__list {
        padding: 1.25rem
    }
}

#p-facility .p-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: .125rem solid #ccc
}

@media screen and (width < 768px) {
    #p-facility .p-info__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-facility .p-info__item:last-child {
    border-bottom: none
}

#p-facility .p-info__item-label {
    padding: 1.875rem 1.25rem;
    min-width: 21.875rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--color-primary)
}

#p-facility .p-info__item-label span {
    display: none;
}

@media screen and (width < 768px) {
    #p-facility .p-info__item-label {
        padding: 1.25rem .625rem .625rem
    }
    #p-facility .p-info__item-label span {
    display: inline;
}
}

#p-facility .p-info__item-description {
    padding: 1.875rem 1.25rem;
    font-size: 1.125rem;
    line-height: 2
}

#p-facility .p-info__item-description span {
    display: none;
}

@media screen and (width < 768px) {
    #p-facility .p-info__item-description {
        padding: .625rem .625rem 1.25rem;
        font-size: 1rem
    }
    #p-facility .p-info__item-description span {
    display: inline;
}
}

#p-facility .p-info__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-facility .p-info__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-meal .p-meals__inner {
    padding-block: 12.5rem 6.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-meals__inner {
        padding-block: 6.25rem 3.125rem
    }
}

#p-meal .p-meals__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
}

@media screen and (width < 768px) {
    #p-meal .p-meals__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 1.875rem
    }
}

#p-meal .p-meals__images {
    width: 46.875rem
}

@media screen and (width < 768px) {
    #p-meal .p-meals__images {
        width: 100%
    }
}

#p-meal .p-meals__image {
    width: 100%;
    height: auto
}

#p-meal .p-meals__image--main {
    width: 90%
}

#p-meal .p-meals__image--main img {
    border-radius: .625rem
}

#p-meal .p-meals__image--sub {
    width: 50%;
    -webkit-margin-before: -6.25rem;
    margin-block-start: -6.25rem;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: -3.125rem;
    margin-inline-end: -3.125rem
}

@media screen and (width < 768px) {
    #p-meal .p-meals__image--sub {
        width: 40%;
        -webkit-margin-before: -3.75rem;
        margin-block-start: -3.75rem;
        -webkit-margin-end: -0.625rem;
        margin-inline-end: -0.625rem
    }
}

#p-meal .p-meals__image--sub img {
    border-radius: .625rem
}

#p-meal .p-meals__content {
    width: calc(100% - 46.875rem - 3.125rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (width < 768px) {
    #p-meal .p-meals__content {
        width: 100%
    }
}

#p-meal .p-meals__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#p-meal .p-meals__text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-meal .p-meals__text {
        font-size: .875rem
    }
}

#p-meal .p-meals__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-meal .p-meals__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-meal .p-dinner {
    background: var(--color-bg2)
}

#p-meal .p-dinner__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__inner {
        padding-block: 3.125rem
    }
}

#p-meal .p-dinner__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-meal .p-dinner__content {
    width: calc(100% - 46.875rem - 3.125rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__content {
        width: 100%
    }
}

#p-meal .p-dinner__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#p-meal .p-dinner__text-wrap {
    max-width: 38.75rem;
    -webkit-margin-before: 2.5rem;
    margin-block: 2.5rem 1.2rem;
    padding: 1.875rem;
    font-weight: 500;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__text-wrap {
        max-width: 100%;
        -webkit-margin-before: 1.25rem;
        margin-block: 1.25rem 0.75rem;
        padding: 1.25rem;
        text-align: center
    }
}

#p-meal .p-dinner__text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__text {
        font-size: .875rem
    }
}

#p-meal .p-dinner__images {
    width: 46.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__images {
        width: 100%
    }
}

#p-meal .p-dinner__image {
    width: 100%;
    height: auto
}

#p-meal .p-dinner__image--main {
    width: 90%;
    -webkit-margin-start: auto;
    margin-inline-start: auto
}

#p-meal .p-dinner__image--sub {
    width: 50%;
    -webkit-margin-before: -3.125rem;
    margin-block-start: -3.125rem;
    -webkit-margin-start: -1.875rem;
    margin-inline-start: -1.875rem
}

@media screen and (width < 768px) {
    #p-meal .p-dinner__image--sub {
        width: 40%;
        -webkit-margin-before: -1.875rem;
        margin-block-start: -1.875rem;
        -webkit-margin-start: -0.625rem;
        margin-inline-start: -0.625rem
    }
}

#p-meal .p-dinner__image img {
    border-radius: .625rem
}

#p-meal .p-breakfast__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__inner {
        padding-block: 3.125rem
    }
}

#p-meal .p-breakfast__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 1.875rem
    }
}

#p-meal .p-breakfast__images {
    width: 43.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: .625rem
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__images {
        width: 100%
    }
}

#p-meal .p-breakfast__image {
    width: 100%;
    height: auto
}

#p-meal .p-breakfast__image--main {
    width: 100%
}

#p-meal .p-breakfast__image--main img {
    border-radius: .625rem
}

#p-meal .p-breakfast__image--sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__image--sub {
        -webkit-column-gap: .3125rem;
        -moz-column-gap: .3125rem;
        column-gap: .3125rem
    }
}

#p-meal .p-breakfast__image--sub img {
    border-radius: .625rem
}

#p-meal .p-breakfast__content {
    width: calc(100% - 43.75rem - 3.125rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__content {
        width: 100%
    }
}

#p-meal .p-breakfast__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#p-meal .p-breakfast__text {
    margin-block-end: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__text {
        margin-block-end: 1rem;
        font-size: .875rem
    }
}

#p-meal .p-breakfast__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-meal .p-breakfast__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-meal .p-dining {
    background: var(--color-bg2)
}

#p-meal .p-dining__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-dining__inner {
        padding-block: 3.125rem
    }
}

#p-meal .p-dining__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-meal .p-dining__wrap {
        row-gap: 1.25rem
    }
}

#p-meal .p-dining__text {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center
}

@media screen and (width < 768px) {
    #p-meal .p-dining__text {
        font-size: .875rem
    }
}

#p-meal .p-dining__images {
    max-width: 62.5rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-dining__images {
        -webkit-column-gap: .625rem;
        -moz-column-gap: .625rem;
        column-gap: .625rem
    }
}

#p-meal .p-dining__image {
    width: 100%;
    height: auto
}

#p-meal .p-dining__image img {
    border-radius: .625rem
}

#p-meal .p-dining__text {
    font-size: 1.125rem;
    line-height: 1.8;
    -webkit-margin-after: 1.25rem;
    margin-block-end: 1.25rem
}

@media screen and (width < 768px) {
    #p-meal .p-dining__text {
        font-size: .875rem;
        -webkit-margin-after: .625rem;
        margin-block-end: .625rem
    }
}

#p-meal .p-dining__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-meal .p-dining__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-room .p-overview {
    background: var(--color-bg2)
}

#p-room .p-overview__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-room .p-overview__inner {
        padding-block: 3.125rem
    }
}

#p-room .p-overview__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem
}

@media screen and (width < 768px) {
    #p-room .p-overview__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-room .p-overview__content {
    width: calc(100% - 56.25rem - 3.75rem)
}

@media screen and (width < 768px) {
    #p-room .p-overview__content {
        width: 100%
    }
}

#p-room .p-overview__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#p-room .p-overview__text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-room .p-overview__text {
        font-size: .875rem
    }
}

#p-room .p-overview__images {
    width: 56.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .625rem
}

@media screen and (width < 768px) {
    #p-room .p-overview__images {
        width: 100%;
        gap: .3125rem
    }
}

#p-room .p-overview__image:nth-child(1) img {
    border-radius: .625rem 0 0 0
}

#p-room .p-overview__image:nth-child(2) img {
    border-radius: 0 .625rem 0 0
}

#p-room .p-overview__image:nth-child(3) img {
    border-radius: 0 0 0 .625rem
}

#p-room .p-overview__image:nth-child(4) img {
    border-radius: 0 0 .625rem 0
}

#p-room .p-details__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-room .p-details__inner {
        padding-block: 3.125rem
    }
}

#p-room .p-details__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5rem
}

@media screen and (width < 768px) {
    #p-room .p-details__contents {
        row-gap: 3.125rem
    }
}

#p-room .p-details__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem
}

@media screen and (width < 768px) {
    #p-room .p-details__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.875rem
    }
}

#p-room .p-details__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (width < 768px) {
    #p-room .p-details__content--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#p-room .p-details__info {
    width: calc(100% - 46.875rem - 3.75rem);
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem
}

@media screen and (width < 768px) {
    #p-room .p-details__info {
        width: 100%;
        -webkit-margin-before: 0;
        margin-block-start: 0;
        row-gap: 1.25rem
    }
}

#p-room .p-details__title {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4
}

@media screen and (width < 768px) {
    #p-room .p-details__title {
        font-size: 1.25rem
    }
}

#p-room .p-details__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid var(--color-secondary)
}

#p-room .p-details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--color-secondary)
}

@media screen and (width < 768px) {
    #p-room .p-details__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start
    }
}

#p-room .p-details__item:last-child {
    border-bottom: none
}

#p-room .p-details__label {
    width: 8.125rem;
    height: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    background: var(--color-bg2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-room .p-details__label {
        width: 100%;
        padding: .625rem 1.25rem;
        font-size: 1rem;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start
    }
}

#p-room .p-details__description {
    width: calc(100% - 8.125rem);
    padding: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-room .p-details__description {
        width: 100%;
        font-size: 1rem
    }
}

#p-room .p-details__btn {
    -webkit-margin-before: 1.25rem;
    margin-block-start: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#p-room .p-details__slider {
    width: 46.875rem;
    position: relative
}

@media screen and (width < 768px) {
    #p-room .p-details__slider {
        width: 100%
    }
}

#p-room .p-details__slider img {
    border-radius: .625rem
}

#p-room .p-details__slider .splide__arrows .splide__arrow {
    width: 3.125rem;
    height: 3.125rem;
    background: hsla(0, 0%, 100%, .9);
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__arrows .splide__arrow {
        width: 1.875rem;
        height: 1.875rem
    }
}

#p-room .p-details__slider .splide__arrows .splide__arrow:hover {
    background: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

#p-room .p-details__slider .splide__arrows .splide__arrow svg {
    fill: var(--color-primary);
    width: 1.25rem;
    height: 1.25rem
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__arrows .splide__arrow svg {
        width: .625rem;
        height: .625rem
    }
}

#p-room .p-details__slider .splide__arrows .splide__arrow--prev {
    left: 1.25rem
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__arrows .splide__arrow--prev {
        left: .625rem
    }
}

#p-room .p-details__slider .splide__arrows .splide__arrow--next {
    right: 1.25rem
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__arrows .splide__arrow--next {
        right: .625rem
    }
}

#p-room .p-details__slider .splide__pagination {
    bottom: 1.25rem;
    padding: 0
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__pagination {
        bottom: .625rem
    }
}

#p-room .p-details__slider .splide__pagination .splide__pagination__page {
    width: .75rem;
    height: .75rem;
    background: hsla(0, 0%, 100%, .6);
    border: none;
    margin: 0 .3125rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (width < 768px) {
    #p-room .p-details__slider .splide__pagination .splide__pagination__page {
        width: .5rem;
        height: .5rem
    }
}

#p-room .p-details__slider .splide__pagination .splide__pagination__page:hover {
    background: hsla(0, 0%, 100%, .8);
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

#p-room .p-details__slider .splide__pagination .splide__pagination__page.is-active {
    background: var(--color-primary);
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

#p-room .p-details__image {
    width: 46.875rem
}

@media screen and (width < 768px) {
    #p-room .p-details__image {
        width: 100%
    }
}

#p-room .p-amenity {
    background: var(--color-bg2)
}

#p-room .p-amenity__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__inner {
        padding-block: 3.125rem
    }
}

#p-room .p-amenity__container {
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 5rem 2.5rem 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 3.75rem;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary)
}

@media screen and (width < 768px) {
    #p-room .p-amenity__container {
        padding: 2.5rem 1.25rem;
        row-gap: 2.5rem
    }
}

#p-room .p-amenity__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1.25rem
    }
}

#p-room .p-amenity__item {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative
}

@media screen and (width < 768px) {
    #p-room .p-amenity__item {
        font-size: 1.125rem
    }
}

#p-room .p-amenity__item::before {
    content: "";
    width: .75rem;
    height: .75rem;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: .875rem;
    left: -1.5rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__item::before {
        width: .5rem;
        height: .5rem;
        top: .625rem;
        left: -1.25rem
    }
}

#p-room .p-amenity__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__icons {
        -webkit-column-gap: 2.5rem;
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem
    }
}

#p-room .p-amenity__icon {
    width: 12.5rem;
    height: 12.5rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__icon {
        width: 7.5rem;
        height: 7.5rem
    }
}

#p-room .p-amenity__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%
}

#p-room .p-amenity__images {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    margin-inline: auto;
    max-width: 62.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.875rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__images {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem;
        gap: 1.25rem
    }
}

#p-room .p-amenity__image-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__image-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: .625rem
    }
}

#p-room .p-amenity__image img {
    border-radius: .625rem
}

#p-room .p-amenity__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .625rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-room .p-amenity__text {
        font-size: 1rem;
        padding: .625rem 1.25rem
    }
}

#p-access .p-map__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-access .p-map__inner {
        padding-block: 3.125rem
    }
}

#p-access .p-map__google iframe {
    width: 100%;
    height: 37.5rem
}

@media screen and (width < 768px) {
    #p-access .p-map__google iframe {
        height: 15.625rem
    }
}

#p-access .p-map__image {
    -webkit-margin-before: 6.25rem;
    margin-block-start: 6.25rem;
    margin-inline: auto;
    max-width: 62.5rem;
    width: 100%;
    height: auto;
    -webkit-transform: translateX(6.25rem);
    transform: translateX(6.25rem)
}

@media screen and (width < 768px) {
    #p-access .p-map__image {
        -webkit-margin-before: 3.125rem;
        margin-block-start: 3.125rem;
        width: 90%;
        -webkit-transform: translateX(1.25rem);
        transform: translateX(1.25rem)
    }
}

#p-access .p-map__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-access .p-map__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}

#p-access .p-sightseeing {
    background: var(--color-bg2)
}

#p-access .p-sightseeing__inner {
    padding-block: 6.25rem
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__inner {
        padding-block: 3.125rem
    }
}

#p-access .p-sightseeing__items {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2.5rem 1.875rem
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__items {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.875rem 0rem
    }
}

#p-access .p-sightseeing__content {
    padding-block: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem
}

#p-access .p-sightseeing__image {
    width: 100%;
    height: auto;
    border-radius: .625rem
}

#p-access .p-sightseeing__image img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: .625rem
}

#p-access .p-sightseeing__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary)
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__title {
        font-size: 1.125rem
    }
}

#p-access .p-sightseeing__title span {
    font-size: 1rem;
    margin-inline: 1rem;
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__title span {
        margin-inline: 0.75rem;
        font-size: 0.75rem
    }
}

#p-access .p-sightseeing__text {
    font-size: 1rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__text {
        font-size: .875rem
    }
}

#p-access .p-sightseeing__btn {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (width < 768px) {
    #p-access .p-sightseeing__btn {
        -webkit-margin-before: 2.5rem;
        margin-block-start: 2.5rem
    }
}


#p-access .p-illust_cafe__items {
    margin-block-start: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: auto auto auto; ← 削除 */
    gap: 2.5rem 1.875rem;
    align-items: start; /* 追加 */
}

@media screen and (width < 768px) {
    #p-access .p-illust_cafe__items {
        margin-block-start: 2.5rem;
        grid-template-columns: 1fr;
        gap: 1.875rem 0;
    }
}

#p-access .p-cafe__text {
    -webkit-margin: 2.25rem;
    margin-block: 2.25rem;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .625rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    border-radius: .625rem
}

@media screen and (width < 768px) {
    #p-access .p-cafe__text {
        -webkit-margin: 1.125rem;
        margin-block: 1.125rem;
        font-size: 1rem;
        padding: .625rem 1.25rem
    }
}

#p-access .p-overview__text {
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-access .p-overview__text {
        font-size: .875rem
    }
}

#p-access .p-cafe_menu__text-wrap {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
    padding: 1.875rem;
    font-weight: 500;
    background: var(--color-white);
    border-radius: 1.25rem;
    border: .125rem solid var(--color-primary);
    -webkit-box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

@media screen and (width < 768px) {
    #p-access .p-cafe_menu__text-wrap {
        max-width: 100%;
        -webkit-margin-before: 1.25rem;
        margin-block-start: 1.25rem;
        padding: 1.25rem;
    }
}

#p-access .p-cafe_menu__text {
    margin-block-end: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8
}

@media screen and (width < 768px) {
    #p-access .p-cafe_menu__text {
        margin-block-end: 1rem;
        font-size: .875rem
    }
}



@media screen and (width >=768px) {
    .u-sp-only {
        display: none !important
    }
}

@media screen and (width < 768px) {
    .u-pc-only {
        display: none !important
    }
}