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

/***
* common_pc.css
*/

@media only print, only screen and (min-width: 768px){

.sp,
.tab,
.tab_sp{
	display:none;
}

.pc,
.pc_tab,
.pcw_pc{
	display:block;
}

.hover{
	opacity:1;
	filter:alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.hover:hover{
	opacity:0.5;
	filter:alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.hyphen{
  position: relative;
  top: -0.1vw;
}

a{
  color: #000;
  -webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

a:hover{
  color: #bbb;
  -webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

/* layout */

body{
  width: 100%;
  height: 100vh;
  background: #000;
}

body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: url("../img/bg_paper.jpg") no-repeat;
  background-size:cover;
}

/* header */

#header{
  width: 100%;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #000;
  font-size: 15px;
  font-family:'Century Schoolbook W01', Georgia, "Times New Roman", Times, "serif";
  letter-spacing: 0.1em;
  position: fixed;
  z-index: 7777;
  transform: translateY(-76px);
  transition: all 1000ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#header.show{
  transform: translateY(0);
  transition: all 1000ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#header::after{
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 2px;
}

#logo{
  width: 160px;
  margin: 0 auto;
  padding-top: 18px;
}

#navL{
  position: absolute;
  top: 26px;
  left: 30px;
  transform: scale(0.9, 1);
  transform-origin: top left;
}

#navR{
  position: absolute;
  top: 26px;
  right: 30px;
  transform: scale(0.9, 1);
  transform-origin: top right;
}

nav li{
  display: inline-block;
}

nav li::after{
  content: ' ・';
}

nav li:last-child::after{
  content: '';
}

nav .active a{
  color: #b7a57a;
}

/* main */

#top{
  position: relative;
}

#bg{
  width: 100%;
  height: 100%;
}

#bgTop{
  width: 100%;
	height: 100%;
  overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#bg video{
  position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100vw;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

#logoTop{
  width: 30vw;
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#topCopy{
  width: 1.92vw;
  position: absolute;
  top: 18px;
  left: 20px;
}

#topSub{
  width: 44.85vw;
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#topCredit{
  width: 100%;
  position: absolute;
  top: 20px;
  color: #fff;
  font-size: 1vw;
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  text-align: center;
  transform: scale(0.9, 1);
  transform-origin: top center;
}

#btnArrow{
  width: 100%;
  height: 80px;
  background: url("../../top/img/icon_arrow.svg") center no-repeat;
  background-size: 2.85vw;
  position: absolute;
  bottom: 0;
}

.snsBtns{
  width: 190px;
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
}

.snsBtns ul{
  width: 220px;
}

.snsBtns li{
  float: left;
  margin-right: 27px;
  position: relative;
}

.btnA24{
  width: 45px;
  top: 2px;
}

.btnFilm{
  width: 22px;
}

.btnTw{
  width: 22px;
  top: 2px;
}

.btnIg{
  width: 20px;
  top: 2px;
}

#bnrMovie{
  width: 300px;
  position: absolute;
  bottom: 30px;
  left: 20px;
  transform: none;
  z-index: 7777;
}

#bnrMovie ul{
  width: 320px;
}

#bnrMovie li{
  width: 140px;
  margin-right: 20px;
  float: left;
}

#bnrMovie a{
  filter: grayscale(100%);
  transition-duration: 0.5s;
}

#bnrMovie a:hover{
  filter: grayscale(0);
  transition-duration: 0.5s;
}

#bnrSecret{
  width: 160px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 7777;
}

/* section */

section{
  width: 100%;
  min-height: 100vh;
  position: relative;
}

#second{
  width: 100%;
  height: 100vh;
  padding: 0;
  border-bottom: 1px solid #000;
}

#ttl_secondCopy{
  width: 5.92vw;
  position: relative;
  margin: 0;
  padding-top: 73px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#award{
  position: relative;
  padding: 73px 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#awardL{
  width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: hidden;
}

#awardL ul{
  width: 730px;
}

#awardL li{
  width: 334px;
  float: left;
  margin: 0 30px 0 0;
}

#awardS{
  width: 1104px;
  margin: 0 auto 20px;
  overflow: hidden;
}

#awardS ul{
  width: 1130px;  
}

#awardS li{
  width: 200px;
  float: left;
  margin: 0 26px 26px 0;
}

#awardTxt{
  width: 436px;
  margin: 0 auto;
}

/* introduction */

#introduction{
  margin-bottom: 80px;
  padding-top: 140px;
}

#ttlIntroduction{
  width: 320px;
  margin: 0 auto 80px;
}

#introductionTxt{
  float: left;
  margin-left: 80px;
  transform: scale(0.9, 1);
  transform-origin: top left;
}

#introduction h4{
  margin-bottom: 40px;
  font-size: 1.429vw;
  line-height: 2;
  font-family: Shuei Mincho M, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

#introduction p{
  width: 37.71vw;
  font-size: 16px;
  line-height: 2;
  font-family: Shuei Mincho M, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: justify;
}

#bgStamp{
  width: 8.92vw;
  position: absolute;
  top: 60px;
  right: 5.7vw;
  animation: 30s linear infinite rotation;
}

#introductionImgPhoto{
  width: 45.71vw;
  position: absolute;
  top: 120px;
  right: 0;
}

#introductionImgPhoto li{
  position: relative;
  list-style-type: none;
}

#introductionImgPhoto li:hover{
  z-index: 1111;
}

#introductionImg1{
  width: 34vw;
  top: 0;
  left: 8.57vw;
}

#introductionImg2{
  width: 25vw;
  top: -8vw;
  right: -20vw;
}

#introductionImg3{
  width: 34vw;
  top: -20vw;
  left: 1.42vw;
}

@keyframes rotation{
  0%{ transform:rotate(0); }
  100%{ transform:rotate(360deg); }
}

/* story */

#story{
  min-height: calc(100vh - 73px);
  padding-top: 74px;
}

#storyImg{
  width: 50%;
  height: calc(100vh - 73px);
  float: left;
  position: relative;
  overflow: hidden;
}

#storyImg video{
  position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: calc(100vh - 73px);
	min-width: 100%;
	min-height: 100%;
  transform: translate(-50%,-50%);
}

#storyTxt{
  width: 50%;
  height: calc(100vh - 73px);
  float: right;
  background: #fff;
}

#storyTxtInner{
  padding: 70px;
  height: calc(100vh - 213px);
}

#storyTxtInner h3{
  width: 9.28vw;
  margin: 5vw auto 3.57vw;
}

#storyTxtInner h4{
  width: 26vw;
  margin: 0 auto 2.85vw;
}

#storyTxtInner p{
  padding: 0 4.28vw;
  transform: scale(0.9, 1);
}

#storyTxtInnerWrap{ 
  border: 3px solid #000;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#storyTxtInner p{
  margin-bottom: 70px;
  font-size: 1.143vw;
  line-height: 2;
  text-align: justify;
}

/* comment */
#comment{
  padding-top: 140px;
}

#ttlComment{
  width: 204px;
  margin: 0 auto 50px;
}

#commentImg1,
#commentImg2,
#commentImg3{
  position: absolute;
  top: 0;
  z-index: 0;
}

#commentImg1{
  width: 12.71vw;
  top: 60px;
  left: 300px;
}

#commentImg2{
  width: 8.57vw;
  top: 360px;
  right: 180px;
}

#commentImg3{
  width: 14.28vw;
  top: 1000px;
  left: 200px;
}

#commentList{
  margin-bottom: 140px;
}

#commentList li{
  margin-bottom: 60px;
  transform: scale(0.9, 1);
  text-align: center;
}

#commentList h4{
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.8;
}

#commentList h5{
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 18px;
  line-height: 1.4;
}

#commentImg li{
  width: calc(100% / 3);
  float: left;
}

/* movie */

#trailer{
  min-height: auto;
}

#trailer{
  padding: 140px 0;
  height: auto;
  background: url("../../second/bg_movie") center no-repeat;
  background-size: cover;
}

#ttlMovie{
  width: 182px;
  margin: 0 auto 60px;
}

#movieMain{
  width: 830px;
  margin: 0 auto 60px;
  text-align: center;
}

#movieMain a,
#movieSub a{
  position: relative;
  display: block;
}

#movieMain a::after{
  content: '';
  width: 60px;
  height: 40px;
  margin-top: -20px;
  background: url("../../second/icon_play.svg") center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#movieSub a::after{
  content: '';
  width: 40px;
  height: 28px;
  margin-top: -20px;
  background: url("../../second/icon_play.svg") center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#movieMain p,
#movieSub p{
  margin-top: 20px;
}

#movieSub{
  width: 830px;
  margin: 0 auto;
  overflow: hidden;
}

#movieSub ul{
  width: 860px;
}

#movieSub li{
  width: 400px;
  float: left;
  margin: 0 30px 0 0;
  text-align: center;
}

#modal{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 7777;
}

#bgModal{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 7778;
  background: #000;
  opacity: 0.9;
  cursor: pointer;
}

#modalInner{
  width: 1000px;
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 7779;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#btnTrailerClose{
  width: 17px;
  position: absolute;
  top: 1px;
  right: -40px;
  display: block; 
}

#modalTab li a{
  width: calc(100% / 3 - 1px);
  padding: 15px 0;
  border-right: 1px solid #000;
  background: #fff;
  text-align: center;
  float: left;
}

#trailer1Tab.active a,
#trailer2Tab.active a,
#trailer3Tab.active a{
  background: #b7a57a;
}

#modal iframe{
  width: 1000px;
  height: 516px;
}

/* cast */

#cast{
  padding: 140px 0 90px;
}

#ttlCast{
  width: 280px;
  margin: 0 auto 80px;
}

.castInner{
  margin: 0 30px;
  padding-top: 35px;
  background: url("../img/bd.gif") repeat-x;
  background-size: 5px;
}

.castList{
  width: 100%;
  overflow: hidden;
}

.castList ul{
  width: calc(100% + 71px);
}

.castList li{
  width: calc(100% / 3 - 71px);
  min-height: 560px;
  margin: 0 35px 30px 0;
  padding-right: 35px;
  float: left;
  border-right: 1px solid #000;
}

.castList li:nth-child(2){
  margin-bottom: 30px;
}

.castList li:last-child{
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.castList h2{
  margin-bottom: 10px;
  font-family: 'CenturySchlbkMTW01-Ital', Georgia, "Times New Roman", Times, "serif";
  font-size: 2.143vw;
  line-height: 1.2;
}

.castList h3{
  margin-bottom: 22px;
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 0.929vw;
}

.castImg{
  margin-bottom: 26px;
}

.castList h4{
  margin-bottom: 0;
  font-family: Shuei Mincho M, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.143vw;
  line-height: 2;
  transform: scale(0.9, 1);
  transform-origin: top left;
  letter-spacing: 0;
}

.castList h5{
  margin-bottom: 26px;
  font-family: Shuei Mincho M, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.286vw;
  line-height: 1.6;
  letter-spacing: 0.09em;
  transform: scale(0.9, 1);
  transform-origin: top left;
}

.castList p{
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 0.929vw;
  line-height: 1.65;
  text-align: justify;
}

.crewList{
  width: 100%;
  overflow: hidden;
}

.crewList ul{
  width: calc(100% + 60px);
  display: flex;
  flex-wrap: wrap;
}

.crewList li{
 width: calc(100% / 3 - 60px);
 margin: 0 60px 50px 0;
 text-align: center;
}

.crewList h4{
  margin-bottom: 10px;
  font-family:'Century Schoolbook W01', Georgia, "Times New Roman", Times, "serif";
  font-size: 19px;
  letter-spacing: 0.06em;
}

.crewList h5{
  margin-bottom: 20px;
  font-family: Shuei Mincho M, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 16px;
}

.crewList p{
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 0.929vw;
  line-height: 1.65;
  text-align: justify;
}

/* footer */

#footer{
  background: #fff;
}

#footerInner{
  padding: 20px 40px;
}

}