@charset "UTF-8";


/* ====================
main
==================== */
.article__header {
    max-width: 100%;
    background-color: var(--background-gray);
}

.article__video {
    text-align: center;
}


.mainVideo {
    width: 100%;
    height: 300px;
    margin-left: 0;
    object-fit: cover;
    display: flex; 
    justify-content: center;
}

.mainTopics {
    width: 100%;
    padding-top: 85px;
    padding-bottom: 66px;
}

.mainTopicBtn {
    width: 100%;
    text-align: center;
}

.mainTopics__title {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
}

/* mainTopic__btn */
.mainTopics__btn {
    width: 200px;
    height: 38px;
    background-color: var(--point);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    box-sizing: border-box;
    padding: 7px 23px 9px 28px;
    margin: 30px auto 0;
    position: relative;
}

.mainTopics__btn::after {
    content: "";
    display: block;
    background-image: url(../images/stash_arrow-up-light.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: solid 1px #383C3C;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.mainTopics__btn:hover {
    opacity: 0.9;
    background-color: #446E72;
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}
/* ここまでmainTopic__btn */

.article__headerText {
    font-weight: 300;
    font-size: 1.5rem;
    text-align: left;
    padding: 0 45px 100px;
    margin: 0 auto;
}

.article__headerText p {
    margin-bottom: 1.5rem;
}



@media screen and (min-width:769px) {
    .article__header {
        width: 100%;
        padding: 75px 10% 0;
    }

    .article__header--videoArea {
        max-width: 1300px;
        display: flex;
        justify-content: space-between;
        padding: 0 5%;
        margin: 0 auto;
    }
    
    .article__video {
        width: 55%;
        aspect-ratio: 1.8;
        height: auto;
    }
    
    .mainVideo {
        width: 100%;
        height: auto;
    }
    .mainTopics {
        width: 40%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .mainTopics__title {
        font-size: 2.1rem;
        text-align: left;
        margin: 0 2% 0 18%;
    }

    .mainTopics__btn {
        width: 304px;
        height: 70px;
        font-size: 2.3rem;
        font-weight: 500;
        padding: 18px 63px 21px 49px;
        margin: 45px auto 0;
        position: relative;
    }

    .mainTopics__btn::after {
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
    }

    .article__headerText {
        width: 100%;
        margin-top: 97px;
        font-weight: 300;
        font-size: 2rem;
        text-align: center;
    }

    .article__headerText p {
        margin-bottom: 2rem;
}
}

/* ====================
Instagram
==================== */
.section__instagram {
    width: 100%;
}

.sectionTopic1 {
    font-family: "Noto Sans JP";
    color: var(--text-brown);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.instagram {
    background-color: #fff;
    display: block;
    text-align: center;
}

.sectionTopic1::before {
    position: absolute;
    content: "Instagram";
    font-family: "Antic Didone", serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.1);
    left: 30px;
    top: -100%;
    z-index: -10;
}

.instafeed {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; 
    justify-content: space-evenly;

    overflow: hidden;

}

.feed-card-inner {
    overflow: hidden;
}

.feed-card-inner img {
    object-fit: cover;
    width: 300px;
    height: 300px;
    margin-bottom: 15px;

    transition: 0.5s;
}

.feed-card-inner:hover img {
    transform: scale(1.02);
}


.instagramArea {
    width: 100%;
    height: auto;
    text-align: center;
    padding-left: 6%;
    padding-right: 6%;
}

.insta-item img {
    width: 300px;
    height: 300px;
    margin-top: 10px;
    margin-bottom: 15px;

    transition: 0.5s;
}

.insta-item:hover img {
    transform: scale(1.02);
}



/* instagram__btn */
.instagram__btn {
    width: 209px;
    height: 38px;
    background-color: var(--point);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    box-sizing: border-box;
    padding: 7px 23px 9px 25px;
    margin: 30px auto 50px;
    position: relative;
}

.instagram__btn::after {
    content: "";
    display: block;
    background-image: url(../images/stash_arrow-up-light.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: solid 1px #383C3C;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.instagramIcon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.instagram__btn:hover {
    opacity: 0.9;
    background-color: #446E72;
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}
/* ここまでinstagram__btn */

@media screen and (min-width:769px) {
    .sectionTopic1 {
        margin-top: 200px;
        margin-bottom: 32px;
        font-size: 3rem;
        font-weight: 300;
    }

    .instagramArea {
        width: 67.7%;
        padding: 0;
        margin: 0 auto;
    }

    .sectionTopic1::before {
    position: absolute;
    content: "Instagram";
    font-size: 11.5rem;
    left: 25%;
    transform: translateX(-50%);
    top: -170%;
    }

/* instagram__btn PC*/
.instagram__btn {
    width: 275px;
    height: 70px;
    font-size: 2.3rem;
    font-weight: 500;
    padding: 14px 35px 16px 27px;
    margin: 47px auto 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.instagram__btn a {
    display: flex;
    align-items: center;
}

.instagramIcon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.instagram__btn::after {
    width: 40px;
    height: 40px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
/* ここまでinstagram__btn PC*/
}

/* ====================
Line Up
==================== */
.section__lineUp {
    width: 100%;
    background-color: var(--background-gray);
    padding: 100px 2% 50px;
}

.sectionTopic2 {
    font-family: "Noto Sans JP";
    color: var(--text-brown);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sectionTopic2::before {
    position: absolute;
    content: "Line Up";
    font-family: "Antic Didone", serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.1);
    left: 30px;
    top: -10%;
    z-index: -10;
}
.lineUp1 a {
    width: 46%;
    display: block;
    position: relative;
}

.lineUp1 img {
    width: 100%;
    height: auto;
}

.lineUp2 a {
    width: 46%;
    display: block;
}

.lineUp2 img {
    width: 100%;
    height: auto;
}

.lineUp1 {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-around;
    align-items: baseline;
}

.tableware {
    position: relative;
}

.tableware:hover {
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}

.accessories:hover {
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}

.clothing:hover {
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}

.kids:hover {
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}

.lineUp2 {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-around;
    align-items: baseline;
}

.lineUpTitle1 {
    height: 24px;
    text-align: right;
    padding-right: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 1.3px;
    color: #fff;
    background-color:rgba(56, 60, 60, 0.8);
    position: absolute;
    width: 100%;
    bottom: 0;
    }

.accessories {
    position: relative;
    }

.lineUpTitle2 {
    height: 24px;
    text-align: right;
    padding-right: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 1.3px;
    color: #fff;
    background-color:rgba(56, 60, 60, 0.8);
    position: absolute;
    width: 100%;
    bottom: 0;
    }

.clothing {
    position: relative;
}

.lineUpTitle3 {
    height: 24px;
    text-align: right;
    padding-right: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 1.3px;
    color: #fff;
    background-color:rgba(56, 60, 60, 0.8);
    position: absolute;
    width: 100%;
    bottom: 0;
    }

.kids {
    position: relative;
}

.lineUpTitle4 {
    height: 24px;
    text-align: right;
    padding-right: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 1.3px;
    color: #fff;
    background-color:rgba(56, 60, 60, 0.8);
    position: absolute;
    width: 100%;
    bottom: 0;
    }

@media screen and (min-width: 769px) {
    .section__lineUp  {
        padding: 200px 0 80px;
    }

    .sectionTopic2 {
        margin-bottom: 32px;
        font-size: 3rem;
    }

    .br__sp {
        display: none;
    }

    .sectionTopic2::before {
        position: absolute;
        content: "Line Up";
        font-size: 11.5rem;
        left: 25%;
        transform: translateX(-50%);
        top: -170%;
    }

    .lineUp1 a {
        width: 27%;
        display: block;
        position: relative;
    }

    .lineUp1 {
        gap: 50px;
        margin-bottom: 50px;
        justify-content: center;
    }

    .lineUp2 a {
        width: 27%;
        display: block;
        position: relative;
    }

    .lineUp2 {
        gap: 50px;
        justify-content: center;
        margin-bottom: 80px;
    }

    /* Line Up__btn PC*/
    .shopBtn {
        width: 260px;
        height: 70px;
        font-size: 2.3rem;
        font-weight: 500;
        padding: 18px 45px 18px 39px;
        margin: 47px auto 0;
        position: relative;
        display: flex;
        align-items: center;
    }

    .shopBtn a {
        display: flex;
        align-items: center;
    }

    .instagramIcon {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .shopBtn::after {
        width: 40px;
        height: 40px;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
    }
/* ここまでinstagram__btn PC*/

    .lineUpTitle1 {
        height: 37px;
        font-size: 2.5rem;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .lineUpTitle2 {
        height: 37px;
        font-size: 2.5rem;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .lineUpTitle3 {
        height: 37px;
        font-size: 2.5rem;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .lineUpTitle4 {
        height: 37px;
        font-size: 2.5rem;
        letter-spacing: 2px;
        font-weight: 600;
    }


}

/* ====================
Access
==================== */
.sectionTopic3 {
    font-family: "Noto Sans JP";
    color: var(--text-brown);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sectionTopic3::before {
    position: absolute;
    content: "Access";
    font-family: "Antic Didone", serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.1);
    left: 30px;
    top: -100%;
    z-index: -10;
}

.section__access {
    width: 100%;
    text-align: center;
}

.access {
    width: 100%;
    font-size: 1.9rem;
    font-weight: 600;
    font-family: "Open Sans";
    color: var(--text-brown);
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.accessContents img {
    width: 80%;
    height: auto;
    border: solid 2px var(--point);
    margin: 0 auto 8px;
}

.map {
    width: 80%;
    height: auto;
    border: solid 1px var(--point);
    margin-bottom: 8px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    position: relative;
}

.map iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
}
.shopAddress {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-brown);
    text-align: center;
    margin-top: 8px;
}

.tel {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-brown);
    text-align: center;
}

.open_close {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-brown);
    text-align: center;
}

@media screen and (min-width: 769px) {
    .sectionTopic3 {
        margin-top:200px;
        margin-bottom: 32px;
        font-size: 3rem;
    }

    .sectionTopic3::before {
        position: absolute;
        content: "Access";
        font-size: 11.5rem;
        left: 25%;
        transform: translateX(-50%);
        top: -170%;
    }

    .section__access {
        width: 100%;
    }
    .access {
        font-family: Open Sans;
        font-size: 3.2rem;
        margin-top: 300px;
        font-weight: 400;
    }

    .accessContents {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .accessContents img {
        width: 30%;
        margin: 0;
    }

    .map {
        width: 30%;
        margin: 0;
    }

    .map iframe {
        width: 100%;
    }

    .shopAddress {
        display: flex;
        gap: 10px;
        font-size: 1.3rem;
        text-align: right;
    }

    .aboutShop p {
        font-size: 1.3rem;
        text-align: left;
    }

    .aboutShop {
        margin-left: 55%;
    }
}
