@charset "UTF-8";
#wpadminbar { display:none; }


.form-privacy_click > * {
    margin: 0 0 16px;
}
.form-privacy_click > * + * {
    margin-left: 0 !important;
}
.form-privacy_click label::after {
    display: none;
}
.form-privacy_click label > span::after {
    content: "";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    background-color: #007bba;
    opacity: 0;
    height: 12px;
    width: 12px;
    left: 9px;
}
.form-privacy_click label > input[type="radio"] + span::after {
    border-radius: 50%;
}
.form-privacy_click label > input:checked + span::after {
    opacity: 1;
}

@media (min-width: 768px) {

.form-privacy_click > * {
    width: 50%;
}
.form-privacy_click label {
    width: auto;
}

}




/*　個人情報保護方針に同意する　*/
.form-privacy_box {}
.form-privacy_box p + p {
    margin-top: 1em;
}
.form-privacy_check label::after {
    display: none;
}
.form-privacy_check label > span::after {
    content: "";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    background-color: #007bba;
    opacity: 0;
    height: 12px;
    width: 12px;
    left: 9px;
}
.form-privacy_check label > input:checked + span::after {
    opacity: 1;
}


/* エラー画面 */
.mw_wp_form_error dl div dd .error {
    background-color: #ff3f68;
    color: white;
    font-size: 14px;
    padding: 5px 15px;
    margin-top: 8px;
    border-radius: 8px;
    display: block;
    position: relative;
    text-align: center;
}
.mw_wp_form_error dl div dd .error:before {
    content:"";
    background-color: #ff3f68;
    width: 1em;
    height: 1em;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: -10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left:50%;
}
.mw_wp_form_error .form-privacy_check {
    position: relative;
    display:-webkit-flex;
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
.mw_wp_form_error .form-privacy_check .horizontal-item {
    border: 3px solid #ff3f68;
    padding: 10px 15px;
}
.mw_wp_form_error .form-privacy_check .error {
    background-color: #ff3f68;
    color: white;
    font-size: 14px;
    padding: 5px 15px;
    margin-top: 8px;
    border-radius: 8px;
    display: block;
    position: relative;
    text-align: center;
}
.mw_wp_form_error .form-privacy_check .error:before {
    content:"";
    background-color: #ff3f68;
    width: 1em;
    height: 1em;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: -10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left:50%;
}



/* 完了画面 */
.form-title.type02 {
    margin-bottom: 30px;
}


/* =============================
   トップページ MV V2 スタイル
================================ */
:root {
    --mv-text: #1a2442;
    --mv-muted: #1a2442;
    --brand: #ff3b9c;
    --btn: #111;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.06);
    --gap: 28px;
}

.mv--v2 {
    position: relative;
    overflow: hidden;
    padding-top: 64px;
    background:
        radial-gradient(1400px 900px at 30% 0%, rgba(17,192,255,1) 0%, rgba(17,192,255,0) 70%),
        radial-gradient(1400px 900px at 40% 105%, rgba(0,136,255,1) 0%, rgba(0,136,255,0) 70%),
        linear-gradient(150deg, #ff6fb3 15%, #8de3b9 80%, #7edfb1 100%);
    background-blend-mode: normal;
    isolation: isolate;
}

.mv--v2::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* ピンク帯：縮小時により薄く・細く見えるようベース高さを下げる */
    background:
        radial-gradient(2000px 300px at 8% var(--pink-y, 50%),
            rgba(255,111,179,1) 0%,
            rgba(255,111,179,0.85) var(--pink-mid, 38%),
            rgba(255,111,179,0.22) var(--pink-end, 82%)
        );
    mix-blend-mode: overlay;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    will-change: transform;
    transform-origin: 50% 50%;
    animation: pinkVerticalBreath 8s ease-in-out infinite alternate;
}

.mv--v2::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(2200px 320px at 92% 50%, rgba(141,227,185,0.85) 0%, rgba(141,227,185,0.6) 45%, rgba(141,227,185,0.25) 90%);
    mix-blend-mode: soft-light;
}

@property --pink-mid {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 42%;
}

@property --pink-end {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 88%;
}

@property --pink-y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}

@keyframes pinkVerticalBreath {
    /* 縮小フェーズ：ピンクをより薄く・狭く → 青の露出を増やす */
    0% {
        transform: scaleY(0.82);
        --pink-mid: 34%;
        --pink-end: 78%;
        --pink-y: 50%;
    }
    /* 拡大ピーク：従来よりやや強めに */
    50% {
        transform: scaleY(1.12);
        --pink-mid: 58%;
        --pink-end: 96%;
        --pink-y: 48%;
    }
    100% {
        transform: scaleY(0.82);
        --pink-mid: 34%;
        --pink-end: 78%;
        --pink-y: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv--v2::before {
        animation: none;
    }
}

.mv--v2 .mv-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--gap);
    align-items: center;
}

.mv-left {
    color: var(--mv-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-catch {
    line-height: 1.2;
    margin: 0 0 18px;
}

.mv-catch__small {
    display: block;
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--mv-muted);
    font-weight: 400;
}

.mv-logoRow {
    margin: 16px 0 18px;
    display: flex;
    justify-content: center;
}

.mv-logo {
    height: 80px;
    max-width: 100%;
}

.mv-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--mv-muted);
    margin: 0 0 22px;
}

.mv-visual {
    margin: 0;
    max-width: 85%;
    align-self: center;
}

.mv-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(var(--shadow-sm));
}

.mv-right {
    align-self: stretch;
}

.request-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.request-title {
    font-size: 20px;
    margin: 0 0 6px;
}

.request-note {
    font-size: 13px;
    color: var(--mv-muted);
    margin: 0 0 18px;
}

.required-mark {
    color: #ff3f68;
}

.form-field {
    margin: 0 0 14px;
}

.form-field label {
    display: block;
    font-size: 14px;
    margin: 0 0 6px;
}

.form-field label span[aria-hidden="true"] {
    color: #ff3f68;
}

.form-field input[type="text"],
.form-field input[type="email"] {
    width: 100%;
    height: 44px;
    border: 1px solid #e3e4ea;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.form-field input:focus {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #0088ff 0%, #11c0ff 30%, #ff6fb3 70%, #8de3b9 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 16px rgba(0, 136, 255, 0.2), 0 2px 8px rgba(255, 111, 179, 0.15);
}

.form-consent {
    margin-top: 6px;
}

.privacy-modal-trigger {
    background: none;
    border: none;
    padding: 0;
    color: var(--btn);
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

.privacy-modal-trigger:hover {
    opacity: 0.8;
}

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.privacy-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.privacy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.privacy-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.privacy-modal-content h3 {
    margin: 0;
    padding: 24px 24px 16px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e3e4ea;
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.8;
    color: #4a5568;
}

.privacy-modal-body p {
    margin: 0;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox input {
    margin-top: 3px;
}

.field-help {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--mv-muted);
}

.field-error {
    min-height: 18px;
    margin: 6px 0 0;
    font-size: 13px;
    color: #c0392b;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background: var(--btn);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.06s ease, opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.7;
}

.btn-primary:active {
    transform: translateY(1px);
}

/* レスポンシブ：900px未満 */
@media (max-width: 899px) {
    .mv-container {
        padding: 20px 16px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .mv-left {
        text-align: center;
        align-items: center;
    }

    .mv-logo {
        height: 70px;
    }

    .btn-primary {
        width: auto;
        padding: 0 32px;
        margin-right: auto;
    }

    .only-pc {
        display: none;
    }
}
