body .is-layout-flex {
    justify-content: space-between;
}

@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        /* max-width: 420px; */
    }
}

.wp-block-columns--sunny {
    display: block;
}

.article .wp-block-heading--sunny {
    margin-top: 80px;
    width: 100%;
}


.article .wp-block-heading--sunny span::after {
    background: #008E90;
}


.shopitem__list {
    margin: 40px 0;
}

:where(body .is-layout-flow)> :first-child:first-child {
    margin-top: 0;
}

@media (min-width: 782px) {
    :where(body .is-layout-flow)> :first-child:first-child {
        margin-top: 40px;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .shopitem__list {
        width: 45%;
        max-width: 420px;
        margin: 20px 0;
    }
}


.shopitem {
    margin-bottom: 60px;
}

.shop__ttl {
    max-width: 200px;
    margin-bottom: 40px;
}

.shopitem .name {
    font-size: 1.1em;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shopitem p {
    font-weight: 500;
    line-height: 1.5;
    margin: 4px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    letter-spacing: .1em;
}

p.name {
    margin: 0;
}

.shopitem .place p,
.shopitem .tel p,
.shopitem .opening p {
    position: relative;
    padding-left: 2em;
    font-size: .9em;
}

.shopitem .place p::before,
.shopitem .tel p::before,
.shopitem .opening p::before {
    content: "";
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    left: 6px;
    top: 8%;
}

.shopitem .place p::before {
    top: 4%;
}

.shopitem .place p::before {
    background: url(../img/icon_place.svg) no-repeat;
    background-size: contain;
}

.shopitem .tel p::before {
    background: url(../img/icon_tel.svg) no-repeat;
    background-size: contain;
}

.shopitem .opening p::before {
    background: url(../img/icon_opening.svg) no-repeat;
    background-size: contain;
}

.shopitem .place span.small {
    /* font-size: .9em; */
}

.shopitem .tel a {
    text-decoration: none;
    color: #000;
    pointer-events: none;
}

@media screen and (max-width: 480px) {
    .shopitem .tel a {
        pointer-events: auto;
    }
}


/* スライドバナー */
.slide {
    margin-bottom: 60px;
    padding: 40px 0;
    background: #E5E5E5;
}

.bannerslide {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 95%;
    margin: 0 auto;
    max-width: 1600px;
    padding-left: 0;
}

.bannerslide img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.bannerslide .slick-slide {
    margin: 0 10px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
    padding-left: 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 20%;
    max-width: 80px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 100%;
    height: 8px;
    display: block;
    background: #898989;
    cursor: pointer;
    border: none;
}

.slick-dots .slick-active button {
    background: #008E90;
}

@media screen and (max-width: 834px) {
    .slick-dots {
        display: block !important;
    }

    .slick-dots button {
        height: 4px;
    }
}



/*緊急告知バナー*/

.slide.slide_attention {
    padding: 20px 0;
}

.slide.slide_attention ul {
    margin: auto;
    padding: 0;
}

/* 各店舗ボタン */
.shopbtn {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.shopbtn .btnitem {
    width: 45%;
    margin: 0 8px;
}

.shopbtn .btnitem a {
    position: relative;
    display: block;
    width: 100%;
    padding: 6px 0;
    background: #008E90;
    border: 1px solid #008E90;
    border-radius: 40px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: .9em;
}

.shopbtn .btnitem a::after {
    content: "";
    position: absolute;
    background: url("../img/arrow.svg") no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    right: 6%;
    top: 34%;
    transition: all .3s;
}

.shopbtn .btnitem a:hover::after {
    right: 4%;
}

.shopbtn .btnitem--chirashi a {
    background: #fff;
    color: #000;
}

.shopbtn .btnitem--chirashi a::after {
    background: url("../img/arrow_black.svg") no-repeat;
    background-position: center;
}