@media screen and (max-width: 769px){
    #pb_popup {
        width: 44vw;
    }
}

/*------------------------
#pb_popup
--------------------------*/
#pb_popup{
	width: 150px;
	height: 150px;
    bottom: 80px;
    right: 16px;
	transition-duration: .6s;
    position: relative;
	position: fixed;
    z-index: 201;
}

.pb_popup_off{
    position: fixed;
    bottom: 215px;
    right:150px;
    width: 30px;
    height: 30px;
    cursor:pointer;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    z-index: 202;
}
#pb_popup a:hover img {
    opacity: 1;
}

.pb_popup_off::before, .pb_popup_off::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px; /* 棒の幅（太さ） */
    height: 20px; /* 棒の高さ */
    background: #000;
}
.pb_popup_off::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.pb_popup_off::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}


@media screen and (max-width: 769px) {
    
    #pb_popup{
        width: 200px;
        height: auto;
        bottom: 40px;
        right: 5px;
        transition-duration: .6s;
        position: relative;
        position: fixed;
        z-index: 201;
    }
    .pb_popup_off{
        width: 30px;
        height: 30px;
        right: 185px;
        bottom: 225px;
        position: fixed;
    }
    a.ot-sdk-show-settings.is-up,
    #top_area_choice.is-up,
    #tw2022_wovn_area.is-up {
        bottom: 30px;
    }
}

/*------------------------
#左バナーの光るモーション
--------------------------*/
.btnshine{
	position: relative;
    overflow: hidden;
}

.btnshine::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
    animation:shine 5s infinite ease-in;
}

@keyframes shine {
    20%, 100% {
        left: 125%;
      }
      0% {
        left: -75%;
      }
      10% {
        left: 125%;
      }
}