@charset "UTF-8";


/*===================================================


	popup.css


====================================================*/
.popup {
    opacity:0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition:opacity 0.3s;
}
.popup.popActive {
    opacity:1;
    transform: translateX(0);
}
.popup .shade{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
.popup .popInBox{
    width: 80%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.popup .popTit{
    text-align: center;
    font-size: 30px;
    line-height: 1em;
    margin: 0 0 60px;
    color: #000;
    letter-spacing: 0.1em;
}
.popup .close {
	width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
}
.popup .close::before,
.popup .close::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.popup .close::before {
	transform: translate(-50%,-50%);
}
.popup .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*=================================
	レスポンシブPC
===================================*/
@media screen and (min-width: 1000px){ 

.popup .close:hover{
	transform: rotate(135deg);
}
}
/*=================================
	レスポンシブSP
===================================*/
@media screen and (max-width: 1000px){ 

.popup .popInBox{
	width: 100%;
    padding: 0 20px;
    margin: 0;
} 
.popup .close{
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
}

}
