@charset "utf-8";

/*============================================================
    応募フォーム（index.html / confirm.php / completed.php）
    - Figma: THE FACE NEXT 応募フォーム / サトルジャパンの約束モーダル
    - WordPress テーマ contact.css より移植
============================================================*/

.entry {
    margin: 0;
    padding: 0;
}

/* SP専用改行（PCでは改行しない） */
.entry__br--sp {
    display: none;
}

/* ---------- トップバー ---------- */
.entry__topbar {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 12px;
    text-align: center;
}
.entry__topbar__title {
    font-family: "Didot", "Didot LT STD", "Bodoni 72", serif;
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
}
.entry__topbar__title span {
    color: #dac68b;
}
.entry__topbar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #fff;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    white-space: nowrap;
    line-height: 1;
}

/* ---------- 外側ラップ ---------- */
.entry__wrap {
    background: #fff;
    border-radius: 32px 32px 0 0;
    padding: 90px 20px;
    margin-top: -1px;
}
.entry__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---------- 左：説明カード ---------- */
.entry__intro {
    width: 380px;
    background: #efefef;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}
.entry__intro__text {
    margin: 0;
    color: #2c2c2c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    font-feature-settings: "palt" 1;
}
.entry__intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 0 31px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s;
}
.entry__intro__btn:hover {
    opacity: 0.8;
}

/* ---------- 右：フォームカード ---------- */
.entry__formCard {
    width: 650px;
    background: #efefef;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
}
.entry__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---------- 各フィールドブロック ---------- */
.entry__field {
    background: #fafafa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.entry__field__label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
}
.entry__field__name {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}
.entry__field__name--small {
    font-size: 14px;
    font-weight: 700;
}
.entry__field__name__sub {
    font-size: 10px;
    font-weight: 400;
}
.entry__field__control {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.entry__field__control--row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

/* 必須バッジ */
.entry__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 1.6;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    white-space: nowrap;
}
.entry__badge--required {
    background: #ec0000;
}

/* テキスト入力 */
.entry__input {
    display: block;
    width: 100%;
    height: 55px;
    padding: 11px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
}
.entry__input::placeholder {
    color: #ccc;
}
.entry__input:focus {
    outline: 2px solid #d1be86;
    outline-offset: -2px;
}
.entry__input--other {
    margin-top: 10px;
    height: 44px;
}
.entry__input--other.is-hidden {
    display: none;
}

/* ラジオ */
.entry__radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 0;
}
.entry__radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.entry__radio__mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}
.entry__radio input[type="radio"]:checked + .entry__radio__mark {
    border-color: #333;
}
.entry__radio input[type="radio"]:checked + .entry__radio__mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
}
.entry__radio__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1;
}

/* チェックボックス */
.entry__check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 4px 0;
}
.entry__check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.entry__check__mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition:
        background-color 0.2s,
        border-color 0.2s;
}
.entry__check input[type="checkbox"]:checked + .entry__check__mark {
    background: #333;
    border-color: #333;
}
.entry__check input[type="checkbox"]:checked + .entry__check__mark::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.entry__check__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}
.entry__check--survey .entry__check__label {
    color: #333;
}

/* 写真アップロード */
.entry__photo__note {
    margin: 0 0 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #333;
    line-height: 1.8;
}
.entry__photo__note__title {
    display: block;
    font-size: 14px;
}
.entry__photo__note__small {
    margin: 0 0 10px;
    font-size: 10px;
    color: #333;
    line-height: 1.8;
}
.entry__photoBox {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 21px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.entry__photoBox__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.entry__photoBox__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.entry__photoBox__heading {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    letter-spacing: -0.02em;
}
.entry__photoBox__heading small {
    font-size: 16px;
    display: inline;
}
.entry__photoBox__sample {
    background: #fafafa;
    padding: 5px;
    flex-shrink: 0;
}
.entry__photoBox__sample__label {
    margin: 0 0 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #333;
    letter-spacing: -0.02em;
    line-height: 1.8;
    text-align: left;
}
.entry__photoBox__sample img {
    display: block;
    width: 148px;
    height: 225px;
    object-fit: cover;
}
.entry__photoBox__divider {
    height: 1px;
    background: #ccc;
}

/* ファイル選択 */
.entry__file {
    display: flex;
    align-items: center;
    gap: 10px;
}
.entry__file__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #efefef;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.entry__file__btn input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.entry__file__name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    word-break: break-all;
}

/* エラー */
.entry__err {
    display: block;
    min-height: 0;
    margin: 0;
    padding: 0;
}
.entry__err:empty {
    display: none;
}
/* flex row 内（年齢など横並びのラジオグループ）でも改行して下に表示 */
.entry__field__control--row .entry__err {
    flex-basis: 100%;
    width: 100%;
}
em.validateError {
    display: inline-block;
    margin-top: 4px;
    color: #ec0000;
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
}

/* エラー時の入力欄（赤枠） */
.entry__input.is-error,
.entry__input.is-error:focus {
    border-color: red;
    outline-color: red;
}
.entry__file.is-error {
    outline: 1px solid red;
    outline-offset: 4px;
}

/* エラーアラート（フォーム上部・バリデーション失敗時に表示） */
.entry__alert {
    text-align: center;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto 40px;
    padding: 9px 11px;
    background: #ffe7e7;
    border: 1px solid #fb9a9a;
    box-sizing: border-box;
}
.entry__alert p {
    margin: 0;
    color: #e93737;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
.entry__alert[hidden] {
    display: none;
}

/* ---------- 保護者同意（12〜17歳選択時のみ表示） ---------- */
.entry__guardian {
    background: #fafafa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.entry__guardian.is-hidden {
    display: none;
}
.entry__guardian__lead {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.entry__guardian__title {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.entry__guardian__note {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #333;
    line-height: 1.8;
}
.entry__guardian__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---------- アンケート（黒背景） ---------- */
.entry__survey {
    background: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.entry__survey__title {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
}
.entry__survey__sub {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    line-height: 1.8;
}
.entry__survey__field {
    background: #fafafa;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.entry__survey__q {
    margin: 0 0 6px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
.entry__survey__options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ---------- プライバシー注記 ---------- */
.entry__privacy {
    margin: 20px 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}
.entry__privacy a {
    color: #2200ff;
    text-decoration: underline;
}

/* ---------- 送信ボタン ---------- */
.entry__submit {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    height: 63px;
    margin: 20px auto 0;
    padding: 0;
    background: #d1be86;
    border: 1.5px solid #fff;
    border-radius: 5px;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
    overflow: hidden;
}
.entry__submit:hover {
    opacity: 0.85;
}
.entry__submit__text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    text-align: center;
}
.entry__submit__arrow {
    position: relative;
    width: 60px;
    flex-shrink: 0;
    border-left: 1px solid #fff;
}
.entry__submit__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: #000;
}
.entry__submit__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 5px);
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- 確認/完了ページ ---------- */
.entry__confirm__lead {
    margin: 0 0 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #565656;
    text-align: center;
}
.entry__confirm {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    margin: 0;
    background: #fafafa;
    border-radius: 5px;
    overflow: hidden;
}
.entry__confirm dt,
.entry__confirm dd {
    padding: 16px 20px;
    border-bottom: 1px solid #e4e4e4;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-all;
}
.entry__confirm dt {
    background: #ececec;
    font-weight: 700;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
.entry__confirm dd {
    color: #333;
    margin: 0;
}
.entry__confirm dt:last-of-type,
.entry__confirm dd:last-of-type {
    border-bottom: none;
}
.entry__confirm__err {
    color: #ec0000;
    font-size: 13px;
}

.entry__confirm__btns {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.entry__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 40px;
    min-width: 160px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #555;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition:
        opacity 0.2s,
        background-color 0.2s,
        color 0.2s;
}
.entry__btn--back {
    background: #fff;
    color: #333;
}
.entry__btn--back:hover {
    background: #f5f5f5;
}
.entry__btn--home {
    background: #333;
    color: #fff;
    padding: 14px 48px;
}
.entry__btn--home:hover {
    opacity: 0.85;
}
.entry__submit--send {
    margin: 0;
    max-width: 300px;
    height: 52px;
    font-size: 16px;
}

/* 完了ページ（THANK YOU!） */
.entry__thanks {
    max-width: 845px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
}
.entry__thanks__title {
    margin: 0;
    font-family: "Didot", "Didot LT STD", "Bodoni 72", serif;
    font-size: 64px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #2c2c2c;
    text-align: center;
    font-feature-settings: "palt" 1;
}
.entry__thanks__message {
    text-align: center;
}
.entry__thanks__message p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    font-feature-settings: "palt" 1;
}
.entry__thanks__btn {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 520px;
    height: 63px;
    background: #000;
    border: 1.5px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s;
    box-sizing: border-box;
    overflow: hidden;
}
.entry__thanks__btn:hover {
    opacity: 0.85;
    color: #fff;
}
.entry__thanks__btn__text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    text-align: center;
    color: #fff;
}
.entry__thanks__btn__arrow {
    position: relative;
    width: 60px;
    flex-shrink: 0;
    border-left: 1px solid #fff;
}
.entry__thanks__btn__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: #fff;
}
.entry__thanks__btn__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 5px);
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ============================================================
   サトルジャパンの約束モーダル
============================================================ */
.promiseModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    padding: 0;
    overflow-y: auto;
    background: #fff;
}
.promiseModal.is-open {
    display: block;
}
body.is-modalOpen {
    overflow: hidden;
}
.promiseModal__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}
.promiseModal__inner {
    position: relative;
    z-index: 1;
    background: #fafafa;
    border-radius: 0;
    padding: 60px 60px 80px;
    width: 100%;
    max-width: 1000px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

/* 閉じるボタン（画面右上 × CLOSE） */
.promiseModal__close {
    position: fixed;
    top: 24px;
    right: 36px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    z-index: 10000;
}
.promiseModal__close__icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
}
.promiseModal__close__icon > span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 1px;
    background: #000;
    transform-origin: center;
}
.promiseModal__close__icon > span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
}
.promiseModal__close__icon > span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
}
.promiseModal__close__text {
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* イントロ（黒枠囲み） */
.promiseModal__intro {
    position: relative;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
    border: 1px solid #000;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
}
.promiseModal__vertical {
    position: absolute;
    left: 100%;
    bottom: 0;
    writing-mode: vertical-rl;
    font-family: "Didot", "Didot LT STD", "Bodoni 72", serif;
    font-size: 28.5px;
    letter-spacing: 0.05em;
    color: #000;
    white-space: nowrap;
    line-height: 1;
}
.promiseModal__title {
    display: inline-block;
    margin: 0;
    padding: 10px;
    background: #000;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    text-align: center;
}
.promiseModal__introText p {
    margin: 0 0 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}
.promiseModal__introText p:last-child {
    margin-bottom: 0;
}
.promiseModal__introText strong {
    color: #ec0000;
    font-weight: 700;
}

/* 項目ラッパー（項目間 gap 34px） */
.promiseModal__items {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* 各項目（白カード + 下右コーナー装飾） */
.promiseModal__item {
    position: relative;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}
.promiseModal__item::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -6px;
    width: 150px;
    height: 150px;
    border-right: 12px solid #000;
    border-bottom: 12px solid #000;
    pointer-events: none;
}
.promiseModal__item__head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}
.promiseModal__item__num {
    font-family: "Didot", "Didot LT STD", "Bodoni 72", serif;
    font-size: 36px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #000;
}
.promiseModal__item__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    color: #000;
}
.promiseModal__item__body p {
    margin: 0 0 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}
.promiseModal__item__body p:last-child {
    margin-bottom: 0;
}

.promiseModal__closing {
    text-align: center;
    padding: 20px 0;
}
.promiseModal__closing p {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.8;
    color: #000;
}

.promiseModal__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.promiseModal .promiseModal__privacy,
.promiseModal .promiseModal__privacy:link,
.promiseModal .promiseModal__privacy:visited,
.promiseModal .promiseModal__privacy:hover {
    color: #2200ff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    text-decoration: underline;
}
.promiseModal__closeText {
    background: none;
    border: none;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px 20px;
}

/* ============================================================
   レスポンシブ（スマホ）
============================================================ */
@media screen and (max-width: 767px) {
    /* SP専用改行を有効化 */
    .entry__br--sp {
        display: inline;
    }

    /* トップバー */
    .entry__topbar {
        flex-direction: column;
        gap: 7.5px;
        padding: 20px 12px;
    }
    .entry__topbar__title {
        font-size: 20px;
    }
    .entry__topbar__badge {
        font-size: 12px;
        padding: 7px;
    }

    /* 外側ラップ */
    .entry__wrap {
        padding: 20px 20px 80px;
        border-radius: 32px 32px 0 0;
    }
    .entry__alert {
        margin-bottom: 0;
        padding: 9px 11px;
    }
    .entry__alert p {
        font-size: 14px;
        line-height: 1.6;
    }
    .entry__container {
        flex-direction: column;
        gap: 20px;
    }

    /* 説明カード・フォームカードともに背景・内側パディング除去（SPはフラット表示） */
    .entry__intro,
    .entry__formCard {
        width: 100%;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    .entry__intro {
        gap: 20px;
    }
    .entry__intro__text {
        font-size: 14px;
        letter-spacing: 0.04em;
    }
    .entry__intro__btn {
        height: 47px;
        padding: 0 21px;
        font-size: 14px;
    }

    /* 各フィールド */
    .entry__field {
        padding: 20px;
        gap: 0;
    }
    .entry__field__label {
        min-height: 28px;
    }
    .entry__field__name {
        font-size: 14px;
    }
    .entry__field__name--small {
        font-size: 14px;
        line-height: 1.4;
    }
    .entry__field__control--row {
        gap: 10px;
    }
    .entry__radio__label,
    .entry__check__label {
        font-size: 13px;
    }
    .entry__input {
        height: 44px;
        font-size: 14px;
        padding: 11px;
    }

    /* 写真 */
    .entry__photo__note {
        font-size: 12px;
    }
    .entry__photo__note__title {
        font-size: 14px;
    }
    .entry__photo__note__small {
        font-size: 10px;
    }
    .entry__photoBox {
        padding: 11px;
        gap: 10px;
        align-items: center;
    }
    .entry__photoBox__row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }
    .entry__photoBox__left {
        flex: none;
        width: 100%;
        gap: 10px;
    }
    .entry__photoBox__heading {
        font-size: 12px;
    }
    .entry__photoBox__heading small {
        font-size: 12px;
    }
    .entry__photoBox__sample {
        align-self: flex-start;
    }
    .entry__photoBox__sample__label {
        font-size: 12px;
    }
    .entry__photoBox__sample img {
        width: 98.667px;
        height: 150px;
    }

    /* ファイル選択 */
    .entry__file {
        display: inline-flex;
        padding: 5px;
        gap: 10px;
    }
    .entry__file__btn {
        padding: 2px 8px;
        font-size: 12px;
    }
    .entry__file__name {
        font-size: 10px;
    }

    /* エラーメッセージ */
    em.validateError {
        font-size: 12px;
        line-height: 1.8;
    }

    /* 保護者同意 */
    .entry__guardian {
        padding: 20px;
        gap: 14px;
    }
    .entry__guardian__title {
        font-size: 14px;
        line-height: 1.6;
    }
    .entry__guardian__note {
        font-size: 11px;
        line-height: 1.7;
    }

    /* アンケート */
    .entry__survey {
        padding: 20px;
        gap: 20px;
    }
    .entry__survey__title {
        font-size: 14px;
    }
    .entry__survey__sub {
        font-size: 10px;
    }
    .entry__survey__field {
        padding: 20px;
    }
    .entry__survey__q {
        font-size: 14px;
        line-height: 1.8;
    }

    /* プライバシー */
    .entry__privacy {
        font-size: 10px;
        line-height: 1.3;
    }
    .entry__privacy br {
        display: none;
    }

    /* 送信ボタン */
    .entry__submit {
        max-width: 335px;
        height: 47px;
        font-size: 14px;
    }
    .entry__submit__text {
        padding: 10px 15px;
        line-height: 1.2;
    }
    .entry__submit__arrow {
        width: 31px;
    }

    .entry__confirm {
        grid-template-columns: 1fr;
    }
    .entry__confirm dt,
    .entry__confirm dd {
        padding: 10px 14px;
        border-bottom: 1px solid #e4e4e4;
    }
    .entry__confirm dt {
        border-bottom: none;
    }

    /* モーダル（サトルジャパンの約束） */
    .promiseModal {
        padding: 0;
        background: #fafafa;
    }
    .promiseModal__inner {
        padding: 86px 0 50px;
        gap: 30px;
        background: #fafafa;
    }
    .promiseModal__close {
        top: 12px;
        right: 14px;
    }
    .promiseModal__close__icon {
        width: 30px;
        height: 30px;
    }
    .promiseModal__close__icon > span {
        width: 34px;
    }

    /* イントロ（黒枠） */
    .promiseModal__intro {
        max-width: 335px;
        padding: 30px 15px;
        gap: 34px;
    }
    .promiseModal__title {
        padding: 5px;
        font-size: 22px;
    }
    .promiseModal__introText p {
        font-size: 14px;
        line-height: 1.8;
    }
    .promiseModal__vertical {
        left: calc(100% + 5px);
        font-size: 24px;
        letter-spacing: 0.05em;
    }

    /* 各項目カード */
    .promiseModal__items {
        gap: 30px;
        width: 100%;
        align-items: center;
    }
    .promiseModal__item {
        max-width: 335px;
        padding: 30px 15px;
        gap: 34px;
    }
    .promiseModal__item__head {
        gap: 10px;
    }
    .promiseModal__item__num {
        font-size: 24px;
        letter-spacing: 0.05em;
    }
    .promiseModal__item__title {
        font-size: 14px;
        line-height: 1.8;
    }
    .promiseModal__item__body p {
        font-size: 14px;
        line-height: 1.7;
    }
    .promiseModal__item::after {
        right: -5px;
        bottom: -5px;
        width: 150px;
        height: 150px;
        border-right-width: 10px;
        border-bottom-width: 10px;
    }

    /* クロージング */
    .promiseModal__closing {
        padding: 30px 0;
    }
    .promiseModal__closing p {
        font-size: 17px;
        line-height: 1.8;
    }

    /* リンク */
    .promiseModal__links {
        gap: 15px;
    }
    .promiseModal .promiseModal__privacy,
    .promiseModal .promiseModal__privacy:link,
    .promiseModal .promiseModal__privacy:visited,
    .promiseModal .promiseModal__privacy:hover {
        font-size: 10px;
    }
    .promiseModal__closeText {
        font-size: 14px;
        text-decoration: underline;
    }

    .entry__thanks {
        padding: 50px 16px;
        gap: 40px;
    }
    .entry__thanks__title {
        font-size: 40px;
    }
    .entry__thanks__message p {
        font-size: 15px;
    }
    .entry__thanks__btn {
        height: 56px;
        font-size: 15px;
    }
    .entry__thanks__btn__arrow {
        width: 48px;
    }
}
