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

/* リセットCSS */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
list-style: none;
}

body {
line-height:1;
font-family: 'Noto Sans JP', sans-serif;
width: 100%;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}

nav ul {
list-style:none;
}

blockquote, q {
quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}

a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
text-decoration: none;
color: black;
}

/* change colours to suit your needs */
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}

/* change colours to suit your needs */
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

table {
border-collapse:collapse;
border-spacing:0;
}



@media all and (min-width: 768px) {
.pc { display: block !important; }
.sp { display: none!important; }
}

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


body {
	// PC用の横幅を指定
	min-width: 1150px;
}
// スマートフォンのブレイクポイント
@media screen and (max-width: 769px){
	body {
		// 初期化
		min-width: initial;
	}
}


.top {
	text-align: center;
	position: relative;
	width: 100%;
    min-height: 100vh;
}


.top-logo {
	position: fixed;
	z-index: 100;
	left: 35px;
	top: 20px;
}


.top-logo img {
	width: 170px;
}


.topimg {
	position: absolute;
    width: 100%;
    min-height: 100vh;
    background-color:#000;
    background-size: cover;
    z-index: 0;
}


.topimg video {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	opacity: 0.4;
}


.top-title {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}


.topimg h2 {
	font-family: 'Nanum Myeongjo', serif;
	color: #C3C3C3;
	font-size: 1.8vw;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-top: -20px;
	margin-bottom: 20px;
}


.topimg h1 {
	font-family: 'Bebas Neue', sans-serif;
	color: white;
	font-size: 6.5vw;
	letter-spacing: normal;
}


.scroll img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 25px;
	margin: auto;
	width: 50px;
}


.scroll img:hover {
	transform: translateY(-7px);
    cursor: pointer;
	transition: 0.2s;
}



@media all and (max-width: 768px){
	.topimg h2 {font-size: 4.5vw; margin-bottom: 35px; line-height: 1.5em;}
	.topimg h1 {font-size: 16vw;}
	.top-logo {left: 20px; top: 20px;}
	.top-logo img {width: 140px;}
}




/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#111;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #999;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 24px;
	letter-spacing: 0.15em;
}

#g-nav li a span{
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}



/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 20px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 1px;
	background-color: #fff;
  	width: 100%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}



/*コンセプト*/


.concept {
	position: relative;
}


.concept-back {
	position: absolute;
	background: -moz-linear-gradient(top, #000, #222);
    background: -webkit-linear-gradient(top, #000, #222);
    background: linear-gradient(to bottom, #000, #222);
	z-index: -10;
	top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewY(-6deg);
    transform-origin: top left;
}


.concept-back-2 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: -100;
}


.concept-t img {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: -5;
}


.concept-2 {
	display: flex;
	justify-content: center;
	position: static;
	z-index: 10;
}


.concept-3 {
	padding-top: 20vh
}


.concept-img img {
	width: 165px;
	margin-bottom: 15px;
}

.concept h2 {
	color: white;
	font-size: 3vw;
	font-weight: 800;
	line-height: 1.4em;
	margin-bottom: 5vh;
}


.concept p {
	color: #AAAAAA;
	font-size: 1vw;
	line-height: 2.2em;
}


@media (max-width: 1350px) {
	.concept h2 {font-size: 40px;}
	.concept p {font-size: 14px;}
}

.caravan img {
	width: 60vw;
	min-width: 700px;
	max-width: 1200px;
	padding-top: 10vh;
	padding-bottom: 25vh;
}



.tate-border {
	position: absolute;
	width: 1px;
	height: 160px;
	background: #fff;
	left: 0;
	right: 0;
	bottom: -10px;
	margin:auto;
}


@media all and (max-width: 768px){
	.concept {text-align: center; overflow: hidden; width: 100%;}
	.concept-2 {display: block;}
	.concept-3 {text-align: left; display: inline-block;}
	.concept-3 h2 {font-size: 10vw;}
	.concept-3 p {font-size: 3.5vw;}
	.caravan img {min-width: inherit; width: 90vw;}
	.tate-border {height: 140px; bottom: -30px;}
}


/*特徴*/

.feature {
	position: relative;
	text-align: center;
}

.feature-back {
	position: absolute;
	background:#000;
	width: 100%;
	height: 100%;
	z-index: -15;
}


.category-t {
	position: relative;
	padding-top: 100px;
}

.c-t1 {
	font-size: 150px;
	font-family: 'Bebas Neue', sans-serif;
	color:rgba(0,0,0,0);
	-webkit-text-stroke: 1px #7E7E7E;
}


.c-t2{
	position: absolute;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 40px;
	color: white;
	bottom: 20px;
	left: 0;
	right: 0;
	margin:auto;
	font-weight: 700;
}

.c-t3 {
	width: 150px;
	border-bottom: 1px solid #fff;
	display: inline-block;
}



.feature-3 {
	width: 90%;
	max-width: 1700px;
	display: inline-block;
	margin-top: 80px;
	margin-bottom: 100px;
}


.f-1 {
	position: relative;
}


.f-1 img {
	width: 100%;
    height: 480px;
    object-fit: cover;
}


.f-about {
	position: absolute;
	left: 30px;
	bottom: 30px;
	text-align: left;
	z-index: 20;
}


.f-about h3 {
	font-family: 'Bebas Neue', sans-serif;
	color: #fff;
	font-size: 30px;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}


.f-about-p1 {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	width: 80%;
	line-height: 1.7em;
	letter-spacing: 0.15em;
}


.f-about-p2 {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	width: 95%;
	line-height: 1.7em;
	letter-spacing: 0.15em;
}


.f-back {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.7);
}



.feature-4 {
	display: flex;
	justify-content: center;
	margin-top: -1px;
}


.f-2 {
	width: 50%;
	position: relative;
}

.f-3 {
	width: 50%;
	position: relative;
}


.f-2 img {
	width: 100%;
    height: 400px;
    object-fit: cover;
}


.f-3 img {
	width: 100%;
    height: 400px;
    object-fit: cover;
}


@media all and (max-width: 768px){
	.c-t1 {font-size: 100px;}
	.c-t2 {font-size: 30px;}
	.c-t3 {width: 80px;}
	.feature-3 {width: 100%; margin-bottom: 70px;}
	.feature-4 {display: block;}
	.f-2,.f-3 {width: 100%;}
	.f-about {left: 0; right: 0; margin: auto; width: 85%;}
	.f-about p {width: 100%;}
}



/*ベース車輌*/

.base {
	background: #000;
}

.category-t2 {
	text-align: left;
}

.base-2 {
	display: flex;
	justify-content: center;
	padding-top: 150px;
}

.base-2 h3 {
	color: #fff;
	border-bottom: solid 2px #5C5C5C;
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 40px;
}


.base-2 img {
	width: 55vw;
	min-width: 700px;
	margin-bottom: 40px;
}


.base-3 {
	margin-left: 80px;
}


.base-4 {
	display: flex;
	padding-bottom: 100px;
}


.base-4 p {
	color: #fff;
	border-bottom: solid 1px #5C5C5C;
	padding-bottom: 10px;
	margin-bottom: 15px;
	width: 26vw;
	min-width: 330px;
	font-size: 15px;
	line-height: 1.3em;
}


.kuukan {
	width: 3vw;
	min-width: 40px;
}


@media all and (max-width: 768px){
	.base {text-align: center;}
	.base-2 {display: block; padding-top: 0px;}
	.base-2 img {min-width: inherit; width: 100%;}
	.base-3 {margin: 0; padding-top: 60px; display: inline-block; width: 85%;}
	.base-3 h3 {text-align: left; font-size: 16px; display: inline-block; line-height: 1.4em;}
	.kuukan {width: 0; min-width: inherit;}
	.base-4 {display: block; text-align: left;}
	.base-4 p {min-width: inherit; width: 100%; font-size: 14px;}
}



/*外装*/

.outside {
	position: relative;
	text-align: center;
}

.outside-back {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: -5;
}


.outside-top {
	position: absolute;
	width: 100%;
	z-index: -1;
	top: 200px;
}


.outside-top img {
	width: 100%;
	opacity: 0.3;
}


.category-t2 {
	text-align: right;
	width: 80vw;
	display: inline-block;
	padding-top: 170px;
	position: relative;
	margin-bottom: 35vh;
}


.category-t2 .c-t2 {
	width: 80vw;
}


.outside-2 ul {
	display: flex;
	justify-content: center;
	padding-bottom: 60px;
}


.outside-2 ul li {
	text-align: left;
}


.outside-2 img {
	width: 25.5vw;
	min-width: 320px;
}


.outside-2 p {
	font-size: 15px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1.5em;
}


.border {
	width: 100px;
	border-bottom: solid 2px #9A9A9A;
	margin-top: 20px;
	margin-bottom: 10px;
}


.kuukan2 {
	width: 1.5vw;
}



.low-parts {
	width: 25.5vw;
	min-width: 320px;
}

.low-parts p span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1em;
}

.low-parts .border {
	margin-top: 0;
}


@media all and (max-width: 768px){
	.category-t2 {padding-top: 80px; margin-bottom: 15vh;}
	.outside-top {top: 120px;}
	.outside {text-align: center;}
	.outside-2 {padding-bottom: 20px; width: 85%; display: inline-block;}
	.outside-2 ul {display: block; padding-bottom: 0;}
	.outside-2 ul li {margin-bottom: 30px;}
	.outside-2 img { min-width: inherit; width: 100%;}
	.low-parts {width: 100%; min-width: inherit;}
	.kuukan2 {width: 0px;}
}



/*内装*/

.inside {
	position: relative;
	text-align: center;
}


.inside-back {
	position: absolute;
	z-index: -5;
	background: #000;
	width: 100%;
	height: 100%;
}

.inside-top {
	position: absolute;
	width: 100%;
	z-index: -1;
	top: 200px;
}


.inside-top img {
	width: 100%;
	opacity: 0.3;
}



.inside .category-t2 {
	padding-top: 150px;
}


.inside-2 {
	padding-bottom: 120px;
}

.inside-2 ul {
	display: flex;
	justify-content: center;
	padding-bottom: 60px;
}


.inside-2 ul li {
	text-align: left;
}


.inside-2 img {
	width: 25.5vw;
	min-width: 320px;
}


.inside-3 img {
	width: 39.25vw;
	min-width: 485px;
}


.inside-2 p {
	font-size: 15px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1.5em;
}


@media all and (max-width: 768px){
	.inside {text-align: center;}
	.inside-top {top: 190px;}
	.inside-2 {display: inline-block; width: 85%;}
	.inside-2 ul {display: block; padding-bottom: 0;}
	.inside-2 ul li {margin-bottom: 30px;}
	.inside-2 img {min-width: inherit; width: 100%;}
}



/*スペシャルサンクス*/

.special {
	background: #000;
	text-align: center;
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	position: relative;
	overflow: hidden;
}

.special h3 {
	font-size: 45px;
	border-bottom: 1px solid #fff;
	display: inline-block;
	letter-spacing: 0.01em;
}


.special ul {
	display: flex;
	justify-content: center;
	padding-top: 50px;
	margin-right: -50px;
	padding-bottom: 45vh;
}


.special ul li {
	font-size: 35px;
	margin-right: 50px;
	line-height: 0.6em;
	letter-spacing: 0.05em;
}


.special ul li span {
	font-size: 15px;
}


@media all and (max-width: 768px){
	.special h3 {font-size: 32px;}
	.special ul {display: block; padding-bottom: 120px; margin-right: 0;}
	.special ul li {font-size: 28px; margin-bottom: 30px; line-height: 0.8em; margin-right: 0;}
}


.footer-il {
	position: absolute;
	z-index: 1;
	bottom: -5px;
	width: 100%;
}


.footer-il img {
	width: 100%;
	opacity: 0.5;
}



.footer {
	text-align: center;
	background-color: #000;
}



.es-banner {
	padding-top: 70px;
}


.es-banner img {
	width: 90%;
	max-width: 1000px;
	display: inline-block;
}


.footer a :hover {
	opacity: 0.6;
	transition: 0.5s;
}


.f-shiryo {
	width: 90%;
	max-width: 1000px;
	height: 110px;
	display: inline-block;
	border: solid 2px #CCCCCC;
	margin-top: 40px;
}


.f-shiryo2 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
	pointer-events: none;
}

.f-shiryo2 p {
	font-size: 36px;
	color: #CCCCCC;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding-left: 50px;
}


.f-link {
	display: inline-block;
	width: 1100px;
}


.f-link2 {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}


.flink-L {
	width: 50%;
	font-size: 24px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	border: solid 2px #C1002D;
	color: #C1002D;
	margin-right: 5px;
	padding: 30px 0px;
}


.flink-R {
	width: 50%;
	font-size: 24px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	border: solid 2px #2998E2;
	color: #2998E2;
	margin-left: 5px;
	padding: 30px 0px;
}


.f-chuuki {
	width: 100%;
	display: block;
}

.f-chuuki p {
	width: 90%;
	max-width: 1000px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 60px;
	line-height: 1.5em;
	color: #fff;
}


.copylight {
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 12px;
	padding-bottom: 60px;
	font-weight: 300;
}


@media all and (max-width: 768px){
	.es-banner {padding-top: 60px;}
	.es-banner img {width: 85%;}
	.f-shiryo {width: 85%; height: 80px; margin-top: 30px;}
	.f-shiryo2 img {width: 30px;}
	.f-shiryo2 p {font-size: 17px; padding-left: 20px;}
	.f-link {width: 85%;}
	.f-link2 {display: block; margin-top: 20px;}
	.flink-L {width: 100%; font-size: 17px; margin-right: 0; margin-bottom: 20px;}
	.flink-R {width: 100%; font-size: 17px; margin-left: 0;}
	.f-chuuki {display: inline-block;}
	.f-chuuki p {width: 85%;}
}


