:root{
    --border_2607: #BDBDBD;
    --strong_2607:#E82007;
    --coupon_bg_2607: #FFEEBE;
    --gray_2607:#757575;
    --disable_bg_2607: #E0E0E0;
    --link_2607:#1177DD;
    --light_gray_2607: #F5F5F5;
    --light_green_2607: #EFF7EF;
    --accent_2607: #55BB66;
    --text_2607: #424242;
    --secondary_2607: #FF8800;
    --bg_2607:#FFF9EC;
    --white_2607: #fff;
    --baloon_2607: #FF7089;
    --chance_ttl_2607:#9350C6;
    --chance_border_2607: #E1CBF2;
    --coupon_topbg_2607: #F6EBFF;
}

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

body{
    color: var(--text_2607);
}

/* ボタンパーツ */
.link_botton{
    border-radius: 8px;
    text-align: center;
    width: 500px;
    margin: 0 auto;
}
.link_botton button{
    width: 100%;
}
.link_botton a,
.link_botton button{
    display: block;
    padding: 24px;
    font-size: 22px;
    font-weight: bold;
    transition: linear 0.3s;
}
.link_botton:hover{
    opacity: 0.5;
    transition: linear 0.3s;
}
.apply,
.use{
    background: var(--secondary_2607);
}
.code_copy{
    background: var(--strong_2607);
}
.nologin{
    background: linear-gradient(to right, #fe9d00 0%, #d80f00 100%);
}

.disable{
    background: var(--disable_bg_2607);
    color: var(--border_2607);
    cursor: default;
    pointer-events: none;
}
.apply a,
.use a,
.use button,
.code_copy button,
.nologin a{
    color: var(--white_2607);
}
.reserv a{
    font-weight: 500;
}

.link_botton.top-back{
    background: var(--white_2607);
    max-width: 512px;
    margin: 52px auto 20px;
}

.link_botton.faq_link{
    background: var(--white_2607);
    margin-top: 24px;
}

.link_botton.lottery_coupon_link{
    background: var(--white_2607);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .link_botton{
        width: 312px;
    }

    .link_botton a,
    .link_botton button{
        padding: 13px;
        font-size: 15px;
    }

    .link_botton.top-back{
        max-width: 512px;
        margin: 52px auto 20px;
    }

    .link_botton.apply{
        width: 300px;
    }
    .link_botton.top-back{
        margin: 32px auto 16px;
    }
    .link_botton.faq_link{
        margin-top: 16px;
    }
    .link_botton.lottery_coupon_link{
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
        text-align: right;
        margin-top: 8px;
        height: auto;
        display: inline-block;
        font-size: 13px;
        width: calc(100% - 16px);
    }
    .link_botton.lottery_coupon_link:after{
        content: '＞';
    }
}

/* フローティングボタン */
.apply-btn{
    background: var(--secondary_2607);
    min-width: 200px;
    font-weight: bold;
}
.nologin_apply-btn{
    font-weight: bold;
    min-width: 200px;
    background: linear-gradient(to right, #fe9d00 0%, #d80f00 100%);
}

/* モーダルウインドウ */

#history-modal .contents,
#coupon-modal .contents{
   max-height: 60vh;
   overflow-y: auto;
}

#history-modal .contents li,
#coupon-modal .contents li{
    border: 1px solid var(--border_2607);
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 13px;
}

#history-modal .contents li:last-of-type{
    margin-bottom: 0;
}

#history-modal .contents li a{
    display: flex;
    position: relative;
}

#history-modal .contents li a:hover,
#coupon-modal .contents li a:hover{
    opacity: 0.5;
    transition: linear 0.3s;
}

#history-modal .contents li a .box{
    padding: 16px;
    width: calc(100% - 55px);
}

#history-modal .contents li a .box .ttl{
    color: var(--link_2607);
}
#history-modal .contents li a:hover .box .ttl{
    text-decoration: underline;
}
#history-modal .contents li a .box dl{
    display: flex;
    column-gap: 8px;
    align-items: center;
    margin-top: 8px;
}
#history-modal .contents li a .box dl dt{
    background: var(--disable_bg_2607);
    padding: 2px 4px;
}

#history-modal .contents li a .status {
    position: absolute;
    width: 55px;
    height: 100%;
    top: 0;
    right: 0;
    font-weight: bold;
}

#history-modal .contents li a .status span{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: block;
    text-align: center;
    
}

#history-modal .contents li a .status.win {
    background: var(--coupon_bg_2607);
    color: var(--secondary_2607);
    border-radius: 0 4px 4px 0;
}

#history-modal .contents li a .status.failed {
    background: var(--light_gray_2607);
    color: var(--gray_2607);
     border-radius: 0 4px 4px 0;
}

#history-modal .contents li a .status.lottery {
     background: var(--light_green_2607);
     color: var(--accent_2607);
      border-radius: 0 4px 4px 0;
}

#coupon-modal .contents .coupon_detail{
    background: transparent;
}
#coupon-modal .contents .coupon_detail .text{
    width: calc(100% - (68px - 32px));
}

#coupon-modal .contents .caution{
    color: var(--strong_2607);
    font-size: 13px;
}
#coupon-modal .contents button{
    font-weight: bold;
}
#coupon-modal .contents button,
#coupon-modal .contents a{
    margin-top: 16px;
}

#couponqr-modal .contents .code_qr{
    width: 20vw;
    height: 20vw;
    min-width: 192px;
    min-height: 192px;
    margin: 0 auto;
    overflow: hidden;

}
#couponqr-modal .contents .code_qr img{
    width: 100%;
}
#couponqr-modal .contents .code_text{
    margin-top: 16px;
    text-align: center;
}

#couponcode-modal .contents .code_list li{
    font-size: 13px;
    margin-top: 8px;
}
#couponcode-modal .contents .code_list li:first-of-type{
    margin-top: 0;
}
#couponcode-modal .contents .code_list li:before{
    content: '・';
}

#couponcode-modal .contents .code_no{
    background: var(--light_gray_2607);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}
#couponcode-modal .contents .code_no h3{
    font-size: 13px;
    font-weight: 400;
}
#couponcode-modal .contents .code_no strong{
    display: block;
    margin-top: 8px;
    font-size: 24px;
    font-weight: bold;
}
#couponcode-modal .contents .code_no .link_botton{
    width: 100%;
    margin-top: 16px;
}
#couponcode-modal .contents .link_blank{
    margin-top: 16px;
    display: block;
    text-align: center;
}
#couponcode-modal .contents .link_blank span{
    display: block;
    font-size: 11px;
    line-height: 1;
}

#notice-modal .contents .notice_list li{
    display: flex;
}

#notice-modal .contents .notice_list li:before{
    content: '・';
}
@media (min-width: 769px) {
    #history-modal .contents li{
        font-size: 16px;
    }
    #history-modal .contents li a .box dl{
        font-size: 14px;
    }
    #history-modal .contents li a .box dl dt{
        padding: 2px 8px;
    }
    #history-modal .contents li a .status{
        width: 88px;
    }
    #coupon-modal .contents .caution,
    #couponcode-modal .contents .code_list li{
        font-size: 14px;
    }
}



.content_toppage .coupon_list{
    max-width: initial;
    margin: 16px auto 24px;
}

/* トップページの追加エリア */

.chance_coupon{
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 40px;
    border: 6px solid #CCB5E4;
    padding: 40px 16px;
    background: linear-gradient(45deg, #f4e6ff 0%, #fff 27.21%, #fff 63.6%, #f9efff 85.35%, #f1e0fb 100%);
}

.content_toppage .chance_coupon:before{
    left: 3.22vw;
}
.content_toppage .chance_coupon:after{
    right: 3.22vw;
}
.chance_coupon.nonMember{
    margin-top: 72px;
}
@media (max-width: 768px) {
    .content_toppage .chance_coupon:before{
        left: 0;
    }
    
    .chance_coupon.nonMember{
        margin-top: 40px;
    }
}
.chance_coupon .chance_coupon-ttl{
    text-align: center;
    color: var(--chance_ttl_2607);
    font-family: "M PLUS 1", sans-serif;
    font-size: 32px;
    margin-top: 24px;
    line-height: normal;
    font-weight: 900;
}

.chance_coupon .lottery_coupon-ttl{
    margin: 40px auto;
    position: relative;
    z-index: 5;
    max-width: 500px;
    padding: 8px;
}

.chance_coupon .lottery_coupon-ttl::before{
    border-width: 19px 17.5px 0 17.5px;
}


.lottery_coupon-box{
    max-width: 992px;
    position: relative;
}
.coupon_detail .fv,
.lottery_coupon-box .swiper-slide a{
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);

}
.lottery_coupon-box .swiper-slide a{
    background: var(--white_2607);
    border-radius: 20px;
    margin: 16px;
    display: block;
}

.lottery_coupon-box .box{
    max-width: 768px;
    padding: 40px 16px;
    margin: 0 auto;
}

.swiper-button-lock{
    display: none;
}
.lottery_coupon-box .swiper-button-prev,
.lottery_coupon-box .swiper-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.lottery_coupon-box .swiper-slide a:hover,
.lottery_coupon-box .swiper-button-prev:hover,
.lottery_coupon-box .swiper-button-next:hover{
    opacity: 0.5;
    transition: linear 0.3s;
}
.lottery_coupon-box .swiper-button-prev{
    right: 0;
}
.lottery_coupon-box .swiper-button-prev svg,
.lottery_coupon-box .swiper-button-next svg{
    display: none;
}

@media (max-width: 1100px) {
    .chance_coupon{
        max-width: initial;
        margin: 0 16px;
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    
}



/* コンテンツ箇所 */

section.coupon{
    background: linear-gradient(to right, #ffaedc 0%, #fff 33.88%, #fff 50.21%, #fff 65.64%, #daaeff 100%);
    padding: 24px 24px 48px;
    position: relative;
    font-size: 14px;
}
section.coupon:before,
.chance_coupon:before{
    content: '';
    background: url(/src/images/coupon/lottery_bg-left.png) no-repeat center center/cover;
    position: absolute;
    left: 14.69vw;
    top: 0;
    width: 15vw;
    height: 26.81vw;
}
section.coupon:after,
.chance_coupon:after{
    content: '';
    background: url(/src/images/coupon/lottery_bg-right.png) no-repeat center center/cover;
    position: absolute;
    right: 14.69vw;
    top: 0;
    width: 13.85vw;
    height: 26.81vw;
}

section.coupon .ribbon,
.chance_coupon .ribbon{
    position: relative;
    z-index: 2;
    text-align: center;
    height: 48px;
    background: url(/src/images/coupon/ribbon.svg) no-repeat center center / contain;
}
section.coupon .ribbon span,
.chance_coupon .ribbon span{
     color: var(--white_2607);
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100%;
     font-size: 24px;
     font-weight: bold;
}
section.coupon .ttl_box{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 768px;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}
section.coupon .ttl_box .baloon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 147px;
    height: 147px;
    line-height: 1.3;
    text-align: center;
    color: var(--white_2607);
    font-size: 24px;
    font-weight: bold;
    background: var(--baloon_2607);
    border-radius: 50%;
    box-sizing: border-box;
    border:3px solid var(--white_2607);
}
section.coupon .ttl_box .baloon:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border: 10px solid transparent;
    border-left: 16px solid var(--baloon_2607);
    z-index: 0;
    transform: rotate(26deg) translateY(-32px);
}

section.coupon .ttl_box .ttl{
    font-family: "M PLUS 1", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--chance_ttl_2607);
    min-width: 56%;
    padding-top: 28px;
}

@media (max-width: 768px) {
    section.coupon{
        padding: 24px 16px;
        background: linear-gradient(to right, #ffaedc 0%, #fff 24.55%, #fff 50.21%, #fff 68%, #daaeff 100%);

    }
    section.coupon:before,
    .chance_coupon:before{
        background: url(/src/images/coupon/lottery_bg.png) no-repeat center top / cover;
        width: 100vw;
        height: 52vw;
        top:0;
        left:0;
    }
    .chance_coupon::before{
        width: 100%;
    }
    section.coupon:after,
    .chance_coupon:after{
        content: none;
    }
    section.coupon .ribbon,
    .chance_coupon .ribbon{
        height: 24px;
        
    }
    section.coupon .ribbon span,
    .chance_coupon .ribbon span{
        font-size: 13px;
    }
    section.coupon .ttl_box{
        padding: 0;
    }
    section.coupon .ttl_box .baloon{
        font-size: 12px;
        width: 72px;
        height: 72px;
        padding: 8px;
    }
    section.coupon .ttl_box .baloon::before{
        right: -10px;
        transform: rotate(145deg) translateY(11px);
    }
    section.coupon .ttl_box .ttl,
    .chance_coupon .chance_coupon-ttl{
        font-size: 24px;
        padding: 8px 8px 0;
        min-width: 45.8%;
    }
    .chance_coupon .chance_coupon-ttl{
        margin-top: 0;
    }
    section.coupon .ttl_box .mascot{
        width: 66px;
    }
}
@media (max-width: 440px) {
    section.coupon .ttl_box{
        justify-content: space-around;
    }
    section.coupon .ttl_box .ttl,
    .chance_coupon .chance_coupon-ttl{
        min-width: initial;
    }
}
@media (max-width: 360px) {
    section.coupon .ttl_box .baloon{
        font-size: 11px;
    }
    section.coupon .ttl_box .ttl,
    .chance_coupon .chance_coupon-ttl{
        font-size: 18px;
    }
}

section.coupon .box{
    max-width: 980px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    column-gap: 44px;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    section.coupon .box{
        flex-direction: column;
        column-gap: 0;
        row-gap: 24px;
        margin-top: 16px;
    }

}
@media (max-width: 440px) {
     section.coupon .box{
        margin-top: 8px;
    }
}
section.coupon .box .box_coupon{
    border-radius: 20px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
    background: var(--white_2607);
    padding: 24px;
    width: 55.7%;
}
@media (max-width: 768px) {
    section.coupon .box .box_coupon{
        width: 100%;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
        padding: 16px;
    }
    
}
section.coupon .box .box_coupon .status,
section.coupon .box .box_coupon .count,
section.coupon .box .box_coupon .notice{
    max-width: 354px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    section.coupon .box .box_coupon .status,
    section.coupon .box .box_coupon .count,
    section.coupon .box .box_coupon .notice{
        max-width: 312px;
    }
}
section.coupon .box .box_coupon .status{
    display: flex;
    column-gap: 32px;
    align-items: center;
}
section.coupon .box .box_coupon .status .ttlbox{
    display: flex;
    column-gap: 8px;
    align-items: center;
}
section.coupon .box .box_coupon .status .ttlbox .ttl{
    display: flex;
    column-gap: 8px;
    font-size: 21px;
    font-weight: bold;
}

section.coupon .box .box_coupon .status .ttlbox .ttl:before{
    content: '';
    background: url(/src/images/coupon/icon_coupon.svg) no-repeat center center / contain;
    width: 42px;
    height: 30px;
}

section.coupon .box .box_coupon .status .ttlbox .link_botton,
section.coupon .box .box_coupon .status .ttlbox .link_botton button{
    width: auto;
    padding: 0;
}
section.coupon .box .box_coupon .status .date{
    font-size: 11px;
    color: var(--gray_2607)
}

@media (max-width: 768px) {
    section.coupon .box .box_coupon .status{
        justify-content: space-between;
    }
    section.coupon .box .box_coupon .status .ttlbox .ttl{
        font-size: 15px;
    }
    section.coupon .box .box_coupon .status .ttlbox .ttl::before{
        width: 23px;
        height: 16px;
    }
}

section.coupon .box .box_coupon .count{
    margin-top: 24px;
}
section.coupon .box .box_coupon .count .count_no{
    font-size: 28px;
    font-weight: bold;
    color: var(--border_2607);
    display: flex;
    column-gap: 8px;
    justify-content: center;
    align-items: baseline;
}
section.coupon .box .box_coupon .count .count_no strong{
    font-size: 40px;
    color: var(--secondary_2607);
}
section.coupon .box .box_coupon .count .count_no .text{
    color: var(--text_2607)
}

section.coupon .box .box_coupon .count .count_mark{
    display: flex;
    justify-content: center;
    column-gap: 8px;
}
section.coupon .box .box_coupon .count .count_mark > li{
    background: var(--light_gray_2607);
    border-radius: 12px;
    width: 27px;
    height: 27px;
}

section.coupon .box .box_coupon .count .count_mark .active{
    background: var(--secondary_2607);
    position: relative;
}

section.coupon .box .box_coupon .count .count_mark .active:before{
    content: '';
    position: absolute;
    background: url(/src/images/coupon/icon_check.svg) no-repeat center center / contain;
	width: 16px;
	height: 10px;
	left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
}

section.coupon .box .box_coupon .count .count_text{
    background: var(--coupon_bg_2607);
    border-radius: 16px;
    margin-top: 16px;
    text-align: center;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
}

section.coupon .box .box_coupon .notice{
    margin-top: 16px;
    color: var(--gray_2607);
}

section.coupon .box .box_coupon .link_botton.notice{
    margin-top: 0;
}

@media (max-width: 768px) {
    section.coupon .box .box_coupon .count .count_no strong{
        font-size: 20px;
    }
    section.coupon .box .box_coupon .count .count_no{
        font-size: 13px;
    }
    section.coupon .box .box_coupon .count .count_mark > li{
        width: 24px;
        height: 24px;
    }
    section.coupon .box .box_coupon .count .count_mark .active::before{
        width: 14px;
        height: 9px;
    }
    section.coupon .box .box_coupon .count .count_text{
        font-size: 11px;
        max-width: initial;
        border-radius: 8px;
        margin-top: 8px;
    }
    section.coupon .box .box_coupon .notice{
        font-size: 11px;
        margin-top: 8px;
    }
}

/* 非会員処理 */
section.coupon .box .box_coupon.nonMember{
    padding: 0;
    position: relative
}
section.coupon .box .box_coupon.nonMember{
    background: url(/src/images/coupon/possession_pc.png)no-repeat center center / cover;
}

section.coupon .box .box_coupon.nonMember .noligin{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: var(--white_2607);
    font-weight: bold;
}
section.coupon .box .box_coupon.nonMember .noligin .ttl{
    font-size: 28px;
}
section.coupon .box .box_coupon.nonMember .noligin .lead{
    font-size: 14px;
    margin-top: 16px;
}
@media (max-width: 768px) {
    section.coupon .box .box_coupon.nonMember{
        background: url(/src/images/coupon/possession.png)no-repeat center center / cover;
        min-height: 47.46vw;
    }
    section.coupon .box .box_coupon.nonMember .noligin .ttl{
        font-size: 20px;
    }
    section.coupon .box .box_coupon.nonMember .noligin .lead{
        font-size: 11px;
        margin-top: 8px;
    }
}


section.coupon .box .chance_up{
    border: 6px solid var(--chance_border_2607);
    border-radius: 40px;
    background: var(--white_2607);
    position: relative;
    width: 37.8%;
    padding: 18px 28px;
}
section.coupon .box .chance_up:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 26px 39px 26px 0;
    border-color: transparent var(--chance_border_2607) transparent transparent;
    translate: -100% -50%;
}
section.coupon .box .chance_up:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 18.8px 28.2px 18.8px 0;
  border-color: transparent var(--white_2607) transparent transparent;
  translate: -100% -50%;
}

section.coupon .box .chance_up .ttl{
    color: var(--chance_ttl_2607);
    font-size: 18px;
    font-family: "M PLUS 1", sans-serif;
    font-weight: 800;
    text-align: center;
}
section.coupon .box .chance_up picture{
    display: block;
    margin: 16px auto 0;
}
section.coupon .box .chance_up picture img{
    margin: 0 auto;
}

@media (max-width: 768px) {
    section.coupon .box .chance_up{
        padding: 16px;
        border: 3px solid var(--chance_border_2607);
        width: auto;
    }
    section.coupon .box .chance_up:before{
        top: 0;
        left: 50%;
        border-width: 0 13.5px 21px 13.5px;
        border-color: transparent transparent var(--chance_border_2607);
        translate: -50% -100%;
    }
    section.coupon .box .chance_up:after{
        top: 0;
        left: 50%;
        border-width: 0 11.1px 17.3px 11.1px;
        border-color: transparent transparent var(--white_2607);
        translate: -50% -100%;
    }
    section.coupon .box .chance_up .ttl{
        font-size: 15px;
    }
    section.coupon .box .chance_up picture{
        margin-top: 8px;
        max-width: 312px;
    }
}


.coupon_detail.coupon_top{
    background: var(--coupon_topbg_2607);
    padding: 48px 16px 52px;
}
@media (max-width: 768px) {
    .coupon_detail.coupon_top{
        padding: 24px 16px 32px;
    }
}

.coupon_detail.coupon_top .inner:first-of-type{
    margin-top: 0;
}

.coupon_detail.coupon_top .inner{
    max-width: 980px;
    margin: 72px auto 0;
}

.coupon_detail.coupon_top .inner .coupon_top-ttl,
.chance_coupon .lottery_coupon-ttl{
    font-family: "M PLUS 1", sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: var(--chance_ttl_2607);
    background: var(--chance_border_2607);
    border-radius: 40px;
    text-align: center;
    padding: 18px;
    max-width: 768px;
    margin: 0 auto 55px;
    position: relative;
}
.chance_coupon .lottery_coupon-ttl{
    max-width: 500px;
    padding: 8px;
    margin: 40px auto 24px;
}
.coupon_detail.coupon_top .inner .coupon_top-ttl:before,
.chance_coupon .lottery_coupon-ttl:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 28px 26px 0 26px;
    border-color: var(--chance_border_2607) transparent transparent;
    translate: -50% 100%;
}
.chance_coupon .lottery_coupon-ttl:before{
    border-width: 19px 17.5px 0 17.5px;
}


@media (max-width: 768px) {
    .coupon_detail.coupon_top .inner{
        margin-top: 40px;
    }
    .coupon_detail.coupon_top .inner .coupon_top-ttl,
    .chance_coupon .lottery_coupon-ttl{
        max-width: 74.4%;
        min-width: 279px;
        border-radius: 24px;
        font-size: 20px;
        padding: 8px 16px;
        margin-bottom: 24px;
    }
    .chance_coupon .lottery_coupon-ttl{
        margin: 16px auto;
        padding: 4px 16px;
        font-size: 16px;
        max-width: 200px;
        min-width: initial;
    }
    .coupon_detail.coupon_top .inner .coupon_top-ttl::before,
    .chance_coupon .lottery_coupon-ttl::before{
        border-width: 11px 10px 0 10px;
    }
}


.coupon_detail.coupon_top .inner .fv{
    background: var(--white_2607);
    margin-top:24px;

}

.coupon_detail.coupon_top .inner .fv:first-of-type{
    margin-top: 0;
}

@media (max-width: 768px) {
    .coupon_detail.coupon_top .inner .fv{
        margin-top: 16px;
    }
}

/* アコーディオン全体 */
.faq > .js-accordion {
  margin-bottom: 16px;
  list-style: none;
}

/* 質問部分 */
.faq > .js-accordion > div:first-child {
  display: flex;
  align-items: center;
  column-gap: 16px;
  cursor: pointer;
  background: var(--white_2607);
  border-radius: 8px;
  padding: 16px;
}

/* Qラベル */
.faq > .js-accordion > div:first-child > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  background: var(--chance_ttl_2607);
  border-radius: 50%;
  box-sizing: border-box;
}

/* Aラベル */
.faq .js-accordion-content > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white_2607);
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  background: var(--baloon_2607);
  border-radius: 50%;
  box-sizing: border-box;
}

/* 質問タイトル */
.faq > .js-accordion > div:first-child > h3 {
  width: calc(100% - 56px);
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

/* プラス・マイナスアイコン */
.faq .icon {
  position: relative;
  margin: 4px;
  width: 16px;
  height: 16px;
  margin-left: auto;
  cursor: pointer;
  display: block;
}

.faq .icon > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: var(--chance_ttl_2607);
}

/* 横線 */
.faq .icon > span:first-child {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* 縦線 */
.faq .icon > span:last-child {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 300ms;
}

/* 開いたときに縦線を回転 */
.faq > .js-accordion.is-open .icon > span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 回答コンテンツ */
.faq .js-accordion-content {
  overflow: hidden;
}

/* 回答部分 */
.faq .js-accordion-content > div {
  display: flex;
  column-gap: 16px;
  margin-top: 8px;
  padding: 16px;
}


/* 回答文章 */
.faq .js-accordion-content > div > p {
  width: calc(100% - 40px);
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 768px) {
    .faq > .js-accordion {
        margin-bottom: 8px;
    }
    .faq > .js-accordion > div:first-child > h3,
    .faq .js-accordion-content > div > p {
        font-size: 13px;
        font-weight: normal;
    }
    .faq > .js-accordion > div:first-child,
    .faq .js-accordion-content > div {
         column-gap: 8px;
         padding: 8px;
    }
}


.coupon_list{
    max-width: 512px;
    margin: 16px auto 0;
}
.coupon_list li{
    margin-bottom: 8px;
    border:1px solid var(--border_2607);
    border-radius: 4px;
}
.coupon_list li:last-of-type{
    margin-bottom: 0;
}
.coupon_list li a{
    display: flex;
    align-items: center;
    padding: 16px;
    line-height: 1.5;
    position: relative;
    transition: linear 0.3s;
}
.coupon_list li a:hover{
    opacity: 0.5;
    transition: linear 0.3s;

}
.coupon_box li .coupon_detail{
    display: flex;
    padding: 16px;
}
.coupon_list li a picture,
.coupon_box li a picture{
   width: 80px;
   padding-right: 16px;
   align-self: center;
}
.coupon_list li a picture img,
.coupon_box li a picture img{
    width: 100%;
}
.coupon_list li a .text,
.coupon_box li a .text{
    font-size: 13px;
    width: calc(100% - (68px + 16px) - 32px);
    border-left: 1px dashed var(--border_2607);
    padding-left: 16px;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.coupon_list li a .text .date,
.coupon_box li.unused a .text .date,
.coupon_box li.default a .text .date{
    font-size: 11px;
    color: var(--strong_2607);
    margin-top: 8px;
}
.coupon_box li.used a .text .date{
    font-size: 11px;
    color: var(--gray_2607);
    margin-top: 8px;
}
.coupon_box li a .text .status{
    font-weight: bold;
    font-size: 11px;
    border-radius: 10px;
    padding: 3px 8px;
    margin-bottom: 8px;
    display: inline-block;
}
.coupon_box li.unused a .status,
.coupon_box li.default a .status{
    background: var(--coupon_bg_2607);
    color: var(--secondary_2607)
}
.coupon_box li.used a .status{
    background: var(--disable_bg_2607);
    color: var(--gray_2607)
}
.coupon_box li a .arrow_bottom{
     text-align: center;
     padding: 8px;
     display: flex;
     justify-content: center;
     column-gap: 12px;
     align-items: center;
}
.coupon_box li a:hover .arrow_bottom{
    text-decoration: underline;
}
.coupon_box li.unused a .arrow_bottom,
.coupon_box li.default a .arrow_bottom{
    background: var(--coupon_bg_2607);
}
.coupon_box li.used a .arrow_bottom{
    background: var(--light_gray_2607);
}
.coupon_list li a .arrow{
    position: absolute;
    top:0;
    right: 0;
    width: 32px;
    height: 100%;
    background: var(--coupon_bg_2607);
    border-radius: 0 4px 4px 0;
    margin-left: 16px;
}

.coupon_list li a .arrow > div{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.4px;
  height: 16.7px;
}

.coupon_box li a .arrow_bottom > div{
    position: relative;
    width: 10.4px;
    height: 16.7px;
}

.coupon_list li a .arrow > div::before,
.coupon_list li a .arrow > div::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--gray_2607);
  transform-origin: calc(100% - 1px) 50%;
}

.coupon_box li a .arrow_bottom > div::before,
.coupon_box li a .arrow_bottom > div::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    display: block;
    width: 13px;
    height: 2px;
    border-radius: 9999px;
    background-color: var(--gray_2607);
    transform-origin: calc(100% - 1px) 50%;
}

.coupon_list li a .arrow > div::before,
.coupon_box li a .arrow_bottom > div::before {
  transform: rotate(45deg);
}

.coupon_list li a .arrow > div::after,
.coupon_box li a .arrow_bottom > div::after {
  transform: rotate(-45deg);
}

@media (min-width: 769px) {
    .coupon_list{
        margin-top: 24px;
    }
    .coupon_list li a .text,
    .coupon_box li a .text{
        font-size: 16px;
        width: calc(100% - (96px + 16px) - 40px);
        min-height: 96px;
    }
    .coupon_list li a .text .date,
    .coupon_box li.unused a .text .date,
    .coupon_box li.used a .text .date,
    .coupon_box li.default a .text .date{
        font-size: 14px;
    }
    .coupon_list li a picture,
    .coupon_box li a picture{
        width: 112px;
    }
    .coupon_list li a .arrow{
        width: 40px;
    }
    .coupon_box li a .text .status{
        font-size: 13px;
    }
    .coupon_box li a .arrow_bottom{
        font-size: 16px;
    }

    
}


.ticket_select{
    border:1px solid var(--border_2607);
    border-radius: 3px;
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    margin-top: 8px;
}


.ticket_select select{
    background: transparent;
    width: 100%;
    padding: 12px 8px;
    cursor: pointer;
    appearance: none;
}

.ticket_select:after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 13px;
    height: 6px;
    background-color: #424242;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.ticket_select select .placeholder{
    color: var(--border_2607)
}


@media (min-width: 769px) {
    .ticket_select{
        margin-top: 24px;
    }
}
.info_link{
    text-align: right;
    font-size: 13px;
    color: var(--link_2607);
    display: block;
    margin-top:8px;
}
.info_link:hover{
    text-decoration: underline;
}
.lottery_notice{
    margin-top: 24px;
}
.lottery_notice button{
    text-align: left;
}
.lottery_notice .terms{
    margin-top: 16px;
}
.lottery_notice .terms button{
    margin-top: 8px;
}
.lottery_notice .terms button:first-of-type{
    margin-top: 0;
}
.lottery_notice .checkbox-wrapper label{
    font-size: 14px;
}

.lottery_info{
    margin-top: 24px;
}
#checkbox-container .checkbox-wrapper:hover,
#checkbox-container:has(#terms-check:checked){
    background: #EFF7EF;
}
.lottery_link{
    margin-top: 48px;
}
.lottery_link a{
    font-weight: bold;
}
.lottery_link .disable{
    color: var(--border_2607);
    background: var(--disable_bg_2607);
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lottery_info{
        margin-top: 8px;
    }
    .lottery_notice .checkbox-wrapper label{
        font-size: 13px;
    }
    .lottery_link{
        margin-top: 24px;
    }
}


.exte-site iframe{
    width: 100%;
    min-height: 60vh;
}
.get_coupon{
    position: relative;
}
.get_coupon:before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 52vw;
    background: url(/src/images/get_coupon/fv_bg.png) no-repeat center center /cover;
}

.mypage.get_coupon:before{
    content: none;

}

.mypage.get_coupon .box{
    padding: 26px;
}
@media (max-width: 768px) {
    .mypag.get_coupon .box{
        padding: 0px;
    }
}

.get_coupon .fv{
    position: relative;
    z-index: 1;
}


.coupon_detail{
    background: var(--bg_2607);
    padding: 52px 32px;
}
@media (max-width: 768px) {
    .coupon_detail{
        padding: 16px;
    }
}

.coupon_detail > .ttl{
    text-align: center;
    color: var(--secondary_2607);
    font-family: "M PLUS 1", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.coupon_detail > .lead{
    text-align: center;
    margin: 8px auto 24px;
    font-size: 13px;
}

.coupon_detail > section,
.coupon_detail .fv{
    max-width: 1152px;
    margin: 24px auto 0;
    padding: 40px 96px;
    background: var(--white_2607);
    border-radius: 10px;
}
@media (max-width: 768px) {
    .coupon_detail > section,
    .coupon_detail .fv{
        padding: 16px;
    }
}
@media (min-width: 769px) {
    .coupon_detail > .ttl{
        font-size: 40px;
    }
    .coupon_detail > .lead{
        font-size: 16px;
        margin: 16px auto 48px;
    }
}
.coupon_detail > section:first-of-type{
    margin-top: 0;
}
.coupon_detail > section .box{
    max-width: 768px;
    margin: 0 auto;    
}

@media (max-width: 768px) {
    .coupon_detail > section .box{
        max-width: 512px;
    }
}

.coupon_detail .fv.none{
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    font-size: 16px;
    font-weight: bold;
    color: var(--gray_2607);
    padding: 16px;
}
@media (max-width: 768px) {
    .coupon_detail .fv.none{
        min-height: 160px;
        font-size: 13px;
        font-weight: normal;
    }
}

.coupon_detail .fv .fv_box,
.lottery_coupon-box .box .box_inner{
    display: flex;
    column-gap: 24px;
    border-bottom: 1px dashed var(--border_2607);
    padding-bottom: 24px;
}
.coupon_detail .fv .fv_box picture,
.lottery_coupon-box .box .box_inner picture{
    width: 46.875%;
    height: 206px;
    overflow: hidden;
    display: block;
}
.coupon_detail .fv .fv_box picture img,
.lottery_coupon-box .box .box_inner picture img{
    width: 100%;
}

.coupon_detail .fv .fv_box .text,
.lottery_coupon-box .box .box_inner .text{
    width: calc(100% - (24px + 46.875%));
}

.coupon_detail .fv .fv_box .by,
.lottery_coupon-box .box .box_inner .by{
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.coupon_detail .fv .fv_box .ttl,
.lottery_coupon-box .box .box_inner .ttl{
    font-weight: bold;
    font-size: 20px;
    margin-top: 16px;
}


.coupon_detail .fv .fv_box .coupon,
.lottery_coupon-box .box .box_inner .coupon{
    margin-top: 8px;
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary_2607);
    display: block;
}

.coupon_detail .fv .fv_box .lead{
    color: var(--gray_2607);
    font-size: 14px;
    margin-top: 16px;
}

.coupon_detail .fv .fv_notice{
    padding-top: 40px;
    font-size: 14px;
}

.lottery_coupon-box .box .box_notice{
    margin-top: 24px;
    font-size: 14px;
}

.coupon_detail .fv .fv_notice .period,
.lottery_coupon-box .box .box_notice .period{
    display: flex;
    justify-content: center;
}
.coupon_detail.coupon_top .fv .fv_notice .period{
    margin-top: 0;
}
.coupon_detail .fv .fv_notice .period dd:before,
.lottery_coupon-box .box .box_notice .period dd:before{
    content: ':';
    padding: 0 4px;
}
.coupon_detail .fv .fv_notice .link_botton{
    margin-top: 16px;
}
.coupon_detail .fv .fv_notice .notice{
    font-size: 11px;
    text-align: center;
    margin-top: 8px;
}
.coupon_detail .fv .fv_notice .unused .period,
.coupon_detail .fv .fv_notice .code_no .period{
    color: var(--strong_2607);
}
.coupon_detail .fv .fv_notice .used .period{
    color: var(--gray_2607);
}

@media (max-width: 768px) {
    .chance_coupon{
        padding: 8px 0px;
    }
    .coupon_detail .fv,
    .lottery_coupon-box .swiper-slide a{
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    }
    .lottery_coupon-box .swiper-slide a{
        margin: 8px;
    }
    .lottery_coupon-box .box{
        padding: 16px;
    }
    .coupon_detail .fv .fv_box,
    .lottery_coupon-box .box .box_inner{
        padding-bottom: 16px;
        flex-direction: column;
    }

    .coupon_detail .fv .fv_box .text,
    .lottery_coupon-box .box .box_inner .text{
        width: auto;
    }
    .coupon_detail .fv .fv_box picture,
    .lottery_coupon-box .box .box_inner picture{
        max-height: 280px;
        height: auto;
        width: 100%;
    }

    .coupon_detail .fv .fv_box .by,
    .lottery_coupon-box .box .box_inner .text{
        margin-top: 16px;
        font-size: 13px;
    }

    .coupon_detail .fv .fv_box .ttl,
    .lottery_coupon-box .box .box_inner .ttl{
        font-size: 17px;
        margin-top: 8px;
    }
    
    .coupon_detail .fv .fv_box .coupon,
    .lottery_coupon-box .box .box_inner .coupon{
        font-size: 25px;
    }

    .coupon_detail .fv .fv_box .lead{
        font-size: 13px;
    }

    .lottery_coupon-box .box .box_notice{
        margin-top: 0;
        font-weight: normal;
    }
    .coupon_detail .fv .fv_notice,
    .lottery_coupon-box .box .box_notice .period{
        padding-top: 16px;
        font-size: 13px;
    }

    .coupon_detail .fv .fv_notice .lead{
        color: var(--gray_2607)
    }
    .coupon_detail .fv .fv_notice .period{
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
    .coupon_detail .fv .fv_notice .period dd:before{
        content: ':';
        padding: 0 4px;
    }
    .coupon_detail .fv .fv_notice .link_botton{
        margin-top: 16px;
    }
    .coupon_detail .fv .fv_notice .notice{
        font-size: 11px;
        text-align: center;
        margin-top: 8px;
    }
    .coupon_detail .fv .fv_notice .unused .period,
    .coupon_detail .fv .fv_notice .code_no .period{
        color: var(--strong_2607);
    }
    .coupon_detail .fv .fv_notice .used .period{
        color: var(--gray_2607);
    }

}

@media (max-width: 420px) {
    .lottery_coupon-box .box .box_notice .period{
        font-size: 11px;
    }
}

.coupon_detail .detail .box .ttl{
    font-size: 15px;
    font-weight: bold;
}
.coupon_detail .detail .box .detail_list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 13px;
}
.coupon_detail .detail .box .detail_list dt{
    width: 160px;
    background: var(--light_gray_2607);
    padding: 8px;
    border-top: 1px solid var(--disable_bg_2607);
    border-left: 1px solid var(--disable_bg_2607);
    border-right: 1px solid var(--disable_bg_2607);
    align-content: center;
}
.coupon_detail .detail .box .detail_list dd{
    width: calc(100% - 160px);
    padding: 8px;
    border-top: 1px solid var(--disable_bg_2607);
    border-right: 1px solid var(--disable_bg_2607);
}
.coupon_detail .detail .box .detail_list dt:last-of-type,
.coupon_detail .detail .box .detail_list dd:last-of-type{
    border-bottom: 1px solid var(--disable_bg_2607);
}
@media (max-width: 768px) {
    .coupon_detail .detail .box .detail_list dt{
        width: 110px;
    }
    .coupon_detail .detail .box .detail_list dd{
        width: calc(100% - 110px);
    }
}

@media (min-width: 769px) {
    .coupon_detail .detail .box .ttl{
        font-size: 21px;
    }
    .coupon_detail .detail .box .detail_list{
        font-size: 14px;
        margin-top: 24px;
    }
    .coupon_detail > section{
        padding: 48px;
        margin-top: 48px;
    }
    .coupon_detail > section.detail .box{
        width: 512px;
        margin: 0 auto;

    }

}

/* 応募完了 */
.complete_img{
    margin: 48px auto 0;
    width: 147px;
}
.complete_table{
    margin-top: 48px;
}

.complete_notice{
    max-width: 512px;
    margin: 24px auto;
    font-size: 14px;
}
.complete_notice li:first-of-type{
    margin-top: 0;
}
.complete_notice li{
    margin-top: 8px;
}
.complete_notice li:before{
    content: '※';
}
@media (max-width: 768px) {
    .complete_img{
        width: 105px;
        margin-top: 24px;
    }
    .complete_table{
        margin-top: 24px;
    }
    .complete_notice{
        margin-top: 16px;
        margin-bottom: 24px;
        font-size: 13px;
    }
}

.qa-nav{
    flex-wrap: nowrap;
}
@media (max-width: 980px) {
    .qa-nav{
        column-gap: 8px;
    }
}
@media (max-width: 768px) {
    .qa-nav{
        flex-wrap: wrap;
        justify-content: center;
    }
}
.content_toppage{
    padding-top: 24px;
    position: relative;
    z-index: 2;
}
.menu-area{
    margin-top: 40px;
}
.menu-area h2{
    font-size: 32px;
    font-family: "M PLUS 1", sans-serif;
    font-weight: 900;
}
@media (max-width: 768px) {
    .content_toppage{
        padding-top: 0;
    }
    .menu-area{
        margin-top: 16px;
    }
    .menu-area h2{
        font-size: 24px;
    }

}

.top-claris_box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-claris{
    position: absolute;
}
.feature{
    margin-top: 72px;
}
@media (max-width: 768px) {
    .top-claris{
        top: 0;
    }
    .feature{
        margin-top: 48px;
    }
}