@import url(https://fonts.googleapis.com/css2?family=Pirata+One&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap);
:root {
  /* Colors */
  --background-color: #F4F2EE;
  --primary-color: #1E1E1E;
  --secondary-color: #E54C4C;
  /* Fonts */
  --h1: "Pirata One", serif;
  --title-section: "Playfair Display", serif;
  --text: "Poppins", sans-serif;
  /* Font Sizes */
  --h1-size-mb: 4.188rem;
  --h2-size-mb: 2.375rem;
  --text-number-mb: 1.75rem;
  --text-big-mb: 1.313rem;
  --text-mb: 1rem;
  --text-small-mb: 0.75rem;
  --h1-size-dt: 8.438rem;
  --h1-tech-size-dt: 6.313rem;
  --h2-size-dt: 2.688rem;
  --chapter-size-dt: 2rem;
  --text-big-dt: 1.5rem;
  --text-dt: 1.125rem;
  --text-small-dt: 0.875rem;
  /* Font Weights */
  --bold-weight: 700;
  --regular-weight: 400;
  /* Font Line Heights */
  --title--line-height: 1.2;
  --text-line-height: 1.4;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--background-color);
  color: var(--primary-color);
  margin: 0;
}

.loading--page {
  opacity: 0;
  position: fixed;
  z-index: 99999;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading--page .loading--page__content {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loading--page .loading--page__content .loading--icon {
  width: 40px;
  height: auto;
  margin: 0 0 40px 0;
}
.loading--page .loading--page__content .headphones--icon {
  width: 40px;
  height: auto;
  margin: 0 0 40px 0;
}
.loading--page .loading--page__content .spoiler--title {
  font-size: var(--h2-size-mb);
  font-family: var(--title-section);
  color: var(--background-color);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0 0 40px 0;
}
.loading--page .loading--page__content .spoiler {
  font-size: var(--text-big-mb);
  font-family: var(--text);
  color: var(--background-color);
  line-height: var(--text-line-height);
  margin: 0 0 80px 0;
}

.musicBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 9999;
  position: fixed;
  top: 20px;
  left: 20px;
}

.iconMusic {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}

.custom--cursor {
  display: none;
}

.cursor--outline {
  display: none;
}

#chapter1,
#chapter2,
#chapter3,
#chapter4,
#chapter5,
#chapter6 {
  scroll-margin-top: 100px;
}

#frame1,
#frame2,
#frame3,
#frame5,
#frame6,
#frame7,
#frame8,
#frame9 {
  scroll-margin-top: -80px;
}

#frame4 {
  scroll-margin-top: -60px;
}

#seraphim,
#punkRecords,
#lightPanel {
  scroll-margin-top: 40px;
}

.japanese--content.fixed,
.text--chapter.fixed {
  display: none;
}

/* ------- HOME PAGE ------- */
/* NAVIGATION */
.menu--btn {
  width: 25px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 25px;
  background: transparent;
  color: transparent;
  border: 0;
  z-index: 99;
  cursor: pointer;
}
.menu--btn i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease;
}
.menu--btn i:nth-child(1) {
  top: 0;
}
.menu--btn i:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu--btn i:nth-child(3) {
  bottom: 0;
}

.nav {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  position: fixed;
  height: 80px;
  border-bottom: 1px solid var(--primary-color);
  background-color: var(--background-color);
  z-index: 999;
}

/* Menu Open */
.menu--btn.open i:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center;
}
.menu--btn.open i:nth-child(2) {
  opacity: 0;
}
.menu--btn.open i:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
  transform-origin: center;
}

.nav__mb {
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  padding: 0;
  margin: 0;
  top: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-out;
  z-index: 10;
}
.nav__mb .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav__mb .nav__list .nav__item {
  margin-bottom: 40px;
}
.nav__mb .nav__list .nav__item .nav__link {
  text-align: center;
  color: var(--primary-color);
  font-size: var(--text-big-mb);
  line-height: var(--text-line-height);
  font-weight: var(--regular-weight);
  text-decoration: none;
  font-family: var(--title-section);
  transition: all 0.3s ease;
  opacity: 0;
  cursor: pointer;
}
.nav__mb .nav__list .nav__item .nav__link .text--number {
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  color: var(--secondary-color);
}
.nav__mb .nav__list .nav__item .nav__link:hover {
  color: var(--secondary-color);
}
.nav__mb .nav__list .nav__item:last-child {
  margin-bottom: 0;
}

.nav__mb.open {
  top: 0;
  height: 100%;
}

/* HEADER */
.section--header {
  height: 100vh;
  padding: 0 20px;
}
.section--header .section--header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.section--header .section--header__content .title--big {
  opacity: 0;
  margin: 0;
  padding-bottom: 32px;
  font-size: var(--h1-size-mb);
  line-height: var(--title--line-height);
  font-family: var(--h1);
}
.section--header .section--header__content .title--big .compass--h1 {
  width: 40px;
  height: 40px;
}
.section--header .section--header__content .text--big {
  opacity: 0;
  margin: 0;
  font-size: var(--text-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  font-family: var(--text);
  max-width: 400px;
}
.section--header .section--header__content .btn--start {
  opacity: 0;
  -webkit-animation: appear 0.3s ease-in forwards;
          animation: appear 0.3s ease-in forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  transform: translateY(10px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 16px 20px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  line-height: var(--text-line-height);
  font-size: var(--text-mb);
  font-family: var(--text);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
.section--header .section--header__content .btn--start .compass--btn {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: all 0.3s ease;
  transform: rotate(0deg);
  fill: var(--secondary-color);
}
.section--header .section--header__content .btn--start:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
}
.section--header .section--header__content .btn--start:hover .compass--btn {
  transform: rotate(180deg);
  color: var(--secondary-color);
}
@-webkit-keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section--header .japanese--content {
  position: absolute;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  margin: 0;
  top: 100px;
  left: 20px;
  padding: 10px 5px 2px 5px;
  border: 1px solid var(--primary-color);
}
.section--header .japanese--content .text {
  margin: 0;
  letter-spacing: 10px;
  font-size: var(--text-mb);
  font-family: var(--title-section);
}
.section--header .text--chapter {
  position: absolute;
  bottom: 40px;
  right: 20px;
  margin: 0;
  font-family: var(--title-section);
  font-size: var(--text-big-mb);
}
.section--header .text--chapter .text--number {
  padding-left: 5px;
  color: var(--secondary-color);
  font-weight: var(--bold-weight);
  font-size: var(--text-number-mb);
}

/* MAIN */
.main {
  padding: 0 20px;
}
.main .section--chapter {
  margin: 240px 0 0 0;
}
.main .section--chapter .japanese--content {
  display: flex;
  justify-self: end;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  margin: 0;
  padding: 10px 5px 2px 5px;
  border: 1px solid var(--primary-color);
}
.main .section--chapter .japanese--content .text {
  margin: 0;
  letter-spacing: 10px;
  font-size: var(--text-mb);
  font-family: var(--title-section);
}
.main .section--chapter .text--chapter {
  position: relative;
  text-align: right;
  margin: 0 0 80px 0;
  padding-top: 8px;
  font-family: var(--title-section);
  font-size: var(--text-big-mb);
}
.main .section--chapter .text--chapter .text--number {
  padding-left: 5px;
  color: var(--secondary-color);
  font-weight: var(--bold-weight);
  font-size: var(--text-number-mb);
}
.main .section--chapter .text--quote {
  color: var(--secondary-color);
  font-style: italic;
}
.main .section--chapter .section--chapter__frame {
  margin: 0;
}
.main .section--chapter .section--chapter__frame .figure--large {
  padding: 40px 0 60px 20px;
  max-width: 400px;
  height: auto;
  margin: 0;
}
.main .section--chapter .section--chapter__frame .figure--large .figure__image {
  margin: 0;
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.main .section--chapter .section--chapter__frame .figure--large .figure__text {
  margin: 0;
  padding-top: 8px;
  font-family: var(--text);
  font-size: var(--text-small-mb);
  line-height: var(--text-line-height);
  font-weight: var(--regular-weight);
  font-style: italic;
}
.main .section--chapter .section--chapter__frame:last-child {
  margin-top: 80px;
}
.main .section--chapter .section--chapter__frame .figure--square {
  padding-left: 20px;
  padding-bottom: 40px;
  width: calc(100% - 20px);
  height: auto;
  margin: 0;
}
.main .section--chapter .section--chapter__frame .figure--square .figure__image {
  margin: 0;
  height: 250px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.main .section--chapter .section--chapter__frame .figure--square .figure__text {
  margin: 0;
  padding-top: 8px;
  font-family: var(--text);
  font-size: var(--text-small-mb);
  line-height: var(--text-line-height);
  font-weight: var(--regular-weight);
  font-style: italic;
}
.main .section--chapter .figure--card {
  padding-left: 20px;
  padding-bottom: 40px;
  width: calc(100% - 20px);
  height: auto;
  margin: 0;
}
.main .section--chapter .figure--card .figure__image {
  margin: 0;
  height: 300px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.main .section--chapter .figure--card .figure__text {
  margin: 0;
  padding-top: 8px;
  font-family: var(--text);
  font-size: var(--text-small-mb);
  line-height: var(--text-line-height);
  font-weight: var(--regular-weight);
  font-style: italic;
}
.main .section--chapter .section--chapter__content {
  padding-left: 20px;
  margin-bottom: 40px;
  border-left: 1px solid var(--secondary-color);
}
.main .section--chapter .section--chapter__content .title--section {
  max-width: 350px;
  margin: 0;
  margin-bottom: 32px;
  font-size: var(--h2-size-mb);
  line-height: var(--title--line-height);
  font-family: var(--title-section);
  font-weight: var(--bold-weight);
}
.main .section--chapter .section--chapter__content .text {
  margin: 0;
  max-width: 350px;
  padding-bottom: 24px;
  font-size: var(--text-mb);
  line-height: var(--text-line-height);
  font-family: var(--text);
  font-weight: var(--regular-weight);
}
.main .section--chapter .section--chapter__content .text:last-child {
  padding-bottom: 0;
}
.main .section--chapter .btn--next {
  display: none;
}
.main .section--chapter .btn--tech {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-left: 20px;
  padding: 16px 20px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  line-height: var(--text-line-height);
  font-size: var(--text-mb);
  font-family: var(--text);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
.main .section--chapter .btn--tech .arrow--next {
  width: 30px;
  height: auto;
  margin-left: 10px;
  transition: all 0.3s ease;
  color: var(--background-color);
}
.main .section--chapter .btn--tech:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
}
.main .section--chapter .btn--tech:hover .arrow--next {
  color: var(--secondary-color);
}
.main .restart--btn {
  display: flex;
  justify-content: center;
}
.main .restart--btn .btn--start {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 16px 20px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  line-height: var(--text-line-height);
  font-size: var(--text-mb);
  font-family: var(--text);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
.main .restart--btn .btn--start .compass--btn {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: all 0.3s ease;
  transform: rotate(0deg);
  fill: var(--secondary-color);
}
.main .restart--btn .btn--start:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
}
.main .restart--btn .btn--start:hover .compass--btn {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--primary-color);
  margin-top: 120px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .text--small {
  margin: 0;
  font-size: var(--text-small-mb);
  line-height: var(--text-line-height);
  font-family: var(--text);
  font-weight: var(--regular-weight);
}

/* ------- TECH PAGE ------- */
.main__tech .section--choices {
  scroll-margin-top: 100px;
  padding: 0 20px;
  margin: 320px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main__tech .section--choices .section--choices__intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.main__tech .section--choices .section--choices__intro .title--big {
  margin: 0;
  padding-bottom: 32px;
  font-size: var(--h2-size-mb);
  line-height: var(--title--line-height);
  font-family: var(--title-section);
}
.main__tech .section--choices .section--choices__intro .text--big {
  margin: 0;
  font-size: var(--text-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  font-family: var(--text);
  max-width: 400px;
}
.main__tech .section--choices .btn--start {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 16px 20px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  line-height: var(--text-line-height);
  font-size: var(--text-mb);
  font-family: var(--text);
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
.main__tech .section--choices .btn--start .compass--btn {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  fill: var(--secondary-color);
}
.main__tech .section--choices .btn--start:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
}
.main__tech .section--choices .btn--start:hover .compass--btn {
  transform: rotate(180deg);
  color: var(--secondary-color);
}
.main__tech .section--choices .section--choices__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
  gap: 40px;
}
.main__tech .section--choices .section--choices__content .card--tech {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 225px;
  height: 225px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.main__tech .section--choices .section--choices__content .card--tech .card--tech__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  text-align: center;
}
.main__tech .section--choices .section--choices__content .card--tech .card--tech__link .cardImg {
  width: 225px;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
  filter: brightness(0.4);
  cursor: pointer;
}
.main__tech .section--choices .section--choices__content .card--tech .card--tech__link .text--big {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--title-section);
  font-size: var(--text-number-mb);
  font-weight: var(--bold-weight);
  color: var(--background-color);
  pointer-events: none;
}
.main__tech .section--tech {
  height: 100vh;
  padding: 0 20px;
  margin: 160px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main__tech .section--tech .tech--return {
  display: none;
}
.main__tech .section--tech .section--tech__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.main__tech .section--tech .section--tech__content .figure--square {
  padding: 0;
  max-width: 400px;
  height: auto;
  margin: 0;
}
.main__tech .section--tech .section--tech__content .figure--square .figure__image {
  margin: 0;
  height: 300px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}
.main__tech .section--tech .section--tech__content .figure--square .figure__text {
  margin: 0;
  padding-top: 8px;
  font-family: var(--text);
  font-size: var(--text-small-mb);
  line-height: var(--text-line-height);
  font-weight: var(--regular-weight);
  font-style: italic;
}
.main__tech .section--tech .section--tech__content .tech__text {
  border-left: 1px solid var(--secondary-color);
  padding-left: 20px;
}
.main__tech .section--tech .section--tech__content .tech__text .title--big {
  max-width: 400px;
  margin: 0;
  margin-bottom: 32px;
  font-size: var(--h2-size-mb);
  line-height: var(--title--line-height);
  font-family: var(--title-section);
  font-weight: var(--bold-weight);
}
.main__tech .section--tech .section--tech__content .tech__text .text {
  margin: 0;
  max-width: 400px;
  padding-bottom: 24px;
  font-size: var(--text-mb);
  line-height: var(--text-line-height);
  font-family: var(--text);
  font-weight: var(--regular-weight);
}
.main__tech .section--tech .section--tech__content .tech__text .text:last-child {
  padding-bottom: 0;
}

/* MEDIA QUERIES */
@media (min-width: 450px) {
  .menu--btn {
    right: 35px;
  }

  .musicBtn {
    left: 30px;
  }

  .header .japanese--content {
    left: 30px;
  }
  .header .text--chapter {
    right: 30px;
  }

  .main {
    padding: 0 30px;
  }
  .main .section--chapter .section--chapter__frame {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main .section--chapter .section--chapter__frame .figure--large {
    padding: 0 0 60px 0;
    width: calc(100% - 30px);
  }
  .main .section--chapter .section--chapter__frame .figure--square {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 500px) {
  .grid {
    display: grid;
    grid-template-columns: 100px 1fr;
  }

  .gridMb-start1 {
    grid-column: 1/3;
  }

  .gridMb-start2 {
    grid-column: 2/3;
  }
}
@media (min-width: 620px) {
  .menu--btn {
    right: 45px;
  }

  .header .japanese--content {
    left: 40px;
  }
  .header .text--chapter {
    right: 40px;
  }

  .main {
    padding: 0 40px;
  }

  .grid {
    display: grid;
    grid-template-columns: 60px 150px 1fr;
  }

  .gridMb-start1 {
    grid-column: 2/4;
  }

  .gridMb-start2 {
    grid-column: 3/4;
  }
}
@media (min-width: 768px) {
  .loading--page .loading--page__content {
    max-width: 500px;
  }
  .loading--page .loading--page__content .loading--icon {
    width: 60px;
  }
  .loading--page .loading--page__content .headphones--icon {
    width: 60px;
  }
  .loading--page .loading--page__content .spoiler--title {
    font-size: var(--h2-size-dt);
    margin: 0 0 40px 0;
  }
  .loading--page .loading--page__content .spoiler {
    font-size: var(--text-big-dt);
    margin: 0 0 120px 0;
  }

  .nav {
    border-bottom: none;
    background-color: transparent;
  }
  .nav .nav__mb .nav__list .nav__item .nav__link {
    font-size: var(--text-big-dt);
  }
  .nav .nav__mb .nav__list .nav__item .nav__link .text--number {
    font-size: var(--h3-size-dt);
  }

  .japanese--content.fixed {
    display: block;
    position: fixed;
    top: auto;
    bottom: 40px;
    left: 40px;
    z-index: 99;
    background: var(--background-color);
    border: 1px solid var(--primary-color);
    padding: 10px 5px 2px 5px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
  .japanese--content.fixed .text {
    margin: 0;
    letter-spacing: 10px;
    font-size: var(--text-mb);
    font-family: var(--title-section);
  }

  .text--chapter.fixed {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    font-family: var(--title-section);
    font-size: var(--text-big-mb);
  }
  .text--chapter.fixed .text--number {
    padding-left: 5px;
    color: var(--secondary-color);
    font-weight: var(--bold-weight);
    font-size: var(--text-number-mb);
  }

  .header .japanese--content,
.header .text--chapter,
.main .japanese--content,
.main .text--chapter {
    opacity: 0;
    pointer-events: none;
    position: absolute !important;
  }

  .header {
    padding: 0 20px;
  }
  .header .section--header__content .title--big {
    font-size: var(--h1-tech-size-dt);
  }
  .header .section--header__content .title--big .compass--h1 {
    width: 50px;
    height: 50px;
  }

  .main .section--chapter .section--chapter__frame {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .main .section--chapter .section--chapter__frame .section--chapter__content {
    margin-bottom: 40px;
  }
  .main .section--chapter .section--chapter__content {
    margin-bottom: 80px;
  }
  .main .section--chapter .figure--card {
    margin-bottom: 80px;
  }
  .main .section--chapter .btn--next {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-left: 20px;
    padding: 16px 20px;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: var(--text-line-height);
    font-size: var(--text-mb);
    font-family: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  }
  .main .section--chapter .btn--next .arrow--next {
    width: 30px;
    height: auto;
    margin-left: 10px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
  }
  .main .section--chapter .btn--next:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
  }
  .main .section--chapter .btn--next:hover .arrow--next {
    color: var(--background-color);
  }

  .grid {
    grid-template-columns: 100px 1fr 1fr 150px;
    gap: 20px;
  }

  .gridTb-start2 {
    grid-column: 2/5;
  }

  .gridTb-start3 {
    grid-column: 3/4;
  }

  .main__tech .section--choices {
    scroll-margin-top: 0;
    margin: 0;
    height: 100vh;
    padding: 0 40px;
  }
  .main__tech .section--choices .section--choices__content {
    margin-top: 80px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  body {
    cursor: none;
  }

  .musicBtn {
    cursor: none;
  }

  .custom--cursor {
    display: block;
    width: 15px;
    height: 15px;
    position: fixed;
    pointer-events: none;
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
  }

  .cursor--outline {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
  }

  .menu--btn {
    cursor: none;
  }

  .nav .nav__mb .nav__list .nav__item .nav__link {
    cursor: none;
  }

  .japanese--content.fixed {
    padding: 10px 5px 2px 5px;
  }
  .japanese--content.fixed .text {
    font-size: var(--text-dt);
  }

  .text--chapter.fixed {
    font-size: var(--text-big-dt);
  }
  .text--chapter.fixed .text--number {
    font-size: var(--chapter-size-dt);
  }

  .header .section--header__content .title--big {
    font-size: var(--h1-size-dt);
  }
  .header .section--header__content .title--big .compass--h1 {
    width: 60px;
    height: 60px;
  }
  .header .section--header__content .text--big {
    font-size: var(--text-big-dt);
  }
  .header .section--header__content .btn--start {
    font-size: var(--text-dt);
    padding: 16px 25px;
    margin-top: 80px;
    cursor: none;
  }
  .header .section--header__content .btn--start .compass--btn {
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }

  .main .section--chapter .section--chapter__frame .section--chapter__content {
    margin-bottom: 40px;
  }
  .main .section--chapter .section--chapter__frame .section--chapter__content .title--section {
    max-width: 400px;
  }
  .main .section--chapter .section--chapter__frame .section--chapter__content .text {
    max-width: 400px;
  }
  .main .section--chapter .section--chapter__frame .btn--next {
    cursor: none;
  }
  .main .section--chapter .section--chapter__frame .btn--start {
    margin-top: 0;
    cursor: none;
  }
  .main .section--chapter .section--chapter__frame .figure--large {
    max-width: 400px;
  }
  .main .section--chapter .section--chapter__frame .figure--large .figure__image {
    height: 250px;
    width: 400px;
  }
  .main .section--chapter .section--chapter__frame .figure--large .figure__text {
    font-size: var(--text-small-dt);
  }
  .main .section--chapter .section--chapter__frame .figure--square .figure__image {
    height: 250px;
    width: 250px;
  }
  .main .section--chapter .section--chapter__frame .figure--square .figure__text {
    font-size: var(--text-small-dt);
  }
  .main .section--chapter .btn--tech {
    cursor: none;
  }
  .main .section--chapter .section--chapter__content .title--section {
    font-size: var(--h2-size-dt);
  }
  .main .section--chapter .section--chapter__content .text {
    font-size: var(--text-dt);
  }
  .main .section--chapter .figure--card .figure__image {
    height: 300px;
    width: 250px;
  }
  .main .section--chapter .figure--card .figure__text {
    font-size: var(--text-small-dt);
  }

  .main__tech .section--choices {
    scroll-margin-top: 0;
    margin: 0;
    height: 100vh;
    padding: 0 40px;
  }
  .main__tech .section--choices .section--choices__intro .title--big {
    font-size: var(--h2-size-dt);
  }
  .main__tech .section--choices .section--choices__intro .text--big {
    font-size: var(--text-big-dt);
  }
  .main__tech .section--choices .btn--start {
    font-size: var(--text-dt);
    margin-top: 80px;
    padding: 16px 25px;
    cursor: none;
  }
  .main__tech .section--choices .btn--start .compass--btn {
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }
  .main__tech .section--choices .section--choices__content {
    margin-top: 80px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main__tech .section--choices .section--choices__content .card--tech {
    cursor: none;
  }
  .main__tech .section--choices .section--choices__content .card--tech .card--tech__link {
    cursor: none;
  }
  .main__tech .section--choices .section--choices__content .card--tech .card--tech__link .cardImg {
    cursor: none;
    filter: brightness(0.8);
  }
  .main__tech .section--choices .section--choices__content .card--tech .card--tech__link .text--big {
    display: none;
  }
  .main__tech .section--choices .section--choices__content .card--tech:hover .cardImg {
    filter: brightness(0.4);
  }
  .main__tech .section--choices .section--choices__content .card--tech:hover .text--big {
    display: flex;
  }
  .main__tech .section--tech {
    height: 100%;
    padding: 0 40px;
    margin-top: 320px;
  }
  .main__tech .section--tech .tech--return {
    margin-bottom: 80px;
    gap: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .main__tech .section--tech .tech--return .card--tech {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
  }
  .main__tech .section--tech .tech--return .card--tech .card--tech__link {
    cursor: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .main__tech .section--tech .tech--return .card--tech .card--tech__link .cardImg {
    width: 200px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
    filter: brightness(0.8);
    transition: filter 0.3s;
  }
  .main__tech .section--tech .tech--return .card--tech .card--tech__link .text--big {
    display: none;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--title-section);
    font-size: var(--text-big-dt);
    font-weight: var(--bold-weight);
    color: var(--background-color);
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    pointer-events: none;
  }
  .main__tech .section--tech .tech--return .card--tech:hover .cardImg {
    filter: brightness(0.4);
  }
  .main__tech .section--tech .tech--return .card--tech:hover .text--big {
    display: flex;
  }
  .main__tech .section--tech .section--tech__content .figure--square {
    max-width: 400px;
  }
  .main__tech .section--tech .section--tech__content .figure--square .figure__image {
    height: 400px;
    width: auto;
  }
  .main__tech .section--tech .section--tech__content .figure--square .figure__text {
    font-size: var(--text-small-dt);
  }
  .main__tech .section--tech .section--tech__content .tech__text .title--big {
    max-width: 400px;
    font-size: var(--h2-size-dt);
  }
  .main__tech .section--tech .section--tech__content .tech__text .text {
    max-width: 400px;
    font-size: var(--text-dt);
  }
}
@media (min-width: 1250px) {
  .grid {
    grid-template-columns: 150px 1fr 1fr 1fr 1fr 150px;
    gap: 30px;
  }

  .gridDt-start2 {
    grid-column: 2/7;
  }

  .gridDt-start3 {
    grid-column: 3/7;
  }

  .gridDt-start4 {
    grid-column: 4/7;
  }

  .main__tech .section--tech .section--tech__content {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  .main__tech .section--tech {
    height: 100vh;
  }
  .main__tech .section--tech .tech--return {
    margin-bottom: 80px;
  }
  .main__tech .section--tech .section--tech__content {
    gap: 80px;
  }
}
@media (min-width: 1450px) {
  .grid {
    grid-template-columns: 350px 1fr 1fr 1fr 1fr 1fr 200px;
  }

  .gridDt-start2 {
    grid-column: 2/7;
  }

  .gridDt-start4 {
    grid-column: 5/7;
  }
}
@media (min-width: 1600px) {
  .main .section--chapter .section--chapter__frame .figure--large {
    max-width: 500px;
  }
  .main .section--chapter .section--chapter__frame .figure--large .figure__image {
    height: 300px;
    width: 500px;
  }
  .main .section--chapter .section--chapter__frame .figure--square .figure__image {
    height: 300px;
    width: 300px;
  }
  .main .section--chapter .figure--card .figure__image {
    height: 400px;
    width: 300px;
  }
}

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