.home .header__logo {
    width: 17%;
    max-width: 235px;
    opacity: 0;
    animation: fv_fade 0.5s 2.5s forwards;
}

.l-article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.l-article-list a {
    display: block;
}


/* opening */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s 1s forwards;
    z-index: 999;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 0.5s 0.2s forwards;
    width: 200px;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* first-view */

.fv {
    min-height: 100vh;
    padding: 64px 4% 40px;
    position: relative;
}

.fv::after {
    content: "";
    display: block;
    width: 90%;
    aspect-ratio: 1874 / 155;
    background: url(../img/front/fv-idettobase.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 56px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    animation: fv_fade 0.5s 2.5s forwards;
}

.fv__img {
    width: 100%;
    aspect-ratio: 1874 / 1025;
    opacity: 0;
    animation: fv_fade 0.5s 2s forwards;
}

.fv__text {
    font-size: var(--font-32);
    font-weight: 200;
    line-height: 1;
    position: absolute;
    left: 4%;
    bottom: 45%;
    opacity: 0;
    animation: fv_fade 0.5s 2.5s forwards;
}

.fv__text span {
    display: block;
    width: max-content;
    max-width: 100%;
    background-color: var(--text);
    color: var(--white);
    padding: 0.15em 0.4em;
}

.fv__text-en {
    font-family: var(--font-en);
    font-size: max(1vw, 12px);
    letter-spacing: 0.1em;
    line-height: 1.35;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    position: absolute;
    top: var(--header-height);
    right: 4%;
    opacity: 0;
    animation: fv_fade 0.5s 2.5s forwards;
}

@keyframes fv_fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100;
    }
}

@keyframes fv_text {
    0% {
        transform: translateY(20px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* section-intro */

.intro {
    min-height: 32vw;
    padding: 40px 0;
    position: relative;
}

.intro::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: url(../img/front/intro.webp) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.intro .l-section-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.intro__title {
    font-size: var(--font-32);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.intro__text {
    max-width: 520px;
    background-color: #fff;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}


/* section-news */

.news {
    position: relative;
    z-index: 1;
}

.news::before,
.news::after {
    content: "";
    max-width: 40%;
    max-height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
}

.news::before {
    width: 564px;
    height: 673px;
    background-image: url(../img/front/news-bg-l.png);
    left: 2%;
    top: -56px;
    opacity: 0;
}

.news::after {
    width: 508px;
    height: 629px;
    background-image: url(../img/front/news-bg-r.png);
    right: 2%;
    bottom: 16px;
    opacity: 0;
}

.js-scroll-bg.on::before,
.js-scroll-bg.on::after {
    animation: bg forwards 2s 1.5s;
}

@keyframes bg {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.news__category-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1.5rem;
    margin-bottom: 4rem;
}

.news__category-menu input {
    display: none;
}

.news__article-title,
.tour__article-title {
    padding: 1em 0;
}

.news__article-category,
.tour__article-category {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: var(--font-12);
}


/* section-schedule */

.schedule {
    background-color: var(--bg);
}


/* sectopm-floormap */

.floormap__title {
    font-family: var(--font-en);
    font-weight: var(--bold);
    font-size: var(--font-80);
    line-height: 1;
    margin-bottom: 4rem;
}

.floormap .c-section-text {
    text-align: left;
}

.floormap__map {
    text-align: center;
    margin-bottom: 0rem;
    position: relative;
    margin-top: -10rem;
}

.floormap__img {
    aspect-ratio: 1110 / 610;
}

.floormap__map .c-btn {
    position: absolute;
    left: 5%;
    bottom: 10rem;
}

.floormap__item {
    display: flex;
}

.floormap__item+.floormap__item {
    margin-top: 4rem;
}

.floormap__item:nth-child(even) {
    flex-direction: row-reverse;
}

.floormap__item-text {
    width: 50%;
}

.floormap__item:nth-child(odd) .floormap__item-text {
    padding-right: 4%;
}

.floormap__item:nth-child(even) .floormap__item-text {
    padding-left: 4%;
}

.floormap__item-img {
    width: 50%;
}

.floormap__item-title {
    font-size: var(--font-24);
    font-weight: var(--bold);
    line-height: 1;
    border-bottom: 2px solid var(--text);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.floormap__item-title::after {
    content: attr(data-en);
    display: block;
    font-family: var(--font-en);
    font-weight: var(--bold);
    font-size: var(--font-64);
    margin-top: 1rem;
}

.floormap__item-text p {
    font-weight: 400;
    margin-bottom: 2rem;
}


/* section-shop */

.shop,
.tour {
    background-color: var(--bg);
}

.shop__item+.shop__item {
    margin-top: var(--space-section);
}

.shop__article-title {
    margin-top: 1em;
}

.shop__article-price {
    display: block;
    font-size: var(--font-12);
    margin-top: 1em;
}


/* section-access */

.access__title {
    font-family: var(--font-en);
    font-weight: var(--bold);
    font-size: var(--font-80);
    line-height: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.access__wrap {
    height: 364px;
    min-height: 24vw;
    display: flex;
}

.access__map {
    width: 60%;
}

.access__text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.access__text img {
    max-width: 330px;
    margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
    .home .header__logo {
        width: 33%;
        max-width: 124px;
    }
    .home .header__logo > img {
        height: 100px;
        width: auto;
    }
    .fv__text-en {
        top: var(--header-height-sp);
    }
    .intro {
        padding-top: 0;
    }
    .intro::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 376 / 305;
        background: url(../img/front/intro-sp.webp) no-repeat;
        background-size: contain;
        margin-bottom: 2rem;
    }
    .intro::after {
        content: none;
    }
    .intro__text {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .intro__link {
        text-align: center;
    }
    .news::before,
    .news::after {
        max-width: 60%;
    }
    .news::after {
        background-position: right bottom;
    }
    .news__category-menu {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .l-article-list {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }
    .schedule__post {
        margin-top: 2rem;
    }
    .floormap__title {
        text-align: center;
        margin-bottom: 3rem;
    }
    .floormap__item {
        flex-direction: column-reverse;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .floormap__item:nth-child(even) {
        flex-direction: column-reverse;
    }
    .floormap__item-img,
    .floormap__item-text {
        width: 100%;
    }
    .floormap__item:nth-child(odd) .floormap__item-text,
    .floormap__item:nth-child(even) .floormap__item-text {
        padding: 0;
        margin-top: 2rem;
    }
    .floormap__item-link {
        text-align: center;
    }
    .access__title {
        text-align: center;
        margin-bottom: 3rem;
    }
    .access__wrap {
        display: block;
        height: auto;
    }
    .access__map {
        width: 100%;
        aspect-ratio: 1 / 0.6;
        margin-bottom: 2rem;
    }
    .access__text {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .fv {
        padding: 0;
    }
    .fv__img {
        aspect-ratio: 752 / 1148;
    }
    .fv__text {
        left: 0;
        bottom: auto;
        top: 44vw;
    }
    .floormap__img {
        aspect-ratio: 905 / 610;
    }
    .floormap__map .c-btn {
        left: auto;
        bottom: auto;
        right: 0;
        top: -1rem;
    }
    .floormap__map {
        margin-top: 0;
    }
}