/* CSS Document */


/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

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%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
a {
	text-decoration: none;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
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;
}

/* Original add */

/* GENERAL STYLES
================================================== */

html {
    height:100%;
	overflow-y: hidden;
}

body {
    margin:0;
    padding:0;
    height:100%;
    width:100%;
	font-family: "Noto Sans Japanese", 'Oswald', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 12px;
	line-height: 1.8em;
	letter-spacing: 0.05em;
	color: #000;
    -webkit-font-smoothing:antialiased;
    -webkit-text-size-adjust:100%;
	background: #000;
}
.sp {
	display: none;
}

/* LOADING
================================================== */

#loader-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #000;
	z-index: 999999;
}
.spinner {
	margin: -9px 0 0 -35px;
	width: 70px;
	height: 18px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
}
.spinner > div {
	width: 18px;
	height: 18px;
	background-color: #333;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
	-webkit-transform: scale(0);
	transform: scale(0);
  } 40% { 
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
  }
}

/* BIG VIDEO BACKGROUND
================================================== */

.big-background {
    z-index: 550;
    text-align: center;
    height: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.big-background .big-background-container {
    width: 100%;
    max-width: 900px;
    display: inline-block;
    position: absolute;
	line-height: 0;
	letter-spacing: 0;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	background: url(../img/bg_dummy.jpg) center center no-repeat #000;
	background-size: 100% auto;
}
.big-background .big-background-container h1 {
	width: 100%;
	height: auto;
	line-height: 0;
	letter-spacing: 0;
}
.big-background .big-background-container h1 img {
	width: 104%;
	height: auto;
	margin: -1px 0 0 -2%;
	display: block;
}

/* MAIN CONTENTS
================================================== */

.big-background .main {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 2%;
}
.big-background .main ul {
	width: 100%;
	height: auto;
	text-align: center;
}
.big-background .main ul li {
	width: 21%;
	margin: 0 2% 20px;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}
.big-background .main ul li a {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	line-height: 1.25em;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #666;
}
.tlink2{
	/*color: yellow !important;*/
	/*border-bottom: 2px solid #666;*/
	padding-bottom: 5px;
	display: inline-block !important;
	color: #fff;
	position: relative;
}
.tlink2:hover{
	color: #fff !important;
	/*border-bottom: 2px solid #fff;*/
}
.tlink2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;/*線の上下位置*/
  display: inline-block;
  width: 50px;/*線の長さ*/
  height: 3px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #666;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}
.big-background .main ul li a:hover {
	color: #e6e600;
}

.big-background .main p {
	font-size: 11px;
	font-weight: 300;
	display: block;
	float: right;
	margin: 2% 2% 0 0;
	color: #666;
}


/* PANEL CONTENTS
================================================== */

section.panel_content {
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
    position: fixed;
    left: 0;
    bottom: 100%;
    z-index: 9999999;
    opacity: 0;
	text-align: center;
	box-sizing: border-box;
	background: rgba(255,255,255,0.90);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
section.panel_content.active {
    bottom: 0;
    opacity: 1;
}
section.panel_content a.close {
	width: 40px;
	height: 40px;
	font-size: 0px;
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 99999;
}
section.panel_content a.close:hover {
	opacity: 0.6;
}
section.panel_content a.close:after {
	content: "\e935";
	font-family: 'icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 40px;
	line-height: 40px;
	color: #999;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}
section.panel_content > div.fade {
	width: 100%;
	max-width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	-webkit-transition-duration: 0.0s;
	-o-transition-duration: 0.0s;
	transition-duration: 0.0s;
	-webkit-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s;
	z-index: 1;
}
section.panel_content.active > div.fade {
	-webkit-transition-duration: 2.5s;
	-o-transition-duration: 2.5s;
	transition-duration: 2.5s;
	-webkit-transition-delay: 2.0s;
	-o-transition-delay: 2.0s;
	transition-delay: 2.0s;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
section.panel_content#map > div.fade {
	background: url("../img/mh_map_img.jpg") left bottom no-repeat;
	/*background: url("../img/office.jpg") right bottom no-repeat;*/
	background-size: cover;
}
section.panel_content#bus_list > div.fade {
	background: url("../img/bus_new.jpg") center bottom no-repeat;
	/*background: url("../img/bus.jpg") center bottom no-repeat;*/
	background-size: cover;
}

@media screen and (max-width: 768px) {
	section.panel_content#map > div.fade {
		background: url("../img/office_new.jpg") center bottom no-repeat;
		background-size: cover;
	}
	section.panel_content#bus_list > div.fade {
		background: url("../img/bus_new.jpg") left 20% bottom no-repeat;
		background-size: cover;
	}
}

#bus_list ul li{
	position: relative;
	/*background: red;*/
}
#bus_list ul li span{
	position: absolute;
	top: 8px;
	right: 15px;
	font-size: 12px;
	font-family: 'Oswald', sans-serif;
	color: #b4b4b4;
	letter-spacing: 2px;
}
#bus_list ul li b{
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: center;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	text-align: center;
	font-size: 12px;
	background: #fc3363;
	border-radius: 50%;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	letter-spacing: 2px;
}
section.panel_content > div {
	width: 90%;
	max-width: 1000px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}
section.panel_content > div > div {
	width: 65%;
	display: inline-block;
	vertical-align: top;
}
section.panel_content > div > div + div {
	width: 30%;
	margin: 0 0 0 5%;
}
section.panel_content dl {
	width: 100%;
	height: auto;
	margin: 0 0 50px 0;
	text-align: left;
	color: #000;
}
section.panel_content dl dt {
	width: 5em;
	height: auto;
	padding: 0 0 15px 0;
	float: left;
}
section.panel_content dl dd {
	padding: 0 0 20px 9em;
	position: relative;
}
section.panel_content dl dd:before {
	content: ":";
	position: absolute;
	left: 7em;
	top: 0;
}
section.panel_content dl dd span {
	display: inline-block;
	min-width: 6em;
	padding: 0 1em 0 0;
}
section.panel_content dl dd a {
	color: #000;
}
section.panel_content img {
	width: 90%;
	max-width: 800px;
	height: auto;
	margin: 0 auto;
	padding:  70px 0 30px 0;
}
section.panel_content p {
	padding: 0 0 60px 0;
}

section.panel_content ul {
	width: 90%;
	max-width: 1000px;
	height: auto;
	overflow: hidden;
	margin: 70px auto 60px auto;
	text-align: center;
}
section.panel_content ul li {
	width: 22%;
	height: auto;
	float: left;
	margin: 0 4% 5% 0;
}
section.panel_content ul li:nth-child(4n) {
	margin: 0 0 5% 0;
}
section.panel_content ul li img {
	padding: 0;
}

/* COMPANY */

section.panel_content#company p {
	display: block;
	text-align: left;
	padding: 0 0 40px 0;
}
section.panel_content#company p.subti {
	width: 100%;
	margin: 70px 0 20px 0;
	padding: 0;
	text-align: left;
	font-size: 18px;
	color: #878787;
}
section.panel_content#company a {
	display: block;
	text-align: left;
	color: #000;
	padding: 0 0 5px 0;
}

section.panel_content#company div > div p.subti {
	margin: 0 auto 20px auto;
}
section.panel_content#company ul {
	width: 100%;
	margin: 0 0 40px 0;
	text-align: left;
}
section.panel_content#company ul li {
	width: 16em;
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 12px;
}
section.panel_content#company ul li.clear {
	width: 100%;
	height: 1px;
	line-height: 0;
	display: block;
}
section.panel_content#company ul li:before {
	content: "・";
	display: inline-block;
	padding: 0 5px 0 0;
}
section.panel_content#company ul li.clear:before {
	display: none;
}

section.panel_content#company ul + p.subti + ul li {
	width: 40%;
}
section.panel_content#company ul + p.subti + ul li:first-child + li {
	width: 60%;
}
section.panel_content#company ul + p.subti + ul li:before {
	display: none;
}
section.panel_content#company ul + p.subti + ul li em {
	display: block;	
}
section.panel_content#company ul + p.subti + ul li table  {
	border-top: solid #000 1px;
	font-size: 11px;
}
section.panel_content#company ul + p.subti + ul li table caption {
	font-size: 12px;
	text-align: left;
}
section.panel_content#company ul + p.subti + ul li table th,
section.panel_content#company ul + p.subti + ul li table td {
	border-bottom: solid #000 1px;
	border-left: solid #000 1px;
	padding: 2px 5px;
	text-align: center;
	vertical-align: middle;
}
section.panel_content#company ul + p.subti + ul li table tr th:first-child,
section.panel_content#company ul + p.subti + ul li table tr td:first-child {
	border-left: none;
}

/* LOCATION */

section.panel_content#location {
	text-align: left;
	padding: 0 0 40px 0;
}
section.panel_content#location p.subti {
	width: 100%;
	margin: 70px 0 20px 0;
	padding: 0;
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.2em;
	color: #878787;
}
section.panel_content#location p.subti + p {
    padding: 0 0 30px 0;
}
section.panel_content#location dl dt {
	width: 7em;
}
section.panel_content#location dl dd:before {
	display: none;
}
section.panel_content#location > div + div p.subti {
   margin: 0 0 20px 0;
}
section.panel_content#location > div + div + div {
	border-top: #000 solid 1px;
	padding: 30px 0 0 0;
}
section.panel_content#location > div + div + div p {
	padding: 0;
}
section.panel_content#location > div + div + div  a {
	color: #000;
}

@media screen and (max-width:1800px){
	.big-background .big-background-container {
		max-width: 750px;
	}
}

@media screen and (max-width:1024px){
	
	.big-background .main ul li a:hover {
		color: #666;
	}


	#bus_list ul li span{
		position: absolute;
		top: 2px;
		right: 10px;
		font-size: 9px;
		font-family: 'Oswald', sans-serif;
		color: #b4b4b4;
		letter-spacing: 2px;
	}
	#bus_list ul li b{
		font-size: 9px;
	}
	
	section.panel_content > div.fade {
		background: url(../img/all_bus.jpg) 90% bottom no-repeat;
		background-size: cover;
	}
	section.panel_content > div > div {
		width: 60%;
	}
	section.panel_content > div > div + div {
		width: 30%;
		margin: 0 0 0 10%;
	}
	
	section.panel_content dl dt {
		padding: 0 0 20px 0;
	}
	section.panel_content dl dd {
		padding: 0 0 20px 10em;
	}
	section.panel_content img {
		padding:  80px 0 20px 0;
	}
	
	section.panel_content ul {
		margin: 100px auto 60px auto;
	}
	
	section.panel_content a.close:hover {
		opacity: 1;
	}
	
	section.panel_content#company p.subti {
		margin: 100px auto 10px auto;
	}
	section.panel_content#company div > div p.subti {
		margin: 0 auto 10px auto;
	}
	section.panel_content#company ul + p.subti + ul li {
		width: 100%;
		padding: 0 0 20px 0;
	}
	section.panel_content#company ul + p.subti + ul li:first-child + li {
		width: 100%;
	}
	
	/* LOCATION */

	section.panel_content#location p.subti {
		margin: 100px auto 10px auto;
	}

}

@media screen and (max-width:660px){
	
	body {
		font-size: 13px;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: inline;
	}

	.big-background .main ul {
		width: 98%;
	}
	.big-background .main ul li {
		width: 25%;
		margin: 0 0 10px 0;
	}
	.big-background .main ul li a {
		font-size: 12px;
		line-height: 1.25em;
	}
	.big-background .main p {
		font-size: 10px;
		float: none;
		clear: both;
		margin: 2% 0 0 0;
	}
	.tlink2{
		/*color: yellow !important;*/
		/*border-bottom: 2px solid #666;*/
		padding-bottom: 5px;
		display: inline-block !important;
		color: #fff;
		position: relative;
	}
	.tlink2:hover{
		color: #fff !important;
		/*border-bottom: 2px solid #fff;*/
	}
	.tlink2:before {
	  content: '';
	  position: absolute;
	  left: 50%;
	  bottom: -5px;/*線の上下位置*/
	  display: inline-block;
	  width: 30px;/*線の長さ*/
	  height: 2px;/*線の太さ*/
	  -webkit-transform: translateX(-50%);
	  transform: translateX(-50%);/*位置調整*/
	  background-color: #666;/*線の色*/
	  border-radius: 2px;/*線の丸み*/
	}
	section.panel_content > div > div,
	section.panel_content > div > div + div {
		width: 100%;
		margin: 0 0 20px 0;
	}
	section.panel_content > div > div + div {
		margin: 0 0 40px 0;
	}
	section.panel_content dl {
		margin: 0 auto 20px auto;
	}
	section.panel_content dl dt {
		width: 100%;
		float: none;
		clear: both;
		font-weight: 600;
		padding: 0;
	}
	section.panel_content dl dd:before {
		content: " ";
		width: 20px;
		height: 1px;
		background: #999;
		display: block;
		line-height: 0;
		left: 0;
		top: 10px;
	}
	section.panel_content dl dd {
		padding: 20px 0;
	}
	section.panel_content dl dd span {
		display: block;
		padding: 10px 0 0 0;
	}
	section.panel_content ul {
		margin: 80px auto 60px auto;
	}
	
	section.panel_content ul li,
	section.panel_content ul li:nth-child(3n) {
		width: 48%;
		margin: 0 4% 4% 0;
	}
	section.panel_content ul li:nth-child(even) {
		margin: 0 0 4% 0;
	}
	section.panel_content ul li img {
		padding: 0;
	}

	section.panel_content a.close {
		top: 20px;
		left: 5%;
	}
	
	section.panel_content#company p {
		padding: 0 0 20px 0;
	}
	section.panel_content#company p.subti {
		margin: 80px auto 10px auto;
		font-size: 16px;
	}
	section.panel_content#company div > div p.subti {
		margin: 0 auto 10px auto;
	}
	section.panel_content#company ul {
		margin: 0 0 20px 0;
	}
	section.panel_content#company ul + p.subti + ul li {
		width: 100%;
		padding: 0 0 10px 0;
	}
	section.panel_content#company ul + p.subti + ul li:first-child + li {
		width: 100%;
		padding: 0;
	}
	section.panel_content#company ul + p.subti + ul li br {
		display: none;
	}
	section.panel_content#company ul + p.subti + ul li table th,
	section.panel_content#company ul + p.subti + ul li table td {
		border-bottom: solid #000 1px;
		border-left: solid #000 1px;
		padding: 2px 3px;
		text-align: center;
		vertical-align: middle;
	}
	
	/* LOCATION */

	section.panel_content#location p.subti {
		margin: 80px auto 10px auto;
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	section.panel_content#location dl dd {
		padding: 0 0 30px 0;
	}
	
}

@media screen and (max-width:350px){
	
	.big-background .main ul {
		width: 95%;
	}
	.big-background .main ul li a {
		font-size: 11px;
	}
	
}
