@charset "UTF-8";
body {
  color: white;
}

#footer {
  background-color: unset;
}

.section-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示されたとき */
.section-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float-wrapper {
  position: relative;
  height: 80px; /* 動かしたい高さに合わせて調整 */
  overflow: hidden;
}

.float-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: floatDownLoop 3s ease-in-out infinite;
}

#kv {
  cursor: url("./images/pointer.png") 16 16, pointer;
}
#kv a:hover {
  cursor: url("./images/pointer.png") 16 16, pointer;
}

@keyframes floatDownLoop {
  0% {
    opacity: 0;
    transform: translate(-50%, 8px); /* ちょい上・透明 */
  }
  50% {
    opacity: 1;
    transform: translate(-50%, auto); /* 下までスーっと */
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 40px); /* 下で消える → 次のループで上にワープ */
  }
}
@keyframes LogoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.df-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index h2 {
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p.text {
  white-space: pre-line;
}

.kv {
  min-width: 100%;
  min-height: 100vh;
  background-image: url(./images/kv-bg.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.kv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.kv .wrap {
  left: 80px;
  top: 80px;
}
.kv__title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.kv h2 {
  font-size: 14px;
}
.kv img {
  height: 100px;
}
.kv a {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.kv .sp-logo {
  animation: elasticSpin 3s cubic-bezier(0.68, -0.55, 0.265, 1.2) infinite;
}

@keyframes elasticSpin {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 初期状態：下にずらして非表示 */
.hero-h2,
.hero-logo,
.hero-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* #solid が可視になったときに付けるクラス */
.solid--visible .hero-h2,
.solid--visible .hero-logo,
.solid--visible .hero-text {
  transform: translateY(0);
  opacity: 1;
}

/* 順番に出すためのディレイ */
.solid--visible .hero-h2 {
  transition-delay: 0s;
}

.solid--visible .hero-logo {
  transition-delay: 0.15s;
}

.solid--visible .hero-text {
  transition-delay: 0.3s;
}

.solid__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  flex-direction: column;
}
@media (min-width: 768px) {
  .solid__wrap {
    flex-direction: row;
  }
}
.solid__wrap::before {
  content: "";
  min-height: 65vh;
  width: 100%;
  background-image: url(./images/solid-kv-1.webp);
  background-position: center -36px;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .solid__wrap::before {
    min-height: 100vh;
    width: 50%;
    background-position: right center;
  }
}
.solid__wrap::after {
  content: "";
  min-height: 35vh;
  width: 100%;
  background-image: url(./images/solid-kv-2.webp);
  background-position: center -40px;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .solid__wrap::after {
    min-height: 100vh;
    width: 50%;
    background-position: left center;
  }
}
.solid__wrap .area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.solid .hero-logo img {
  max-width: 300px;
}
.solid .cv {
  max-width: 300px;
  width: 100%;
}
.solid .cv .btn {
  border-radius: 100px;
  width: 100%;
}
.solid .cv .btn i {
  animation: cvBtnBlink 2s linear infinite;
}

@keyframes cvBtnBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.future img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.company dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.company dl td {
  font-weight: bold;
}
.company .map iframe {
  width: 100%;
  height: 100%;
  max-height: 300px;
  aspect-ratio: 16/9;
}

.footer {
  padding: 80px 0px 40px 0px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.footer a img {
  max-height: 80px;
  width: auto;
  animation: LogoSpin 6s linear infinite;
  transform-origin: center center;
}/*# sourceMappingURL=custom.css.map */