/*
基本設計
*/


/*
レスポンシブで、モバイルファーストの場合、以下の順に記載していくと良い

画面サイズが480px以上すべて
@media screen and (min-width:480px) {
}
画面サイズが768pxから1024pxまでの端末
@media screen and (min-width:768px) and ( max-width:1024px) {
}
画面サイズが1024px以上すべて
@media screen and (min-width:1024px) {
}
画面サイズが1024pxまで
@media screen and (max-width: 1024px) {
}
*/


/*
レスポンシブで、デスクトップファーストの場合、以下の順に記載していくと良い

画面サイズが768pxまで
@media screen and (max-width: 768px) {
}
画面サイズが480pxまで
@media screen and (max-width: 480px) {
}
画面サイズが320pxまで
@media screen and (max-width: 320px) {
}

*/


/*

フォントに関して
本文は Titillium Web をbodyに設定しています。
weightは 200, 300, 400, 600, 700, 900 があります。（400がnormal）

見出しは Oswald です。サンプルは下に。
weightは 300, 400, 700 です。

現状どのweightを使うかわからないので全weight読み込んでるので最終的に使ってないのはカットするので、
使ったweightは把握しておいてほしいです！！！！

/*

/* 見出し用サンプル */

.head {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}
.justify {
    text-align: justify;
}

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

	Structure Module

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

html {
    font-size: 62.5%;
    position: relative;
    height: 100%;
}
body {
    font-family: 'Titillium Web';
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    min-width: 1200px;
    margin: 0;
    padding: 0;
    color: #231815;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}
a {
    color: #231815;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    opacity: 0;
    -webkit-transition: 1.5s ease-out 1.25s;
    -ms-transition: 1.5s ease-out 1.25s;
    transition: 1.5s ease-out 1.25s;
}
.on .container {
    opacity: 1;
}
.loading {
    width: 100%;
    min-width: 1200px;
    height: 100%;
    position: absolute;
    display: table;
    top: 0;
    left: 0;
    background: #efefef;
    transition: 1.5s ease-out;
    -webkit-transition: 1.5s ease-out;
    -ms-transition: 1.5s ease-out;
}
.on .loading {
    opacity: 0;
}
.loading_inner {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}
.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}
@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}
@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}
@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

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

	header

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

header {
    position: relative;
    min-height: 700px;
    min-width: 1200px;
    z-index: 3;
}
.main_visual {
    width: 100%;
    min-width: 1200px;
    height: 100%;
    min-height: 600px;
    display: table;
}
.title {
    display: table-cell;
    width: 50%;
    height: 100%;
}
.title_inner {
    width: 100%;
    height: 100%;
    position: relative;
}
.title h1 {
    display: none;
}
.logo_ja {
    position: absolute;
    top: 40px;
    right: 40px;
}
.logo {
    position: absolute;
    top: 50%;
    left: 40px;
    margin-top: -56px;
}
.credit_director {
    position: absolute;
    top: 50%;
    left: 40px;
    margin-top: 122px;
}
.prize {
    top: 50%;
    left: 40px;
    position: absolute;
    margin-top: -220px;
}
.image {
    display: table-cell;
    width: 50%;
    height: 100%;
    background: url(../img/pct_main.jpg) no-repeat left top;
    background-size: cover;
}
header nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    height: 100px;
    background: url(../img/bg_header.png);
    background-size: 30px;
}
header.on nav {
    position: fixed;
    top: 0;
}
.nav_inner {
    width: 890px;
    margin: 0 auto;
    position: relative;
}
.site_title {
    position: absolute;
    top: 36px;
    left: 0;
}
.fb {
    position: absolute;
    top: 36px;
    right: 0;
    font-size: 0;
    line-height: 0;
}
.gnavi {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: absolute;
    top: 44px;
    right: 90px;
}
.gnavi a {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4em;
    text-decoration: none;
}
.gnavi .on a:after, .gnavi a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.gnavi .on a:after, .gnavi a:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.gnavi li {
    float: left;
    line-height: 1;
    margin-left: 65px;
    letter-spacing: 3px;
}
.gnavi li a {
    color: #fff;
    text-decoration: none;
}
.btn_scroll {
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    position: absolute;
    left: 50%;
    bottom: 140px;
    margin-left: -24px;
    padding-bottom: 30px;
    letter-spacing: 2px;
    padding-left: 1px;
    font-size: 12px;
}
.btn_scroll:before {
    position: absolute;
    bottom: 8px;
    left: 0;
    content: "";
    width: 27px;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    -webkit-animation: fuwa 2s ease-out 1s infinite alternate;
    animation: fuwa 2s ease-out 1s infinite alternate;
}
.btn_scroll:after {
    position: absolute;
    bottom: 8px;
    right: 0;
    content: "";
    width: 27px;
    height: 1px;
    background: #000;
    transform: rotate(-45deg);
    -webkit-animation: fuwa 2s ease-out 1s infinite alternate;
    animation: fuwa 2s ease-out 1s infinite alternate;
}
@-webkit-keyframes fuwa {
    0% {
        bottom: 8px;
    }
    50% {
        bottom: 0;
    }
    100% {
        bottom: 0;
    }
}
@keyframes fuwa {
    0% {
        bottom: 8px;
    }
    50% {
        bottom: 0;
    }
    100% {
        bottom: 0;
    }
}

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

	main

=======================================*/
main {
    position: relative;
    z-index: 2;
}
img {
    vertical-align: bottom;
}
.inner {
    width: 900px;
    margin: 0 auto;
}
.sec_title {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 37px;
    padding-bottom: 40px;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}
.sec_title:before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    bottom: 0;
}

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

	About

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

.about {
    font-size: 18px;
    line-height: 1.4;
    padding-top: 39px;
    padding-bottom: 150px;
}
.about h3 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}
.about h3 span {
    font-size: 18px;
    display: block;
    padding-top: 13px;
    font-weight: 300;
    letter-spacing: 4px;
}
.about p {
    color: #888;
}

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

	Cast

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

.cast {
    padding-top: 33px;
    padding-bottom: 140px;
}
.cast_list {
    width: 640px;
    margin: 0 auto;
    overflow: hidden;
}
.cast_list ul {
    width: 660px;
    overflow: hidden;
}
.cast_list li {
    width: 200px;
    height: 200px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

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

	Crew

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

.crew {
    padding-top: 41px;
    padding-bottom: 130px;
}
.crew .inner h3 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}
.crew .inner h3 span {
    font-size: 18px;
    display: block;
    padding-top: 13px;
    font-weight: 300;
    letter-spacing: 4px;
}
.crew .inner p {
    color: #888;
    font-size: 18px;
}

.crew_list {
    width: 890px;
    margin: 60px auto 0;
    padding-top: 13px;
}
.crew_list h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    display: block;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 30px;
}
.crew_list ul {
    overflow: hidden;
}
.crew_list li {
    float: left;
}
.crew_list li span {
    display: block;
}
.crew_list li.wrap {
    display: table;
}
.crew_list li.wrap>div {
    font-size: 12px;
    display: table-cell;
    vertical-align: top;
}
.crew_list li dt {
    margin-bottom: 15px;
}
.crew_list .name {
    font-size: 22px;
    line-height: 1.5;
    color: #231815;
}
.crew_list .name span {
    font-size: 14px;
}
.crew_list .wrap .name {
    font-size: 22px;
}
.crew_list .wrap .name span {
    font-size: 14px;
}
.crew_list .wrap .detail dd {
    font-size: 14px;
    color: #888;
}
.crew_list li:first-child {
    width: 100%;
    margin-bottom: 110px;
}
.crew_list li:first-child .detail {
    padding-top: 0;
    padding-left: 43px;
}
.crew_list li:nth-child(2) {
    clear: both;
}
.mr110 {
    margin-right: 110px;
}
/*======================================

	Stills

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

.stills {
    padding-top: 38px;
    padding-bottom: 142px;
}
.stills_list {
    width: 706px;
    margin: 0 auto;
    overflow: hidden;
}
.stills_list ul {
    width: 726px;
    overflow: hidden;
}
.stills_list ul li {
    width: 222px;
    height: 114px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.stills_list ul li img {
    width: 100%;
    height: auto;
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
}
.stills_list ul li.on img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
}
.stills_list ul li .text {
    width: 100%;
    height: 100%;
    display: table;
    background: rgba(0, 0, 0, .7);
    box-sizing: border-box;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
    opacity: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}
.stills_list ul li .text p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.stills_list ul li.on .text {
    opacity: 1;
}
.text_inner {
    position: absolute;
    bottom: 0;
    left: 15px;
    color: #fff;
    opacity: 0;
    transition: 0.3s ease-out 0.3s;
}
.stills_list ul li.on .text_inner {
    bottom: 15px;
    opacity: 1;
}

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

	Film Festival

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

.film_festival {
    padding-top: 40px;
    padding-bottom: 115px;
}
.film_festival h2 {
    letter-spacing: 4px;
}
.fes_list {
    width: 890px;
    margin: 0 auto;
    overflow: hidden;
}
.fes_list ul {
    width: 930px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.fes_list li {
    width: 200px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.fes_list li .img {
    height: 200px;
    border: 1px solid #d9d9d9;
    margin-bottom: 15px;
}
.fes_list li dt {
    margin-bottom: 11px;
}
.fes_list li dd {
    font-size: 12px;
}

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

	footer

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


/* シーン */

.scene_image {
    width: 100%;
    line-height: 0;
    font-size: 0;
}
.scene_image img {
    width: 100%;
    height: auto;
}

/* download */

.download {
    background: url(../img/bg_download.jpg) no-repeat center center/cover;
}
.download dl {
    width: 889px;
    margin: 0 auto;
    padding: 80px 0 83px;
    color: #fff;
    overflow: hidden;
    line-height: 1;
    font-weight: normal;
}
.download dt {
    float: left;
    clear: both;
    padding-top: 8px;
}
.download dd {
    float: right;
    text-align: center;
}
.download dt:first-child + dd {
    margin-bottom: 57px;
}
.download dd a {
    display: block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 9px 22px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.download dd a:hover {
    background: #000;
    color: #fff;
}

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

	footer

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

footer {
    text-align: center;
    background: url(../img/bg_footer.jpg) no-repeat center bottom/cover;
    padding: 144px 0 360px;
    position: relative;
}
footer .img {
    line-height: 0;
    font-size: 0;
}
footer .logo_en {
    margin: 15px 0 104px;
}
footer .copyright {
    font-size: 10px;
    line-height: 1;
    margin-top: 20px;
}
footer .copyright span {
    font-size: 14px;
    vertical-align: middle;
}
footer .btn_pagetop {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
}
footer .btn_pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
}
footer .btn_pagetop a:hover {
    opacity: .7;
}
