@charset "UTF-8";

/* ==========================================================================
   CONTACT（お問い合わせ：最終コンバージョン）
   ========================================================================== */

.contact-container {
    padding-bottom: clamp(100px, 15vw, 160px);
}

/* お問い合わせ方法の親要素 */
.contact-container .p-contact-methods {
    display: flex;
    gap: clamp(30px, 5vw, 50px);
    justify-content: center;
    margin-top: clamp(60px, 10vw, 80px);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container .p-contact-method-item {
    flex: 1;
    max-width: 480px;
    text-align: center;
}

/* ボタンの基本設計（軍師の重厚感） */
.contact-container .c-btn {
    display: flex;
    flex-direction: column;
    /* アイコンと文字を縦に並べる場合 */
    align-items: center;
    justify-content: center;
    min-height: clamp(120px, 15vw, 180px);
    border-radius: 24px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-container .c-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ボタン内のテキスト調整 */
.contact-container .c-btn .c-btn__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-container .c-btn .btn-text {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    letter-spacing: 0.05em;
}

.contact-container .c-btn .btn-sub-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* LINE：ブランドカラー */
.contact-container .c-btn.-line {
    background: linear-gradient(135deg, #06C755 0%, #05b34c 100%);
}

/* メール：メインカラー */
.contact-container .c-btn.-mail {
    background: linear-gradient(135deg, var(--color-main) 0%, #254d6d 100%);
}

/* プライバシーポリシーのボックス（ゆとりを持たせる） */
.p-privacy-box {
    margin-top: 100px;
    background: #fff;
    border: 1px solid #eee;
    padding: clamp(40px, 6vw, 60px);
    border-radius: 30px;
}

.privacy-text {
    font-size: 15px;
    line-height: 2;
    color: #666;
}

.u-link-underline {
    color: var(--color-main);
    text-decoration: underline;
    font-weight: 700;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .contact-container .p-contact-methods {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-container .p-contact-method-item {
        max-width: 100%;
    }

    .contact-container .c-btn {
        min-height: 100px;
        padding: 20px;
    }
}
