@charset "utf-8";

main {
    border-top: none;
}

h2.title {
    color: var(--white);
    border-color: var(--white);
}

.shop-content {
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: var(--white);
}

section.shop-content p {
    line-height: 2rem;
}

.shop-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-details .top {
    flex-grow: 0;
    display: flex;
    justify-content: space-between;
}

.shop-details .top .shop-name {
    width: 100%;
}

.shop-details .top .shop-name h3 {
    color: var(--cream);
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
}

.shop-details .top .shop-category {
    width: 69%;
    padding-left: 0.5rem;
    font-size: 0.97rem;
    font-family: 'IBM Plex Sans JP', sans-serif;
}

.shop-details .top .shop-category p {
    border-top: 1px solid var(--white);
    padding-top: 3px;
}

.shop-details .top .shop-category p:last-child {
    border-bottom: 1px solid var(--white);
}

.shop-details .middle {
    padding-top: 50px;
    flex-grow: 2;
    font-family: 'IBM Plex Sans JP', sans-serif;
}

.shop-details .middle h4.intro {
    padding-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: bold;
}

.shop-details .middle p {
    font-weight: normal;
    padding-bottom: 60px;
}

.shop-details .bottom {
    flex-grow: 0;
    border-top: 1px solid var(--white);
}

.shop-details .bottom p {
    padding-top: 3px;
    padding-bottom: 7px;
    font-family: 'IBM Plex Sans JP', sans-serif;
}
.shop-details .bottom .shop-sns{
    display: flex;
}

.shop-details .bottom .shop-sns img {
    display: inline-block;
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.shop-content figure {
    width: 80%;
    margin: 0;
}

.shop-content figure img {
    width: 100%;
}

/*====================================================================
　SP時
====================================================================*/
@media only screen and (max-width: 767px) {

    .shop-content,
    .shop-details .top {
        flex-direction: column;
    }
    .shop-content {
        padding: 10px 0 20px;
    }

    section.shop-content p {
        line-height: 3rem;
        font-size: 1.3rem;
    }
    .shop-details .top .shop-name h3 {
        font-size: 2rem;
    }
    .shop-details .top .shop-name p{
        line-height: 1.8;
        padding-bottom: 0.5rem;
    }
    .shop-details .top .shop-category {
        padding-left: unset;
        width: 100%;
        font-size: 1rem;
    }
    .shop-details .top figure{
        max-width: 60%;
        padding-top: 20px;
        margin: auto;
    }
    .shop-details .middle {
        padding-top: 20px;
    }
    .shop-details .middle h4.intro {
        padding-bottom: 1rem;
        font-size: 1.5rem;
    }
    .shop-details .middle p {
        font-size: 1.3rem;
        line-height: 2.2rem;
        padding-bottom: 20px;
    }
    .shop-details .bottom p {
        font-size: 1.3rem;
        padding-bottom: 15px;
    }
    .shop-details .bottom .shop-sns img {
        width: 9vw;
    }
}