@charset "utf-8";

/* ===============================================
 *
 * メディアクエリ PCワイド (1440px ~ )
 *
 * ============================================ */

/* ===============================================
 * Main
 * ============================================ */

.signupMain {
    margin-bottom: 120px;
}

.signupMain__container {
    margin: 0 auto;
    padding: 30px;
    max-width: 1280px;
    width: 100%;
}

.signupMain__title {
    margin-top: 50px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 4rem;
    text-align: center;
    color: var(--picky-orange-light);
    font-weight: 700;
}

/* ===============================================
 * Alert
 * ============================================ */

.signupAlert{
  border: 1px solid #ffd0c8;
  background: #fff4f2;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 20px auto 18px;
  max-width: 560px;
}

.signupAlert__item{
    color:#b9382b;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* ===============================================
 * Form
 * ============================================ */

.signupForm {
    max-width: 952px;
    margin: 40px auto 0;
}

.signupForm__row {
    display: grid;
    grid-template-columns: 1fr 700px;
    align-items: center;
    gap: 100px;
    margin-bottom: 24px;
}

.signupForm__label {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-form-label);
}

.signupForm__required {
    color: #FF4D4D;
    margin-left: 2px;
}

.signupForm__field {
    width: 100%;
}

.signupForm__input {
    width: 100%;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 30px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    outline: none;
    background: var(--bg-color);
}

.signupForm__input::placeholder {
    color: var(--text-color-placeholder);
}

.signupForm__input:focus {
    border-color: rgba(244, 117, 84, 0.8);
}

.signupForm__error {
    margin: 6px 0 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    color: #D93025;
}

.signupForm__input--error {
    border-color: rgba(217, 48, 37, 0.7);
}

.signupForm__actions {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.signupForm__submit {
    appearance: none;
    padding: 16px 40px;
    border: 0;
    border-radius: 12px;
    background: rgba(244, 117, 84, 0.8);
    color: var(--text-color-inverse);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.signupForm__submit:hover {
    background: var(--picky-orange-light);
}

.signupForm__submit:active {
    transform: translateY(1px);
}

.signupForm__footer {
    max-width: 420px;
    margin: 20px auto 0;
    text-align: center;
}

.signupForm__note {
    margin-bottom: 5px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    color: #6C6C6C;
}

.signupForm__loginLink {
    color: var(--color-link);
}

.signupForm__loginLink:hover {
    text-decoration: underline;
}

/* ===============================
   signup-sent
================================= */

.signupSent {
    margin: 40px auto 0;
    padding: 40px;
    max-width: 680px;
    background-color: var(--bg-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.signupSent__text {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.signupSent__notice {
    text-align: left;
    background-color: #FFF6F3;
    padding: 20px;
    margin-bottom: 32px;
}

.signupSent__noticeTitle {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--picky-orange-light);
}

.signupSent__list {
    padding: 0 18px;
}

.signupSent__listItem {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: #444;
}

.signupSent__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.signupSent__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.signupSent__button--primary {
    background-color: rgba(244, 117, 84, 0.8);
    color: #fff;
}

.signupSent__button--primary:hover {
    background-color: var(--picky-orange-light);
}




/* ===============================================
 *
 * メディアクエリ 小型PC,タブレット横 (1024px ~ 1279px)
 *
 * ============================================ */


@media (max-width: 1279px) {
    /* ===============================================
     * Main
     * ============================================ */

    .signupMain__title {
        margin-top: 30px;
        font-size: 3.2rem;
    }

    /* ===============================================
    * Alert
    * ============================================ */

    .signupAlert{
        border: 1px solid #ffd0c8;
        background: #fff4f2;
        border-radius: 14px;
        padding: 12px 14px;
        margin: 20px auto 18px;
        max-width: 560px;
    }

    .signupAlert__item{
        color:#b9382b;
        font-size: 1.4rem;
        line-height: 1.5;
    }

    /* ===============================================
    * Form
    * ============================================ */

    .signupForm {
        max-width: 600px;
        width: 100%;
    }

    .signupForm__row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 5px;
        margin-bottom: 20px;
    }

    .signupForm__label {
        font-size: 1.8rem;
    }

    .signupForm__actions {
        margin-top: 60px;
    }
}


/* ===============================================
 *
 * メディアクエリ SP標準 (480px ~ 767px)
 *
 * ============================================ */


@media (max-width: 767px) {
    /* ===============================================
     * signup-sent
     * ============================================ */
    .signupSent {
        padding: 24px;
        margin-top: 24px;
    }

    .signupSent__actions {
        flex-direction: column;
    }

    .signupSent__button {
        width: 100%;
        text-align: center;
    }
}


/* ===============================================
 *
 * メディアクエリ SP ( ~ 479px)
 *
 * ============================================ */


@media (max-width: 479px) {
    /* ===============================================
     * Main
     * ============================================ */

    .signupMain__container {
        padding: 15px;
    }

    .signupMain__title {
        margin-top: 25px;
        font-size: 2.4rem;
    }

    /* ===============================================
     * Alert
     * ============================================ */

    .signupAlert{
        border: 1px solid #ffd0c8;
        background: #fff4f2;
        border-radius: 14px;
        padding: 12px 14px;
        margin: 20px auto 18px;
        max-width: 560px;
    }

    .signupAlert__item{
        color:#b9382b;
        font-size: 1.4rem;
        line-height: 1.5;
    }

    /* ===============================================
     * Form
     * ============================================ */

    .signupForm {
        max-width: 600px;
        width: 100%;
        margin-top: 30px;
    }

    .signupForm__row {
        margin-bottom: 16px;
    }

    .signupForm__label {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .signupForm__input {
        padding: 8px 20px;
        font-size: 1.4rem;
    }

    .signupForm__error {
        font-size: 1.2rem;
    }

    .signupForm__submit {
        max-width: 450px;
        width: 100%;
        font-size: 1.6rem;
    }

    .signupForm__note {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .signupSent {
        padding: 0;
        margin-top: 24px;
        box-shadow: none;
    }

    .signupSent__text {
        line-height: 1.6;
    }

    .signupSent__actions {
        flex-direction: column;
    }

    .signupSent__button {
        width: 100%;
        text-align: center;
    }

    .signupSent__notice {
        text-align: left;
        background-color: var(--bg-color);
        padding: 0;
    }

    .signupSent__list {
        padding: 0;
    }
}