@charset "utf-8";

/* コンテナサイズ調整 */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}



/* 店舗情報テーブルセクション */
.shop-table-section {
    padding: 80px 0 40px;
    background-color: #f8f6e7;
}

.info-table {
    width: 100%;
    border-top: 1px solid #d3cfb3;
    border-bottom: 1px solid #d3cfb3;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.info-table th {
    width: 25%;
    padding: 30px 10px;
    border-bottom: 1px solid #d3cfb3;
    text-align: left;
    font-weight: bold;
    color: #3b2004;
    font-size: 15px;
    letter-spacing: 2px;
}

.info-table td {
    padding: 30px 10px;
    border-bottom: 1px solid #d3cfb3;
    color: #3b2004;
    line-height: 1.8;
    font-size: 14px;
    letter-spacing: 1px;
}

/* マップセクション */
.map-section {
    padding: 70px 0 100px;
    margin-top: 70px;
    padding-bottom: 180px;
    background-color: #f8f6e7;
}

.map-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* もし画像の下に隙間があるならリセット */
.image-box {
    margin-bottom: 0 !important;
    line-height: 0 !important;
}

.news-list-container, 
.info-table {
    border: none !important;
}

/* 店舗情報テーブルセクション */
.shop-table-section {
    padding-top: 60px !important;  /* パンくずとの距離を60pxに */
    padding-bottom: 50px !important;
    background-color: #f8f6e7;
}

/* マップセクション */
.map-section {
    padding-top: 80px !important;  /* 表との間隔 */
    padding-bottom: 140px !important;
    margin-top: 0 !important;      /* 余計なマージンをリセット */
    background-color: #f8f6e7;
}

/* --- スマホ版の余白調整 --- */
@media screen and (max-width: 767px) {
    /* 1. パンくず自体の下の隙間を殺す */
    .breadcrumb-area {
        margin-bottom: 40px !important;
        padding-bottom: 60px !important;
    }

    /* 2. テーブル上部の余白を削る（こちらがメイン） */
    .shop-table-section {
        padding-top: 0px !important; /* 最小限の余白にする */
        margin-top: -80px !important; /* さらに引き寄せたい場合はここをマイナスにする */
    } 
    
    .map-section {
        margin-top: -80px !important;    /* これで上の要素に近づきます */
        padding-top: 30px !important;    /* 内部の余白はプラス値を維持 */
        padding-bottom: 90px !important;
    }
}