/* -- */

.popCo {
    position: fixed;
    top: 0px;
    left: 0px;
bottom:0;
right:0;
    z-index: 99999999;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.iPad .popCo{
height:100%;
}


.popCo a:link,
.popCo a:visited{
color: #FFF;
text-decoration: none;
}
.popCo a:hover{
text-decoration:underline;
font-weight: bold;
}
.popInn a:hover img{
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}


.popCo.js_active {
    opacity: 1;
    visibility: visible;
}

.popInn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;

    cursor: pointer;
}

.popTit {font-family :
	YuGothic,'Yu Gothic',sans-serif;
    position: relative;
	padding: 1em;
    margin: 0;
    background-color: rgba(0,0,0,0);
    color: #fff;
    text-align: center;
    line-height: .5;
}
.popTit::before,
.popTit::after {
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    width: 1.5em;
    height: 4px;
    background-color: #fff;
    content: "";
}
.popTit::before {
    transform: rotate(45deg);
}
.popTit::after {
    transform: rotate(-45deg);
}


@media screen and (min-width:768px){
.popTit {

    font-size: 20px;
    padding: 30px 0 10pxs;
}
.popInn {
width: 700px;
}
.popP {
    padding: 30px 0;
    text-align: center;
}
}

@media screen and (max-width:767px){

.popInn {
width: 90%;
}
.popP {
    padding: 1em 0;
    text-align: center;
}

}
