:root {
  --primary-color: #2f2826;
  --bg-color: #2f2826;
  --line-color: #ffffff;
  --title-font: "Noto Serif JP", serif;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 4rem;
  --font-size-4xl: 4.5rem;
}

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

html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 1.5vw;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 3.6vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--bg-color);
  color: white;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}
body.fade-in {
  opacity: 1;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
}

.pc {
  width: 100%;
}

@media (max-width: 540px) {
  .pc {
    display: none;
  }
}
.sp {
  width: 100%;
  display: none;
}

@media (max-width: 540px) {
  .sp {
    display: block;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.nav-logo {
  width: 16rem;
  margin: 0 auto 2rem;
}
.nav-logo img {
  width: 100%;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40%;
  max-width: 100%;
  height: 100vh;
  background: rgba(38, 32, 30, 0.9);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 540px) {
  .nav-menu {
    max-width: 100%;
    width: 100%;
    background-color: #2f2826;
  }
}

.nav-menu.active {
  right: 0;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}
@media (max-width: 540px) {
  .nav-menu-inner {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 7rem;
  }
}

.nav-list {
  list-style: none;
  flex-direction: column;
  gap: 0.2rem;
  width: 50%;
}
@media (max-width: 540px) {
  .nav-list {
    width: 100%;
  }
}

.nav-item {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.nav-menu.active .nav-item {
  opacity: 1;
  transform: translateX(0);
}
.nav-menu.active .nav-item a {
  padding: 0.5rem 0;
}

.nav-menu.active .nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-menu.active .nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-menu.active .nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-menu.active .nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-menu.active .nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-menu.active .nav-item:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-link {
  display: block;
  font-size: 1.5rem;
  width: 15rem;
  margin: 0 auto;
  font-weight: 600;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .nav-link {
    font-size: 1.5rem;
    width: 18rem;
  }
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger */
.hamburger {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  margin-right: 2rem;
  margin-top: 5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (max-width: 540px) {
  .hamburger {
    right: 0;
    margin-right: 1rem;
    background: #2f2826;
    border-radius: 0.25rem;
    width: 44px;
    height: 36px;
  }
}

.hamburger-line {
  width: 50px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  border-radius: 1px;
  display: block;
  transform: translateZ(0);
  will-change: transform, opacity;
}
@media (max-width: 540px) {
  .hamburger-line {
    width: 32px;
    margin: 4.5px 0;
    height: 1px;
  }
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
@media (max-width: 540px) {
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
  }
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -9px);
}
.footer {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}
@media (max-width: 540px) {
  .footer {
    gap: 2rem;
  }
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%; /* 1.21875rem */
  letter-spacing: 0.01625rem;
  color: white;
  text-align: center;
}

.social-icons {
  height: auto;
}

.share-title {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}
@media (max-width: 540px) {
  .share-title {
    margin-top: 2rem;
  }
}

.share-buttons {
  display: flex;
  gap: 2rem;
  margin-top: -1.5rem;
}
@media (max-width: 540px) {
  .share-buttons {
    margin-top: -0.6rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.share-button {
  width: 11.25rem;
  background: var(--primary-color);
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  transition: 0.3s;
}

.share-button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.share-button img {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button span {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.025rem;
  line-height: 1.5;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 540px) {
  .footer-links {
    margin-top: 2rem;
  }
}

.footer-links a {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.0175rem;
  line-height: 1.5;
  color: white;
  text-decoration: underline;
  text-align: center;
}

.copyright {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.015rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: -1.5rem;
}
@media (max-width: 540px) {
  .footer-sns {
    margin-top: -0.6rem;
  }
}
.footer-sns .footer-sns-item {
  cursor: pointer;
  width: auto;
  height: 2rem;
  transition: 0.3s;
}
.footer-sns .footer-sns-item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.footer-sns .footer-sns-item img {
  height: 100%;
  width: auto;
}

/* Bottom Images */
.bottom-image {
  padding-top: 3rem;
  width: 70vw;
  max-width: 58vw;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.bottom-image:last-child {
  max-width: 90.6875vw;
  margin: 0 auto;
}

.tac {
  text-align: center !important;
}

.mtm {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}
.txtl {
  font-size: var(--font-size-lg);
}

.txtm {
  font-size: var(--font-size-md);
}

.txts {
  font-size: var(--font-size-s);
}

.separator {
  margin-left: auto;
  margin-right: auto;
  width: 20.875rem;
  height: 1px;
  background-color: white;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--position-top,
#wovn-translate-widget[wovn].type-default.wovn--position-top {
  top: 1rem !important;
  right: 9rem !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector .wovn-lang-selector-links .wovn-current-lang,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector .wovn-lang-selector-links .wovn-current-lang {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  color: #006896 !important;
  border-radius: 999px;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector {
  background-color: transparent !important;
  box-shadow: none !important;
}

#preview-wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet,
#wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet {
  display: none !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector {
  background-color: none !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li {
  color: #006896 !important;
}

#preview-wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet + .wovn-current-lang,
#wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet + .wovn-current-lang {
  padding: 0.5rem 1rem 0.5rem 1.5rem !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li.selected:before,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li.selected:before {
  background-color: #006896 !important;
}/*# sourceMappingURL=common.css.map */