/* CSS Document */
.banner img {
    aspect-ratio: attr(width) / attr(height);
    width: 100%;
    height: auto;
}
[block-sc-pc] {
    display: none;
}
[block-sc-sp] {
    display: block;
}
coupon_on {
    display: flex;
}
a:hover {
    text-decoration: none;
}
/* ================ Banner ====================== */
.banner {
    position: relative;
}
.banner div {
    width: 100%;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, 0);
}
.banner h1 {
    color: #ee2852;
    font-size: 5.757vw;    
    text-align: center;
    font-weight: 800;
    z-index: 2;
    text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, 2px 2px 2px #fff, 2px -2px 2px #fff, 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff;
}
.banner span {
    color: #0050a2;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    -webkit-text-stroke: 10px #fff;
    z-index: -1;
}

/* ================ Gift Box ====================== */
.giftbox {
    padding: 15px 0;
}
.giftbox__img {       
    padding-left: 155px;
    background: url(../img/giftbox/giftbox.png) no-repeat;
    min-height: 142px;
    background-size: 195px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.red {
    color: #f20042;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
}
.normal {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    line-height: 18px;
}

/* ================ Ticket ====================== */
.ticket {
    background: url(../img/ticket/icon-left.png) left repeat-y, url('../img/ticket/icon-right.png') right repeat-y;    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 15px;
    margin: 15px 0 25px;
    background-color: #dae8ff;
}
.ticket h3 {
    font-size: 29px;
    color: #ff3f74;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, 2px 2px 2px #fff, 2px -2px 2px #fff, 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff;
}
.ticket span {
    font-size: 14px;
    font-weight: bold;
    padding: 7px 0;
    color: #333;
    text-shadow: none;
}
.ticket a {
    background: #ff3f74;
    border: 2px solid #fff;
    border-radius: 41px;
    padding: 15px 55px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* ================ Period ====================== */
table {
    width: 100%;
}
tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
}
tr td {
    padding: 12px;
    font-size: 14px;
    width: 100%;
    line-height: 18px;
}
tr td:first-child {
    border-bottom: 1px solid #e6e6e6;
    background: #fbfbfb;
    font-weight: bold;
    color: #333;
}
tr:last-child td:last-child {
    border-bottom: 1px solid #e6e6e6;
}
tr td span {
    font-size: 13px;
    color: #ff003c;
}

/* ================ Period ====================== */
.question {
    display: flex;
    flex-direction: column;
    padding: 30px 12px;
    background: #fff6f6;
    margin: 25px 0 30px;
}
.question p {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.question p:before {
    content: "";
    background: url("../img/question/ask_mb.png");
    width: 27px;
    height: 27px;
    display: inline-block;
    margin-right: 5px;
}
.question span {
    font-size: 14px;
    color: #333;
    text-align: left;    
    padding: 20px 0;
    line-height: 18px;
}
.question div {
    display: flex;
    justify-content: center;
}
.question a {
    background: #ff3f74;
    border-radius: 23px;
    padding: 15px 80px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}


/* ================ Notice ====================== */
.notice {
    margin-bottom: 50px;
    text-align: left;
    border-bottom: none;
    padding: 0;
}
.notice__ttl {
    font-size: 18px;
    font-weight: bold;
    color: #f02960;
    border-bottom: 1px solid #f02960;
    padding-bottom: 2px;
}
.notice ul li span {
    font-size: 14px;
    line-height: 20px;
}
.notice ul.first {
    margin: 10px 0 15px;
}
.notice ul li span.red {
    color: #ff003c;
}


@media screen and (min-width: 425px) and (max-width: 767px) {
    [block-sc-pc] {
        display: none;
    }
    [block-sc-tb] {
        display: block;
    }
    .ticket h3 {
        font-size: 6.780vw;
    }
    .ticket span {
        font-size: 3.259vw;
    }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
    .banner h1 {
        font-size: 5.5vw;
    }
    tr td:first-child { 
        border-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .banner div {
        top: 55%;
    }
}
@media screen and (min-width: 768px) {
    [block-sc-pc] {
        display: block;
    }
    [block-sc-tb] {
        display: none;
    }
    [block-sc-sp] {
        display: none;
    }
    .banner h1 {
        font-size: 60px;
    }
    .red {
        font-size: 25px;
    }
    .normal {
        font-size: 19px;
        line-height: 22px;
    }
    .ticket {
        flex-direction: row;
        justify-content: space-around;
        margin: 50px 0 25px;
    }
    .ticket h3 {
        font-size: 52px;
    }
    .ticket span {
        font-size: 25px;
    }
    .ticket a {
        border-radius: 41px;
        padding: 22px 65px;
        font-size: 26px;
    }
    tr {
        flex-direction: row;
    }
    tr td:first-child {
        width: 40%;
        display: flex;
        align-items: center;
        border-right: 1px solid #e6e6e6;
        border-bottom: 0;
        font-size: 16px;
        padding: 15px 30px;
    }
    tr td:last-child {
        width: 60%;
        font-size: 16px;
    }
    tr td span {
        font-size: 13px;
    }
    .question {
        padding: 50px;
    }
    .question p {
        font-size: 31px;
    }
    .question p:before {
        width: 47px;
        height: 48px;
        background: url("../img/question/ask.png");
    }
    .question span {
        font-size: 16px;
        padding: 35px 0;
        line-height: 22px;
    }
    .question a {
        border-radius: 41px;
        padding: 15px 80px;
        font-size: 19px;
        border: 2px solid #fff;
    }
    .notice__ttl {
        font-size: 25px;
    }
    .notice ul li span {
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .banner h1 {
        font-size: 4.5vw;
    }
    .red {
        font-size: 22px;
        line-height: 22px;
    }
    .normal {
        font-size: 16px;
    }
    .ticket h3 {
        font-size: 4.337vw;
    }
    .ticket span {
        font-size: 2.085vw;
    }
    .ticket a {
        border-radius: 41px;
        padding: 22px 65px;
        font-size: 18px;
    }
    .giftbox {
        padding: 0;
    }
    .giftbox__img {
        padding-left: 280px;
        min-height: 256px;
        background-size: 352px auto;
    }
}
@media screen and (min-width: 1200px) {
    .giftbox {
        padding: 0;
    }
    .giftbox__img {
        padding-left: 330px;
        min-height: 312px;
        background-size: 429px auto;
    }
}
.ticket coupon_off {
    display: flex;  
    cursor: default;
}
.ticket coupon_off p {
    font-size: 18px;
    padding: 15px 50px;
    background: #A6A6A7;
    border: 2px solid #fff;
    text-align: center;
    line-height: 15px;
    font-weight: bold;
    border-radius: 34px;
    color: #fff;
}
@media screen and (min-width: 425px) and (max-width: 559px) {
    .ticket coupon_off p {
        font-size: 18px;
        line-height: 20px;
        padding: 15px 50px;
    }
}
@media screen and (min-width: 560px) and (max-width: 767px) {
    .ticket coupon_off p {
        font-size: 18px;
        padding: 15px 50px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .ticket coupon_off p {
        font-size: 18px;
        padding: 22px 65px;
    }
}
@media screen and (min-width: 1200px){
    .ticket coupon_off p {
        font-size: 22px;
        padding: 22px 65px;
    }
}