@charset "shift_jis";
/* CSS Document */

/*-----------------------------------------------*/
/*ベース*/
/*-----------------------------------------------*/
main, main#wrapper {
    padding: 0;
    /* max-width: none !important; */
}

/*==============================================
宝探し ここから
================================================*/
.takara-bg {
    max-width: 745px;
    margin: 1% auto;
    background: #d3bebb;
}
#pet_coupon_challenge .takara-bg h3 {
    font-size: 27px;
}
.bingo-select {
    /* background: url(/IMAGE/bigsale/co_01_base_02.webp) center center / cover; */
    margin: 0 auto;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 1%;
}

.bingo-select .bingo-grid {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    /* grid-template-rows   : 1fr 1fr 1fr; */
    position: relative;
    overflow: hidden;
}
.bingo-select.already .bingo-grid::after{
    content: '次回は16時から！\Aお楽しみに！';
    color: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-49%);
    width: 100%;
    height: 75%;
    background-color: rgba(39, 39, 39, 0.7);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    white-space: pre;
    text-align: center;
    font-size: 2rem;
    line-height: 1.5em;
    padding: 6% 0 0;
}
.bingo-select.already .bingo-grid::before{
    content: '獲得したクーポンはマイページよりご確認ください。';
    color: #FFF;
    position: absolute;
    top: 71%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: pre;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5em;
    z-index: 10;
}
/* ポップアップ */
#pet_coupon_challenge .popup-fixed {
    display: flex;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(39, 39, 39, 0.7);
    z-index: -10;
    justify-content: center;
    align-items: center;
    transition: .3s;
    box-sizing: border-box;
}
#pet_coupon_challenge .popup-fixed.active {
    opacity: 1;
    transition: .3s;
    z-index: 1000;
}
#pet_coupon_challenge .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#pet_coupon_challenge .popup-txt{
    font-size: 1.3em;
    color: #a38d39;
}
#pet_coupon_challenge .popup-get{
    font-size: 2em;
    color: #b90000;
    font-weight: bold;
}
#pet_coupon_challenge .popup-content .popup-close {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#pet_coupon_challenge .popup-content .popup-img {
    background-color: #FFF;
    /* margin: 10% 0; */
    padding:1em;
    box-sizing: border-box;
    width: 450px;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#pet_coupon_challenge .popup-content .popup-img__item {
    display: none;
    flex-direction: column;
    align-items: center;
}
#pet_coupon_challenge .popup-content .popup-img__item.active {
    display: flex;
}
#pet_coupon_challenge .popup-content .popup-img__item img {
    width: 78%;
    margin: 2% 0;
}
#pet_coupon_challenge .popup-content .popup-close__btn {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 3%;
}
/*宝箱が空いた時*/
#pet_coupon_challenge .bingo-grid .disabled::after{
    content: '';
    width: 162px;
    height: 100%;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
#pet_coupon_challenge .bingo-grid .action-cpget.disabled::after{
    background: url(/IMAGE/pet_winter_preparation/ana.png);
    background-size: contain;
    background-color: #d3bebb;
    background-repeat: no-repeat;
    width: 100%;
}
#pet_coupon_challenge .bingo-grid .action-cpget.last::after{
    background: url(/IMAGE/pet_winter_preparation/dog_suna.png);
    background-size: contain;
    background-color: #d3bebb;
    background-repeat: no-repeat;
    width: 100%;
    animation-name: huruhuru;
    transform: rotate(5deg);
    animation-duration: 2s;
}
@keyframes huruhuru {
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}
.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}

/*バツボタン*/
.batsu::before, .batsu::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px; /* 棒の幅（太さ） */
    height: 1.5em; /* 棒の高さ */
    background: #222;
}
.batsu::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.batsu::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
/*こちらボタン*/
.black-btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 1.5em;
    position: relative;
}
.black-btn_wrap .cat_img {
    position: absolute;
    top: 38%;
    right: -4%;
    transform: translateY(-50%);
    width: 23%;
}
.black-btn_wrap p{
    font-size: 1em;
}
.black-btn {
    position: relative;
    display: inline-block;
    padding: 1em 5em;
    background-color: #eb0012;
    color: #FFF !important;
    font-size:1.1em;
    border-radius: 5px;
    margin: .5% auto .5%;
    text-align: center;
}
.black-btn_wrap.coupon .black-btn {
    background-color: #5d2e0b;
    border-radius: 50px;
    margin-top: 2%;
    width: 60%;
}
.black-btn:hover{
    color: #FFF !important;
    opacity: 0.8;
}
/* .black-btn:after {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    top: 3%;
    bottom: 0;
    right: 8%;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s ease 0s;
} */


/*==============================================
獲得済み 設定
================================================*/
/*リセット*/
#pet_coupon_challenge .action-cpget.disabled{
    background-color:unset;
    border-color:unset;
    pointer-events: none;
    position: relative;
}
#pet_coupon_challenge .action-cpget:before,
#pet_coupon_challenge .action-cpget.status-1:before{
    content: none;
}
#pet_coupon_challenge .action-cpget {
    padding: 0;
    display: inline-block;
    border-radius: 0;
    align-items: center;
    background-color:unset;
    color: unset;
    border:none;
    padding:0;
    margin:0;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
}
#cpget_result{
    display: none;
}

/*==============================================
1日１回制御
================================================*/
#pet_coupon_challenge .bingo-select.already li div{
    pointer-events:none;
}