@charset "UTF-8";
*,
*::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;
}

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

@-webkit-keyframes nebulaMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

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

.branding-bg-overlay {
  position: fixed;
  top: 0;
  left: 15%;
  width: 70%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
@media (max-width: 768px) {
  .branding-bg-overlay {
    left: 5%;
    width: 90%;
  }
}

.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;
}

.side-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .side-nav {
    display: none;
  }
}

.side-nav__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 174px;
  border: 1px solid white;
  border-radius: 38px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Teachers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.07em;
  color: white;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.side-nav__pill:hover {
  background: white;
  color: #000;
}

.branding-fv {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding-top: 87px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .branding-fv {
    padding-top: 60px;
    padding-bottom: 100px;
    align-items: flex-start;
  }
}

#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  padding: 160px 0;
}
@media (min-width: 769px) {
  .fv-content {
    container-type: inline-size;
  }
}
@media (max-width: 768px) {
  .fv-content {
    display: block;
    max-width: 100%;
    padding: 0;
    height: 524px;
    position: relative;
  }
}

.fv-col {
  width: 38%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  height: calc(min(100vw, 1070px) * 0.38 * 9 / 16 * 2 + 16px);
}
@media (min-width: 769px) {
  .fv-col {
    height: calc(38cqw * 9 / 16 * 2 + 16px);
  }
}
@media (max-width: 768px) {
  .fv-col {
    position: absolute;
    width: 60%;
    height: 53%;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  #fv-col-left {
    top: 20px;
    left: 0;
    padding-left: 20px;
    overflow: hidden;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  #fv-col-right {
    bottom: 0;
    right: 20px;
    top: auto;
    left: auto;
  }
}

.fv-col__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .fv-col__track {
    position: relative;
    gap: 16px;
  }
}

.fv-col__item {
  width: 100%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  overflow: hidden;
  background-color: transparent;
}
.fv-col__item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  display: block;
  transform: scale(1.06);
  transform-origin: left top;
}

.fv-vertical-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: #f0f0f0;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .fv-vertical-text {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    writing-mode: horizontal-tb;
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.fv-vertical-text__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.2s ease;
  white-space: nowrap;
}
.fv-vertical-text__group--active {
  opacity: 1;
}
@media (max-width: 768px) {
  .fv-vertical-text__group {
    position: absolute;
    transform: none;
    opacity: 1 !important;
    transition: none;
    gap: 0;
  }
}

@media (max-width: 768px) {
  #fv-text-1 {
    right: 16px;
    top: 19%;
    left: auto;
    text-align: right;
    writing-mode: horizontal-tb;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  #fv-text-2 {
    left: 14%;
    top: 58%;
    right: auto;
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    z-index: 20;
  }
}

.fv-line {
  position: absolute;
  background: rgba(197, 160, 89, 0.6);
  z-index: 5;
}
@media (max-width: 768px) {
  .fv-line {
    display: none;
  }
}
.fv-line--left {
  top: 87px;
  left: 0;
  width: 100%;
  height: 1px;
}
.fv-line--right {
  display: none;
}

.content-area {
  position: relative;
  z-index: 20;
  max-width: 1070px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-area {
    max-width: 90%;
  }
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 15;
  pointer-events: none;
}

.content-inner {
  position: relative;
  z-index: 20;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 85px;
}
@media (max-width: 768px) {
  .content-inner {
    padding: 0 20px;
    max-width: 100%;
  }
}

.section-hero {
  text-align: center;
  padding: 160px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  .section-hero {
    padding: 30px 0;
  }
}

.section-hero__en {
  font-family: "Teachers", sans-serif;
  font-size: 256px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: white;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-hero__en {
    font-size: 80px;
    top: -16px;
  }
}

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

.brand-section {
  position: relative;
  padding: 80px 0 100px;
}
@media (max-width: 768px) {
  .brand-section:last-of-type {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .brand-section {
    padding: 50px 0 60px;
  }
}
.brand-section--bg {
  margin-left: -85px;
  margin-right: -85px;
  padding-left: 85px;
  padding-right: 85px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .brand-section--bg {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}

.brand-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}
@media (max-width: 768px) {
  .brand-section__bg--pc {
    display: none;
  }
}
.brand-section__bg--sp {
  display: none;
}
@media (max-width: 768px) {
  .brand-section__bg--sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .brand-section--bg-scroll .brand-section__bg--sp {
    position: absolute !important;
    inset: auto;
    top: -8%;
    left: 0;
    width: 100% !important;
    height: 116% !important;
    min-height: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
}

.brand-section__bg-dim {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 26, 0.6);
  z-index: 1;
}

.brand-section__inner {
  position: relative;
  z-index: 2;
}

.brand-section__title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .brand-section__title-row {
    margin-bottom: 36px;
  }
}

.brand-section__num {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  color: #c5a059;
  line-height: 36px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .brand-section__num {
    font-size: 18px;
    line-height: 28px;
  }
}

.brand-section__heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}
@media (max-width: 768px) {
  .brand-section__heading {
    font-size: 16px;
  }
}

.brand-section__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 70px;
  color: white;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .brand-section__lead {
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}

.brand-section__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: white;
  max-width: 514px;
}
@media (max-width: 768px) {
  .brand-section__text {
    font-size: 14px;
    line-height: 26px;
    max-width: 100%;
  }
}

.brand-section__text-block {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 36px;
  color: white;
  max-width: 510px;
  margin-bottom: 40px;
}
.brand-section__text-block p + p {
  margin-top: 0;
}
@media (max-width: 768px) {
  .brand-section__text-block {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 24px;
  }
}

.three-pillars {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .three-pillars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
  }
}

.three-pillars__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .three-pillars__item {
    width: 45%;
  }
  .three-pillars__item:first-child {
    width: 50%;
    margin-bottom: -15px;
  }
}

.three-pillars__circle {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  border: 1px solid #C5A059;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .three-pillars__circle {
    width: 130px;
    height: 130px;
  }
}

.three-pillars__label {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 36px;
  color: white;
}
@media (max-width: 768px) {
  .three-pillars__label {
    font-size: 16px;
    line-height: 24px;
  }
}

.three-pillars__divider {
  width: 130px;
  height: 1px;
  background: white;
  margin: 8px 0;
}
@media (max-width: 768px) {
  .three-pillars__divider {
    width: 70px;
    margin: 4px 0;
  }
}

.three-pillars__sub {
  font-family: "Zen Old Mincho", serif;
  font-size: 21px;
  line-height: 36px;
  color: white;
}
@media (max-width: 768px) {
  .three-pillars__sub {
    font-size: 14px;
    line-height: 21px;
  }
}

.strength-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.strength-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(240, 240, 240, 0.12);
  border: 1px solid white;
  border-radius: 15px;
  padding: 40px 48px;
}
@media (max-width: 768px) {
  .strength-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 10px;
  }
}

.strength-card__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 50px;
  color: white;
  flex-shrink: 0;
  width: 324px;
}
@media (max-width: 768px) {
  .strength-card__title {
    font-size: 24px;
    line-height: 38px;
    width: auto;
  }
}

.strength-card__desc {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 36px;
  color: white;
}
@media (max-width: 768px) {
  .strength-card__desc {
    font-size: 13px;
    line-height: 24px;
  }
}

.support-areas {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .support-areas {
    margin-top: 30px;
  }
}

.support-area {
  margin-bottom: 40px;
}
.support-area .support-area__header {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .support-area .support-area__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.support-area__num {
  font-family: "Whisper", cursive;
  font-size: 60px;
  color: #c5a059;
  line-height: 1;
  width: 96px;
}
@media (max-width: 768px) {
  .support-area__num {
    font-size: 60px;
    width: 100px;
  }
}

.support-area__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 36px;
  color: white;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .support-area__name {
    font-size: 24px;
    line-height: 36px;
    padding-top: 20px;
  }
}

.support-area__desc {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 36px;
  color: white;
  max-width: 390px;
  margin-top: 12px;
  padding-left: 96px;
}
@media (max-width: 768px) {
  .support-area__desc {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.support-areas__row {
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  .support-areas__row {
    flex-direction: column;
    gap: 30px;
  }
}

.consult-layout {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .consult-layout {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}

.consult-box {
  border: 1px solid #c5a059;
  border-radius: 15px;
  padding: 30px 20px;
  flex-shrink: 0;
  max-width: 550px;
}
.consult-box p {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  line-height: 50px;
  color: white;
}
@media (max-width: 768px) {
  .consult-box p {
    font-size: 13px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .consult-box {
    padding: 16px 18px;
    max-width: 100%;
    border-radius: 10px;
  }
}

.consult-note {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 36px;
  color: white;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .consult-note {
    font-size: 15px;
    line-height: 30px;
    padding-top: 0;
  }
}

.consult-note__em {
  font-size: 24px;
  line-height: 44px;
}
@media (max-width: 768px) {
  .consult-note__em {
    font-size: 18px;
    line-height: 34px;
  }
}

.target-list {
  list-style: none;
  margin-top: 20px;
  padding-left: 2em;
}
.target-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: white;
  padding: 10px 0;
  position: relative;
}
.target-list li::before {
  content: "✓";
  position: absolute;
  left: -1.5em;
}
@media (max-width: 768px) {
  .target-list li {
    font-size: 18px;
    line-height: 32px;
    padding: 6px 0;
  }
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
  }
}

.flow-step {
  text-align: center;
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .flow-step {
    width: 100%;
  }
}

.flow-step__circle {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  border: 1px solid #C5A059;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .flow-step__circle {
    width: 160px;
    height: 160px;
    margin-bottom: 10px;
  }
}

.flow-step__icon {
  width: 105px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .flow-step__icon {
    width: 90px;
    height: 90px;
  }
}

.flow-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .flow-step__arrow {
    padding-top: 0px;
  }
}
.flow-step__arrow img {
  width: 32px;
  height: auto;
}
@media (max-width: 768px) {
  .flow-step__arrow img {
    transform: rotate(90deg);
  }
}

.flow-step__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: white;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .flow-step__title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 6px;
  }
}

.flow-step__desc {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 36px;
  color: white;
  max-width: 255px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .flow-step__desc {
    font-size: 13px;
    line-height: 22px;
    max-width: 100%;
    width: 200px;
    text-align: left;
    margin: 16px auto 0;
  }
}

.branding-footer {
  padding: 80px 0 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .branding-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    pointer-events: none;
  }
}

.footer-pills {
  display: flex;
  justify-content: center;
  gap: 40px;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .footer-pills {
    gap: 16px;
  }
}

.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-pill:hover {
  background: white;
  color: #000;
}
@media (max-width: 768px) {
  .footer-pill {
    width: 130px;
    height: 40px;
    font-size: 14px;
    gap: 4px;
  }
}

.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-pill__arrow {
    width: 14px;
  }
}

.footer-pill:hover .footer-pill__arrow {
  filter: invert(1);
}

.footer-pill__text {
  display: block;
  line-height: 1;
}

.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);
  -webkit-animation: ripple-out 1.3s cubic-bezier(0.15, 0.5, 0.4, 1) forwards;
          animation: ripple-out 1.3s cubic-bezier(0.15, 0.5, 0.4, 1) forwards;
}

@-webkit-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;
  }
}

@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=branding.css.map */