* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-page {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'BIZ UDPGothic', sans-serif;
    color: rgb(1, 29, 69);
    min-height: 100vh;
    background: #fff;
}

/* ヒーロー */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 24px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3e0;
    color: #bf6f00;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: orange;
}

.hero h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: rgb(1, 29, 69);
}

/* フォームエリア */
.form-wrap {
    max-width: 560px;
    margin: 48px auto 80px;
    padding: 0 24px;
}

.form-card {
    background: #fff;
    border: 0.5px solid rgba(1, 29, 69, 0.12);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 2px 24px rgba(1, 29, 69, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.field {
    margin-bottom: 20px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(1, 29, 69, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 0.5px solid rgba(1, 29, 69, 0.2);
    border-radius: 10px;
    color: rgb(1, 29, 69);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgb(1, 29, 69);
    box-shadow: 0 0 0 3px rgba(1, 29, 69, 0.08);
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23011d45' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(1, 29, 69, 0.25);
}

.divider {
    height: 0.5px;
    background: rgba(1, 29, 69, 0.08);
    margin: 24px 0;
}

/* プライバシー同意 */
.privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.privacy-check {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(1, 29, 69, 0.3);
    border-radius: 4px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    background: #fff;
    transition: all 0.15s;
    position: relative;
}

.privacy-check.checked {
    background: rgb(1, 29, 69);
    border-color: rgb(1, 29, 69);
}

.privacy-check.checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 5px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.privacy p {
    font-size: 12px;
    color: rgba(1, 29, 69, 0.5);
    line-height: 1.6;
}

.privacy a {
    color: rgb(1, 29, 69);
    font-weight: 600;
    text-decoration: none;
}

/* 送信ボタン */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgb(1, 29, 69);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background: orange;
}

.submit-btn:active {
    transform: scale(0.99);
}

/* 送信完了 */
.success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.success h2 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(1, 29, 69);
    margin-bottom: 8px;
}

.success p {
    font-size: 13px;
    color: rgba(1, 29, 69, 0.55);
}
