/* ============================================================
   お問い合わせ LP風レスポンシブデザイン
   ============================================================ */

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #1a1a1a;
    background: #f7f6f3;
    -webkit-font-smoothing: antialiased;
}

main section { margin: 0 !important; font-size: 14px !important; }

.ct_container {
    margin: auto;
    padding: 0 20px;
    max-width: 700px;
}

@media screen and (min-width: 600px) { .ct_container { padding: 0 32px; } }

/* ============================================================
   ヘッダー
   ============================================================ */

.ct_header {
    padding: 100px 0 40px;
    background: #2c241e;
    text-align: center;
    margin: 0 !important;
}

@media screen and (min-width: 600px) { .ct_header { padding: 120px 0 48px; } }

.ct_header_label {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #c08b30;
    margin-bottom: 8px;
}

.ct_header_title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
}

.ct_header_title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #c08b30;
    margin: 16px auto 0;
}

@media screen and (min-width: 600px) { .ct_header_title { font-size: 36px; } }

.ct_header_desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    line-height: 1.7;
}

/* ============================================================
   メインセクション
   ============================================================ */

.ct_section {
    padding: 48px 0 64px;
    background: #f7f6f3;
    margin: 0 !important;
}

@media screen and (min-width: 600px) { .ct_section { padding: 64px 0 80px; } }

/* ============================================================
   電話カード
   ============================================================ */

.ct_tel_card {
    background: #2c241e;
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    margin-bottom: 40px;
}

@media screen and (min-width: 600px) { .ct_tel_card { padding: 44px 32px; } }

.ct_tel_label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.ct_tel_number {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4a24e, #c08b30);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(192, 139, 48, 0.3);
}

@media screen and (min-width: 600px) { .ct_tel_number { font-size: 28px; } }

.ct_tel_number:hover {
    background: linear-gradient(135deg, #e0b35e, #d49a3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 139, 48, 0.4);
}

.ct_tel_hours {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    letter-spacing: 0.04em;
}

/* ============================================================
   フォームカード
   ============================================================ */

.ct_form_label {
    font-size: 15px;
    font-weight: 700;
    color: #2c241e;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    text-align: center;
}

.ct_form_cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 600px) {
    .ct_form_cards { flex-direction: row; gap: 20px; }
}

.ct_form_card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid #e8e3da;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ct_form_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #c08b30;
}

.ct_form_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #f5f1eb;
    border-radius: 50%;
    color: #c08b30;
    margin-bottom: 16px;
}

.ct_form_card_title {
    font-size: 16px;
    font-weight: 700;
    color: #2c241e;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ct_form_card_desc {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin-bottom: 12px;
}

.ct_form_card_arrow {
    font-size: 18px;
    color: #c08b30;
    font-weight: 300;
    margin-top: auto;
    transition: transform 0.3s ease;
}

.ct_form_card:hover .ct_form_card_arrow {
    transform: translateX(4px);
}

/* ============================================================
   フッターCTA非表示
   ============================================================ */

.footer_cta { display: none !important; }
