/* ==========================================
   Contact Page Styles
========================================== */

/* FVセクション */
.contact-fv {
    background: linear-gradient(135deg, rgba(11, 11, 13, 0.9), rgba(198, 161, 91, 0.3)),
                url('../images/contact-bg.jpg') center/cover;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
}

.contact-fv-content h1 {
    font-size: 48px;
    color: #F2F2F2;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-fv-content .subtitle {
    font-size: 18px;
    color: #C6A15B;
}

/* コンテナ */
.contact-section {
    background-color: #0B0B0D;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* イントロ */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 36px;
    color: #C6A15B;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
}

/* コンテンツグリッド */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* フォーム */
.contact-form-wrapper {
    background: #141418;
    border: 2px solid #C6A15B;
    border-radius: 8px;
    padding: 40px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    background: #0B0B0D;
    border: 1px solid #333;
    border-radius: 4px;
    color: #F2F2F2;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #C6A15B;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form label {
    display: block;
    color: #F2F2F2;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="submit"] {
    background-color: #C6A15B;
    color: #0B0B0D;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #d4b870;
}

/* サイドバー情報 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #141418;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
}

.contact-info-card h3 {
    font-size: 18px;
    color: #C6A15B;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-item {
    color: #F2F2F2;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-item .icon {
    font-size: 20px;
    margin-right: 8px;
}

.contact-info-item a {
    color: #C6A15B;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.btn-line {
    display: inline-block;
    background-color: #06C755;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
}

.btn-line:hover {
    background-color: #05b04d;
}

/* 体験の流れ */
.contact-flow {
    margin-bottom: 80px;
}

.contact-flow h2 {
    font-size: 32px;
    color: #C6A15B;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flow-item {
    background: #141418;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-10px);
    border-color: #C6A15B;
}

.flow-number {
    font-size: 48px;
    color: #C6A15B;
    font-weight: 700;
    margin-bottom: 20px;
}

.flow-item h3 {
    font-size: 18px;
    color: #F2F2F2;
    margin-bottom: 15px;
    font-weight: 600;
}

.flow-item p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* よくある質問 */
.contact-faq h2 {
    font-size: 32px;
    color: #C6A15B;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #141418;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: #C6A15B;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: #F2F2F2;
    line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-fv-content h1 {
        font-size: 32px;
    }

    .contact-intro h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }

    .contact-flow h2,
    .contact-faq h2 {
        font-size: 24px;
    }
}
/* フォーム成功メッセージ */
.form-success {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.2), rgba(6, 199, 85, 0.1));
    border: 2px solid #06C755;
    color: #06C755;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.form-success h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.form-success p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* フォームエラー */
.form-error {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1));
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error p {
    margin: 0;
    font-size: 14px;
}

/* フォームグループ */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: #F2F2F2;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form .required {
    color: #ff6b6b;
    margin-left: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #0B0B0D;
    border: 1px solid #333;
    border-radius: 4px;
    color: #F2F2F2;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C6A15B;
    background: #1a1a1f;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #C6A15B;
    color: #0B0B0D;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d4b870;
}
