/* css */
.max-width-lg{
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
.max-width-md{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
.max-width-sm{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
@media (max-width: 560px) {
    .max-width-lg{
        padding: 0 5%;
        box-sizing: border-box;
    }
    .max-width-md{
        padding: 0 5%;
        box-sizing: border-box;
    }
    .max-width-sm{
        padding: 0 5%;
        box-sizing: border-box;
    }
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    background-size: contain;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.05rem;
    line-height: 2;
    scroll-behavior: smooth;
    color: #64625D;
    background-color: #06212F;
    line-height: 2.3;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
    color: #64625D;
}
a:visited{
    color: #64625D;
}
.a-link{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.sp{
    display: none!important;
}
.btn:hover{
    opacity: 0.7;
    transition: 0.3s
}
.fade-in{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.fade-in-delay {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1s ease-in-out, transform 2s ease-in-out;
}

.fade-in.visible, .fade-in-delay.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 560px) {
    .sp{
        display: block!important;
    }
    .pc{
        display: none!important;
    }
    body{
        display: block;
        min-height: auto;
    }
}


/* header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5%;
    padding: 20px 3%;
    box-sizing: border-box;
    font-family: "century-old-style-std", serif;
    font-style: italic;
}
.header-logo{
    position: fixed;
    top: 0;
    left: 0;
    margin-right: auto;
    width: 120px;
    margin-top: 10px;
    z-index: 1001;
}
.shop-btn{
    cursor: pointer;
    border: 1px solid #64625D;;
    color: #64625D;
    background-color: transparent;
    position: relative;
    padding: 10px 30px;
    font-size: 18px;
    font-family: "century-old-style-std", serif;
    font-style: italic;
}
.header-shop-sp{
    display: none;
}
@media (max-width: 560px) {
    .header-logo{
        width: 90px;
    }
    .header .shop-btn{
        display: none;
    }
    .header-shop-sp{
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        height: 70px;
        line-height: 70px;
        text-align: center;
        font-size: 19px;
        font-family: "century-old-style-std", serif;
        font-style: italic;
        font-weight: 300;;
        background-color: #9A968B;
        color: #FFFFFF;
        z-index: 1000;
    }
}
/* top */
#top{
    position: relative;
}
.top-img{
    height: 100vh;
    min-height: 500px;
    width: 100%;
    background-image: url(../img/top.jpg);
    background-size: cover;
    background-position: center;
}
@media (max-width: 560px) {
    .top-img{
        background-image: url(../img/top-sp2.jpg);
        height: 100vh;
    }
    .top-title{
        position: absolute;
        /* bottom: -30px; */
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}
/* about */
#about{
    background-color: #64625D;
}
.about{
    display: flex;
    align-items: center;;
}
.about-1{
    background-color: #64625D;
    height: 400px;
    align-content: center;
    flex-basis: 50%;
}
.about-1 p{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}
.about-2{
    flex-basis: 50%;
    background-image: url(../img/about2.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
}
@media (max-width: 560px) {
    .about{
        flex-direction: column;
    }
    .about-1 p{
        padding: 50px 10%;
        white-space: normal;
        box-sizing: border-box;
    }
    .about-2{
        width: 100%;
        height: 250px;
        flex-basis: auto;
    }
}
/* gallery */
.gallery-1{
    display: flex;
}
.gallery-1-1{
    flex-basis: 33.333%;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1/2;
}
.gallery-1-1:nth-child(1){
    background-image: url(../img/gallery-1.jpg);
}
.gallery-1-1:nth-child(2){
    background-image: url(../img/gallery-2.jpg);
}
.gallery-1-1:nth-child(3){
    background-image: url(../img/gallery-3.jpg);
}
.gallery-2{
    display: flex;
}
.gallery-2-1{
    flex-basis: 20%;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1/1;
}
.gallery-2-1:nth-child(1){
    background-image: url(../img/gallery-4.jpg);
}
.gallery-2-1:nth-child(2){
    background-image: url(../img/gallery-5.jpg);
}
.gallery-2-1:nth-child(3){
    background-image: url(../img/gallery-6.jpg);
}
.gallery-2-1:nth-child(4){
    background-image: url(../img/gallery-7.jpg);
}
.gallery-2-1:nth-child(5){
    background-image: url(../img/gallery-8.jpg);
}
.gallery-1-sp{
    display: none;
}

@media (max-width: 560px) {
    #gallery{
        overflow: hidden;
    }
    .gallery-1-sp{
        display: flex;
        flex-wrap: nowrap;
        overflow: visible;
        justify-content: center;
    }
    .gallery-1-1-sp{
        background-size: cover;
        background-position: center;
        aspect-ratio: 1/2;
        min-width: 150px;
    }
    .gallery-1-1-sp:nth-child(1),.gallery-1-1-sp:nth-child(4){
        background-image: url(../img/gallery-1.jpg);
    }
    .gallery-1-1-sp:nth-child(2),.gallery-1-1-sp:nth-child(5){
        background-image: url(../img/gallery-2.jpg);
    }
    .gallery-1-1-sp:nth-child(3),.gallery-1-1-sp:nth-child(6){
        background-image: url(../img/gallery-3.jpg);
    }
    .gallery-2{
        flex-wrap: wrap;
    }
    .gallery-2-1:nth-child(1),
    .gallery-2-1:nth-child(2),
    .gallery-2-1:nth-child(3){
        flex-basis: 33.333%;
    }
    .gallery-2-1:nth-child(4),
    .gallery-2-1:nth-child(5){
        flex-basis: 50%;
    }
}

/* about2 */
#about2{
    position:relative;
}

.about2-2{
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about2-2-1{
    flex-basis: 25%;
    text-align: center;
}
.about2-2-1 img{
    width: 200px;
    height: auto;
}

.about2-2-2{
    flex-basis: 25%;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 300;
}
.logo-font{
    font-weight: 600;
    font-size: 26px;
}
@media (max-width: 560px) {
    .bg-gray{
        position: absolute;
        top:0;left:0;width:100%;height:100%;
        background-color: #000;
        opacity: 0.6;
    }
    .about2-2{
        flex-direction: column;
        align-items: start;
        padding: 40px 0 50px 10%;
        background-image: url(../img/about2-sp_2.jpg);
        background-size: cover;
        background-position: center;
    }
    .about2-2-1{
        font-size: 32px;
    }
    .about2-2-2{
        color: #D1CAB9;
    }
}
/* shop */
#shop{
    background-image: url(../img/shop.jpg);
    background-size: cover;
    background-position: center;
}
.shop{
    max-width: 400px;
    margin-left: auto;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    padding-top: 180px;
    padding-bottom: 180px;
}
.shop p{
    font-size: 14px;
}
@media (max-width: 560px) {
    #shop{
        display: none;
    }
}

/* insta */
#instagram{
    margin-top: 50px;
    margin-bottom: -12px;
}
#instagram h2{
    text-align:center;
    font-size: 20px;
    margin-bottom: 30px;
}
@media (max-width: 560px) {
    #instagram{
        margin-bottom: 0;
    }
}
/* footer */
footer{
    text-align: center;
    position: relative;
    background-color: #051117;
}
.footer{
    padding-top: 100px;
    padding-bottom: 100px;
}
.kobutu{
    font-size: 10px;
}
.copyright{
    font-size: 12px;
}
.contact{
    position: absolute;
    bottom: 20px;
    right: 3%;
    white-space: nowrap;
}
.contact img{
    height: 15px;
    width: auto;
    margin-left: 40px;
}
@media (max-width: 560px) {
    #contact{
        margin-bottom: 70px;
    }
    .footer{
        padding-bottom: 40px;
        padding-top: 60px;
    }
    .contact{
        position: relative;
        right: 0;
        bottom: 0;
        display: flex;
        gap: 10%;
        justify-content: center;
    }
    .contact img{
        margin-left: 0;
    }
    .copyright{
        margin-top: 40px;
        padding-bottom: 20px;
    }
}