@charset "UTF-8";

/* ===== ベース設定 ===== */
body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
    color: #333;
    line-height: 2;
    margin: 0;
    padding: 0;
    background-color: #faf8f5;
    word-break: break-word;
    font-size: 15px;
    letter-spacing: 0.03em;
}

h1,
h2,
h3,
.hero-title,
.photo-title {
    font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', sans-serif;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 背景カラー ===== */
.bg-white {
    background-color: #ffffff;
}

.bg-soft-orange {
    background-color: #fdf5ed;
}

.bg-soft-yellow {
    background-color: #fdfaed;
}

.bg-soft-pink {
    background-color: #fdf0f0;
}

/* ===== ヒーロー ===== */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 100, 80, 0.25);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.88);
    color: #333;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 88%;
}

.badge-ribbon {
    display: inline-block;
    background-color: #c46a4b;
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 8px 0 16px;
    color: #8b4513;
}

.hero-title .small-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.05em;
}

.hero-title .sub-title {
    font-size: 1rem;
    display: block;
    margin-top: 8px;
    color: #a0522d;
    font-weight: 500;
}

.hero-info p {
    font-size: 1rem;
    font-weight: 500;
    margin: 4px 0;
    color: #555;
}

/* ===== セクション共通 ===== */
.section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 32px;
    color: #8b4513;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '◇';
    display: block;
    color: #c9a87c;
    font-size: 0.8rem;
    margin-top: 8px;
    letter-spacing: 4px;
}

.text-center {
    text-align: center;
}

/* ===== メッセージボックス ===== */
.message-box {
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.message-box p {
    margin: 0 0 16px 0;
    font-size: 0.95rem;
}

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

.dashed-border {
    border: 1.5px dashed #c9a87c;
    background: #fffdf8;
}

/* ===== プロフィール ===== */
.profile-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.profile-card {
    background: #fff;
    flex: 1 1 280px;
    padding: 28px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    border-top: 3px solid #c9a87c;
}

.profile-img-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c9a87c;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 1.1rem;
}

.profile-card p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: #555;
    text-align: left;
}

.profile-card .role {
    font-size: 0.8rem;
    color: #a0522d;
    display: block;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== カードリスト ===== */
.card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.card {
    background: #fff;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.card-image-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.card h3 {
    color: #8b4513;
    font-size: 1rem;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
}

.highlight {
    color: #c0392b;
    font-weight: 700;
    background: #fdecea;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
}

/* ===== おすそ分けボックス ===== */
.share-box {
    background: #fdf8f0;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1.5px dashed #c9a87c;
}

.share-box h3 {
    color: #8b4513;
    margin-top: 0;
    font-size: 1.1rem;
}

.share-box p {
    font-size: 0.9rem;
    color: #555;
}

/* ===== 写真セクション ===== */
.image-section {
    padding: 48px 0;
    background-color: #fff;
}

.photo-title {
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.photo-frame {
    width: 100%;
    max-width: 560px;
    height: auto;
    border: 8px solid #fff;
    border-bottom: 32px solid #fff;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(-1.5deg);
}

/* ===== 開催概要テーブル ===== */
.info-table dl {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-wrap: wrap;
}

.info-table dt {
    width: 25%;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px dashed #d4c4a8;
    color: #8b4513;
    font-size: 0.9rem;
}

.info-table dd {
    width: 75%;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px dashed #d4c4a8;
    font-size: 0.9rem;
    color: #444;
}

.info-table dd:last-child,
.info-table dt:last-of-type {
    border-bottom: none;
}

.small-text {
    font-size: 0.8em;
    color: #999;
}

/* ===== CTA ===== */
.cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px 0 16px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
    z-index: 100;
    text-align: center;
    backdrop-filter: blur(8px);
}

.cta-text {
    margin: 0 0 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8b4513;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #c9a87c, #8b4513);
    color: #fff;
    text-decoration: none;
    padding: 14px 48px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.25);
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
}

/* ===== 概要セクション下部の余白（CTAに隠れない） ===== */
.section.bg-soft-pink {
    padding-bottom: 200px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .profile-card {
        flex: 1 1 100%;
    }

    .card-list {
        grid-template-columns: 1fr;
    }

    .info-table dt,
    .info-table dd {
        width: 100%;
        padding: 10px 0;
    }

    .info-table dt {
        border-bottom: none;
        padding-bottom: 0;
    }

    .btn-primary {
        width: 80%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section.bg-soft-pink {
        padding-bottom: 120px;
    }
}