:root {
    --black: #111111;
    --white: #fff;
    --dot-grey: #CACACA;
    --navy: #0F4492;
    --yellow-marker: #F7D23B;

    /* Gradient */
    --gradient-blue: linear-gradient(104deg,
            #346EC3 0%,
            #0B3D86 100%);
    --gradient-navy: linear-gradient(180deg,
            #346EC3 0%,
            #021B32 100%);
    --gradient-gold: linear-gradient(140deg,
            #E6D489 0%,
            #C4AA41 100%);
    --gradient-yellow: linear-gradient(90deg,
            #FFE26C 0%,
            #F7D23B 100%);
    --gradient-silver: linear-gradient(180deg,
            #FFFFFF 0%,
            #DEDEDE 100%);

    /* Pattern */
    --pattern-grid-blue:
        linear-gradient(rgba(15, 68, 146, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(15, 68, 146, 0.06) 1px,
            transparent 1px);

    --pattern-grid-size: 24px 24px;

    --font-base: "Noto Sans JP", sans-serif;
    --font-en: "Inter", sans-serif;
    --font-balrow: "Barlow", sans-serif;
}
/* ==================================================
    全体CSS
================================================== */
html {
    scroll-behavior: smooth;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: var(--font-base);
    font-size: clamp(16px, 1.5vw, 18px);
}
a {
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.inner1163 {
    max-width: 1163px;
    margin: 0 auto;
}
.inner1015 {
    max-width: 1015px;
    margin: 0 auto;
}
.inner1095 {
    max-width: 1095px;
    margin: 0 auto;
}
.inner1015_b {
    max-width: 1015px;
}
.txt-center {
    text-align: center;
}
.navy {
    color: var(--navy);
}
.a_border {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.fs26 {
    font-size: clamp(22px, 2vw, 26px);
}
.fs36 {
    font-size: clamp(30px, 2.4vw, 36px);
}
.w_bold {
    font-weight: bold;
}
span.fv_marker {
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 68%,
            var(--yellow-marker) 58%,
            var(--yellow-marker) 100%);
}
.marker,
.marker2,
.marker3,
.marker4 {
    position: relative;
    display: inline-block;
    isolation: isolate;
}

/* 黄色いマーカー本体 */
.marker::before,
.marker2::before,
.marker3::before,
.marker4::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;

    background-color: var(--yellow-marker);

    transform: scaleX(0);
    transform-origin: left center;
}

/* 通常マーカー */
.marker::before {
    left: 0;
    right: 0;
    height: 32%;
}

/* 元の calc(100% - 20px) 相当 */
.marker2::before {
    left: 0;
    right: 20px;
    bottom: 2%;
    height: 22%;
}

/* 元の calc(100% - 10px) 相当 */
.marker3::before {
    left: 0;
    right: 10px;
    bottom: 2%;
    height: 22%;
}

/* 元の calc(100% - 24px)・中央配置相当 */
.marker4::before {
    left: 12px;
    right: 12px;
    height: 32%;
}

/* アニメーション開始 */
.result-marker.is-animated .marker::before,
.result-marker.is-animated .marker2::before,
.result-marker.is-animated .marker3::before,
.result-marker.is-animated .marker4::before {
    animation: marker-flow 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* .result-marker.is-animated .marker2::before {
    animation-delay: 0s;
} */

.result-marker.is-animated .marker3::before {
    animation-delay: 0.2s;
}

.result-marker.is-animated .marker4::before {
    animation-delay: 0.7s;
}

@keyframes marker-flow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}
@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }
    30% {
        transform: scaleX(1) translateX(0);
    }
    100% {
        transform: scaleX(1) translateX(0);
    }
    30%,
    100% {
        opacity: 1;
    }
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}
/* sticky_note_checkバージョン */
.sticky_note.check {
    width: 100%;
    margin-top: 70px;
    border: solid 4px var(--yellow-marker);
    position: relative;
}
.sticky_note.check::before {
    content: "";
    display: block;
    width: 49px;
    height: 94px;
    background-image: url(../img/icon/grey_clip.svg);
    position: absolute;
    top: -28px;
    right: 20px;
    z-index: 15;
}
.sticky_note.check::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(15px, 15px);
    background: var(--yellow-marker);
    z-index: 0;
}
.sticky_note.check .sticky_note__body {
    position: relative;
    z-index: 1;
    background:
        var(--pattern-grid-blue),
        var(--white);
    background-size: 22px 22px;
    text-align: center;
    /* padding-top: 90px; */
    padding: 90px 20px 0;
}
/* sticky_note_navyバージョン */
.sticky_note.yellow {
    position: relative;
    border: solid 4px var(--navy);
    margin-top: 50px;
    width: 100%;
}
.sticky_note.yellow::before {
    content: "";
    display: block;
    width: 49px;
    height: 94px;
    background-image: url(../img/icon/blue_clip.svg);
    position: absolute;
    top: -28px;
    right: 20px;
    z-index: 15;
}
.sticky_note.yellow::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(15px, 15px);
    background: var(--navy);
    z-index: 0;
}
.sticky_note.yellow .sticky_note__body {
    position: relative;
    z-index: 1;
    background: var(--gradient-yellow);
    text-align: center;
    /* padding: 90px 50px 50px; */
    padding: 50px 50px 50px;
}
/* sticky_note_navyバージョン（閉じ） */

/* form_btn（white） */
.form_btn {
    font-weight: bold;
    max-width: 500px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border: solid 1px #C5C5C5;
    margin: 0px auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}
.form_btn img {
    margin-right: 20px;
}
.form_btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 15px;
    background-image: url(../img/icon/black_arrow.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.btn_wrapper.ab_btn {
    padding-top: 50px;
    padding-bottom: 65px;
}
/* form_btn（blue） */
.form_btn_blue {
    max-width: 583px;
    height: 89px;
    background: var(--gradient-blue);
    color: var(--white);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    border-radius: 50vh;
    font-size: clamp(17px, 2vw, 26px);
}
.form_btn_blue span {
    font-size: clamp(20px, 2.5vw, 32px);
    margin-left: 10px;
}
.form_btn_blue::after {
    content: "";
    display: block;
    width: 10px;
    height: 15px;
    background-image: url(../img/icon/white-arrow.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}
/* form_btn_yellow */
.form_btn_yellow {
    max-width: 608px;
    height: 100px;
    background: var(--gradient-yellow);
    color: var(--black);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    border-radius: 50vh;
    font-size: clamp(17px, 2vw, 26px);
    margin: 58px auto 10px;
    scroll-margin-block-start: 130px;
}
.form_btn_yellow span {
    font-size: clamp(20px, 1.7vw, 32px);
    margin-left: 5px;
}
.form_btn_yellow::after {
    content: "";
    display: block;
    width: 14px;
    height: 21px;
    background-image: url(../img/icon/black_arrow.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 42px;
}
/* form_btn_white */
.form_btn_white {
    max-width: 608px;
    height: 100px;
    background: var(--white);
    color: #8E8E93;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    border-radius: 50vh;
    font-size: clamp(17px, 2vw, 26px);
    margin: 58px auto 32px;
    scroll-margin-block-start: 130px;
    border: none;
    box-shadow:
        inset 0 0 0 5px #A1A3A6,
        0 4px 4px rgb(0, 0, 0, 0.25);
}
.form_btn_white span {
    font-size: clamp(20px, 1.7vw, 32px);
    margin-left: 5px;
}
.form_btn_white::after {
    content: "";
    display: block;
    width: 14px;
    height: 21px;
    background-image: url(../img/icon/gray_arrow.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 42px;
}
.form_btn_yellow_guide {
    color: var(--white);
    text-align: center;
}
/* form_btn_header */
.hd_entry_btn {
    background: var(--gradient-yellow);
    border-radius: 50vh;
    position: relative;
    padding: 5px 35px 5px 30px;
}
.hd_entry_btn::after {
    content: "";
    display: block;
    width: 6px;
    height: 9px;
    background-image: url(../img/icon/black_arrow.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-41%);
    right: 15px;
}
/* ==================================================
    FV
================================================== */
.fv {
    /* background-image:
        url("../img/fv/confetti_left.png"),
        url("../img/fv/confetti_right.png");
    background-repeat:
        no-repeat,
        no-repeat;
    background-position:
        left 10% top 40px,
        right 10% top 40px;
    background-size:
        auto 100%,
        auto 100%; */
    padding: 74px 15px 0;
}
.fv_hero_wrapper {
    display: flex;
    justify-content: center;
    /* padding-top: 70px; */
    padding-top: 80px;
    position: relative;
}
.fv_middle_wrapper {
    display: flex;
}
.fv_maintxt_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fv_ttl {
    /* flex: 1; */
    text-align: center;
    transform: translateY(-50px);
}
.fv_logo img {
    object-fit: cover;
    object-position: left center;
}
/* .fv_ttl img {
    aspect-ratio: 729 / 206;
} */
.fv_txt {
    text-align: center;
    line-height: 1.9;
    /* margin-top: 85px; */
    margin-bottom: 45px;
}
.fv_txt p:nth-child(4) {
    margin-top: 40px;
}
/* fv_schedule_box */
.fv_schedule_box {
    display: flex;
    border-top: dotted 1px var(--dot-grey);
    border-bottom: dotted 1px var(--dot-grey);
    padding: 25px 0px;
}
.fv_schedule_box li {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--navy);
}
.fv_schedule_box li .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 116px;
    height: 116px;
    border-radius: 50vh;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: bold;
    line-height: 1.3;
}
.fv_schedule_box li .info {
    font-size: clamp(17px, 1.2vw, 18px);
}
.fv_info_wrapper {
    display: flex;
    justify-content: center;
}
/* 1番目 */
.fv_schedule_box li:first-child {
    font-weight: bold;
}
.fv_schedule_box li:first-child .circle {
    background: var(--gradient-blue);
    color: var(--white);
}
.fv_schedule_box li:first-child .info .year {
    font-size: clamp(20px, 2vw, 28px);
}
.fv_schedule_box li:first-child .info .year span {
    font-size: clamp(18px, 1.8vw, 24px);
}
.fv_schedule_box li:first-child .info .date {
    font-size: clamp(16px, 2vw, 22px);
}
.fv_schedule_box li:first-child .info .date span {
    font-size: clamp(27px, 2vw, 38px);
}
.fv_schedule_box li:first-child .info .date small {
    font-size: inherit;
    margin-left: -12px;
}
@media screen and (max-width: 768px) {
    .fv_schedule_box li:first-child .info .date {
    font-size: clamp(14px, 2vw, 22px);
}
    .fv_schedule_box li:first-child .info .date small {
    font-size: inherit;
    margin-left: -6px;
}
}
/* 2番目 */
.fv_schedule_box li:nth-child(2) .circle {
    font-size: clamp(15px, 1.65vw, 21px);
    flex-direction: column;
    background: var(--gradient-gold);
    color: var(--black);
}
.fv_schedule_box li:nth-child(2) .circle .label .small {
    display: inline-block;
    font-weight: 500 !important;
}
.fv_schedule_box li:nth-child(2) .number {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: bold;
}
.fv_schedule_box li:nth-child(2) .number span {
    font-size: clamp(28px, 3vw, 40px);
}
.fv_schedule_box li:nth-child(2) a {
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    position: relative;
    z-index: 20;
}
.fv_schedule_box li:nth-child(2) .txt {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
}
.fv_schedule_box li:nth-child(2) a::before {
    content: "▼";
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-right: 2px;
}

.fv_bottom_people img {
    transform: translate(-40px, -40px);
}

.confetti_left_bottom {
    transform: translate(-50%, 37%);
}
.confetti_right_bottom {
    /* transform: translate(5%, 144%); */
    transform: translate(61%, 143%);
}
.fv_left_people {
    position: absolute;
    bottom: -2%;
    left: 6%;
}
.fv_right_people {
    position: absolute;
    bottom: -9%;
    right: 3%;
}
.fv_right_people img {
    transform: scale(1.1);
}

/* ==================================================
    about
================================================== */
.about_monia {
    position: relative;
    background: var(--gradient-blue);
    clip-path: polygon(0px 0%, 64% 12%, 100% 0px, 100% 91%, 37% 100%, 0px 90%);
    padding: 129px 15px 180px;
    margin-top: -356px;
    z-index: 10;
    --line-scale: 0;
}
.about_monia::before {
    content: "";
    position: absolute;
    top: 213px;
    left: 0;

    width: calc((100vw - 1540px) / 2 + 164px);
    height: 6px;
    background: var(--yellow-marker);

    transform: scaleX(var(--line-scale));
    transform-origin: left center;
}
h2.ttl_v2 {
    color: var(--white);
    display: flex;
    align-items: flex-end;
    font-size: clamp(20px, 3vw, 46px);
    font-weight: 900;
    line-height: 0.6;
    letter-spacing: 5%;
    padding-top: 60px;
}
h2.ttl_v2 .span1 {
    font-size: clamp(36px, 4vw, 72px);
}
h2.ttl_v2 .span2 {
    font-size: clamp(16px, 2.5vw, 30px);
}
.about_sticky_txt {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.7;
}
/* 1番目 */
.about_sticky_txt p:first-child span {
    color: var(--navy);
    font-size: clamp(24px, 2vw, 28px);
    font-weight: bold;
}
/* 2番目 */
.about_sticky_txt p:nth-child(2) strong {
    font-size: clamp(20px, 2vw, 26px);
}
/* 3番目 */
.about_sticky_txt p:nth-child(3) {
    margin-top: 50px;
}
/* 4番目 */
.about_sticky_txt p:nth-child(4),
.about_sticky_txt p:nth-child(4) small {
    font-size: clamp(16px, 1.5vw, 24px);
}
.about_sticky_txt p:nth-child(4) span {
    font-size: clamp(26px, 3vw, 42px);
}
.about_sticky_txt>div span {
    font-size: clamp(26px, 3vw, 42px);
}
.about_sticky_txt p:nth-child(5) {
    font-size: clamp(24px, 2.5vw, 34px);
}
.about_sticky_txt .bottom_txt span {
    font-size: clamp(24px, 2.5vw, 34px);
}
/* ==================================================
    campaign
================================================== */
.campaign {
    background: var(--pattern-grid-blue);
    background-size: 22px 22px;
    padding: 159px 15px 115px;
    margin-top: -100px;
    position: relative;
}
.campaign_line {
    position: absolute;
    top: 4%;
    left: 50%;
    width: 6px;
    height: 90px;
    background: var(--yellow-marker);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
}
.campaign_txt {
    color: var(--navy);
    font-size: clamp(16px, 1.9vw, 22px);
    line-height: 1.65;
    text-align: center;
    margin-top: 25px;
    font-weight: 500;
}
.yellow_guidelines_box li {
    display: grid;
    grid-template-columns: 34% 60%;
    align-items: center;
    letter-spacing: 0.1em;
}
.yellow_guidelines_box li>div:nth-child(2) {
    font-weight: 500;
    text-align: left;
    margin-left: 35px;
}
.yellow_guidelines_box li:first-child {
    border-bottom: solid 1px #000;
    padding-bottom: 29px;
}
.yellow_guidelines_box li:not(:first-child) {
    padding-top: 29px;
}

.yellow_guidelines_box li>div:first-child {
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.yellow_guidelines_box li>div:first-of-type::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: #000;
}
.yellow_guidelines_box li:nth-child(2)>div:first-of-type::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    width: 1px;
    height: 120px;
    background: #000;
    transform: translateY(-50%);
}
.yellow_guidelines_box .white_circle {
    width: 74px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50vh;
}
.yellow_guidelines_box li>div:nth-child(2) {
    /* font-size: clamp(18px, 1.9vw, 25px); */
    font-size: clamp(16px, 1.6vw, 24px);
    line-height: 1.5;
}
.yellow_guidelines_box li>div:nth-child(2) span {
    font-family: var(--font-balrow);
    font-size: clamp(22px, 2vw, 32px);
}
.yellow_guidelines_box li>div:nth-child(2) small {
    display: block;
    margin-top: 15px;
}
/* yellow_guidelines_box_bottom */
.yellow_guidelines_box_bottom {
    display: grid;
    grid-template-columns: 26% 70%;
    align-items: center;
    letter-spacing: 0.1em;
}
.yellow_guidelines_box_bottom li:first-child {
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.yellow_guidelines_box_bottom li:nth-of-type(2) {
    position: relative;
    padding-left: 35px;
}
.yellow_guidelines_box_bottom li:nth-of-type(2)>.step_item {
    font-size: clamp(16px, 1.6vw, 26px);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
    letter-spacing: 0;
}
.yellow_guidelines_box_bottom li:nth-of-type(2)>.step_item:last-of-type {
    padding-top: 45px;
}
.yellow_guidelines_box_bottom li:nth-of-type(2)>.step_item p {
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
}
.yellow_guidelines_box_bottom li:nth-of-type(2):before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: #000;
}
.yellow_guidelines_box li>div:nth-child(2) small {
    font-size: 100%;
}
.yellow_guidelines_box_bottom .white_circle {
    width: 74px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50vh;
}
/* .white_circle.step {
    width: 101px;
    height: 101px;
    color: var(--navy);
    flex-direction: column;
    font-family: var(--font-balrow);
    font-size: clamp(14px, 1.7vw, 23px);
    font-weight: bold;
    line-height: 0.9;
}
.white_circle.step span {
    display: block;
font-size: clamp(33px, 4vw, 54px);
} */
/* form_btn_blue */
.campaign .form_btn_blue {
    margin: 45px auto 46px;
}
/* 花吹雪 */
.campaign_left_confetti {
    position: absolute;
    left: 9.5%;
    top: 22%;
    transform: scale(1.15);
}
.campaign_right_confetti {
    position: absolute;
    right: 9.5%;
    top: 19%;
    transform: scale(1.15);
}
.campaign_bottom_people {
    position: absolute;
    bottom: 0%;
    left: 1%;
    z-index: 20;
}

/* ==================================================
    present
================================================== */
#present {
    scroll-margin-top: 60px;
}
.present {
    background: var(--gradient-blue);
    position: relative;
    padding: 30px 15px 80px;
    text-align: center;
}
.present::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/present/gold_left_ribon.svg);
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 250px;
    height: 179px;
}
.present::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/present/gold_right_ribon.svg);
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 179px;
}
/* award_item_box */
.award_item_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
    row-gap: 60px;
    margin-top: 15px;
}
.award_item_box li {
    width: calc((100% - 50px) / 2);
}
.award_item_box li>div {
    background-repeat: no-repeat;
}
/* MONIA賞 */
.monia_prize,
.special_prize {
    position: relative;
}
/* .award_item_box li:first-child img,
.award_item_box li:nth-child(2) img {
    width: 100%;
    height: auto;
} */
/* 特別賞 */

/* 感謝賞 */
.award_item_box li:last-child {
    display: flex;
    gap: 55px;
    justify-content: center;
    align-items: center;
    width: 887px;
    background: #E9F2FF;
    border: solid 5px #9CC2FB;
    border-radius: 25px;
    padding: 35px;
    position: relative;
}
.award_item_box li:last-child .giveaway {
    position: relative;
}
.award_item_box li:last-child .giveaway p {
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.award_item_box li:last-child .detail {
    text-align: center;
}
.award_item_box li:last-child .detail p {
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 500;
    line-height: 1.6;
    margin-top: 22px;
}
.award_item_box li:last-child .detail p span {
    font-size: clamp(26px, 2vw, 36px);
    font-weight: bold;
}
.award_item_box li:last-child .detail .note {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
}
.ribbon1 {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: fit-content;
    height: 64px;
    /*リボンの高さ*/
    line-height: 50px;
    /*リボンの高さ*/
    text-align: center;
    padding: 0 4.5rem;
    background: var(--navy);
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}
.ribbon1:before,
.ribbon1:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}
.ribbon1:before {
    top: 0;
    left: -0.5px;
    border-width: 32px 0px 32px 8px;
    border-color: transparent transparent transparent #E9F2FF;
    border-style: solid;
}
.ribbon1:after {
    top: 0;
    right: -0.5px;
    border-width: 32px 8px 32px 0px;
    border-color: transparent #E9F2FF transparent transparent;
    border-style: solid;
}

/* present_circle */
.pre_circle {
    width: 135px;
    height: 137px;
    background: url(../img/present/pre_prize_circle.svg);
    display: flex;
    color: var(--navy);
    font-size: 53.7px;
    font-weight: bold;
    position: absolute;
    top: -14%;
    left: -4%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.pre_circle.monia,
.pre_circle.special {
    top: 2%;
}
.pre_circle.monia {
    background: url(../img/present/monia_prize_circle.svg);
}
.pre_circle.special {
    background: url(../img/present/special_prize_circle.svg);
}
.pre_circle p {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 0.8;
    transform: translateY(-5px);
}
.pre_circle.thanks p {
    transform: translateY(-3px);
}
.pre_circle span {
    font-size: clamp(16px, 1.5vw, 20px);
}

.present .bottom_text {
    color: var(--white);
    font-size: 18px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .pre_circle {
        width: 110px;
        height: 112px;
        background-size: cover;
        font-size: 44px;
        top: -7%;
    }
    .pre_circle.monia,
    .pre_circle.special {
        background-size: cover;
        top: 10px;
        left: -3%;
    }
    .present .bottom_text {
        font-size: 12px;
        margin-top: 15px;
    }
    .award_item_box li:first-child img,
.award_item_box li:nth-child(2) img {
    width: 100%;
    height: auto;
}
}


/* ==================================================
    design_image
================================================== */
.design_image_wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    transform: translateX(40px);
}
.design_image_box {
    margin: 0 auto;
}
.design_image {
    padding-top: 25px;
    padding-bottom: 114px;
    background-image: var(--pattern-grid-blue);
    background-size: 24px 24px;
    background-color: var(--white);
}
.design_image_txt {
    text-align: center;
    line-height: 2.2;
    margin-top: 30px;
    /* margin-bottom: 65px; */
}
/* ==================================================
    entry-guidelines
================================================== */
.entry-guidelines {
    position: relative;
    background: var(--gradient-blue);
    position: relative;
    padding-top: 110px;
    padding-bottom: 72px;
    clip-path: polygon(0 0,
            64% 130px,
            100% 0,
            100% 100%,
            0 100%);
    margin-top: -130px;
    --line-scale: 0;
}
.entry-guidelines::before {
    content: "";
    position: absolute;
    top: 184px;
    left: 0;
    width: calc((100vw - 1477px) / 2 + 164px);
    height: 6px;
    background: var(--yellow-marker);
    transform: scaleX(var(--line-scale));
    transform-origin: left center;
}
/* .entry-guidelines::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 420px;
    background: var(--gradient-blue);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        70% 100%,
        50% 82%,
        30% 100%,
        0 100%
    );
    z-index: 0;
} */
.entry_pc_only {
    display: list-item;
}
.entry_link {
    color: var(--navy);
}
@media screen and (max-width: 768px) {
    .entry_pc_only {
        display: none !important;
    }
}

.terms_scroll {
    width: 100%;
    background-image: var(--pattern-grid-blue);
    background-size: 24px 24px;
    background-color: var(--white);
    margin-top: 80px;
    padding: 40px 15px 43px 80px;
}
.terms {
    height: 471px;
    overflow-y: auto;
    padding-right: 30px;
    line-height: 1.8;
    padding-top: 33px;
    padding-bottom: 30px;
}
.terms h2 {
    color: var(--navy);
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-bottom: solid 1px var(--navy);
}
.terms .txt {
    font-size: clamp(14px, 1.2vw, 16px);
    margin-top: 25px;
}
.terms .txt p {
    margin-bottom: 50px;
}
.terms_list {
    list-style-type: decimal !important;
    padding-left: 1.5em;
}
.terms_list li {
    display: list-item;
    margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
    .terms_list {
    padding-left: 2em;
}
}
/* スクロールバー */
.terms::-webkit-scrollbar {
    width: 24px;
    position: absolute;
    top: 50%;
    right: 15px;
}
.terms::-webkit-scrollbar-track {
    background: #EEEEEE;
    border-radius: 999px;
}
.terms::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 999px;
    border: 4px solid #EEEEEE;
}
/* スクロールバー（閉じ） */

/* ==================================================
    entry-guidelines
================================================== */
.entry-guidelines .sticky_note.check .sticky_note__body {
    text-align: left;
    letter-spacing: 5%;
    padding: 90px 70px 0;
}
.entry_ttl_wrapper {
    border-bottom: solid 1pX #C5C5C5;
    margin-bottom: 40px;
}
.entry_sub_ttl {
    color: var(--white);
    font-size: clamp(16px, 1.5vw, 22px);
    margin-top: 40px;
}
.entry-guidelines .sticky_note__body>ul>li:not(:first-child) {
    margin-top: 65px;
}
/* .entry-guidelines .sticky_note__body>ul>li:nth-child(2) p {
    margin-bottom: 5px;
} */
.entry-guidelines h4 {
    text-align: center;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    max-width: 234px;
    padding: 10px;
    border: 1px solid #C5C5C5;
    border-bottom: none;
    position: relative;
    letter-spacing: 10%;
}
.entry-guidelines h4.form_h4 {
    max-width: 300px;
}
.entry_ttl_wrapper .detail {
    text-align: left;
}
/* entry_guide_list */
.entry_guide_list li>div:nth-child(2) {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.8;
}
/* .dot-list */
.dot-list {
    padding-left: 1.5em;
    list-style: disc;
    list-style-position: outside;
}
.dot-list li::marker {
    font-size: 0.75rem;
}
/* entry_work */
.entry_work .detail {
    display: flex;
    gap: 20px;
}
.entry_work .detail .dot-list {
    flex: 1;
}
.entry_g_people {
    margin-top: 73px;
}
/* ==================================================
    table
================================================== */

.prize-table {
    width: 100%;
    text-align: center;
    background: var(--white);
}
.prize-table th {
    background: var(--navy);
    color: var(--white);
    border-right: solid 1px var(--white);
    padding: 10px 15px;
    text-align: center;
}
.prize-table td {
    border: solid 1px #B3B3B3;
    vertical-align: middle;
    padding: 15px;
    text-align: center;
}
.prize-table td:nth-child(1) {
    background: #D3E4FE;
}
.prize-table th:last-child {
    border-right: solid 1px var(--navy);
}
@media screen and (max-width: 768px) {
    .table-wrap {
        overflow-x: auto;
    }
}

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

footer {
    background: #F0F0F0;
    display: flex;
    gap: 23px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 37px 0 21px;
    text-align: center;
}
footer small {
    font-size: 14px;
    color: #4B4B4B;
}

@media (max-width: 768px) {
    /* 全体CSS */
    .sticky_note.check {
        width: 97%;
    }
    h2.ttl_v2 {
        margin-left: 2rem;
    }
    /* fv */
    .fv_hero_wrapper {
        padding-top: 10px;
        background-image:
        url("../img/fv/fv_sp_left_confetti.png"),
        url("../img/fv/fv_sp_right_confetti.png");
    background-repeat: no-repeat, no-repeat;
 background-position: left 52%, right 69%;
    background-size: auto, auto;
    }
    .fv_sp_tool {
        position: absolute;
        top: 0;
        left: 0;
    }
    .fv_sp_tool img {
        width: 100%;
        height: auto;
    }
    .fv {
        /* background: url(../img/fv/fv_top_confetti.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center 85px; */
    }
    .fv_logo img {
        width: 76px;
        height: 12px;
    }
    .fv_ttl {
        transform: translateY(-28px);
    }
    .fv_ttl img {
        width: 100%;
        height: auto;
    }
    .fv_schedule_box {
        flex-direction: column;
    }
    .fv_schedule_box li .circle {
        width: 81px;
        height: 81px;
    }
    .fv_schedule_box li:nth-child(2) img {
        width: 31px;
        height: 27px;
    }
    .fv_schedule_box li:nth-child(2) .txt {
        font-size: 14px !important;
    }
    .fv_schedule_box li:nth-child(2) a {
        font-size: 14px;
    }
    .fv_txt {
        margin-top: -30px;
        margin-bottom: 25px;
    }
    .fv_txt p:nth-child(4) {
        margin-top: 34px;
    }
    .fv_left_people {
        position: absolute;
        bottom: 5%;
        left: -4%;
    }
    .fv_left_people img {
        width: 66px;
        height: 107px;
    }
    .fv_right_people {
        position: absolute;
        bottom: -7%;
        right: -6%;
        z-index: 10;
    }
    .fv_right_people img {
        width: 113px;
        height: 106px;
    }
    .fv_bottom_people {
        overflow: hidden;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
    .fv_bottom_people img {
        transform: scale(1.1) translateX(4px);
        width: 100%;
        height: auto;
    }
    .fv_info_wrapper {
        position: relative;
    }
    .confetti_left_bottom {
        position: absolute;
        left: 0;
        bottom: 38%;
        transform: none;
        width: 42px;
        height: 18.6px;
    }
    .confetti_right_bottom {
        position: absolute;
        right: 0;
        bottom: 29%;
        transform: none;
        width: 42px;
        height: 58.7px;
        rotate: -37deg;
    }
    /* about */
    .about_monia {
        clip-path: polygon(0px 0%, 67% 3%, 100% 0px, 100% 90%, 35% 94%, 0px 90%);
        padding: 30px 15px 143px;
        margin-top: -85px;
    }
    .about_monia::before {
        top: 101px;
        /* width: calc((100vw - 631px) / 2 + 164px); */
        width: 8%;
        height: 3px;
    }
    .sticky_note.check .sticky_note__body {
        background-size: 20px 20px;
        padding: 55px 10px 0;
    }
    .about_sticky_txt p:nth-child(3) {
        margin-top: 30px;
    }
    .about_sticky_txt {
        letter-spacing: -0.07em;
    }
    .form_btn {
        max-width: 293px;
        font-size: 14px;
        height: 59px;
    }
    .form_btn::after {
        width: 6px;
        height: 9px;
    }
    .form_btn img {
        margin-right: 7px;
    }
    .btn_wrapper.ab_btn {
        padding-top: 26px;
        padding-bottom: 44px;
    }
    .btn_wrapper.ab_btn img {
        width: 115px;
        height: 18px;
    }
    /* campaign */
    .campaign {
        background-size: 20px 20px;
    }
    .sticky_note.yellow {
        width: 96%;
        margin-top: 34px;
    }
    .sticky_note.yellow {
        margin-top: 35px;
    }
    .sticky_note.yellow .sticky_note__body {
        padding: 22px 16px;
    }
    .campaign_txt {
        margin-top: 20px;
    }
    .yellow_guidelines_box li>div:first-child {
        justify-content: center;
    }
    .yellow_guidelines_box li>div:first-of-type::after {
        display: none;
    }
    .yellow_guidelines_box li>div:nth-child(2) {
        text-align: center;
    }
    .yellow_guidelines_box li {
        grid-template-columns: 100%;
    }
    .campaign {
        margin-top: -201px;
        padding: 159px 15px 78px;
    }
    .campaign_line {
        height: 132px;
    }
    .campaign_ttl img {
        width: 341px;
        height: 156px;
    }
    .yellow_guidelines_box .white_circle {
        width: 51px;
        height: 51px;
    }
    .yellow_guidelines_box>li:nth-child(1) .white_circle img {
        width: 29px;
        height: 30px;
    }
    .yellow_guidelines_box>li:nth-child(2) .white_circle img {
        width: 33px;
        height: 22px;
    }
    .yellow_guidelines_box li>div:nth-child(2) {
        margin-left: 0px;
        line-height: 1.5;
    }
    .yellow_guidelines_box li>div:nth-child(2) small {
        letter-spacing: -0.009em;
    }
    .sticky_note.yellow::before {
        width: 36px;
        height: 69px;
        background-image: url(../img/icon/blue_clip.svg);
        background-size: cover;
        position: absolute;
        top: -20px;
        right: 5px;
        z-index: 15;
    }
    .yellow_guidelines_box li {
        gap: 15px;
    }
    .blue_arrow {
        margin-top: 10px;
    }
    .yellow_guidelines_box_bottom li:nth-of-type(2)>.step_item:last-of-type {
        padding-top: 20px;
    }
    .form_btn_blue::after {
        transform: translateY(-41%);
        right: 1.2rem;
    }
    /* 応募方法 */
    .yellow_guidelines_box_bottom {
        grid-template-columns: 100%;
    }
    .yellow_guidelines_box_bottom li:first-child {
        justify-content: center;
    }
    .yellow_guidelines_box_bottom li:nth-of-type(2):before {
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #000;
    }
    .yellow_guidelines_box_bottom .white_circle {
        width: 51px;
        height: 51px;
    }
    .yellow_guidelines_box_bottom .white_circle img {
        width: 28px;
        height: 30px;
    }
    /* .white_circle.step {
        width: 63px;
        height: 63px;
        gap: 3px;
    } */
    .yellow_guidelines_box_bottom li:nth-of-type(2) {
        position: relative;
        padding-left: 0px;
        padding-top: 25px;
    }
    .yellow_guidelines_box_bottom li:nth-of-type(2)>.step_item {
        padding: 13px 0 0;
        gap: 15px;
    }
    .yellow_guidelines_box li>div:nth-child(2) small {
        font-size: 85%;
    }
    .campaign_bottom_people {
        width: 110px;
        height: 127px;
        bottom: 0.5%;
        left: 1%;
    }
    .campaign .form_btn_blue {
        margin: 42px auto 43px;
    }
    .form_btn_blue {
        max-width: 583px;
        height: 60px;
        background: var(--gradient-blue);
        color: var(--white);
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        position: relative;
        border-radius: 50vh;
        font-size: clamp(17px, 2vw, 26px);
        letter-spacing: -0.02em;
    }
    .form_btn_blue::after {
        width: 7px;
        height: 11px;
    }
    .form_btn_blue span {
        margin-left: 6px;
        margin-right: 10px;
    }
    .blue_arrow img {
        width: 30px;
        height: 29px;
    }
    /* present */
    .present::before {
        width: 137px;
        height: 98px;
        background-size: cover;
    }
    .present::after {
        width: 137px;
        height: 98px;
        background-size: cover;
    }
    .present_ttl img {
        width: 100%;
        height: auto;
    }
    .award_item_box {
        flex-direction: column;
        row-gap: 30px;
    }
    .award_item_box li {
        width: 100%;
    }
    /* --MONIA賞 */
    /* .monia_prize {
        width: 100%;
        height: 607px;
        background-image: url(../img/present/moniaprize_sp.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .special_prize {
        width: 100%;
        height: 508px;
        background-image: url(../img/present/specialprize_sp.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    } */
    .award_item_box li:last-child {
        width: 100%;
        flex-direction: column;
        margin-top: 28px;
        padding: 35px 10px;
    }
    .award_item_box li:last-child .detail p:nth-child(2) {
        margin-top: 15px;
    }
        .award_item_box li:last-child .detail p:nth-child(3) {
        margin-top: 5px;
        margin-bottom: 2px;
    }
    .award_item_box li:last-child img {
        transform: translateX(10px);
    }
    .ribbon1 {
        height: 47px;
        padding: 0 2rem;
        transform: translateX(2px);
    }
    .ribbon1:before {
        border-width: 23px 0px 24px 8px;
    }
    .ribbon1:after {
        right: -1px;
        border-width: 23px 8px 24px 0px;
    }
    /* design_image */
    .design_image_wrapper {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        flex-direction: column;
        transform: none;
    }
    .design_image {
        text-align: center;
        display: block;
        padding-top: 60px;
        position: relative;
        padding-bottom: 92px;
        background-size: 20px 20px;
    }
    .design_image::before {
        content: "";
        display: block;
        width: 100%;
        height: 377px;
        background: url(../img/design_img/design_confetti_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 2%;
        left: 0;
    }
    .design_image_txt {
        line-height: 2.3;
    }
    .desing_image_ttl {
        padding: 0 2rem;
    }
    .design_eraser_sp {
        padding-right: 1rem;
    }
    .desing_image_ttl img {
        /* width: 308px;
        height: 58px; */
        width: 100%;
        height: auto;
        max-width: 308px;
    }
    .design_image_ex img {
        width: 363px;
        height: 26px;
    }
    /* entry-guidelines */
    .enttry_ttl_v2 {
        font-size: clamp(36px, 2.5vw, 46px) !important;
        font-weight: bold !important;
        margin-left: 13%;
    }
    .entry_sub_ttl {
        margin-top: 40px;
    }
    .sticky_note.check {
        margin-top: 28px;
    }
    .sticky_note.check::before {
        width: 36px;
        height: 68.9px;
        background-size: cover;
        top: -22px;
        right: 4px;
    }
    .entry-guidelines {
        clip-path: polygon(0 0,
                66% 27px,
                100% 0,
                100% 100%,
                0 100%);
        padding: 27px 15px 24px;
        margin-top: -89px;
    }
    .entry-guidelines::before {
        /* width: calc((100vw - 618px) / 2 + 164px); */
        width: 8%;
        height: 3px;
        top: 100px;
    }
    .entry-guidelines .sticky_note__body>ul>li:not(:first-child) {
        margin-top: 45px;
    }
    .entry-guidelines h4 {
        width: fit-content;
        padding: 10px 20px;
    }
    .entry_ttl_wrapper {
        margin-bottom: 17px;
    }
    .work_regulation {
        width: 100%;
        height: auto;
    }
    .entry_g_people {
        margin-top: 50px;
    }
    .entry_g_people img {
        width: 100%;
        height: auto;
    }
    .entry-guidelines .sticky_note.check .sticky_note__body {
        padding: 54px 17px 0;
    }
    .entry_work .detail {
        flex-direction: column;
    }
    .terms_scroll {
        padding: 27px 5px 35px 29px;
        /* overflow-x: hidden; */
        overflow-wrap: break-word;
        word-break: break-word;
        margin-top: 63px;
    }
    .terms {
        height: 492px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 30px;
    }
    .terms h2 {
        margin-bottom: 30px;
    }
    .terms .txt p {
        margin-bottom: 40px;
    }
    .form_btn_yellow {
        max-width: 305px;
        height: 60px;
        margin: 40px auto 0;
    }
    .form_btn_yellow::after {
        width: 7px;
        height: 10px;
    }
     .form_btn_white {
        max-width: 305px;
        height: 60px;
        margin: 30px auto 0;
    }
    .form_btn_white::after {
        width: 7px;
        height: 10px;
    }
    .form_btn_yellow_guide {
        font-size: 12px;
        margin-top: 15px;
    }
    .form_btn_yellow {
        justify-content: center;
        max-width: 295px;
        height: 60px;
        /* padding-left: 30px; */
        margin: 30px auto 0;
    }
    .form_btn_yellow::after {
        right: 17px;
    }
    /* スクロールバー */
    /* .terms::-webkit-scrollbar {
        width: 18px;
        position: absolute;
        top: 50%;
        right: 15px;
    }
    .terms::-webkit-scrollbar-thumb {
        background: var(--navy);
        border-radius: 999px;
        border: 4px solid #EEEEEE;
    } */
    /* table */
    .prize-table {
        width: 100%;
        width: 564px;
        text-align: left;
        background: var(--white);
    }
    /* スクロールバー */
    .table-wrap {
        padding-bottom: 14px;
    }
    /* .table-wrap::-webkit-scrollbar {
        height: 26px;
        position: absolute;
        top: 50%;
        right: 15px;
    }
    .table-wrap::-webkit-scrollbar-track {
        background: #D9D9D9;
        border-radius: 999px;
    }
    .table-wrap::-webkit-scrollbar-thumb {
        background: #F5F4F4;
        border-radius: 999px;
        border: 5px solid #D9D9D9;
    } */
    /* footer */
    footer small {
        font-size: 12px;
    }
}


/* 標準アニメーション準備 */
.ani {
    /* もとは1s */
    transition: 0.8s all ease-out;
}
.ani.ani--fast {
    transition: 0.3s all ease-out;
}
.ani.ani_fade {
    opacity: 0;
}
.ani.ani_fade.move {
    opacity: 1;
}
.ani.ani_fadeup {
    opacity: 0;
    position: relative;
    top: 100px;
}
.ani.ani_fadeup.move {
    opacity: 1;
    top: 0;
}
.ani.ani_fadeup2 {
    opacity: 0;
    position: relative;
    top: 40px;
}
.ani.ani_fadeup2.move {
    opacity: 1;
    top: 0;
}

@media screen and (max-width: 768px) {
    .table-wrap::-webkit-scrollbar,
    .table-wrap::-webkit-scrollbar-track,
    .table-wrap::-webkit-scrollbar-thumb,
    .terms::-webkit-scrollbar,
    .terms::-webkit-scrollbar-track,
    .terms::-webkit-scrollbar-thumb {
        all: unset;
    }
}