@charset "utf-8";

:root {
    --font-sans: "游ゴシック体",
        "Yu Gothic",
        "游ゴシック",
        "YuGothic",
        "Noto Sans JP",
        sans-serif;
    --font-serif: "游明朝体",
        "Yu Mincho",
        "游明朝",
        "YuMincho",
        "Noto Serif JP",
        serif;
    --font-cinzel: "Cinzel", serif;
    --font-script: "Meddon", cursive;
    --default: .4s ease;
}

body.is-open {
    position: relative;
    overflow: hidden;
}

body.is-open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(172, 172, 172, 0.77);
    z-index: 1000;
}

.menu-open {
    overflow: hidden;
}

.phrase {
    display: inline-block;
}

.w1728 {
    width: min(85%, 1728px);
    margin: 0 auto;
}

.w1535 {
    width: min(85%, 1535px);
    margin: 0 auto;
}

.w1344 {
    width: min(85%, 1344px);
    margin: 0 auto;
}

.pc-hidden {
    display: none;
}

.sp-hidden {
    display: block;
}


.desc p {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    line-height: calc(40/18);
    color: #000;
}

.desc02 p {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    line-height: calc(27/16);
    color: #000;
}


.char.is-animate {
    animation: textAnim 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
}

@keyframes textAnim {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

    60% {
        opacity: 1;
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.shutter {
    fill: #CBCBCB;
    width: clamp(6.063rem, 5.001rem + 4.53vw, 10.438rem);
    height: clamp(6.063rem, 5.001rem + 4.53vw, 10.438rem);
    display: block;
    overflow: visible;
    cursor: pointer;
}


.blind {
    fill: #CBCBCB;
}

.wow {
    animation-duration: .8s !important;
}

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

.morebtn::before {
    content: "VIEW\AMORE";
    white-space: pre;
    position: absolute;
    text-align: center;
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: clamp(0.938rem, 0.755rem + 0.78vw, 1.688rem);
    line-height: calc(36/27);
    color: #fff;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

a.default {
transition:var(--default);}

a.default:hover {opacity:50%;}

@media (max-width: 1366px) {

    .w1728,
    .w1535,
    .w1344 {
        width: 95%;
    }

}

@media (max-width: 767px) {

    .w1728,
    .w1535,
    .w1344 {
        width: 90%;
    }
}