@charset "UTF-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}

/* General Styling */
body {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  font-family: "YuGothic", "Yu Gothic", YuGothic, Yu Gothic, sans-serif;
  background-image: url("img/01.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
img{
max-width: 100%;
height: auto;
width /***/:auto;
}
.container {
  overflow: auto;
  height: 100vh;
}
.outer {
  position: relative;
  height: 100%;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
.outer_box {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.outer_box img {
	width: 400px;
  }
.outer_box_b1 {
	width: 100%;
	height: 100%;
	background-color: #000000;
	background-image: radial-gradient(#333333 10%, #000000 10%);
	background-size: 5px 5px;
	opacity: 0.5;
	z-index: 2;
}
.outer_box_b2 {
	width: 200px;
	text-align: right;
	z-index: 1;
	position: absolute;
	bottom: 50px;
	right: 50px;
}
.outer_box_b2 p a:hover{
	opacity: 0.5;
}
.outer_box_b3 {
	width: 130px;
	z-index: 1;
	position: absolute;
	bottom: 50px;
	left: 50px;
}
.outer_box h1 {
	margin: 0 auto;
	width: auto;
  padding: 0 0 30px;
	color: #fff;
	font-size: 3.5em;
	letter-spacing: 0.3em;
}
.outer_box h2 {
	margin: 0 auto;
	width: auto;
	color: #fff;
	font-size: 2em;
	font-weight: 500;
	font-family: "YuMincho", "Yu Mincho", YuMincho, Yu Mincho, serif;
}
.outer_box a {
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 670px) {
.outer_box h1 {
	padding: 25px 0 50px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0em;
}
}

/* ↓ナビ↓ */

.inner {
	width: 90%;
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}

/* header */
#top-head {
	font-size: 14px;
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 30px 0 30px;
	line-height: 1;
	z-index: 999;
}
#top-head a,
#top-head {
	color: #666;
	text-decoration: none;
}
#top-head .inner {
	position: relative;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 18px;
	font-weight: bold;
	font-color: #333;
}
#global-nav ul li {
	float: left;
	position: relative;
}
#global-nav ul li a {
	padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 50px;
	top: 50px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
@media screen and (max-width: 670px) {
#nav-toggle {
	right: 30px;
	top: 30px;
}
}

#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 1px;
	width: 100%;
	background: #fff;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 10px;
}
#nav-toggle span:nth-child(3) {
	top: 20px;
}

@media screen and (max-width: 3000px) {
	.inner {
		width: 100%;
		padding: 0 20px;
	}
	#global-nav ul li a {
		padding: 0 20px;
	}
	#top-head.fixed #global-nav ul li a {
		padding: 0 15px;
	}

	#top-head,
	.inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}

#mobile-head {
		z-index: 999;
		position: relative;
	}

	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -550px;
		background-color:rgba(175,84,77,0.8);
		width: 100%;
		text-align: center;
		padding: 50px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 17px;
	}
	#global-nav ul li {
		float: none;
		position: static;
	}
	#global-nav ul li:after  {
		display: none;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		width: 100%;
		display: block;
		color: #fff;
		padding: 25px 0;
	}
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateY(550px);
		-webkit-transform: translateY(550px);
		transform: translateY(550px);
	}
}

/* loading */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 1;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* ローディング画面 */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #393f4c;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .spinner {
	width: 100px;
	height: 100px;
	margin: 200px auto;
	background-color: #fff;
	border-radius: 100%;
	animation: sk-scaleout 1.0s infinite ease-in-out;
  }
  .loaded {
	opacity: 0;
	visibility: hidden;
  }
  /* ローディングアニメーション */
  @keyframes sk-scaleout {
	0% {
	  transform: scale(0);
	} 100% {
	  transform: scale(1.0);
	  opacity: 0;
	}
  }