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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

.wrap {
  position: relative;
  overflow: hidden;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  /* ***********
  *** header ***
  *********** */
  /* *********
  *** main ***
  ********* */
}
.wrap .header .topBar {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  height: 88px;
  position: fixed;
  padding: 0 20px;
  width: 100%;
  z-index: 9999;
  transition: box-shadow 0.3s ease-in-out;
}
.wrap .header .topBar.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.wrap .main .section {
  min-height: 100dvh;
  padding-top: 88px;
}
@media screen and (min-width: 768px) {
  .wrap .main .section {
    min-height: 50dvh;
  }
}
.wrap .main .section .inner {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .wrap .main .section .inner {
    min-height: 50dvh;
  }
}
.wrap .main .section .inner h2 {
  font-size: 1.25rem;
  color: #C6A433;
  margin-bottom: 1.5rem;
}
.wrap .main .section .inner .text {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 1.75rem;
}
.wrap .main .section .rotate,
.wrap .main .section .rotate-two,
.wrap .main .section .rotate-three {
  opacity: 0.1;
  border-radius: 64px;
  width: 280px;
  height: 300px;
  position: absolute;
  top: -100px;
  left: -100px;
  transform: translateZ(-1px) scale(2);
}
.wrap .main .section .rotate {
  background-color: #00d084;
  animation: rotation 5000ms linear infinite;
}
.wrap .main .section .rotate-two {
  background-color: #43d0cb;
  transform: rotate(15deg);
  animation: rotation 4000ms linear infinite;
}
.wrap .main .section .rotate-three {
  background-color: #fae35f;
  transform: rotate(35deg);
  animation: rotation 6000ms linear infinite;
}
.wrap .main .section .lists ul {
  margin: 0;
}
.wrap .main .section .table table {
  border-spacing: 0;
  font-size: 0.8rem;
}
.wrap .main .section .table table tbody tr th, .wrap .main .section .table table tbody tr td {
  border: solid 1px #DDD;
  padding: 0.5rem 0.25rem;
}
.wrap .main .section .table table tbody tr th {
  background-color: #ffec6f;
  word-break: keep-all;
}
.wrap .main .section .table table tbody tr td {
  white-space: pre-wrap;
  word-break: keep-all;
}
.wrap .main .fv {
  display: grid;
  place-items: center;
}
.wrap .main .fv .inner {
  min-height: 100dvh !important;
}
.wrap .main .fv .inner .fv-image {
  position: absolute;
  padding: 0 25px;
  top: 25%;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wrap .main .fv .inner .fv-image {
    top: 50%;
    max-width: 650px;
  }
}

.footer {
  padding: 1rem;
}
.footer .copyright {
  text-align: center;
}

.parallax {
  position: absolute;
  width: 100px;
  height: 100px;
}

.parallax1 {
  top: 200px;
  left: 50%;
}

.parallax2 {
  top: 300px;
  left: 50%;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  display: inline;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  transition: background-color 0.3s;
}

.main-nav a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  /* Use absolute positioning to place it within the topBar */
  right: 20px;
  /* Right align the icon */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Adjust to center properly */
  z-index: 1002;
  /* Ensure it's above other elements */
}

.mobile-nav {
  display: flex;
  position: fixed;
  left: -250px;
  /* Initially hidden off-screen */
  top: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  color: #444;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
  z-index: 1001;
  /* Ensure it's above the overlay */
}
.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav ul li {
  padding: 1rem;
}
.mobile-nav ul li a {
  color: #444;
  text-decoration: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  /* Ensure it's below the menu */
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}
.mobile-nav.active {
  left: 0;
  /* Slide in from the left */
}

.mobile-nav-overlay.active {
  display: block;
  /* Show overlay */
}

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