@charset "UTF-8";
/* CSS Document */

a, a:link, a:hover, a:visited {
	color: #333!important;
	text-decoration: none!important;
    cursor: pointer;
}

/*--- header ---*/
    
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0px 0px 8px rgba(0,0,0,.05);
	width: 100%;
	height: 70px;
}
.header-logo {
	width: 90px;
	height: 39px;
}
.main {
	padding-top: 70px;
}
/*--- footer ---*/
.footer {
	background-color: #fff;
	box-shadow: 0px 0px 8px rgba(0,0,0,.05);
	width: 100%;
	background: url(assets/img/bg_grungeF9F9F9.gif) repeat 0 0;
}
.sns {
	height: 80px;
}
.sns img {
	width: 100%;
	height: auto;
}
.sns a {
	display: inline-block;
	width: 20px;
	height: auto;
	margin: 0 10px;
}
.sns a:last-child {
	width: 25px;
	margin-right: 0;
}
.address {
	display: inline-block;
	color: #333;
	font-size: 11px;
	margin: 0;
	line-height: 80px;
	text-align: center;
}

@media (min-width: 576px) {
.address {
	text-align: left;
}
}
/*--- section ---*/
.section-content {
	padding-top: 80px;
	padding-bottom: 100px;
}
.section-title {
	margin-bottom: 35px;
}
.section-title h2 {
	text-align: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 30px;
	letter-spacing: .2em;
	text-indent: .2em;
	margin-bottom: 15px;
}
.section-title h2+p {
	text-align: center;
	font-size: 12px;
	letter-spacing: .15em;
	text-indent: .15em;
}

@media screen and (max-width: 767px) {
.section-content {
padding-top: calc(90*(100vw/750));
}
.section-title {
margin-bottom: calc(50*(100vw/750));
}
.section-title h2 {
font-size: calc(42*(100vw/750));
margin-bottom: calc(15*(100vw/750));
}
.section-title h2+p {
	font-size: 10px;
	letter-spacing: .2em;
	text-indent: .2em;
}
}
/*--- movie ---*/
.movie-img{
    position: relative;
}

    .movie-play {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        height:40%;
        width: auto;
        transition: all 0.3s ease-in-out;
    }

    
    .movie-play:hover{
        opacity: .8;
    }
  
    
.movie-thum {
	width: 100%;
	height: auto;
    border: 1px solid #e7e7e7;
}
    
.movie-title {
	font-size: 16px;
	font-weight: bold;
}
.movie-desc {
	font-size: 13px;
}

    .movie-anno{
        display: block;
        color:red;
        font-size: 11px;
    }
    
@media screen and (max-width: 767px) {
    
    .movie-play {
        height:50%;
        width: auto;
    }
    
.movie-text {
	padding-left: 0!important;
}
    
    .movie-title {
	font-size: 13px;
	font-weight: bold;
}
    
    .movie-desc {
	font-size: 11px;
}
    .movie-anno{
        font-size: 10px;
    }
}