/*
Theme Name: Custom Event Theme
Author: Production Partner
Version: 1.0
Description: イベント企画・運営用のオリジナルWordPressテーマ
*/

* {
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header.site-header {
    background: #111827;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 30px;
}

header.site-header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

footer.site-footer {
    text-align: center;
    padding: 20px;
    background: #e5e7eb;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #6b7280;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* タグ（ジャンル・エリア） */
.event-tags {
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 6px;
    color: #fff;
    font-weight: bold;
}

.tag-genre { background-color: #2563eb; }
.tag-area { background-color: #d97706; }

/* イベント概要ボックス */
.event-info-box {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #2563eb;
}

.event-info-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px 0;
    margin: 0;
}

.event-info-list dt {
    font-weight: bold;
    color: #4b5563;
}

.event-info-list dd {
    margin: 0;
}

/* 申し込みボタン */
.event-action {
    text-align: center;
    margin-top: 25px;
}

.btn-apply {
    display: inline-block;
    padding: 14px 32px;
    background: #ef4444;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.2s;
}

.btn-apply:hover {
    background: #dc2626;
}

/* アイキャッチ画像 */
.event-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}