/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-bottom: 2px solid #d4af37;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* 菱形文様 */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 0, 0, 0.05) 15px,
            rgba(139, 0, 0, 0.05) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(212, 175, 55, 0.03) 15px,
            rgba(212, 175, 55, 0.03) 16px
        );
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
    z-index: 1;
}

.site-title {
    font-size: 2rem;
    font-weight: 600;
    color: #8b0000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.site-title a {
    text-decoration: none;
    color: #8b0000;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #a00000;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #8b0000;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #d4af37);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* メインビジュアル */
.hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    margin-top: 80px;
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #8b0000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, #d4af37);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #8b0000;
    max-width: 400px;
    margin: 0 auto;
}

/* お問い合わせフォーム */
.contact-form {
    padding: 4rem 0;
    background: #fff;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
    font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Serif JP', serif;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #8b0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    background: linear-gradient(135deg, #8b0000 0%, #a00000 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Noto Serif JP', serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #8b0000 0%, #6b0000 100%);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form {
        gap: 1.5rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
