@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;
    align-items: center;
    height: 32px; /* 高さをカッチリ固定 */
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
}

.news-label {
    background-color: #3ec6f0;
    color: #fff;
    font-weight: bold;
    padding: 0 15px;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center; /* NEWSの文字を上下中央に */
    flex-shrink: 0; /* ラベルが潰れるのを防ぐ */
}

.ticker-window {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-scroll {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; 
    animation: ticker-move 20s linear infinite;
}

.news-content {
    color: #3ec6f0 !important;
    font-weight: bold;
    padding: 0 40px; /* テキスト同士の隙間 */
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    line-height: 32px; /* バーの高さに合わせる */
}

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

/* ==========================================================================
   4. Footer Section (追加・修正)
   ========================================================================== */
   .site-footer {
    width: 100%;
    background-color: #fff;
    padding-top: 40px; /* 上に余白 */
    clear: both; /* 回り込み解除 */
}

.footer-inner {
    width: 1200px;
    margin: 0 auto;
    text-align: center; /* 中身を中央寄せ */
}

.footer-nav {
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
    line-height: 2; /* メニューが増えたので行間を確保 */
}

.footer-nav a {
    color: #0066cc;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin: 20px 0 30px;
}

.footer-logo img {
    width: 300px; /* ロゴのサイズを調整 */
    height: auto;
}

/* 一番下の黒いバー */
.copyright-bar {
    width: 100%;
    background-color: #333; /* 黒背景 */
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 10px 0;
    margin-top: 0;
}

.side-left {
    width: 255px; /* サイドバー全体の幅を固定 */
    float: left;  /* または flex で配置 */
}

.side-banner img, 
.side-section img {
    width: 100%;  /* 親要素の幅（255px）に合わせて自動リサイズ */
    height: auto;
}