@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Cuprum:400,700);
@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);

body{
    height: 100%;
    overflow: hidden;
    min-height: 100%;
}

#finder{
    width: 80px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: 40px;
    margin-left: -40px;
    margin-top: -30px;
}

#finder .left,
#finder .right{
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 30px;
    border-top: 15px solid #000;
    border-bottom: 15px solid #000;
}

#finder .right{
    right: 0;
    left: auto;
}

#finder .top,
#finder .bottom{
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 4px;
    border-left: 15px solid #000;
    border-right: 15px solid #000;    
}

#finder .bottom{
    top: auto;
    bottom: 0;
}

#finder .center{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: red;
    margin-top: -2px;
    margin-left: -2px;
    display: none;
}

#wrapper{
    overflow: hidden;
    position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    background: #000;
    height: 100%;
}

#contents{
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 50px;
    left: 10px;
    background: #000;
    overflow: hidden;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

#contents.blur{
    filter: blur(3px);
    -webkit-filter: blur(3px);
    transition: 0;
    -webkit-transition: 0;
}

#contents section{
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    display: none;
    opacity: 0;
    transition: 1s;
    -webkit-transition: 1s;
}

#contents section:before{
    content: "";
    display: block;
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    background: url(../img/mask.png) no-repeat center center;
    background-size: cover;
}

#contents section.active{
    display: block;
    opacity: 1;
    transition: 1s;
    -webkit-transition: 1s;

}

#contents section.active:before{
    content: ""
}

h1{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: 20px;
}

h1 img{
    width: 60px;
    height: auto;
}

#contents section._1{
    top: -45%;
    background: url(../img/photo5.jpg) no-repeat center center;
    background-size: cover;
}

#contents section._2{
    background: url(../img/photo8.jpg) no-repeat center center;
    background-size: cover;
}

#contents section._3{
    background: url(../img/photo3.jpg) no-repeat center center;
    background-size: cover;
}

#contents section._4{
    background: url(../img/photo4.jpg) no-repeat center center;
    background-size: cover;
}

#contents section._5{
    background: url(../img/photo7.jpg) no-repeat center center;
    background-size: cover;
}
#contents section._6{
    background: url(../img/photo1.jpg) no-repeat center center;
    background-size: cover;
}
#contents section._7{
    background: url(../img/photo2.jpg) no-repeat center center;
    background-size: cover;
}
#contents section._8{
    background: url(../img/photo9.jpg) no-repeat center center;
    background-size: cover;
}
#contents section._9{
    background: url(../img/photo6.jpg) no-repeat center center;
    background-size: cover;
}

section._9 .left{
    width: 35%;
    float: left;
    margin-top: 20%;
    padding-left: 10%;
}
section._9 .right{
    width: 35%;
    float: right;
    margin-top: 20%;
    text-align: left;
    padding-right: 10%;
}

.movie_wrapper{
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.movie_wrapper img{
    position: absolute;
    top: 0 ;
    left: 0 ;
    height: 100% ;
    width: 100% ;
}

.movie_wrapper iframe{
    position: absolute;
    top: 0 ;
    left: 0 ;
    height: 100% ;
    width: 100% ;
}

.release_btn{
    position: fixed;
    top: 100px;
    left: 100px;
    right: 100px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "MSP明朝","MS PMincho","MS 明朝",serif;
    line-height: 1.2em;
}

.release_btn li{
    float:  left;
    margin-left: 40px;
}

.release_btn li .jacket{
    width: 260px;
}

.release_btn li h2{
    font-size: 15px;
    margin-bottom: 10px;
}

.release_btn li h2 span{
    font-size: 12px;
}

.release_btn li a{
    display: inline-block;
    margin-top: 10px;
    color: #FFF;
    text-decoration: none;
    padding: 5px 40px;
    border: 1px solid #ccc;
    background: #000;
    font-family: 'Share Tech Mono',sans-serif;
}

.shot{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
}

.shot.prev{
    left: 0;
    right: auto;
}

.shot.next{
    right: 0;
    left: auto;
}

.shot a{
    display: block;
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition: 0.2s; 
    -webkit-transition: 0.2s; 
}

.shot.prev a{
    left: 0;
    right: 100px;
}

.shot.next a{
    right: 0;
    left: 100px;
}

.shot.prev a.hover,
.shot.next a.hover{
    left: 0;
    right: 0;
    transition: 0.2s; 
    -webkit-transition: 0.2s; 
}


.shot a span{
    position: absolute;
    display: block;
    color: white;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -20px;
    text-decoration: none;
}


footer{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    font-family: 'Share Tech Mono',sans-serif;
}

footer p{
    color: #FFF;
    display: inline-block;
    line-height: 30px;
}

footer .navmenu{
    position: absolute;
    left: 50%;
    margin-left: -169px;
}

footer p.f{
    float: left;
    font-size: 20px;
}

footer p.s{
    font-size: 20px;
    float: left;
}

footer p.copyright{
    position: absolute;
    height: 40px;
    bottom: 0;
    right: 10px;
    font-size: 16px;
}

footer #nav{
    float: left;
    margin: 0 30px;
}

footer #nav li{
    margin: 0 1px;
    display: inline-block;
    color: white;
    font-size: 12px;
    position: relative;
}

footer #nav li a{
    text-decoration: none;
    color: inherit;
}

footer #nav li.space{
    width: 3px;
    height: 3px;
    background: white;
}

footer #nav li.active:after{
    content: "▲";
    color: #FFF;
    position: absolute;
    font-size: 10px;
    bottom: -13px;
    left: 50%;
    margin-left: -3px;
}

footer .social{
    position: absolute;
    right: 200px;
    top: 5px;
}

footer .social li{
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
    background: white;
}

footer .social li a{
    padding: 11px 10px 9px;
    text-align: center;
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    line-height: 0;
}

footer .social li a:hover{
    opacity: 0.5;
}

#modal{
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 100px;
    z-index: 999;
}

#modal .modal_inner{
    width: 100%;
    height: 100%;
    background: #FFF;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

#modal .modal_inner .contents{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.release{
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN , "MSP明朝","MS PMincho","MS 明朝",serif;
    line-height: 1.6em;
    display: inline-block;
    text-align: left;
    width: 85%;

}


.release .jacket{ 
    float: left;
    margin-right: 30px;
    margin-top: 7px;
    height: 100%;
    overflow: hidden;
}

.release .info{
    margin-left: 330px;
}

.release h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.release h2 span{
    font-size: 16px;
}

.release p{
    font-size: 13px;
    line-height: 1.5em;
}

.release p.data{
    font-size: 15px;
    margin-bottom: 10px;
}

.release ol li{
    font-size: 13px;
    line-height: 1.5em;
}

.release .caption{
    margin-top: 10px;
}

.release .caption p{
    line-height: 1.4em;
    font-size: 13px;
    padding-left: 1em;
    text-indent: -1em;
    margin-left: 330px;
}

.release .buy a{
    width: 120px;
    margin-top: 10px;
    display: inline-block;
    border: 1px solid #CCC;
    line-height: 0;
}

.release .buy a:hover{
    opacity: 0.6;
}

.release .buy img{
    width: 100%;
    height: auto;
}

#modal .btn_close{
    position: absolute;
    top: 5px;
    right: 5px;
    background:#000;
    width: 40px;
    height: 40px;
}

#modal .btn_close a{
    display: block;
    width: 100%;
    height: 100%;
    color: #FFF;
    line-height: 32px;
    font-size: 36px;
    text-align: center;
    text-decoration: none;
}

/*** sp ***/

.sp #contents{
    bottom: 70px
}

.sp .release_btn{
    position: absolute;
    left: 25px;
    right: 25px;
    top:60px;
}

.sp .release_btn li{
    margin: 0 40px;
    vertical-align: top;
}

.sp .release_btn li .jacket{
    width: 50%;
    float: left;
    margin-right: 10px;
}

.sp .release_btn li .jacket img{
    width: 100%;
    height: auto;
}

.sp .release_btn li a{
    margin-top: 15%;
}

.sp section._9 .left,
.sp section._9 .right{
    width: 240px;
    padding: 0 ;
    margin: 20px auto 0;
    float: none;
}

.sp section._9 .left{
    margin-top: 60px;
}


.sp .shot{
    display: none;
}

.sp #contents section._1{
    top: -80%;
}

.sp footer{
    height: 60px;
}

.sp footer p{
    line-height: 15px;
}

.sp footer p.f{
    margin-left: 7px;
}

.sp ul.social{
    top: auto;
    bottom: 5px;
    right: auto;
    left: 10px;
}

.sp footer p.copyright{
    height: 30px;
    line-height: 20px;
    font-size: 12px;
}

.sp footer #nav{
    margin: 0 10px;
}

.sp footer .navmenu{
    margin-left: -156px;
}

.sp #modal{
    top: 10px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.sp #modal .modal_inner .contents{
    display: block;
}

.sp #modal .btn_close{
    width: 30px;
    height: 30px;
}

.sp #modal .btn_close a{
    line-height: 25px;
}

.sp .release{
    width: auto;
    padding: 20px 15px;
    padding-bottom: 40px;
}

.release .info{
    margin-left: 0;
}

.sp #modal .modal_inner{
    display: block;
    overflow: scroll;
}

.sp .release .jacket{
    margin-top: 0;
    margin-right: 0;
}

.sp .release .jacket img{
    width: 100%;
    height: auto;
}

.release .caption p{
    margin-left: 0;
}