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


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 950px) {
.pc { display: none !important; }
.sp { display: block !important; }
}



body {
font-family: 'Noto Serif JP', sans-serif;
line-height: 1.5;
background-color: #ffff;
}	

img{
	max-width: 100%;
	height: auto;	
}

a{
 color: beige;
}
/*.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}*/

#top:before {
    content: " ";
    margin-top: -50px;
    height: 50px;
    display: block;
    visibility: hidden;
}
#intro:before {
    content: " ";
    margin-top: -120px;
    height: 120px;
    display: block;
    visibility: hidden;
}
#story:before {
    content: " ";
    margin-top: -120px;
    height: 120px;
    display: block;
    visibility: hidden;
}

.mainSite {
 width: 100%;
 padding: 0;
 margin:  0;
}
.wrapper {
	position: relative;
	/*max-height: 1980px;*/
	text-align: center;
	margin: 50px auto 0;
}
/*アニメーション--------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*loading 1番上：1000--------------------------*/

.loading_wrap{
position: fixed;
    z-index: 999;
	width: 100%;
 height: 100vh;
 background-color: #e4007f;
}


.logo {
position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	text-align: center;
    z-index: 1000;
}
.logo img{
	 width: 50%;
}


.blinking{
	-webkit-animation:blink 0.7s ease-in-out infinite alternate;
    -moz-animation:blink 0.7s ease-in-out infinite alternate;
    animation:blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/*--------------------
TRAILER 2番：900
--------------------*/

.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 900;
    /*opacity: 0;
    display:none;*/
    transition-duration: 0.5s;
    
}

.trailer.on{
    opacity: 1;
}


.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    opacity: 1;
    z-index: 900;
    transition-duration: 1s;
    
}

.close_btn{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 902;
  transition-duration: 0.1s;
  /*opacity: 0;*/
  cursor: pointer;
}
.close_btn i{
	color: #fff;
	z-index: 903;
}


.trailer.on .close_btn{
     opacity: 1;
}
.close_btn::before,
.close_btn::after {
  position: absolute;
  top: calc(50% - 1px);
  left: -1px;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #fff;
}
 
.close_btn::before {
  transform: skewY(-45deg);
}
 
.close_btn::after {
  transform: skewY(45deg);
}

.close_btn:hover{
    opacity: 0.5 !important;
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%,-50%) scale(1,1);
    width: 60%;
	padding-bottom: 35%;
    height: 1;
    z-index: 901;
    transition-duration: 0.5s;
}

.trailer.on .trailer_inner{
    transform: translate(-50%,-50%) scale(1,1);
}

.trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: center;
	margin-top: 5px;
}

.trailer_tab li{
	display: flex;
	justify-content: center;
    width: 50%;
	margin-right: 4px;
	padding: 7px 10px;
    border:solid 1px #fff;
    font-size: 1rem;
    text-align: center;
    background:rgba(255, 255, 255, 1);
    color: #000;
	/*border-radius: 4px;*/
}
.trailer_tab li:last-child{
	margin-right: 0;
}

.trailer_tab li.f_act{
    background: #000;
    color: #fff;
	cursor: pointer;
}

.trailer_tab li.f_act:hover{
    background: #aaa;
}

#youtube1,#youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    transition-duration: 1s;
    opacity: 1;
}

.trailer.on #youtube1,.trailer.on #youtube2{
    transform: scale(1,1);
    opacity: 1;
}
/*------------------
TopBTN
------------------*/
.btn-pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(228, 0, 127, 0.7);
  border-radius: 50%;
  z-index: 200;
}
.btn-pageTop:hover {
  background: #333;
  transform: scale(1.1);
  transition: 0.2s;
}
.top_btn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.btn-pageTop a {
  color: #aaa;
}
.btn-pageTop a:hover {
  cursor: pointer;
}
.btn-pageTop a:active {}

/*nav 3番：800----------------------------------------*/

.nav_titlelogo{
	line-height: 1;
	z-index: 300;
}

.nav_titlelogo img{
	height: 40px;
}


#nav_box{
	width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    z-index: 300;
    background-color: #e4007f;
    background-repeat: no-repeat;
    background-position: top center;
}

.nav_box_inner{
    width: 99%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 300;
	display: flex!important;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.nav_box_inner ul{
	display: flex;
	display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.nav_item{
	height: 50px;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 13pt;
    font-weight: 800;
    color: #ffffff;
    background-color: #e4007f;
    border: 0;
    overflow: hidden;
    position: relative;
    transition: 0.7s;
    -webkit-transition: 0.7s;
}

.nav_item a{
    height: 50px;
    display: flex;
	align-items: center;
    padding: 0 20px;
    color: #fff;
    line-height: 50px;
}
.nav_item a:hover{
}
.nav_item_hover a{
	color: #fff;
	cursor: pointer;
	transition: .7s;
}

.nav_item_hover a:hover{
	background-color: #ffffff;
	color: #e4007f;
	font-weight: bold;
	transition: .7s;
}


i.fab{
	    color: #ffffff;
    background-color: #1DA1F2;
    width: 30px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    vertical-align: middle;
    border-radius: 15px;
}
.nav_item_hover a:hover i.fab{
	color: #ffffff;
    background-color: #e4007f;
	transition: .7s;
}



/*TOP---------------------------------------------*/

.top{
	width: 100%;
	position: relative;
}
.top_main img{
	vertical-align: bottom;
}
.top_info{
	width: 35%;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.titlelogo{
	margin-bottom: 5%;
}
.date{
	/*transform: rotate(-2deg);*/
	/*width: 90%;*/
    margin: 0 auto;
}
.date img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.top_bottom{
	background-color: #e4007f;
	padding: 3% 0;
}
/*.top_billing{
	margin-bottom: 40px;
}*/
.top_billing img{
	width: 45%;
}

.bnr0404{
	position: absolute;
	    width: 17%;
    right: 2%;
    bottom: 35%;
}
.bnr0404 a{
	transition: .7s;
	
}
.bnr0404 a:hover{
	transition: .7s;
	opacity: .6;
	
}

/*INTRO---------------------------------------------*/

section.intro{
	background-image: url("../img/intro_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10% 0;
}
h1.midashi_title{
	height: 40px;
    margin: 0 auto 40px;
	/*transform: rotate(-2deg);*/
}
h1.midashi_title img{
	height: 40px;
	/*backface-visibility: hidden;
	-webkit-backface-visibility: hidden;*/
}
.inner{
	width: 60%;
	margin: 0 auto;
}
.text{
	text-align: justify;
    text-align-last: left;
}

.intro_wrap{
	margin-bottom: 30px;
}

.trailer_wrap{
	width: 25%;
	margin: 0 auto;
	position: absolute;
	top: 80px;
	left: 30px;
	border: 10px #5d0e12 solid;
}
.trailer_midashi{
	color: #fff;
	background-color: #000;
	padding: 10px;
	text-align: center;
	line-height: 1;
}
.trailer_midashi img{
	height: 20px;
}

.trailer_btn{
	overflow: hidden;
	width: 100%;
 	margin:0 auto;
	cursor: pointer;
	line-height: 1;
}
.trailer_btn a{
	    display: grid;
}
.trailer_btn img{
	transition:1s all;
}
.trailer_btn img:hover{
	 transform:scale(1.1,1.1);
  transition:1s all;
}
.steel{
	width: 100%;
	height: 0;
	background-image: url("../img/imgs.jpg");
	padding-bottom: calc(1275 / 1922 * 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	}
.steel img{
	    vertical-align: top;
	line-height: 1;
}

/*COMMENT---------------------------------------------*/

section.comment{
	background-color: #000;
	color: #fff;
	padding: 10% 0 5%;
}
.comment_item{
	padding: 5%;
	border: 2px #e4007f solid;
	margin-bottom: 40px;
	border-radius: 35px;
}
.name{
	text-align: left;
	color: #e4007f;
	font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.btm_titlelogo {
    width: 50%;
    margin: 0 auto 20px;
}

/*NEWS---------------------------------------------*/

.news{
	padding: 5% 0;
}
.news_inner{
	width: 60%;
	margin: 0 auto;
	background-color: #e4007f;
	color: #fff;
	text-align: justify-all;
	text-align-last: left;
	padding: 5%;
	box-sizing: border-box;
}
.news_title{
	margin-bottom: 20px;
	font-size: 18px;
}
.news_text{
	margin-bottom: 20px;
	text-align: left;
    text-align-last: left;
}
.news_text a{
	/*color: #00aaff;*/
	color: #000000;
    text-decoration: revert;
	    word-break: break-all;
	transition: .7s;
}
.news_text a:hover{
	transition: .7;
	opacity: .6;
}
/*.news_text.time,.news_text.content{
	text-indent: -3em;
    padding-left: 3em;
}*/
.news_text.content span{
	    display: block;
    padding-left: 1em;
    text-indent: 0;
	margin-bottom: 10px;
}
/*.news_text.content span:last-child{
	margin-bottom: 0;
}*/
.tel-link-none{
	pointer-events: none;
}



/*FOOTER---------------------------------------------*/

footer{
	background-color: #e4007f;
	padding: 2% 0;
}
footer .inner{
	width: 30%;
	line-height: 1;
}




@media screen and (max-width: 950px) {
	
	.wrapper {
	margin: 50px auto 0;
}
	
	.logo img{
	 width: 100%;
}
	
	/*--------------------
TRAILER
--------------------*/
	.trailer .trailer_inner {
    width: 80%;
    padding-bottom: 55%;
}
	/*nav-------------------------------------------------*/
	
	#nav_box{
		width: 100%;
		
	}
	
	/*.nav_box_inner{
		display: none!important;
	}*/
	
		/*hamburger-<strong>menu</strong>*/

.menu {
    height: 20px;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 30px;
    z-index: 779;
    cursor: pointer;
	
}
.menu_bg {
    width: 60px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    border-radius: 5px;
}
.menu__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 9px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}
/*gnav*/

.gnav {
	background-image: url("../img/menu_bg_mbl.jpg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	display: none;
	height: 100%;
	position: fixed;
	top: 50px;
	left: 0;
	overflow: auto;
	width: 100%;
	z-index: 299;
}
.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
	height: 100%;
	min-height: 100vh;
}
.gnav__menu__item {
  width: 100%;
  height: 60px;
  vertical-align: middle;
  line-height: 60px;
	text-align: center;
}
.gnav__menu__item:last-child {
  border: none;
}
	.social__icon .gnav__menu__item a {
text-shadow: none;
	}
.gnav__menu__item a {
  color: gray;
text-shadow: 1px 0 10px #5d0e12;
  font-size: 16px;
	font-weight: 700;
  text-decoration: none;
  transition: .5s;
	cursor: default;
}
.gnav__menu__item a:hover {

}
	.nav_item_hover a{
	color: #fff;
	cursor: pointer;
}

.nav_item_hover a:hover{
  	background-color: #fff;
	color: #e4007f;
	font-weight: 700;
}
	/*humberger-menuここまで*/
	
	.nav_box_inner ul{
		
		display: block;
	}
	
	
	/*TOP-------------------------------------------*/
	
	.inner {
    width: 80%;
	}
	
	.top_info {
    width: 70%;
    bottom: 5%;
    
}
	/*.titlelogo {
    margin-bottom: 1%;
}*/
	.top_billing {
		width: 80%;
		margin: 0 auto;
		padding-bottom: 20px;
	}
	.top_billing img {
    width: 100%;
}
	.top_bottom{
		padding: 10% 0;
	}
	
	/*INTRO-------------------------------------------*/
	section.intro{
		padding: 15% 0;
	}
	#intro:before {
    margin-top: -100px;
    height: 100px;
}
	.trailer_wrap {
    margin: 0 auto;
		position: initial;
    width: 60%;
}
	.trailer_midashi img {
    height: 18px;
}
	h1.midashi_title {
    margin: 0 auto 30px;
}
	h1.midashi_title img {
    height: 40px;
}
	.intro_wrap{
	margin-bottom: 60px;
}
	
	/*COMMENT-------------------------------------------*/
	
	section.comment {
    padding: 15% 0;
		margin-top: -1px;
	}
	.comment_item {
    padding: 10% 5%;
    border-radius: 15px;
}
	.name {
		font-size: 18px;
	}
	.btm_titlelogo {
    width: 60%;
		margin: 0 auto 10px;
}
	footer{
		padding: 5% 0;
	}
	footer .inner {
    width: 70%;
	}
	.news{
		padding: 15% 0;
	}
	.news_inner{
		width: 80%;
		padding: 10% 5%;
	}
	
	
	.bnr0404 {
    position: inherit;
    width: 45%;
    margin: 0 auto 20px;
	}
	
	
	
	
}


