@charset "utf-8";

:root {
    --main: "Noto Serif JP", serif;
    --sub: "Source Serif 4", serif;
    --sans: "Noto Sans JP",
        sans-serif;
    --default: 0.4s ease;
}


body {
    font-family: var(--main);
    font-weight: 400;
    color: #2F2F2F;
}

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

.menu-open {
    overflow: hidden;
}

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

.w1536 {
    width: min(1536px, 86%);
    margin: 0 auto;
}

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

.w1152 {
    max-width: 1152px;
    width: 90%;
    margin: 0 auto;
}

.w960 {
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
}

.desc p {
    font-family: var(--sans);
}

.pc-hidden {
    display: none;
}

.sp-hidden {
    display: block;
}

.bg-white {
    background-color: #FFF;
}

.morebtn {
    max-width: 210px;
    width: 100%;
}

.morebtn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 30px;
    width: 100%;
    border-radius: 50px;
    border: 1px solid #707070;
    transition: .4s ease;
}

.morebtn:hover a {
    background-color: #153250;
}

.morebtn a .link-text {
    font-weight: 400;
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    color: #000;
}

.morebtn:hover a .link-text {
    color: #FFF;
}

.morebtn a .arrow {
    width: clamp(1.75rem, 1.587rem + 0.81vw, 2.563rem);
    height: auto;
}

.morebtn a .arrow img {
    width: 100%;
    height: auto;
}



.morebtn:hover a .arrow img {
    filter: brightness(2);

}

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

.delay-2 {
    animation-delay: 0.2s;
    transition-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: 1280px) {
    .w1344 {
        width: 90%;
    }

    .w1536 {
        width: min(1536px, 90%);
    }


}

@media (max-width: 1180px) {}

@media (max-width: 1023px) {}

@media (max-width: 767px) {

    .w1536 {
        width: 90%;
    }
}