@charset "utf-8";

@font-face {
    font-family: "Klee One";
    src: url("../external/KleeOne-Regular.woff2") format("woff2");
    font-display: swap;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Klee One", sans-serif;
}

#st_mn_content {
    padding: 0;
}

.contact-page {
    width: 100%;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(99, 102, 241, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(245, 158, 11, 0.14),
            transparent 28%
        ),
        linear-gradient(135deg, #f7f8ff 0%, #fffaf3 100%);
}

.contact-page::before,
.contact-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.contact-page::before {
    width: 220px;
    height: 220px;
    top: 40px;
    right: -60px;
    background: rgba(99, 102, 241, 0.1);
}

.contact-page::after {
    width: 180px;
    height: 180px;
    bottom: 30px;
    left: -40px;
    background: rgba(245, 158, 11, 0.1);
}

.contact-page .uk-container {
    position: relative;
    z-index: 1;
}

/* 左カラム */
.contact-hero {
    padding-right: 12px;
}

.contact-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact-page .inquiry {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.2;
    font-weight: 800;
    color: #1f2937;
}

.contact-lead {
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.9;
    color: #5b6475;
}

.contact-info {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info .uk-list {
    margin: 0;
    color: #5b6475;
    line-height: 1.8;
}

/* フォームカード */
.contact-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ラベル */
.form-label {
    font-weight: 700;
    color: #1f2937;
}

.required-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
    vertical-align: middle;
}

/* 入力 */
.contact-input,
.contact-textarea {
    border-color: rgba(99, 102, 241, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.contact-input {
    height: 52px;
}

.contact-textarea {
    min-height: 220px;
    resize: vertical;
    line-height: 1.8;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    transform: translateY(-1px);
}

/* ラジオカード */
.choice-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 14px 16px;
    border: 1px solid rgba(99, 102, 241, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.choice-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.32);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.08);
}

.choice-card span {
    font-weight: 700;
    color: #1f2937;
}

.choice-card:has(input[type="radio"]:checked) {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1);
}

/* チェック群 */
.contact-checks {
    padding: 18px 20px;
    border: 1px dashed rgba(99, 102, 241, 0.2);
    border-radius: 18px;
    background: rgba(99, 102, 241, 0.04);
}

.contact-checks label {
    color: #5b6475;
    line-height: 1.7;
    cursor: pointer;
}

.contact-checks .uk-checkbox {
    margin-right: 8px;
}

/* ボタン */
.contact-button {
    min-width: 220px;
    padding: 0 32px;
    height: 52px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.3);
}

.contact-button:active {
    transform: translateY(0);
}

/* レスポンシブ */
@media (max-width: 1199px) {
    .contact-page {
        padding: 72px 0;
    }

    .contact-hero {
        padding-right: 0;
    }
}

@media (max-width: 639px) {
    .contact-page {
        padding: 56px 0;
    }

    .contact-card {
        border-radius: 22px;
    }

    .contact-page .inquiry {
        font-size: 1.9rem;
    }

    .contact-lead {
        font-size: 0.95rem;
    }

    .contact-button {
        width: 100%;
        min-width: auto;
    }
}
