/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

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

/* ヘッダー */
header {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.3em;
}

/* 動画セクション */
.hero-video {
    position: relative;
    width: 100%;
    height: 80vh; /* PCでの高さ */
    overflow: hidden;
    background: #000;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-text .date {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-text h1 {
/*
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
*/
    font-size: 2.5rem; /* 3remから少し小さく調整 */
    font-weight: 300;
    letter-spacing: 0.1em; /* 字間を少し詰めると1行に収まりやすくなります */
    white-space: nowrap;   /* 絶対に改行させない指定 */
    
    /* 画面幅に合わせて文字サイズを自動調整する設定（おすすめ） */
    font-size: clamp(1rem, 4vw, 2.5rem);
}

/* 画像ギャラリー */
.teaser-gallery {
    padding: 100px 0;
    background: #f9f9f9;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* お問い合わせフォーム */
.contact-section {
    padding: 100px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 0.9rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 15px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.2em;
}

.submit-btn:hover {
    background: #000;
}

/* フッター */
footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.7rem;
    border-top: 1px solid #eee;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
/*
    .hero-video {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
*/
    .hero-video {
        height: 60vh;
    }

    .hero-text h1 {
        /* スマホでも1行に収めるためにさらに調整 */
        font-size: 3.5vw; 
        letter-spacing: 0.05em;
    }

    .image-grid {
        grid-template-columns: 1fr; /* 1カラムにする */
        gap: 20px;
    }

    .teaser-gallery {
        padding: 60px 0;
    }

    .contact-section {
        padding: 60px 0;
    }
}


/* --- サンクスページ用スタイル --- */
.thanks-section {
    padding: 150px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}

.thanks-section p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.thanks-section .sub-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 50px;
}

.back-btn {
    display: inline-block;
    width: 240px;
    padding: 15px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: 0.3s;
}

.back-btn:hover {
    background: #000;
}

@media (max-width: 768px) {
    .thanks-section {
        padding: 100px 0;
    }
    .thanks-section h1 {
        font-size: 1.8rem;
    }
}
