
/*pc*/
body {
	font-family: "Hind", "sans-serif";
	background-color: black;
}
#wrapper {
	margin: 20px auto auto;
	display: flex;
	max-width: 1200px;
}
header {
	position: fixed;
	top: 0px;
	width: 100%;
	max-width: 1200px;
	z-index: 9999;
}
.header_wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
}
h1 {
	font-size: 13px;
	margin-left: 23px;
	margin-top: 30px;
	letter-spacing: 0.2em;
	font-weight: normal;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	color: blue;
	text-decoration: none;
}
h1 a .about {
	display: none;
}
h1 a:hover .moons {
	display: none;
}
h1 a:hover .about {
	display: inline;
}
#moons a:hover {
	color: white;
	text-decoration: none;
}
.ages {
	display: list-item;
 	list-style-type: none;
 	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.2em;
	margin-top: 22px;
	margin-right: 30px;
}
.ages ul {
	text-align: right;
	list-style-type: none;
	line-height: 3em;
}
.main {
	margin: 0px auto 0px;
	max-width: 100%;
}
.block {
	margin: 0px auto 500px;
	overflow: hidden;
	position: relative;
	padding-top: 100px;
}
.block .caption {
	color: #BBB;
	padding-top: 300px;
	padding-left: 0px;
	font-size: 13px;
	letter-spacing: 0.2em;
	font-weight: normal;
}
.block .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.block:hover .mask {
	opacity: 1;
	padding-left: 80px;
}
.block-bottom {
	margin: 0px auto 200px;
	padding-top: 100px;
	overflow: hidden;
	position: relative;
}
.block-bottom .caption {
	color: #BBB;
	padding-top: 300px;
	padding-left: 0px;
	font-size: 13px;
	letter-spacing: 0.2em;
	font-weight: normal;
}
.block-bottom .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.block-bottom:hover .mask {
	opacity: 1;
	padding-left: 80px;
}
.about-text {
	margin: 120px auto 100px;
}
.video {
	width: 100%;
	height: 0%;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
img {
	max-width: 100%;
 	height: 100%;
	margin-top: 0px;
}
.concept {
	color: white;
	max-width: 560px;
	font-size: 12px;
	letter-spacing: 0.2em;
	margin: 80px 30px 0px;
	text-align: justify;
}
p {
	margin: 0px;
}
footer {
	margin-bottom: 50px;
	margin-right: auto;
 	margin-left : auto;
 	max-width: 1000px;
}
footer p {
	color: white;
	text-align: center;
	max-width: 1000px;
	font-size: 10px;
	letter-spacing: 0.2em;
}

.drawer-hidden {
  display: none;
}

/*sp*/
@media screen and (max-width: 480px) {

h1{
	margin-left: 0px;
}
.concept {
	margin: 80px 0px 0px;
}
footer p {
	font-size: 8px;
}
.block {
	margin: 0px auto 400px;
	padding-top: 160px;
}
.block .caption {
	padding-top: 280px;
}
.block:hover .mask {
	opacity: 1;
	padding-left: 50px;
}
.block-bottom {
	margin: 0px auto 200px;
	padding-top: 150px;
	overflow: hidden;
	position: relative;
}
.block-bottom .caption {
	color: #BBB;
	padding-top: 270px;
	padding-left: 0px;
	font-size: 13px;
	letter-spacing: 0.2em;
	font-weight: normal;
}
.block-bottom .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.block-bottom:hover .mask {
	padding-left: 50px;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  margin-right: -20px;
  height: 84px;
  width: 60px;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background: white;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.ages {
  width: 50%;
  height: 100%;
  position: fixed;
  top: -27px;
  right: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  /*background: black;*/
  transition: .5s;
}
.ages ul {
	line-height: 4em;
	margin-top: 78px;
	margin-right: -20px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .ages {
  right:  0;/* メニューを画面に入れる */
}

}