/* =========================================
   お問い合わせページ用スタイル
   ========================================= */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 15px 80px;
}

/* ページタイトル */
.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(43, 234, 255, 0.4);
    letter-spacing: 0.05em;
}

/* コンテンツ全体を囲むパネル */
.contact-content-wrapper {
    background-color: #12141c;
    border: 1px solid #2a2d3d;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

/* 説明文 */
.contact-description {
    color: #efeff1;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* メールアドレスを囲むボックス */
.email-box {
    background-color: #181a25;
    border: 1px solid #33384a;
    border-radius: 8px;
    padding: 35px 20px;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

/* ボックスにマウスを乗せた時のネオンエフェクト */
.email-box:hover {
    border-color: #2beaff;
    background-color: #131b22;
    box-shadow: 0 0 15px rgba(43, 234, 255, 0.15);
}

.email-label {
    display: block;
    color: #8f8f9a;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

/* メールアドレス（リンク） */
.email-address {
    display: inline-block;
    color: #2beaff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    word-break: break-all; /* スマホなどで長くなった場合に折り返す */
    transition: all 0.2s ease;
}

/* リンクホバー時の発光エフェクト */
.email-address:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(43, 234, 255, 0.8);
}

/* 注意書きエリア（左寄せで読みやすく） */
.contact-note-wrapper {
    display: inline-block;
    text-align: left;
}

.contact-note {
    color: #8f8f9a;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 768px) {
    .contact-content-wrapper {
        padding: 30px 20px;
    }

    .email-address {
        font-size: 1.25rem;
    }
}
