@charset "utf-8";
/* CSS Document */
/* =========================================
   拠点・店舗リスト（マップカード）
========================================= */

.map-section {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 0px 20px;
}

/* カードを並べるグリッド設定 */
.map-grid {
    display: grid;
    /* PCでは横に2つ並べる（3つにしたい場合は repeat(3, 1fr) に変更） */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; /* カード同士の間隔 */
}

/* 店舗カード本体 */
.map-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px); /* 軽く浮き上がる演出 */
}

/* 店舗名 */
.shop-name {
    font-size: 18px;
    font-weight: bold;
    color: #3182ce; /* アース様らしいブルー */
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Googleマップのレスポンシブ対応 */
.google-map {
    position: relative;
    width: 100%;
    padding-top: 60%; /* マップの縦横比調整 */
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* 店舗情報テキスト */
.shop-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
}

.shop-info p span {
    color: #3182ce;
    font-weight: bold;
    margin-right: 5px;
}

/* =========================================
   スマートフォン用レスポンシブ（1列にする）
========================================= */
@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr; /* 縦1列に */
        gap: 30px;
    }
    
    .map-card {
        padding: 20px;
    }
}

/* =========================================
   1店舗専用：中央揃えレイアウト
========================================= */
.map-single-wrap {
    display: flex;
    justify-content: center; /* 左右の中央に配置 */
    width: 100%;
}

/* 1店舗用カードのサイズ調整 */
.map-single-wrap .map-card {
    width: 100%;
    max-width: 800px; /* PCで見ても間延びしない、ちょうどいい幅に制限 */
}

/* スマホ用の微調整（必要に応じて） */
@media (max-width: 767px) {
    .map-single-wrap .map-card {
        max-width: 100%; /* スマホでは画面幅いっぱいまで広げる */
    }
}

/* =========================================
エリア選択ナビのデザイン
========================================= */
.area-nav {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.area-nav ul {
  display: inline-flex;
  list-style: none;
  gap: 20px;
}

.area-nav a {
  text-decoration: none;
  color: #1a365d; /* アースブランドカラー */
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
  padding: 5px 10px;
}

.area-nav a:hover {
  color: #3182ce;
  border-bottom: 2px solid #3182ce;
}

/* 県別見出しのデザイン */
.area-section {
  padding-top: 80px; /* アンカーリンクで飛んだ際の「余白」を確保 */
  margin-bottom: 40px;
}

.area-title {
  font-size: 28px;
  color: #1a365d;
  border-left: 6px solid #1a365d;
  padding-left: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.area-title span {
  font-size: 16px;
  color: #aaa;
  text-transform: uppercase;
  font-family: serif;
}

/* 区切り文字（｜）を入れたい場合 */
.area-nav li:not(:last-child)::after {
  content: "｜";
  margin-left: 20px;
  color: #ccc;
  font-weight: normal;
}

/* =========================================
   「店舗のご案内」とナビゲーションの隙間を詰める
========================================= */

/* 1. 見出しを囲んでいる箱（セクション）の下余白をゼロにする */
#sec2.secInner {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. 見出し自体の下余白を調整する */
h2.map-title {
    margin-bottom: 0px !important; /* ここで罫線からナビまでの距離を決めます（20px〜40pxあたりがおすすめです） */
}
/* =========================================
   店舗ごとのSNS・リンクエリア（整列設定）
========================================= */
.shop-sns {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0; 
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start; /* 左寄せ（1つだけでOKです） */
    align-items: stretch;        
}

/* =========================================
   すべてのボタンの「共通の形」
========================================= */
.shop-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* 中の文字とアイコンをド真ん中に */
    gap: 6px;
    padding: 8px 16px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    color: #475569;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 36px; /* 最低限の高さを保証してガタつきを防止 */
    box-sizing: border-box;
}

/* アイコンと絵文字のサイズを強制的に統一 */
.shop-sns a img,
.shop-sns a span {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   各ボタンの「ホバー時（マウスをのせた時）の色」
========================================= */

/* 1. Instagram（ピンク） */
.btn-instagram:hover {
    border-color: #E1306C; 
    color: #E1306C;
    background-color: #fffafb; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.15);
}

/* 2. UberEats（グリーン） */
.btn-ubereats:hover {
    border-color: #06C167; 
    color: #06C167;
    background-color: #f0fdf4; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 193, 103, 0.15);
}

/* 3. 公式オンラインショップ（オレンジ） */
.btn-onlineshop:hover {
    border-color: #f97316; 
    color: #f97316;
    background-color: #fff7ed; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
}

/* 4. 公式LINE（鮮やかなLINEグリーン） */
.btn-line:hover {
    border-color: #06C755; /* LINEの公式ブランドカラー */
    color: #06C755;
    background-color: #f0fdf4; /* ほんのり緑色の背景 */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.15); /* 緑色の薄い影 */
}
/* =========================================
   公式サイトボタン 2つ並びレイアウト
========================================= */
.flexBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
/* 2つ目のボタン：スクショ通りの配色（青枠・グレー背景・黒文字） */
.second-btn {
    background-color: #f2f2f2 !important; /* 薄いグレー背景 */
    color: #333333 !important;            /* ダークグレー文字 */
    border: 1px solid #3182ce !important; /* 枠線は1つ目と同じ青色 */
}
.second-btn svg {
    stroke: #333333 !important;           /* 矢印もダークグレーに */
}
@media (max-width: 767px) {
    .flexBtn {
        flex-direction: column;
        gap: 15px;
    }
}