@charset "utf-8";

/* ーーーーーーーーーーーーーーーーーーーーーーーーー

#shop-detail

ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.shop-detail ul li {
    display: flex;
    flex-direction: column;
    padding: 35px 20px;
    border-top: 1px solid #d9d9d9;
    gap: 15px;
}

.shop-detail ul li:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.shop-detail ul li span:first-child {
    font-size: 1.125em;
}

.shop-detail ul li span {
    letter-spacing: .05em;
    line-height: 1.7;
}

@media(min-width:600px) {
    .shop-detail .inner {
        max-width: 700px;
        margin: 0 auto;
    }

    .shop-detail ul li {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .shop-detail ul li span:last-child {
        width: 70%;
    }

    .shop-detail ul li span:first-child {
        width: 30%;
    }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーー

#calender

ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.calender.other {
    background-color: #333;
}

.calender.other .inner {
    max-width: 1000px;
    margin: 0 auto;
}

.calender.other .ja-title h2,
.calender.other .ja-title p {
    color: #fff;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーー

#map

ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.g-map {
    margin-top: 120px;
    margin-bottom: 120px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーー

#gallery

ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.gallery {
    margin: 120px 0 120px !important;
}

.gallery-slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.gallery-slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.gallery-slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
    margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
    margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


#access .wpsbc-container.wpsbc-calendar-1 {
    max-width: 380px !important;
    margin: 0 auto !important;
}