*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: "Teachers", sans-serif;
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nebula-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(185deg, #1F1C2D 4.51%, #142426 87.92%);
  animation: nebulaMove 25s ease infinite alternate;
}

@keyframes nebulaMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
#bubbleCanvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.branding-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 87px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 500;
}
@media (max-width: 768px) {
  .branding-header {
    height: 60px;
    padding: 0 20px;
  }
}

.header-logo {
  font-family: "Teachers", sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: white;
  line-height: 127px;
}
@media (max-width: 768px) {
  .header-logo {
    font-size: 28px;
    line-height: 60px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 256px;
  padding: 8px 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: "Teachers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.07em;
  color: white;
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.header-pill:hover {
  background: white;
  color: #000;
  border-color: white;
}
@media (max-width: 768px) {
  .header-pill {
    display: none;
  }
}

.hamburger-trigger {
  width: 50px;
  height: 28px;
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 768px) {
  .hamburger-trigger {
    width: 23px;
    height: 13px;
  }
}
.hamburger-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 768px) {
  .hamburger-trigger span {
    height: 1px;
  }
}
.hamburger-trigger.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.company-main {
  position: relative;
  z-index: 20;
}

.company-hero {
  position: relative;
  text-align: center;
  padding: 280px 20px 200px;
}
@media (max-width: 768px) {
  .company-hero {
    padding: 150px 20px 56px;
  }
}

.company-hero__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Teachers", sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 17.8vw, 256px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: white;
  opacity: 0.2;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .company-hero__en {
    font-size: 72px;
    opacity: 0.15;
    letter-spacing: 0.01em;
    transform: translate(-50%, 4%);
  }
}

.company-hero__ja {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.01em;
  color: #f0f0f0;
}
@media (max-width: 768px) {
  .company-hero__ja {
    font-size: 24px;
  }
}

.company-info {
  position: relative;
  z-index: 20;
  max-width: 592px;
  margin: 0 auto;
  padding: 0 20px 170px;
}
@media (max-width: 768px) {
  .company-info {
    max-width: 340px;
    padding: 0 25px 90px;
  }
}

.company-info__list {
  width: 100%;
}

.company-info__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  border-bottom: 1px solid white;
  margin-bottom: 5px;
  padding-bottom: 10px;
}
.company-info__row:last-child {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .company-info__row {
    grid-template-columns: 108px 1fr;
    margin-bottom: 5px;
    padding-bottom: 6px;
  }
  .company-info__row:last-child {
    margin-bottom: 0;
  }
}

.company-info__label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 66px;
  color: white;
}
@media (max-width: 768px) {
  .company-info__label {
    font-size: 13px;
    line-height: 26px;
  }
}

.company-info__value {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 66px;
  color: white;
  white-space: nowrap;
}
.company-info__value span {
  display: block;
}
.company-info__value a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .company-info__value {
    font-size: 13px;
    line-height: 26px;
  }
}

.site-footer {
  position: relative;
  z-index: 30;
  background: #000;
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 42px 0 64px;
  }
}

.footer-pills {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-pills {
    gap: 16px;
  }
}
.footer-pills .footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 255px;
  height: 57px;
  border: 1px solid white;
  border-radius: 55px;
  font-family: "Teachers", sans-serif;
  font-size: 25px;
  letter-spacing: 0.07em;
  color: white;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.footer-pills .footer-pill:hover {
  background: white;
  color: #000;
}
@media (max-width: 768px) {
  .footer-pills .footer-pill {
    width: 136px;
    height: 40px;
    font-size: 14px;
    gap: 6px;
  }
}
.footer-pills .footer-pill__arrow {
  display: block;
  width: 40px;
  height: auto;
  flex-shrink: 0;
  transition: filter 0.3s;
  position: relative;
  top: 2px;
}
@media (max-width: 768px) {
  .footer-pills .footer-pill__arrow {
    width: 27px;
  }
}
.footer-pills .footer-pill:hover .footer-pill__arrow {
  filter: invert(1);
}
.footer-pills .footer-pill__text {
  display: block;
  line-height: 1;
}

.footer-sitemap {
  max-width: 1270px;
  margin: 0 auto;
  padding: 90px 120px 0;
}
@media (max-width: 768px) {
  .footer-sitemap {
    padding: 56px 25px 0;
  }
}

.footer-sitemap__logo {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 55px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  color: white;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .footer-sitemap__logo {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.footer-sitemap__list {
  list-style: none;
}
.footer-sitemap__list li a {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.07em;
  color: #d9d9d9;
  transition: color 0.3s;
}
.footer-sitemap__list li a:hover {
  color: white;
}
@media (max-width: 768px) {
  .footer-sitemap__list li a {
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0.07em;
  }
}

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: #050517;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 98px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 768px) {
  .nav-menu {
    justify-content: flex-start;
    padding: 72px 32px 120px 45px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu__list {
  list-style: none;
}

.nav-menu__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-menu.is-open .nav-menu__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-menu.is-open .nav-menu__item:nth-child(1) {
  transition-delay: 0.06s;
}
.nav-menu.is-open .nav-menu__item:nth-child(2) {
  transition-delay: 0.12s;
}
.nav-menu.is-open .nav-menu__item:nth-child(3) {
  transition-delay: 0.18s;
}
.nav-menu.is-open .nav-menu__item:nth-child(4) {
  transition-delay: 0.24s;
}
.nav-menu.is-open .nav-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.nav-menu.is-open .nav-menu__item:nth-child(6) {
  transition-delay: 0.36s;
}
.nav-menu.is-open .nav-menu__item:nth-child(7) {
  transition-delay: 0.42s;
}
.nav-menu.is-open .nav-menu__item:nth-child(8) {
  transition-delay: 0.48s;
}

.nav-menu__link {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: 0.07em;
  color: #d9d9d9;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .nav-menu__link {
    font-size: 22px;
    line-height: 46px;
  }
}
.nav-menu__link:hover {
  opacity: 0.5;
}

.nav-menu__close {
  position: absolute;
  bottom: 60px;
  left: 98px;
  width: 139px;
  height: 50px;
  background: transparent;
  border: 1px solid white;
  border-radius: 57px;
  color: #d9d9d9;
  font-family: "Teachers", sans-serif;
  font-size: 21px;
  letter-spacing: 0.07em;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .nav-menu__close {
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
  }
}
.nav-menu__close:hover {
  background: white;
  color: black;
}

.nav-menu {
  z-index: 600;
}

body {
  cursor: crosshair;
}

.ripple-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.ripple-ring {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1.5px solid rgba(218, 165, 32, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-out 1.3s cubic-bezier(0.15, 0.5, 0.4, 1) forwards;
}

@keyframes ripple-out {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    border-width: 3px;
  }
  100% {
    transform: translate(-50%, -50%) scale(7);
    opacity: 0;
    border-width: 0.1px;
  }
}

/*# sourceMappingURL=company.css.map */
