@charset "UTF-8";
/* ============================================== */
/*                    共通設定                    */
/* ============================================== */
:root{
    /* 色 */
    --txtColor: #000;
    --main_navy: #001e64;
    --main_red: #ea5548;
    --bg_red: #ffbda5;
    --bg_yellow: #fafde0;
    /* フォント */
    --ff_notoSans: "Noto Sans JP", serif;
    --ff_zenKakuGoNew: "Zen Kaku Gothic New", sans-serif;
    /* 幅・高さ */
    --baseMargin: 75px;
    --baseRadius: 50px;
}

body{
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    color: var(--main_navy);
    font-family: var(--ff_zenKakuGoNew);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-all;
}
figure,
img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
a{transition: .3s;}
a:hover{opacity: 0.7;}
a[href*=tel]{pointer-events: none;}
textarea{resize: none;}
.inner{
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}
.flex{display: flex;}
.pc_cont{display: block !important;}
.sp_cont{display: none !important;}

/* ============================================== */
/*            スクロールアニメーション            */
/* ============================================== */
.scrollin {
    visibility: hidden;
    opacity: 0;
    transition: .8s;
}
.scrollin.bottom {transform: translateY(30px);}
.scrollin.bottom.active{
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}
/* トースト */
.success_msg{
    position: fixed;
    z-index: 10;
    inset: 10% 0 auto 0;
    margin: auto;
    display: inline-block;
    width: fit-content;
    padding: 0.5em .7em 0.4em 1em;
    background: var(--main_red);
    color: #fff;
    font-weight: 700;
    border: 3px solid #fff;
    border-radius: 15px;
    display: none;
}
/* ============================================== */
/*                    フッター                    */
/* ============================================== */
.logo{
    max-width: 620px;
    margin: 0 auto;
}
footer{
    position: relative;
    z-index: 1;
    padding: 80px 0 20px;
}
footer .copy{
    font-size: 0.6em;
    font-weight: 400;
    text-align: center;
    color: var(--txtColor);
}
footer .logo{margin: 0 auto 40px;}


/* -----------------------------------------------------------
タイマー設定
----------------------------------------------------------- */
/* CP切替 */
figure.finished{
    position: relative;
    z-index: 0;
}
figure.finished::before{
    position: absolute;
    z-index: 1;
    inset: -100%;
    margin: auto;
    content: '';
    width: min(19vw, 250px);
    height: auto;
    aspect-ratio: 250/125;
    background: url(../img/_timer/is_finished.jpg) no-repeat center / contain;
}
.kv figure.finished::before{width: min(12.5vw, 200px);}
/* CP終了時 */
.cp_finished{
    position: relative;
    z-index: 0;
    /* pointer-events: none; */
}
.cp_finished::before,
.cp_finished::after{
    position: fixed;
    inset: -100%;
    margin: auto;
    content: '';
    display: block;
}
.cp_finished::before{
    z-index: 20;
    width: 100vw;
    height: 100vh;
    background: #858585;
    opacity: .7;
    pointer-events: none;
}
.cp_finished::after{
    z-index: 21;
    width: min(70%, 1050px);
    height: auto;
    aspect-ratio: 1046 / 83;
    background: url(../img/_timer/cp_finished_pc.svg) no-repeat center / contain;
}
.cp_finished a{pointer-events: none !important;}
.cp_finished figure.finished::before{display: none !important;}
/* ============================================== */
/*                       KV                       */
/* ============================================== */
.kv{
    position: relative;
    z-index: 1;
    background: var(--bg_red);
}
/* top */
.kv header{
    margin: 0 auto 35px;
    padding: 35px 0 0;
}
.kv .kv_top{
    background: url(../img/kv/bg_kvTop.png) no-repeat center bottom / cover;
    margin: 0 0 65px;
    padding: 0 0 80px;
}
.kv .h1_cont{
    width: 60%;
    max-width: 965px;
    margin: 0 auto;
}
/* bottom */
.kv .kv_bottom{
    padding: 0 0 min(16vw, 255px);
    background: url(../img/kv/bg_disney.png) no-repeat center bottom / min(56%, 850px) auto;
}
.kv .kv_bottom h2{
    width: 57%;
    max-width: 905px;
    margin: 0 auto 65px;
}
.kv .kv_bottom ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2%;
    margin: 0 auto .4em;
}
.kv .kv_bottom ul + p{
    text-align: right;
    color: var(--txtColor);
    font-size: 19px;
}
/* date */
.kv .event_date{
    background: var(--main_red);
    padding: min(4vw, 50px) 0;
}
.kv .event_date p{
    width: min(57%, 680px);
    margin: 0 auto;
}

/* ============================================== */
/*                    ハート                    */
/* ============================================== */
main {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: var(--bg_yellow);
}
/* 各レイヤー共通設定 */
main .heart1,
main .heart2 {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0 -100% auto;
    margin: auto;
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto; /* ハートの密度を調整 */
}
/* レイヤー1 */
main .heart1 {
    background-image: url('../img/bg_heart01.svg'); /* 赤系のハート */
    transition: background-position 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
/* レイヤー2 */
main .heart2 {
    background-image: url('../img/bg_heart02.svg'); /* ピンク系のハート */
    transition: background-position 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
/* ============================================== */
/*                   共通パーツ                    */
/* ============================================== */
main > section > .inner > h2{margin: 0 auto var(--baseMargin);}
/* btn */
.btn{
    margin: 0 auto;
    max-width: 450px;
}
.btn a{
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 130px;
    background: var(--main_red);
    color: #fff;
    font-family: var(--ff_notoSans);
    font-weight: 900;
    border-radius: 20px;
    transform: translateZ(0);
}
.btn a span:not(.fz_s){font-size: 1.43em;}
.btn a:hover{
    opacity: 1;
    transform: translateY(3px);
    filter: none !important;
}
/* 赤 */
.btn:not(.blue) a{
    padding: 0 2.5em;
    filter: drop-shadow(3px 3px 0 #91241f);
}
.btn:not(.blue) a::before{
    position: absolute;
    z-index: 0;
    inset: -100% .8em -100% auto;
    margin: auto;
    content: '';
    width: 1.42em;
    height: auto;
    aspect-ratio: 1;
    background: url(../img/ico_btn.svg) no-repeat center / contain;
    pointer-events: none;
}
/* 青 */
.btn.blue a{
    flex-direction: row;
    column-gap: .5em;
    background: var(--main_navy);
    filter: drop-shadow(3px 3px 0 #001e3c);
}
.btn.blue a::after{
    content: '';
    display: block;
    width: 1.57em;
    height: auto;
    aspect-ratio: 1;
    background: url(../img/ico_blank.svg) no-repeat center / contain;
}
.btn.blue a span{font-size: 1.357em;}
/* ============================================== */
/*                    リード文                    */
/* ============================================== */
.sec_lead{
    padding: calc(var(--baseMargin) * 2) 0;
    text-align: center;
}
.sec_lead p{line-height: 1.8;}
.sec_lead p:not(:last-of-type){margin: 0 auto 1.8em;}
/* ============================================== */
/*                   プレゼント                    */
/* ============================================== */
.sec_present{padding: 0 0 calc(var(--baseMargin) * 2);}
.sec_present > .inner > h2{
    /* width: min(30vw, 420px); */
    width: 420px;
}
.sec_present > .inner > h2 + p{
    text-align: center;
    margin: 0 auto var(--baseMargin);
}
/* present_list */
.present_list section{
    background: #fff;
    border-radius: var(--baseRadius);
}
.present_list section:not(:last-of-type){margin-bottom: var(--baseMargin);}
.present_list section .header{
    position: relative;
    z-index: 0;
    background: var(--main_navy);
    border-radius: var(--baseRadius) var(--baseRadius) 0 0;
}
.present_list section .header p:nth-of-type(1){
    position: absolute;
    z-index: 0;
    inset: auto 80% 10px auto;
    width: 130px;
    height: auto;
    aspect-ratio: 1;
    background: url(../img/prize/bg_vol.svg) no-repeat center / contain;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.5em;
}
.present_list section .header p:nth-of-type(2){
    font-family: var(--ff_notoSans);
    font-weight: 900;
    font-size: 1.5em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    font-feature-settings: "halt";
}
.present_list section .cont{padding: 45px 40px 25px;}
.present_list section .cont figure{margin: 0 auto 0.5em;}
.present_list section .cont h2{
    text-align: center;
    margin: 0 auto .4em;
}
.sec_entry .w_camp .cont > div p,
.present_list section .cont h2 + p{
    text-align: center;
    color: var(--txtColor);
    font-size: 20px;
    font-weight: 400;
    margin: 0 auto .6em;
}
.present_list section .cont h2 + p:has(+ .trivia){margin-bottom: 1.25em;}
.present_list section .cont .trivia{
    background-image: radial-gradient(circle, var(--main_navy) 1.5px, transparent 1.5px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 12px 3px;
    padding: .9em 0 0;
}
.present_list section .cont .trivia p{text-align: center;}

/* ============================================== */
/*                    応募方法                    */
/* ============================================== */
.sec_entry{padding: 0 0 calc(var(--baseMargin) * 2);}
.sec_entry > .inner > h2{width: 385px;}
.sec_entry .entry_txt{
    width: 85%;
    max-width: 660px;
    margin: 0 auto var(--baseMargin);
}
.sec_entry .w_camp{
    background: #fff;
    margin: calc(var(--baseMargin) * 2) auto 0;
    padding: 55px 60px 75px;
    border-radius: var(--baseRadius);
}
.sec_entry .w_camp h3{
    position: relative;
    z-index: 0;
    width: 435px;
    margin: 0 auto 1.78em;
}
.sec_entry .w_camp h3 img:nth-of-type(1){
    position: absolute;
    z-index: 0;
    inset: -74% auto auto calc(-53% - 30px);
    margin: auto;
    max-width: 235px;
}
.sec_entry .w_camp h3 + p{
    width: 350px;
    margin: 0 auto 25px;
}
.sec_entry .w_camp .cont{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6%;
    margin: 0 auto 35px;
}
.sec_entry .w_camp .cont > figure{
    width: 48%;
    max-width: 500px;
}
.sec_entry .w_camp .cont > div{
    width: 47%;
    max-width: 505px;
    text-align: center;
}
.sec_entry .w_camp .cont > div h4{margin: 0 auto .4em;}
.sec_entry .w_camp section h4{
    width: 300px;
    margin: 0 auto 35px;
}
.sec_entry .w_camp section ol{
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--main_red);
    font-weight: 900;
}
.sec_entry .w_camp section ol li{
    font-family: var(--ff_notoSans);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: .5em;
    background-image: radial-gradient(circle, var(--main_red) 1.5px, transparent 1.5px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 12px 3px;
    padding: 39px 50px 18px 70px;
}
.sec_entry .w_camp section ol li:last-of-type{
    background-image: radial-gradient(circle, var(--main_red) 1.5px, transparent 1.5px),radial-gradient(circle, var(--main_red) 1.5px, transparent 1.5px);
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    background-size: 12px 3px, 12px 3px;
}
.sec_entry .w_camp section ol li span:nth-of-type(1){
    position: relative;
    z-index: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15em;
    color: #fff;
    min-width: 45px;
    height: auto;
    aspect-ratio: 1;
    background: var(--main_red);
    border-radius: 50%;
    line-height: 1;
    padding: 0 0 0.1em;
}
.sec_entry .w_camp section ol li span:nth-of-type(1)::before{
    position: absolute;
    z-index: 0;
    inset: -1.2em -100% auto;
    margin: auto;
    content: 'STEP';
    display: block;
    width: fit-content;
    width: 2.6em;
    height: fit-content;
    font-size: .65em;
    color: var(--main_red);
}
.sec_entry .w_camp section ol li span:nth-of-type(2){
    font-feature-settings: "halt";
}
/* ============================================== */
/*                      概要                      */
/* ============================================== */
.sec_about{padding-bottom: 20px;}
.sec_about > .inner > h2{width: 640px;}
.sec_about .scroll_wrapper{
    background: #fff;
    border-radius: var(--baseRadius);
    font-family: var(--ff_zenKakuGoNew);
    font-weight: 400;
    font-size: 20px;
    color: var(--txtColor);
    margin: 0 auto calc(var(--baseMargin) * 1.4);
    padding: 1.75em 1.5em 1.75em 0;
}
.sec_about .scroll_wrapper .scroll_cont{
    max-height: 620px;
    padding: 0 2.7em;
}
.simplebar-track.simplebar-vertical{
    background: #efefef;
    width: 10px;
    border-radius: 5px;
}
.simplebar-scrollbar:before{
    width: 10px;
    background: var(--main_red);
    opacity: 1 !important;
    inset: 0 !important;
}
.sec_about .scroll_wrapper .scroll_cont p:not(:last-of-type){margin: 0 0 1em;}
.sec_about > .inner > p{
    width: 93px;
    transform: translateX(-100%);
}