@charset "utf-8";

/* font weight*/

/*Barlow:weight*/
/*SemiBold:600*/

/*Noto+Sans+JP:wght*/
/*Regular:400*/
/*Medium:500*/



/* CSS Document */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html{
	font-feature-settings:"palt"; /* 文字間を自動調整 */
}

body{
	min-height: 100vh;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-touch-callout: none; /* 画像の長押しポップアップを抑止（iOSのみ）  */
	touch-action: manipulation; /* ダブルタップのズームを抑止 */
	color:#FFF;
	background-color:#000;
}

.ff_ba {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
}

.ff_noto_r {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.ff_noto_m {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}


body,div,h1,h2,h3,h4,h5,h6,p,ol,ul,li,dl,dt,dd,small,strong,button,table{
	margin:0;
	font-size: 14px;
}

ul,ol{
	padding:0;
	list-style:none;
}
i,em,var,address{
	font-style:normal;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
a img{
	border:none;
	background:transparent;
}
input, button, textarea, select {
	font: inherit;
}
a{
	color:inherit;
	text-decoration:none;
}
.under {
	text-decoration: underline;
}

table{
	border-collapse:collapse;
	border:none;
	border-spacing:0;
}
a,label,button{transition:opacity .1s; cursor:pointer}
label:hover,button:hover{opacity:.6}
a:hover{color:#550391}


/* common */
.center{
	text-align:center;
	margin:0 auto;
}
.left{
	text-align:left;
	margin:0 auto 0 0;
}
.right{
	text-align:right;
	margin:0 0 0 auto;
}
.reset{
	font-weight:normal;
	margin:0;
	padding:0;
}

p {
	letter-spacing: 0.07em;
}

/* 文字色 */
.white {
	color: #FFFFFF;
}
.gray {
	color: #343537;
}



@media only screen and (min-width: 640px) {
	.sp_only{display:none !important;}
}

@media only screen and (max-width: 639px) {
	.pc_only{display:none !important;}
}



.container {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.base_wrapper {
	width: calc(1400 / 1920 * 100vw);
	max-width: 1400px;
	margin: 0 auto;
}

.footer_wrapper {
	display:block;
	width: 100%;
	height: calc(155 / 1920 * 100vw);
	margin: 0 auto;
	overflow: hidden;
	background: #000;
}

.footer_logo {
	width: calc(210 / 1920 * 100vw);
	margin: calc(40 / 1920 * 100vw) auto calc(15 / 1920 * 100vw);
}

.footer_text {
	color: #fff;
	font-size: 14px;
	margin: 0 auto calc(35 / 1920 * 100vw);
	text-align: center;
}

.btn_top {
	position: fixed;
	width: calc(65 / 1920 * 100vw);
	height: calc(65 / 1920 * 100vw);
	bottom: calc(30 / 1920 * 100vw);
	right: calc(100 / 1920 * 100vw);
	z-index: 2;
	cursor: pointer;
	display: none;
}

.btn_top:hover {
	opacity: .6;
}

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

	.base_wrapper {
		width: calc(335 / 375 * 100vw);
		margin: 0 auto;
	}

	.footer_wrapper {
		height: calc(123 / 375 * 100vw);
	}

	.footer_logo {
		width: calc(154 / 375 * 100vw);
		margin: calc(28 / 375 * 100vw) auto calc(15 / 375 * 100vw);
	}

	.footer_text {
		font-size: 12px;
		margin: 0 auto calc(30 / 375 * 100vw);
	}

	.btn_top {
		position: fixed;
		width: calc(40 / 375 * 100vw);
		height: calc(40 / 375 * 100vw);
		bottom: calc(30 / 375 * 100vw);
		right: calc(20 / 375 * 100vw);
		z-index: 2;
		display: none;
	}

}


/*-----------------------------
  HEADER
-----------------------------*/

.header {
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 100px;
	position: fixed;
	background: #000;
	z-index: 50;
	top: 0;
}

.logo {
	width: 210px;
}

.navi_pc ul{
	display: flex;
	justify-content: space-between;
}

.navi_pc li{
	font-size: 20px;
	color: #FFF;
	cursor: pointer;
}

.navi_pc li:hover{
	opacity: .6;
}

.mr50 {
	margin-right: 50px;
}


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

	.header {
		width: 100%;
		height: 60px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		position: fixed;
		background: #000;
		z-index: 50;
		top: 0;
	}

	.logo {
		width: 154px;
	}

	.navi_sp li{
		font-size: 20px;
		color: #FFF;
	}

	.btn_menu {
		width: calc(25 / 375 * 100vw);
		height: calc(20 / 375 * 100vw);
		position: fixed;
		right: 20px;
		z-index: 2;
	}

	.nav_menu {
		position: fixed;
		top: 0;
		left: 100vw;
		width: calc(280 / 375 * 100vw);
		background: #000;
		height: 100vh;
		padding-top: 40px;
		z-index: 52;
		transition: all 0.3s ease-out;
	}

	.nav_menu li {
		text-align: center;
		font-size: 20px;
		color: #FFF;
		margin-bottom: 40px;
	}

	.nav_menu_bg {
		position: fixed;
		top: 0px;
		left: 0px;
		background: #FFF;
		width: 100vw;
		height: 100vh;
		z-index: 51;
		display: none;
	}

	.close_nav {
		position: fixed;
		top: 30px;
		left: calc(61 / 375 * 100vw);
		width: 19px;
		height: 19px;
		z-index: 51;
		display: none;
	}

}

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


.top_view {
	width: 100vw;
	margin-top: 80px;
}

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

	.top_view {
		width: 100vw;
		margin-top: 60px;
	}

}


/*-----------------------------
  MAIN-CONCEPT
-----------------------------*/

.concept_area {
	width: 100%;
	position: relative;
	padding-top: calc(137 / 1920 * 100vw);
}

.concept_area h2{
	position: absolute;
	color: #FFF;
	font-size: calc(210 / 1920 * 100vw);
	line-height: calc(252 / 1920 * 100vw);
	top: calc(169 / 1920 * 100vw);
}

.concept_box {
	display: flex;
}

.concept_text {
	max-width: calc(665 / 1920 * 100vw);
	color: #FFF;
	margin-top: calc(314 / 1920 * 100vw);
	margin-right: calc(135 / 1920 * 100vw);
}

.concept_text p{
	font-size: calc(18 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
}

.concept_image {
	max-width: calc(600 / 1920 * 100vw);
}

.concept_middle_box {
	display: flex;
	margin-top: calc(180 / 1920 * 100vw);
	justify-content: space-between;
}

.concept_middle_text {
	max-width: calc(841 / 1920 * 100vw);
	margin-top: calc(93 / 1920 * 100vw);
}

.concept_middle_text p{
	margin-top: calc(35 / 1920 * 100vw);
	font-size: calc(16 / 1920 * 100vw);
	line-height: calc(32 / 1920 * 100vw);
}

.concept_middle_text span{
	margin-top: calc(20 / 1920 * 100vw);
	display: inline-block;
}

.concept_middle_text_left {
	max-width: calc(500 / 1920 * 100vw);
	color: #FFF;
	margin-left: calc(82 / 1920 * 100vw);
}

.concept_middle_text_right {
	max-width: calc(500 / 1920 * 100vw);
	color: #FFF;
	margin-left: calc(247 / 1920 * 100vw);
	margin-top: calc(68 / 1920 * 100vw);
}

.concept_middle_image_left {
	max-width: calc(286 / 1920 * 100vw);
}

.concept_middle_image_right {
	max-width: calc(273 / 1920 * 100vw);
}

.concept_bottom_box {
	display: flex;
	margin-top: calc(161 / 1920 * 100vw);
	justify-content: space-between;
}

.concept_bottom_text {
	max-width: calc(665 / 1920 * 100vw);
	margin-top: calc(100 / 1920 * 100vw);
	color: #FFF;
}

.concept_bottom_text p{
	font-size: calc(16 / 1920 * 100vw);
	line-height: calc(32 / 1920 * 100vw);
}

.concept_bottom_text h3{
	max-width: calc(665 / 1920 * 100vw);
	color: #000;
	font-size: calc(60 / 1920 * 100vw);
	line-height: calc(72 / 1920 * 100vw);
	margin-bottom: calc(32 / 1920 * 100vw);
}

mark {
	background: #FFF;
	padding: 0px 20px;
}

.concept_bottom_text .name{
	max-width: calc(665 / 1920 * 100vw);
	color: #000;
	font-size: calc(40 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	margin-bottom: calc(44 / 1920 * 100vw);
}

.concept_bottom_text h4{
	max-width: calc(665 / 1920 * 100vw);
	color: #FFF;
	font-size: calc(30 / 1920 * 100vw);
	line-height: calc(36 / 1920 * 100vw);
	margin-top: calc(50 / 1920 * 100vw);
	margin-bottom: calc(15 / 1920 * 100vw);
}

.concept_bottom_image {
	max-width: calc(691 / 1920 * 100vw);
}

.line_left, .line_right, .triangle {
	position: relative;
}

.line_left:after {
	content: "";
	position: absolute;
	width: calc(230 / 1920 * 100vw);
	bottom: calc(1660 / 1920 * 100vw);
	left: calc(430 / 1920 * 100vw);
	border-top: solid 1px #FFF;
	z-index: -1;
}

.line_right:after {
	content: "";
	position: absolute;
	width: calc(230 / 1920 * 100vw);
	bottom: calc(1275 / 1920 * 100vw);
	right: calc(335 / 1920 * 100vw);
	border-top: solid 1px #FFF;
	z-index: -1;
}


.triangle:after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0;
	width: 0;
	height: 0;
	border-top: calc(867 / 1920 * 100vw) solid transparent;
	border-right: calc(1170 / 1920 * 100vw) solid #141415;
	z-index: -1;
}


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

	.concept_area {
		padding-top: calc(95 / 375 * 100vw);
		padding-bottom: calc(80 / 375 * 100vw);
	}

	.concept_area h2{
		font-size: calc(50 / 375 * 100vw);
		line-height: calc(60 / 375 * 100vw);
		top: calc(59 / 375 * 100vw);
		text-align: center;
		width: 100%;
	}

	.concept_box {
		display: flex;
		flex-direction: column-reverse;
	}

	.concept_text {
		max-width: 100%;
		margin-top: calc(25 / 375 * 100vw);
		margin-right: 0px;
	}

	.concept_text p{
		font-size: calc(17 / 375 * 100vw);
		line-height: calc(33 / 375 * 100vw);
	}

	.concept_image {
		max-width: 100%;
	}


	.concept_middle_box {
		display: block;
		margin-top: calc(87 / 375 * 100vw);
	}


	.concept_middle_sp_box {
		display: flex;
		justify-content: space-between;
	}

	.concept_middle_sp_box p{
		margin-top: calc(18 / 375 * 100vw);
		font-size: calc(15 / 375 * 100vw);
		line-height: calc(31 / 375 * 100vw);
	}

	.concept_middle_sp_box span{
		margin-top: calc(20 / 375 * 100vw);
		display: inline-block;
	}

	.concept_middle_text_left {
		max-width: calc(186 / 375 * 100vw);
		margin-left: calc(38 / 375 * 100vw);
		margin-top: calc(35 / 375 * 100vw);
	}

	.concept_middle_text_right {
		max-width: calc(186 / 375 * 100vw);
		margin-left: 0px;
		margin-right: calc(44 / 375 * 100vw);
		margin-top: calc(35 / 375 * 100vw);
	}

	.concept_middle_image_left {
		max-width: calc(111 / 375 * 100vw);
	}

	.concept_middle_image_right {
		max-width: calc(105 / 375 * 100vw);
	}

	.mb70 {
		margin-bottom: calc(70 / 375 * 100vw);
	}



	.concept_bottom_box {
		display: flex;
		margin-top: calc(100 / 375 * 100vw);
		flex-direction: column-reverse;
	}

	.concept_bottom_text {
		max-width: 100%;
		margin-top: 0px;
	}

	.concept_bottom_text p{
		font-size: calc(15 / 375 * 100vw);
		line-height: calc(31 / 375 * 100vw);
	}

	.concept_bottom_text h3{
		max-width: 100%;
		font-size: calc(40 / 375 * 100vw);
		line-height: calc(48 / 375 * 100vw);
		margin-bottom: calc(20 / 375 * 100vw);
	}

	mark {
		padding: 0px 15px;
	}

	.concept_bottom_text .name{
		max-width: 100%;
		font-size: calc(35 / 375 * 100vw);
		line-height: calc(34 / 375 * 100vw);
		margin-bottom: calc(55 / 375 * 100vw);
	}

	.concept_bottom_text h4{
		max-width: 100%;
		font-size: calc(25 / 375 * 100vw);
		line-height: calc(30 / 375 * 100vw);
		margin-top: calc(50 / 375 * 100vw);
		margin-bottom: calc(15 / 375 * 100vw);
	}

	.concept_bottom_image {
		max-width: calc(262 / 375 * 100vw);
		margin: 0 auto;
	}




	.line_left:after {
		width: calc(96 / 375 * 100vw);
		bottom: calc(2236 / 375 * 100vw);
		left: calc(76 / 375 * 100vw);
	}

	.line_right:after {
		width: calc(98 / 375 * 100vw);
		bottom: calc(1622 / 375 * 100vw);
		right: calc(73 / 375 * 100vw);
	}


	.triangle:after {
		content: "";
		position: absolute;
		bottom: calc(750 / 375 * 100vw);
		right: 0;
		width: 0;
		height: 0;
		border-top: calc(468 / 375 * 100vw) solid transparent;
		border-right: calc(355 / 375 * 100vw) solid #141415;
		z-index: -1;
	}

}

/*-----------------------------
  MAIN-THECNOLOGY
-----------------------------*/

.bg_gray {
	width: 100%;
	background: #343537;
}

.technology_area {
	width: 100%;
	padding-top: calc(170 / 1920 * 100vw);
	padding-bottom: calc(140 / 1920 * 100vw);
}

.technology_area h2{
	color: #FFF;
	font-size: calc(210 / 1920 * 100vw);
	line-height: calc(252 / 1920 * 100vw);
	text-align: center;
}

.technology_area p{
	color: #FFF;
	font-size: calc(28 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	margin-top: calc(30 / 1920 * 100vw);
	text-align: center;
}

.technology_box {
	display: flex;
	margin-top: calc(120 / 1920 * 100vw);
	justify-content: space-between;
}

.technology_text {
	max-width: calc(665 / 1920 * 100vw);
	color: #FFF;
}

.technology_text h3{
	font-size: calc(22 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	text-align: left;
}

.technology_text p{
	font-size: calc(16 / 1920 * 100vw);
	line-height: calc(32 / 1920 * 100vw);
	margin-top: calc(20 / 1920 * 100vw);
	text-align: left;
}

.technology_image {
	max-width: calc(665 / 1920 * 100vw);
}

.mr70 {
	margin-right: 70px;
}


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

	.technology_area {
		width: 100%;
		padding-top: calc(134 / 375 * 100vw);
		padding-bottom: calc(80 / 375 * 100vw);
	}

	.technology_area h2{
		font-size: calc(50 / 375 * 100vw);
		line-height: calc(60 / 375 * 100vw);
	}

	.technology_area p{
		font-size: calc(23 / 375 * 100vw);
		line-height: calc(35 / 375 * 100vw);
		margin-top: calc(30 / 375 * 100vw);
	}

	.technology_box {
		display: block;
		margin-top: calc(58 / 375 * 100vw);
	}

	.technology_text {
		margin-top: calc(48 / 375 * 100vw);
		max-width: 100%;
	}

	.technology_text h3{
		font-size: calc(18 / 375 * 100vw);
		line-height: calc(30 / 375 * 100vw);
	}

	.technology_text p{
		font-size: calc(15 / 375 * 100vw);
		line-height: calc(31 / 375 * 100vw);
		margin-top: calc(24 / 375 * 100vw);
	}

	.technology_image {
		max-width: 100%;
	}

	.mb123 {
		margin-bottom: calc(123 / 375 * 100vw);
	}

}

/*-----------------------------
  MAIN-MOVIE
-----------------------------*/

.movie_area {
	width: 100%;
	padding-top: calc(170 / 1920 * 100vw);
}

.movie_area h2{
	color: #FFF;
	font-size: calc(210 / 1920 * 100vw);
	line-height: calc(252 / 1920 * 100vw);
	text-align: center;
}

.movie_area p{
	color: #FFF;
	font-size: calc(28 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	margin-top: calc(30 / 1920 * 100vw);
	text-align: center;
}

.youtube {
	width: calc(1280 / 1920 * 100vw);
	height: calc(720 / 1920 * 100vw);
	margin: 120px auto 145px;
}

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

	.movie_area {
		padding-top: calc(135 / 375 * 100vw);
	}

	.movie_area h2{
		font-size: calc(50 / 375 * 100vw);
		line-height: calc(60 / 375 * 100vw);
	}

	.movie_area p{
		font-size: calc(23 / 375 * 100vw);
		line-height: calc(35 / 375 * 100vw);
		margin-top: calc(30 / 375 * 100vw);
	}

	.youtube {
		width: calc(336 / 375 * 100vw);
		height: calc(189 / 375 * 100vw);
		margin: calc(53 / 375 * 100vw) auto calc(80 / 375 * 100vw);
	}

}

/*-----------------------------
  MAIN-GALLERY
-----------------------------*/

.gallery_area {
	width: 100%;
	padding-top: calc(170 / 1920 * 100vw);
	padding-bottom: calc(145 / 1920 * 100vw);
}

.gallery_area h2{
	color: #FFF;
	font-size: calc(210 / 1920 * 100vw);
	line-height: calc(252 / 1920 * 100vw);
	text-align: center;
}

.gallery_area p{
	color: #FFF;
	font-size: calc(28 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	margin-top: calc(30 / 1920 * 100vw);
	text-align: center;
}

.gallery_box {
	display: flex;
	margin-top: calc(120 / 1920 * 100vw);
	justify-content: space-between;
}


.gallery_box02 {
	display: flex;
	margin-top: calc(23 / 1920 * 100vw);
	justify-content: space-between;
}


.mr25 {
	margin-right: 25px;
}

.popup_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	display: none;
	z-index: 60;
}

.popup_photo {
	margin: calc(50vh - ((578 / 1920 * 100vw) / 2)) auto;
	max-width: calc(900 / 1920 * 100vw);
}

#g01, #g02, #g03, #g04, #g05, #g06 {
	cursor: pointer;
}

#g01:hover, #g02:hover, #g03:hover, #g04:hover, #g05:hover, #g06:hover {
	opacity: .6;
}

#p01, #p02, #p03, #p04, #p05, #p06 {
	display: none;
}

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

	.gallery_area {
		padding-top: calc(135 / 375 * 100vw);
		padding-bottom: calc(80 / 375 * 100vw);
	}

	.gallery_area h2{
		font-size: calc(50 / 375 * 100vw);
		line-height: calc(60 / 375 * 100vw);
	}

	.gallery_area p{
		font-size: calc(23 / 375 * 100vw);
		line-height: calc(35 / 375 * 100vw);
		margin-top: calc(30 / 375 * 100vw);
	}

	.gallery_box {
		margin-top: calc(48 / 375 * 100vw);
	}

	.gallery_box02 {
		margin-top: calc(17 / 375 * 100vw);
	}

	.mr15 {
		margin-right: 15px;
	}

	.popup_photo {
		margin: calc(50vh - ((215 / 375 * 100vw) / 2)) auto;
		max-width: calc(335 / 375 * 100vw);
	}

}

/*-----------------------------
  MAIN-ONLINE_STORE
-----------------------------*/

.bg_white {
	width: 100%;
	background: #FFF;
}

.online_store_area {
	width: 100%;
	padding-top: calc(170 / 1920 * 100vw);
	padding-bottom: calc(148 / 1920 * 100vw);
}

.online_store_area h2{
	color: #000;
	font-size: calc(210 / 1920 * 100vw);
	line-height: calc(252 / 1920 * 100vw);
	text-align: center;
}

.online_store_area p{
	color: #000;
	font-size: calc(28 / 1920 * 100vw);
	line-height: calc(34 / 1920 * 100vw);
	margin-top: calc(30 / 1920 * 100vw);
	text-align: center;
}

.online_store_banner {
	margin-top: calc(120 / 1920 * 100vw);
	max-width: calc(1400 / 1920 * 100vw);
}


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

	.online_store_area {
		padding-top: calc(135 / 375 * 100vw);
		padding-bottom: calc(91 / 375 * 100vw);
	}

	.online_store_area h2{
		font-size: calc(50 / 375 * 100vw);
		line-height: calc(60 / 375 * 100vw);
	}

	.online_store_area p{
		font-size: calc(23 / 375 * 100vw);
		line-height: calc(35 / 375 * 100vw);
		margin-top: calc(30 / 375 * 100vw);
	}

	.online_store_banner {
		margin-top: calc(49 / 375 * 100vw);
		max-width: calc(335 / 375 * 100vw);
	}

}




