:root {
    --primary-color: #a67c52;
    --text-dark: #2c2420;
    --text-light: #6b625e;
    --bg-light: #fdfcf9;
    --border-color: #e2ddd4;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--text-dark); background-color: var(--bg-light); line-height: 1.8; }
h1, h2, h3, .logo { font-family: 'Shippori Mincho', serif; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 4%; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 25px 4%; background: var(--white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.logo a { text-decoration: none; font-size: 1.6rem; color: var(--text-dark); letter-spacing: 0.1em; }
nav ul { display: flex; list-style: none; gap: 24px; }
nav a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 700; transition: 0.3s; }
nav a:hover { color: var(--primary-color); }

/* Hero */
.hero-page { padding: 80px 4%; text-align: center; background: #f4f1eb; border-bottom: 1px solid var(--border-color); }
.hero-sub { font-family: 'Montserrat', sans-serif; letter-spacing: 0.4em; font-size: 0.85rem; color: var(--primary-color); text-transform: uppercase; margin-bottom: 15px; }

/* Sections */
.page-main { padding: 80px 0; }
.intro-text { text-align: center; max-width: 700px; margin: 0 auto 60px; color: var(--text-light); }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 40px; border: 1px solid var(--border-color); border-radius: 4px; transition: 0.3s; text-decoration: none; color: inherit; }
.card:hover { border-color: var(--primary-color); transform: translateY(-3px); }
.card h3 { color: var(--primary-color); margin-bottom: 15px; }

/* Table */
.price-table { width: 100%; border-collapse: collapse; margin-top: 30px; background: var(--white); }
.price-table th, .price-table td { padding: 20px; border-bottom: 1px solid var(--border-color); text-align: left; }
.price-table th { width: 30%; color: var(--primary-color); }

/* Footer */
footer { background: var(--text-dark); color: #d6cfc7; padding: 60px 4%; text-align: center; margin-top: 80px; }
.copyright { font-size: 0.7rem; opacity: 0.4; margin-top: 40px; }

/* Schedule Page Specific */
.live-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
    text-align: left;
}

.live-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 10px solid var(--text-dark); /* デフォルトの左線 */
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.live-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.live-photo {
    width: 200px;
    min-width: 200px;
    background: #eee;
}

.live-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.live-details {
    padding: 25px;
    flex-grow: 1;
}

.live-date {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    padding: 2px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border-radius: 2px;
    margin-bottom: 15px;
}

.live-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.live-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .live-card { flex-direction: column; }
    .live-photo { width: 100%; height: auto; }
}
