/* === 基本設定 === */
* {
    box-sizing: border-box;
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium",
        "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
        "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
        "メイリオ", Meiryo, sans-serif;
    line-height: 1.8;
}

body {
    background-color: #ffffff;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

a {
    color: #333333;
    text-decoration: none;
}

@media (min-width: 769px) {
    a:hover {
        opacity: 0.6;
    }
}

p {
    margin: 0 0 1.2em;
}

/* === ロゴ === */
.site-header-logo {
    margin-bottom: 40px;
    text-align: center;
}

.site-header-logo img {
    display: inline-block;
    width: auto;
    height: 64px;
}

@media (max-width: 768px) {
    .site-header-logo img {
        height: 48px;
    }
}

/* === レイアウト === */
.page-wrapper {
    margin: 0 auto;
    padding: 48px 4% 80px;
    max-width: 960px;
}

.content-area {
    margin: 0 auto;
    max-width: 600px;
}

/* === タイトル === */
.entry-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 1.25rem;
    }
}

/* === メイン画像 === */
.main-image {
    line-height: 0;
    margin: 0 0 32px;
}

.main-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* === 本文 === */
.entry-body {
    color: #333333;
    font-size: 1rem;
    line-height: 2;
}

.entry-body p {
    margin: 0 0 1.4em;
}

.entry-alert {
    background-color: #c50000;
    border-radius: 4px;
    color: white;
    display: block;
    padding: 0.4em 1em;
    text-align: center;
}

/* === お問い合わせボックス（index.html） === */
.contact-box {
    background-color: #f5f5f5;
    border-radius: 12px;
    margin-top: 32px;
    padding: 28px 32px;
    text-align: center;
}

.contact-box p {
    font-size: 1rem;
    margin: 0 0 0.4em;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box-title {
    font-size: 1.05rem !important;
    margin-bottom: 16px !important;
}

.contact-box-note {
    color: #666666;
    font-size: 0.875rem !important;
    margin-top: 8px !important;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 24px 20px;
    }
}

/* === フッター === */
.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 4%;
    text-align: center;
}

.site-footer-copy {
    color: #999999;
    font-size: 0.8rem;
    margin: 0;
}

/* === セクション見出し（inquiry.html） === */
.section-heading {
    border-bottom: 2px solid #e5e5e5;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    margin: 2em 0 0.8em;
    padding-bottom: 0.4em;
}

/* === 日程ボックス（inquiry.html） === */
.info-box {
    border-radius: 8px;
    margin: 0.8em 0 1.4em;
    padding: 20px 24px;
}

.info-box p {
    margin: 0 0 0.8em;
    text-align: center;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box--yellow {
    background-color: #fff8e1;
    border-left: 4px solid #f5c400;
}

/* === Q&A（inquiry.html） === */
.qa-section-heading {
    background-color: #004c78;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    margin: 2em 0 1em;
    padding: 12px 16px;
    text-align: center;
}

.qa-block {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.4em;
    padding-bottom: 1.4em;
}

.qa-block:last-of-type {
    border-bottom: none;
}

.qa-question {
    color: #c59400;
    margin-bottom: 0.4em !important;
}

/* === テキストユーティリティ === */
.text-center {
    text-align: center;
}

/* === お問い合わせボタン（inquiry.html） === */
.btn-wrapper {
    margin: 2em 0 1em;
    text-align: center;
}

.btn-primary {
    background-color: #004c78;
    border-radius: 6px;
    color: #ffffff !important;
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 14px 28px;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .btn-primary {
        display: block;
        padding: 14px 16px;
        text-align: center;
    }
}
