:root {
    --white: #fff;
    --gray: #f3f2f2;
    --black: #000;
    --navy: #002547;
    --pink: #dd0088;
    --emerald: #00b0b9;
    --blue: #3078b6;

    --font-base: "Noto Sans JP", sans-serif;
    --font-en: "A-OTF Gothic MB101 Pro";

    --fs12: clamp(11px, 1.4vw, 12px);
    --fs14: clamp(13px, 1.6vw, 14px);
    --fs16: clamp(14px, 1.9vw, 16px);
    --fs18: clamp(16px, 2.2vw, 18px);
    --fs20: clamp(18px, 2.6vw, 20px);
    --fs24: clamp(20px, 3vw, 24px);
    --fs26: clamp(21px, 3.25vw, 26px);
    --fs28: clamp(22px, 3.5vw, 28px);
    --fs30: clamp(23px, 3.75vw, 30px);
    --fs32: clamp(24px, 4vw, 32px);
    --fs36: clamp(26px, 4.5vw, 36px);
    --fs40: clamp(28px, 5vw, 40px);
    --fs44: clamp(30px, 5.5vw, 44px);
    --fs48: clamp(32px, 6vw, 48px);
    --fs56: clamp(36px, 7vw, 56px);
    --fs64: clamp(40px, 8vw, 64px);
    --fs72: clamp(44px, 9vw, 72px);
    --fs80: clamp(48px, 10vw, 80px);
    --fs96: clamp(56px, 12vw, 96px);
    --fs120: clamp(64px, 14vw, 120px);
}

@font-face {
    font-family: "A-OTF Gothic MB101 Pro";
    src: url("../fonts/A-OTF\ Gothic\ MB101\ Pro\ B.otf") format("opentype");
    font-display: swap;
}

/* ===============================
   基礎CSS
=============================== */

body {
    font-family: var(--font-base);
    letter-spacing: 0.04em;
    line-height: 1.6;
}
.inner900 {
    max-width: 900px;
    margin: 0 auto;
}
h2 {
    font-size: var(--fs40);
}
h4 {
    font-size: var(--fs32);
    font-weight: bold;
    text-align: center;
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
.en {
    font-family: var(--font-en);
}
a {
    transition: 0.3s ease;
}
a:hover {
    opacity: 0.7;
}
html {
  scroll-behavior: smooth;
}


/* ===============================
   全体CSS
=============================== */

h2 {
    font-size: var(--fs40);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.cl-white {
    color: var(--white);
}
.cl-emerald {
    color: var(--emerald);
}
.cta_btn {
    background: var(--pink);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 80px;
    max-width: 280px;
    height: 50px;
    border-radius: 50vh;
    font-size: var(--fs18);
}

/* ===============================
   header
=============================== */

header {
    background: #fff;
    display: flex;
    padding: 20px 30px;
    justify-content: space-between;
    align-items: center;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_tell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: var(--fs14);
}
.header_tell a {
    display: flex;
    align-items: center;
    font-size: var(--fs32);
    font-weight: bold;
    line-height: 1;
}
.tell_box img {
    width: 34px;
    height: auto;
    margin-top: 3px;
    margin-right: 5px;
}

/* ===============================
   fv
=============================== */

.fv {
    position: relative;
}
.fv img {
    width: 100%;
    height: auto;
}
.fv h1 {
    width: 100%;
    background: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
    font-size: var(--fs48);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -79%);
    color: var(--navy);
}
.fv h1 .sub-ttl {
    font-size: var(--fs32);
}
.fv h1 .main-ttl {
    margin-top: 10px;
    letter-spacing: -0.05em;
}
.fv h1 .main-ttl .en {
    margin-left: -20px;
}
.main-large {
    font-size: var(--fs72);
}

@media screen and (max-width: 768px) {
    .fv {
        background-image: url(../img/kv_sp.jpg);
    }
}

/* ===============================
   more_vacation
=============================== */

.more_vacation {
    position: relative;
    z-index: 5;
    /* clip-path: ellipse(100% 100% at 50% 100%);
    margin-top: -140px; */
}
.more_vacation h2 {
    font-size: var(--fs44);
    margin-top: -75px;
    margin-bottom: 0px;
}
.more_vacation_container {
    background: var(--navy);
    padding-top: 35px;
    padding-bottom: 80px;
    padding: 35px 20px 80px;
}
.vacation_list h4 {
    margin-bottom: 35px;
}
.vacation_list>li {
    background: var(--white);
    color: var(--navy);
    border-radius: 24px;
    padding: 30px 40px;
}
.vacation_list>li:first-child {
    margin-bottom: 55px;
}
.prize-ttl {
    position: relative;
    width: 100%;
    padding: 15px 12px;
    background: #18b7bd;
    border-radius: 10px;
}
.prize-ttl__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;

    border-radius: 6px;
    color: #fff;
    font-size: var(--fs32);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
}
.prize-ttl__badge {
    position: absolute;
    top: 7px;
    right: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding: 10px 12px 10px 20px;
    background: #fff;
    border-radius: 50px 16px 16px 50px;
    color: #18b7bd;
    font-size: var(--fs24);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.prize-ttl__badge span {
    font-size: var(--fs30);
}
.campaign-copy {
    width: fit-content;
    margin: 45px auto 30px;
    display: flex;
    align-items: flex-end;
}
.campaign-copy img {
    /* width: 61%; */
    width: 31px;
}
.boder-left {
    margin-right: 5px;
}
.boder-right {
    margin-left: 8px;
}

.campaign-copy__sub {
    display: block;
    margin: 0 0 6px;
    padding: 0 6px;
    font-size: var(--fs24);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
}
.campaign-copy__main {
    position: relative;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    background: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.campaign-copy__num {
    color: var(--pink);
    font-size: var(--fs64);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.campaign-copy__unit {
    margin-bottom: 4px;
    color: #0b2b63;
    font-size: var(--fs36);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
}
.vacation_img_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 40px;
}
.vacation_img_list img {
    width: 100%;
    height: auto;
}
.vacation_img_list p {
    font-size: var(--fs24);
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}
.howto-txt {
    text-align: center;
    margin-top: 45px;
}
.howto-txt>div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.howto-txt img {
    width: 59%;
    height: auto;
}
.howto-txt p {
    font-size: var(--fs32);
    font-weight: bold;
    margin: 10px 0;
}
.groumet-flex {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: bold;
}
.groumet-flex img {
    width: 100%;
    height: auto;
}
.groumet-flex .right {
    line-height: 1.2;
    margin-top: -50px;
}
.groumet-flex .right p:first-child {
    color: var(--navy);
    font-size: var(--fs36);
}
.groumet-flex .right p:first-child span {
    font-size: var(--fs20);
}
.groumet-flex .right p:nth-child(2) {
    font-size: var(--fs48);
    color: var(--pink);
    margin-top: 12px;
}
.groumet-flex .right p:nth-child(2) .span2 {
    font-size: var(--fs20);
    margin-left: 5px;
    margin-top: -5px;
}
.groumet-note {
    font-size: 12px;
    margin-top: 10px;
}
.more_vacation .cta_btn {
    max-width: 260px;
    padding: 40px 0;
    margin: 60px auto 0;
    font-size: var(--fs24);
}

@media screen and (max-width: 768px) {
    .vacation_list>li {
        padding: 14px;
    }
    .campaign-copy__unit {
        font-size: var(--fs28);
    }
    .campaign-copy img {
        /* width: 61%; */
        width: 24px;
    }
    .vacation_list h4 {
        font-size: 17px;
        margin-bottom: 25px;
    }
    .more_vacation h2 {
        font-size: var(--fs28);
        background: var(--navy);
        margin-top: -2px;
        margin-bottom: 0px;
    }
    .vacation_img_list {
                row-gap: 20px;
        column-gap: 23px;
    }
    .vacation_img_list p {
font-size: 15px;
}
.howto-txt p {
    font-size: var(--fs24);
}
.howto-txt {
    margin-top: 30px;
    margin-bottom: 10px;
}
.howto-txt img {
    width: 100%;
}
.prize-ttl__badge {
    padding: 17px 12px 10px 20px;
}
.groumet-flex .right p:first-child {
    margin-top: 30px;
    text-align: center;
}
.groumet-flex .right p:nth-child(2) {
        text-align: center;
        font-size: var(--fs56);
        margin-top: 0;
}
.groumet-flex {
    flex-direction: column-reverse;
    gap: 20px;
}
.more_vacation .cta_btn {
    max-width: 227px;
    margin: 40px auto 0;
    padding: 35px 0;
}
.more_vacation_container {
    padding: 35px 20px 45px;
    margin-top: -2px;
}
}

/* ===============================
   campaign
=============================== */
.campaign {
    padding: 65px 20px;
    background: var(--gray);
}
.campaign h2 {
    font-size: var(--fs28);
    color: var(--navy);
}
.campaign h3 {
    color: var(--emerald);
    font-size: var(--fs20);
    font-weight: bold;
}
.campaign h4 {
    font-size: var(--fs16);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}
.campaign-container {
    background: var(--white);
    padding: 40px 55px;
    box-shadow: 3px 0px 7px rgba(0, 0, 0, 0.08);
}
.campaign-sub-ttl {
    font-size: var(--fs20);
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
}
.campaign-list>li {
    border-bottom: solid 3px var(--gray);
    padding: 20px 8px;
}
.campaign-list>li:last-child {
    border-bottom: none !important;
}
.campaign-list>li h3 {
    margin-bottom: 20px;
}
.campaign-list>li>a {
    color: var(--blue);
}
.dot-list {
    padding-left: 1.5em;
    list-style: disc;
    list-style-position: outside;
}
.dot-list li::marker {
    font-size: 0.75rem;
}
.campaign-blue_txt {
    color: var(--blue);
    font-weight: bold;
    font-size: var(--fs18);
    margin-bottom: 25px;
}
.campaign-note-list li {
    font-size: clamp(12px, 1vw, 14px);
    margin-left: 10px;
    margin-bottom: 3px;
}

/* ===============================
   work-sheet
=============================== */

.work-sheet-bottom {
    background: var(--navy);
    /* padding-top: 65px;
    padding-bottom: 65px; */
    padding: 65px 20px;
    clip-path: ellipse(100% 100% at 50% 100%);
}
.work-sheet h2 {
    width: 100%;
    background: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 65px 0 45px;
    font-size: var(--fs40);
    margin-bottom: 0px;
}
.work-sheet h2 .sub-ttl {
    font-size: var(--fs26);
}
.work-sheet h2 .main-ttl {
    margin-top: 10px;
    letter-spacing: -0.05em;
}
.work-sheet h2 .main-large {
    font-size: var(--fs56);
}
.work-sheet h2 .main-ttl .en {
    margin-left: -20px;
}
.work-sheet h3 {
    color: var(--white);
    font-size: var(--fs32);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}





.work-sheet-container {
    background: var(--white);
    padding: 50px 60px;
    border-radius: 24px;
}
.survey-box li {
    border-bottom: solid 2px var(--gray);
}
.survey-question {
    font-weight: bold;
    font-size: var(--fs16);
}
.survey-question__title {
    margin-bottom: 30px;
      display: flex;
  gap: 6px;
}
.survey-question__title.one,
.survey-question__title.two,
.survey-question__title.three {
    margin-top: 30px;
}
.survey-question__num {
    color: var(--emerald);
      flex: 0 0 32px; /* ←番号の幅を固定 */
}
.survey-question__choices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.survey-question__choices button {
    display: block;
    border: solid 2px var(--emerald);
    padding: 10px 0;
    text-align: center;
}
.survey-question__choices button {
    border: 2px solid #17bcca;
    background: #fff;
    color: #0d2b63;
    padding: 8px 14px;
    cursor: pointer;
    transition: 0.2s;
}

.survey-question__choices button.is-active {
    background: #17bcca;
    color: #fff;
}



/* ===============================
   proposal
=============================== */

.proposal {
    height: 825px;
    background-image: url(../img/proposal_back_img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===============================
   form
=============================== */
.form {
    padding: 65px 30px;
}
.form h2 {
    color: var(--navy);
    font-size: var(--fs28);
}
.form-group {
    font-weight: bold;
    font-size: var(--fs16);
}
.form-row--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.form-row p {
    font-weight: normal;
    color: #9d9d9d;
    margin-top: 3px;
}
.form-group input,
.form-group select {
    display: block;
    border: solid 1px var(--black);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 35px;
    padding: 12px 20px;
    width: 100%;
}
.select-wrap {
    position: relative;
}
.select-wrap select {
    font-weight: normal !important;
    /*color: #9d9d9d !important;*/
}
.select-wrap::after {
    content: "";
    display: block;
    width: 12px;
    height: 11px;
    background-image: url(../img/icon/select-arrow.png);
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.form-group input::placeholder,
.form-group select::placeholder,
select option:nth-of-type(1) {
    font-weight: normal !important;
    color: #9d9d9d !important;
    font-size: 93%;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 35px;
}
.checkbox input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    border-radius: 50vh;
    position: relative;
    margin: 0;
    padding: 0;
}
.checkbox input:checked {
    background: #17bcca;
}
.checkbox input:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.required {
    font-size: var(--fs12);
    background: var(--pink);
    color: var(--white);
    border-radius: 4px;
    padding: 5px;
}
.optional {
    background: #707070;
    font-size: var(--fs12);
    color: var(--white);
    border-radius: 4px;
    padding: 5px;
}

.agreement-text a {
    color: var(--blue);
}
.rechapcha-wrraper {
    text-align: center;
    margin-top: 55px;
}
.btn-submit {
    background-color: var(--pink);
    color: var(--white);

    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 380px;
    margin: 30px auto 0;
    padding: 10px 30px;
    font-size: var(--fs18);
    border-radius: 50vh;
    text-align: center;

    /*opacity: 0.5;*/
}
.note1 {
    font-size: var(--fs14);
    font-weight: normal;
    margin-left: 15px;
}
.form-group.address input {
    width: 48%;
}

/* ===============================
   thanks
=============================== */

.thanks {
    background: var(--navy);
    color: var(--white);
    padding: 0 0 30px;
    /*margin-bottom: 60px;*/
    text-align: center;
}
.thanks p {
    text-align: center;
    font-size: var(--fs32);
    font-weight: bold;
}

.cta_btn_home {
    margin: 0 auto !important;
}

/* ===============================
   proposal
=============================== */

.proposal {
    /* padding-top: 60px; */
    padding: 60px 10px 0;
    color: var(--white);
}
.proposal p {
    text-align: center;
    font-size: var(--fs16);
}
.proposal p:nth-of-type(1),
.proposal p:nth-of-type(2) {
    margin-bottom: 40px;
}
.proposal_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    margin: 100px auto 0;
    padding: 10px 0;
    background: var(--white);
    color: var(--emerald);
    font-size: var(--fs18);
    border: solid 3px var(--emerald);
    border-radius: 50vh;
    text-align: center;
    font-weight: bold;
}

/* ===============================
   footer
=============================== */

footer {
    padding: 60px 20px;
    background: var(--navy);
    color: var(--white);
    font-weight: 300;
}
.brands-bar {
    padding: 50px 0;
}
footer img {
    width: 100%;
    height: auto;
}
footer p {
    font-size: 12px;
    line-height: 24px;
    margin: 15px 0;
}
footer a {
    color: var(--white) !important;
}


@media screen and (max-width: 768px) {
    /* -------------基礎CSS------------- */
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
    /* ----------------header------------------- */
    header {
    padding: 20px;
}
    .logo_img img {
width: 110px;
    }
    .cta_btn {
padding: 0px 34px;
    }
    .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
    /* ----------------fv------------------- */
    .fv h1 {
        font-size: var(--fs20);
        padding: 10px 0;
        line-height: 1.4;
    }
    .fv h1 .sub-ttl {
    font-size: 11px;
}
.main-large {
    font-size: var(--fs36);
}
.fv h1 .main-ttl .en {
    margin-left: -10px;
}
/* -------------------------------- */
.prize-ttl__badge.two {
    font-size: var(--fs16);
padding: 15px 8px 13px 10px;
}
.prize-ttl__badge.two span {
    font-size: var(--fs26);
}
.prize-ttl__bar.two {
    margin-right: 40px;
}
/* -------------------------------- */
.groumet-flex .right {
    line-height: 1.4;
}
    /* ----------------footer------------------- */
    footer p {
        margin: 10px 0;
    }
/* -------------------------------- */
.campaign {
    padding: 38px 20px;
}
    .campaign-container {
    padding: 35px 16px 20px;
}
.campaign-copy {
    margin: 30px auto 25px;
}
.campaign-copy__sub {
    font-size: 15px;
}
.campaign-blue_txt {
    font-size: 15px;
}
.campaign-note-list li {
    margin-left: 5px;
}
/* -------------------------------- */
.work-sheet-container {
    padding: 20px;
}
.work-sheet-bottom {
        padding-top: 65px;
    padding-bottom: 65px;
    clip-path: ellipse(207% 100% at 50% 100%);
}
.survey-question__choices {
    grid-template-columns: repeat(2, 1fr);
}
.survey-question__choices button {
    padding: 8px;
}

/* -------------------------------- */
.form-group {
    font-size: var(--fs18);
}
.form-row--2col {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.form-row--2col input:first-child {
    margin-bottom: 0;
}
.form-group.address input {
    width: 100%;
}
.btn-submit {
    width: 100%;
        margin: 50px auto 0;
}
/* -------------------------------- */
.proposal h2 {
font-size: var(--fs30);
}
.proposal_btn {
    max-width: 320px;
    margin: 40px auto 0;
}
/* -------------------------------- */
.work-sheet h2 {
    padding: 10px 0 18px;
    line-height: 1.2;
}
.work-sheet h2 .sub-ttl {
font-size: 11.5px;
}
.work-sheet h2 .main-ttl {
    font-size: var(--fs20);
}
.work-sheet h2 .main-large {
    font-size: var(--fs36);
}
.work-sheet h2 .main-ttl .en {
    margin-left: -5px;
}
/* -------------------------------- */
.pass-note {
    font-size: var(--fs16);
}
.form-group input::placeholder,
.form-group select::placeholder,
select option:nth-of-type(1) {
    font-size: 88%;
}
.select-wrap select {
        font-size: 88%;
}
/* -------------------------------- */
footer {
    padding: 30px 20px;
    background: var(--navy);
    color: var(--white);
}
}