/* =========================================
    Contact
========================================= */

.contact {
    padding: 60px 0;
}

/* ボックス */
.contact_box {
    background: #fff;

    border-radius: 8px;

    padding: 40px 24px;

    box-shadow: var(--shadow-sm);

    text-align: center;
}

/* 説明 */
.contact_text {
    font-size: 15px;
    line-height: 1.9;

    color: var(--text-sub);

    margin-bottom: 40px;
}

/* 各項目 */
.contact_item+.contact_item {
    margin-top: 40px;
}

/* ラベル */
.contact_label {
    font-size: 14px;
    font-weight: 700;

    color: var(--text-sub);

    margin-bottom: 12px;
}

/* メール */
.contact_mail {
    display: inline-block;

    font-size: 24px;
    font-weight: 800;

    color: var(--primary);
    text-decoration: none;

    transition: 0.3s;

    word-break: break-all;
}

.contact_mail:hover {
    opacity: 0.7;
}

/* 電話 */
.contact_tel {
    display: inline-block;

    font-size: 22px;
    font-weight: 700;

    color: var(--text-main);
    text-decoration: none;

    transition: 0.3s;
}

.contact_tel:hover {
    opacity: 0.7;
}

/* 補足 */
.contact_help {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.8;

    color: var(--text-sub);

    margin-top: 40px;
}

/* 備考 */
.contact_note {
    font-size: 14px;
    line-height: 1.8;

    color: var(--text-sub);

    margin-top: 20px;
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .contact_box {
        max-width: 900px;
        margin: 0 auto;
        
        padding: 64px 40px;
    }

    .contact_mail {
        font-size: 32px;
    }

    .contact_tel {
        font-size: 28px;
    }

}