html {font-size: 625%;}

/*リセット*/
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}

body {
	font-family:'futura-pt','inherit','Yu Gothic',"游ゴシック",'YuGothic',"游ゴシック体",'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
	font-size: .14rem;
	font-size: 14px;
	color:#fff;
	background: #191919;
	letter-spacing: .014rem;
	box-sizing: border-box;
	justify-content: center;
}

/*共通*/
ol
,ul {
	list-style: none;
}
a{
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
#container{
	overflow: hidden;
}

section{
	margin-bottom: .6rem;
}
img{
	width: 100%;
}
.wrap{
	max-width: 1050px;
	width: 96%;
	margin: 0 auto;
}
.half{
	display: inline-block;
	width: 49%;
	vertical-align: top;
}
.center{
	text-align: center;
}
.border{
	display: block;
	border-top: 1px solid #ccc;
}
.relative{
	position: relative;
}
table{
	width: 100%;
}
tr{
	width: calc(100% - .2rem);
	padding: .3rem .1rem .05rem .1rem;
	border-bottom: 1px solid #333;
	display: block;
	text-align: left;
}
th{
	width: 24%;
	display: inline-block;
	vertical-align: top;
}
td{
	width: 69%;
	display: inline-block;
	vertical-align: top;
}


/*color*/
.bg_gray{
	background: #191919;
	width: calc(100% - .6rem);
	padding: .3rem;
}
/*button*/
.button{
	border: 1px solid #fff;
	width: 180px;
	display: block;
	padding: .14rem 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button::before{
	width: 15px;
	border-top: 1px solid #fff;
	content: "";
	margin-right: 10px;
	transition: all .3s ease;
}
.button:hover{
	background: #fff;
	color: #000;
}
.button:hover::before{
	width: 25px;
	border-color: #000;
}
.button_area{
	margin-top: .6rem;
}
/*スライド*/
.slider{
  margin: 0 auto;
  width: 100%;
}
.slider .ele{
  height: 150px;
  width: 150px;
  text-align: center;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-dotted.slick-slider{
	margin-bottom: 0;
}

/*header*/
header{
	padding: .2rem;
}
.logo{
	display: block;
	width: 24%;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active{
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
}
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  right: 0;
  color: #000;
  background: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: fit-content;
	height: 100%;
	padding: 0 1rem;
}
nav.globalMenuSp ul {
  background: #000;
	color: #fff;
  margin: 0 auto;
  padding: 20vh 0 0;
  width: fit-content;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
	text-align: left;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
	font-size: .24rem;
}
nav.globalMenuSp ul li a span{
	font-size: .1rem;
	display: block;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/*footer*/
footer{
	padding: .5rem .3rem .2rem;
	border-top:  1px solid #666;
	margin: 0 .3rem;

}
footer .logo{
	display: inline-block;
	width: 20%;
}
footer span{
	width: 79%;
	display: inline-block;
	text-align: right;
}

/*index*/
.top_main{
	background: url("../images/top_main.jpg") center bottom /cover no-repeat;
	height: 100vh;
	position: relative;
}
.top_main .catch{
	height: fit-content;
	width: fit-content;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.top_main .catch h1{
	font-size: .8rem;
	filter: drop-shadow(1px 1px 1px black);
}
.top_main .catch p{
	font-size: .3rem;
	filter: drop-shadow(2px 2px 2px black);
}
.bg_black{
	background: linear-gradient(180deg, #000 0%, #000 80%, #191919 50%, #191919 100%);
	width: 1300px;
	max-width: 90%;
	height: 350px;
	min-height: 30%;
	z-index: -1;
	position: absolute;
}
.right_black{
	right: 0;
}
.decoration{
	font-size: 5rem;
	color: rgba(255, 255, 255, .04);
	line-height: 4rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	font-weight: bold;
}
.top_experience .decoration
,.team .decoration
,.activity .decoration{
	right: 5%;
}
.title{
	margin-bottom: .3rem;
}
.title h1{
	font-size: .5rem;
}
.top_about .bg_black{
	top: 100px;
}
.top_about .half:nth-child(2) h1{
	font-size: .24rem;
	line-height: .5rem;
	margin-bottom: .3rem;
}
.top_about{
	height: 4rem;
}
.top_experience{
	height: 580px;
}
.top_experience .img{
	background: url("../images/top_experience.jpg") center center /cover no-repeat;
	height: 300px;
	max-width: 1000px;
	width: 80%;
	position: absolute;
	top: 130px;
	z-index: -1;
}
.top_experience .title{
	margin-bottom: 1rem;
}
.top_experience .bg_black{
	top: 300px;
}
.left_half{
	margin-left: 49%;
	filter: drop-shadow(1px 1px 2px #000);
}
.left_half h2{
	padding: .1rem 0 .3rem;
}
.slide_area{
	position: relative;
	min-height: 360px;
}
.slide_area span{
	font-size: 1rem;
	font-weight: bold;
	color: rgba(255, 255, 255, .04);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.link_area{
	border-top: 1px solid #666;
	margin: 0 .3rem;
	padding: .6rem 0;
	text-align: center;
}
.link_area li{
	width: 20%;
	display: inline-block;
}

/*about*/
#sub_page header{
	margin-bottom: .6rem;
}
.sub_main{
	max-width: 1800px;
	width: 94%;
	height: 400px;
}
.about .sub_main{
	background: url("../images/about_main.jpg") center center /cover no-repeat;
}
.about .feeling{
	height: 480px;
}
.feeling .bg_black{
	top: 200px;
}
.feeling .inner{
	width: 70%;
}
.feeling h2{
	font-size: .16rem;
	margin-bottom: .3rem;
}
.team .bg_black{
	top: 100px;
}
.shop .wrap .half:nth-child(2) img{
	width: 70%;
}
.shop .wrap .half:nth-child(3) tr:first-child{
	padding-top: 0;
}
.shop .bg_black{
	bottom: 0;
}
.shop td a:hover{
	color: #fb00f6;
}
.shop td i{
	margin-left: 10px;
}

/*experience*/
.experience .sub_main{
	background: url("../images/experience_main.jpg") center center /cover no-repeat;
}
.bg_img{
	background: url("../images/experience_img02.jpg") center center /cover no-repeat;
	height: 300px;
	width: 70%;
	max-width: 1400px;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.content .bg_black{
	top: 200px;
}
.experience .content{
	height: 670px;
}
.experience .content h1{
	text-align: center;
	margin-bottom: .5rem;
}
.experience .content p{
	line-height: .3rem;
}
.content .half img{
	width: 64%;
	margin-left: 36%;
}
.activity{
	height: 680px;
}
/* .activity .bg_black{
display: none;
} */

/*english*/
.english .sub_main{
	background: url("../images/english_main.jpg") center center /cover no-repeat;
}

/*contact*/
.contact .sub_main{
	background: url("../images/contact_main.jpg") center center /cover no-repeat;
}
.contact .comment{
	width: 60%;
	margin: 0 auto;
}
.comment a{
	font-size: .4rem;
	text-align: center;
	display: block;
	padding: .3rem;
}
.comment a:hover{
	color: #fb00f6;
}
.contact .bg_black{
	top: 200px;
}
.contact .decoration{
	z-index: -1;
}
form div{
	margin-bottom: .2rem;
}
input{
	width: calc(100% - .2rem - 4px);
	height: 30px;
	padding: .1rem;
}
textarea{
	width: calc(100% - .2rem - 4px);
	padding: .1rem;
}
form .button{
	margin: 0 auto;
	display: block;
	height: 50px;
	background: #191919;
	color: #fff;
}
form .button:hover{
	background: #fff;
	color: #191919;
}




@media screen and (max-width: 1000px) {
	.slide_area span{
		top: 200px;
	}
}

@media screen and (max-width: 767px) {
	/*common*/
	.half{
		width: 100%;
	}
	.title{
		margin-bottom: .1rem;
	}
	.title h1{
		font-size: .24rem;
	}
	.button_area{
		margin-top: .4rem;
	}
	.bg_gray{
		padding: .2rem 0;
		width: 100%;
	}
	.bg_black{
		width: 90%;
	}
	th
	,td{
		width: 100%;
	}
	th{
		margin-bottom: .1rem;
	}
	#sub_page header{
		margin-bottom: .4rem;
	}
	/*header*/
	header{
		padding:.1rem .05rem;
	}
	.logo{
		width: 40%;
	}
	nav.globalMenuSp{
		padding: 0 .5rem;
	}

	/*footer*/
	footer{
		margin: 0 .1rem;
		padding: .2rem .1rem .1rem;
	}
	footer .logo{
		width: 30%;
	}
	footer span{
		width: 100%;
		font-size: .12rem;
	}
	.top_main{
		height: 70vh;
		background-position-x: 30%;
	}
	.top_main .catch{
		width: 90%;
	}
	.top_main .catch h1{
		font-size: .4rem;
	}
	.top_main .catch p{
		font-size: .2rem;
	}
	.top_about .half:nth-child(2) h1{
		font-size: .18rem;
		line-height: .3rem;
	}
	.top_about{
		height: 480px;
	}
	.left_half{
		margin-left: 0;
	}
	.top_experience .title{
		margin-bottom: .2rem;
	}
	.top_experience .img{
		height: 150px;
		top: 0;
	}
	.top_experience{
		height: 480px;
	}
	.top_experience .bg_black{
		top: 70px;
	}
	.top_experience .left_half h2{
		font-size: .18rem;
	}
	.top_experience .wrap{
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
	}
	.top_experience .title{
		filter: drop-shadow(1px 1px 2px #000);
	}
	.slide_area{
		min-height: 130px;
	}
	.slide_area span{
		font-size: .3rem;
		top: 90px;
	}
	.link_area{
		margin: 0 .1rem;
		padding: .3rem 0;
	}
	.link_area li{
		width: 49%;
	}
	/*about*/
	.sub_main{
		height: 150px;
	}
	.feeling .inner{
		width: 100%;
	}
	.team .bg_black{
		display: none;
	}
	table tr:first-child{
		padding-top: 0;
	}
	.shop .wrap .half:nth-child(2){
		text-align: center;
		margin-bottom: .2rem;
	}

	/*experience*/
	.bg_img{
		height: 150px;
		width: 100%;
	}
	.content .half img{
		display: none;
	}
	.experience .content{
		height: 620px;
	}
	.content h1{
		font-size: .18rem;
		letter-spacing: 0;
	}

	/*contact*/
	.contact .comment{
		width: 100%;
	}
	.comment a{
		padding: .2rem .1rem;
		font-size: .24rem;
	}
	input
	,textarea{
		font-size: 16px;
	}














	}
