/* style.css */

/* --- 基本設定 --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: #c00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 0.8em;
}

p {
    margin-bottom: 0.8em;
}

div.photo {
    text-align: center;
}
img {
    max-width: 100%;
}

.main_photo {
    width: 400px;
    max-width: 80%;
}

.highlight {
    color: #c00;
    font-size: 1.1em;
}

/* --- コンテナとセクション --- */
.site-header {
    text-align: center;
}

.site-logo {
    margin: 0;
}
.site-logo img {
    height: auto;
    margin: 5px 0;
}

.main-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 1.5em 0;
    border-bottom: 1px solid #eee;
}

/* --- トップの注意書き --- */
.attention-text {
    background-color: #c00;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 1.5em;
}

.attention-text a {
    color: #fff;
}

.contact-info {
    text-align: center;
    margin-bottom: 1.5em;
}

.contact-info h2 {
    font-size: 1.3em;
    margin-bottom: 0.4em;
}

.contact-details p {
    margin: 0.3em 0;
}

.phone {
    font-size: 1.3em;
    font-weight: 700;
}

.email {
    font-size: 1em;
}

.urgent-note {
    font-size: 0.8em;
    color: #c00;
    font-weight: bold;
    margin-top: 0.5em;
}

/* --- 予約状況 --- */
.schedule-list {
    text-align: center;
    font-size: 1em;
}

#teiki .schedule-list p {
    display: table;
    text-align: left;
    margin: 0 auto 1em;
}

/* --- ナビゲーション --- */
.anchor-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.anchor-nav li {
    margin-bottom: 1em;
}
.anchor-nav a {
    background-color: #eee;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    white-space: nowrap;
    color: #333;
}

/* --- 料金表 --- */
.price-table {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
    margin-top: 1em;
}

.price-table h3 {
    background-color: #f5f5f5;
    padding: 6px;
    margin-top: 0;
    margin-bottom: 0.8em;
    border-left: 4px solid #c00;
    font-size: 1.1em;
}

.price-group {
    margin-bottom: 15px;
}

.price-group ul {
    list-style: none;
    padding: 0;
}

.price-group li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.price-group li:last-child {
    border-bottom: none;
}

.price {
    font-weight: bold;
    color: #c00;
}

/* --- リスト（設備、キャンセルなど） --- */
.list-bullet {
    list-style: disc;
    padding-left: 20px;
    margin-top: 1em;
    margin-bottom: 1em;
}

.list-bullet li {
    margin-bottom: 0.5em; /* リスト項目の間隔を狭く */
}


/* --- フッター --- */
.site-footer {
    text-align: center;
    padding: 1.5em 0;
    border-top: 1px solid #eee;
}

.scroll-top {
    font-size: 0.8em;
    font-weight: bold;
    color: #333;
    display: inline-block;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* --- レスポンシブ対応 (PC/タブレット) --- */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .site-header {
        padding: 20px;
    }

    .site-logo img {
        margin: 10px 0;
    }

    .contact-info {
        margin-bottom: 2.5em;
    }

    .contact-info h2 {
        font-size: 1.8em;
    }

    .contact-details {
        font-size: 1.1em;
    }
    
    .section {
        padding: 2em 0;
    }

    h2 {
        font-size: 1.5em;
        margin-bottom: 1em;
    }

    .highlight {
        font-size: 1em;
    }

    .phone {
        font-size: 1.4em;
    }

    .email {
        font-size: 1.05em;
    }

    .urgent-note {
        font-size: 0.85em;
    }

    .reservation-status h2 {
        font-size: 1.3em;
    }

    .status-list li {
        font-size: 1.05em;
    }

    .anchor-nav ul {
        gap: 8px;
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .anchor-nav a {
        padding: 8px 12px;
        font-size: 0.95em;
    }

    .price-table {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* PCでのカラム数と幅を調整 */
        gap: 20px;
        padding: 20px;
    }
    
    .price-table h3 {
        font-size: 1.2em;
    }

    .price-group li {
        font-size: 1em;
    }

    .list-bullet {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }

    .list-bullet li {
        margin-bottom: 0.7em;
    }

    .scroll-top {
        font-size: 0.85em;
    }
}