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

body {
  font-family: "Noto Serif JP", serif;
  background: #000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

rt {
  letter-spacing: 0;
}

.page-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg-pattern.png"), url("../images/bg-main.jpg");
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: fixed;
  background-position: top left, top center;
  background-blend-mode: color-burn;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 220px;
}

.cloud-bg {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-54%);
  width: 100%;
  min-width: 1609px;
  max-width: 1609px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.contents {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 100px;
  gap: 100px;
}
.contents::after {
  content: "";
  display: block;
  width: 558px;
  height: 102px;
  position: absolute;
  bottom: -260px;
  left: 0;
  background: url(../images/bg_footer_cloud.svg) no-repeat;
  background-size: contain;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: 1400px;
  margin-top: 250px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  width: 816px;
  aspect-ratio: 816/215;
  background: url(../images/bg_footer_pc3.png) no-repeat right bottom;
  background-size: contain;
  z-index: 1;
  position: absolute;
  right: -156px;
  bottom: 0;
}
.footer::after {
  content: "";
  width: 100vw;
  height: 72px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.footer .copy {
  margin: 0 0 97px 0;
  font-weight: 700;
  text-align: right;
  position: relative;
  z-index: 2;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1728px;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 100px;
  transition: color 0.3s;
  pointer-events: none;
}
.header.is-inverted .language-btn .material-symbols-outlined img {
  filter: invert(1);
}
.header.is-inverted .language-btn span.label,
.header.is-inverted .language-btn span.label-short {
  color: #fff;
}
.header.is-inverted .hamburger span {
  background: #fff;
}

.language-selector {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.language-btn .material-symbols-outlined {
  display: flex;
  align-items: center;
}
.language-btn .material-symbols-outlined img {
  width: 21px;
  height: 21px;
  transition: filter 0.3s;
}
.language-btn span.label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
  line-height: 32px;
  transition: color 0.3s;
}
.language-btn span.label-short {
  display: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 11px;
  color: #000;
  line-height: 32px;
  transition: color 0.3s;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 8px;
  background: #000;
  list-style: none;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  transform: translateX(-50%);
  transition: max-height 0.3s ease;
}
.language-selector.is-open .language-dropdown {
  max-height: 300px;
}
.language-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.language-dropdown li a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 4px 0;
  position: relative;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 40px;
  height: 2px;
  background: #000;
  transition: background 0.3s;
}

.logo-bg {
  position: absolute;
  top: 81px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 272px;
  height: 272px;
  pointer-events: none;
}
.logo-bg img {
  width: 100%;
  height: 100%;
}

.logo-text {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 397px;
}
.logo-text img {
  width: 100%;
  height: auto;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-inner {
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  scrollbar-width: thin;
  scrollbar-color: #e7c72a rgba(255, 255, 255, 0.08);
}

.nav-section {
  margin-bottom: 40px;
}
.nav-section:last-child {
  margin-bottom: 0;
}

.nav-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #e7c72a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(231, 199, 42, 0.3);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #fff;
}

.nav-link-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
}

.nav-external {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.nav-external-link:hover {
  border-color: #e7c72a;
  background: rgba(255, 255, 255, 0.05);
}

.nav-social {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-social-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: fill 0.2s;
}
.nav-social-icon:hover svg {
  fill: #e7c72a;
}

.nav-overlay .ext-link {
  width: 280px;
  height: 72px;
}
.nav-overlay .ext-link--white img {
  max-width: 220px;
}
.nav-overlay .ext-link--town .town-name {
  font-size: 26px;
}
.nav-overlay .ext-link--town .town-name-en {
  font-size: 12px;
}

.hamburger.is-active {
  z-index: 101;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
  background: #fff;
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
  background: #fff;
}
.hamburger.is-active span {
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.section {
  width: 100%;
  background: #000;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.section-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 8px;
  color: #e7c72a;
  text-align: center;
}

.section-paragraph {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}

.section-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 4px;
  color: #e7c72a;
  text-align: center;
}

.sub-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 3.2px;
  color: #fff;
  text-align: center;
}

.page-title {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 9.6px;
  line-height: 68.98px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #a77d1a;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
}

.card-row {
  display: flex;
  gap: 80px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.card:not(.not-link):hover .card-image img:not(.ico-4k) {
  transform: scale(1.1);
}
.card .cta-btn {
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .card.type-single {
    width: calc(50% - 40px);
  }
}

.card-image {
  overflow: hidden;
  background: #d9d9d9;
  aspect-ratio: 16/9;
  max-width: 1100px;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card-image .ico-4k {
  width: auto;
  height: auto;
  object-fit: unset;
  position: absolute;
  transition: unset;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: -1px 1px 4px #333;
}

.card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 6.4px;
  color: #fff;
  text-align: center;
}

.card-link {
  color: #fff;
  text-decoration: none;
}
.card-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card-desc {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 3.2px;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e7c72a;
  background: none;
  padding: 10px 80px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}
.cta-btn:hover {
  opacity: 0.8;
}

.cta-btn-text {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2.4px;
  color: #e7c72a;
}

.cta-btn-arrow {
  width: 24px;
  height: 24px;
  position: relative;
}
.cta-btn-arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e7c72a;
  border-right: 2px solid #e7c72a;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 30%;
  margin-top: -6px;
}

.cta-btn--back {
  padding: 8px 40px;
  border-color: rgba(231, 199, 42, 0.4);
  flex-direction: row-reverse;
}
.cta-btn--back .cta-btn-text {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: rgba(231, 199, 42, 0.6);
}
.cta-btn--back .cta-btn-arrow {
  width: 18px;
  height: 18px;
}
.cta-btn--back .cta-btn-arrow::after {
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(231, 199, 42, 0.6);
  border-right: 1.5px solid rgba(231, 199, 42, 0.6);
  transform: rotate(-135deg);
  left: 40%;
  margin-top: -5px;
}

.linknav {
  width: 100%;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.external-links {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 40px;
}

.ext-link {
  width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}
.ext-link--white {
  background: #fff;
  padding: 10px 20px;
}
.ext-link--white img {
  max-width: 332px;
  max-height: 71px;
  object-fit: contain;
}
.ext-link--town {
  background-image: url("../images/link-kotohira-town.png");
  background-size: cover;
  background-position: center;
  flex-direction: column;
  gap: 2px;
}
.ext-link--town .town-name {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  color: #604725;
}
.ext-link--town .town-name-en {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  color: #604725;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-social-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 80px;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.footer-credit {
  display: block;
  width: 100%;
  padding-block: 20px;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer-credit img {
  max-width: 250px;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding-top: 0;
  }
  .cloud-bg {
    display: none;
  }
  .contents {
    padding: 0 16px 60px;
    gap: 48px;
  }
  .contents::after {
    content: unset;
    display: none;
  }
  .footer {
    width: 100%;
    margin-top: 47vw;
  }
  .footer .copy {
    margin: 0 16px 7px 0;
    font-size: 16px;
  }
  .footer::after {
    content: unset;
    display: none;
  }
  .footer::before {
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    aspect-ratio: 750/401;
    background: url(../images/bg_footer_sp.png);
    background-size: contain;
  }
  .header {
    padding: 12px 16px;
    gap: 30px;
  }
  .hamburger {
    gap: 10px;
  }
  .hamburger span {
    width: 11.2vw;
    height: 2px;
  }
  .logo-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 375/194;
    position: unset;
    transform: unset;
  }
  .logo-text {
    top: 80px;
    width: 88.266%;
  }
  .nav-inner {
    padding: 24px 20px;
  }
  .nav-section {
    margin-bottom: 28px;
  }
  .nav-section-title {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .nav-link {
    padding: 10px 12px;
  }
  .nav-link-title {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .nav-link-desc {
    font-size: 11px;
  }
  .nav-external {
    gap: 12px;
  }
  .nav-external-link {
    font-size: 13px;
    padding: 8px 16px;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(14px) translateX(1px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .nav-overlay .ext-link {
    width: 100%;
    max-width: 280px;
    height: 60px;
  }
  .section {
    padding: 40px 20px;
    gap: 32px;
  }
  .section-heading {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .section-paragraph {
    font-size: 14px;
  }
  .section-desc {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 2px;
  }
  .sub-desc {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.5px;
  }
  .page-title {
    font-size: 26px;
    letter-spacing: 4px;
    line-height: 1.4;
  }
  .card-grid {
    gap: 32px;
  }
  .card-row {
    flex-direction: column;
    gap: 32px;
  }
  .card {
    gap: 14px;
  }
  .card-title {
    font-size: 20px;
    letter-spacing: 3px;
  }
  .card-desc {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.5px;
  }
  .cta-btn {
    padding: 8px 36px;
    gap: 8px;
  }
  .cta-btn-text {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .cta-btn-arrow {
    width: 18px;
    height: 18px;
  }
  .cta-btn-arrow::after {
    width: 9px;
    height: 9px;
  }
  .external-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }
  .ext-link {
    width: 100%;
    max-width: 320px;
    height: 72px;
  }
  .ext-link--town .town-name {
    font-size: 24px;
  }
  .ext-link--town .town-name-en {
    font-size: 12px;
  }
  .ext-link--white img {
    max-width: 240px;
  }
  .footer-social-title {
    font-size: 18px;
  }
  .social-icons {
    gap: 40px;
  }
  .footer-credit img {
    max-width: 180px;
  }
  .mv-section {
    flex-direction: column-reverse;
    aspect-ratio: auto;
    height: auto;
    margin-top: 0;
  }
  .mv-section.scroll-reveal {
    opacity: 1;
    transform: unset;
    transition: unset;
  }
  .mv-panel {
    width: 100%;
    flex: 1;
    aspect-ratio: 375/460;
  }
  .mv-title {
    width: 100%;
  }
  .mv-title img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .opening-logo {
    width: 200px;
  }
}
body.is-opening {
  overflow: hidden;
}

.opening-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  pointer-events: none;
}
.opening-overlay.is-hidden {
  display: none;
}

.opening-circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #f5231f;
  z-index: 1;
}

.opening-bg-red {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5231f;
  opacity: 0;
  z-index: 2;
}

.opening-logo {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 397px;
}
.opening-logo img {
  width: 100%;
  height: auto;
  transition: filter 0.3s;
}
@media (max-width: 768px) {
  .opening-logo img {
    width: 90%;
    text-align: center;
    margin-inline: auto;
  }
}
.opening-logo.is-white img {
  filter: brightness(0) invert(1);
}

.mv-section {
  display: flex;
  gap: 0;
  max-width: 1500px;
  width: 100%;
  aspect-ratio: 130/69;
}
@media (max-width: 768px) {
  .mv-section {
    width: calc(100% + 32px);
    aspect-ratio: unset;
  }
}

.mv-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.mv-panel--left {
  background: #d9d9d9;
}
.mv-panel--right {
  background: #c5c5c5;
}

.mv-slider {
  display: flex;
  width: 100%;
  height: 100%;
}

.mv-wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transform: translateX(101%);
  pointer-events: none;
}
.mv-panel--left .mv-wipe {
  background: #fff;
}
.mv-panel--right .mv-wipe {
  background: #000;
}
.mv-wipe.is-wiping {
  animation: mv-wipe 1.2s linear forwards;
}

@keyframes mv-wipe {
  0% {
    transform: translateX(101%);
  }
  45% {
    transform: translateX(0);
  }
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-101%);
  }
}
.mv-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
}
.mv-panel--right .mv-slide {
  background-color: #c5c5c5;
}

.mv-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.mv-title img {
  width: 100%;
  height: auto;
}
.mv-panel--left .mv-title img {
  max-width: 121px;
  aspect-ratio: 31/150;
}
@media (max-width: 768px) {
  .mv-panel--left .mv-title img {
    max-width: 20.533%;
  }
}
.mv-panel--right .mv-title img {
  max-width: 77px;
  aspect-ratio: 28/150;
}
@media (max-width: 768px) {
  .mv-panel--right .mv-title img {
    max-width: 13.066%;
  }
}

.mv-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
@media (max-width: 768px) {
  .mv-label {
    text-align: right;
  }
}
.mv-label img {
  vertical-align: bottom;
  width: auto;
  height: 34px;
}
@media (max-width: 768px) {
  .mv-label img {
    height: 22px;
  }
}

.page-title-sub {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 0 #a77d1a;
}
@media (max-width: 768px) {
  .page-title-sub {
    font-size: 15px;
    line-height: 1.5;
  }
}/*# sourceMappingURL=index.css.map */