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




html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, article, figure, figcaption, footer, header, menu, nav, section{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

body {
    display: none;
}








img {
	vertical-align: center;
	border: none;
	width: 100%;/*RWDでは必須指定*/
	height: auto;
}

body{
	background: url(../images/backgroundimg.png) no-repeat center center fixed; 
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	color: #FFFFFF;
}

section{
	clear: both;
}
section.cam{
	margin: 0 15%;/*追加*/
}


/****************************************
ヘッダーメニュー設定(共通)
*****************************************/

/*ハンバーガーメニュー設定*/
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

.fixed {
	top: 0;
	left: 0;
	width: 100%;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: #666666;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	z-index: 999;
}
/*ヘッダーの色太さと色指定*/
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #000000;
	z-index: 9999;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
/*ヘッダーメニューの位置*/
header .inner {
	position: relative;
	max-width: 1980px;
	width: 95%;
	margin: 0 auto;
	padding: 0.5em 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*ヘッダーのロゴ*/
header h1 {
	float: left;
	width: 160px;
	margin-top: 10px;/*追加ここで調整*/
	margin-bottom: 10px;/*追加ここで調整*/
	margin-right: 100px;
	
}
/*スマホボタンメニューの位置*/
header nav {
	
	margin-top: 15px;/*追加*/
	margin-left: 15px;/*追加*/
}

header.navOpen nav {
	opacity: 1;
	right: 0;
}
header nav ul {
	width: 100%;
	padding:0px;
	
}
/*PC版メニューボタン横並び*/
header nav ul li {
	float: left;
	list-style-type: none;
	margin-right: 20px;
	
}
/*PC版メニューボタン大きさと幅と線消し*/
header nav ul li a {
	position: relative;
	display: block;
	padding: 0 5 5 5;
	font-size: 20px;
	text-decoration: none;
	color: #FFFFFF;
}
/*メニューボタンがマウスのったときの色*/
header nav ul li a:hover {
	color: #FF00AB;
}
/*スマホメニューボタンの位置*/
header .button {
	display: none;
	width: 30px;
	position: absolute;
	/*top: 20px;*/
	right: 15px;
	cursor: pointer;
}
/*スマホメニューボタンの色*/
header .button span {
	display: block;
	height: 4px;
	width: 100%;
	background: #FFFFFF;
	border-radius: 2px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
/*スマホメニューボタンの設定*/
header .button span:nth-of-type(2), header .button span:nth-of-type(3) {
	margin-top: 5px;
}
header.navOpen .button span:nth-of-type(1) {
	-webkit-transform: translateY(9px) translateX(0) rotate(45deg);
	-ms-transform: translateY(9px) translateX(0) rotate(45deg);
	transform: translateY(9px) translateX(0) rotate(45deg);
}
header.navOpen .button span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(9px);
	-ms-transform: translateY(9px);
	transform: translateY(9px);
}
header.navOpen .button span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
	transform: translateY(-9px) translateX(0) rotate(-45deg);
}

/****************************************
文字の大きさ（共通）*****************************************/

/*全ての見出しの文字*/
h3 {
	color: #FFFFFF;
	text-align: center;
	font-size: 40px;
	margin-top: 150px;
	margin-bottom: 50px;
}

h4 {
    text-align: center;
    font-size: 25px;
}
p{
	font-size: 18px;
	 line-height: 190%;
}

/****************************************
トップページ設定*****************************************/

/*トップページのPC画像設定*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}

.credit{
	width: 80%;
	margin: 0 auto;
}

/*文章の位置*/
#contents {
	width: 100%;
	margin: 100px auto 0;/*ヘッダーとくっつけるために*/
	line-height: 1.5;
}

/*スクロールすると出てくる*/

.box h3{
  -webkit-transition: all 1s;
  opacity: 1;
}
.box h3.move {
  opacity: 0;
}


.box ul li,.box img {
  -webkit-transition: all 1s;
  opacity: 1;
}
.box ul li.move,.box img.move {
  opacity: 0;
}


/*ニュース部分のリンクテキスト設定*/

#news{
	margin-top: -85px;
	padding-top: 85px;
}


ul.newslist {
	display: block;
	width: 600px;
	margin: -20px auto 60px auto;
	list-style-type: none;
}
ul.newslist li {
	font-size: 20px;
}
ul.newslist li a {
	text-decoration: none;
	color: #FFFFFF;
}
ul.newslist li a:hover {
	color: #FF00B3;
}
/*スクロール画像*/

/******************************************
画像の横に文字
******************************************/

* {
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
/****************************************
画像の横に文字3
*****************************************/
/*flexbox*/
.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.flex--start {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
.flex--center {
	justify-content: center;
	-webkit-justify-content: center;
}
.flex--end {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.flex--bet {
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
/****************************************
トップページスクロール画像
*****************************************/


/*画像と画像の間隔*/
.sec {
	margin-bottom: 120px;
}
/****************************************
chapter02
*****************************************/

.img-container {
	overflow: hidden;
	position: relative;
	padding: 0 70px;/*図の隙間と大きさ*/
	margin: 0 auto;
}
.img-container__img {
	display: block;
	opacity: 0;
	position: relative;
	transition: all .5s .3s ease;
	z-index: 0;
}
/*画像スクロールした時の色*/
.img-container:before {
	background: #FF0000;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transform: translateX(-130%);
	transition: all .8s 0s ease;
	width: 100%;
	z-index: 1;
}
/*文字幅位置*/
.text-container {
	padding: 0 60px;
	margin: 0 auto;
}
/*見出しの文字色と大きさと太さ*/
.text-container__title {
	color: #FFFFFF;
	display: inline-block;
	font-size: 210%;
	font-weight: 600;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
/*見出し文がスクロールした時に出てくる色*/
.text-container__title:before {
	background: #FF0000;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transform: translateX(-100%);
	transition: all .8s .3s ease;
	width: 100%;
	z-index: 1;
}
/*スクロールすると文字がフェードして出てくる*/
.text-container__title__inner {
	display: inline-block;
	opacity: 0;
	transition: all .8s .5s ease;
}
/*同上*/
.text-container__text {
	color: #FFFFFF;
	left: -50px;
	font-size: 20px;
	opacity: 0;
	position: relative;
	transition: all .5s .5s ease;
}
/*アニメーションするプロパティを設定します*/
.img-container.active img {
	opacity: 1;
}
.img-container.active:before {
	transform: translateX(100%);
}
.text-container.active .text-container__title:before {
	transform: translateX(100%);
}
.text-container.active .text-container__title__inner {
	opacity: 1;
}
.text-container.active .text-container__text {
	left: 0;
	opacity: 1;
}
/*スクロール画像指定終わり*/


/*マウスが乗ると拡大*/
.imgWrap img {
	display: block;
	transition-duration: 0.3s;
}
.imgWrap img:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}
.botton img {
	max-width: 320px;
	margin: 0 auto;
	padding-top: 40px;
}


.footer-rogo{
	margin: 0 auto;
	width: 30%;
}

/*トップページに戻る*/
.pagetop {
	margin: 0 auto;
	max-width: 45px;
	}

/****************************************
フッター設定（共通）
*****************************************/

footer p {
	text-align: center;
	color: #FFFFFF;
	padding: 30px 10px 20px;
	margin: 0;
	font-size: 15px;
}


footer {
	background-color: #000000;
	margin-top: 50px;
	margin-bottom: 0px;
	padding: 40px;
}

/****************************************
トップページ設定終わり*****************************************/


/*col*/

.col1 {
	width: 100%;
}
.col2 {
	width: 48%;
}
.col3 {
	width: 30%;
	
}
.col4 {
	width: 25%;
}
.col5 {
	width: 18.4%;
}
.col6 {
	width: 15%;
}



/* screen */
@media screen and (max-width:1980px) {
	


	
	
p {
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}
	
#sec2{
	display: flex;
	flex-direction: row-reverse;/*横に反対にする*/
	}
}



@media screen and (max-width:680px) {
header h1 {
	width: 120px;
	margin-top: 0;
}
header .button {
	display: block;
}
/*スマホメニューボタン開いたときの後ろの色*/	
header nav {
	overflow: auto;
	position: fixed;
	top: 0;
	right: -70%;
	float: none;
	width: 60%;
	max-width: 680px;
	height: 100%;
	background: #000000;
	opacity: 0;
	z-index: 9999;
}
header nav ul li {
	float: none;
	width: auto;
	margin: 10px;
	margin-bottom: 15px;
}
/****************************************スマホのトップページ設定*****************************************/	
	
	
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */	
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
	

	
.img-container {
    padding: 0 20px;
}	
	
	
.credit{
	width: 100%;
	margin: 0 auto;
}	
	
header nav ul li a {
	font-size: 14px;
}
#contents {
	margin-top: 70px;/*映画ポスターとヘッダーの間の隙間なくす*/
	width: 100%;
}
ul.newslist {
	display: block;
	width: 100%;
	margin: -15px auto 30px auto;
	list-style-type: none;
}
	

	

	
/*フォントサイズ変更　上のnewslistから削除して*/
ul.newslist li {
	font-size: 14px;
}
section ul li {
	margin: 20px;
}
/*画像のみ、テキストのみの段落*/
.img-container, .text-container {
	width: auto;
	
}
/*フォントサイズを変える*/	
h3 {
	font-size: 25px;
	margin-top: 100px;
}
h4{
	
	font-size: 18px;
}

p{
	font-size: 14px;
	line-height: 30px;
}

.text-container__title {
	font-size: 18px;
	text-align: center;
}
.text-container__text {
	font-size: 16px;
	margin: 20px;
}
.botton {
    max-width: 200px;
    margin: 0 auto;
}

section.cam{
	margin-right:5%;
	margin-left: 5%;/*追加*/
}	
	

.footer-rogo{
	
	width: 100%;
}	
	
footer p {
	font-size: 5px;
}
	
.col3 {
	width: 35%;
}	
/****************************************スマホのトップページ設定終わり*****************************************/	
	

}
