@charset "UTF-8";

div#page {
	position: relative;
}

/* 初期ロード (Welcome 前) → js/revealer.js が復活 (FUCK! div:empty) して不要に... */
/* #cover-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
  pointer-events: none;
}
#cover-home::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(13, 18, 19, 1);
}
#cover-home p {
  text-indent: -9999px;
}
#cover-home.bye {
  opacity: 0;
} */

/* ウェルカム! */
div.welcome {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
}
body.photogallery div.welcome {
  /* opacity: 0;
  background-color: #212529;
  background-repeat: repeat;
  background-size: 3%; */
}
/* div.welcome div:empty,
div.welcome p:empty {
  display: block !important;
} */
.js div.welcome,
div.welcome {
	pointer-events: none;
}

.js .welcome--open,
div.welcome.welcome--open {
	pointer-events: auto;
}

.welcome__inner {
	position: fixed;
  width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #681581;
	/*opacity: 0.5;*/
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}
body.photogallery .welcome__inner {
  display: none;
}
.welcome__inner:hover {
	cursor: pointer;
}
.welcome__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.2);
}
.welcome__section {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: 100%;
	margin: 0 0 0 0;
	padding: 3em 3em 3em 3em;
	word-wrap: break-word;
	overflow-wrap : break-word;
	word-break: keep-all;
  z-index: 1002;
}

.js .welcome__section,
.welcome__section {
	transform: translate3d(0,100px,0);
	opacity: 0;
	transition: transform 0s 0.6s, opacity 0s 0.6s;
  transition-delay: 1.1s;
}

.welcome--open .welcome__section {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: transform 2.5s 0.3s, opacity 2.5s 0.3s;
	transition-timing-function: cubic-bezier(0.2,1,0.2,1);
  transition-delay: 1.5s;
}
.welcome__section .cover-title {
	margin: 0 0 0.2em 0;
	padding: 0 0 0 0;
	font-size: 2em;
	font-weight: 500;
	line-height: 1em;
	color: #fff;
	/* font-family: 'Rubik', sans-serif; */
	opacity: 0.9;
}
.welcome__section .cover-desc {
	margin: 0 0 2em 1em;
	padding: 0 0 0 0;
	font-size: 0.8em;
	font-weight: 400;
	line-height: 1.1em;
	color: #fff;
	/* font-family: 'Space Mono', 'Mplus 1p', sans-serif; */
	opacity: 0.9;
}
.welcome__section .cover-desc a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.welcome__section .cover-desc a:hover {
  background-color: transparent !important;
}
.welcome__section .logo {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	width: 100%;
	height: auto;
}
.welcome__section .logo img {
	/* width: 180px; */
  width: 380px;
	height: auto;
}
.block-revealer__element {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	pointer-events: none;
	opacity: 0;
}
.block-revealer__content {
  /* 背景指定は JS 側で */
}

/* Responsive Structure */
@media all and (max-width: 1200px) {
}
@media all and (max-width: 992px) {
}
@media all and (max-width: 768px) {
}
@media all and (max-width: 576px) {
	.welcome__section {
		padding: 1em 1em 2em 1em;
	}
	.welcome__section .cover-title {
		margin: 0 0 0.3em 0;
		font-size: 1.2em;
	}
	.welcome__section .cover-desc {
    width: 80%;
		margin: 0 0 0 0;
		font-size: 0.7em;
	}
  .welcome__section .logo {
    margin-top: 1em;
  }
	.welcome__section .logo img {
		width: 240px;
		height: auto;
	}
}
