/* ==========================================================================
   店舗基本情報セクション (foodwiki LLC Standard - 全文確定版)
   ========================================================================== */

/* --- セクションベース --- */
.footer-shop-info-part {
    padding: 80px 20px;
    background: #fbfaf5; /* 和風の鳥の子色 */
    border-top: 1px solid #dcd3b2;
}

/* --- 見出しデザイン --- */
.shop-info-title-area {
    text-align: center;
    margin-bottom: 50px;
}

.shop-info-title-area .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 0.15em;
    color: #2c2c2c;
}

.shop-info-title-area .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #8c7042;
}

/* --- コンテンツレイアウト --- */
.shop-info-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch; /* 左右の高さを同期 */
}

/* --- 左側：テキストエリア --- */
.shop-info-text {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.shop-name {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    line-height: 1.3;
    border-left: 4px solid #1a1a1a;
    padding-left: 20px;
}

.shop-address, 
.shop-tel, 
.shop-meta dl {
    font-style: normal;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
}

.tel-link {
    color: inherit;
    text-decoration: none;
    pointer-events: none; /* PCではリンク無効 */
    font-weight: 700;
}

.shop-meta dl {
    display: flex;
    border-bottom: 1px solid #e0d9c1;
    padding-bottom: 8px;
}

.shop-meta dt {
    width: 110px;
    font-weight: 700;
    color: #1a1a1a;
}

/* --- 決済アイコン --- */
.p-payment-icons {
    margin-top: auto;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-label {
    font-size: 0.8rem;
    width: 100%;
    color: #665e4d;
    margin-bottom: 8px;
    font-weight: 700;
}

.payment-icon {
    height: 24px;
    width: auto;
}

/* --- アクションボタン (PC 2カラム横並び最適化) --- */
.shop-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
}

/* PC版：電話予約ボタンを完全に除外 */
.sp-only {
    display: none !important;
}

/* ボタン各アイテム：PCでは50%幅で横並び、高さを揃える */
.shop-btn-item {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
    display: flex;
}

.shop-btn-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.btn-reserve { background-color: #a40000; color: #ffffff !important; }
.btn-map { background-color: #4d4d4d; color: #ffffff !important; }
.btn-tel { background-color: #d99216; color: #ffffff !important; }

.shop-btn-item a:hover { opacity: 0.8; }

/* --- 右側：マップエリア --- */
.shop-info-map {
    flex: 1;
    min-width: 320px;
    display: flex;
}

.map-container-full {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(140, 112, 66, 0.1);
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    vertical-align: middle;
}

/* --- スマホ表示 (767px以下) --- */
@media (max-width: 767px) {
    .footer-shop-info-part {
        padding: 50px 15px;
    }

    .shop-info-content {
        flex-direction: column;
        align-items: center;
    }

    .shop-name {
        font-size: 1.8rem;
        border-left-width: 3px;
    }

    .tel-link {
        pointer-events: auto;
        color: #a40000;
        text-decoration: underline;
    }

    /* スマホ版：3つのボタンをすべて縦に並べる */
    .shop-action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .sp-only {
        display: flex !important;
        order: -1; /* 電話予約を最上部に */
    }

    .shop-btn-item {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .shop-btn-item a {
        padding: 15px 10px;
    }

    .map-container-full {
        height: 300px;
        min-height: 300px;
    }
}

.footer-bottom{
	background-color:black;
	color:white;
	margin-top:0px;
}

#footer{
	margin:0 auto;
}