@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --jp: "Shippori Mincho", serif;
    --en: "Libre Baskerville", serif;
    --sans: "Noto Sans JP", sans-serif;
}

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: #232323;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    background: #EDE4CF;
}

img {
    width: 100%;
}

.br {
    display: inline-block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #EDE4CF;
    z-index: 99990;
}

.nav {
    width: 95%;
    max-width: 1920px;
    padding: 21px 0;
    margin: 0 auto;
}

.nav__ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__ul__li a {
    font-family: var(--en);
    font-weight: 600;
}

.header__sp {
    display: none;
}

.nav__ul__li small {
    display: none;
}

.nav__sp,
.nav__sp2 {
    display: none;
}

.nav__ul__li__a .sp {
    display: none;
}


@media (max-width: 1024px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        z-index: 99999;
    }

    .header__sp {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
    }

    .header__sp h1 {
        width: 210px;
    }

    body.active {
        height: 100vh;
        overflow: hidden;
    }

    .menu {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
        border-radius: 50%;
        background: #232323;
        z-index: 99999;
    }

    .menu span {
        display: block;
        width: 20px;
        height: 1px;
        position: absolute;
        top: 22px;
        left: 15px;
        background: #EDE4CF;
        transition: 0.5s;
        transition-timing-function: ease-out;
    }

    .menu span:nth-child(2) {
        display: block;
        width: 20px;
        height: 1px;
        position: absolute;
        top: 28px;
        left: 15px;
        background: #EDE4CF;
    }

    .menu.active span {
        top: 25px;
        rotate: 20deg;
    }

    .menu.active span:nth-child(2) {
        top: 25px;
        rotate: -20deg;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100lvh;
        overflow: hidden;
        z-index: 99990;
        visibility: hidden;
    }

    .nav.active {
        visibility: initial;
    }

    .nav__bg {
        position: absolute;
        top: 40px;
        right: 6.5%;
        width: auto;
        height: 100%;
        aspect-ratio: 1/1;
        background: #232323;
        border-radius: 50%;
        transform-origin: top right;
        transition: 1s;
        scale: 0;
        z-index: 99990;
    }

    .nav.active .nav__bg {
        top: -100%;
        right: -100%;
        scale: 4;
    }


    .nav__contents {
        z-index: 99999;
        position: relative;
        opacity: 0;
        color: #EDE4CF;
        width: 100%;
        height: 100lvh;
        overflow-y: scroll;
    }

    .nav.active .nav__contents {
        animation: 0.3s nav ease-out both;
        animation-delay: 0.8s;
    }

    @keyframes nav {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .nav__ul {
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 125px;
        padding-left: 10px;
        padding-top: 100px;
    }

    .nav__ul__li {
        width: calc(100% / 2 - 15px);
        text-align: left;
    }


    .nav__ul__li:nth-child(1) {
        order: 1;
    }

    .nav__ul__li:nth-child(2) {
        order: 3;
    }

    .nav__ul__li:nth-child(3) {
        order: 5;
    }

    .nav__ul__li:nth-child(4) {
        order: 7;
    }

    .nav__ul__li:nth-child(5) {
        order: 9;
    }

    .nav__ul__li:nth-child(6) {
        order: 2;
    }

    .nav__ul__li:nth-child(7) {
        order: 4;
    }

    .nav__ul__li:nth-child(8) {
        order: 6;
    }

    .nav__ul__li:nth-child(9) {
        order: 8;
    }

    .nav__ul__li small {
        display: block;
        font-size: 1.2rem;
        font-family: var(--jp);
    }

    .nav__sp {
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav__sp__title {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .nav__sp__p {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .nav__sp__a {
        display: block;
        margin-bottom: 80px;
    }

    .nav__sp2 {
        display: block;
        width: 95%;
        margin: 0 auto 100px;
    }

    .nav__sp2 img {
        display: block;
        margin-bottom: 5px;
    }

    .nav__sp2 small {
        font-size: 1rem;
        font-weight: 600;
    }

    .nav__ul__li__a .pc {
        display: none;
    }

    .nav__ul__li__a .sp {
        display: block;
    }
}




.app {
    padding: 50px 0 100px;
}

.app__wapper {
    width: 90%;
    max-width: 1340px;
    padding: 150px 5%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: #F6EFDC;
    border-radius: 40px;
}

.app__wapper__left {
    width: 200px;
    height: 200px;
}

.app__wapper__left img,
.app__wapper__left source {
    object-fit: contain;
}

.app__wapper__right {
    width: calc(100% - 200px);
    max-width: 600px;
    text-align: left;
}

.app__wapper__right h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.app__wapper__right p {
    font-weight: 600;
    margin-bottom: 20px;
}

.app__wapper__right ul {
    display: flex;
    gap: 20px;
}

.app__wapper__right ul li:nth-child(1) {
    width: 163px;
}

.app__wapper__right ul li:nth-child(2) {
    width: 202px;
}

.app__wapper__right ul li a picture {
    display: block;
}

.app__wapper__right ul li a picture img,
.app__wapper__right ul li a picture source {
    object-fit: contain;
    width: 100%;
}

.app__wapper__right p {
    line-height: 1.8;
}


@media (max-width: 600px) {
    .app {
        padding: 100px 0 0;
    }

    .app__wapper {
        padding: 30px 5%;
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
    }

    .app__wapper__left {
        width: 120px;
        height: 120px;
    }

    .app__wapper__right {
        width: 90%;
    }

    .app__wapper__right h2 {
        font-size: 2rem;
        text-align: center;
    }

    .app__wapper__right p {
        font-size: 1.4rem;
    }

    .app__wapper__right ul {
        flex-direction: column;
        align-items: center;
    }
}




.footer {
    padding: 100px 0 50px;
}

.footer img {
    display: block;
    width: 95%;
    margin: 0 auto;
}

.footer p {
    font-size: 3.6111vw;
    font-weight: 500;
}

.footer small {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2;
}