@charset "UTF-8";

/* =======================================
告知動画に矢印ボタン設置
======================================= */

@media screen and (max-width: 1179px) {
    .kv__slide {
        padding-inline: 36px;
        max-width: 504px;
    }
}

@media screen and (max-width: 359px) {
    .kv__slide {
        padding-inline: 24px;
    }
}


/* =======================================
2ndシーズン・1stシーズンを個別で網掛け
======================================= */

.season.is-2nd {
    position: relative;
}

.season.is-2nd::before {
    display: block;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    content: "";
}

.season.is-2nd .offseason__text, .season.is-1st .offseason__text {
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    padding: 1em 0.4em 1.1em 1em;
    translate: -50% -50%;
    background-color: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: calc(16/16*1rem);
    line-height: 1.875;
    letter-spacing: calc(20/1000*1em);
    text-align: center;
}

@media screen and (min-width: 1180px) {
    .season.is-2nd .offseason__text, .season.is-1st .offseason__text {
        font-size: calc(20/16*1rem);
    }
}


/* =======================================
キャンペーン概要・実施期間 CP終了
======================================= */

p.terms__group--text.offseason__text {
    font-size: calc(14 / 16 * 1rem);
    color: #E61747;
    font-weight: 700;
    border: 2px solid #E61747;
    padding: 7px 12px 8px;
}

@media screen and (min-width: 1180px) {
    p.terms__group--text.offseason__text {
        font-size: calc(19 / 16 * 1rem);
        padding: 8px 18px 11px;
    }
}


/* =======================================
「本規約への同意」部分 CP終了
======================================= */

.terms__agree .offseason__text {
    width: 100%;
    padding: 1em 0.4em 1.1em 1em;
    background-color: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: calc(16/16*1rem);
    line-height: 1.875;
    letter-spacing: calc(20/1000*1em);
    text-align: center;
    margin-top: 20px;
}

@media screen and (min-width: 1180px) {
    .terms__agree .offseason__text {
        font-size: calc(20/16*1rem);
    }
}