@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
--point-color-red: #BD111A;
--point-color-blue: #345E9E;
--txt-color: #000;
--head-color: rgba(255,255,255,1);
--content-padding: 120px 0;
--base-color: #9DC3C3;
}


/*COMMON*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}



body {
	color: var(--txt-color);
	background-color: #000;

	font-size: 14px;
	font-weight: 400;
	line-height: 160%;

	font-family: "Be Vietnam Pro",'Noto Sans JP',YuGothic, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	font-feature-settings: "palt";

}



p{
	line-height:160%;
	letter-spacing:0px;
	margin-bottom: 10px
}
p.caption{
	font-size: 12px;
}

a,a:hover,a:visited,a:active{
	color:#fff;
	text-decoration: none;
}
img{
  vertical-align:bottom;
}

h1 {
	margin-bottom: 40px;
}




#opening{
	opacity: 1;
	position: fixed;
	background: rgba(0,0,0,1);
	width:100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
	top: 0;
	left: 0;
	animation: openanime .5s ease-out 1s 1 normal forwards;
}


#opening .logo{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
	z-index: 9999;

	opacity: 1;
	
	animation: openlogo .8s ease-out 0 1 normal forwards;
}


#opening .logo img{
	height: auto;
	width:300px;
}


@keyframes openanime {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}
@keyframes openlogo {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}






header{
	display: flex;
	padding: 30px 0 50px;
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	
	transition: .3s all ease-in-out;
}


header section{
	width:100%;
	min-width: 1080px;
	padding: 0 30px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items:flex-end;
}

header #hlogo{
	width:253px;
	transition: .3s all ease-in-out;
	opacity: 1;
}
header #hlogo img{
	width:100%;
	height: auto;
}



#panel-btn {
	display: inline-block;
	position: absolute;
	width:30px;
	height: 30px;
	margin: 0 0 0;
	top:40px;
	left:40px;
	cursor:pointer;
	z-index:9999;

}


#panel-btn-icon {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	margin: 0 0 0 -10px;
	background: #ffffff;
	overflow: visible;
}
#panel-btn-icon:before, #panel-btn-icon:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	margin-left: -15px;
	background: #ffffff;
	transition: .3s;
}
#panel-btn-icon:before {
	margin-top: -12px;
}
#panel-btn-icon:after {
	margin-top: 9px;
}

#panel-btn .close {
	transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after {
	margin-top: -1px;
	background: #ffffff;
}
#panel-btn .close:before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel-btn .close:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

#panel{
	position: fixed;
	top:0;
	left: 0;
	z-index: 1020;
	width: 100vw;
	height: auto;
	transition: all .5s ease-in-out;
	opacity: 0;
	pointer-events: none;
	display: block;
}
#panel.openmenu{
	opacity: 1;
	pointer-events:visible;
}


.naviLogo{
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	z-index: 1030;
}
.naviLogo img{
	width: 100%;
	height: auto;
}



#panelBg{
	position: absolute;
	top:0;
	left: 0;
	width:100%;
	height: 100vh;
	background: rgba(0,0,0,.9);	
	z-index: 100;
	display: none;
}

#panel .gnaviList{
	display: flex;
	flex-wrap: wrap;
	
	width: 1000px;
	margin: 0 auto;
	
	padding: 160px 0 0 0;
}

#panel .gnaviList ul{
	display: block;
	width: 33%;
	margin: 0 auto;
	padding: 0 0;
}
#panel .gnaviList ul li{
	text-align: left;
	display: block;
	margin-bottom: 20px;
}

#panel .gnaviList li a{
	text-decoration: none;
	color: #fff !important;
	display: block;
	font-size: 24px;

}
#panel ul#gnavi li a::after{
	content: "";
	display: none;
}

#panel ul#gnavi li.yoyakuBtnPC{
	display: none;
}
#panel ul#gnavi li a::after{
	content: "";
	position: absolute;
	left: 17px;
	bottom: -5px;
	background: #000;
	width:calc(100% - 34px);
	height: 1px;
	transition: all .2s ease-in-out;
}
#panel ul#gnavi li a.active::after{
	opacity: 1;
	transform: scaleX(1);
}
#panel ul#gnaviR{
	padding: 0 20px;
	justify-content: flex-start;
}
#panel ul#gnaviR li a{
	color: #333;
}



/*footer*/
footer{

	padding: 40px 0 40px;
	text-align: left;
	position: relative;
	background: #000;
	letter-spacing: .1em;
	font-weight: 500;
}
footer section{
	width:100%;
	min-width: 1080px;
	padding: 0 40px;
	margin: 0 auto;
}

footer .footerTop{
	display: flex;
	flex-wrap: wrap;
}

.footerToplogo{
	width: 40%;
}
.footerToplogo img{
	width: 20%;
}
.footerTopAdress{
	width: 30%;
	font-size: 14px;
	color:#fff;
	text-decoration: none;
}
.footerTopMenu{
	width: 30%;
}
.footerTopMenu li{
	font-size: 14px;
}
.footerTopMenu li{
}


footer .footerBtm{
	display: flex;
	flex-wrap: wrap;
	padding: 70px 0 0 0;
	
	justify-content: space-between;
}
.footerBtmL{
	font-size: 14px;
}
.footerBtmL a{
	display: inline-block;
	margin-right: 2em;
}
.footName{
	color: #fff;
}






/*コンテンツ*/

#wrap{

	margin: 0 0 0 0;
	padding-bottom: 2px;
	border-bottom: 2px solid #fff;
	width: 100%;
	position: relative;
	overflow: hidden;
}




/*promotion*/

#promotion {
	position: relative;
	background: url("../../images/home_bg_pc.jpg") no-repeat center top;
	background-size: 100% auto;
	background-attachment: fixed;
	
	width: 100vw;
	height: 100vh;
}
#promotion .promologo{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
	z-index: 1;

	opacity: 1;
	
	animation: openlogo .8s ease-out 0 1 normal forwards;
}
#promotion .promologo h1{
	margin: 0;
	}
#promotion .promologo img{
	height: auto;
	width:300px;
}




/*about*/

#about{
	width: 100vw;
	
	background: #000;
}

.aboutPic{
	text-align: center;
	padding: 300px 0 150px;
}

.aboutPic img{
	width: 50%;
	height: auto;

}

.aboutTxt{
	position: relative;
	
	display: flex;
	flex-wrap: wrap;
	
	justify-content: center;
}

.aboutTxt::before{
	content:"";
	width: 100%;
	height: 2px;
	background: #fff;
	
	position: absolute;
	top: 50%;
	z-index: 1
	
}

.aboutTxt1{
	position: relative;
	z-index: 2;
	
	font-size: 30px;
	color: #fff;
	
	width: 30%;

	text-align: left;
}
.aboutTxt1 p{
	display: inline-block;
	margin: 0;
	padding: 0 3px;
	line-height: 100%;
	background: #000;
	font-weight: 500;
}

.aboutTxt2{
	position: relative;
	z-index: 2;
	
	font-size: 30px;
	width: 30%;

	color: #fff;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: right;
}
.aboutTxt2 p{
	display: inline-block;
	margin: 0 0 0 50px;
	padding: 0 3px;
	line-height: 100%;
	background: #000;
	font-weight: 500;
	

}









/*models*/


#models{
	width: 100vw;
	
	background: #000;
	
	padding: 150px 0 150px;
}


#models h2{
	font-size:  34px;
	text-align: center;
	margin: 0 0 40px 0;
	color: #fff;
	
	font-weight: 500;
}


.modelIndex{
	min-width: 1000px;
	width: 60%;
	
	margin: 0 auto;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.modelIndex .modelMenu{
	width: 48%;
	position: relative;
}

.modelIndex .modelMenu img{
	width: 100%;
	height: auto;
	opacity: 1;
	transition: all .2s ease-in-out;
}
.modelIndex .modelMenu .modelBtnName{
	
	opacity: 0;
	transition: all .2s ease-in-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	border: 2px solid #fff;
	padding: 10px 20px ;
	line-height: 100%;
	
	font-size: 24px;
	
	color: #fff;
	
	z-index: 2;
	pointer-events: none;
}

.modelIndex .modelMenu:hover .modelBtnName{
	opacity: 1;
	background: rgba(0,0,0,.5);

}
.modelIndex .modelMenu:hover a img{
	opacity: .4;

}



/*sns*/


#sns{
	width: 100vw;

	
	background: #000;
}

#sns .snsIcons{
	margin-bottom: 40px;
}
#sns .snsIcons ul{
	display: flex;
	gap:0 20px;
	flex-wrap: wrap;
	justify-content: center;
}

#sns .snsIcons ul li{
	width: 40px;
}
#sns .snsIcons ul li a{
	display: block;
	width: 40px;
	
	pointer-events: none;
	
	
}
#sns .snsIcons ul li a img{
	width: 100%;
	height: auto;
}

.snsphName{
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: 500;
	
	margin-bottom: 40px;
	

}

.snsph{
	padding-bottom: 140px;
}
.snsph img{
	width: 100%;
	height: auto;
}








/*contactChart*/


#contact{
	background: #000;
}
#contact section{
	width: 700px;
	margin: 0 auto;
	padding: 140px 0 100px 0;
	
	color: #fff;
}

#contact h1{
	font-size:  34px;
	text-align: center;
	margin: 0 0 40px 0;
	color: #fff;
	
	font-weight: 500;
}




.contactChart{
	padding-bottom: 60px;
}

.contactChart dl{
		display: flex;
		flex-wrap: wrap;
;
}
.contactChart dl dt,
.contactChart dl dd{
	padding: 0 0 20px;
	font-size: 16px;
}
.contactChart dl dt p,
.contactChart dl dd p{
	line-height: 100%;
}
.contactChart dl dt{
	padding: 0 0 0;
	line-height: 100%;
	width:100%;
}
.contactChart dl dt.hissu::after{
	content: "*";
	font-size: 16px;
	color: #ff0000;
}
.contactChart dl dd{
	width:100%;
}
.contactChart dl dt:nth-of-type(1){
}
.contactChart dl dd:nth-of-type(1){
}
.contactChart dl dd input[type=text]{
	width: 100%;
	padding: 15px;
	border-radius: 5px;
}
.contactChart dl dd input[type=email]{
	width: 100%;
	padding: 15px;
	border-radius: 5px;
}


.contactChart dl dd select::-ms-expand {
	display: none;
}
.contactChart dl dd select {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 20px;
	padding: 15px;
	border: 1px solid #ccc;
	background: #fff url("../../images/select_arrow.png") no-repeat right 10px center;
	background-size: 15px auto;
	border-radius: 4px;
	
	color: #333;
}





.contactChart dl dd textarea{
	width: 100%;
	height: 300px;
	padding: 15px;
	border-radius: 5px;
	line-height: 160%;
}

.contactChart dl dt p{
	display: inline-block;
}


.submitArea{
	text-align: center;
}
.submitArea p{
	display: inline-block;
}
.wpcf7-spinner {
  display: none !important;
}



.submitArea input[type=submit]{
	border: none;
	background: #333;
	padding: 20px 80px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.submitArea input[type=submit]:hover{
	background: #888;
}


.backform{
	border: none;
	background: #333;
	padding: 20px 80px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: all .2s ease-in-out;
	margin-left: 5px;
}

.pageRead{
	margin-bottom: 30px;
}
.contactcomplete{
	margin-bottom: 120px;
	line-height: 200%;
}
.contactcompleteRead{
	
	font-size: 24px;
	margin-bottom: 30px;
	text-align: center;
	line-height: 160%;
}

.backHome{
	text-align: center;
}
.backHome a{
	display: inline-block;
	background: #333;
	padding: 15px 30px;
	letter-spacing: .1em;
}






/* バリデーションNGのときだけ、既定の全体メッセージを隠す */
.wpcf7 form.invalid .wpcf7-response-output {
  display: none !important;
}

/* .pageRead 直下に出す全体エラー用の見た目 */
.form-global-error {
  margin: 12px 0 16px;
  padding: 10px 12px;
  border: 1px solid #C13740;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none; /* JSで必要時に表示 */
	
	margin-bottom: 30px;
}
.wpcf7-not-valid-tip{
	margin-top: 6px;
	color: #C13740
}




/*other*/


#other{
	background: #000;
}
#other section{
	width: 700px;
	margin: 0 auto;
	padding: 140px 0 100px 0;
	
	color: #fff;
}

#other h1{
	font-size:  34px;
	text-align: center;
	margin: 0 0 40px 0;
	color: #fff;
	
	font-weight: 500;
}

#other h2{
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 24px;
	padding-top: 20px;
	border-top: 1px solid #666;
}
#other p{
	margin-bottom: 30px;
	font-size: 16px;
}

#other ul{
	margin-bottom: 30px;
	margin-left: 1.2em;
}
#other ul li{
	list-style-type: disc;
	font-size: 16px;
	margin-bottom: 6px;
}


#other ol{
	margin-bottom: 30px;
	margin-left: 1.2em;
}
#other ol li{
	list-style-type: decimal;
	font-size: 16px;
	margin-bottom: 6px;
}




#other table{
	font-size: 16px;
	margin-bottom: 30px;
}

#other table td{
	padding: 10px;
	line-height: 160%;

}

#other table th{
	padding: 10px 10px 10px 0;
	text-align: left;
	width: 14%;

}

.txtR{
	text-align: right;
}



/*inview設定*/


.inview{
	transition: 0.4s ease-out;
	transition-delay:0.7s;
	opacity: 0;
	transform: translateX(50px);
	-webkit-transform: translateX(50px);
}
.inviewOn{
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);

	
}
.inview2{
	transition: 0.4s ease-out;
	transition-delay:0.7s;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
}
.inviewOn2{
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}
.inview3{
	transition: 0.6s ease-out;
	transition-delay:0.5s;
	opacity: 0;
	transform: scale(1.05);
}
.inviewOn3{
	opacity: 1;
	transform: scale(1);
}

.inviewImg{
	position: relative;
	opacity: 0;
	display: block;
}
.inviewImg::after{
	content: "";
	width:100%;
	height: 100%;
	background: #FFDBCE;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	display: block;
}
.inviewOnImg{
	animation-name:imganime_on;
	animation-duration:1s;
	animation-delay: .5s;
	animation-fill-mode:forwards;
	  opacity:1;
}
.inviewOnImg img{
	animation-name:imganime_img_on;
	animation-duration:1s;
	animation-delay: 1.1s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.inviewOnImg::after{
	animation-name:imganime_layer_on;
	animation-duration:1s;
	animation-delay: .5s;
	animation-fill-mode:forwards;
	  opacity:0;
}







@keyframes imganime_on {

}
@keyframes imganime_img_on {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes imganime_layer_on {
  0% {
	  opacity:0;
	  transform-origin:left;
	  transform: scaleX(0);
	}
  50% {
	  opacity:1;
	  transform-origin:left;
	  transform: scaleX(1);
	}
  51% {
	  opacity:1;
	  transform-origin:right;
	}
  100% {
	  opacity:0;
	  transform-origin:right;
	  transform: scaleX(0);
	}
}





.sp{
	display: none;
}
.pc{
	display: block;
}




@media screen and (max-width: 1340px) {



	/*main-cont*/
	.main-cont{
		width: 94%;
		padding: 50px 50px;
		margin: 0 auto 0;
		position: relative;
		z-index: 1;
		box-shadow: 0 0 100px rgba(0,0,0,.04);
		background: #fff;
	}
	.businessRead{
		font-size: 16px;
	}


}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}

	
	body {
		font-size: 14px;
	}





	#opening{
		opacity: 1;
		position: fixed;
		background: rgba(0,0,0,1);
		width:100vw;
		height: 100vh;
		pointer-events: none;
		z-index: 9999;
		top: 0;
		left: 0;
		animation: openanime .5s ease-out 1s 1 normal forwards;
	}


	#opening .logo{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);	
		z-index: 9999;

		opacity: 1;

		animation: openlogo .8s ease-out 0 1 normal forwards;
	}


	#opening .logo img{
		height: auto;
		width:100%;
	}

	
	
	
	header{
		display: flex;
		padding: 30px 0 50px;

		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 10;

		transition: .3s all ease-in-out;
	}


	header section{
		width:100%;
		min-width: 1080px;
		padding: 0 30px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		align-items:flex-end;
	}

	header #hlogo{
		width:253px;
		transition: .3s all ease-in-out;
		opacity: 1;
	}
	header #hlogo img{
		width:100%;
		height: auto;
	}



	#panel-btn {
		display: inline-block;
		position: absolute;
		width:30px;
		height: 30px;
		margin: 0 0 0;
		top:20px;
		left:20px;
		cursor:pointer;
		z-index:9999;

	}


	#panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 2px;
		margin: 0 0 0 -10px;
		background: #ffffff;
		overflow: visible;
	}
	#panel-btn-icon:before, #panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 2px;
		margin-left: -15px;
		background: #ffffff;
		transition: .3s;
	}
	#panel-btn-icon:before {
		margin-top: -12px;
	}
	#panel-btn-icon:after {
		margin-top: 9px;
	}

	#panel-btn .close {
		transform: rotate(-360deg);
		-webkit-transform: rotate(-360deg);
		background: transparent;
	}
	#panel-btn .close:before, #panel-btn .close:after {
		margin-top: -1px;
		background: #ffffff;
	}
	#panel-btn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#panel-btn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}

	#panel{
		position: fixed;
		top:0;
		left: 0;
		z-index: 1020;
		width: 100vw;
		height: auto;
		transition: all .5s ease-in-out;
		opacity: 0;
		pointer-events: none;
		display: block;
	}
	#panel.openmenu{
		opacity: 1;
		pointer-events:visible;
	}


	.naviLogo{
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		width: 126px;
		z-index: 1030;
	}
	.naviLogo img{
		width: 100%;
		height: auto;
	}



	#panelBg{
		position: absolute;
		top:0;
		left: 0;
		width:100%;
		height: 100vh;
		background: rgba(0,0,0,.9);	
		z-index: 100;
		display: none;
	}

	#panel .gnaviList{
		display: flex;
		flex-wrap: wrap;

		width: 90%;
		margin: 0 auto;

		padding: 100px 0 0 0;
		
		height: 100vh !important;
	}

	#panel .gnaviList ul{
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 0 0 30px;
	}
	#panel .gnaviList ul li{
		text-align: left;
		display: block;
		margin-bottom: 20px;
	}

	#panel .gnaviList li a{
		text-decoration: none;
		color: #fff !important;
		display: block;
		font-size: 24px;

	}
	#panel .gnaviList .gnaviBtm li {
		margin-bottom: 10px;
	}
	#panel .gnaviList .gnaviBtm li a{
		font-size: 16px;
	}
	#panel ul#gnavi li a::after{
		content: "";
		display: none;
	}

	#panel ul#gnavi li.yoyakuBtnPC{
		display: none;
	}
	#panel ul#gnavi li a::after{
		content: "";
		position: absolute;
		left: 17px;
		bottom: -5px;
		background: #000;
		width:calc(100% - 34px);
		height: 1px;
		transition: all .2s ease-in-out;
	}
	#panel ul#gnavi li a.active::after{
		opacity: 1;
		transform: scaleX(1);
	}
	#panel ul#gnaviR{
		padding: 0 20px;
		justify-content: flex-start;
	}
	#panel ul#gnaviR li a{
		color: #333;
	}



	/*footer*/
	footer{

		padding: 40px 0 40px;
		text-align: left;
		position: relative;
		background: #000;
		letter-spacing: .1em;
		font-weight: 500;
	}
	footer section{
		width:100%;
		min-width: 100%;
		padding: 0 5vw;
		margin: 0 auto;
	}

	footer .footerTop{
		display: flex;
		flex-wrap: wrap;
	}

	.footerToplogo{
		width: 40%;
		margin-bottom: 30px;
	}
	.footerToplogo img{
		width: 100%;
		height: auto;

	}
	.footerTopAdress{
		width: 100%;
		font-size: 12px;
		color:#fff;
		text-decoration: none;
		margin-bottom: 30px;
	}
	.footerTopMenu{
		width: 100%;
	}
	.footerTopMenu li{
		font-size: 14px;
	}
	.footerTopMenu li{
	}


	footer .footerBtm{
		display: flex;
		flex-wrap: wrap;
		padding: 70px 0 0 0;

		justify-content: space-between;
	}
	.footerBtmL{
		font-size: 8px;
		letter-spacing: 0;
	}
	.footerBtmL a{
		display: inline-block;
		margin-right: 2em;
	}
	.footName{
		color: #fff;
		font-size: 8px;
		letter-spacing: 0;
	}








	/*コンテンツ*/


	#wrap{

		margin: 0 0 0 0;
		padding-bottom: 2px;
		width: 100%;
		position: relative;
		overflow: hidden;
	}




	/*promotion*/

	#promotion {
		position: relative;
		background: url("../../images/home_bg_sp.jpg") no-repeat center top;
		background-size: 100% auto;
		background-attachment: fixed;

		width: 100vw;
		height: 100vh;
	}
	#promotion .promologo{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);	
		z-index: 1;

		opacity: 1;

		animation: openlogo .8s ease-out 0 1 normal forwards;
	}
	#promotion .promologo h1{
		margin: 0;
		}
	#promotion .promologo img{
		height: auto;
		width:100%;
	}




	/*about*/

	#about{
		width: 100vw;

		background: #000;
	}

	.aboutPic{
		text-align: center;
		padding: 150px 0;
	}

	.aboutPic img{
		width: 80%;
		height: auto;

	}

	.aboutTxt{
		position: relative;

		display: block;
	}

	.aboutTxt::before{
		content:"";
		display: none;
	}
	.aboutTxt1{
		position: relative;
		z-index: 2;

		font-size: 24px;
		color: #fff;

		width: 100%;

		text-align: left;
		padding: 0 5vw;
		margin-bottom: 30px;
	}
	.aboutTxt1::before{
		content:"";
		width: 100%;
		height: 2px;
		background: #fff;

		position: absolute;
		top: 50%;
		left: 0;
		z-index: 1;
	}

	.aboutTxt1 p{
		display: inline-block;
		margin: 0;
		padding: 0 3px;
		line-height: 100%;
		background: #000;
		font-weight: 500;
		
		position: relative;
		z-index: 2;
	}

	.aboutTxt2{
		position: relative;
		z-index: 2;

		font-size: 24px;
		width: 100%;

		color: #fff;

		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		
		padding: 0 5vw;
	}
	.aboutTxt2::before{
		content:"";
		width: 100%;
		height: 2px;
		background: #fff;

		position: absolute;
		top: 50%;
		left: 0;
		z-index: 1;
	}
	.aboutTxt2 p{
		display: inline-block;
		margin: 0 0 0 0;
		padding: 0 3px;
		line-height: 100%;
		background: #000;
		font-weight: 500;

		position: relative;
		z-index: 2;

	}









	/*models*/


	#models{
		width: 100vw;

		background: #000;

		padding: 150px 0 150px;
	}


	#models h2{
		font-size:  26px;
		text-align: center;
		margin: 0 0 40px 0;
		color: #fff;

		font-weight: 500;
	}


	.modelIndex{
		min-width: 90%;
		width: 90%;

		margin: 0 auto;

		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.modelIndex .modelMenu{
		width: 100%;
		position: relative;
	}

	.modelIndex .modelMenu img{
		width: 100%;
		height: auto;
	}
	.modelIndex .modelMenu .modelBtnName{

		opacity: 1;
		transition: all .2s ease-in-out;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%);
		border: 2px solid #fff;
		padding: 10px 20px ;
		line-height: 100%;

		font-size: 18px;

		color: #fff;
	}




	/*sns*/


	#sns{
		width: 100vw;


		background: #000;
	}

	#sns .snsIcons{
		margin-bottom: 30px;
	}
	#sns .snsIcons ul{
		display: flex;
		gap:0 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	#sns .snsIcons ul li{
		width: 40px;
	}
	#sns .snsIcons ul li a{
		display: block;
		width: 40px;

		pointer-events: none;

		opacity: .7;

	}
	#sns .snsIcons ul li a img{
		width: 100%;
		height: auto;
	}

	.snsphName{
		text-align: center;
		font-size: 18px;
		color: #fff;
		font-weight: 500;

		margin-bottom: 40px;
	}

	.snsph{
		padding-bottom: 100px;
	}
	.snsph img{
		width: 100%;
		height: auto;
	}







	/*contactChart*/

	
	#contact{
		background: #000;
	}
	#contact section{
		width: 94%;
		margin: 0 auto;
		padding: 100px 0 0 0;

		color: #fff;
	}

	#contact h1{
		font-size:  34px;
		text-align: center;
		margin: 0 0 40px 0;
		color: #fff;

		font-weight: 500;
	}

	
	.contactChart{
		margin-bottom: 40px;
	}

	.contactChart dl{
		display: block;
		flex-wrap: wrap;
	}
	.contactChart dl dt,
	.contactChart dl dd{
		font-size: 13px;
	}
	.contactChart dl dt{
		width:100%;
		border-bottom: none;
		padding: 18px 0 6px;
		font-weight: 700;
	}
	.contactChart dl dt.hissu::after{
		content: "*";
		font-size: 16px;
		color: #ff0000;
	}
	.contactChart dl dd{
		width:100%;
		padding: 0 0 18px;
	}
	.contactChart dl dt:nth-of-type(1){
		border-top: none;
	}
	.contactChart dl dd:nth-of-type(1){
		border-top: none;
	}
	.contactChart dl dd input[type=text]{
		width: 100%;
		padding: 8px;
		border: 1px solid #ccc;
		font-size: 13px;
	}
	.contactChart dl dd input[type=email]{
		width: 100%;
		padding: 8px;
		border: 1px solid #ccc;
		font-size: 13px;
	}
	.contactChart dl dd select{
		width: 100%;
	}
	
	.contactChart dl dd select::-ms-expand {
		display: none;
	}
	.contactChart dl dd select {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin-bottom: 20px;
		padding: 10px 8px 10px 8px;
		font-size: 13px;
		border: 1px solid #ccc;
		background: #fff url("../../images/select_arrow.png") no-repeat right 10px center;
		background-size: 15px auto;
		color: #333;
	}
	
	
	.contactChart dl dd textarea{
		width: 100%;
		height: 150px;
		padding: 8px;
		border: 1px solid #ccc;
		font-size: 13px;
		

	}


	.contactChart dl dt p{
		display: inline-block;
	}

	.submitArea{
		text-align: center;
	}



	.submitArea input[type=submit]{
		border: none;
		background: #333;
		padding: 10px 60px;
		color: #fff;
		font-size: 13px;
		cursor: pointer;
		transition: all .2s ease-in-out;
	}
	.submitArea input[type=submit]:hover{
		background: #666;
	}



	


	/*other*/


	#other{
		background: #000;
	}
	#other section{
		width: 94%;
		margin: 0 auto;
		padding: 100px 0 0 0;

		color: #fff;
	}

	#other h1{
		font-size:  24px;
		text-align: center;
		margin: 0 0 40px 0;
		color: #fff;
		
		line-height: 150%;

		font-weight: 500;
	}

	#other h2{
		font-weight: bold;
		margin-bottom: 20px;
		font-size: 18px;
		padding-top: 20px;
		border-top: 1px solid #666;
		line-height: 150%;
	}
	#other p{
		margin-bottom: 30px;
		font-size: 12px;
	}

	#other ul{
		margin-bottom: 30px;
		margin-left: 1.2em;
	}
	#other ul li{
		list-style-type: disc;
		font-size: 12px;
	}

	#other ol{
		margin-bottom: 30px;
		margin-left: 1.2em;
	}
	#other ol li{
		list-style-type: decimal;
		font-size: 12px;
	}

	#other table{
		font-size: 12px;
		margin-bottom: 30px;
	}

	#other table td{

		line-height: 160%;
		display: block;
		padding: 0 0 15px 0;

	}

	#other table th{
		padding: 0 0 5px 0;
		text-align: left;
		width: 100%;

		display: block;
		font-weight: bold;
	}


	
	


}




.notfound{
	padding: 100px 0;
}
.read404{
	text-align: center;
}


.nolink{
	pointer-events: none;
	opacity: .3;
}


