@charset "UTF-8";
/*
Theme Name: Hiezu Seaside Park
Description: WordPress classic theme with SCSS
Version: 1.0.0
Author: Your Name
Text Domain: hiezu-seasidepark
Domain Path: /languages
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", "MS PGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

a {
  color: #287f4f;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
  z-index: 9999;
}

.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 152px;
}
@media (max-width: 768px) {
  .site-container {
    padding: 0 20px;
    padding-top: 96px;
  }
}
.site-container > section:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .site-container > section:not(:last-child) {
    margin-bottom: 80px;
  }
}

.facility-hero + .site-container,
.spot-hero + .site-container,
.card-slider + .site-container,
.site-container + .site-container {
  padding-top: 0;
}

.site-main {
  padding: 40px 0;
}

.section {
  margin-top: 40px;
}

.section__title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
}

.pagination {
  margin-top: 32px;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  height: 88px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}
@media (max-width: 768px) {
  .site-header {
    top: 8px;
    width: calc(100% - 40px);
    height: 60px;
    border-radius: 40px;
  }
}
@media (max-width: 576px) {
  .site-header {
    width: calc(100% - 20px);
  }
}

.site-header__container {
  height: 100%;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 14px 32px 14px 24px;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 10px 16px 10px 12px;
  }
}

.site-header__logo {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header__logo {
    flex: 1 1 0;
    min-width: 0;
  }
}

.site-header__logo-img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-header__logo-img {
    height: auto;
    max-width: 100%;
    max-height: 46px;
  }
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header__right {
    gap: 8px;
  }
}

.site-header__nav {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  margin: 0;
}
.site-header__menu a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}
.site-header__menu a:hover {
  color: #287f4f;
}

.site-header__menu .has-dropdown,
.site-header__menu .menu-item-has-children {
  position: relative;
}
.site-header__menu .has-dropdown > a::after,
.site-header__menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  background-image: url("assets/images/common/icons/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.site-header__menu .has-dropdown:hover > a::after,
.site-header__menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.site-header__menu .has-dropdown:hover > .dropdown-menu,
.site-header__menu .has-dropdown:hover > .sub-menu,
.site-header__menu .menu-item-has-children:hover > .dropdown-menu,
.site-header__menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__menu .has-dropdown.is-open > a::after,
.site-header__menu .menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}
.site-header__menu .has-dropdown.is-open > .dropdown-menu,
.site-header__menu .has-dropdown.is-open > .sub-menu,
.site-header__menu .menu-item-has-children.is-open > .dropdown-menu,
.site-header__menu .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu,
.sub-menu {
  position: absolute;
  top: calc(100% + 38px);
  left: 0;
  min-width: 180px;
  max-width: 240px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
}
.dropdown-menu li,
.sub-menu li {
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
}
.dropdown-menu li:last-child,
.sub-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a,
.sub-menu li a {
  display: block;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
  transition: background-color 0.2s ease;
}
.dropdown-menu li a:hover,
.sub-menu li a:hover {
  background-color: #f5f5f5;
  color: #333;
}
.dropdown-menu li:first-child a,
.sub-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}
.dropdown-menu li:last-child a,
.sub-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header__actions {
    gap: 18px;
  }
}

.reservation-dropdown {
  position: relative;
}

.site-header__reservation-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #287f4f;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  outline: none;
}
.site-header__reservation-btn:hover {
  background-color: rgb(27.7844311377, 88.2155688623, 54.874251497);
}
.site-header__reservation-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .site-header__reservation-btn {
    gap: 4px;
    padding: 10px 6px;
  }
}

.site-header__reservation-icon {
  width: 32px;
  height: 28px;
  display: block;
}
@media (max-width: 768px) {
  .site-header__reservation-icon {
    width: 18px;
    height: 16px;
  }
}

.site-header__reservation-text {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .site-header__reservation-text {
    font-size: 12px;
  }
}

.reservation-dropdown__menu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  min-width: 320px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1001;
}
@media (max-width: 768px) {
  .reservation-dropdown__menu {
    position: fixed;
    min-width: 280px;
    padding: 20px;
    top: 52px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
  }
}
@media (min-width: 769px) {
  .reservation-dropdown:hover .reservation-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.reservation-dropdown__menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .reservation-dropdown__menu.is-active {
    transform: translateX(-50%) translateY(0);
  }
}

.reservation-dropdown__section {
  text-align: center;
}
.reservation-dropdown__section:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .reservation-dropdown__section:not(:last-child) {
    margin-bottom: 20px;
  }
}

.reservation-dropdown__heading {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .reservation-dropdown__heading {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

.reservation-dropdown__phone {
  text-align: center;
  padding-top: 12px;
  margin-top: 16px;
  border-top: 1px solid #D1D4C7;
}
@media (max-width: 768px) {
  .reservation-dropdown__phone {
    padding-top: 10px;
    margin-top: 14px;
  }
}

.reservation-dropdown__phone-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #287f4f;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1;
}
.reservation-dropdown__phone-number:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 768px) {
  .reservation-dropdown__phone-number {
    font-size: 24px;
    margin-bottom: 6px;
  }
}

.reservation-dropdown__phone-note {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .reservation-dropdown__phone-note {
    font-size: 10px;
  }
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 54px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.site-header__hamburger:focus-visible {
  outline: 2px solid #287f4f;
  outline-offset: 4px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .site-header__hamburger {
    width: 28px;
    height: 24px;
  }
}

.site-header__hamburger-line {
  width: 100%;
  height: 8px;
  background-color: #287f4f;
  border-radius: 1px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .site-header__hamburger-line {
    height: 5px;
    border-radius: 1px;
  }
}

.hamburger-menu-open .site-header {
  background-color: transparent;
  box-shadow: none;
}
.hamburger-menu-open .site-header__menu,
.hamburger-menu-open .reservation-dropdown {
  display: none;
}
.hamburger-menu-open .site-header__hamburger-line:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}
@media (max-width: 768px) {
  .hamburger-menu-open .site-header__hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
}
.hamburger-menu-open .site-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu-open .site-header__hamburger-line:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}
@media (max-width: 768px) {
  .hamburger-menu-open .site-header__hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hamburger-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.hamburger-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 120px 60px 60px;
  transform: translateY(-48px);
}
@media (max-width: 768px) {
  .hamburger-menu__content {
    padding: 100px 20px 40px;
    transform: translateY(-40px);
  }
}

.hamburger-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 60px 5%;
  width: 100%;
}
@media (max-width: 768px) {
  .hamburger-menu__list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 36px 20px;
  }
}
.hamburger-menu__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.hamburger-menu__list a {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 17px;
  font-weight: 500;
  color: #287f4f;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .hamburger-menu__list a {
    font-size: 15px;
  }
}
.hamburger-menu__list a:hover {
  opacity: 0.7;
}

.hamburger-menu__sub-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid #E4E7DC;
  border-bottom: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .hamburger-menu__sub-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    margin-top: 32px;
    padding: 16px 0;
    justify-items: center;
  }
}
.hamburger-menu__sub-nav ul {
  display: contents;
}
.hamburger-menu__sub-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.hamburger-menu__sub-nav a {
  color: #287f4f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .hamburger-menu__sub-nav a {
    font-size: 0.875rem;
  }
}
.hamburger-menu__sub-nav a:hover {
  opacity: 0.7;
}

.site-footer {
  position: relative;
  background-color: #287f4f;
  color: #fff;
  margin-top: 120px;
  padding: 18px 0 0;
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 100px;
    padding-top: 13px;
  }
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background-image: url("assets/images/common/bg_footer.png");
  background-size: 40px 18px;
  background-position: center;
  background-repeat: repeat-x;
}
@media (max-width: 768px) {
  .site-footer::before {
    height: 13px;
    background-size: 30px 13px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .footer-container {
    gap: 0 40px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    padding: 48px 20px 24px;
    flex-direction: column;
    gap: 0;
  }
}

.footer-company {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-company {
    width: 100%;
    text-align: center;
    order: 2;
    margin-top: 30px;
    gap: 30px;
  }
}

.footer-logo {
  margin-bottom: 0;
}
.footer-logo__link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo__img {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .footer-logo__img {
    width: 100%;
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
  }
}

.footer-contact .footer-address,
.footer-contact .footer-tel {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact .footer-tel a {
  color: #fff;
}
.footer-contact .footer-hours,
.footer-contact .footer-closed {
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-contact .footer-hours,
  .footer-contact .footer-closed {
    font-size: 13px;
  }
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social__link:hover {
  opacity: 0.85;
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.footer-social__text {
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 768px) {
  .footer-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
    order: 0;
  }
}

.footer-main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 80px;
  max-width: 520px;
  margin-left: auto;
}
.footer-main-nav li {
  flex: 0 0 calc((100% - 80px) / 2);
  text-align: center;
}
.footer-main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.8;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer-main-nav a {
    line-height: 1.7;
  }
}
.footer-main-nav a:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .footer-main-nav {
    max-width: 100%;
    margin-left: 0;
    gap: 20px 40px;
  }
  .footer-main-nav li {
    flex: 0 0 calc((100% - 40px) / 2);
  }
}

.footer-sub-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid #6FA386;
  border-bottom: 1px solid #6FA386;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-sub-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    justify-items: center;
    order: 1;
    margin-top: 30px;
  }
}
.footer-sub-nav ul {
  display: contents;
}
.footer-sub-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-sub-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-sub-nav a:hover {
  opacity: 0.8;
}

.footer-banners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 32px 0 0;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-banners {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    justify-content: center;
    gap: 12px;
    order: 3;
    margin: 22px 0 0;
  }
}

.footer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px 16px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  width: 150px;
  height: 60px;
}
@media (max-width: 768px) {
  .footer-banner {
    width: 100%;
    height: 55px;
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .footer-banner:only-child {
    grid-column: 1/-1;
    justify-self: center;
    width: 140px;
  }
}
.footer-banner:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-copyright {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-copyright {
    order: 4;
    margin-top: 24px;
  }
}
.footer-copyright .footer-operation,
.footer-copyright .footer-copy {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
}

.gallery {
  display: grid;
  gap: 12px;
}

.error-404 {
  text-align: center;
  padding: 60px 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #287f4f;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 500;
}
.text-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.text-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.text-link::after {
  content: "";
  display: block;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./assets/images/common/icons/chevron-right.svg");
}
.text-link--external::after {
  background-image: url("./assets/images/common/icons/external_link_line.svg");
}
.text-link--medium {
  font-size: 16px;
}
.text-link--medium::after {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .text-link--medium {
    font-size: 14px;
  }
  .text-link--medium::after {
    width: 14px;
    height: 14px;
  }
}
.text-link--small {
  font-size: 14px;
}
.text-link--small::after {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .text-link--small {
    font-size: 12px;
  }
  .text-link--small::after {
    width: 12px;
    height: 12px;
  }
}

.btn-filled {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  background-color: #287f4f;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
}
.btn-filled:hover {
  opacity: 0.9;
  text-decoration: none;
}
.btn-filled:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  outline-color: #fff;
}
.btn-filled__text {
  text-align: center;
  line-height: 1.5;
  grid-column: 1/-1;
  grid-row: 1;
  justify-self: center;
}
.btn-filled::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  flex-shrink: 0;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./assets/images/common/icons/chevron-right_white.svg");
}
.btn-filled--external::after {
  background-image: url("./assets/images/common/icons/external_link_line_white.svg");
}
.btn-filled--two-line .btn-filled__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btn-filled__subtext {
  font-size: 15px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .btn-filled__subtext {
    font-size: 13px;
  }
}
.btn-filled__maintext {
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .btn-filled__maintext {
    font-size: 17px;
  }
}
.btn-filled--large {
  min-width: 320px;
  padding: 18px 20px;
  font-size: 20px;
}
.btn-filled--large::after {
  width: 20px;
  height: 20px;
}
.btn-filled--large .btn-filled__text {
  padding-left: 18px;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .btn-filled--large {
    min-width: 160px;
    padding: 14px 20px;
    font-size: 17px;
  }
  .btn-filled--large::after {
    width: 18px;
    height: 18px;
  }
  .btn-filled--large .btn-filled__text {
    padding-left: 16px;
    padding-right: 28px;
  }
}
.btn-filled--medium {
  min-width: 280px;
  padding: 14px 20px;
  font-size: 17px;
}
.btn-filled--medium::after {
  width: 20px;
  height: 20px;
}
.btn-filled--medium .btn-filled__text {
  padding-left: 18px;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .btn-filled--medium {
    padding: 12px 15px;
    font-size: 15px;
  }
  .btn-filled--medium::after {
    width: 18px;
    height: 18px;
  }
  .btn-filled--medium .btn-filled__text {
    padding-left: 14px;
    padding-right: 28px;
  }
}
.btn-filled--small {
  padding: 12px 18px;
  font-size: 15px;
}
.btn-filled--small::after {
  width: 18px;
  height: 18px;
}
.btn-filled--small .btn-filled__text {
  padding-left: 16px;
  padding-right: 28px;
}
@media (max-width: 768px) {
  .btn-filled--small {
    padding: 10px 12px;
    font-size: 14px;
  }
  .btn-filled--small::after {
    width: 16px;
    height: 16px;
  }
  .btn-filled--small .btn-filled__text {
    padding-left: 12px;
    padding-right: 24px;
  }
}

.btn-outlined {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  background-color: transparent;
  color: #287f4f;
  text-decoration: none;
  border: 2px solid #287f4f;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
}
.btn-outlined:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn-outlined:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  outline-color: #287f4f;
}
.btn-outlined__text {
  text-align: center;
  line-height: 1.5;
  grid-column: 1/-1;
  grid-row: 1;
  justify-self: center;
}
.btn-outlined::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  flex-shrink: 0;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./assets/images/common/icons/chevron-right.svg");
}
.btn-outlined--external::after {
  background-image: url("./assets/images/common/icons/external_link_line.svg");
}
.btn-outlined--large {
  min-width: 320px;
  padding: 16px 20px;
  font-size: 20px;
}
.btn-outlined--large::after {
  width: 20px;
  height: 20px;
}
.btn-outlined--large .btn-outlined__text {
  padding-left: 18px;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .btn-outlined--large {
    padding: 14px 15px;
    font-size: 17px;
  }
  .btn-outlined--large::after {
    width: 18px;
    height: 18px;
  }
  .btn-outlined--large .btn-outlined__text {
    padding-left: 16px;
    padding-right: 28px;
  }
}
.btn-outlined--medium {
  min-width: 280px;
  padding: 14px 20px;
  font-size: 17px;
}
.btn-outlined--medium::after {
  width: 20px;
  height: 20px;
}
.btn-outlined--medium .btn-outlined__text {
  padding-left: 18px;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .btn-outlined--medium {
    padding: 12px 15px;
    font-size: 15px;
  }
  .btn-outlined--medium::after {
    width: 18px;
    height: 18px;
  }
  .btn-outlined--medium .btn-outlined__text {
    padding-left: 14px;
    padding-right: 28px;
  }
}
.btn-outlined--small {
  min-width: 240px;
  padding: 12px 18px;
  font-size: 15px;
}
.btn-outlined--small::after {
  width: 18px;
  height: 18px;
}
.btn-outlined--small .btn-outlined__text {
  padding-left: 16px;
  padding-right: 28px;
}
@media (max-width: 768px) {
  .btn-outlined--small {
    padding: 10px 12px;
    font-size: 14px;
  }
  .btn-outlined--small::after {
    width: 16px;
    height: 16px;
  }
  .btn-outlined--small .btn-outlined__text {
    padding-left: 12px;
    padding-right: 24px;
  }
}

.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.img-placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  width: 90%;
}
@media (max-width: 768px) {
  .img-placeholder-text {
    font-size: 17px;
  }
}

.img-caption {
  position: absolute;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .img-caption {
    font-size: 11px;
  }
}
.img-caption--top-right {
  top: 8px;
  right: 10px;
  text-align: left;
}
.img-caption--top-left {
  top: 8px;
  left: 10px;
  text-align: left;
}
.img-caption--bottom-right {
  bottom: 8px;
  right: 10px;
  text-align: left;
}
.img-caption--bottom-left {
  bottom: 8px;
  left: 10px;
  text-align: left;
}

.page-header {
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .page-header {
    margin-bottom: 16px;
  }
}
.page-header__title {
  font-size: 31px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.3;
  margin: 20px 0 0;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 26px;
    margin-top: 18px;
  }
}
.page-header__subtitle {
  font-size: 14px;
  color: #287f4f;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
.page-header__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}
@media (max-width: 768px) {
  .page-header__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
}
.page-header__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.page-header__illustration {
  height: 40px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-header__illustration {
    height: 28px;
    margin-bottom: 6px;
  }
}
.page-header__illustration img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.page-header--spot .page-header__subtitle {
  margin-top: 2px;
  font-size: 14px;
  color: #287f4f;
}
.page-header--facility .page-header__subtitle {
  font-size: 16px;
  color: #287f4f;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .page-header--facility .page-header__subtitle {
    font-size: 15px;
    margin-bottom: 2px;
  }
}
.page-header--facility .page-header__en-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 3px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .page-header--facility .page-header__en-title {
    font-size: 17px;
    margin-top: 2px;
  }
}
.page-header--facility .page-header__note {
  font-size: 14px;
  color: #287f4f;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-header--facility .page-header__note {
    margin-top: 6px;
  }
}
.page-header--simple {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-header--simple {
    margin-bottom: 24px;
  }
}

.page-header__illustration ~ .page-header__title {
  margin-top: 0;
}

.facility-hero__overlay .page-header .page-header__title {
  color: #fff;
}
.facility-hero__overlay .page-header .page-header__subtitle {
  color: #fff;
}
.facility-hero__overlay .page-header .page-header__en-title {
  color: #fff;
}
.facility-hero__overlay .page-header .page-header__note {
  color: #fff;
}

.page-header--facility-v1 {
  text-align: center;
}
.page-header--facility-v1 .page-header__subtitle {
  font-size: 15px;
  color: #287f4f;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .page-header--facility-v1 .page-header__subtitle {
    font-size: 14px;
    margin-bottom: 1px;
  }
}
.page-header--facility-v1 .page-header__note {
  font-size: 14px;
  color: #287f4f;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-header--facility-v1 .page-header__note {
    margin-top: 6px;
  }
}

.page-header--facility-v2 {
  text-align: center;
  margin-top: -16px;
}
@media (max-width: 768px) {
  .page-header--facility-v2 {
    margin-top: -12px;
  }
}
.page-header--facility-v2 .page-header__subtitle {
  font-size: 15px;
  color: #287f4f;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .page-header--facility-v2 .page-header__subtitle {
    font-size: 14px;
    margin-bottom: 1px;
  }
}
.page-header--facility-v2 .page-header__title {
  font-size: 30px;
}
@media (max-width: 768px) {
  .page-header--facility-v2 .page-header__title {
    font-size: 25px;
  }
}
.page-header--facility-v2 .page-header__note {
  font-size: 14px;
  color: #287f4f;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-header--facility-v2 .page-header__note {
    margin-top: 6px;
  }
}
.page-header--facility-v2 .page-header__illustration {
  height: 28px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-header--facility-v2 .page-header__illustration {
    height: 22px;
    margin-bottom: 6px;
  }
}
.page-header--facility-v2 .page-header__illustration img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.page-header--facility-v3 {
  text-align: center;
}
.page-header--facility-v3 .page-header__main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .page-header--facility-v3 .page-header__main {
    gap: 8px;
  }
}
.page-header--facility-v3 .page-header__illustration {
  flex-shrink: 0;
  height: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-header--facility-v3 .page-header__illustration {
    height: 30px;
  }
}
.page-header--facility-v3 .page-header__illustration img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.page-header--facility-v3 .page-header__content {
  flex: 1;
  text-align: left;
}
.page-header--facility-v3 .page-header__subtitle {
  font-size: 15px;
  color: #287f4f;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .page-header--facility-v3 .page-header__subtitle {
    font-size: 14px;
    margin-bottom: 1px;
  }
}
.page-header--facility-v3 .page-header__title {
  margin-top: 0;
  font-size: 30px;
}
@media (max-width: 768px) {
  .page-header--facility-v3 .page-header__title {
    font-size: 25px;
  }
}
.page-header--facility-v3 .page-header__note {
  font-size: 14px;
  color: #287f4f;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-header--facility-v3 .page-header__note {
    margin-top: 6px;
  }
}

.info-list {
  background-color: #F3F4E6;
  border-radius: 8px;
  padding: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .info-list {
    padding: 12px;
  }
}
.info-list__item {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 10px 0;
  border-bottom: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .info-list__item {
    gap: 12px;
    padding: 8px 0;
  }
}
.info-list__item:first-child {
  padding-top: 0;
}
.info-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.info-list__label {
  flex: 0 0 240px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  background-color: #E8ECDA;
  text-align: center;
  padding: 12px 8px;
  border-radius: 6px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .info-list__label {
    flex: 0 0 35%;
    min-width: 108px;
    font-size: 14px;
    padding: 10px 6px;
    border-radius: 4px;
  }
}
.info-list__value {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .info-list__value {
    font-size: 14px;
    line-height: 1.7;
  }
}
.info-list__value a {
  color: #287f4f;
  text-decoration: underline;
}
.info-list__value a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.bordered-heading, .facility-map__section-heading, .facility-feature__section-heading, .info-section__heading, .camp-plans__section-heading, .card-slider__heading, .faq-section__heading {
  font-size: 20px;
  font-weight: 500;
  color: #515151;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .bordered-heading, .facility-map__section-heading, .facility-feature__section-heading, .info-section__heading, .camp-plans__section-heading, .card-slider__heading, .faq-section__heading {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }
}

.faq-list {
  background-color: #F3F4E6;
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 768px) {
  .faq-list {
    padding: 12px;
    border-radius: 4px;
  }
}

.faq-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.faq-item__question {
  position: relative;
  width: 100%;
  min-height: 72px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  background-color: #E8ECDA;
  border: none;
  border-radius: 6px;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .faq-item__question {
    min-height: 64px;
    gap: 12px;
    padding: 12px 0;
    border-radius: 4px;
  }
}
.faq-item__question:hover {
  opacity: 0.8;
}
.faq-item__question:focus-visible {
  outline: 2px solid #287f4f;
  outline-offset: 2px;
}
.faq-item__question .faq-item__label {
  flex: 0 0 60px;
  font-size: 16px;
  font-weight: 600;
  color: #287f4f;
  text-align: center;
  border-right: 1px solid #D1D4C7;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq-item__question .faq-item__label {
    flex: 0 0 48px;
    font-size: 14px;
  }
}
.faq-item__question .faq-item__text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #287f4f;
  line-height: 1.8;
  display: flex;
  align-items: center;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .faq-item__question .faq-item__text {
    font-size: 14px;
    line-height: 1.7;
    padding-right: 44px;
  }
}
.faq-item__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("assets/images/common/icons/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-item__icon {
    width: 14px;
    height: 14px;
    right: 16px;
  }
}
.faq-item__question[aria-expanded=true] .faq-item__icon {
  transform: translateY(-50%) rotate(180deg);
}
.faq-item__answer {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
@media (max-width: 768px) {
  .faq-item__answer {
    gap: 12px;
    margin-top: 12px;
  }
}
.faq-item__answer[hidden] {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  display: flex;
}
.faq-item__answer .faq-item__label {
  flex: 0 0 60px;
  font-size: 16px;
  font-weight: 600;
  color: #287f4f;
  text-align: center;
  border-right: 1px solid #D1D4C7;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq-item__answer .faq-item__label {
    flex: 0 0 48px;
    font-size: 14px;
  }
}
.faq-item__answer .faq-item__text {
  flex: 1;
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .faq-item__answer .faq-item__text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.faq-item__answer .faq-item__text p {
  margin: 0;
}
.faq-item__answer .faq-item__text a {
  color: #287f4f;
  text-decoration: underline;
}
.faq-item__answer .faq-item__text a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 7%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.spot-card {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}
.spot-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.spot-card__link:hover .spot-card__image {
  transform: scale(1.05);
}
.spot-card__link * {
  text-decoration: none !important;
}
.spot-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #F3F4E6;
}
.spot-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spot-card__content {
  padding: 16px 8px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .spot-card__content {
    padding: 8px 4px 0;
  }
}
.spot-card__title {
  font-size: 20px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .spot-card__title {
    font-size: 18px;
  }
}
.spot-card__reading {
  font-size: 16px;
  color: #287f4f;
  line-height: 1.4;
  margin: 4px 0 0;
}
@media (max-width: 768px) {
  .spot-card__reading {
    margin: 2px 0 0;
  }
}

.news-card {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}
.news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.news-card__link:hover .news-card__image {
  transform: scale(1.05);
}
.news-card__link * {
  text-decoration: none !important;
}
.news-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #F3F4E6;
}
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card__content {
  padding: 12px 8px 0;
}
@media (max-width: 768px) {
  .news-card__content {
    padding: 8px 4px 0;
  }
}
.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .news-card__meta {
    margin-bottom: 6px;
  }
}
.news-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
}
.news-card__date {
  font-size: 14px;
  color: #515151;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.news-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .news-card__title {
    font-size: 15px;
  }
}

.category-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 9999px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  background-color: #E8ECDA;
  color: #333;
}
@media (max-width: 768px) {
  .category-tag {
    padding: 3px 10px;
    font-size: 11px;
  }
}
.category-tag--important {
  background-color: #FFE5E5;
}
a:hover .category-tag {
  opacity: 0.8;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  padding: 0;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 48px;
    gap: 6px;
  }
}
@media (max-width: 576px) {
  .pagination {
    gap: 4px;
  }
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #E4E7DC;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .pagination__link {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .pagination__link {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 14px;
  }
}
.pagination__link:hover:not(.pagination__link--current) {
  background-color: #F3F4E6;
  border-color: #287f4f;
  color: #287f4f;
}
.pagination__link:focus-visible {
  outline: 2px solid #287f4f;
  outline-offset: 2px;
}
.pagination__link--current {
  background-color: #287f4f;
  border-color: #287f4f;
  color: #fff;
  cursor: default;
}
.pagination__link--number {
  min-width: 44px;
}
@media (max-width: 768px) {
  .pagination__link--number {
    min-width: 40px;
  }
}
@media (max-width: 576px) {
  .pagination__link--number {
    min-width: 36px;
  }
}
.pagination__link--prev, .pagination__link--next {
  gap: 4px;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .pagination__link--prev, .pagination__link--next {
    padding: 0 12px;
  }
}
@media (max-width: 576px) {
  .pagination__link--prev, .pagination__link--next {
    padding: 0 8px;
  }
}
.pagination__arrow {
  font-size: 14px;
}
@media (max-width: 768px) {
  .pagination__arrow {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .pagination__text {
    display: none;
  }
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .pagination .page-numbers {
    gap: 6px;
  }
}
@media (max-width: 576px) {
  .pagination .page-numbers {
    gap: 4px;
  }
}
.pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.pagination .page-numbers a.page-numbers,
.pagination .page-numbers span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #E4E7DC;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .pagination .page-numbers a.page-numbers,
  .pagination .page-numbers span.page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .pagination .page-numbers a.page-numbers,
  .pagination .page-numbers span.page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 14px;
  }
}
.pagination .page-numbers a.page-numbers:hover:not(.current) {
  background-color: #F3F4E6;
  border-color: #287f4f;
  color: #287f4f;
}
.pagination .page-numbers a.page-numbers:focus-visible {
  outline: 2px solid #287f4f;
  outline-offset: 2px;
}
.pagination .page-numbers span.page-numbers.current {
  background-color: #287f4f;
  border-color: #287f4f;
  color: #fff;
  cursor: default;
}
.pagination .page-numbers a.prev.page-numbers,
.pagination .page-numbers a.next.page-numbers {
  gap: 4px;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .pagination .page-numbers a.prev.page-numbers,
  .pagination .page-numbers a.next.page-numbers {
    padding: 0 12px;
  }
}
@media (max-width: 576px) {
  .pagination .page-numbers a.prev.page-numbers,
  .pagination .page-numbers a.next.page-numbers {
    padding: 0 8px;
  }
}
@media (max-width: 576px) {
  .pagination .page-numbers a.prev.page-numbers .pagination__text,
  .pagination .page-numbers a.next.page-numbers .pagination__text {
    display: none;
  }
}
.pagination .page-numbers .pagination__arrow {
  font-size: 14px;
}
@media (max-width: 768px) {
  .pagination .page-numbers .pagination__arrow {
    font-size: 13px;
  }
}
.pagination .page-numbers span.dots {
  background: none;
  border: none;
  color: #333;
  cursor: default;
}

.simple-page__content {
  max-width: 800px;
  margin: 0 auto;
}
.simple-page__title {
  font-size: 31px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.4;
  margin: 20px 0 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .simple-page__title {
    font-size: 26px;
    margin-top: 18px;
    margin-bottom: 24px;
  }
}
.simple-page__text {
  color: #333;
  line-height: 1.8;
  margin: 0 0 48px;
  text-align: left;
}
@media (max-width: 768px) {
  .simple-page__text {
    margin-bottom: 40px;
  }
}
.simple-page__text p {
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .simple-page__text p {
    margin-bottom: 20px;
  }
}
.simple-page__text p:last-child {
  margin-bottom: 0;
}
.simple-page__action {
  display: flex;
  justify-content: center;
}

.simple-page__contact-info {
  color: #515151;
  line-height: 1.8;
  margin-top: 32px !important;
}
@media (max-width: 768px) {
  .simple-page__contact-info {
    margin-top: 24px !important;
  }
}

.price-card__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 12px 0 0;
}
@media (max-width: 768px) {
  .price-card__grid {
    margin-top: 10px;
  }
}
.price-card__grid:has(.price-card__item:only-child) {
  justify-content: center;
}
@media (max-width: 576px) {
  .price-card__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }
}
.price-card__item {
  background-color: #fff;
  padding: 6px 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  max-width: calc(50% - 12px);
}
@media (max-width: 576px) {
  .price-card__item {
    padding: 4px 6px;
    gap: 12px;
    max-width: 100%;
    border-radius: 10px;
  }
}
.price-card__item:only-child {
  max-width: 400px;
}
.price-card__label {
  flex: 0 0 34%;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  background-color: #E8ECDA;
  padding: 16px;
  border-radius: 6px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  line-height: 1.4;
  align-self: stretch;
}
@media (max-width: 768px) {
  .price-card__label {
    font-size: 13px;
    padding: 6px;
    border-radius: 4px;
  }
}
.price-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px 0;
}
.price-card__amount {
  color: #287f4f;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.price-card__amount--text {
  font-size: 21px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .price-card__amount--text {
    font-size: 18px;
  }
}
.price-card__number {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .price-card__number {
    font-size: 20px;
  }
}
.price-card__unit {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .price-card__unit {
    font-size: 12px;
  }
}
.price-card__separator {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .price-card__separator {
    font-size: 12px;
  }
}
.price-card__notes {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.price-card__note {
  font-size: 14px;
  color: #707070;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .price-card__note {
    font-size: 12px;
  }
}
.price-card__footnote {
  font-size: 14px;
  color: #515151;
  text-align: center;
  line-height: 1.4;
  margin: 12px 0 10px;
}
@media (max-width: 768px) {
  .price-card__footnote {
    font-size: 13px;
  }
}

.card-slider {
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .card-slider {
    margin-bottom: 60px;
  }
}
.card-slider__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .card-slider__container {
    padding: 0 20px;
  }
}
.card-slider__slider {
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .card-slider__slider {
    padding: 0 20px;
  }
}
.card-slider__slider .swiper-wrapper {
  align-items: stretch;
}
.card-slider__card {
  display: block;
  background-color: #F3F4E6;
  border-radius: 8px;
  transition: transform 0.3s ease;
  text-decoration: none;
  height: 100%;
  padding: 16px;
}
@media (max-width: 768px) {
  .card-slider__card {
    border-radius: 6px;
    padding: 12px;
  }
}
.card-slider__card:hover {
  transform: translateY(-4px);
}
.card-slider__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .card-slider__image-wrapper {
    border-radius: 4px;
  }
}
.card-slider__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-slider__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #287f4f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .card-slider__badge {
    font-size: 13px;
    padding: 10px;
    top: 10px;
    left: 10px;
  }
}
.card-slider__content {
  padding: 0;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .card-slider__content {
    margin-top: 10px;
  }
}
.card-slider__title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .card-slider__title {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.card-slider__price {
  font-size: 20px;
  font-weight: 600;
  color: #287f4f;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .card-slider__price {
    font-size: 18px;
  }
}
.card-slider__pagination {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #E8ECDA;
  border-radius: 2px;
  margin: 20px auto 0;
  max-width: 400px;
}
@media (max-width: 768px) {
  .card-slider__pagination {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 300px;
  }
}
.card-slider__pagination .swiper-pagination-progressbar-fill {
  background-color: #287f4f;
  border-radius: 2px;
}
.card-slider__button {
  text-align: center;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .card-slider__button {
    margin-top: 24px;
  }
}
.card-slider .swiper-slide {
  height: auto;
  width: 88%;
  min-width: 240px;
}
@media (min-width: 576px) {
  .card-slider .swiper-slide {
    width: 45%;
    min-width: 240px;
  }
}
@media (min-width: 768px) {
  .card-slider .swiper-slide {
    width: 30%;
    min-width: 260px;
  }
}
@media (min-width: 992px) {
  .card-slider .swiper-slide {
    width: 22%;
    min-width: 280px;
  }
}

.camp-plans__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .camp-plans__nav {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .camp-plans__nav {
    gap: 16px 18px;
  }
}
.camp-plans__nav-card {
  max-width: 150px;
  flex: 0 1 160px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.camp-plans__nav-card:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  .camp-plans__nav-card {
    flex: 0 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
.camp-plans__nav-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .camp-plans__nav-image {
    margin-bottom: 4px;
    border-radius: 4px;
  }
}
.camp-plans__nav-text {
  font-size: 16px;
  color: #515151;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .camp-plans__nav-text {
    font-size: 15px;
  }
}
.camp-plans__item {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  scroll-margin-top: 140px;
}
@media (max-width: 768px) {
  .camp-plans__item {
    scroll-margin-top: 100px;
  }
}
.camp-plans__item:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .camp-plans__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.camp-plans__illustration {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .camp-plans__illustration {
    height: 26px;
  }
}
.camp-plans__illustration img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.camp-plans__content {
  background-color: #F3F4E6;
  padding: 0 40px 20px;
  border-radius: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .camp-plans__content {
    padding: 0 16px 16px;
    margin-top: -12px;
    border-radius: 16px;
  }
}
.camp-plans__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 26px;
}
@media (max-width: 768px) {
  .camp-plans__inner {
    padding-top: 16px;
  }
}
.camp-plans__title {
  font-size: 26px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .camp-plans__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.camp-plans__image-wrapper {
  position: relative;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .camp-plans__image-wrapper {
    margin-bottom: 10px;
  }
}
.camp-plans__image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .camp-plans__image {
    min-height: 176px;
    border-radius: 4px;
  }
}
.camp-plans__main-slider {
  width: 100%;
}
.camp-plans__main-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.camp-plans__thumb-slider {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .camp-plans__thumb-slider {
    margin-top: 8px;
  }
}
.camp-plans__thumb-slider .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.camp-plans__thumb-slider .swiper-slide {
  width: 90px;
  height: 60px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .camp-plans__thumb-slider .swiper-slide {
    width: 70px;
    height: 47px;
    border-radius: 3px;
  }
}
.camp-plans__thumb-slider .swiper-slide:hover {
  opacity: 0.8;
}
.camp-plans__thumb-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.camp-plans__thumb-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.camp-plans__text {
  color: #333333;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .camp-plans__text {
    line-height: 1.7;
  }
}
.camp-plans__text p {
  margin: 0;
}
.camp-plans__specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 8px;
  margin: 10px 0 20px;
  padding-top: 10px;
  border-top: 1px solid #D1D4C7;
}
@media (max-width: 768px) {
  .camp-plans__specs {
    gap: 8px 6px;
    margin-bottom: 16px;
  }
}
.camp-plans__spec-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #287f4f;
  background-color: #FFF;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .camp-plans__spec-tag {
    font-size: 13px;
    padding: 5px 10px;
  }
}
.camp-plans__button {
  text-align: center;
}

.camp-rental {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .camp-rental {
    margin-bottom: 60px;
  }
}
.camp-rental__illustration {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .camp-rental__illustration {
    height: 26px;
  }
}
.camp-rental__illustration img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.camp-rental__wrapper {
  background-color: #F3F4E6;
  padding: 0 40px 20px;
  border-radius: 8px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .camp-rental__wrapper {
    padding: 0 16px 16px;
    margin-top: -12px;
    border-radius: 4px;
  }
}
.camp-rental--no-illustration .camp-rental__wrapper {
  background-color: #F3F4E6;
  padding: 16px 40px 20px;
  border-radius: 8px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .camp-rental--no-illustration .camp-rental__wrapper {
    padding: 16px;
  }
}
.camp-rental__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 26px;
}
@media (max-width: 768px) {
  .camp-rental__inner {
    padding-top: 16px;
  }
}
.camp-rental--no-illustration .camp-rental__inner {
  padding-top: 0;
}
.camp-rental__title {
  font-size: 26px;
  font-weight: 500;
  color: #287f4f;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .camp-rental__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.camp-rental__content {
  display: flex;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .camp-rental__content {
    flex-direction: column;
    gap: 10px;
  }
}
.camp-rental__image-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .camp-rental__image-wrapper {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.camp-rental__image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .camp-rental__image {
    border-radius: 4px;
  }
}
.camp-rental__text-wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .camp-rental__text-wrapper {
    flex: none;
  }
}
.camp-rental__description {
  color: #333333;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .camp-rental__description {
    line-height: 1.7;
  }
}
.camp-rental .price-card__grid {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .camp-rental .price-card__grid {
    margin-top: 16px;
  }
}
.camp-rental__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid #D1D4C7;
}
@media (max-width: 768px) {
  .camp-rental__tags {
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
  }
}
.camp-rental__tag {
  display: inline-block;
  font-size: 15px;
  color: #333333;
  background-color: #E8ECDA;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .camp-rental__tag {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.camp-rental__button {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .camp-rental__button {
    margin-top: 16px;
  }
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .entry-content {
    font-size: 15px;
    line-height: 1.7;
  }
}
.entry-content p {
  margin: 0 auto 1.5em;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-weight: 700;
  color: #287f4f;
  line-height: 1.4;
  margin: 2em 0 1em;
}
.entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child {
  margin-top: 0;
}
.entry-content h2 {
  font-size: 26px;
}
@media (max-width: 768px) {
  .entry-content h2 {
    font-size: 22px;
  }
}
.entry-content h3 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .entry-content h3 {
    font-size: 18px;
  }
}
.entry-content h4 {
  font-size: 16px;
}
@media (max-width: 768px) {
  .entry-content h4 {
    font-size: 15px;
  }
}
.entry-content h5, .entry-content h6 {
  font-size: 16px;
}
@media (max-width: 768px) {
  .entry-content h5, .entry-content h6 {
    font-size: 15px;
  }
}
.entry-content a {
  color: #287f4f;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.entry-content a:hover {
  color: rgb(21.6766467066, 68.8233532934, 42.8113772455);
}
.entry-content .btn-filled,
.entry-content a.btn-filled {
  background-color: #287f4f;
  color: #fff;
  text-decoration: none;
}
.entry-content .btn-filled:hover,
.entry-content a.btn-filled:hover {
  color: #fff;
  opacity: 0.9;
}
.entry-content .btn-filled .btn-filled__text,
.entry-content .btn-filled .btn-filled__subtext,
.entry-content .btn-filled .btn-filled__maintext,
.entry-content a.btn-filled .btn-filled__text,
.entry-content a.btn-filled .btn-filled__subtext,
.entry-content a.btn-filled .btn-filled__maintext {
  color: #fff;
}
.entry-content .btn-outline,
.entry-content a.btn-outline {
  text-decoration: none;
}
.entry-content .btn-outline:hover,
.entry-content a.btn-outline:hover {
  background-color: #287f4f;
  color: #fff;
}
.entry-content .wp-block-button {
  margin: 2em 0;
}
.entry-content .wp-block-button .wp-block-button__link,
.entry-content .wp-block-button .wp-element-button {
  background-color: #287f4f !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 50px;
  padding: 12px 32px;
  display: inline-block;
  font-weight: 500;
  transition: opacity 0.3s ease;
  border: none;
}
@media (max-width: 768px) {
  .entry-content .wp-block-button .wp-block-button__link,
  .entry-content .wp-block-button .wp-element-button {
    padding: 10px 24px;
  }
}
.entry-content .wp-block-button .wp-block-button__link:hover,
.entry-content .wp-block-button .wp-element-button:hover {
  opacity: 0.9;
  color: #fff !important;
}
.entry-content strong, .entry-content b {
  font-weight: 700;
  color: #333333;
}
.entry-content em, .entry-content i {
  font-style: italic;
}
.entry-content ul, .entry-content ol {
  margin: 0 0 1.5em;
  padding-left: 2em;
}
@media (max-width: 768px) {
  .entry-content ul, .entry-content ol {
    padding-left: 1.5em;
  }
}
.entry-content ul li, .entry-content ol li {
  margin-bottom: 0.5em;
}
.entry-content ul li:last-child, .entry-content ol li:last-child {
  margin-bottom: 0;
}
.entry-content ul ul, .entry-content ul ol, .entry-content ol ul, .entry-content ol ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ul ul {
  list-style-type: circle;
}
.entry-content ul ul ul {
  list-style-type: square;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content ol ol {
  list-style-type: lower-alpha;
}
.entry-content ol ol ol {
  list-style-type: lower-roman;
}
.entry-content blockquote {
  margin: 2em 0;
  padding: 1.5em;
  background-color: #F3F4E6;
  border-left: 4px solid #287f4f;
  font-style: italic;
}
@media (max-width: 768px) {
  .entry-content blockquote {
    padding: 1em;
    margin: 1.5em 0;
  }
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content blockquote cite {
  display: block;
  margin-top: 1em;
  font-size: 14px;
  color: #515151;
  font-style: normal;
}
@media (max-width: 768px) {
  .entry-content blockquote cite {
    font-size: 13px;
  }
}
.entry-content blockquote cite:before {
  content: "— ";
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content img {
    margin: 1.5em auto;
    border-radius: 6px;
  }
}
.entry-content figure {
  margin: 2em 0;
}
@media (max-width: 768px) {
  .entry-content figure {
    margin: 1.5em 0;
  }
}
.entry-content figure img {
  margin: 0 auto 0.5em;
}
.entry-content figure figcaption {
  font-size: 14px;
  color: #515151;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .entry-content figure figcaption {
    font-size: 13px;
  }
}
.entry-content .wp-caption {
  max-width: 100%;
}
.entry-content .wp-caption img {
  margin-bottom: 0.5em;
}
.entry-content .wp-caption .wp-caption-text {
  font-size: 14px;
  color: #515151;
  text-align: center;
  padding: 0 1em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .entry-content .wp-caption .wp-caption-text {
    font-size: 13px;
  }
}
.entry-content .alignleft {
  float: left;
  margin: 0.5em 1.5em 1.5em 0;
  max-width: 50%;
}
@media (max-width: 768px) {
  .entry-content .alignleft {
    float: none;
    margin: 1.5em auto;
    max-width: 100%;
  }
}
.entry-content .alignright {
  float: right;
  margin: 0.5em 0 1.5em 1.5em;
  max-width: 50%;
}
@media (max-width: 768px) {
  .entry-content .alignright {
    float: none;
    margin: 1.5em auto;
    max-width: 100%;
  }
}
.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 14px;
}
@media (max-width: 768px) {
  .entry-content table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    margin: 1.5em 0;
  }
}
.entry-content table th, .entry-content table td {
  padding: 12px;
  border: 1px solid #D1D4C7;
  text-align: left;
}
@media (max-width: 768px) {
  .entry-content table th, .entry-content table td {
    padding: 8px;
  }
}
.entry-content table th {
  background-color: #E8ECDA;
  font-weight: 700;
  color: #333333;
}
.entry-content table tr:nth-child(even) td {
  background-color: #F3F4E6;
}
.entry-content hr {
  margin: 3em 0;
  border: none;
  border-top: 1px solid #D1D4C7;
}
@media (max-width: 768px) {
  .entry-content hr {
    margin: 2em 0;
  }
}
.entry-content code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  background-color: #F3F4E6;
  padding: 2px 6px;
  border-radius: 3px;
  color: #333333;
}
.entry-content pre {
  margin: 2em 0;
  padding: 1.5em;
  background-color: #F3F4E6;
  border-radius: 8px;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .entry-content pre {
    margin: 1.5em 0;
    padding: 1em;
    border-radius: 6px;
  }
}
.entry-content pre code {
  background-color: transparent;
  padding: 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .entry-content pre code {
    font-size: 13px;
  }
}
.entry-content iframe {
  max-width: 100%;
  margin: 2em auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content iframe {
    margin: 1.5em auto;
    border-radius: 6px;
  }
}
.entry-content .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2em 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content .video-wrapper {
    margin: 1.5em 0;
    border-radius: 6px;
  }
}
.entry-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.entry-content .wp-block-embed {
  margin: 2em 0;
}
@media (max-width: 768px) {
  .entry-content .wp-block-embed {
    margin: 1.5em 0;
  }
}
.entry-content .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content .wp-block-embed .wp-block-embed__wrapper {
    border-radius: 6px;
  }
}
.entry-content .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content .wp-block-embed .wp-block-embed__wrapper iframe {
    border-radius: 6px;
  }
}
.entry-content .wp-block-file {
  margin: 1.5em 0;
  padding: 1em;
  background-color: #F3F4E6;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .entry-content .wp-block-file {
    padding: 0.75em;
    border-radius: 6px;
  }
}
.entry-content .wp-block-file a {
  color: #287f4f;
  text-decoration: none;
  font-weight: 500;
}
.entry-content .wp-block-file a:hover {
  text-decoration: underline;
}

.access-section__upper {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .access-section__upper {
    flex-direction: column;
    gap: 24px;
  }
}
.access-section__info {
  flex: 1;
}
@media (max-width: 768px) {
  .access-section__info {
    width: 100%;
  }
}
.access-section__map {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .access-section__map {
    width: 100%;
  }
}
.access-section__map iframe {
  width: 100%;
  height: 100%;
}
.access-section__heading {
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .access-section__heading {
    margin-bottom: 16px;
  }
}
.access-section__heading-icon {
  display: block;
  margin: 0 auto 8px;
  width: auto;
  height: 44px;
}
@media (max-width: 768px) {
  .access-section__heading-icon {
    height: 32px;
  }
}
.access-section__title {
  font-size: 26px;
  color: #287f4f;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .access-section__title {
    font-size: 22px;
  }
}
.access-section__list {
  border: none;
  padding: 0;
  margin: 0;
}
.access-section__list-item {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 10px 0;
  border-bottom: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .access-section__list-item {
    gap: 12px;
    padding: 8px 0;
  }
}
.access-section__list-item:first-child {
  padding-top: 0;
}
.access-section__list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.access-section__label {
  flex: 0 0 120px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  background-color: #E8ECDA;
  text-align: center;
  padding: 12px 8px;
  border-radius: 6px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .access-section__label {
    flex: 0 0 100px;
    font-size: 14px;
    padding: 10px 6px;
    border-radius: 4px;
  }
}
.access-section__value {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .access-section__value {
    font-size: 14px;
    line-height: 1.7;
  }
}
.access-section__lower {
  display: flex;
  gap: 4%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .access-section__lower {
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }
}

.access-card {
  flex: 1;
  border: 3px solid #287f4f;
  border-radius: 24px;
  padding: 12px 12px 12px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .access-card {
    flex-direction: row;
    border: 2px solid #287f4f;
    border-radius: 18px;
    padding: 8px;
    gap: 6px;
  }
}
.access-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .access-card__header {
    flex: 0 0 28%;
    justify-content: center;
    margin-bottom: 0;
  }
}
.access-card__icon {
  display: block;
  width: auto;
  height: 36px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .access-card__icon {
    height: 36px;
    margin-bottom: 4px;
  }
}
.access-card__title {
  font-size: 20px;
  color: #287f4f;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .access-card__title {
    font-size: 18px;
  }
}
.access-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .access-card__details {
    flex: 1;
    gap: 6px;
  }
}
.access-card__item {
  background-color: #E8ECDA;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .access-card__item {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.7;
  }
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-animate=fade-up-sm] {
  transform: translateY(15px);
}

[data-animate=fade-up] {
  transform: translateY(20px);
}

[data-animate=fade] {
  transform: none;
}

[data-animate=fade-scale] {
  transform: scale(0.95);
}

[data-animate=fade-left] {
  transform: translateX(30px);
}

[data-animate=fade-right] {
  transform: translateX(-30px);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh + 40px);
  min-height: 640px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__background .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__background .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center center;
}
.hero__background .swiper-slide-active img {
  animation: kenburns-zoom-in 5s linear forwards;
}
.hero__background .swiper-slide:not(.swiper-slide-active) img {
  transform: scale(1.15);
}

@keyframes kenburns-zoom-in {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__content {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero__title {
  margin: 0 0 30px;
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .hero__title {
    line-height: 1.6;
  }
}

.hero__line {
  display: block;
}

.hero__word {
  font-size: 34px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}

.hero__word--em {
  font-size: 40px;
  font-weight: 500;
}

.hero__word--hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  bottom: 8px;
  background-color: rgba(219, 182, 0, 0.8);
  z-index: -1;
}

.hero__br {
  display: none;
}

.hero__br--pc-md {
  display: block;
}

.hero__br--md {
  display: none;
}

.hero__br--sm {
  display: none;
}

@media (max-width: 768px) {
  .hero__word {
    font-size: 28px;
  }
  .hero__word--em {
    font-size: 33px;
  }
  .hero__br--md {
    display: block;
  }
  .hero__word--hl::after {
    height: 12px;
    bottom: 6px;
  }
}
@media (max-width: 576px) {
  .hero__br--sm {
    display: block;
  }
}
.hero__subtitle {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero__subtitle-number {
  font-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(219, 182, 0, 0.8);
  margin: 0 0 1px 0;
  padding-bottom: 5px;
}

.hero__subtitle-part {
  display: inline;
}

@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__subtitle-number {
    font-size: 30px;
    width: 34px;
    height: 34px;
  }
}
.top-menu {
  margin-top: -20px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .top-menu {
    margin-top: -20px;
  }
}

.top-menu__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .top-menu__container {
    max-width: 600px;
    padding: 0 20px;
  }
}

.top-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .top-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.top-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s;
}
.top-menu__item[data-animate]:not(.is-animated) {
  transform: translateY(12px);
  transition: opacity 1s ease, transform 1s ease;
}
.top-menu__item:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.top-menu__icon {
  margin-bottom: 2px;
}
.top-menu__icon img {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.spots-section__heading {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .spots-section__heading {
    margin-bottom: 32px;
  }
}
.spots-section__heading-icon {
  display: block;
  margin: 0 auto 12px;
  width: auto;
  height: 40px;
}
@media (max-width: 768px) {
  .spots-section__heading-icon {
    height: 28px;
    margin-bottom: 8px;
  }
}
.spots-section__title {
  font-size: 26px;
  color: #287f4f;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .spots-section__title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .spots-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 768px) {
  .spots-section .spot-card__title {
    font-size: 15px;
    text-align: left;
  }
}

.news-section {
  background-color: #F3F4E6;
  margin-top: 56px;
  padding: 24px 0;
  scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  .news-section {
    scroll-margin-top: 100px;
    margin-top: 36px;
    padding: 20px 0;
  }
}
.news-section__container {
  width: 100%;
  display: flex;
  gap: 6%;
  align-items: center;
  padding-left: 60px;
  padding-right: 0;
}
@media (max-width: 768px) {
  .news-section__container {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.news-section__left {
  flex: 0 0 28%;
  max-width: 302px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .news-section__left {
    display: contents;
  }
}
.news-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .news-section__heading {
    padding: 0 20px;
    align-self: center;
    width: 100%;
    margin-bottom: 12px;
  }
}
.news-section__heading-icon {
  height: 28px;
  width: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .news-section__heading-icon {
    height: 22px;
    margin-bottom: 6px;
  }
}
.news-section__heading-text {
  font-size: 20px;
  color: #287f4f;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .news-section__heading-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .news-section__button {
    order: 1;
    padding: 0 20px;
    align-self: center;
    text-align: center;
    width: 100%;
  }
}
.news-section__right {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .news-section__right {
    width: 100%;
    margin-bottom: 20px;
  }
}
.news-section__slider {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .news-section__slider {
    padding-left: 20px;
    padding-right: 0;
  }
}
.news-section__slider .swiper-wrapper {
  align-items: stretch;
}
.news-section__card {
  background-color: transparent;
  padding: 0;
}
.news-section__card .news-card__link {
  display: block;
}
.news-section__card .news-card__content {
  padding: 12px 0 0;
}
@media (max-width: 768px) {
  .news-section__card .news-card__content {
    padding: 8px 0 0;
  }
}
@media (min-width: 576px) {
  .news-section--one .news-section__container {
    justify-content: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }
  .news-section--one .news-section__right {
    flex: 0 0 auto;
    max-width: 400px;
  }
  .news-section--one .swiper-wrapper {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .news-section--two .news-section__container {
    justify-content: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }
  .news-section--two .news-section__right {
    flex: 0 0 auto;
  }
}

.card-slider--news {
  margin-bottom: 0;
}
.card-slider--news .card-slider__pagination {
  margin-bottom: 0;
}
.card-slider--news .swiper-slide {
  width: 88%;
  min-width: 240px;
}
@media (min-width: 576px) {
  .card-slider--news .swiper-slide {
    width: 45%;
    min-width: 240px;
  }
}
@media (min-width: 768px) {
  .card-slider--news .swiper-slide {
    width: 37%;
    min-width: 260px;
  }
}
@media (min-width: 992px) {
  .card-slider--news .swiper-slide {
    width: 37%;
    min-width: 280px;
  }
}

.park-intro-section {
  overflow: hidden;
  margin: 80px 0;
}
@media (max-width: 768px) {
  .park-intro-section {
    margin: 60px 0;
  }
}

.park-intro__container {
  display: flex;
  align-items: center;
  padding-left: 60px;
  gap: 0;
}
@media (min-width: 1200px) {
  .park-intro__container {
    padding-left: calc(60px + (100vw - 1200px) / 2);
  }
}
@media (max-width: 768px) {
  .park-intro__container {
    flex-direction: column;
    padding: 0 20px;
    gap: 0;
  }
}

.park-intro__left {
  flex: 0 0 42%;
  z-index: 2;
}
@media (max-width: 768px) {
  .park-intro__left {
    flex: none;
    width: 100%;
  }
}

.park-intro__header {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .park-intro__header {
    margin-bottom: 16px;
  }
}

.park-intro__header-icon {
  display: block;
  margin: 0 auto 12px;
  width: auto;
  height: 52px;
}
@media (max-width: 768px) {
  .park-intro__header-icon {
    height: 42px;
    margin-bottom: 10px;
  }
}

.park-intro__catchcopy {
  margin: 0;
  color: #287f4f;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .park-intro__catchcopy {
    font-size: 22px;
  }
}

.park-intro__catchcopy-line {
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid #DBB600;
  width: fit-content;
  margin: 0 auto 8px;
}
@media (max-width: 768px) {
  .park-intro__catchcopy-line {
    margin-bottom: 6px;
  }
}
.park-intro__catchcopy-line:last-child {
  margin-bottom: 0;
}

.park-intro__text {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .park-intro__text {
    font-size: 15px;
  }
}

.park-intro__map {
  flex: 0 0 66%;
  max-width: 720px;
  margin-left: -4%;
  margin-right: auto;
}
@media (max-width: 768px) {
  .park-intro__map {
    flex: none;
    width: 132%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: -30px;
  }
}

.park-intro__map-image {
  width: 100%;
  height: auto;
  display: block;
}

.facility-category-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .facility-category-section {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 20px;
  }
}
.facility-category-section__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 768px) {
  .facility-category-section__grid {
    row-gap: 28px;
    column-gap: 28px;
    flex-direction: column;
  }
}

.facility-category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #F3F4E6;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  margin-top: 46px;
  transition: transform 0.3s ease;
}
.facility-category-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .facility-category-card {
    padding: 12px;
    margin-top: 38px;
  }
}
.facility-category-card__title {
  font-size: 26px;
  color: #287f4f;
  font-weight: 500;
  text-align: center;
  margin: -74px 0 10px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .facility-category-card__title {
    font-size: 22px;
    margin: -58px 0 6px 0;
  }
}
.facility-category-card__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 24px;
  margin: 0 auto 2px;
  background-image: url("assets/images/common/illustrations/illust_hd-stripe-2c.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .facility-category-card__title::before {
    width: 40px;
    height: 16px;
    margin-bottom: 0;
  }
}
.facility-category-card__body {
  display: flex;
  gap: 4%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .facility-category-card--large .facility-category-card__body {
    flex-direction: column;
    gap: 10px;
  }
}
.facility-category-card__image {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/3;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .facility-category-card__image {
    flex: none;
    width: 100%;
    min-width: 100px;
  }
}
.facility-category-card--small .facility-category-card__image {
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .facility-category-card--small .facility-category-card__image {
    flex: 0 0 42%;
    width: auto;
    min-width: 100px;
  }
}
.facility-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-category-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .facility-category-card__content {
    padding-top: 6px;
  }
}
.facility-category-card__button {
  margin-top: 16px;
  align-self: center;
}
@media (max-width: 768px) {
  .facility-category-card__button {
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .facility-category-card--small .facility-category-card__content {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .facility-category-card--large .facility-category-card__content {
    width: 100%;
  }
}
.facility-category-card__text {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .facility-category-card__text {
    font-size: 15px;
  }
}
.facility-category-card__facilities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  row-gap: 12px;
  column-gap: 9%;
  justify-items: center;
  width: 100%;
  min-width: 0;
}
.facility-category-card__facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .facility-category-card__facility {
    gap: 5px;
  }
}
.facility-category-card__facility-icon {
  height: 28px;
  width: auto;
}
@media (max-width: 768px) {
  .facility-category-card__facility-icon {
    height: 20px;
  }
}
.facility-category-card__facility-name {
  font-size: 13px;
  color: #333333;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .facility-category-card__facility-name {
    font-size: 11px;
  }
}

.facility-category-card--large {
  flex: 1 1 100%;
  width: 100%;
}

.facility-category-card--small {
  flex: 0 1 calc(50% - 20px);
  min-width: 280px;
}
@media (max-width: 768px) {
  .facility-category-card--small {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
}

.surrounding-section__map-wrapper {
  position: relative;
}
@media (max-width: 768px) {
  .surrounding-section__map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.surrounding-section__header {
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .surrounding-section__header {
    order: 2;
    margin-top: 3px;
    margin-bottom: 4px;
  }
  .surrounding-section__header::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 24px solid #E7E9DE;
    margin: 10px auto 0;
  }
}
.surrounding-section__header-icon {
  display: block;
  margin: 0 auto 12px;
  width: auto;
  height: 52px;
}
@media (max-width: 768px) {
  .surrounding-section__header-icon {
    display: none;
  }
}
.surrounding-section__catchphrase {
  margin: 0;
  color: #287f4f;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .surrounding-section__catchphrase {
    font-size: 22px;
  }
}
.surrounding-section__catchphrase-line {
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid #DBB600;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.surrounding-section__catchphrase-line:not(:last-child) {
  margin-bottom: 0.3em;
}
.surrounding-section__map {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .surrounding-section__map {
    order: 3;
  }
}
.surrounding-section__map-image {
  width: 100%;
  height: auto;
  display: block;
}
.surrounding-section__fukidashi {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 34%;
  max-width: 460px;
  z-index: 2;
}
@media (min-width: 1200px) {
  .surrounding-section__fukidashi {
    right: calc((100% - 1080px) / 2);
  }
}
@media (max-width: 768px) {
  .surrounding-section__fukidashi {
    position: static;
    transform: none;
    width: 56%;
    max-width: 260px;
    margin: 0 auto 0;
    order: 1;
  }
}
.surrounding-section__fukidashi-image {
  width: 100%;
  height: auto;
  display: block;
}
.surrounding-section__access {
  background-color: #e7e9de;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .surrounding-section__access {
    padding-top: 0;
    padding-bottom: 16px;
  }
}
.surrounding-section__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.surrounding-section__cards {
  display: flex;
  gap: 2%;
  align-items: stretch;
}
@media (max-width: 768px) {
  .surrounding-section__cards {
    flex-direction: column;
    gap: 8px;
  }
}

.surrounding-access-card {
  flex: 1;
  border: 3px solid #287f4f;
  border-radius: 24px;
  padding: 16px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .surrounding-access-card {
    flex-direction: row;
    border: 2px solid #287f4f;
    border-radius: 18px;
    padding: 12px 8px;
    gap: 16px;
    align-items: center;
  }
}
.surrounding-access-card__name {
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  margin: 0 0 6px 0;
}
@media (max-width: 768px) {
  .surrounding-access-card__name {
    flex: 1;
    margin: 0;
    text-align: center;
    font-size: 14px;
  }
}
.surrounding-access-card__right {
  display: contents;
}
@media (max-width: 768px) {
  .surrounding-access-card__right {
    display: flex;
    flex: 1;
    gap: 10px;
    align-items: center;
  }
}
.surrounding-access-card__icon {
  display: block;
  width: 40px;
  height: auto;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .surrounding-access-card__icon {
    width: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.surrounding-access-card__time-group {
  display: contents;
}
@media (max-width: 768px) {
  .surrounding-access-card__time-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
  }
}
.surrounding-access-card__time {
  font-size: 18px;
  color: #287f4f;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .surrounding-access-card__time {
    font-size: 16px;
    text-align: left;
  }
}
.surrounding-access-card__time-value {
  font-size: 23px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .surrounding-access-card__time-value {
    font-size: 20px;
  }
}
.surrounding-access-card__note {
  font-size: 14px;
  color: #287f4f;
  margin: 2px 0 0 0;
}
@media (max-width: 768px) {
  .surrounding-access-card__note {
    font-size: 13px;
    margin: 2px 0 0 0;
    text-align: left;
  }
}

.spot-hero {
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .spot-hero {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 12px;
    border-radius: 0;
  }
}
.spot-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .spot-hero img {
    aspect-ratio: 6/5;
    max-height: 368px;
    height: auto;
  }
}

.spot-lead {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: left;
}
@media (max-width: 768px) {
  .spot-lead {
    margin-bottom: 48px;
  }
}
.spot-lead p {
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .spot-lead p {
    line-height: 1.7;
  }
}

.spot-section {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .spot-section {
    margin-bottom: 56px;
  }
}
.spot-section:not(:last-of-type) {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .spot-section:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
.spot-section + .spot-section {
  padding-top: 32px;
  border-top: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .spot-section + .spot-section {
    padding-top: 24px;
  }
}
.spot-section__content {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .spot-section__content {
    flex-direction: column;
    gap: 24px;
  }
}
.spot-section:nth-of-type(even) .spot-section__content {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .spot-section:nth-of-type(even) .spot-section__content {
    flex-direction: column;
  }
}
.spot-section__image {
  flex: 0 0 40%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .spot-section__image {
    width: 100%;
    flex: none;
  }
}
.spot-section__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.spot-section__text {
  flex: 1;
}
.spot-section__heading {
  font-size: 20px;
  font-weight: 500;
  color: #287f4f;
  margin: 0 0 16px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .spot-section__heading {
    font-size: 18px;
  }
}
.spot-section__heading-line {
  display: block;
}
.spot-section__heading::before {
  content: "";
  display: block;
  width: 60px;
  height: 24px;
  margin: 0 auto 12px;
  background-image: url("assets/images/common/illustrations/illust_hd-stripe-1c.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .spot-section__heading::before {
    width: 50px;
    height: 20px;
    margin-bottom: 10px;
  }
}
.spot-section__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .spot-section__text p {
    line-height: 1.7;
  }
}

.facility-hero {
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .facility-hero {
    margin-bottom: 12px;
  }
}
.facility-hero__image {
  width: 100%;
  height: 440px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .facility-hero__image {
    height: 280px;
  }
}
.facility-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.facility-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .facility-hero__overlay {
    padding-top: 64px;
  }
}
.facility-hero__overlay .page-header {
  margin-bottom: 0;
  margin-top: -24px;
}
@media (max-width: 768px) {
  .facility-hero__overlay .page-header {
    margin-top: -20px;
  }
}

.facility-lead {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: left;
}
@media (max-width: 768px) {
  .facility-lead {
    margin-bottom: 48px;
  }
}
.facility-lead p {
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .facility-lead p {
    line-height: 1.7;
  }
}

.facility-feature__item {
  max-width: 800px;
  margin: 0 auto;
}
.facility-feature__item:nth-of-type(odd):not(:only-of-type) {
  margin-left: 0;
  margin-right: auto;
}
.facility-feature__item:nth-of-type(even) {
  margin-left: auto;
  margin-right: 0;
}
.facility-feature__item:nth-of-type(even) .facility-feature__heading {
  left: auto;
  right: 0;
  align-items: flex-end;
  padding-left: 16px;
  padding-right: 0;
}
@media (max-width: 768px) {
  .facility-feature__item:nth-of-type(even) .facility-feature__heading {
    padding-left: 12px;
    padding-right: 0;
  }
}
.facility-feature__item:not(:last-child) {
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .facility-feature__item:not(:last-child) {
    margin-bottom: 36px;
  }
}
.facility-feature__image-wrapper {
  position: relative;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .facility-feature__image-wrapper {
    margin-bottom: 8px;
  }
}
.facility-feature__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .facility-feature__image {
    border-radius: 4px;
  }
}
.facility-feature__heading {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #287f4f;
  margin: 0;
  padding-left: 0;
  padding-right: 16px;
}
@media (max-width: 768px) {
  .facility-feature__heading {
    bottom: 12px;
    gap: 8px;
    font-size: 18px;
    padding-right: 12px;
  }
}
.facility-feature__heading-line {
  display: inline-block;
  background-color: #fff;
  padding: 8px 12px 9px;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .facility-feature__heading-line {
    padding: 2px 10px 3px;
  }
}
.facility-feature__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .facility-feature__text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.facility-map__image-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.facility-map__image-wrapper a {
  display: block;
  transition: opacity 0.3s ease;
}
.facility-map__image-wrapper a:hover {
  opacity: 0.8;
}
.facility-map__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .facility-map__image {
    border-radius: 4px;
  }
}

.facility-reservation-btn {
  margin-top: 80px;
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .facility-reservation-btn {
    margin-top: 56px;
    margin-bottom: 80px;
  }
}

.archive-page .page-header {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .archive-page .page-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .archive-page .page-header {
    margin-bottom: 32px;
  }
}

.no-posts {
  text-align: center;
  padding: 80px 20px;
  color: #515151;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .no-posts {
    padding: 60px 20px;
  }
}
@media (max-width: 576px) {
  .no-posts {
    padding: 40px 20px;
  }
}

.single-post .entry-header {
  max-width: 800px;
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  .single-post .entry-header {
    margin-bottom: 24px;
  }
}
.single-post .entry-header .entry-title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.4;
  color: #287f4f;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .single-post .entry-header .entry-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.single-post .entry-header .entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .single-post .entry-header .entry-meta {
    gap: 8px 12px;
    padding-bottom: 12px;
  }
}
.single-post .entry-header .entry-meta .posted-on {
  font-size: 14px;
  color: #515151;
  order: 2;
}
@media (max-width: 768px) {
  .single-post .entry-header .entry-meta .posted-on {
    font-size: 13px;
  }
}
.single-post .entry-header .entry-meta .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  order: 1;
}
@media (max-width: 768px) {
  .single-post .entry-header .entry-meta .categories {
    gap: 4px;
  }
}
.single-post .post-thumbnail {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-post .post-thumbnail {
    margin-bottom: 24px;
    border-radius: 6px;
  }
}
.single-post .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post .entry-content {
  max-width: 800px;
  margin: 0 auto 64px;
}
@media (max-width: 768px) {
  .single-post .entry-content {
    margin-bottom: 48px;
  }
}
.single-post .post-navigation {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .single-post .post-navigation {
    padding-top: 24px;
  }
}
.single-post .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .single-post .post-navigation .nav-links {
    gap: 12px;
  }
}
.single-post .post-navigation .nav-links .nav-previous,
.single-post .post-navigation .nav-links .nav-next {
  flex: 1;
  min-width: 0;
}
.single-post .post-navigation .nav-links .nav-previous {
  text-align: left;
}
.single-post .post-navigation .nav-links .nav-next {
  text-align: right;
}
.single-post .post-navigation .nav-links a {
  display: block;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.single-post .post-navigation .nav-links a:hover {
  opacity: 0.7;
}
.single-post .post-navigation .nav-links a .nav-subtitle {
  display: block;
  font-size: 14px;
  color: #515151;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .single-post .post-navigation .nav-links a .nav-subtitle {
    font-size: 13px;
  }
}
.single-post .post-navigation .nav-links a .nav-title {
  display: block;
  font-weight: 500;
  color: #287f4f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-template-page-contact .entry-title {
  font-size: 31px;
  font-weight: 500;
  color: #287f4f;
  text-align: center;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .page-template-page-contact .entry-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

.entry-content:has(.snow-monkey-form[data-screen=confirm]) .contact-intro-text,
.entry-content:has(.snow-monkey-form[data-screen=confirm]) .contact-warning-box {
  display: none;
}

.entry-content .contact-intro-text {
  max-width: 800px;
  margin-bottom: 16px;
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .entry-content .contact-intro-text {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.entry-content .contact-warning-box {
  max-width: 800px;
  margin-bottom: 44px;
  padding: 10px 36px;
  background-color: transparent;
  border: 1px solid #ff0000;
  border-radius: 999px;
  color: #ff0000;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 768px) {
  .entry-content .contact-warning-box {
    font-size: 13px;
    padding: 8px 16px;
    margin-bottom: 32px;
    border-radius: 24px;
  }
}

.entry-content .contact-confirm-text {
  display: none;
  max-width: 800px;
  margin-bottom: 44px;
  padding: 10px 36px;
  background-color: #edfbc6;
  border: none;
  border-radius: 999px;
  color: #287f4f;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .entry-content .contact-confirm-text {
    font-size: 18px;
    padding: 8px 16px;
    margin-bottom: 32px;
    border-radius: 24px;
    text-align: left;
  }
}

.entry-content:has(.snow-monkey-form[data-screen=confirm]) .contact-confirm-text {
  display: block;
}

.smf-progress-tracker {
  max-width: 920px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .smf-progress-tracker {
    margin-bottom: 32px;
  }
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: #287f4f;
  color: #fff;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: #287f4f;
}
.smf-progress-tracker__item__number {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.smf-progress-tracker__item__text {
  transition: color 0.3s ease;
}

.snow-monkey-form {
  max-width: 920px;
  margin: 0 auto;
}

.smf-item {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .smf-item {
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }
}
.smf-item + .smf-item {
  border-top: 1px solid #E4E7DC;
}
@media (max-width: 768px) {
  .smf-item + .smf-item {
    border-top: none;
  }
}
.smf-item:first-child {
  padding-top: 0;
}
.smf-item:last-child {
  padding-bottom: 0;
}
.smf-item__col--label {
  flex: 0 0 40%;
  background-color: #E8ECDA;
  border-radius: 6px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .smf-item__col--label {
    flex: none;
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
  }
}
.smf-item__col--controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .smf-item__col--controls {
    width: 100%;
  }
}

.smf-item__label {
  text-align: center;
  margin-bottom: 0;
}

.smf-item__label__text {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .smf-item__label__text {
    font-size: 14px;
  }
}

.smf-item.required .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  background-color: #287f4f;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 500;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .smf-item.required .smf-item__label__text::after {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 6px;
  }
}

.smf-control-description {
  font-size: 13px;
  color: #707070;
  line-height: 1.6;
  margin-top: 8px;
  text-align: left;
}
@media (max-width: 768px) {
  .smf-control-description {
    font-size: 11px;
    margin-top: 6px;
  }
}

.smf-item.privacy-policy-item .smf-placeholder {
  padding-bottom: 10px;
  margin-left: 5px;
}

.smf-text-control__control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  border: 1px solid #E4E7DC;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .smf-text-control__control {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.smf-text-control__control:focus {
  outline: none;
  border-color: #287f4f;
}
.smf-text-control__control::placeholder {
  color: #707070;
}

.smf-textarea-control__control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  border: 1px solid #E4E7DC;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 120px;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", "MS PGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 768px) {
  .smf-textarea-control__control {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 100px;
  }
}
.smf-textarea-control__control:focus {
  outline: none;
  border-color: #287f4f;
}
.smf-textarea-control__control::placeholder {
  color: #707070;
}

.smf-item.privacy-policy-item .smf-control-description {
  text-align: left;
}
.smf-item.privacy-policy-item .smf-control-description a {
  color: #287f4f;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.smf-item.privacy-policy-item .smf-control-description a:hover {
  opacity: 0.8;
}
.smf-item.privacy-policy-item .smf-item__controls a {
  font-weight: 700;
}
.smf-item.privacy-policy-item p {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .smf-item.privacy-policy-item p {
    text-align: center;
  }
}
.smf-item.privacy-policy-item .smf-checkbox-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .smf-item.privacy-policy-item .smf-checkbox-control {
    justify-content: center;
  }
}
.smf-item.privacy-policy-item .smf-checkbox-control__control {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D4C7;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.smf-item.privacy-policy-item .smf-checkbox-control__control:checked {
  background-color: #287f4f;
  border-color: #287f4f;
}
.smf-item.privacy-policy-item .smf-checkbox-control__control:focus {
  outline: 2px solid #287f4f;
  outline-offset: 2px;
}
.smf-item.privacy-policy-item .smf-checkbox-control__label {
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
@media (max-width: 768px) {
  .smf-item.privacy-policy-item .smf-checkbox-control__label {
    font-size: 13px;
  }
}

.smf-action {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 20px 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .smf-action {
    margin-top: 32px;
  }
}
.smf-action .smf-button-control {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.smf-action .smf-button-control__control {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  position: relative !important;
  background: #287f4f !important;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: opacity 0.3s ease !important;
  cursor: pointer !important;
  white-space: normal !important;
  word-break: break-word !important;
  padding: 20px 56px !important;
  font-size: 20px !important;
}
@media (max-width: 768px) {
  .smf-action .smf-button-control__control {
    padding: 14px 30px !important;
    font-size: 16px !important;
  }
}
.smf-action .smf-button-control__control:hover {
  opacity: 0.9 !important;
  background: #287f4f !important;
  color: #fff !important;
}
.smf-action .smf-button-control__control:focus-visible {
  outline: 3px solid #287f4f !important;
  outline-offset: 4px !important;
}
.smf-action .smf-button-control__control .smf-sending {
  display: none !important;
}
.smf-action .smf-button-control__control[data-action=back] {
  background: transparent !important;
  color: #287f4f !important;
  border: 2px solid #287f4f !important;
}
.smf-action .smf-button-control__control[data-action=back]:hover {
  background: rgba(40, 127, 79, 0.08) !important;
  color: #287f4f !important;
  border-color: #287f4f !important;
}

.smf-system-error-content-ready {
  max-width: 920px;
  margin: 32px auto 0;
  padding: 16px 20px;
  background-color: #fff5f5;
  border: 2px solid #ff0000;
  border-radius: 8px;
  color: #ff0000;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  display: none;
}
@media (max-width: 768px) {
  .smf-system-error-content-ready {
    font-size: 13px;
    margin-top: 24px;
    padding: 12px 16px;
  }
}
.smf-system-error-content-ready.is-visible {
  display: block;
}

.contact-thanks-page .simple-page__text {
  margin-bottom: 36px;
}
.contact-thanks-page .simple-page__contact-info {
  margin-top: 0;
  margin-bottom: 36px;
}

.privacy-policy-page .simple-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-sections {
  margin-top: 0;
}

.privacy-section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .privacy-section {
    margin-bottom: 40px;
  }
}
.privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section__heading {
  font-size: 20px;
  font-weight: 500;
  color: #287f4f;
  line-height: 1.5;
  margin: 0 0 12px;
}
@media (max-width: 768px) {
  .privacy-section__heading {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.privacy-section__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}
@media (max-width: 768px) {
  .privacy-section__text {
    font-size: 15px;
  }
}
.privacy-section__text p {
  margin: 0 0 1em;
}
.privacy-section__text p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */