/*
Theme Name: 19ban hole
Theme URI: https://smiles19th.com
Description: 19番hole専用WordPressテーマ
Author: 19番hole
Author URI: https://smiles19th.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 19banhole
*/

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.site-header {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid #FF4081;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: 0;
    color: #FFFFFF;
}

/* セクション */
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    border-bottom: 3px solid #FF4081;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.8rem;
}

h3 {
    color: #FFD700;
    margin: 20px 0;
    font-size: 1.5rem;
}

/* 価格リスト */
.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    background: linear-gradient(135deg, #292929 0%, #333333 100%);
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #FF4081;
}

/* メニューテーブル */
.menu-table {
    width: 100%;
    background-color: #2a2a2a;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.menu-table th,
.menu-table td {
    padding: 15px;
    border: 1px solid #444;
    text-align: left;
}

.menu-table th {
    background-color: #333;
    color: #FFD700;
}

.menu-table td:last-child {
    text-align: right;
    color: #FFD700;
    font-weight: bold;
}

/* ギャラリー */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-placeholder {
    background: #2a2a2a;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #888;
}

/* 地図 */
.map-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    height: 350px;
    width: 100%;
}

.access-info {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
}

/* フッター */
.site-footer {
    background-color: #1F1F1F;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 3px solid #FF4081;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    section {
        padding: 30px 15px;
    }
}
