@media screen and (max-width: 480px) {


/* TOPページ */
.t_fv {
	min-height: unset;
    width: 100%;
	position: relative;
	overflow: hidden;
	border-bottom: solid 1px #000;
}
.video_2 {
	position: unset;
	top: unset;
	left: unset;
	min-width: unset;
	min-height: unset;
	-webkit-transform: unset;
	-moz-transform: unset;
	transform: unset;
}
.pc_video{
	display: none !important;
}
.sp_video{
	display: block !important;
}
.openbtn2{
	position: absolute;/*ボタン内側の基点となるためrelativeを指定*/
	top:1px !important;
	right:15px;
	width: 50px;
    height:50px;
	cursor: pointer;
  }
	
 .openbtn2 span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 0px;
	height: 2px;
	background-color: #000;
}

.openbtn2 span:nth-of-type(1) {
	top:12px; 
	width: 100%;
}
  
.openbtn2 span:nth-of-type(2) {
	top:23px;
	width:100%;
}

.nav{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
	z-index: 11;
}

.batsu {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	top:-3px;
	right:13px;
	cursor: pointer;
}
   
.batsu::before, .batsu::after { /* 共通設定 */
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px; /* 棒の幅（太さ） */
	height: 40px; /* 棒の高さ */
	background: #fff;
}

.batsu::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
   
.batsu::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.nav span a{
	color: #fff;
}

.nav ul{
	width:240px;
    width: 240px;
    margin: 0 auto;
    position: absolute;
    top: calc(50% - 172px);
    left: calc(50% - 120px);
}
.nav ul li{
	padding-bottom:25px;
	font-size: 20px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
.nav ul li a{
	color: #fff;
}
.nav ul .insta{
	padding-top:20px;
	position: relative;
	padding-left:45px;
}
.nav ul li img{
	position: absolute;
	top:17px;
	left:0px;
 	width:30px;
}

.video_{
width: 100%;
}

.t_movie{
	width: 100%;
	border-bottom: solid 1px #000;
}
.t_movie .wrap{
	width: 95%;
	margin:0 auto;
	padding:40px 0 40px 0;
}
.t_movie .wrap h1{
	font-size: 25px;
	color: #000;
	padding-bottom:20px;
	padding-left:15px;
	font-family: 'Open Sans', sans-serif;
}
.t_movie .container {
    width: 100%;
	margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
	overflow: hidden;
}
.t_movie .gridSizer {
    width: 25%;
}
.t_movie .grid-item img{
    width: 100%;
    border:0;
	transition: all 800ms 0s ease;
}
.t_movie .grid-item img:hover{
	filter:grayscale(100%);
}
.t_movie .grid-item a:hover{
	opacity: 100 !important; 
}
.t_movie .grid-item { 
	width: calc(50% - 10px); 
	padding	: 5px; 
	margin-bottom:20px;
	text-align: center;
}

.t_movie .grid-item p{
	padding-top:10px;
	font-size: 12px;
}
.t_movie .grid-item a p{
	color: #000;
	transition: all 800ms 0s ease;
}
.t_movie .grid-item a p:hover{
	opacity: 0.5;;
}

.t_movie .grid-item_33 { 
	width: calc(50% - 10px); 
	padding	: 5px; 
	margin-bottom:20px;
	text-align: center;
}

.move{
	display: inline-block;
	padding: 6px 20px 6px 20px;
	border:solid 1px #000;
	border-radius: 40px;
	font-size: 12px;
	transition: all 800ms 0s ease;
	cursor: pointer;
	color: #000;
	font-family: 'Open Sans', sans-serif;
}
.move:hover{
	color: #fff;
	background: #000;
}

.footer{
	width: 100%;
}
.footer p{
	font-size: 12px;
	color: #000;
	text-align: center;
	padding:20px 0 20px 0;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
}

.head{
	display: none;
	height: 40px;
	width: 100%;
	border-bottom: solid 1px #000;
	position: fixed;
	background: #fff;
	z-index: 10;
}

.head img{
	position: absolute;
	top:7px;
	left:14px;
	width: 50px;
}

.openbtn3{
	top:18px;
}


#loadingProgressG{
	width: 150px;
    height: 1px;
    overflow: hidden;
    background-color: red;
    position: absolute;
    top: calc(50% - 0.5px);
    left: calc(50% - 75px);
}

.loadingProgressG{
	background-color:rgb(255,255,255);
	margin-top:0;
	margin-left:-250px;
	animation-name:bounce_loadingProgressG;
		-o-animation-name:bounce_loadingProgressG;
		-ms-animation-name:bounce_loadingProgressG;
		-webkit-animation-name:bounce_loadingProgressG;
		-moz-animation-name:bounce_loadingProgressG;
	animation-duration:1.5s;
		-o-animation-duration:1.5s;
		-ms-animation-duration:1.5s;
		-webkit-animation-duration:1.5s;
		-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-timing-function:linear;
		-o-animation-timing-function:linear;
		-ms-animation-timing-function:linear;
		-webkit-animation-timing-function:linear;
		-moz-animation-timing-function:linear;
	width:250px;
	height:19px;
}



@keyframes bounce_loadingProgressG{
	0%{
		margin-left:-250px;
	}

	100%{
		margin-left:250px;
	}
}

@-o-keyframes bounce_loadingProgressG{
	0%{
		margin-left:-250px;
	}

	100%{
		margin-left:250px;
	}
}

@-ms-keyframes bounce_loadingProgressG{
	0%{
		margin-left:-250px;
	}

	100%{
		margin-left:250px;
	}
}

@-webkit-keyframes bounce_loadingProgressG{
	0%{
		margin-left:-250px;
	}

	100%{
		margin-left:250px;
	}
}

@-moz-keyframes bounce_loadingProgressG{
	0%{
		margin-left:-250px;
	}

	100%{
		margin-left:250px;
	}
}

.loading{
	position: fixed;
	width:100%;
	height:100%;

	background: #fff;
	z-index: 111111111;
	text-align: center;
}
.loading #loadingProgressG{
}

.loading img{
	width: 90%;
	display: none;
    position: absolute;
    top: calc(50% - 56px);
    left: calc(50% - 176px);
}


/* MOVIE */
.head_fix{
	display: block;
}

.mp{
	padding-top:40px;
	padding-left:5px !important;
}

/* About */
.about{
	overflow: hidden;
	width: 95%;
	margin:0 auto;
	padding-top:20px;
}
.about .col{
	width: 100%;
	float:none;
}
.about .col:nth-of-type(2){
	width: 100%;
	float:none;
	padding-top: 60px;
}

.about .col .abimg{
	display: block;
	width: 100%;	
}
.about .col .abimg2{
	display: block;
	width: 200px;		
}
.about .col .ab1{
	font-size: 12px;
	color: #000;
	padding:30px 0 0 0;
}
.about .col .ab2{
	font-size: 15px;
	color: #000;
	padding:10px 0 0 0;
}
.about .col .ab3{
	font-size: 12px;
	color: #000;
	padding:20px 0 0 0;
}
.about .col .ab3 a{
	color: #000;
}

.about .col .ab4{
	font-size: 12px;
	color: #000;
	padding:40px 0 0 0;
	line-height: 20px;
	font-weight: 400;
}
.about .col .ab5{
	line-height: 20px;
	font-size: 12px;
	color: #000;
	padding:35px 0 0 0;
	font-weight: 400;
}
.about .col .ab5 br{
	display: none;
}
.ab6{
	font-size: 12px;
	color: #000;
	padding:0px 0 0 0;
	font-weight: 400;
	line-height: 20px;
}
.ab7{
	font-size: 12px;
	color: #000;
	padding:40px 0 40px 0;	
	font-weight: 400;
	line-height: 20px;
}
.abpad{
	margin-bottom: 40px;
}

/* CONTACT */
.contact{
	width: 100%;
	overflow: hidden;
	font-size: 12px;
	padding-top: 20px;
	position: relative;
}
.contact div{
	padding:0 0 30px 0;
}
.contact div span{
	width: 200px;
	display: inline-block;
}
.contact div span{
	width: 200px;
	display: inline-block;
}
.contact div span font{
	position: relative;
}
.contact div span font::after{
	content:'※';
	position: absolute;
	top:3px;
	right:-12px;
	font-size: 0.6rem;
}

.alert::after{
	content:'必須入力の項目が未入力です。';
	position: absolute;
	top:0px;
	left:0px;
	font-size: 12px;
	color: red;
}

.contact .textinput {
	font-family: "noto-sans-cjk-jp", sans-serif;
    height: 40px !important;
    line-height: 20px !important;
    width: calc(100% - 22px) !important;;
    border: 1px solid #000;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
}
.contact .textinput_h{
	height: 300px !important;
	width: calc(100% - 22px) !important;
}
.contact .buton {
	margin-top:0px;
    background: #000;
    display: block !important;
    color: #fff !important;
    border: solid 1px #fff;
    padding: 10px !important;
    width: calc(100% - 22px) !important;
    cursor: pointer !important;
    padding-bottom: 10px !important;
	text-align: center;
	transition: all 500ms 0s ease;
	font-family: 'Open Sans', sans-serif;
}
.contact .buton:hover{
    background: #fff;
    border: solid 1px #000;
    color: #000 !important;
}

#mail_confirm{
	display: none;
	height: 100vh;
	width:100%;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top:0;
	left:0;
	z-index: 11;
}
#mail_confirm .confirm{
	margin: 0px auto;
	width: 100%;
	background: #fff;
	padding: 30px 5px 30px 20px;

	color:#000;
	display: block;
	padding-bottom: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	overflow-y: scroll;
	max-width: 600px;
	height: 100%;
	font-size: 0.8rem !important;
	position:relative;
}
#mail_confirm .confirm span{
	position:absolute;
	top:10px;
	right:20px;
	color:#000;
	width:40px;
	font-size: 1.3rem !important;
	display:block;
}
#mail_confirm .confirm h1{
	padding-bottom: 30px;
	font-size: 0.8rem !important;
}
#mail_confirm .confirm h2{
	padding-bottom: 10px;
	font-size: 0.8rem !important;

}
#mail_confirm .confirm p{
	padding-bottom: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	white-space: pre-wrap;
	max-height: 150px;
	font-size: 0.8rem !important;

}
#mail_confirm .confirm .sndBtn{
	background: #000;
	color: #fff;
	padding: 6px;
	display: block;
	text-align: float;
	float: left;
	text-align: center;
	margin-right: 10px;
	width: 80px;
	padding-bottom: 9px;
	border:1px solid #000;
	transition: all 500ms 0s ease;
	cursor: pointer;
	margin-top: 20px;
	font-size: 0.8rem !important;

}
#mail_confirm .confirm .sndBtn:hover{
	border:1px solid #000;
	background: #EFEEE9;
	color: #000;
}
#mail_confirm #ic7{
	overflow-y:scroll;
}
#thanks{
	display: none;
	margin:30px auto;
	width: 90%;
	background: #fff;
	padding: 30px 5px 30px 5px;
	text-align: center;
	font-size: 0.8rem !important;

}
#thanks p{
	color:#000;
	display: block;
	font-size: 0.8rem !important;

}
.note2{
	padding-top:20px;
}
.chk{
	border: solid 1px red !important;
}

#mfp_hidden{
	display: none;
}

#mfp_loading{
	display:none;
}
#mfp_loading_screen{
	display:none;
}
#mfp_overlay_background{
	display:none;
}
#mfp_overlay{
	display:none;
}
#mfp_overlay_background{
	display: none !important;
}
#mfp_loading_screen{
	display: none !important;
}
#mfp_hidden{
	display: none !important;
}

/* movie */
.video_4 {
    width: 100%;
    padding-bottom: 50px;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
}

.mv_area{
	padding-top:60px;
	width: 100%;
	overflow: hidden;
}
.mv_area .wrap{
	width: 95%;
	margin:0 auto;
	overflow: hidden;
	border-bottom: solid 1px #000;
}
.mv_area .wrap .video{
}
.mv_area .wrap .info{
	padding-top: 40px;
}
.mv_area .wrap .title{
	font-size: 25px;
	font-family: 'Open Sans', sans-serif;
}
.mv_area .wrap .note{
	padding-top: 20px;
	font-size: 12px;
	line-height: 20px;
	padding-bottom: 50px;
	font-weight: 400;
}
.ow{
	font-size: 25px;
	padding-left: 10px;
	font-family: 'Open Sans', sans-serif;
}

.mv_area .container {
    width: 100%;
	margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 0px;
	overflow: hidden;
}
.mv_area .gridSizer {
    width: 25%;
}
.mv_area .grid-item { 
	width: calc(50% - 10px); 
	padding	: 5px; 
	margin-bottom:20px;
	overflow: hidden;
}
.mv_area .grid-item_100 { 
	width: calc(100% - 10px); 
	margin-bottom:10px;
	overflow: hidden;
	padding:0 5px 0 5px;
}
.mv_area .grid-item img{
	width: 100%;
    border:0;
	display: block;
}
.mv_area .grid-item_100 img{
	width: 100%;
	display: block;
    border:0;
}
.mtpad{
	padding-left: 10px;;
}

/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
	
	
	/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	 
	.fadeUpTrigger{
		opacity: 0;
	}

	.v_wrap{
		display: block;
		position: relative;
		transition: all 800ms 0s ease;
	}
	.v_wrap::after{
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity:0;
		position: absolute;
		top: 0;
		left: 0;
		transition: all 800ms 0s ease;
	}
	.v_wrap:hover::after{
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity:0.6;
		position: absolute;
		top: 0;
		left: 0;
	}
	.pager{
		width: 100%;
		margin:0 auto;
		border-top: 1px solid #D8D8D8;
		border-bottom: 1px solid #D8D8D8;
		padding:20px 0 20px 0;
		margin-bottom: 40px;
	}
	.pager p{
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 14px;
		color: #000;
	}
	.pager .padd{
		padding:0 50px 0 50px;
	}
	.pager .p1{
		position: absolute;
		top:20px;
		left:10px;
	}
	.pager .p2{
		text-align: center;
	}
	.pager .p3{
		position: absolute;
		top:20px;
		right:10px;
	}	
}