@charset "UTF-8";

/*
Theme Name: morris-theme Jupiter追加
Version: 1.0
*/


/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
}

main {
    display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

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

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}

[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}

:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable]:focus {
    outline: auto;
}

table {
    border-color: inherit;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: 700;
}


/*Webフォントの読み込み*/

@font-face {
    font-family: "zen-old-mincho", sans-serif;
    font-weight: 400;
    src: url(fonts/ZenOldMincho-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Cardo", serif;
    font-weight: 400;
    src: url(fonts/Cardo-Regular.ttf) format("truetype");
}

html {
    font-family: "zen-old-mincho", sans-serif;
    font-style: normal;
    color: #2f3231;
}

body {
    min-width: 390px;
}

body.open {
    overflow-y: hidden;
}

main {
    /* nav で position: sticky; を効かせるために overflow を hidden -> clip に変更 */
    overflow: clip;
}

picture {
    display: block;
}

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


/* utility */

.u-en {
    font-family: "cardo", serif;
}


/* layout */

.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
}

.l-inner {
    margin: 0 auto;
    max-width: 1280px;
}

.y-inner {
    max-width: 960px;
    margin: 0 auto;
}

.s-inner {
    margin: 0 auto;
    max-width: 977px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .l-inner {
        max-width: 520px;
    }
    .s-inner {
        max-width: 520px;
    }
    .y-inner {
        max-width: 520px;
    }
}


/* common */

.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

.--hover {
    transition: 0.3s ease;
}

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

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }
    .br-pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .br-sp-only {
        display: inline-block;
    }
}


/*===========================================================================*/


/*  header  */


/*===========================================================================*/

#header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
    opacity: 0;
    top: -50px;
    color: #fff;
    transition: color 0.3s, background 0.3s, opacity 1s ease, top 1s ease;
    background: rgba(255, 255, 255, 0.01);
}

body:not(.home) #header {
    opacity: 1;
    top: 0;
}

#header.js-scroll {
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.08);
    background: #fff;
}

#header.js-scroll.js-active {
    box-shadow: none;
}

.i-header_upper {
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
}

.i-header_logo {
    max-width: 196px;
    width: 196px;
    margin: 0px;
    flex-shrink: 0;
}

.i-header_logo .i-header_logo--img {
    display: none;
}

.i-header_logo .i-header_logo--img.js-active {
    display: block;
}

#header.js-scroll .logo-first {
    display: none !important;
}

#header.js-scroll .logo-second {
    display: block !important;
}

.i-header_upper_right {
    display: flex;
    align-items: center;
}

.i-header_btn {
    width: 196px;
    height: 47px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #fff;
    font-size: 16px;
    background: rgba(102, 102, 102, .8);
}

.i-header_btn.crab-btn {
    min-width: 196px;
    width: auto;
    padding: 0 15px;
    gap: 7px;
    margin-right: 20px;
}

.i-header_btn.crab-btn img{
    width: auto;
    height: 16px;
}

#header.js-active .i-header_btn {
    background: rgba(102, 102, 102, 1);
}

#header.js-scroll .i-header_btn {
    background: rgba(102, 102, 102, 1);
}

.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_booking {
    margin-right: 47px;
}


/* hamburger */

.p-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-hamburger__trigger {
    cursor: pointer;
    height: 15px;
    width: 32px;
    z-index: 99;
    position: relative;
}

.p-hamburger__trigger span {
    background-color: #fff;
    border-radius: 100vh;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-border-radius: 100vh;
    -moz-border-radius: 100vh;
    -ms-border-radius: 100vh;
    -o-border-radius: 100vh;
}

#header.js-active .p-hamburger__trigger span {
    background-color: #004e2d;
}

#header.js-scroll .p-hamburger__trigger span {
    background-color: #004e2d;
}

.p-hamburger__trigger,
.p-hamburger__trigger span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
}

.p-hamburger__trigger span:nth-of-type(1) {
    top: 0;
}

.p-hamburger__trigger span:nth-of-type(2) {
    bottom: 0;
}

.p-hamburger__trigger.js-active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-35deg);
    -webkit-transform: translateY(7px) rotate(-35deg);
    -moz-transform: translateY(7px) rotate(-35deg);
    -ms-transform: translateY(7px) rotate(-35deg);
    -o-transform: translateY(7px) rotate(-35deg);
}

.p-hamburger__trigger.js-active span:nth-of-type(2) {
    transform: translateY(-7px) rotate(35deg);
    -webkit-transform: translateY(-7px) rotate(35deg);
    -moz-transform: translateY(-7px) rotate(35deg);
    -ms-transform: translateY(-7px) rotate(35deg);
    -o-transform: translateY(-7px) rotate(35deg);
}

.p-global-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100;
    padding-top: calc(103px + 88px);
    padding-bottom: 40px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.p-global-menu.js-active {
    opacity: 1;
    visibility: visible;
}

.p-global-menu__inner {
    max-width: 735px;
}

.p-global-menu__top {
    display: flex;
    justify-content: space-between;
}

.p-global-menu__main:first-child {
    margin-right: 40px;
}

.p-global-menu__main a {
    display: inline-block;
}

.p-global-menu__main a span {
    display: block;
}

.p-global-menu__main li:not(:first-child) {
    margin-top: 40px;
}

.p-global-menu__en {
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
}

.p-global-menu__ja {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-top: 16px;
}

.p-global-menu__small.sp-only{
    display: none;
}

.p-global-menu__small.--flex{
    display: flex;
    gap: 0 20px;
    margin-top: 24px;
}

.p-global-menu__small li:not(:first-child) {
    margin-top: 24px;
}

.p-global-menu__small.--flex li:not(:first-child) {
    margin-top: 0;
}

.p-global-menu__small li {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.p-global-menu__small li .--flex{
    display: flex;
    gap: 10px;
}

.p-global-menu__small li .line {
    display: block;
    width: 24px;
}

.p-global-menu__bottom {
    margin-top: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.p-global-menu__address {
    flex-shrink: 0;
}

.p-global-menu__address--ttl {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
}

.p-global-menu__address--info {
    font-size: 12px;
    line-height: 24px;
    margin-top: 16px;
}

.p-global-menu__address---copy {
    font-size: 12px;
    line-height: 24px;
    margin-top: 40px;
}

.p-global-menu__img {
    max-width: 428px;
}

@media screen and (max-width: 900px) {
    #header {
        background: rgba(255, 255, 255, 0.01);
    }
    .btn_booking {
        margin-right: 15px;
    }
    .i-header_btn {
        width: 110px;
        height: 35px;
        font-size: 12px;
    }
    .i-header_upper {
        padding: 20px 15px;
    }
    .p-global-menu__inner {
        max-width: 520px;
    }
    .i-header_logo {
        width: 150px;
    }
    .p-global-menu {
        padding-top: calc(72px + 60px);
        padding-left: 40px;
        padding-right: 40px;
    }
    .p-global-menu__en {
        font-size: 22px;
        font-weight: 400;
    }
    .p-global-menu__ja {
        font-size: 12px;
        margin-top: 8px;
    }
    .p-global-menu__top {
        display: block;
    }
    .p-global-menu__main {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .p-global-menu__main:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .p-global-menu__main a {
        display: inline-block;
    }
    .p-global-menu__main a span {
        display: block;
    }
    .p-global-menu__main li {
        width: 100%;
    }
    .p-global-menu__main li.p-half {
        width: initial;
    }
    .p-global-menu__main li:not(:first-child) {
        margin-top: 0;
    }
    .p-global-menu__small li:not(:first-child) {
        margin-top: 0;
    }
    .p-global-menu__small li:last-child {
        margin-top: 0;
    }
    .p-global-menu__small {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
        margin-top: 60px;
    }
    .p-global-menu__small .sp-only {
        width: 100%;
    }

    .p-global-menu__small.sp-only{
        display: flex;
    }

    .p-global-menu__small li {
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
    }
    .p-global-menu__small li:nth-child(n + 4) {
        margin-top: 24px;
    }
    .p-global-menu__small li .line {
        width: 24px;
    }
    .p-global-menu__bottom {
        margin-top: 60px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }
    .p-global-menu__img {
        max-width: 100%;
    }
}


/* main_start */

.i-food,
.p-facility,
.y-experience {
    padding-top: 140px;
}


/*mv*/

.i-mv {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
}

.i-mv__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.i-mv__bg--item {
    width: 100%;
    height: 100%;
}

.i-mv__bg--item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
        /* 拡大率 */
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.i-mv .slick-list,
.i-mv .slick-track {
    height: 100%;
}

.i-mv::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #d9d9d9;
    mix-blend-mode: multiply;
}

.i-mv .l-wrapper {
    position: relative;
    height: 100%;
    z-index: 1;
}

.i-mv_inner {
    padding-top: 103px;
    text-align: right;
}

.i-mv_area {
    padding-top: 81px;
    padding-right: 70px;
    display: inline-block;
}

.i-mv_area h1 {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}

.i-mv_area h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.i-mv_subttl {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    opacity: 0;
    transition: opacity 1s ease;
    margin-top: 15px;
}

.i-mv_contents {
    position: absolute;
    right: 40px;
    bottom: 80px;
    opacity: 0;
    transition: opacity 1s ease;
}

.contents_box {
    display: inline-block;
    text-align: left;
    color: #fff;
}

.i-mv_contents .contents_ttl {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.9px;
    margin-bottom: 32px;
}

.i-mv_contents .contents_element {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.2px;
}

.i-mv_contents .contents_element:not(:last-child) {
    margin-bottom: 16px;
}

.scrolldown {
    position: absolute;
    bottom: 0;
    left: 40px;
}

.scrolldown span {
    position: absolute;
    left: -5px;
    bottom: 128px;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.6px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    color: #fff;
}

.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 10px;
    border-radius: 50%;
    background: #2f3231;
    animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
    z-index: 1;
}

@keyframes circlemove {
    0% {
        bottom: 115px;
    }
    100% {
        bottom: -5px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

.scrolldown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 120px;
    background: #fff;
}


/*mv-end*/


/*concept*/

.i-concept {
    background-size: cover;
    position: relative;
    background-position: center center;
    overflow: hidden;
    min-height: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.i-concept::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 2;
}

.i-concept .iconcept__content {
    position: relative;
    z-index: 3;
}

.i-concept .slick-list,
.i-concept .slick-track {
    height: 100%;
}

.i-concept__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.i-concept__bg--item {
    width: 100%;
    height: 100%;
}

.i-concept__bg--item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i-concept_ttl_box {
    color: #fff;
    max-width: 640px;
}

.i-concept_ttl_box h2 {
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.8px;
    display: inline-flex;
    flex-direction: column;
    gap: 24px;
}

.i-concept_ttl_box h2 .txt_jpn {
    color: var(--background, #f8f8f8);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    /* 34px */
    letter-spacing: 0.6px;
}

.i-concept_ttl_box p {
    color: var(--background, #f8f8f8);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 28px */
    letter-spacing: 0.56px;
    padding-top: 56px;
}

.i-concept_movie {
    padding-top: 80px;
    padding-bottom: 80px;
}

.i-concept_movie_box p {
    color: #2f3231;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 24px;
}

.movie-btn {
    cursor: pointer;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    width: 100%;
}

.movie-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}


/* 黒マスクのスタイル */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}


/* ポップアップのスタイル */

.i-concept_movie--wrap {
    width: 90%;
    max-width: 1200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.i-concept_movie--inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.i-concept_movie--inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.i-concept_movie--inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ポップアップ表示時のスクロール禁止 */

body.body-modal-open {
    overflow: hidden !important;
}


/*concept-end*/


/*facilities*/

.i-facilities {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: calc(487px + 100vh * 8);
}

.i-facilities__inner {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.i-facilities_ttl {
    text-align: right;
}

.i-facilities_ttl_box {
    padding-top: 100px;
    display: inline-block;
    text-align: left;
    padding-bottom: 40px;
}

.i-facilities_ttl h2 {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    /* 35.7px */
    letter-spacing: 1.47px;
}

.i-facilities_ttl h2 span {
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 120px */
    letter-spacing: -2.4px;
}

.i-facilities_ttl-txt {
    text-align: center;
}

.i-facilities_ttl-txt p {
    display: inline-block;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 36px */
    letter-spacing: 1.8px;
}

.i-facilities_contents {
    height: 100%;
    display: flex;
    align-items: center;
}

.i-facilities_contents_box {
    display: flex;
    align-items: center;
}

.i-facilities_contents_lbox {
    font-weight: 400;
    width: 50%;
    padding-right: 20px;
}

.i-facilities_contents_lbox .f_nunber {
    font-size: 18px;
}

.i-facilities_contents_lbox .f_room {
    font-size: 86px;
    letter-spacing: -1.72px;
    margin: 55px 0;
}

.i-facilities_contents_lbox .f_txt {
    font-size: 18px;
    line-height: 220%;
    margin-bottom: 80px;
}

.i-facilities_contents_lbox a {
    font-size: 18px;
    line-height: 220%;
    margin-bottom: 80px;
}

.i-facilities_contents_rbox {
    width: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.i-facilities_img {
    aspect-ratio: 511/675;
    width: 100%;
}

.i-facilities_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i-facilities-scroll {
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
}

.i-facilities-scroll::after {
    content: "";
    background: rgba(112, 107, 98, 0.7);
    backdrop-filter: blur(17.5px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.i-facilities-scroll._01 {
    background-image: url(img/uranus-bg.webp);
}

.i-facilities-scroll._02 {
    background-image: url(img/venus-bg.webp);
}

.i-facilities-scroll._03 {
    background-image: url(img/neptune.webp);
}

.i-facilities-scroll._04 {
    background-image: url(img/jupiter-bg.webp);
}

.i-facilities-scroll.active {
    position: fixed;
    bottom: 0;
    left: 0;
}

.i-facilities-scroll.finish {
    position: absolute;
    bottom: 0;
    left: 0;
}

.i-facilities_contents-wrap {
    position: relative;
    height: calc(100vh - 200px);
    transition: height 0.3s ease;
}

.i-facilities-scroll.active .i-facilities_contents-wrap {
    height: 100vh;
    /* この記述は残しておきます */
}

.i-facilities_contents-wrap::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 40px;
    width: 0;
    height: 4px;
    background-color: #fff;
    z-index: 9998;
    transition: width 0.5s linear;
}

.i-facilities_contents {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.i-facilities_contents.active {
    opacity: 1;
    visibility: visible;
}

.i-facilities_bar-container {
    position: absolute;
    top: calc(50% + 427.69px / 2);
    transform: translateY(-50%);
    flex-shrink: 0;
    margin-left: 102px;
    display: flex;
    align-items: center;
    flex-direction: column;
    right: -100px;
}

.i-facilities_bar-wrap {
    width: 2px;
    height: 138px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.i-facilities_bar {
    display: block;
    width: 2px;
    height: calc(100% / 4);
    background: #fff;
    transition: height 0.5s linear;
    position: absolute;
}

@media screen and (max-width: 1220px) {
    .i-facilities_bar-container {
        right: -30px;
    }
}


/*i-facilities-end*/


/*experience*/

.i-experience {
    padding-top: 120px;
    padding-bottom: 64px;
}

.i-experience_ttl_box {
    color: var(--text, #2f3231);
    text-align: center;
}

.i-experience_ttl_box h2 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.i-experience_ttl_box h2 .u-en {
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.4px;
}

.i-experience_ttl_box h2 .ex-jp {
    font-weight: 500;
    font-size: 32px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 4.48px;
    margin-top: 24px;
}

.i-how {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.i-how.hover::before {
    transform: scale(1.1);
}

.i-how::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.i-how::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(img/experience.webp);
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.i-how_box {
    position: relative;
    z-index: 2;
}

.i-how_ttl {
    color: #fff;
    text-align: center;
}

.i-how_ttl h3 {
    color: #E6E2DF;
    font-size: 26px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 3.64px;
}

.i-how_ttl p {
    color: #E6E2DF;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 8px;
}

.i-how_ttl a {
    color: #fff;
    margin: 24px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.36px;
}


/*experience-end*/


/*stay + food*/

.p-info-wrap {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.p-info-wrap::after {
    content: "";
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.p-info__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-info__bg.hover {
    transform: scale(1.1);
}

.sf_box {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sf_ttl {
    color: #fff;
    display: inline-block;
    text-align: left;
    width: 460px;
}

.sf_ttl h2 {
    color: #E6E2DF;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 12.8px;
}

.sf_ttl .sf_sub_ttl {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 3.2px;
    margin-top: 16px;
}

.sf_ttl .sf_txt_box {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    margin-top: 80px;
}

.sf-btn {
    margin-top: 48px;
    width: 220px;
    height: 58px;
    border-radius: 4px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 3.2px;
    cursor: pointer;
}

.sf-btn:hover {
    transition: 0.3s ease;
    background: #fff;
    color: #2f3231;
}


/*stay + food end*/


/*information_box*/

.i-information {
    padding-top: 194px;
    padding-bottom: 69px;
    background: #fff;
    margin-top: 88px;
}

.u-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.u-title .u-en {
    font-size: 56px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2.8px;
}

.u-title .u-info-jp {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.8px;
}

.i-information_list {
    margin-top: 32px;
}

.i-information_list_in {
    border-bottom: solid #d0d0d0 1px;
}

.i-information_list_in a {
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: .3s ease;
}

.i-information_list_img {
    width: 106px;
    flex-shrink: 0;
}

.i-information_list--wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.i-information_list_in a:hover {
    background: #f8f8f8;
}

.i-info_dc {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1;
}

.info_list {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1.4px;
}

.i_category {
    color: #004e2d;
    padding-left: 12px;
    font-size: 14px;
    letter-spacing: 1.4px;
    position: relative;
}

.i_category::before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #004e2d;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.i-info_watch {
    margin-top: 19px;
}

.i-info_watch a {
    border-bottom: solid #d0d0d0 1px;
    font-size: 14px;
    color: #2f3231;
    padding-bottom: 6px;
    padding-top: 6px;
    padding-right: 16px;
    display: inline-block;
    position: relative;
}

.i-info_watch a:hover::after {
    right: -5px;
}

.i-info_watch a::after {
    content: "";
    width: 8px;
    height: 6px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: .3s ease;
}

.i-access {
    background: #fff;
}

.i-access_inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.i-access_box {
    width: 340px;
    flex-shrink: 0;
}

.i-access_address {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    border-bottom: solid #D0D0D0 1px;
    margin-top: 42px;
    padding-bottom: 20px;
    width: 100%;
}

.i-access_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-top: 20px;
}

.i-access_map {
    width: 100%;
}

.i-reserve_ttl {
    padding: 110px 0;
}

.i-reserve_box {
    background-image: url(img/reserve.webp);
    background-size: cover;
    position: relative;
    background-position: center center;
    overflow: hidden;
    height: 300px;
    padding: 90px 60px;
    color: #fff;
}

.i-reserve_box h2 {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    /* 100% */
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.i-reserve_box a {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/*information_box-end*/


/*------------
contents
-------------*/

.i-contents_top {
    background-size: cover;
    position: relative;
    background-position: center center;
    overflow: hidden;
    height: 787px;
}

.i-contents_box {
    color: #f8f8f8;
    padding: 330px 0 0 250px;
}

.i-contents_box h1 {
    font-size: 74px;
    font-weight: 400;
    letter-spacing: 3.7px;
    line-height: 100%;
    padding-bottom: 30px;
}

.i-contents_box p {
    font-size: 24px;
    font-weight: 500;
}

.i-contents_nunber {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.i-contents_nunber p {
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 1;
    display: inline-block;
    background-color: #F8F8F8;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}

.i-contents_nunber::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #d0d0d0;
}

.i-contents_element {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.i-contents_right {
    width: 80%;
}

.i-contents_element_txt {
    width: 600px;
}

.i-contents_element_ttl h2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2.8px;
}

.i-contents_element_ttl p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-top: 24px;
}

.i-contents_element_txt h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 24px;
}

.i-contents_element_txt p {
    font-size: 14px;
    font-weight: 500;
    line-height: 200%;
}

.i-contents_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 0;
    flex-wrap: wrap;
}

.i-food__button {
    display: inline-block;
    max-width: 400px;
	width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004E2D;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 3.2px;
    border-radius: 4px;
    border: 1px solid #004E2D;
}

.i-food__button--flex{
    display: flex;
    gap: 20px;
}

.i-food__button--wrap {
    margin-top: 40px;
    display: flex;
}

.i-food__button--wrap.--half {
    width: 50%;
}

.i-stay_img_box {
    width: 50%;
}

.i-restaurant__list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
}

.i-restaurant_img_box {
    /* width: 100%; */
    width: 49%;
}

@media screen and (max-width: 900px) {
    .i-restaurant_img_box {
        width: 100%;
    }

    .i-food__button--flex{
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .i-food__button--wrap.--half {
        width: 100%;
        margin-top: 0;
    }
}

.i-food_img_box {
    width: 100%;
	height:auto;
/*     aspect-ratio: 490/331; */
    overflow: hidden;
    width: 49%;
}

.i-restaurant_img--wrap {
    width: 100%;
    aspect-ratio: 460/220;
    overflow: hidden;
}

.i-restaurant_img--wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i-food_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	height: auto;
    aspect-ratio: 4.8 / 3.2;
}


/*------------
food
-------------*/

.i-food_mv {
    background-image: url(img/food_top.webp);
}

.i-food_img_txt_box {
    text-align: center;
}

.i-food_img_txt_box h3 {
    padding-top: 27px;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 3.2px;
}

.i-food_img_txt_box p {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 2.4px;
    margin-top: 2em;
}

.i-food_bottom_txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 200%;
    padding-top: 30px;
}

.i-food_bottom_txt .i-red {
    color: #bd1313;
}

.i-food_img_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.i-food_img_link a {
    width: 156px;
    padding: 12px 0;
    border: solid 1px #2f3231;
    display: block;
    font-size: 10px;
    line-height: 24px;
    /* 240% */
    letter-spacing: 2px;
    text-align: center;
}

.i-food_img_link_lbox span {
    position: relative;
    padding-right: 21px;
    font-weight: 500;
}

.i-food_img_link_rbox span {
    padding-right: 21px;
    position: relative;
}

.i-food_img_link_lbox span::after {
    content: "";
    width: 13.371px;
    height: 14.117px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/map-black.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.i-food_img_link_rbox span::after {
    content: "";
    width: 13px;
    height: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/view-black.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.i-food_search {
    background-color: #004e2d;
    color: #fff;
    height: 200px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    border-radius: 4px;
}

.i-food_search_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.i-food_search_icon {
    margin-right: 28px;
}

.i-food_search_box {
    margin-right: 56px;
}

.i-food_search_box h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

.i-food_search_btn {
    display: flex;
    align-items: center;
}

.i-food_search_btn a {
    background-color: #fff;
    color: #004e2d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 0 18px 0px;
    position: relative;
    line-height: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    width: 196px;
}

.i-food_search_btn a svg {
    margin-top: 1px;
}


/*-----------
stay
-----------*/

.i-stay_mv {
    background-image: url(img/stay_top.webp);
}

.i-reservation_mv {
    background-image: url(img/reservation.webp);
}

.i-stay {
    padding-top: 140px;
}

.i-reservation {
    /* padding-top: 80px;
  padding-bottom: 80px; */
}

.i-reservation iframe {
    width: 100%;
}

.y-main__content .i-stay_list:not(:first-child) {
    margin-top: 140px;
}

@media screen and (max-width: 900px) {
    .i-stay {
        padding-top: 80px;
    }
    .i-reservation iframe {
        height: 15200px !important;
    }
    .y-main__content .i-stay_list:not(:first-child) {
        margin-top: 100px;
    }
}


/*-----------
背景画像なし用　共通
-----------*/

.i-mv_back-non h1 {
    font-size: 74px;
    font-weight: 400;
    letter-spacing: 3.7px;
    margin-bottom: 30px;
    line-height: 100%;
}

.i-mv_back-non p {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
}


/*------------
infomation.html
------------*/

.i-info_select {
    margin-top: 80px;
    display: flex;
}

.i-info_select p {
    padding: 0 20px 0 6px;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 1.2px;
}

.i-info_select input[type="radio"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.i-info_select input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #004e2d;
    content: "";
}

.i-info_list {
    padding-top: 44px;
}

.i-info_list_box {
    border-bottom: 1px solid #d0d0d0;
}

.i-info_list_link {
    display: flex;
    padding: 24px 0 16px 0;
    align-items: center;
    transition: .3s ease;
}

.i-info_list_link:hover {
    background: #fff;
}

.i-info_list_img {
    display: block;
    width: 106px;
}

.i-info_list_txt {
    padding-left: 25px;
    font-size: 14px;
}

.i-info_list_main_txt {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 1.5;
    margin-top: 24px;
}

.i-info_list_day-cat {
    display: flex;
    gap: 20px;
}

.i-info_more {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.i-info_more_btn {
    width: 200px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #004e2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004e2d;
}

@media screen and (max-width: 900px) {
    .i-info_list_link {
        padding: 30px 0 20px 0;
        display: block;
    }
    .i-info_list_img {
        width: 100%;
        margin-top: 14px;
    }
    .i-info_list_day-cat {}
    .i-info_list_txt {
        padding: 0;
    }
    .i-info_list_main_txt {
        margin-top: 8px;
    }
}


/*------------
infomation_detail.html
------------*/

.i-info_detail_mv {
    width: 80%;
    max-width: 800px;
}

.i-info_detail_ttl {
    margin-bottom: 35px;
}

.i-info_detail_ttl h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 140%;
}

.i-info_detail_day-cat {
    display: flex;
    margin-bottom: 40px;
    gap: 16px;
}

.i-info_detail_img {
    margin-bottom: 40px;
}

.i-info_detail_txt h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 32px;
}

.i-info_detail_txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 200%;
}

.i-info_detail_txt p:not(:first-child) {
    margin-top: 1em;
}

.i-info_detail {
    padding-bottom: 100px;
}

.i-info_detail_txt .i-info_r-border {
    padding-left: 37px;
    border-left: 1px solid #d0d0d0;
}


/*------------
localguide.html
------------*/

.i-local_mv {
    margin-bottom: 77px;
}

.i-local_ttl_txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 2.8px;
    margin-top: 58px;
}

.i-local_right {
    padding-top: 0;
}

.i-local_spot {
    width: 320px;
    text-align: center;
}

.i-local_spot h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 3.2px;
    margin: 30px 0;
}

.i-local_spot p {
    font-size: 12px;
    line-height: 200%;
    letter-spacing: 2.4px;
    margin: 30px 0;
}

.i-local_link {
    display: flex;
    justify-content: center;
}

.i-local_link_lbox {
    margin-right: 8px;
}

.i-local_link a {
    width: 156px;
    padding: 10.5px 19px 10.5px 0;
    border: solid 1px #2f3231;
    display: block;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 400;
    position: relative;
}

.i-local_link_lbox a::after {
    content: "";
    width: 18px;
    height: 14px;
    position: absolute;
    left: calc(75% + 8px);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/food/map.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.i-local_link_rbox a::after {
    content: "";
    width: 18px;
    height: 14px;
    position: absolute;
    left: calc(75% + 8px);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/food/view.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 1350px) and (min-width: 901px) {
    .i-local_spot {
        width: 30%;
    }
    .i-local_link {
        display: block;
    }
    .i-local_link_lbox {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .i-local_link a {
        width: 100%;
    }
}

@media screen and (max-width: 1150px) {
    .i-info_detail_mv {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    /*mv sp*/
    .i-mv {
        min-height: 600px;
    }
    .i-mv_area {
        padding-right: 0;
    }
    .i-mv_area h1 {
        font-size: 16px;
    }
    .i-mv_subttl {
        font-size: 16px;
        margin-top: 3px;
    }
    .i-mv_contents {
        bottom: 16px;
    }
    .i-mv_contents .contents_ttl {
        font-size: 12px;
        margin-bottom: 24px;
    }
    .i-mv_contents .contents_element {
        font-size: 16px;
    }
    /*concept sp*/
    .i-concept {
        min-height: 600px;
    }
    .i-concept_ttl_box h2 {
        font-size: 36px;
        letter-spacing: -0.72px;
        line-height: 1.2;
        gap: 8px;
    }
    .i-concept_ttl_box h2 .txt_jpn {
        font-size: 14px;
    }
    .i-concept_ttl_box p {
        width: 100%;
        font-size: 12px;
    }
    /*concept_movie sp*/
    .i-concept_movie {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .i-concept_movie_box svg {
        width: 50px;
        height: auto;
    }
    .i-concept_movie--wrap {
        padding: 10px;
    }
    /*facilities sp*/
    .i-facilities-sp__contents .f_txt {
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 220%;
        /* 30.8px */
        letter-spacing: 0.84px;
        margin-top: 16px;
    }
    .i-facilities-sp__contents {
        padding-top: 40px;
        padding-bottom: 40px;
        background-size: cover;
        background-position: center center;
        position: relative;
    }
    .i-facilities-sp__contents::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(112, 107, 98, 0.6);
        backdrop-filter: blur(12.5px);
    }
    .i-facilities-sp__contents.uranus {
        background-image: url(img/uranus-bg.webp);
    }
    .i-facilities-sp__contents.venus {
        background-image: url(img/venus-bg.webp);
    }
    .i-facilities-sp__contents.neptune {
        background-image: url(img/neptune.webp);
    }
    .i-facilities-sp__contents.jupiter {
        background-image: url(img/jupiter-bg.webp);
    }
    .i-facilities-sp__contents .l-inner {
        position: relative;
        z-index: 1;
    }
    .i-facilities-sp__ttl {
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .i-facilities-sp__ttl-ja {
        font-size: 12px;
        font-weight: 600;
        line-height: 170%;
        letter-spacing: 0.84px;
    }
    .i-facilities-sp__ttl-en {
        font-size: 40px;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.8px;
    }
    .i-facilities-sp__txt {
        color: #fff;
        margin-top: 24px;
        font-size: 14px;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 1.4px;
    }
    .i-facilities-sp__ttl-box {
        margin-bottom: 56px;
    }
    .i-facilities-sp__main {
        color: #fff;
    }
    .i-facilities-sp__main--ttl {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .i-facilities-sp__main--ttl-s {
        font-size: 15px;
        font-weight: 400;
        line-height: 100%;
    }
    .i-facilities-sp__main--ttl-l {
        font-size: 64px;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -1.28px;
    }
    .i-facilities-sp__main--img {
        width: 100%;
        aspect-ratio: 325/350;
    }
    .i-facilities-sp__main--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-top: 24px;
    }
    .i-facilities-sp__main--link {
        display: block;
        margin-top: 24px;
        border-radius: 4px;
        border: 1px solid #fff;
        padding: 22px 00;
        color: #fff;
        color: #fff;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 3.2px;
    }
    /*experience sp*/
    .i-experience {
        padding-top: 72px;
        padding-bottom: 40px;
    }
    .i-experience_ttl_box {
        height: 170px;
    }
    .i-experience_ttl_box h2 {
        padding-top: 60px;
        font-size: 14px;
    }
    .i-experience_ttl_box h2 .ex-jp {
        font-size: 18px;
    }
    /*how sp*/
    .i-how {
        height: 600px;
    }
    .i-how_ttl h3 {
        font-size: 24px;
        letter-spacing: 3.36px;
    }
    .i-how_ttl p {
        margin-top: 16px;
    }
    .i-how_ttl a {
        margin: 16px auto 0;
        line-height: 24px;
    }
    /*stay&food sp*/
    .p-info-slider {
        height: initial;
        background: #fff;
    }
    .p-info-wrap {
        min-height: initial;
        height: initial;
        display: block;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .p-info-wrap::after {
        content: none;
    }
    .sf_box {
        display: block;
    }
    .sf_ttl {
        color: #2F3231;
        display: block;
        width: 100%;
    }
    .sf_ttl h2 {
        color: #2F3231;
        font-size: 44px;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 2.2px;
    }
    .sf_ttl .sf_sub_ttl {
        font-size: 16px;
        margin-top: 16px;
    }
    .sf_img {
        margin-top: 32px;
        width: 100%;
    }
    .sf_ttl .sf_txt_box {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.56px;
        margin-top: 32px;
    }
    .p-info-slider .sf-btn {
        color: #2F3231;
        border: 1px solid #2F3231;
    }
    .sf-btn.js-info-btn {
        color: #2F3231;
        border: 1px solid #2F3231;
        width: 100%;
    }
    .sf-btn {
        height: 100%;
        width: 100%;
        padding: 22px 0;
        font-size: 16px !important;
    }
    /*information*/
    .i-information {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-top: 0;
    }
    .u-title {
        gap: 16px;
    }
    .u-title .u-en {
        font-size: 44px;
        line-height: 120%;
        letter-spacing: 2.2px;
    }
    .u-title .u-info-jp {
        font-weight: 500;
    }
    .i-information_list {
        margin-top: 18px;
    }
    .i-information_list_in a {
        padding: 30px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }
    .i-information_list_img {
        width: 100%;
    }
    .i-information_list--wrap {
        gap: 14px;
    }
    .i-info_dc {
        gap: 16px;
    }
    .i-info_watch {
        margin-top: 40px;
        text-align: center;
    }
    /*access_ttl*/
    .i-access.l-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .i-access_inner {
        flex-direction: column;
        gap: 40px;
    }
    .i-access_box {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .i-access_address {
        margin-top: 40px;
    }
    .i-access_map {
        width: 100%;
        overflow: scroll;
        padding-left: 20px;
    }
    .i-access_map img {
        width: 689px;
    }
    /*------------
  contents
  -------------*/
    .i-contents_top {
        height: 480px;
    }
    .i-contents_box {
        padding: 190px 0 0 0;
    }
    .i-contents_box h1 {
        font-size: 52px;
    }
    .i-contents_box p {
        font-size: 16px;
    }
    .i-contents_right {
        margin: 0;
        width: 100%;
    }
    .i-contents_nunber p {
        font-size: 15px;
        padding-right: 15px;
    }
    .i-contents_nunber {
        margin-bottom: 20px;
    }
    .i-contents_element {
        display: block;
        margin-bottom: 40px;
    }
    .i-contents_element_txt {
        width: 100%;
    }
    .i-contents_element_ttl h2 {
        font-size: 44px;
        line-height: 120%;
        letter-spacing: 2.2px;
        margin-bottom: 16px;
    }
    .i-contents_element_ttl p {
        font-size: 16px;
    }
    .i-contents_element_ttl {
        margin-bottom: 38px;
    }
    .i-contents_element_txt h3 {
        font-size: 22px;
        font-weight: 500;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .i-food_img_box {
        width: 100%;
    }
    .i-contents_img {
        flex-direction: column;
    }
    .i-stay_img_box {
        width: 100%;
    }
    .i-contents_img_rbox {
        padding: 0;
    }
    .i-restaurant__list {
        flex-direction: column;
        gap: 30px;
    }
    .i-food_img_txt_box h3 {
        padding-top: 20px;
    }
    .i-food_img_txt_box p {
        margin-top: 1em;
    }
    .i-food_img_link {
        margin-top: 20px;
    }
    /*food*/
    .i-mv_back-non h1 {
        font-size: 52px;
        letter-spacing: 2.6px;
    }
    .i-mv_back-non p {
        font-size: 16px;
    }
    .scrolldown {
        left: 28px;
    }
    .scrolldown span {
        left: -5px;
        bottom: 88px;
        font-size: 11px;
        line-height: 1;
    }
    .scrolldown:before {
        width: 2px;
        height: 10px;
    }
    @keyframes circlemove {
        0% {
            bottom: 75px;
        }
        100% {
            bottom: -5px;
        }
    }
    .scrolldown:after {
        height: 80px;
    }
    /*-----------
  information.html
  -----------*/
    /*-----------
  information_detail.html
  -----------*/
    .i-info_detail_ttl h1 {
        font-size: 28px;
    }
    .i-info_detail_txt h2 {
        font-size: 22px;
    }
    .i-local_spot {
        margin-bottom: 80px;
        width: 100%;
    }
    .i-local_ttl_txt {
        margin-top: 30px;
    }
    .i-local_mv {
        margin-bottom: 40px;
    }
    /*------------
  Food
  -------------*/
    .i-food_search {
        height: initial;
        padding: 30px 10px;
        margin-top: 80px;
    }
    .i-food_search_flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .i-food_search_box h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .i-food_search_icon {
        margin-right: 0;
        width: 60px;
        height: auto;
    }
    .i-food_search_box {
        margin-right: 0;
    }
    .y-main__content .i-food_list:not(:first-child) {
        margin-top: 60px;
    }
    .i-food,
    .p-facility {
        padding-top: 80px;
    }
    .y-experience {
        padding-top: 0;
    }
}


/*-------------------------

  TOP

-------------------------*/

body {
    background-color: #f8f8f8;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 28px;
}

dt {
    font-weight: 400;
}

.y-content__top {
    position: relative;
}

.y-content__top .y-content__top-title {
    position: absolute;
    padding-left: 20%;
    padding-top: 25%;
}

.y-content__top-title h2 {
    color: var(--background, #f8f8f8);
    font-family: Cardo;
    font-size: 74px;
    font-weight: 400;
    line-height: 74px;
    letter-spacing: 3.7px;
    padding-bottom: 32px;
}

.y-content__top-title p {
    color: var(--background, #f8f8f8);
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

.y-content_flex {
    display: flex;
}


/*-------------------------

  Terms & Conditions/QA/Photo Galley/Access

-------------------------*/

.p-common__page {
    margin-top: 180px;
}

.y-common__pagetitle h2 {
    color: #2f3231;
    font-size: 74px;
    line-height: 1;
    letter-spacing: 3.7px;
}

.y-common__pagetitle p {
    color: #2f3231;
    font-size: 24px;
    font-weight: 500;
    padding-top: 32px;
    line-height: 1;
}

.y-common__pagetitle-box {
    margin-top: 100px;
}

.y-common__pagetitle-box p {
    padding-top: 32px;
}


/*-------------------------

  ナビゲーション

-------------------------*/

.y-content__side {
    width: 20%;
}

.y-content__side.--top-none {
    margin-top: 0;
}

.y-content__side-nav ul li {
    padding-bottom: 20px;
    line-height: normal;
}

.y-content__side-nav ul li.--flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.y-content__side-nav.y-qa__nav {
    padding-bottom: 0;
}

.y-content__side-nav.pc-only {
    position: sticky;
    top: 160px;
}

.y-content__side-nav.y-qa__nav ul,
.y-content__side-nav.sp-only ul {
    display: flex;
    gap: 20px;
}

.y-content__side-nav.y-qa__nav ul,
.y-content__side-nav.sp-only ul li a {
    white-space: nowrap;
}

.y-content__side-nav.y-qa__nav ul li a img,
.y-content__side-nav.sp-only ul li a img {
    display: inline;
    height: 12px;
    width: 12px;
    vertical-align: inherit;
}

.y-main__content .i-food_list:not(:first-child) {
    margin-top: 100px;
}


/*-------------------------
　ROOM
-------------------------*/

.y-f-section {
    margin-top: 100px;
}

.y-content__roomttl {
    margin-bottom: 40px;
}

.y-content__room-box-title h3 {
    position: relative;
}

.y-content__room-box-title h3 span {
    background: #F8F8F8;
    padding-right: 32px;
}

.y-content__room-box-title h3::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0d0d0;
    z-index: -1;
}

.y-content__roomtitle h3,
.y-content__room-box-title h3,
.y-content__seasonprice-title h3 {
    font-size: 56px;
    padding-bottom: 20px;
    color: #2f3231;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 2.8px;
}

.y-content__room-box-subtitle,
.y-content__seasonprice-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
}

.y-content__seasonprice-content-rightbox {
    display: flex;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid #D0D0D0;
    gap: 40px;
}

.y-content__room-content {
    display: flex;
    justify-content: space-between;
}

.y-content__room-leftbox {
    width: 470px;
    margin-right: 20px;
}

.y-content__room-rightbox {
    width: 470px;
}

.y-content__room-text {
    line-height: 28px;
    padding-bottom: 32.5px;
}

.y-content__room .swiper-slide {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 470/325;
}

.y-content__room .swiper-slide img {
    width: 100%;
    height: auto;
}

.y-video-container {
    margin-top: 30px;
}

@media screen and (max-width: 900px) {
    .y-video-container {
        margin-top: 20px;
    }
}

.y-video-container video {
    width: 100%;
    height: auto;
}


/* Room 施設について
-------------------------*/

.y-content__room-row {
    display: flex;
    border-bottom: solid 1px #d0d0d0;
}

.y-content__room-item {
    width: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.y-content__room-detail {
    width: calc(100% - 200px);
    padding-top: 30px;
    padding-bottom: 30px;
}


/* Room画像
-------------------------*/


/* swiper */

.swiper-pc-main {
    margin-bottom: 20px;
}

.swiper-container {
    overflow: clip;
}


/* 設備について
-------------------------*/

.y-content__modale-facility {
    display: flex;
    border-bottom: 1px solid #d0d0d0;
}

.y-cotent__modale-facilitytitle {
    min-width: 230px;
    padding-right: 20px;
}

.y-content__modale-facility-inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 32px;
}

.y-content__modale-facility-inner li {
    width: 328px;
    padding: 18px 0;
    border-bottom: 0.5px dotted #d0d0d0;
    width: 48%;
}


/* Room ボタン
-------------------------*/

.y-contnt__room-button-list {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    width: 427px;
    flex-wrap: wrap;
    gap: 20px 0;
}

.y-button-rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 200px;
    height: 58px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 3.2px;
}

.y-button-rectangle:hover {
    opacity: 0.6;
}

.y-button-figure {
    border: 1px solid #333333;
}

.y-button-stay {
    border: 1px solid #004e2d;
    color: #004e2d;
}


/* モーダルと背景の指定 */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    z-index: 9998;
}


/* モーダルの擬似要素の指定 */

.modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}


/* クラスが追加された時の指定 */

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


/* モーダル内側の指定 */

.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 1000px;
    width: 88%;
}


/* モーダルを閉じるボタンの指定 */

.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}


/* モーダルのコンテンツ部分の指定 */

.modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    border-radius: 16px;
    padding: 60px;
}


/* モーダルのコンテンツ部分のテキストの指定 */

.modal-content p {
    margin: 1em 0;
}

.modal-open {
    color: #0066FF;
    text-decoration: underline;
}


/*-------------------------

Season price

-------------------------*/

#y-policy {
    padding-top: 100px;
}

.y-content__seasonprice {
    padding-right: 0;
}

.y-content__seasonpricetitle {
    margin-bottom: 40px;
}

.y-content__seasonprice-content {
    border-radius: 16px 0px 0px 16px;
    background-color: #fff;
    padding: 60px 140px 60px 60px;
    width: 100%;
    position: relative;
}

.y-content__seasonprice-content::after {
    content: "";
    position: absolute;
    width: calc((100vw - 1280px) / 2);
    height: 100%;
    background-color: #fff;
    left: 100%;
    top: 0;
}

@media screen and (max-width: 1360px) {
    .y-content__seasonprice-content::after {
        width: 40px;
    }
}

@media screen and (max-width: 900px) {
    .y-content__seasonprice-content::after {
        width: 20px;
    }
    .y-content__room-item {
        width: 150px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .y-content__room-detail {
        width: calc(100% - 150px);
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.y-content__seasonprice-content-box {
    font-size: 12px;
    width: 100%;
    padding-bottom: 32px;
}

.y-content__seasonprice-content-box h4 {
    padding-bottom: 25px;
}

.y-content__seasonprice-price dt,
.y-content__seasonprice-price dd {
    line-height: 28px;
    height: 60px;
    padding-top: 15px;
}

.y-content__seasonprice-price dt {
    width: 50%;
}

.y-content__seasonprice-box p {
    padding-top: 20px;
    font-size: 12px;
}

.y-content__seasonprice-box {
    margin-bottom: 15px;
}


/*注意事項とキャンセル*/

.y-content__seasonprice-notes {
    width: 50%;
}

.y-content__seasonprice-price {
    display: flex;
    border-bottom: 0.5px dotted #d0d0d0;
}


/*policy - キャンセルポリシー- */

.y-content__seasonprice-policy {
    width: 50%;
}

.y-content__seasonprice-policy .accordion-button {
    height: 12px;
    width: 12px;
    display: inline;
}

.accordion-button {
    margin-bottom: 6px;
}

details[open] .y-content__seasonprice-policy .accordion-button {
    transform: scale(1, -1);
}


/* アコーディオン */

summary {
    list-style: none;
}

.accordion-content {
    overflow: hidden;
}

.y-content__plicy-cancellation {
    display: flex;
}

.y-content__plicy-cancellation dt,
.y-content__plicy-cancellation dd {
    width: 50%;
    font-size: 11px;
    font-weight: 500;
    line-height: 22px;
}

.y-content__seasonprice-box,
.y-content__policy-cancellation-box {
    border-radius: 4px;
    background: #f5f2ee;
    width: 100%;
    padding: 27px;
}


/*===========================================================================*/


/*  Morrisの過ごし方  */


/*===========================================================================*/

.y-experience__box:not(:first-child) {
    margin-top: 120px;
}

.y-experience__img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1000/640;
    overflow: hidden;
    cursor: pointer;
    margin-top: 32px;
}

.y-experience__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.y-experience__img .h-after {
    opacity: 0;
}


/* ホバー時に1枚目の画像を透明にして2枚目の画像を表示 */

.y-experience__img:hover .h-before {
    opacity: 0;
}

.y-experience__img:hover .h-after {
    opacity: 1;
}

.y-experience__ttlBox p {
    width: 100%;
    position: relative;
}

.y-experience__ttlBox p span {
    display: inline-block;
    background: #f8f8f8;
    padding-right: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.9px;
    position: relative;
    z-index: 1;
}

.y-experience__ttlBox p::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 0;
    background: #D0D0D0;
    height: 1px;
    width: 100%;
}

.y-experience__ttlBox h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    margin-top: 32px;
}

.y-experience__textbox {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.y-experience__textbox-flex {
    margin-top: 32px;
}

.y-experience__textbox p {
    width: 100%;
    font-size: 14px;
    line-height: 2;
}

.y-experience__textbox-flex p {
    width: 100%;
    font-size: 14px;
    line-height: 2;
}

.y-experience__only {
    height: 32px;
    color: #004e2d;
    background: #fff;
    border: solid 1px #004e2d;
    border-radius: 9999px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    margin-top: 32px;
}

.y-experience__only p {
    font-size: 10px;
    color: #004E2D;
    font-size: 10px;
    font-weight: 500;
}


/*===========================================================================*/


/*  Q&A  */


/*===========================================================================*/

.y-qa__nav {
    margin-top: 100px;
}

.y-qa__content {
    margin-top: 130px;
}

.y-qa__boxes .y-qa__box:not(:first-child) {
    border-top: 1px solid #d0d0d0;
}

.y-qa__questiontitle {
    margin-bottom: 55px;
}

.y-qa__questiontitle h3 {
    color: var(--text, #2f3231);
    font-size: 56px;
    line-height: 120%;
    /* 67.2px */
    letter-spacing: 2.8px;
}

.y-qa__questiontitle p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.8px;
    padding-top: 20px;
}

.y-qa__question,
.y-qa__answer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.y-qa__question {
    color: var(--green, #004e2d);
}

.y-qa__answer {
    padding-top: 10px;
}

.y-qa__box {
    color: var(--text, #2f3231);
    padding-top: 20px;
    padding-bottom: 20px;
}

.y-faq {
    padding-bottom: 170px;
}

@media screen and (max-width: 900px) {
    .y-faq {
        padding-bottom: 70px;
    }
    .y-qa__nav {
        margin-top: 60px;
    }
    .y-qa__content {
        margin-top: 80px;
    }
    .y-qa__questiontitle {
        margin-bottom: 16px;
    }
    .y-qa__questiontitle h3 {
        font-size: 44px;
        line-height: 120%;
        letter-spacing: 2.2px;
    }
    .y-qa__questiontitle p {
        padding-top: 16px;
    }
    .y-qa__answer {
        padding-top: 16px;
    }
    .y-qa__box {
        padding-top: 24px;
        padding-bottom: 32px;
    }
}


/*===========================================================================*/


/*  Terms & Conditions  */


/*===========================================================================*/

.y-terms__main {
    background: var(--background, #f8f8f8);
}

.y-terms__boxtitle-label {
    padding-right: 0.5%;
}

.y-terms__titlebox .y-terms__title p {
    color: var(--text, #2f3231);
    font-size: 24px;
    font-weight: 500;
    padding-top: 32px;
}

.y-terms__boxes {
    margin-top: 80px;
}

.y-terms__box {
    margin-bottom: 40px;
}

.y-terms__box ul li,
.y-terms__box ol li {
    list-style-type: initial;
    list-style-position: inside;
    margin-left: 1.4em;
    text-indent: -1.4em;
}

.y-terms__box ol li {
    list-style-type: auto;
}

.y-terms__titlebox p {
    padding-top: 72px;
}

.y-terms__boxtitle {
    color: var(--text, #2f3231);
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    display: flex;
    padding-bottom: 10px;
}

.y-termes__e-money {
    width: 480px;
    background-color: #fff;
    border-radius: 16px;
    padding: 0 37px;
    margin-top: 40px;
}

.y-termes__notes {
    padding-top: 25px;
    padding-bottom: 37px;
}

.y-termes__e-moneybox {
    padding-top: 37px;
}

.y-termes__e-moneybox p {
    padding-bottom: 25px;
}


/*===========================================================================*/


/*  Contact  */


/*===========================================================================*/

.y-contact {
    padding-bottom: 132px;
}

.y-contact__text {
    font-size: 14px;
    line-height: 2;
    margin-top: 72px;
}

.y-content__side-nav ul li img {
    width: 24px;
    height: 24px;
}

.y-contact__forminner {
    margin-top: 60px;
    margin-bottom: 52px;
    background-color: #fff;
    padding: 60px 72px;
    border-radius: 4px;
}

.y-contact__formbox {
    margin-bottom: 10px;
}

.y-contact__formbox,
.y-radio-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.y-contact__formbox.y-contact__radiobox {
    align-items: flex-start;
}

.y-contact__formbox.y-contact__radiobox p {
    display: block;
}

.y-contact__formbox p {
    display: flex;
    justify-content: space-between;
}

.y-contact__content {
    width: 80%;
}

.y-contact__content input[type="radio"] {
    margin-bottom: 0;
}

.y-contact__content input[type="submit"] {
    border: 1px solid #2F3231;
    color: #2F3231;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 3.2px;
}

.wpcf7-form-control-wrap {
    width: calc(100% - 250px);
}

.y-contact-form .y-form__title {
    width: 250px;
    flex-shrink: 0;
    margin-top: 10px;
}

.y-form__title {
    width: 250px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 2;
}

.y-form__title span {
    color: #ff0000;
    font-size: 0.8em;
}

.y-radio-group .y-form__title {
    width: 180px;
}

.wpcf7-list-item {
    width: 100%;
    display: block;
}

.y-contact-form {
    margin: 70px auto 0;
}

.y-contact-form .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.y-contact-form input[type="checkbox"] {
    width: initial;
}

.y-contact-form input[type="submit"] {
    max-width: 196px;
}

.wpcf7-spinner {
    display: none;
}

.y-contact-form p {
    font-size: 16px;
    color: #666;
    width: 100%;
}

.y-contact-form label {
    display: flex;
    margin-bottom: 5px;
    font-weight: bold;
}

.y-contact-form input,
.y-contact-form textarea,
.y-contact-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
}

.y-contact-form input[type="radio"] {
    width: auto;
}

.y-contact-form .radio-group {
    margin-bottom: 20px;
}

.y-contact-form .radio-group label {
    display: inline-block;
    margin-right: 10px;
}

.y-contact-form .privacy-policy {
    margin-bottom: 20px;
}

.y-contact-form button {
    background-color: #f8f8f8;
    width: 196px;
    height: 47px;
    text-align: center;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
}

.y-contact-form button:hover {
    background-color: #45a049;
}

.y-radio__inner input {
    margin-bottom: 0px;
}

.y-contact__button {
    margin-top: 40px;
    margin-bottom: 50px;
}

.y-privacy-policy,
.y-contact__button {
    text-align: center;
}

.y-privacy-policy input {
    width: 20px;
    border: none;
    margin-bottom: 0px;
}

.y-contact__text--bottom {
    margin-top: 50px;
    text-align: center;
    width: 100%;
}


/*===========================================================================*/


/*  thanks  */


/*===========================================================================*/

.y-thanks__text {
    margin-top: 122px;
    margin-bottom: 228px;
    text-align: center;
    color: var(--text, #2f3231);
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
}


/*===========================================================================*/


/*  Photo Galley */


/*===========================================================================*/

.y-photo {
    padding-bottom: 120px;
}

.y-photogalley-inner {
    margin-top: 88px;
}

.gallery ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
}


/*===========================================================================*/


/*  Access  */


/*===========================================================================*/

.y-access__address-box {
    margin-top: 120px;
    display: flex;
    gap: 5%;
}

.y-address__left {
    flex-shrink: 0;
}

.y-address__right {
    width: 100%;
}

.y-address__right iframe {
    width: 100%;
}

.y-access__head--txt {
    font-size: 14px;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 2.8px;
    margin-top: 58px;
}

.y-access__address-box {
    margin-bottom: 147px;
}

.y-address__title-box {
    width: 350px;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 20px;
}

.y-address__title-inner h3,
.y-transportation__title h3 {
    color: var(--text, #2f3231);
    font-family: Cardo;
    font-size: 56px;
    line-height: 120%;
    /* 67.2px */
    letter-spacing: 2.8px;
    padding-bottom: 20px;
}

.y-address__title-inner p,
.y-transportation__title p {
    color: var(--text, #2f3231);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.8px;
}

.y-address__title-subtext {
    padding-top: 40px;
}

.y-address__text {
    padding-top: 20px;
}

.y-transportation__title {
    padding-bottom: 60px;
}

.y-transportation__inner {
    border-radius: 16px 0px 0px 16px;
    background: #fff;
    padding: 60px;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.y-transportation__inner::after {
    content: "";
    position: absolute;
    width: calc((100vw - 1280px) / 2);
    height: 100%;
    background-color: #fff;
    left: 100%;
    top: 0;
}

@media screen and (max-width: 1360px) {
    .y-transportation__inner::after {
        width: 40px;
    }
}

@media screen and (max-width: 900px) {
    .y-transportation__inner::after {
        content: none;
    }
    .y-address__title-inner h3 {
        font-size: 44px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 52.8px */
        letter-spacing: 2.2px;
        padding-bottom: 16px;
    }
}

.y-transportation__inner ul {
    padding-bottom: 32px;
}

.y-transportation__inner ul li {
    list-style-type: initial;
    list-style-position: inside;
    margin-left: 1.4em;
    text-indent: -1.4em;
}

.y-transportation__inner h4 {
    color: var(--text, #2f3231);
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    /* 183.333% */
    padding-bottom: 24px;
}


/*===========================================================================*/


/*  共通  */


/*===========================================================================*/


/*-------------------------
　Reserve
-------------------------*/

.y-reserve {
    position: relative;
    padding-top: 100px;
    padding-bottom: 140px;
}

.y-reserve.--white {
    background: #fff;
}

.y-experience__title {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding-left: 60px;
}

.y-experience__title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
}

.y-reservebtn {
    position: relative;
    z-index: 2;
}

.y-reservebtn h2 {
    color: #FFF;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3px;
}

.y-reservebtn p {
    color: #FFF;
    font-size: 20px;
    line-height: 1;
    margin-top: 24px;
}

.y-reserve-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.y-reserve-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*-------------------------

  Footer

-------------------------*/

.p-footer {
    background: #003921;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.p-footer__inner {
    display: flex;
    justify-content: space-between;
}

.y-footer__left {
    padding-right: 112px;
    flex-shrink: 0;
}

.y-footer__adless {
    margin-top: 76px;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 2.4px;
}

.y-footer__logo {
    width: 286px;
    display: block;
}

.y-footer__right {
    width: 100%;
}

.y-footer__menu-box {
    display: flex;
    flex-wrap: wrap;
    width: 400px;
}

.y-footer__menu {
    width: 50%;
}

.y-footer__menu h4 {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1.2px;
}

.y-footer__menu p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-top: 16px;
}

.y-footer__menu-box .y-footer__menu:nth-child(n + 3) {
    margin-top: 32px;
}

.y-footer__menu-sub {
    display: flex;
    align-items: center;
    gap: 40px;
}

.y-footer__menu-sub a {
    font-size: 12px;
    /* line-height: 1; */
    letter-spacing: 2.4px;
    /* 10/10追記 */
    line-height: 1.6;
}

.y-footer__copy small {
    display: block;
    line-height: 1.6;
}


/*footer　ボタン*/

.y-footer__button-rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 47px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 3.2px;
}

.y-botton-booking {
    background-color: #fff;
    border: 1px solid #fff;
    color: #003921;
    margin-bottom: 20px;
}

.y-botton-ccontact {
    background-color: #003921;
    border: 1px solid #fff;
    color: #fff;
}

.y-footer__menu-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    position: relative;
}

.y-footer__menu-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    opacity: 80%;
}

.y-footer__menu-content-sub {
    display: flex;
    justify-content: space-between;
    padding-top: 33px;
}

@media screen and (max-width: 1100px) {
    .y-footer__left {
        padding-right: 30px;
        flex-shrink: 0;
    }
    .y-footer__logo {
        width: 250px;
    }
    .y-footer__menu h4 {
        font-size: 20px;
    }
    .y-footer__menu p {
        font-size: 13px;
    }
    .y-footer__menu-box {
        display: flex;
        flex-wrap: wrap;
        width: 340px;
    }
    /*footer　ボタン*/
    .y-footer__button-rectangle {
        width: 160px;
        font-size: 15px;
    }
}


/*===========================================================================*/


/*  レスポンシブ  */


/*===========================================================================*/


/*-------------------------

  共通(全体コンテンツ・ナビゲーション)

-------------------------*/

@media screen and (max-width: 900px) {
    .y-main__content.y-experience__main {
        margin-top: 80px;
    }
    .y-main__content.i-stay__main {
        margin-top: 0;
    }
    .y-main__content {
        width: 100%;
        margin-top: 40px;
    }
    .y-content__top .y-content__top-title {
        padding-left: 5%;
        padding-top: 45%;
    }
    .y-content__top-title h2 {
        font-size: 52px;
        padding-bottom: 32px;
        line-height: 1;
    }
    .y-content__top-title p {
        font-size: 24px;
        line-height: 1;
    }
    .y-content__side {
        margin-top: 80px;
        width: 100%;
    }
    .y-content__side.--top-none {
        margin-top: 0;
        width: 100%;
    }
    .y-content__side-nav ul li {
        padding-bottom: 0;
        line-height: 1;
    }
    .y-content__side-nav.sp-only ul {
        flex-wrap: wrap;
        font-size: 16px;
        width: 100%;
        gap: 18px 27px;
    }
    .y-content__side-nav.y-qa__nav ul {
        flex-wrap: wrap;
        font-size: 16px;
        width: 60%;
    }
    .y-content__side-nav.y-qa__nav ul li {
        padding-bottom: 0;
    }
    .y-common__pagetitle h2 {
        font-size: 52px;
        line-height: 120%;
        /* 62.4px */
        letter-spacing: 2.6px;
    }
    .y-common__pagetitle-box .y-common__pagetitle p {
        font-size: 16px;
        line-height: 16px;
        padding-top: 16px;
    }
    /*-------------------------

  施設

-------------------------*/
    .y-content__facility-title h2 {
        color: var(--background, #f8f8f8);
        font-family: Cardo;
        font-size: 52px;
        line-height: 120%;
        letter-spacing: 2.6px;
    }
    .y-content__room-rightbox {
        width: 100%;
    }
    .y-content__roomtitle,
    .y-content__room-box-title {
        padding-left: 0px;
    }
    .y-content_flex,
    .y-content__room-content,
    .y-content__modale-facility-inner ul {
        display: block;
    }
    .y-content__roomtitle h3,
    .y-content__room-box-title h3,
    .y-content__seasonprice-title h3 {
        font-size: 44px;
        line-height: 120%;
        letter-spacing: 2.2px;
    }
    .y-content__room-box-title h3 {
        overflow: clip;
    }
    .y-f-section {
        margin-top: 64px;
    }
    .y-content__room {
        margin-bottom: 64px;
    }
    /* モーダル */
    .modal {
        padding: 40px 0;
    }
    .modal-content {
        padding: 30px;
    }
    .y-cotent__modale-facilitytitle {
        min-width: 90px;
        padding-right: 0;
    }
    .y-cotent__modale-facilitytitle {
        width: 10%;
    }
    .y-content__modale-facility-inner {
        width: 80%;
    }
    .y-content__modale-facility-inner li {
        width: 100%;
    }
    .y-contnt__room-button-list {
        display: block;
        width: 100%;
    }
    .y-content__room-leftbox {
        padding-bottom: 25px;
        width: 100%;
    }
    .y-button-rectangle {
        width: 90%;
    }
    .y-button-figure {
        margin: 0 auto 8px auto;
    }
    .y-button-stay {
        margin: 0 auto;
    }
    .y-content__seasonprice-content-box {
        display: block;
        width: 100%;
    }
    .y-content__seasonprice-content-box h4 {
        padding-bottom: 20px;
        line-height: normal;
    }
    .y-content__seasonprice-content {
        padding: 25px;
    }
    .y-content__seasonprice-price dt,
    .y-content__seasonprice-price dd {
        height: 100%;
        width: 100%;
    }
    .y-content__seasonprice-price dd {
        padding-top: 4px;
        padding-bottom: 16px;
    }
    .y-content__seasonprice-price {
        display: block;
    }
    .accordion-button {
        margin-bottom: 1px;
    }
    .y-content__seasonprice-content-rightbox {
        display: block;
    }
    .y-content__seasonprice-notes {
        width: 100%;
        padding-bottom: 24px;
        border-bottom: 1px solid #d0d0d0;
    }
    .y-content__seasonprice-policy {
        width: 100%;
        padding-top: 24px;
    }
    .y-content__policy-content-contact p {
        font-size: 12px;
        line-height: 2;
    }
    /*-------------------------

  Experience

-------------------------*/
    .y-experience__side {
        padding-left: 20px;
        padding-right: 20px;
    }
    .y-experience.l-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .y-experience__box:not(:first-child) {
        margin-top: 48px;
    }
    .y-experience__img {
        margin-top: 24px;
    }
    .y-experience__img .h-before,
    .y-experience__img .h-after {
        opacity: 1;
    }
    .y-experience__ttlBox p {
        width: 100%;
        position: relative;
    }
    .y-experience__ttlBox {
        padding-left: 20px;
        padding-right: 20px;
    }
    .y-experience__ttlBox p span {
        padding-right: 16px;
        font-size: 18px;
    }
    .y-experience__ttlBox h2 {
        font-size: 22px;
        line-height: 40px;
        margin-top: 16px;
    }
    .y-experience__textbox {
        display: block;
        margin-top: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .y-experience__textbox-flex {
        margin-top: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .y-experience__textbox p {
        max-width: 100%;
    }
    .y-experience__textbox-flex p {
        max-width: 100%;
    }
    .y-experience__only {
        display: none;
    }
    .y-experience__sp-info {
        height: 24px;
        color: #004e2d;
        background: #fff;
        border: solid 1px #004e2d;
        border-radius: 9999px;
        padding: 0 18px;
        display: inline-flex;
        align-items: center;
        font-size: 10px;
        color: #004E2D;
        font-size: 10px;
        font-weight: 500;
        margin-top: 16px;
    }
    /*-------------------------

  Q&A

-------------------------*/
    .y-qa__nav {
        margin-top: 60px;
    }
    .p-common__page {
        margin-top: 112px;
    }
    .y-common__pagetitle p {
        font-size: 16px;
        padding-top: 16px;
        line-height: 16px;
    }
    .y-qa__content {
        margin-top: 80px;
    }
    .y-qa__questiontitle {
        margin-bottom: 30px;
    }
    .y-qa__questiontitle h2 {
        font-size: 44px;
        line-height: 120%;
        /* 52.8px */
        letter-spacing: 2.2px;
    }
    .y-qa__questiontitle p {
        color: var(--text, #2f3231);
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: 0.8px;
    }
    /*-------------------------

  Terms & Conditions

-------------------------*/
    .y-terms__titlebox p {
        padding-top: 60px;
    }
    .y-termes__e-money {
        width: 100%;
    }
    /*-------------------------

  Contact

-------------------------*/
    .y-contact__forminner {
        padding: 32px 32px;
        margin-bottom: 24px;
    }
    .y-contact__text--bottom {
        margin-top: 38px;
        text-align: left;
    }
    .y-contact__formbox,
    .y-radio-group {
        display: block;
    }
    .y-contact-form button {
        width: 100%;
    }
    .y-radio-group {
        margin-bottom: 20px;
    }
    .y-radio-group label {
        margin-bottom: 10px;
    }
    .y-contact__formbox {
        margin-bottom: 10px;
    }
    .y-contact__formbox br {
        display: none;
    }
    .y-contact__formbox,
    .y-radio-group {
        display: block;
        width: 100%;
    }
    .y-contact__formbox p {
        display: block;
    }
    .y-contact__content {
        width: 100%;
    }
    .y-contact__content input[type="radio"] {
        margin-bottom: 0;
    }
    .wpcf7-form-control-wrap {
        width: 100%;
    }
    .y-contact-form .y-form__title {
        width: 100%;
        flex-shrink: 0;
    }
    .y-form__title {
        width: 100%;
        flex-shrink: 0;
    }
    .y-radio-group .y-form__title {
        width: 180px;
    }
    .wpcf7-list-item {
        width: 100%;
        display: block;
    }
    .y-contact-form {
        margin: 60px auto 0;
    }
    .y-contact-form .wpcf7-acceptance label {
        gap: 10px;
    }
    .y-contact-form input[type="checkbox"] {
        width: initial;
    }
    .y-contact-form input[type="submit"] {
        max-width: 196px;
    }
    .wpcf7-spinner {
        display: none;
    }
    .y-contact-form p {
        font-size: 16px;
        color: #666;
        width: 100%;
    }
    .y-contact-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    .y-contact-form input,
    .y-contact-form textarea,
    .y-contact-form select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .y-contact-form input[type="radio"] {
        width: auto;
    }
    .y-contact-form .radio-group {
        margin-bottom: 20px;
    }
    .y-contact-form .radio-group label {
        display: inline-block;
        margin-right: 10px;
    }
    .y-contact-form .privacy-policy {
        margin-bottom: 20px;
    }
    .y-contact-form button {
        background-color: #f8f8f8;
        width: 196px;
        height: 47px;
        text-align: center;
        border: 1px solid;
        border-radius: 5px;
        cursor: pointer;
    }
    .y-contact-form button:hover {
        background-color: #45a049;
    }
    .y-radio__inner input {
        margin-bottom: 0px;
    }
    .y-contact__button {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .y-privacy-policy,
    .y-contact__button {
        text-align: center;
    }
    .y-privacy-policy input {
        width: 20px;
        border: none;
        margin-bottom: 0px;
    }
    .y-contact {
        padding-bottom: 80px;
    }
    /*-------------------------

  thanks

-------------------------*/
    .y-thanks__text {
        margin-top: 100;
        margin-bottom: 80px;
        font-size: 20px;
    }
    /*-------------------------

  Photo Galley

-------------------------*/
    .y-photo {
        padding-bottom: 80px;
    }
    .y-photogalley-inner {
        margin-top: 32px;
    }
    /*-------------------------

  Access

-------------------------*/
    .y-access__address-box {
        display: block;
        margin-bottom: 100px;
    }
    .y-address__right iframe {
        width: 100%;
        height: 198px;
        margin-top: 40px;
    }
    .y-access__transportation-box {
        overflow: auto;
    }
    .y-access__address-box {
        margin-top: 80px;
    }
    .y-transportation__inner {
        padding: 25px;
        overflow: scroll;
    }
    .y-transportation__title {
        padding-bottom: 37px;
    }
    .y-transportation__title h3 {
        font-size: 44px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 52.8px */
        letter-spacing: 2.2px;
    }
    .scroll-wrap {
        width: 800px;
    }
    /*===========================================================================*/
    /*  下記全ページ共通  */
    /*===========================================================================*/
    /*-------------------------

  Reserve

-------------------------*/
    .y-reserve {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .y-experience__title {
        justify-content: center;
        padding-left: 0;
    }
    .y-reservebtn {
        text-align: center;
    }
    .y-reservebtn h2 {
        font-size: 56px;
        line-height: 1;
        letter-spacing: 2.8px;
    }
    .y-reservebtn p {
        font-size: 16px;
        line-height: 28px;
        margin-top: 28px;
    }
    /*-------------------------

  footer

-------------------------*/
    .p-footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .p-footer__inner {
        flex-direction: column;
        gap: 48px;
    }
    .y-footer__left {
        padding-right: 0;
    }
    .y-footer__adless {
        margin-top: 41px;
        letter-spacing: 0.6px;
    }
    .y-footer__logo {
        width: 100%;
        max-width: 220px;
    }
    .y-footer__menu-box {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .y-footer__menu {
        width: 50%;
    }
    .y-footer__menu h4 {
        font-size: 24px;
    }
    .y-footer__menu p {
        font-size: 14px;
    }
    .y-footer__menu-sub {
        gap: 30px;
        flex-wrap: wrap;
    }
    /*footer　ボタン*/
    .y-footer__button-rectangle {
        width: 100%;
    }
    .y-botton-booking {
        background-color: #003921;
        border: 1px solid #fff;
        color: #fff;
    }
    .y-footer__menu-content {
        flex-direction: column;
        gap: 48px;
        padding-bottom: 40px;
    }
    .y-footer__menu-content-sub {
        padding-top: 40px;
        flex-direction: column;
        gap: 32px;
    }
}

.p-slider {
    padding-top: 50px;
    padding-bottom: 50px;
}

.p-slide-item {
    padding: 0 7px;
}

.p-slide-item figure {
    aspect-ratio: 640/380;
    width: 100%;
    overflow: hidden;
}

.p-slide-item img {
    width: 100%;
    display: block;
    transform: initial !important;
}

@media screen and (max-width: 900px) {
    .p-slider {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .p-slide-item {
        padding: 0 4px;
    }
}

.i-guide {
    padding-bottom: 100px;
}

.p-spot__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 24px;
    gap: 40px;
}

.p-spot__list--item {
    text-align: center;
}

.p-spot__list--img {
    width: 100%;
    aspect-ratio: 320/220;
    overflow: hidden;
}

.p-spot__list--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-spot__list--ttl {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 3.2px;
    margin-top: 24px;
}

.p-spot__list--sub {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 2.4px;
    margin-top: 2em;
}

.p-spot__list--txt {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 2.4px;
    margin-top: 2em;
}

.p-spot__link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.p-spot__link a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #2f3231;
}

.p-spot__link--wrap span {
    position: relative;
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    padding-right: 21px;
}

.p-spot__link--lbox span::after {
    content: "";
    width: 13.371px;
    height: 14.117px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/map-black.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.p-spot__link--rbox span::after {
    content: "";
    width: 13px;
    height: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(img/view-black.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.p-spot__wrap .p-spot:not(:first-child) {
    margin-top: 64px;
}

@media screen and (max-width: 900px) {
    .i-guide {
        padding-bottom: 100px;
    }
    .i-guide__nav {
        margin-bottom: 40px;
    }
    .p-spot__wrap .p-spot:not(:first-child) {
        margin-top: 40px;
    }
    .p-spot__list {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 30px 10px;
    }
    .p-spot__list--item {
        text-align: left;
    }
    .p-spot__list--ttl {
        font-size: 15px;
        margin-top: 16px;
    }
    .p-spot__list--sub {
        margin-top: 1em;
    }
    .p-spot__list--txt {
        margin-top: 1em;
    }
    .p-spot__link {
        margin-top: 16px;
    }
}

.p-policy,
.p-thanks {
    padding-bottom: 120px;
}

.p-policy__head--txt {
    font-size: 14px;
    line-height: 2;
    margin-top: 78px;
}

.p-policy__content {
    margin-top: 80px;
    font-size: 14px;
    line-height: 2;
}

.p-policy__content * {
    margin-top: 10px;
}

.p-policy__content img {
    max-width: 100%;
    width: initial;
}

.p-policy__content ul {
    padding-left: 1em;
    list-style: disc;
}

.p-policy__content ol {
    padding-left: 1em;
    list-style: decimal;
}

.p-policy__content h2,
.p-policy__content h3 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
}

.p-policy__content h3:first-child {
    margin-top: 0;
}

@media screen and (max-width: 900px) {
    .p-policy,
    .p-thanks {
        padding-bottom: 100px;
    }
    .p-policy__head--txt {
        margin-top: 60px;
    }
    .p-policy__content h2,
    .p-policy__content h3 {
        font-size: 22px;
    }
}

body.home {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* ローディング中にスクロールを無効にする */
}

#loading-screen {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: white;
    transition: opacity 1s ease-out;
}

#logo {
    width: 200px;
    max-width: 70%;
}

.popup {
    display: none;
    /* 初期状態では非表示 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    width: 80%;
    max-width: 600px;
}

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

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.mask {
    display: none;
    /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.i-info_mv {
    padding-bottom: 160px;
}

.i-info_select ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.i-info_select ul a {
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.2px;
    position: relative;
    padding-left: 28px;
}

.i-info_select ul a::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border: 1px solid #D0D0D0;
}

.i-info_select ul a.active::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #004E2D;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.page-numbers {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #004E2D;
    font-size: 14px;
    text-decoration: none;
    margin: 0 5px;
    transition: background-color 0.3s;
    text-align: center;
    position: relative;
}

.page-numbers.current {
    background-color: #004E2D;
    color: #fff;
}

.page-numbers.prev:before,
.page-numbers.next:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.page-numbers.prev:before {
    right: 2px;
}

.page-numbers.next:after {
    left: 2px;
}

.page-numbers.prev,
.page-numbers.next {
    background-color: #004E2D;
}

.page-numbers.prev:before {
    border-width: 6px 8px 6px 0;
    border-color: transparent #ffffff transparent transparent;
}

.page-numbers.next:after {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #ffffff;
}

@media screen and (max-width: 900px) {
    .i-info_mv {
        padding-bottom: 100px;
    }
    .pagination {
        margin-top: 40px;
    }
}


/* 10/8 */

.language {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-right: 47px;
    font-size: 12px;
    font-weight: 500;
}

#header.js-active .language {
    color: #004e2d;
}

#header.js-scroll .language {
    color: #004e2d;
}

@media screen and (max-width: 900px) {
    .language {
        margin-right: 15px;
    }
}

@media screen and (max-width: 500px) {
    .language {
        margin-right: 0;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 5px 15px;
        border-radius: 5px;
    }
    #header.js-active .language,
    #header.js-scroll .language {
        background-color: #fff;
    }
}

/* 03/27 */

.tokuten {
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #fff;
    font-size: 16px;
    padding: 12px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 102, 102, .8);
}

.tokuten.crab-btn {
    gap: 7px;
}

.tokuten.crab-btn img{
    width: auto;
    height: 16px;
}

@media screen and (max-width: 900px) {
    .tokuten {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.i-info_detail_mv {
    width: 100% !important;
    max-width: 100% !important;
}


/* 追加 */
.i-contents_element_price{
	margin-top: 40px;
}

.i-contents_element_main{
	display: flex;
	align-items: flex-end;
	gap: 15px;
	font-size: 16px;
}

.i-food_price_ttl{
	flex-shrink: 0;
	width: 145px;
	font-weight: 600 !important;
}

.i-food_price_txt span{
	font-size: 2em;
	color: rgba(0, 78, 45, 0.8);
	font-weight: 600;
}

.i-contents_element_main:not(:first-child){
	margin-top: 10px;
}

.i-contents_element_kome{
	margin-top: 10px;
	font-size: 14px !important;
	line-height: 1.5 !important;
}

.i-price_wrap{
	display: flex;
	align-items: flex-end;
	gap: 15px;
}

@media screen and (max-width: 900px){
	.i-contents_element_price{
		margin-top: 30px;
	}

	.i-contents_element_main{
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.i-food_price_ttl{
		width: 100%;
	}

	.i-contents_element_main:not(:first-child){
		margin-top: 15px;
	}
}

/* ポップアップバナー（Swiper） */
.popup-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-banner-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-banner-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    background: transparent;
}

.popup-banner-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.popup-banner-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #f0f0f0;
}

.popup-banner-swiper {
    position: relative;
}

.popup-banner-swiper .swiper-wrapper {
    display: flex;
}

.popup-banner-slide {
    cursor: pointer;
    transition: transform 0.3s ease;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); */
}

.popup-banner-slide:hover {
    transform: scale(1.02);
}

.popup-banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-banner-swiper .swiper-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.popup-banner-swiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
    transition: all 0.3s ease;
}

.popup-banner-swiper .swiper-pagination-bullet-active{
    opacity: 1;
}

/* ナビゲーション矢印 */
.popup-banner-swiper .swiper-button-prev,
.popup-banner-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-banner-swiper .swiper-button-prev {
    left: 10px;
}

.popup-banner-swiper .swiper-button-next {
    right: 10px;
}

/* デフォルトのアイコンを消す */
.popup-banner-swiper .swiper-button-prev::after,
.popup-banner-swiper .swiper-button-next::after {
    content: '';
}

/* くの字の矢印を作成 */
.popup-banner-swiper .swiper-button-prev::before,
.popup-banner-swiper .swiper-button-next::before {
    content: '';
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.3s ease;
}

/* 左向き矢印 */
.popup-banner-swiper .swiper-button-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

/* 右向き矢印 */
.popup-banner-swiper .swiper-button-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* ホバー効果 */
.popup-banner-swiper .swiper-button-prev:hover::before,
.popup-banner-swiper .swiper-button-next:hover::before {
    border-color: #fff;
    transform: scale(1.2) rotate(-135deg);
}

.popup-banner-swiper .swiper-button-next:hover::before {
    transform: scale(1.2) rotate(45deg);
}

/* 無効状態 */
.popup-banner-swiper .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}




/* 動画モーダル */
.popup-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-video-modal.active {
    display: flex;
}

.popup-video-inner {
    width: 90%;
    max-width: 1200px;
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.popup-video-inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* スマホ対応 */
@media screen and (max-width: 900px) {
    .popup-banner-container {
        width: 95%;
        max-width: 500px;
    }

    .popup-banner-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .popup-video-inner {
        width: 95%;
    }

    /* スマホ版の矢印 */
    .popup-banner-swiper .swiper-button-prev,
    .popup-banner-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .popup-banner-swiper .swiper-button-prev {
        left: 5px;
    }

    .popup-banner-swiper .swiper-button-next {
        right: 5px;
    }

    .popup-banner-swiper .swiper-button-prev::before,
    .popup-banner-swiper .swiper-button-next::before {
        width: 14px;
        height: 14px;
        border-width: 2.5px;
    }

    .popup-banner-swiper .swiper-pagination {
        margin-top: 8px;
        gap: 8px;
    }

    .popup-banner-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}