@charset "utf-8";

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Top Page ------------------------------------------------ */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* ------------------------------------- */
/* Main Visual ------------------------- */
/* ------------------------------------- */
.p-mainVisual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.p-mainVisual video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.p-mainVisual__information {
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.p-mainVisual__image {
    width: auto;
}
.p-mainVisual__image img {
    width: 100%;
    display: block;
}

.p-mainVisual__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

@media screen and (min-width: 640px) {
    .p-mainVisual__image {
        width: 80%;
        margin: auto;
    }

    .p-mainVisual__text {
        font-size: 24px;
    }
}

@media screen and (min-width: 960px) {
    .p-mainVisual__image {
        width: 828px;
        margin: auto;
    }
    .p-mainVisual__image img {
        width: 828px;
    }
}

/* ------------------------------------- */
/* Consept ----------------------------- */
/* ------------------------------------- */
.p-consept__container {
    position: relative;
}

.p-consept__imageA .p-consept__decoration:nth-child(1) {
    width: 42%;
    height: auto;
    margin-top: -20px;
    aspect-ratio: 120 / 117;
}
.p-consept__imageA .p-consept__decoration:nth-child(2) {
    width: 52%;
    height: auto;
    margin-top: -60px;
    margin-left: auto;
    aspect-ratio: 14 / 17;
}
.p-consept__imageB .p-consept__decoration:nth-child(1) {
    width: 42%;
    height: auto;
    aspect-ratio: 302 / 321;
}
.p-consept__imageB .p-consept__decoration:nth-child(2) {
    margin-left: auto;
    width: 52%;
    height: auto;
    margin-top: -200px;
    aspect-ratio: 271 / 327;
}

.p-consept__logo {
    margin-bottom: 40px;
}
.p-consept__logo img {
    width: 80%;
}

.p-consept__title {
    margin-bottom: 48px;
    color: var(--color-primary);
}

.p-consept__text:not(:last-child) {
    margin-bottom: 24px;
}

.p-consept__content {
    position: relative;
    margin-bottom: 48px;
}

@media screen and (min-width: 640px) {
    .p-consept__imageA .p-consept__decoration:nth-child(1) {
        width: 32%;
        margin-left: 40px;
    }
    .p-consept__imageA .p-consept__decoration:nth-child(2) {
        width: 42%;
        margin-top: -160px;
    }
    .p-consept__imageB .p-consept__decoration:nth-child(1) {
        width: 32%;
    }
    .p-consept__imageB .p-consept__decoration:nth-child(2) {
        width: 42%;
        margin-top: -320px;
    }
}

@media screen and (min-width: 960px) {
    .p-consept {
        padding-bottom: 80px;
    }

    .p-consept__imageA .p-consept__decoration:nth-child(1),
    .p-consept__imageA .p-consept__decoration:nth-child(2),
    .p-consept__imageB .p-consept__decoration:nth-child(1),
    .p-consept__imageB .p-consept__decoration:nth-child(2) {
        position: absolute;
    }

    .p-consept__imageA .p-consept__decoration:nth-child(1) {
        top: -24px;
        left: 20px;
        width: 216px;
    }
    .p-consept__imageA .p-consept__decoration:nth-child(2) {
        top: 120px;
        right: 15px;
        width: 273px;
    }
    .p-consept__imageB .p-consept__decoration:nth-child(1) {
        bottom: 0;
        left: 15px;
        width: 240px;
    }
    .p-consept__imageB .p-consept__decoration:nth-child(2) {
        bottom: -40px;
        right: 15px;
        width: 200px;
    }

    .p-consept__logo img {
        width: 450px;
    }

    .p-consept__content {
        width: 520px;
        margin: auto;
    }
}

@media screen and (min-width: 1200px) {
    .p-consept__imageB .p-consept__decoration:nth-child(2) {
        width: 271px;
    }
}

/* ------------------------------------- */
/* Consept Slider ---------------------- */
/* ------------------------------------- */
.p-conseptSlider {
    position: relative;
    z-index: 0;
}

/* ------------------------------------- */
/* News -------------------------------- */
/* ------------------------------------- */
.p-news {
    position: relative;
    padding-bottom: 160px;
    z-index: 1;
    background: url(../images/bg-news.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.p-news__container {
    position: relative;
}
.p-news__container:after {
    position: absolute;
    content: '';
    bottom: -180px;
    left: 15px;
    width: 56%;
    height: auto;
    margin-top: -60px;
    aspect-ratio: 240 / 83;
    animation: moveUpDown 2.48s ease-in-out infinite;
    z-index: 1;
    background: url(../images/deco-news01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

.p-news__content {
    margin-bottom: 24px;
    padding: 15px;
    border-radius: 20px;
    background: var(--color-white);
}

.p-news-information {
    margin-bottom: 40px;
}

.p-news__list {
    margin-bottom: 28px;
}

.p-news__item:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-opacity-dark2);
}

.p-news__meta {
    display: flex;
}

.p-news__date {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border-radius: calc(32px / 2);
    background: var(--color-light);
}

.p-news__text a {
    display: inline-block;
    /* padding: 12px 0; */
    padding: 12px 0 0;
    font-size: 12px;
    transition: 0.3s ease-in-out;
    color: var(--color-text-default);
}
.p-news__text a:hover {
    opacity: 0.6;
}

.p-news__waveCanvas {
    z-index: -1;
}

@media screen and (min-width: 640px) {
    .p-news__container:after {
        bottom: -200px;
        width: 42%;
    }

    .p-news-information {
        margin-bottom: 56px;
    }

    .p-news__content {
        margin-bottom: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
        /* padding-bottom: 28px; */
    }

    .p-news__list {
        margin-bottom: 0;
    }

    .p-news__meta {
        display: flex;
        margin-right: 24px;
    }

    .p-news__date {
        width: 200px;
    }

    .p-news__text a {
        font-size: 16px;
    }
}

@media screen and (min-width: 960px) {
    .p-news__container:after {
        bottom: -220px;
        width: 487px;
        height: 168px;
    }

    .p-news__item {
        display: flex;
    }
    .p-news__item:not(:last-child) {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .p-news__text a {
        display: inline;
    }
}

/* ------------------------------------- */
/* Savor ------------------------------- */
/* ------------------------------------- */
.p-savor {
    position: relative;
}

.p-savor__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    /* margin-bottom: 56px; */
}

.p-savor__image img {
    width: 100%;
}

.p-savor__data {
    width: 80%;
    margin: auto;
}

@media screen and (min-width: 640px) {
    .p-savor__list {
        gap: 80px;
    }

    .p-savor__image img {
        width: 64%;
    }
}

@media screen and (min-width: 960px) {
    .p-savor__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------------------------------------- */
/* Stay -------------------------------- */
/* ------------------------------------- */
.p-stay {
    position: relative;
    background: url(../images/bg-stay.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.p-stay:before {
    position: absolute;
    content: '';
    top: -40px;
    left: 15px;
    width: 68%;
    height: auto;
    aspect-ratio: 835 / 356;
    z-index: 3;
    background: url(../images/deco-stay01.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.p-stay__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    align-items: stretch;
    margin-bottom: 56px;
}

.p-stay__title span {
    color: var(--color-white);
    text-shadow: 0px 4px 12px rgba(92, 147, 171, 0.4);
}

.p-stay__largeBox .p-list1__data {
    margin: auto;
}

.p-stay__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.p-stay__image {
    margin-bottom: 12px;
}
.p-stay__image img {
    width: 100%;
}

@media screen and (min-width: 640px) {
    .p-stay:before {
        top: -40px;
        left: 15px;
        width: 48%;
        height: auto;
    }

    .p-stay__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 960px) {
    .p-stay:before {
        top: -40px;
        left: 15px;
        width: 32%;
        height: auto;
    }
}

/* ------------------------------------- */
/* Memory ------------------------------- */
/* ------------------------------------- */
.p-memory__image img {
    width: 100%;
}

@media screen and (min-width: 640px) {
    .p-memory__image img {
        width: 80%;
    }
}

@media screen and (min-width: 960px) {
    .p-memory__image img {
        width: 100%;
    }
}






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

@media screen and (min-width: 640px) {
    .p-tourTitle {
        margin-top: 136px;
    }
}



.p-tourMV {
    position: relative;
}

.p-tourMV__item {
    display: flex;
    float: left;
}

.p-tourMV__item:nth-child(1) {
    width: 50%;
}
.p-tourMV__item:nth-child(n+2) {
    width: 25%;
}

.p-tourMV__open {
    position: absolute;
    bottom: 16px;
    left: 56px;
    padding: 8px 12px;
    background: var(--color-opacity-light9);
    z-index: 1;
}


.p-tourMV2 img {
    height: 400px;
}

@media screen and (min-width: 640px) {
    .p-tourMV2 img {
        height: 560px;
    }
}

@media screen and (min-width: 960px) {
    .p-tourMV2 img {
        height: 720px;
    }
}






.p-tourInformation__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.p-tourInformationt__text:not(:last-child) {
    margin-bottom: 24px;
}
.p-tourInformationt__text a {
    text-decoration: underline;
}


.p-tourIframe__item:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (min-width: 960px) {
    .p-tourInformation__container {
        grid-template-columns: 3fr 2fr;
    }
}




.p-tourTable__item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    border-top: 1px solid var(--color-border-dark);
}
.p-tourTable__item:last-child {
    border-bottom: 1px solid var(--color-border-dark);
}

.p-tourTable__title {
    padding: 8px 8px 0 8px;
    color: var(--color-dark);
    font-weight: 500;
}

.p-tourTable__text {
    padding: 8px;
}

@media screen and (min-width: 640px) {
    .p-tourTable__item {
        grid-template-columns: 1fr 3fr;
    }

    .p-tourTable__title {
        padding: 8px;
    }
}




.p-tourReview {
    padding: 24px;
    background: var(--color-light);
}

.p-tourReview__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
}

.p-tourReview__item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-dark);
}

.p-tourReview__point {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
}

.p-tourReview__text {
    margin-bottom: 4px;
}

.p-tourReview__name {
    color: var(--color-gray);
    text-align: right;
}




.p-tourReservation {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 10;
}
.p-tourReservation .c-button > * {
    min-width: auto;
    border-radius: 8px;
}




.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.youtube_wrap{
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}

.youtube_wrap iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}


strong {
    color: var(--color-dark);
    font-weight: 500;
}



.p-tourMV__item:nth-child(n+6) {
    display: none;
}

#full-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-container {
    width: 80%;
    height: 80%;
}

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

#swiper-caption {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}

#close-slider {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 1100;
}

.swiper-slide img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

/* ------------------------------------- */
/* Modal ------------------------------- */
/* ------------------------------------- */
.p-modal-fixed {
    overflow: hidden;
    height: 100%;
}

.p-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--color-opacity-dark4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 12;
    padding: 15px;
    box-sizing: border-box;
}

.p-modalTable .p-modal__content {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 20px;
    background: var(--color-white);
}
.p-modalTable .p-price__content {
    height: 100%;
    overflow: scroll;
}

.p-modal__content {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.4s ease;
    transform: scale(0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p-modal.p-modal-show {
    display: block;
    opacity: 1;
}

.p-modal.p-modal-show .p-modal__content {
    transform: scale(1);
}

.p-modal__list {
    margin-right: 16px;
    margin-bottom: 48px;
    margin-left: 16px;
    grid-template-columns: repeat(1, 1fr);
}

.p-modal__image {
    padding-bottom: 80px;
    flex-grow: 1;
    border-radius: 20px;
    overflow-y: auto;
}
.p-modal__image img {
    width: 100%;
    height: auto;
}

.p-modal__button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    border-radius: 0 0 20px 20px;
    background: var(--color-white);
    text-align: center;
}
.p-modal__button a {
    padding: 0 24px;
    line-height: 38px;
}
.p-modal__button a:before,
.p-modal__button a:after {
    content: none;
}

@media screen and (min-width: 640px) {
    .p-modal {
        padding: 40px;
    }

    .p-modal__list {
        margin-right: 40px;
        margin-left: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .p-modal__image {
        padding-bottom: 92px;
    }
}