@charset "UTF-8";

/* ==========================================================================
   1. Reset & Base (基本設定)
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    min-width: 1200px;
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.4;
}

/* 共通幅の定義 */
.inner, .header-inner, .footer-inner, .wrapper {
    width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ==========================================================================
   2. Global Navigation / H1 (画面幅いっぱい)
   ========================================================================== */
.global-h1 {
    width: 100%;
    background-color: #3ec6f0;
    padding: 6px 0;
    text-align: center; /* テキスト中央寄せ */
}

.global-h1 .inner {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    display: block;
    width: 100%; /* inner幅いっぱいで中央 */
}

/* ==========================================================================
   3. Header Section
   ========================================================================== */
.site-header {
    padding-top: 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* --- 左：ロゴ --- */
.header-left {
    width: 320px;
}
.logo-sub {
    font-size: 12px;
    color: #999;
}
.logo-svg {
    width: 320px;
    height: auto;
    margin-top: 5px;
}
.header-catch {
    font-size: 19px;
    font-weight: bold;
    margin-top: 15px;
    line-height: 1.3;
}

/* --- 中央：連絡先・予約枠 --- */
.header-center {
    flex: 1;
    margin-left: 90px;
}
.tel-display {
    color: #3ec6f0;
    font-family: 'Arial Black', sans-serif;
    margin-top: -5px;
}
.tel-label { font-size: 26px; }
.tel-num { font-size: 46px; font-weight: bold; letter-spacing: 1px; }
.business-hours {
    font-size: 22px;
    color: #3ec6f0;
    font-weight: bold;
    margin-top: -10px;
}

.reservation-area {
    margin-top: 30px;
}
.res-sub {
    font-size: 10px;
    color: #333;
    font-weight: bold;
}
.res-title {
    font-size: 18px;
    color: #ff6dae; /* ピンク */
    font-weight: bold;
    margin-bottom: 5px;
}
.reservation-box {
    display: inline-block;
    border: 1px solid #ff99cc; /* ピンク枠 */
    padding: 8px 15px;
    text-align: left;
    background-color: #fff;
}
.res-list {
    font-size: 11px;
    line-height: 1.6;
}
.res-list li::before {
    content: "・";
}

/* --- 右：地図 --- */
.header-right {
    width: 255px;
}
.map-sub {
    font-size: 10px;
    color: #666;
    text-align: left;
    padding-left: 5px;
    margin-bottom: 2px;
    font-weight: bold;
}
.map-svg {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    padding: 1px;
}
.map-link-text {
    font-size: 18px;
    color: #ff0000; /* 赤字 */
    font-weight: bold;
    margin-top: 5px;
}
.map-desc {
    font-size: 11px;
    color: #333;
}

/* --- ニュースバー --- */
.news-ticker-bar {
    width: 1200px;
    margin: 20px auto 0;
    border: 1px solid #3ec6f0;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
}
.news-label {
    background-color: #3ec6f0;
    color: #fff;
    font-weight: bold;
    padding: 6px 20px;
    font-size: 16px;
}
.news-content {
    color: #3ec6f0;
    font-weight: bold;
    padding: 6px 15px;
    font-size: 14px;
}

/* ==========================================================================
   4. Footer Section
   ========================================================================== */
.site-footer {
    margin-top: 50px;
}
.footer-nav {
    text-align: center;
    font-size: 11px;
    padding: 15px 0;
    border-top: 1px solid #eee;
}
.footer-nav a {
    color: #666;
}
.footer-logo {
    text-align: center;
    padding: 20px 0;
}
.copyright-bar {
    background-color: #3ec6f0;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
}