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

/* === ヒーローセクション === */
.contact-hero {
    height: 60vh; min-height: 400px;
    background-image: url('../images/wasedaookuma.jpg'); /* 大隈講堂（共通イメージとして使用） */
    /* 追加: アニメーション設定 */
    background-size: cover;
    background-position: center top;
    animation: bgPan 20s ease-in-out infinite alternate;
}

/* === コンタクトカード === */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 60px 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

/* === メールセクション === */
.email-section {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.email-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-enji);
    margin-bottom: 8px;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.email-address {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: "Outfit", sans-serif;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-main);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.email-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.email-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
}

/* === お問い合わせタイプ（グリッド） === */
.contact-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.contact-type {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: #fcfcfc;
    border: 1px solid var(--border-light);
    transition: background-color 0.3s;
}

.contact-type:hover {
    background: #fff5f7; /* メインカラーの極薄ピンク */
}

.type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--main-enji);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.type-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.type-title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.type-desc {
    font-size: 0.9rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .contact-hero { height: 50vh; min-height: 300px; }
    
    .contact-card {
        padding: 40px 24px;
    }
    
    .email-address {
        font-size: 1.2rem;
    }
    
    .contact-types {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
