@charset "UTF-8";

/* CSS Document */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    /* 横スクロール防止 */
    overscroll-behavior: none;
    /* スクロールによるズレ防止 */
}

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

body {
    margin: 0;
    padding: 0;
    font-family: "vdl-penletter", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: #efeade;
    color: #5c3b1e;
    text-align: center;
}

.mobile-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    box-sizing: border-box;
}

.instagram-header {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
}

.logo {
    width: calc(120vw / 3.9);
    margin: 0 auto;
    display: block;
}

.notice p {
    font-size: 1.3rem;
    margin: 0;
}

.instagram {
    text-decoration: none;
    color: #5c3b1e;
}

.instagram img {
    color: #5c3b1e;
    width: 13px;
    margin: 0 5px 0 0;
}

.open-title h2 {
    font-size: 4.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    font-family: 'French Script MT', sans-serif;
}

.time-section p {
    font-size: 1.3rem;
    margin: 2px 0;
}

.time-section span {
    font-style: italic;
    margin-left: 20px;
}



.image-wrapper_mobile {
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
    width: 70%;
}

.image-wrapper_mobile img {
    width: 100%;
    height: auto;
    display: block;
}

.address {
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    display: flex;
    justify-content: center;
}

.address-content {
    text-align: right;
}

.address a {
    text-decoration: none;
    color: #5c3b1e;
}

.address img {
    height: 12px;
}

.image-container_PC {
    display: none;
}


@media (min-width: 769px) {
    .mobile-wrap {
        max-width: 600px;
    }

    .notice p {
        font-size: 1.6rem;
        margin: 0;
    }

    .open-title h2 {
        font-size: 8rem;
    }

    .time-section p {
        font-size: 1.6rem;
    }

    .address {
        font-size: 1.6rem;
    }

    .address img {
        height: 16px;
    }
}

@media (min-width: 1025px) {
    .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .instagram-header {
        top: 10rem;
        right: 10rem;
    }

    .instagram-header img {
        width: 30px;
        height: auto;
    }

    .mobile-wrap {
        margin: 0;
        padding: 80px 0;
        max-width: calc(750vw / 19.2);
    }

    .logo {
        width: calc(60vw / 3.9);
    }

    .image-container_mobile {
        display: none;
    }

    .image-container_PC {
        display: block;
        margin-top: calc(150vw / 19.2);
        width: calc(800vw / 19.2);
        max-width: 800px;
        overflow: hidden;
    }

    .image-wrapper_PC img {
        width: 100%;
        height: auto;
        display: block;
    }

    .notice p {
        font-size: 1.8rem;
    }

    .time-section p {
        font-size: 1.8rem;
    }

    .address {
        font-size: 1.8rem;
    }

    .address img {
        height: 18px;
    }

}


/* 
@media (min-width: 768px) {
    .instagram-pc {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        text-decoration: none;
        color: #5c3b1e;
    }

    .notice {
        font-size: 1.6rem;
    }

    .open-title {
        font-size: 6rem;
    }

    .time-section p {
        font-size: 1.6rem;
    }
}

@media (min-width: 1040px) {
    .container {
        max-width: 1440px;
        padding: 80px 80px;
    }

    .content-wrapper {
        display: flex;
    }

    .PC-left {
        width: calc(500vw / 14.4);
    }

    .logo {
        height: 220px;
        width: auto;
    }

    .image-wrapper {
        max-width: 800px;
        width: calc(600vw / 14.4);
        margin-top: 130px;
    }
}
@media (min-width: 768px) {
    .address {
        font-size: 1.6rem;
    }
}

@media (min-width: 1040px) {
    .address {
        width: calc(500vw / 14.4);
        margin: calc(-60vw / 19.2) 0 0;
    }
}