/* ========================================
   お問い合わせページ専用スタイル
   ======================================== */

/* コンタクトメインセクション */
.contact-main {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* 2カラムレイアウト */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* 左側：コンタクト情報 */
.contact-info {
    padding: 40px;
}

.info-header {
    margin-bottom: 40px;
}

.info-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--light);
}

.info-subtitle {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(33, 150, 243, 0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.method-label {
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.method-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--light);
}

.method-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
}

/* 右側：フォームエリア */
.contact-form-area {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-description {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* HubSpotフォーム埋め込みエリア */
.hubspot-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(33, 150, 243, 0.3);
    border-radius: 10px;
    padding: 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.placeholder-icon {
    font-size: 60px;
    opacity: 0.3;
    margin-bottom: 20px;
}

.placeholder-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.placeholder-instruction {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.placeholder-code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    font-family: monospace;
    font-size: 12px;
    color: var(--accent);
}

/* その他のコンタクト方法セクション */
.alternative-contact {
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.02);
}

.alternative-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alternative-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-option:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.option-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light);
}

.option-text {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* FAQ セクション */
.faq-section {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(33, 150, 243, 0.05);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q-mark {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px 70px;
    opacity: 0.8;
    line-height: 1.8;
    display: none;
}

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

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

    .contact-form-area {
        padding: 30px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 20px;
    }
}