@charset "UTF-8";


@media (min-width: 992px) {
	.section__header h2.en_ttl {
		font-size: 3.866em;
	}
}


/* ==========================================================================
   Hero
========================================================================== */

.hero {
	width: 100%;
	line-height: 1.5;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.hero-img {
  display: block;
}
.hero-img::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease-in;
}
.hero-img img {
  display: block;
  width: 100%;
  margin-inline: auto;
	height: 100vh;
  object-fit: cover;
  object-position: center 20px;
}
@media (orientation: landscape){
	.hero-img img {
	  object-position: center center;
	}
}

.hero-ttl {
	color: var(--color1);
	position: absolute;
	bottom: calc(15vh + 60px);
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	mix-blend-mode: screen;
}
.hero-ttl span {
	display: block;
	line-height: 1;
}
@media (orientation: landscape){
	.hero-ttl {
		bottom: 15vh;
	}
}


.hero-copy {
	text-align: center;
	white-space: nowrap;
  position: absolute;
  top: calc(100svh - 70px - 2vh);
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-100%);
}
.hero-copy .ttl {
	font-weight: 800;
	text-shadow: 0px 0px .3em rgba(0,0,0,0.4),
							 0px 0px .1em rgba(0,0,0,0.8);
}
@media (max-width: 767px) {
	.hero-copy .ttl {
		font-size: 5.5vw;
	}
}
@media (orientation: landscape){
	.hero-copy {
	  top: calc(100svh - min(5vh,4.5rem));
	}
}



.countdown {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
	line-height: 1.5;
	margin: 1.5rem auto 0;
	max-width: 20rem;
}
.countdown .label {
	display: flex;
	align-items: center;
}
.countdown .label > span {
	font-size: 1.25em;
	background: var(--color1);
	display: block;
	line-height: 1;
	padding: .3em .8em .45em;
	margin-bottom: .75em;
	position: relative;
}
.countdown .label > span:nth-of-type(2) {
	font-size: 1em;
	background: var(--white);
	color: var(--black);
	padding: .9em 1em 1.05em;
}
.countdown .label > span:nth-of-type(2)::after {
	content: '';
	display: block;
	width: 1em;
	height: .75em;
	clip-path: polygon(35% 0, 0% 100%, 100% 0);
	background: var(--white);
	position: absolute;
	top: 98%;
	left: 45%;
}
.countdown .countdown-timer {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: .125em;
}
.countdown .countdown-timer .num {
	font-family: var(--font-d);
	font-size: 2.5em;
	width: 1.45em;
	position: relative;
}

.blink {
  animation: blinking .8s ease-in-out infinite alternate;
}
@keyframes blinking {
   0% { opacity: 0; }
   80% { opacity: 1; }
}



.hero-scroll {
  position: fixed;
  bottom: calc(1vh + 60px);
  left: 50%;
  z-index: 100;
}
.hero-scroll a {
	width: 7rem;
  height: 70px;
  font-family: var(--font1);
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.hero-scroll .arrow {
  position: absolute;
  left: 50%;
  margin-left: -14px;
  width: 28px;
  height: 1px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: moveDown 3s ease-out infinite;
}
.hero-scroll .arrow:first-child {
  animation: moveDown 3s ease-out 1s infinite;
}
.hero-scroll .arrow:nth-child(2) {
  animation: moveDown 3s ease-out 2s infinite;
}
.hero-scroll .arrow:before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 1em;
  height: 1em;
  margin-left: -.5em;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@keyframes moveDown {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}
@media (orientation: landscape){
	.hero-scroll {
		bottom: 5vh;
	}
}


/* Stop Hero */
html.is-stop-hero .hero-img {
  position: fixed;
  width: 100%;
  height: 100%;
  transform: translate(0) !important;
}
html.is-stop-hero .hero-img::before {
	opacity: 1;
}
html.is-stop-hero .hero-scroll {
	position: absolute;
}
html.is-stop-hero .hero-scroll .text {
	opacity: 0;
}


/* ==========================================================================
   About
========================================================================== */
.main-content {
	position: relative;
}

#about {
	line-height: 2.5;
}


/* ==========================================================================
   Producer
========================================================================== */
#producer .ttl {
	font-size: 2em;
	margin: 0 0 .6em;
}
#producer .en_ttl {
	color: var(--color1);
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
	position: relative;
	z-index: 2;
}
#producer img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/* ==========================================================================
   News
========================================================================== */

