@charset "UTF-8";

/*------------------------
    オフィシャルショップ
    ----------------------- */
.offical-sotre_header {
    margin-top: 4rem;
}

.offical-sotre_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem 5rem;
    margin-top: 3rem;
}

@media screen and (max-width: 767px) {
    .offical-sotre_items {
        margin-top: 2rem;
        grid-template-columns: 1fr;
        gap: 3rem 0rem;
    }

}

.offical-sotre_item {
    display: grid;
    grid-row: span 7;
    grid-template-rows: subgrid;
    row-gap: 0;
    column-gap: 0;
}

.offical-sotre_item:nth-of-type(n+3) {
    margin-top: 4rem;
}

@media screen and (max-width: 767px) {
    .offical-sotre_item {
        display: block;
    }

    .offical-sotre_item:nth-of-type(n+3) {
        margin-top: 0rem;
    }
}

.offical-sotre_bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #E8E8E8;
    font-size: 1.4rem;
    color: #838383;
}

@media screen and (max-width: 767px) {
    .offical-sotre_bottom {
        font-size: 1.2rem;
    }
}


/* ----------
    取扱店
    ----------- */
.shop-list-sotre {
    margin-top: 12rem;
}

@media screen and (max-width: 767px) {
    .shop-list-sotre {
        margin-top: 10rem;
    }
}

.shop-list-sotre_anchors {
    padding: 3rem 5rem;
    background-color: #F0F0F0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

@media screen and (max-width: 767px) {
    .shop-list-sotre_anchors {
        gap: 1.5rem;
        padding: 2rem;
        grid-template-columns: 1fr;
    }
}

.shop-list-sotre_anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    min-height: 4rem;
    padding: .5rem 0;
}

@media screen and (max-width: 767px) {
    .shop-list-sotre_anchor {
        font-size: 1.6rem;
    }
}

.shop-list-sotre_anchor::after {
    content: "";
    display: inline-block;
    width: .6rem;
    height: .6rem;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
    margin-left: 1.1rem;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .shop-list-sotre_anchor::after {
        margin-left: 1.2rem;
        width: 1rem;
        height: 1rem;
        transform: rotate(45deg) translateY(-0.4rem);
        border-right: 2px solid #707070;
        border-bottom: 2px solid #707070;
    }
}

.shop-list-sotre_header {
    margin-top: 4rem;
}

.shop-list_blocks {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
}

@media screen and (max-width: 767px) {
    .shop-list_blocks{
        margin-top: 2rem;
    }
}
.shop-list_block:has(.shop-list_items:empty) {
    display: none;
}

.shop-list_title {
    padding: 0.62rem 0 0.7rem;
    text-align: center;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    font-size: 2.2rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .shop-list_title {
        font-size: 2rem;
        padding: .5rem 0rem .7rem;
    }
}

.shop-list_items {
    margin-top: 4rem;
}

@media screen and (max-width: 767px) {
    .shop-list_items {
        margin-top: 2.1rem;
    }
}

.shop-list_item+.shop-list_item {
    margin-top: 4rem;
}


.shop-list_block_subtitle {
    font-size: 1.8rem;
    padding-left: 1.4rem;
    position: relative;
    font-weight: 600;
}

.shop-list_block_subtitle::before {
    content: "";
    width: .5rem;
    height: 2.6rem;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (max-width: 767px) {
    .shop-list_block_subtitle {
        font-size: 1.6rem;
        padding-left: 1rem;
    }

    .shop-list_block_subtitle::before {
        height: 2.4rem;
    }
}

.shop-list_block_subitems {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0rem 2rem;
    margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .shop-list_block_subitems {
        grid-template-columns: 1fr;
        gap: 3rem 0;
    }
}

.shop-list_block_subitem {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    row-gap: 0;
    column-gap: 0;
}

@media screen and (max-width: 767px) {
    .shop-list_block_subitem {
        display: block;
    }
}

.shop-list_block_subitem:nth-of-type(n+5) {
    margin-top: 2rem;
}

.shop-list_block_bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #E8E8E8;
    font-size: 1.2rem;
    font-weight: 400;
    color: #838383;
}

.shop-list-sotre .card-block_btn {
    width: 15rem;
    min-height: 3rem;
    font-size: 1.4rem;
}

.shop-list-sotre .card-block_btn::before {
    width: 2rem;
    height: 2rem;
}

.card-block_tel a {
    pointer-events: none;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .card-block_tel a {
        pointer-events: all;
    }
}