* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f0f0;
}

#RthCustomizeW a:link, #RthCustomizeW a:visited {
    color: white;
}

/* ===== DRAG SLIDER (shared) ===== */
.drag-slider {
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.drag-slider__track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.drag-slider__slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
    width: 100%;
}

.drag-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ===== TOP IMAGE ===== */
.top-image {
    position: relative;
    width: 100%;
    height: 640px;
}

/* ===== NAVIGATION ===== */
.nav {
    width: 100%;
    background: #fff;
    padding: 40px 0;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    list-style: none;
}

.nav__item {
    flex: 0 0 auto;
}

.nav__link,
.nav__link:hover,
.nav__link:focus,
.nav__link:visited,
.nav__link:active {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4px;
    text-decoration: none;
}

.nav__ja {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.7;
    color: #c8c8c8;
    transition: color 0.25s ease;
}

.nav__en {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #c8c8c8;
    transition: color 0.25s ease;
}

.nav__en::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav__link:hover .nav__ja {
    color: #231f20;
}

.nav__link:hover .nav__en::after {
    opacity: 1;
}

.nav__link--active .nav__ja {
    color: #231f20;
}

.nav__link--active .nav__en::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .nav {
    padding: 20px 0;
    }

    .nav__list {
    gap: 20px;
    }

    .nav__ja {
    font-size: 18px;
    }

    .nav__en {
    font-size: 11px;
    }
}

/* ===== LOCATION BANNER ===== */
.location-banner-wrap {
    width: 100%;
    max-width: 1920px;
}

.location-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 502;
    overflow: hidden;
    background-color: #772583;
    font-family: 'Noto Sans JP', sans-serif;
}

.location-banner__img-left,
.location-banner__img-mid,
.location-banner__img-right {
    position: absolute;
    top: 0;
    height: 100%;
}

.location-banner__img-left img,
.location-banner__img-mid img,
.location-banner__img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-banner__img-left {
    left: -13.646%;
    width: 35.521%;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10.417vw) 100%, 0 100%);
}

.location-banner__img-mid {
    left: 44.635%;
    width: 35.521%;
    z-index: 2;
    clip-path: polygon(10.417vw 0, 100% 0, calc(100% - 10.417vw) 100%, 0 100%);
}

.location-banner__img-right {
    left: 66.771%;
    width: 35.521%;
    z-index: 3;
    clip-path: polygon(10.417vw 0, 100% 0, calc(100% - 10.417vw) 100%, 0 100%);
}

.location-banner__text {
    position: absolute;
    left: 21.875%;
    top: 33.665%;
    width: 26.667%;
    z-index: 4;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.417vw;
}

.location-banner__title {
    font-size: clamp(16px, 1.667vw, 32px);
    font-weight: 700;
    line-height: 1.7;
}

.location-banner__desc {
    font-size: clamp(11px, 1.042vw, 20px);
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .location-banner {
    aspect-ratio: 16 / 9;
    }

    .location-banner__img-mid {
    display: none;
    }

    .location-banner__text {
    top: 50%;
    transform: translateY(-50%);
    width: max(26.667%, 200px);
    gap: 1.5vw;
    }
}

/* ===== FEATURE SECTION ===== */
.feature-section {
    width: 100%;
    background: #fff;
    padding: 120px 0;
}

.feature-section__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-section__heading {
    text-align: center;
    margin-bottom: 8px;
}

.feature-section__label {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 8px 40px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-section__label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-section__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-section__item {
    display: flex;
    gap: 40px;
}

.feature-section__item--reverse {
    flex-direction: row-reverse;
}

.feature-section__image {
    flex: 0 0 50%;
    aspect-ratio: 450 / 280;
    overflow: hidden;
}

.feature-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-section__content {
    flex: 1;
    min-width: 0;
}

.point-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.point-card__icon {
    flex-shrink: 0;
    margin-top: 6px;
    width: 24px;
}

.point-card__icon svg {
    display: block;
}

.point-card__body {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-width: 0;
}

.point-card__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.point-card__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #772583;
}

.point-card__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #231f20;
}

.point-card__btn,
.point-card__btn:hover,
.point-card__btn:focus,
.point-card__btn:visited,
.point-card__btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 280px;
    padding: 16px 48px 16px 70px;
    background: #231f20;
    border-radius: 100px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.point-card__btn:hover {
    opacity: 0.85;
}

@media (max-width: 767px) {
    .feature-section {
    padding: 48px 0;
    }

    .feature-section__inner {
    padding: 0 20px;
    gap: 48px;
    }

    .feature-section__title {
    font-size: 24px;
    }

    .feature-section__item,
    .feature-section__item--reverse {
    flex-direction: column;
    }

    .feature-section__image {
    flex: 0 0 auto;
    width: 100%;
    }

    .point-card__btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    justify-content: space-between;
    }
}

/* ===== ACCESS ===== */
.access {
    width: 100%;
    max-width: 1120px;
    padding: 60px 40px;
    margin: auto;
    background: #f6f6f6;
}

.access__inner {
    overflow: hidden;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.access__main {
    display: flex;
    gap: 109px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.access__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0 0 356px;
}

.access__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access__label {
    position: relative;
    display: inline-block;
    background: #f6f6f6;
    border-radius: 100px;
    padding: 8px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    align-self: flex-start;
}

.access__label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.access__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.access__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access__block-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #772583;
}

.access__block-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: #231f20;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.access__block-body p {
    margin: 0;
}

.access__divider {
    border: none;
    border-top: 1px solid #c1c1c1;
    width: 100%;
}

.nearest-station__list {
    list-style: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: #231f20;
}

.access__map {
    flex: 0 0 535px;
    height: 400px;
    overflow: hidden;
    align-self: flex-start;
}

.access__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.access__bottom {
    display: flex;
    gap: 105px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .access {
    padding: 40px 0;
    }

    .access__inner {
    padding: 0 20px;
    }

    .access__label {
    font-size: 14px;
    padding: 6px 24px;
    }

    .access__title {
    font-size: 24px;
    }

    .access__main {
    flex-direction: column;
    gap: 24px;
    }

    .access__left {
    flex: none;
    width: 100%;
    }

    .access__map {
    flex: none;
    width: 100%;
    height: 240px;
    }

    .access__block-title {
    font-size: 18px;
    }

    .access__block-body {
    font-size: 14px;
    }

    .nearest-station__list {
    font-size: 14px;
    }

    .access__bottom {
    flex-direction: column;
    gap: 24px;
    }
}

/* ===== ROOM ===== */
.room {
    width: 100%;
    padding: 120px 0;
    background: #fff;
}

.room__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
}

.room__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.room__label {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 8px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.room__label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.room__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.room__content {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
}

.room__main-image {
    width: 100%;
    height: 560px;
}

.room__row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
}

.room__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1 1 50%;
    min-width: 0;
}

.room__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #231f20;
}

.room__btn,
.room__btn:hover,
.room__btn:focus,
.room__btn:visited,
.room__btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 280px;
    padding: 16px 48px 16px 70px;
    background: #231f20;
    border-radius: 100px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.room__btn:hover {
    opacity: 0.85;
}

.room__sub-image {
    flex: 1 1 40%;
    max-width: 40%;
    aspect-ratio: 448 / 268;
}

@media (max-width: 767px) {
    .room {
    padding: 48px 0;
    }

    .room__inner {
    padding: 0 20px;
    gap: 32px;
    }

    .room__title {
    font-size: 24px;
    }

    .room__main-image {
    height: 220px;
    }

    .room__row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    }

    .room__body {
    gap: 24px;
    align-items: stretch;
    }

    .room__desc {
    font-size: 16px;
    }

    .room__btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    justify-content: space-between;
    }

    .room__sub-image {
    max-width: 100%;
    }
}

/* ===== RESTAURANT ===== */
.restaurant {
    width: 100%;
    padding: 0 0 80px;
    background: #fff;
}

.restaurant__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
}

.restaurant__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.restaurant__label {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 8px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.restaurant__label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.restaurant__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.restaurant__content {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
}

.restaurant__main-image {
    width: 100%;
    height: 560px;
}

.restaurant__row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
}

.restaurant__sub-image {
    max-width: 40%;
    flex: 1 1 40%;
    aspect-ratio: 448 / 268;
}

.restaurant__body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    flex: 1 1 50%;
    min-width: 0;
}

.restaurant__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #231f20;
    width: 100%;
}

.restaurant__btn,
.restaurant__btn:hover,
.restaurant__btn:focus,
.restaurant__btn:visited,
.restaurant__btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 48px 16px 70px;
    background: #231f20;
    border-radius: 100px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.restaurant__btn:hover {
    opacity: 0.85;
}

@media (max-width: 767px) {
    .restaurant {
    padding: 48px 0;
    }

    .restaurant__inner {
    padding: 0 20px;
    gap: 32px;
    }

    .restaurant__title {
    font-size: 24px;
    }

    .restaurant__main-image {
    height: 220px;
    }

    .restaurant__row {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    }

    .restaurant__body {
    gap: 24px;
    align-items: stretch;
    }

    .restaurant__desc {
    font-size: 16px;
    }

    .restaurant__btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    justify-content: space-between;
    }

    .restaurant__sub-image {
    max-width: 100%;
    }
}

/* ===== FACILITIES ===== */
.facilities {
    width: 100%;
    padding: 80px 0 160px;
    background: #fff;
}

.facilities__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.facilities__heading {
    text-align: center;
    margin-bottom: 32px;
}

.facilities__label {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 8px 40px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.facilities__label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(to right, #772583, #a04aac);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.facilities__title {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    background-image: linear-gradient(to right, #772583, #a04aac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.facilities__body {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #231f20;
    margin-bottom: 40px;
}

.slide {
    width: 100%;
    overflow: hidden;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-2400px); }
}

.slide__track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.slide__track:hover {
    animation-play-state: paused;
}

.slide__item {
    flex: 0 0 480px;
    height: 320px;
}

.slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .facilities {
    padding: 48px 0;
    }

    .facilities__inner {
    padding: 0 20px;
    }

    .facilities__title {
    font-size: 24px;
    }

    .facilities__body {
    font-size: 16px;
    }

    @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-80vw * 5)); }
    }

    .slide__item {
    flex: 0 0 80vw;
    height: calc(80vw * 320 / 480);
    }
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background: #772583;
    padding: 56px 0;
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__logo {
    display: block;
    width: 240px;
    height: auto;
}

.footer__info {
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: #ffffff;
}

.footer__info p {
    margin: 0;
}

@media (max-width: 767px) {
    .footer {
    padding: 40px 0;
    }

    .footer__inner {
    padding: 0 20px;
    }

    .footer__content {
    width: 100%;
    gap: 24px;
    }

    .footer__logo {
    width: 180px;
    }

    .footer__info {
    font-size: 14px;
    }
}