@charset "UTF-8";

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

.hero {
	background: var(--color1);
	color: var(--white);
	width: 100%;
	height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	line-height: 1.5;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.hero-img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-img::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--color1) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.hero-img img {
  display: block;
  width: 100%;
	height: 100%;
  object-fit: cover;
}


.hero-ttl {
	width: 50%;
	aspect-ratio: 11 / 8;
	position: relative;
	z-index: 1;
}
.hero-ttl::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/logo__heart.svg) no-repeat center center / contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: .5;
	 transform-origin: center;
	animation: anime10_heart 2s ease-in-out infinite;
}

.hero-copy {
	font-family: var(--font1);
	text-align: center;
  margin: 2rem auto 0;
  padding: 0 5% 3rem;
  position: relative;
  z-index: 2;
}
.hero-copy .ttl {
	font-weight: 800;
	line-height: 1;
	text-shadow: 0px 0px .3em var(--color2),
							 0px 0px .1em var(--color2);
}
.hero-copy .ttl span {
	display: inline-block;
}
.hero-copy .badge {
	margin-top: .5em;
}
.hero-copy > * {
	color: var(--white);
}


@keyframes anime10_heart {
	0%  { transform: scale(1); }
	15% { transform: scale(1.6); }
	30% { transform: scale(0.6); }
	45% { transform: scale(1.6); }
	100%,
	60% { transform: scale(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); }
}


/* 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;
}


