@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: #000000;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  text-align: left;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.justified-text {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.service-copy {
  font-weight: 500;
  color: #c0a065;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.service-content p,
.philosophy-text,
.trainer-message p,
.info-item p,
.contact-info p,
.footer-logo p {
  text-align: left;
  line-height: 1.8;
}

.highlight {
  color: #c0a065;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

main {
  flex: 1;
}
main::after {
  content: "";
  display: block;
  clear: both;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.keyboard-focus {
  outline: 3px solid #c0a065 !important;
  outline-offset: 3px !important;
  transition: outline-offset 0.2s ease !important;
}

.mouse-focus {
  outline: none !important;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
.accordion-toggle:focus:not(:focus-visible),
.carousel-control:focus:not(:focus-visible),
.faq-toggle:focus:not(:focus-visible),
.access-tab:focus:not(:focus-visible),
[role=button]:focus:not(:focus-visible),
[tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 80px;
}

@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px !important;
    max-width: 100%;
    width: 100%;
  }
  section {
    padding: 60px 0;
  }
}
section.section--compact {
  padding: 60px 0;
}
@media (max-width: 480px) {
  section.section--compact {
    padding: 40px 0;
  }
}

section.section--large {
  padding: 120px 0;
}
@media (max-width: 480px) {
  section.section--large {
    padding: 80px 0;
  }
}

section.section--no-padding-top {
  padding-top: 0;
}

section.section--no-padding-bottom {
  padding-bottom: 0;
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos=fade-right] {
  transform: translateX(-30px);
}
[data-aos][data-aos=fade-right].aos-animate {
  transform: translateX(0);
}
[data-aos][data-aos=fade-left] {
  transform: translateX(30px);
}
[data-aos][data-aos=fade-left].aos-animate {
  transform: translateX(0);
}
[data-aos][data-aos=zoom-in] {
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}
[data-aos][data-aos=zoom-in].aos-animate {
  transform: scale(1);
  opacity: 1;
}
[data-aos][data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-15deg);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
[data-aos][data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  display: none !important;
}

.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }
}

.desktop-only {
  display: inline;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-height: 70px;
  }
  .container {
    padding: 0 30px;
  }
  .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  display: block;
  font-size: 1.2rem;
  color: #c0a065;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 0;
  font-size: 3rem;
  padding-bottom: 30px;
  position: relative;
  color: #c0a065;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1rem auto 2rem;
  color: #666666;
}
.trainers .section-description, .blog .section-description {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 480px) {
  .section-description {
    font-size: 0.95rem;
  }
}

.cta-button,
.nav-cta-button,
.service-button,
.form-next-btn,
.form-prev-btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
.cta-button,
.nav-cta-button,
.service-button,
.form-next-btn,
.form-prev-btn {
  background-color: #c0a065;
  color: #ffffff;
  border: 2px solid #c0a065;
  box-shadow: 0 4px 10px rgba(192, 160, 101, 0.3);
}
@media (min-width: 769px) {
  .cta-button:hover,
  .nav-cta-button:hover,
  .service-button:hover,
  .form-next-btn:hover,
  .form-prev-btn:hover {
    background-color: #a58845;
    border-color: #a58845;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 160, 101, 0.2);
  }
}

.service-button {
  padding: 10px 25px;
  margin-top: 15px;
  font-size: 0.95rem;
  background-color: transparent;
  color: #c0a065;
  border: 1px solid #c0a065;
  box-shadow: none;
}
@media (min-width: 769px) {
  .service-button:hover {
    background-color: #c0a065;
    color: #ffffff;
  }
}

.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
.secondary-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
@media (min-width: 769px) {
  .secondary-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
  }
}

.form-next-btn,
.form-prev-btn {
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-next-btn:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
}

.form-prev-btn {
  background-color: transparent;
  color: #000000;
  border-color: #666666;
  box-shadow: none;
}
.form-prev-btn:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.8rem;
}
@media (min-width: 769px) {
  .form-prev-btn:hover {
    background-color: #666666;
    border-color: #666666;
    color: #ffffff;
  }
}

.cta-enhanced {
  background: linear-gradient(135deg, #c0a065, rgb(214.2096774194, 193.4907834101, 155.2903225806)) !important;
  border: 2px solid rgba(206.8064516129, 182.3271889401, 137.1935483871, 0.7) !important;
  box-shadow: 0 0 15px rgba(192, 160, 101, 0.4);
  animation: ctaPulse 2s infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  letter-spacing: 0.5px !important;
}
@media (min-width: 769px) {
  .cta-enhanced:hover {
    background: linear-gradient(135deg, rgb(199.4032258065, 171.16359447, 119.0967741935), #c0a065) !important;
    border-color: rgb(206.8064516129, 182.3271889401, 137.1935483871) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 0 25px rgba(192, 160, 101, 0.6) !important;
  }
}
.cta-enhanced:active {
  transform: translateY(1px) !important;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 15px rgba(192, 160, 101, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(192, 160, 101, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(192, 160, 101, 0.4);
  }
}
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 60px;
}

.carousel {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.carousel-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  color: #000000;
}
@media (min-width: 769px) {
  .carousel-control:hover {
    background-color: #c0a065;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  .carousel-control:hover i {
    color: white;
  }
}
.carousel-control:focus {
  outline: none;
}
.carousel-control:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(192, 160, 101, 0.3), 0 3px 15px rgba(0, 0, 0, 0.1);
}
.carousel-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.carousel-control i {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(192, 160, 101, 0.2);
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dots .dot.active {
  background-color: #c0a065;
  transform: scale(1.2);
}
@media (min-width: 769px) {
  .carousel-dots .dot:hover {
    background-color: #c0a065;
    transform: scale(1.1);
  }
}
.carousel-dots .dot:focus {
  outline: none;
}
.carousel-dots .dot:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 5px;
  }
  .carousel-controls {
    left: -10px;
    right: -10px;
    padding: 0;
    opacity: 0.7;
  }
  .carousel-control {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .carousel-control {
    width: 36px;
    height: 36px;
  }
  .carousel-control i {
    font-size: 1rem;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 80px;
}
.header-hidden {
  transform: translateY(-100%);
  box-shadow: none;
  transition: transform 0.15s ease-out;
}
.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.9);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}

.logo a {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.logo-img:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
  background-color: transparent;
  border: none;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu ul {
  display: flex;
  list-style: none;
}
.nav-menu ul li {
  margin-left: 25px;
  position: relative;
}
.nav-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: block;
}
.nav-menu ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #c0a065;
  transition: all 0.3s ease;
}
.nav-menu ul li a:hover, .nav-menu ul li a.active {
  color: #c0a065;
}
.nav-menu ul li a:hover:after, .nav-menu ul li a.active:after {
  width: 100%;
}
.nav-menu .nav-cta {
  margin-left: 30px;
}

.nav-cta-button:hover {
  transform: none !important;
}

.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
}
.dropdown:hover .dropdown-menu, .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-direction: column;
  display: flex;
}
.dropdown-menu li {
  margin: 0 !important;
  width: 100%;
}
.dropdown-menu li a {
  padding: 8px 20px !important;
  color: #ffffff;
  font-size: 0.9rem;
  width: 100%;
}
.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1190px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 990;
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }
  .nav-menu ul li {
    margin: 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu ul li:last-child {
    border-bottom: none;
  }
  .nav-menu ul li a {
    padding: 15px 0;
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  .nav-menu .nav-cta {
    margin: 20px 0 0;
    width: 100%;
  }
  .nav-menu .nav-cta-button {
    width: 100%;
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    display: none !important;
    opacity: 1;
    visibility: hidden;
    transform: none;
    padding-left: 15px;
  }
  .dropdown-menu li {
    border-bottom: none !important;
  }
  .dropdown-menu li a {
    font-size: 1rem !important;
    padding: 8px 0 !important;
  }
  .dropdown.show .dropdown-menu {
    display: flex !important;
    visibility: visible;
  }
  .dropdown-toggle:after {
    position: absolute;
    right: 0;
  }
  .dropdown:hover .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .dropdown.show:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
.footer-main {
  background-color: rgba(192, 160, 101, 0.7);
  padding: 80px 0 50px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 60px;
  align-items: start;
}
.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  display: block;
}
.footer-logo p {
  color: rgba(0, 0, 0, 0.7);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-links-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #000000;
}
.footer-links-column ul {
  list-style: none;
}
.footer-links-column ul li {
  margin-bottom: 10px;
}
.footer-links-column ul li a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links-column ul li a:hover {
  color: #000000;
  padding-left: 5px;
  font-weight: 500;
}
.footer-bottom {
  background-color: #000000;
  padding: 30px 0;
}
.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
  grid-column: 2;
}

.social-icons {
  display: flex;
  gap: 15px;
  grid-column: 1;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #c0a065;
  transform: translateY(-3px);
  text-decoration: none;
}
.social-icons a i {
  font-size: 1.2rem;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  grid-column: 3;
}
.footer-policy-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-policy-links a:hover {
  color: #c0a065;
  text-decoration: none;
}

@media (max-width: 992px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    gap: 30px;
  }
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-content p {
    grid-column: 1;
    order: 1;
  }
  .social-icons {
    grid-column: 1;
    justify-content: center;
    order: 2;
  }
  .footer-policy-links {
    grid-column: 1;
    justify-content: center;
    order: 3;
  }
}
@media (max-width: 480px) {
  .footer-main {
    padding: 50px 0 30px;
  }
  .footer-content {
    gap: 30px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-links-column {
    text-align: left;
  }
  .footer-links-column h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 1rem;
  }
  .footer-links-column h3:after {
    margin-left: 0;
  }
  .footer-links-column ul li {
    margin-bottom: 8px;
  }
  .footer-logo h2 {
    font-size: 1.8rem;
  }
  .footer-bottom {
    padding: 25px 0;
  }
  .footer-bottom-content {
    gap: 15px;
  }
  .footer-bottom p {
    font-size: 0.85rem;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icons a {
    width: 36px;
    height: 36px;
  }
  .social-icons a i {
    font-size: 1rem;
  }
  .footer-policy-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-policy-links a {
    font-size: 0.85rem;
  }
}
.fixed-cta {
  display: none;
}
@media (max-width: 1190px) {
  .fixed-cta {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
  }
  .fixed-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.fixed-cta-button {
  display: inline-block;
  background-color: #c0a065;
  color: #ffffff;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
  border: 2px solid #c0a065;
}
.fixed-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .fixed-cta {
    width: 100%;
    right: 0;
    bottom: 0px;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .fixed-cta-button {
    width: 90%;
    padding: 12px 20px;
    font-size: 0.9rem;
    box-shadow: none;
    text-align: center;
  }
  .fixed-cta-button:hover {
    transform: none;
    box-shadow: none;
  }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #000000;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
}
@media (max-height: 850px) {
  .hero-content {
    gap: 3rem;
  }
}
@media (max-height: 700px) {
  .hero-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-content {
    gap: 4rem;
  }
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: simpleFadeIn 2s ease-out 0.5s forwards;
}
.hero-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  padding: 0 20px;
}
@media (max-height: 850px) {
  .hero-brand-logo {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .hero-brand-logo {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .hero-brand-logo {
    max-width: 280px;
    padding: 0 15px;
  }
}
.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(192, 160, 101, 0.3));
  transition: filter 0.3s ease;
}
@media (hover: hover) {
  .hero-logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(192, 160, 101, 0.5));
  }
}
.hero-text {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: simpleFadeIn 2s ease-out 0.5s forwards;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .hero-text {
    max-width: 400px;
    gap: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero-text {
    max-width: 350px;
    padding: 0 15px;
    gap: 1rem;
  }
}
.hero-copy-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
@media (max-height: 850px) {
  .hero-copy-img {
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  .hero-copy-img {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .hero-copy-img {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .hero-copy-img {
    max-width: 280px;
  }
}
.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero-description {
    font-size: 1rem;
  }
}

@keyframes simpleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.features {
  background-color: #ffffff;
}
.features-grid {
  max-width: 900px;
  margin: 60px auto 0;
}
.features-cta {
  text-align: center;
  margin-top: 50px;
}
.features-cta .cta-button {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.feature-item {
  display: flex;
  margin-bottom: 60px;
  transition: all 0.3s ease;
}
.feature-item:last-child {
  margin-bottom: 0;
}
.feature-item:hover {
  transform: translateY(-5px);
}

.feature-number {
  width: 80px;
  height: auto;
  min-width: 80px;
  margin-right: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  position: relative;
}
.feature-content p {
  color: #666666;
  margin-bottom: 0;
}

.section-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0;
  padding: 20px 0;
}
.section-connector .connector-line {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 150px;
}
.section-connector .connector-text {
  padding: 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #c0a065;
  text-align: center;
}

@media (max-width: 992px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .feature-item .feature-content h3:after {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-number {
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .feature-item .feature-content h3:after {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-number {
    width: 60px;
    min-width: 60px;
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-connector {
    flex-direction: column;
    gap: 15px;
  }
  .section-connector .connector-line {
    width: 100%;
    max-width: 100%;
    height: 1px;
  }
}
.services {
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(192, 160, 101, 0.2), transparent 70%);
  z-index: 1;
}
.services .container {
  position: relative;
  z-index: 2;
}
.services .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.subsection-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .subsection-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .subsection-title {
    font-size: 1.8rem;
  }
}

.subsection-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
}
.subsection-description .highlight {
  font-weight: 600;
  color: #c0a065;
}
@media (max-width: 480px) {
  .subsection-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
}

.service-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  background-color: rgba(50, 50, 50, 0.8);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  .service-item:hover {
    border-color: rgba(192, 160, 101, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  .service-item:hover .service-image img {
    transform: scale(1.05);
  }
}
@media (max-width: 480px) {
  .service-item .service-image img {
    max-height: 200px;
  }
}

.service-image,
.service-content {
  flex: 1;
}

.service-image {
  height: auto;
  position: relative;
  overflow: hidden;
  flex: 0 0 50%;
}
.service-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}
.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-item:nth-child(even) .service-title {
  left: auto;
  right: 30px;
}
@media (max-width: 992px) {
  .service-title {
    bottom: 25px;
    left: 25px;
  }
  .service-item:nth-child(even) .service-title {
    left: 25px;
    right: auto;
  }
}
@media (max-width: 480px) {
  .service-title {
    bottom: 20px;
    left: 20px;
  }
  .service-item:nth-child(even) .service-title {
    left: 20px;
    right: auto;
  }
}

.service-title-ja {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 2px;
}
@media (max-width: 480px) {
  .service-title-ja {
    font-size: 0.9rem;
  }
}

.service-title-en {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  .service-title-en {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .service-title-en {
    font-size: 1.6rem;
  }
}

.service-content {
  padding: 65px;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}
.service-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .service-content h3 a:hover {
    color: #c0a065;
  }
}
.service-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 1.05rem;
}
@media (max-width: 992px) {
  .service-content h3 {
    font-size: 1.8rem;
  }
  .service-content p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .service-content {
    padding: 45px;
  }
}
@media (max-width: 480px) {
  .service-content {
    padding: 35px;
  }
  .service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
  }
}

.service-features {
  list-style: none;
  margin-bottom: 0;
}
.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}
.service-features li i {
  color: #c0a065;
  margin-right: 12px;
  font-size: 1.1rem;
}
.service-features li:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .service-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  .service-features li i {
    font-size: 1rem;
    margin-right: 10px;
  }
}

.custom-plans {
  margin: 80px 0;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
}
@media (max-width: 1184px) and (min-width: 760px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 759px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.method-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1184px) and (min-width: 760px) {
  .method-card {
    grid-column: span 2;
    order: -1;
  }
}
@media (max-width: 759px) {
  .method-card {
    order: -1;
  }
}
.method-card:hover {
  transform: none;
}
.method-card picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-card-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 1184px) and (min-width: 760px) {
  .method-card-image {
    max-height: 200px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .method-card-image {
    width: 80%;
  }
}

.service-card {
  width: 100%;
  max-width: 350px;
  background-color: rgba(40, 40, 40, 0.9);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(192, 160, 101, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
  .service-card:hover .service-card-image img {
    transform: scale(1.1);
  }
  .service-card:hover .service-card-image .service-card-overlay {
    opacity: 1;
  }
}
@media (max-width: 759px) {
  .service-card {
    max-width: 100%;
  }
  .service-card:nth-child(n+5) {
    display: none;
  }
  .service-card.method-card {
    display: flex;
  }
}

@media (max-width: 759px) {
  .service-cards-grid.show-all .service-card:nth-child(n+5) {
    display: block;
    animation: fadeInCard 0.4s ease-out forwards;
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.show-all-cards-container {
  display: none;
  margin-top: 30px;
}
@media (max-width: 759px) {
  .show-all-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.show-all-cards-btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
.show-all-cards-btn {
  background-color: #c0a065;
  color: #ffffff;
  border: 2px solid #c0a065;
  box-shadow: 0 4px 10px rgba(192, 160, 101, 0.3);
}
@media (min-width: 769px) {
  .show-all-cards-btn:hover {
    background-color: #a58845;
    border-color: #a58845;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 160, 101, 0.2);
  }
}
.show-all-cards-btn {
  padding: 14px 35px;
  font-size: 1rem;
  background-color: transparent;
  color: #c0a065;
  border: 2px solid #c0a065;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.show-all-cards-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
@media (min-width: 769px) {
  .show-all-cards-btn:hover {
    background-color: #c0a065;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 160, 101, 0.3);
  }
  .show-all-cards-btn:hover i {
    transform: translateY(3px);
  }
}
.show-all-cards-btn:active {
  transform: translateY(0);
}
.show-all-cards-btn.hidden {
  animation: fadeOutButton 0.3s ease-out forwards;
}

@keyframes fadeOutButton {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.service-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: rgba(20, 20, 20, 0.8);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .service-card-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .service-card-image {
    height: 180px;
  }
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 160, 101, 0.95), rgba(153.6451612903, 121.7188940092, 62.8548387097, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.effect-list {
  width: 100%;
}
.effect-list .effect-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 0.5px;
}
.effect-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.effect-list ul li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.effect-list ul li:last-child {
  margin-bottom: 0;
}
.effect-list ul li i {
  margin-right: 10px;
  font-size: 0.8rem;
  opacity: 0.8;
  flex-shrink: 0;
}

.service-card-content {
  padding: 25px;
}
.service-card-content h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
}
.service-card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .service-card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .service-card-content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .service-card-content h4 {
    font-size: 1.15rem;
  }
  .service-card-content p {
    font-size: 0.88rem;
  }
}

.services-cta {
  text-align: center;
  margin-top: 100px;
}
.services-cta p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}
.services-cta .cta-button {
  padding: 15px 35px;
  font-size: 1.1rem;
  background-color: #c0a065;
  border-color: #c0a065;
}
@media (min-width: 769px) {
  .services-cta .cta-button:hover {
    background-color: rgb(199.4032258065, 171.16359447, 119.0967741935);
    border-color: rgb(199.4032258065, 171.16359447, 119.0967741935);
  }
}
@media (max-width: 992px) {
  .services-cta {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .services-cta {
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  .services-cta {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .service-item,
  .service-item:nth-child(even) {
    flex-direction: column;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .service-image,
  .service-content {
    width: 100%;
  }
  .service-image {
    max-height: 250px;
    position: relative;
  }
  .service-image img {
    position: relative;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .service-item,
  .service-item:nth-child(even) {
    margin: 0 auto;
  }
  .custom-plans {
    margin: 40px 0;
  }
  .service-image {
    max-height: 200px;
  }
  .services-cta p {
    font-size: 1rem;
  }
  .services-cta .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
  }
}
.trainers {
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
.trainers-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.trainers-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.trainers-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.trainers .container {
  position: relative;
  z-index: 3;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0;
}

.trainers-carousel {
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 0;
}
@media (min-width: 1210px) {
  .trainers-carousel {
    width: 1015px;
  }
}
@media (min-width: 865px) and (max-width: 1209px) {
  .trainers-carousel {
    width: 670px;
  }
}
@media (max-width: 864px) {
  .trainers-carousel {
    width: 325px;
  }
}

.trainers-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trainer-card {
  flex: 0 0 325px;
  width: 325px;
  min-width: 325px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 865px) {
  .trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  .trainer-card:hover .trainer-image img {
    transform: scale(1.05);
  }
}

.trainer-image {
  height: 300px;
  overflow: hidden;
}
.trainer-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.trainer-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.trainer-info h3 {
  font-size: 1.3rem;
  margin-bottom: 7.5px;
  color: #000000;
}

.trainer-position {
  color: #c0a065;
  font-weight: 600;
  margin-bottom: 7.5px;
  font-size: 0.95rem;
}

.trainer-speciality {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 0px;
  min-height: 46px;
}
.trainer-speciality a {
  color: #666666;
  text-decoration: none;
}
.trainer-speciality a::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7em;
  opacity: 0.8;
}

.trainer-message {
  margin-top: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}
@media (max-width: 864px) {
  .trainer-message {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .trainer-message {
    margin-top: 3px;
  }
}
.trainer-message p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: justify !important;
}
@media (max-width: 480px) {
  .trainer-message p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (max-width: 864px) {
  .trainers .carousel-controls .carousel-control {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.pricing {
  background-color: #ffffff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.pricing-more {
  text-align: center;
  margin-top: 40px;
}
.pricing-more .secondary-button {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 30px;
  transition: all 0.3s ease;
}
.pricing-more .secondary-button:hover {
  background-color: #c0a065;
  color: white;
  border-color: #c0a065;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
  padding-bottom: 30px;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid #c0a065;
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}
@media (max-width: 480px) {
  .pricing-card:hover {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: scale(1) translateY(0px);
  }
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #c0a065;
  color: #ffffff;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #ebebec;
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c0a065;
  text-align: center;
}
.pricing-price span {
  font-size: 1rem;
  color: #666666;
  font-weight: 400;
}

.pricing-features {
  padding: 30px;
}
.pricing-features ul {
  list-style: none;
}
.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #333333;
}
.pricing-features li.not-included {
  color: #999999;
}
.pricing-features li.not-included i {
  color: #999999;
}
.pricing-features li i {
  margin-right: 10px;
  color: #c0a065;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding-bottom: 0;
  }
  .pricing-header {
    padding-bottom: 0;
  }
  .pricing-features {
    padding-top: 0;
  }
}
.faq {
  background-color: #ebebec;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-more {
  text-align: center;
  margin-top: 100px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}
.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}
.faq-item.active .faq-toggle {
  background-color: #c0a065;
  color: #ffffff;
}
.faq-item.active .faq-answer {
  padding: 0 30px 30px;
  height: auto;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  background-color: #ffffff;
}
.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #000000;
  flex: 1;
  padding-right: 30px;
}
.faq-question:focus {
  outline: none;
}
.faq-question:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(192, 160, 101, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #c0a065;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.faq-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.faq-toggle:focus {
  outline: none;
}
.faq-toggle:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}

.faq-answer {
  padding: 0 30px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  color: #666666;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .faq-item .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 40px;
  }
  .faq-item:hover {
    box-shadow: none;
    transform: none;
  }
}
.news {
  background-color: #ffffff;
}
.news .section-description {
  color: #666666;
}

.news-list {
  max-width: 900px;
  margin: 0 auto 50px;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(102, 102, 102, 0.15);
  transition: all 0.3s ease;
  gap: 30px;
}
.news-item:first-child {
  border-top: 1px solid rgba(102, 102, 102, 0.15);
}
@media (min-width: 769px) {
  .news-item:hover {
    background-color: rgba(192, 160, 101, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .news-item:hover .news-title a {
    color: #c0a065;
  }
}
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.news-date {
  flex-shrink: 0;
  color: #c0a065;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 100px;
}
@media (max-width: 768px) {
  .news-date {
    font-size: 0.85rem;
    min-width: auto;
  }
}

.news-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.news-title a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
@media (min-width: 769px) {
  .news-title a:hover {
    color: #c0a065;
  }
}
.news-title a:focus-visible {
  outline: 2px solid #c0a065;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .news-title {
    font-size: 1rem;
  }
}

.news-more-link {
  text-align: center;
  margin-top: 100px;
}
.news-more-link .secondary-button {
  background-color: transparent;
  color: #c0a065;
  border: 2px solid #c0a065;
  padding: 12px 40px;
}
@media (min-width: 769px) {
  .news-more-link .secondary-button:hover {
    background-color: #c0a065;
    color: #ffffff;
    border-color: #c0a065;
  }
}
@media (max-width: 768px) {
  .news-more-link .secondary-button {
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  .news-more-link .secondary-button {
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  .news-more-link {
    margin-top: 40px;
  }
  .news-more-link .secondary-button {
    font-size: 0.9rem;
  }
}

.news-item--draft {
  opacity: 0.6;
}
.news-item--draft::before {
  content: "下書き";
  display: inline-block;
  background-color: #ff9800;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
}

.news-item--new {
  position: relative;
}
.news-item--new::before {
  content: "NEW";
  position: absolute;
  top: 30px;
  left: -10px;
  background-color: #B71C1C;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  transform: rotate(-5deg);
  z-index: 1;
}

.column {
  background-color: #ffffff;
  color: #000000;
  overflow: hidden;
}
.column .container {
  position: relative;
  z-index: 3;
}
.column .section-description {
  color: #666666;
}
.column-loading, .column-error {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-loading {
  color: #666;
}
.column-error {
  color: #d9534f;
  background-color: rgba(217, 83, 79, 0.05);
  border-radius: 8px;
}
.column-more-link {
  text-align: center;
  margin-top: 85px;
}
.column-more-link .secondary-button {
  background-color: transparent;
  color: #c0a065;
  border: 2px solid #c0a065;
}
.column-more-link .secondary-button:hover {
  background-color: #c0a065;
  color: #ffffff;
  border-color: #c0a065;
}

.column-carousel {
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 0;
}
@media (min-width: 1210px) {
  .column-carousel {
    width: 1015px;
  }
}
@media (min-width: 865px) and (max-width: 1209px) {
  .column-carousel {
    width: 670px;
  }
}
@media (max-width: 864px) {
  .column-carousel {
    width: 325px;
  }
}

.column-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.column-card {
  flex: 0 0 325px;
  width: 325px;
  min-width: 325px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 865px) {
  .column-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
    border-color: rgba(0, 0, 0, 0.12);
  }
  .column-card:hover .column-image img {
    transform: scale(1.05);
  }
  .column-card:hover .column-more {
    color: #a58845;
  }
}

.column-image {
  height: 170px;
  overflow: hidden;
  position: relative;
}
.column-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.column-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.column-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #000000;
}

.column-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.column-meta .column-date {
  font-size: 0.85rem;
  color: #666666;
  margin-right: 15px;
}
.column-meta .column-category {
  font-size: 0.8rem;
  padding: 3px 10px;
  background-color: rgba(192, 160, 101, 0.1);
  color: #c0a065;
  border-radius: 50px;
  font-weight: 600;
}

.column-title {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 85px;
}
.column-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.column-title a:hover {
  color: #c0a065;
}
@media (max-width: 864px) {
  .column-title {
    font-size: 0.95rem;
    height: 70px;
  }
}

.column-excerpt {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.column-more {
  color: #c0a065;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.column-more i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.column-more:hover i {
  transform: translateX(5px);
}

.column .carousel-controls .carousel-control {
  background-color: rgba(192, 160, 101, 0.5);
  color: white;
}

.access {
  background-color: #ebebec;
}
.access-tabs {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.access-tab {
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #333333;
  transition: all 0.3s ease;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.access-tab:hover {
  color: #c0a065;
}
.access-tab.active {
  background-color: #c0a065;
  color: #ffffff;
}
.access-tab:focus {
  outline: none;
}
.access-tab:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}
.access-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.access-content.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  opacity: 1;
  transform: translateY(0);
  max-width: 900px;
  margin: 0 auto;
}
.access-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  height: 100%;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.access-info {
  display: flex;
  flex-direction: column;
}
.access-cta {
  margin-top: 30px;
}

.info-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 24px;
  padding: 0 0 25px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.info-icon i {
  color: #c0a065;
  font-size: 1.125rem;
  line-height: 1;
}

.info-content {
  min-width: 0;
}
.info-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  opacity: 0.6;
}
.info-content p {
  color: #000000;
  line-height: 1.75;
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .info-item {
    grid-template-columns: 20px 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .info-icon i {
    font-size: 1rem;
  }
  .info-content h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .info-content p {
    font-size: 0.95rem;
  }
}
@media (max-width: 992px) {
  .access-content.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .access-map {
    height: 400px;
  }
  .access-tabs {
    flex-wrap: wrap;
  }
  .access-tab {
    flex: 1 0 auto;
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .access-tab {
    font-size: 0.9rem;
  }
  .access-map {
    height: 250px;
  }
}
.business {
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
.business-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.business-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.business-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(192, 160, 101, 0.1), transparent 60%);
  z-index: 1;
}
.business .container {
  position: relative;
  z-index: 3;
}
.business .section-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.business-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .business-grid {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .business-grid {
    gap: 25px;
  }
}

.business-card {
  background-color: rgb(255, 255, 255);
  padding: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 400px 1fr;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 769px) {
  .business-card:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgba(192, 160, 101, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 992px) {
  .business-card {
    grid-template-columns: 300px 1fr;
    min-height: 260px;
  }
}
@media (max-width: 768px) {
  .business-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.business-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(192, 160, 101, 0.2), rgba(192, 160, 101, 0.05));
}
.business-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .business-image {
    min-height: 220px;
    max-height: 300px;
  }
}
@media (max-width: 480px) {
  .business-image {
    min-height: 180px;
    max-height: 200px;
  }
}

.business-content {
  display: flex;
  flex-direction: column;
  padding: 35px 40px;
  justify-content: space-between;
}
.business-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #000000;
  font-weight: 700;
}
@media (max-width: 480px) {
  .business-content h3 {
    font-size: 1.6rem;
  }
}

.business-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.business-header h3 {
  margin-bottom: 0;
}
.business-header .business-subtitle {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .business-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .business-header h3 {
    margin-bottom: 8px;
  }
  .business-header .business-subtitle {
    margin-bottom: 0;
  }
}

.business-subtitle {
  font-size: 0.95rem;
  color: #c0a065;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .business-subtitle {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

.business-description {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-align: justify;
}
@media (max-width: 480px) {
  .business-description {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
}
.business-description a {
  color: #c0a065;
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 160, 101, 0.4);
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .business-description a:hover {
    color: rgb(206.8064516129, 182.3271889401, 137.1935483871);
    border-bottom-color: rgb(206.8064516129, 182.3271889401, 137.1935483871);
  }
}
.business-description a::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 4px;
  font-size: 0.8em;
  opacity: 0.7;
}

.business-achievements {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .business-achievements {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .business-achievements {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}

.business-achievement-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  background-color: #ebebec;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
  padding: 8px;
}
@media (max-width: 768px) {
  .business-achievement-label {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .business-achievement-label {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 0.7rem;
    padding: 6px;
  }
}

.business-achievement-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.business-achievement a::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.7em;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.business-achievement a, .business-achievement span {
  display: inline-flex;
  align-items: center;
  color: #c0a065;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 18px;
}
.business-achievement a::before, .business-achievement span::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .business-achievement a:hover, .business-achievement span:hover {
    color: rgb(214.2096774194, 193.4907834101, 155.2903225806);
    padding-left: 22px;
  }
  .business-achievement a:hover::before, .business-achievement span:hover::before {
    opacity: 1;
    color: rgb(214.2096774194, 193.4907834101, 155.2903225806);
  }
  .business-achievement a:hover::after, .business-achievement span:hover::after {
    opacity: 1;
    transform: translateX(2px);
  }
}
@media (max-width: 480px) {
  .business-achievement a {
    font-size: 0.85rem;
  }
}

.business-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .business-actions {
    gap: 10px;
  }
}

.business-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background-color: transparent;
  color: #c0a065;
  border: 2px solid #c0a065;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.business-action-btn i {
  font-size: 0.85rem;
}
@media (min-width: 769px) {
  .business-action-btn:hover {
    background-color: #c0a065;
    color: #ffffff;
    border-color: #c0a065;
  }
}
.business-action-btn.video-btn i::before {
  content: "\f04b";
}
.business-action-btn.document-btn i::before {
  content: "\f1c1";
}
@media (max-width: 480px) {
  .business-action-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    font-size: 0.85rem;
  }
}

.business-cta {
  text-align: center;
  padding: 30px 0px;
  -webkit-backdrop-filter: blur(10px);
}
.business-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 480px) {
  .business-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 769px) {
  .modal-content *:hover {
    opacity: 1 !important;
  }
}
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.modal-close i {
  font-size: 1.5rem;
  color: #000000;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .modal-close:hover {
    background-color: rgba(244, 67, 54, 0.1);
    transform: rotate(90deg);
  }
  .modal-close:hover i {
    color: #f44336;
  }
}
.modal-close:focus {
  outline: none;
}
.modal-close.keyboard-focus {
  outline: none !important;
  box-shadow: none !important;
}
.modal-close:focus-visible {
  outline: 2px solid #c0a065;
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  .modal-close i {
    font-size: 1.2rem;
  }
}
.modal-title {
  padding: 30px 30px 20px;
  margin: 0;
  font-size: 1.5rem;
  color: #000000;
  border-bottom: 2px solid #ebebec;
}
@media (max-width: 480px) {
  .modal-title {
    font-size: 1.2rem;
  }
}
.modal-body {
  padding: 30px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000000;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-container .custom-video {
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #000000;
  transition: none;
}
.video-container .custom-video:hover {
  opacity: 1;
  filter: none;
  transform: none;
}
.video-container .custom-video::-webkit-media-controls-play-button, .video-container .custom-video::-webkit-media-controls-timeline, .video-container .custom-video::-webkit-media-controls-current-time-display, .video-container .custom-video::-webkit-media-controls-time-remaining-display, .video-container .custom-video::-webkit-media-controls-mute-button, .video-container .custom-video::-webkit-media-controls-volume-slider, .video-container .custom-video::-webkit-media-controls-fullscreen-button {
  filter: brightness(1.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body.modal-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .business-grid {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .business-grid {
    gap: 25px;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .business-grid {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.contact {
  background-color: #ffffff;
}
.contact .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.contact-info {
  padding-right: 30px;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
}
.contact-info > p {
  color: #666666;
  margin-bottom: 30px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-link {
  color: #c0a065;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-form-link:hover {
  text-decoration: underline;
}
.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
}

.contact-method {
  display: flex;
  align-items: center;
  background-color: #ebebec;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.contact-method i {
  font-size: 25px;
  color: #c0a065;
  margin-right: 20px;
}
.contact-method h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.contact-method p {
  margin-bottom: 0;
  color: #333333;
}
.contact-method p.small {
  font-size: 0.8rem;
  color: #666666;
}
@media (max-width: 768px) {
  .contact-method i {
    font-size: 20px;
    margin-right: 15px;
  }
  .contact-method:hover {
    transform: none;
    box-shadow: none;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(192, 160, 101, 0.3);
}
.contact-card.highlight {
  background: linear-gradient(135deg, rgba(192, 160, 101, 0.05) 0%, rgba(192, 160, 101, 0.1) 100%);
  border-color: rgba(192, 160, 101, 0.3);
}
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000000;
}
@media (max-width: 480px) {
  .contact-card:hover {
    transform: none;
  }
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c0a065, rgb(206.8064516129, 182.3271889401, 137.1935483871));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(192, 160, 101, 0.2);
}
.contact-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.contact-details p {
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}
.contact-details:has(.btn-contact) > p {
  min-height: 3em;
}
.contact-details .contact-primary {
  color: #000000;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-details .contact-secondary {
  font-size: 0.9rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
  background-color: transparent;
  color: #c0a065;
  border: 2px solid #c0a065;
}
.btn-contact:hover {
  background-color: #c0a065;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-contact.primary {
  background-color: #c0a065;
  color: #ffffff;
}
.btn-contact.primary:hover {
  background-color: #a58845;
  border-color: #a58845;
}
.btn-contact i {
  margin-left: 8px;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .btn-contact {
    width: 100%;
    justify-content: center;
  }
  .btn-contact:hover {
    transform: none;
  }
}

.social-section {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background-color: #ebebec;
  border-radius: 8px;
}

.social-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #000000;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 188px;
  justify-content: center;
}
.social-link i {
  margin-right: 10px;
  font-size: 1.2rem;
}
.social-link.youtube {
  background-color: #ff0000;
  color: #ffffff;
}
.social-link.youtube:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
}
.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.social-link.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 104, 60, 0.4);
}
.social-link.facebook {
  background-color: #1877f2;
  color: #ffffff;
}
.social-link.facebook:hover {
  background-color: rgb(11.4549180328, 95.1639344262, 203.5450819672);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .social-link {
    width: 100%;
    max-width: 300px;
  }
  .social-link:hover {
    transform: none;
  }
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .contact-methods {
    gap: 15px;
  }
  .contact-form {
    padding: 25px 15px;
  }
}
.facility {
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
.facility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(192, 160, 101, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.facility .container {
  position: relative;
  z-index: 2;
}
.facility .section-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

.facility-carousel {
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 0;
}
@media (min-width: 1210px) {
  .facility-carousel {
    width: 1015px;
  }
}
@media (min-width: 865px) and (max-width: 1209px) {
  .facility-carousel {
    width: 670px;
  }
}
@media (max-width: 864px) {
  .facility-carousel {
    width: 325px;
  }
}

.facility-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-card {
  flex: 0 0 325px;
  width: 325px;
  min-width: 325px;
  background-color: rgba(40, 40, 40, 0.9);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .facility-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 160, 101, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
  .facility-card:hover .facility-card-image img {
    transform: scale(1.08);
  }
}

.facility-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(20, 20, 20, 0.8);
}
.facility-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.facility-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 924px) {
  .facility-card-image {
    height: 220px;
  }
}

.facility-card-content {
  padding: 25px;
}
.facility-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.facility-card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 924px) {
  .facility-card-content {
    padding: 20px;
  }
  .facility-card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .facility-card-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

@media (max-width: 924px) {
  .facility .carousel-controls .carousel-control {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 992px) {
  .facility .section-description {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .facility .section-description {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
}
.page-header {
  padding-top: 120px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .page-header {
    padding-top: 110px;
  }
}
@media (max-width: 480px) {
  .page-header {
    padding-top: 100px;
  }
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .page-content {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  .page-content {
    padding: 30px 15px;
  }
}

.wpcf7 {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
@media (max-width: 768px) {
  .wpcf7 {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .wpcf7 {
    padding: 25px 15px;
  }
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.wpcf7-form p {
  margin-bottom: 0;
}
.wpcf7-form p:has(.wpcf7-submit) {
  text-align: center;
}

.wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.wpcf7-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ebebec;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.wpcf7-form-control:focus {
  outline: none;
  border-color: #c0a065;
  box-shadow: 0 0 0 3px rgba(192, 160, 101, 0.1);
}
.wpcf7-form-control::-moz-placeholder {
  color: #999999;
}
.wpcf7-form-control::placeholder {
  color: #999999;
}
.wpcf7-form-control.wpcf7-not-valid {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}

.wpcf7-textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .wpcf7-textarea {
    min-height: 120px;
  }
}

.wpcf7-submit {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  padding: 16px 40px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.wpcf7-submit {
  background-color: #c0a065;
  color: #ffffff;
  border: 2px solid #c0a065;
  box-shadow: 0 4px 10px rgba(192, 160, 101, 0.3);
}
@media (min-width: 769px) {
  .wpcf7-submit:hover {
    background-color: #a58845;
    border-color: #a58845;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 160, 101, 0.2);
  }
}
.wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.wpcf7-submit:active::before {
  width: 300px;
  height: 300px;
}
.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 769px) {
  .wpcf7-submit:disabled:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(192, 160, 101, 0.3);
  }
}
@media (max-width: 480px) {
  .wpcf7-submit {
    width: 100%;
    max-width: 100%;
  }
}

.wpcf7-spinner {
  display: none;
  margin: 10px auto;
}
.wpcf7-spinner.is-active {
  display: block;
  width: 24px;
  height: 24px;
  border: 3px solid #ebebec;
  border-top-color: #c0a065;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #f44336;
  font-weight: 500;
}
.wpcf7-not-valid-tip::before {
  content: "⚠ ";
  margin-right: 4px;
}

.wpcf7-response-output {
  margin-top: 25px;
  padding: 16px 20px;
  font-weight: 500;
  text-align: center;
  animation: fadeInUp 0.5s ease;
  border: none !important;
}

.screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal;
}

.hidden-fields-container {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-description {
  text-align: center;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .form-description {
    font-size: 0.9rem;
  }
}

.privacy-notice {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #666666;
}
.privacy-notice a {
  color: #c0a065;
  text-decoration: none;
  font-weight: 500;
}
@media (min-width: 769px) {
  .privacy-notice a:hover {
    text-decoration: underline;
  }
}

.recaptcha-notice {
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #999999;
  opacity: 0.8;
}
.recaptcha-notice a {
  color: #999999;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .recaptcha-notice a:hover {
    color: #666666;
    text-decoration: underline;
  }
}
@media (max-width: 480px) {
  .recaptcha-notice {
    font-size: 0.7rem;
    margin-top: 20px;
    padding-top: 12px;
  }
}

.reserve-main {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .reserve-main {
    padding-top: 70px;
  }
}
.reserve-main .section-title {
  font-size: 2.5rem;
}
.reserve-main .section-description {
  padding-bottom: 10px;
}

.reserve-intro {
  position: relative;
  padding: 100px 0 100px;
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reserve-intro {
    padding: 80px 0 60px;
  }
}
.reserve-intro-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.reserve-intro-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reserve-intro-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.reserve-intro .container {
  position: relative;
  z-index: 3;
}
.reserve-intro-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.reserve-intro-content h1 {
  color: #ffffff;
}

.reserve-label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0a065;
  margin-top: 0;
  margin-bottom: 25px;
}

.reserve-page-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .reserve-page-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .reserve-page-title {
    font-size: 2rem;
  }
}

.reserve-page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: center;
}
@media (max-width: 480px) {
  .reserve-page-subtitle {
    font-size: 1rem;
  }
}

.reserve-flow {
  padding: 100px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .reserve-flow {
    padding: 80px 0;
  }
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.flow-card {
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .flow-card:hover {
    border-color: #c0a065;
    transform: translateY(-4px);
  }
}
.flow-card img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 250px;
  max-height: 250px;
}

.reserve-requirements {
  padding: 100px 0;
  background-color: #ebebec;
}
@media (max-width: 768px) {
  .reserve-requirements {
    padding: 80px 0;
  }
}

.requirements-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    grid-auto-rows: 1fr;
  }
}

.requirement-block {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .requirement-block {
    flex-direction: column;
  }
}

.requirement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  width: 140px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 40px 20px;
  flex-shrink: 0;
}
.requirement-badge.required {
  background-color: #c0a065;
  color: #ffffff;
}
.requirement-badge.optional {
  background-color: #999999;
  color: #ffffff;
}
@media (max-width: 480px) {
  .requirement-badge {
    width: 100%;
    min-width: auto;
    padding: 20px;
  }
}

.requirement-content {
  flex: 1;
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .requirement-content {
    padding: 30px 25px;
  }
}

.requirement-items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.requirement-items li {
  font-size: 1rem;
  color: #000000;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}
.requirement-items li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c0a065;
}
.requirement-items li:last-child {
  border-bottom: none;
}

.requirements-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.requirements-note p {
  font-size: 0.9375rem;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}
.requirements-note p:before {
  content: "●";
  position: absolute;
  left: 0;
  color: #c0a065;
  font-size: 0.75rem;
  line-height: 1.6;
  top: 0.1em;
}
.requirements-note .note-bullet {
  color: #c0a065;
  margin-right: 4px;
}

.reserve-form-section {
  padding: 100px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .reserve-form-section {
    padding: 80px 0;
  }
}

.reserve-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  background-color: #ebebec;
  padding: 5px;
}
@media (max-width: 480px) {
  .reserve-tabs {
    flex-direction: column;
    gap: 0;
  }
}

.reserve-tab {
  flex: 1;
  padding: 18px 30px;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}
.reserve-tab:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .reserve-tab:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 769px) {
  .reserve-tab:hover {
    color: #000000;
    background-color: rgba(192, 160, 101, 0.05);
  }
}
.reserve-tab.active {
  background-color: #c0a065;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.reserve-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #c0a065;
}
@media (max-width: 480px) {
  .reserve-tab.active::after {
    display: none;
  }
}
.reserve-tab:focus {
  outline: none;
}
.reserve-tab:focus-visible {
  outline: 3px solid #c0a065;
  outline-offset: -3px;
  z-index: 1;
}
@media (max-width: 768px) {
  .reserve-tab {
    padding: 16px 24px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .reserve-tab {
    padding: 16px 20px;
  }
}

.reserve-forms {
  position: relative;
  min-height: 1100px;
}
@media (max-width: 480px) {
  .reserve-forms {
    min-height: 1050px;
  }
}

.reserve-form-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reserve-form-content.active {
  display: block;
  opacity: 1;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.airreserve-embed {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.airreserve-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

.airreserve-credit {
  text-align: right;
  font-size: 10px;
  color: #999;
  padding: 16px 20px;
  background-color: #ebebec;
}
.airreserve-credit a {
  color: #999;
  text-decoration: none;
}
@media (min-width: 769px) {
  .airreserve-credit a:hover {
    text-decoration: underline;
  }
}
.airreserve-credit a img {
  margin: 2px 2px 4px;
  vertical-align: top;
}

.reserve-contact {
  padding: 80px 0 100px;
  background-color: #ebebec;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .reserve-contact {
    padding: 60px 0 80px;
  }
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrapper h3.section-title {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .contact-wrapper h3.section-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-item {
  padding: 0;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (min-width: 769px) {
  .contact-item:hover {
    border-color: #c0a065;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

.contact-store {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  background-color: #c0a065;
  padding: 12px 20px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.contact-tel {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 30px 20px;
}
@media (min-width: 769px) {
  .contact-tel:hover {
    color: #c0a065;
  }
}
@media (max-width: 480px) {
  .contact-tel {
    font-size: 1.25rem;
    padding: 25px 20px;
  }
}

.contact-hours {
  font-size: 0.875rem;
  color: #999999;
  margin: 0;
}

@media (max-width: 768px) {
  .reserve-main {
    padding-top: 70px;
  }
}
@media (max-width: 480px) {
  .reserve-page-title {
    font-size: 2rem;
  }
}
.news-detail {
  padding: 60px 0 100px;
  background-color: #ffffff;
}
.news-detail .container {
  max-width: 800px;
}
@media (max-width: 768px) {
  .news-detail {
    padding: 40px 0 60px;
  }
}

.news-detail-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(192, 160, 101, 0.1);
}
@media (max-width: 768px) {
  .news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
  }
}

.news-detail-date {
  display: block;
  color: #c0a065;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .news-detail-date {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}

.news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .news-detail-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .news-detail-title {
    font-size: 1.4rem;
  }
}

.news-detail-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #000000;
}
.news-detail-content p {
  margin-bottom: 1.5em;
  text-align: left;
}
.news-detail-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 10px;
  border-bottom: 3px solid #c0a065;
}
.news-detail-content h2:first-child {
  margin-top: 0;
}
.news-detail-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-top: 2em;
  margin-bottom: 0.8em;
  padding-left: 15px;
  border-left: 4px solid #c0a065;
}
.news-detail-content ul,
.news-detail-content ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}
.news-detail-content ul li,
.news-detail-content ol li {
  margin-bottom: 0.8em;
  line-height: 1.8;
}
.news-detail-content ul {
  list-style-type: disc;
}
.news-detail-content ol {
  list-style-type: decimal;
}
.news-detail-content strong {
  font-weight: 700;
  color: #c0a065;
}
.news-detail-content a {
  color: #c0a065;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .news-detail-content a:hover {
    color: #a58845;
  }
}
.news-detail-content .wp-block-table,
.news-detail-content .wp-block-buttons {
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .news-detail-content {
    font-size: 0.95rem;
  }
  .news-detail-content h2 {
    font-size: 1.3rem;
    padding-bottom: 8px;
    border-bottom-width: 2px;
  }
  .news-detail-content h3 {
    font-size: 1.1rem;
    padding-left: 12px;
    border-left-width: 3px;
  }
}

.news-detail-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(192, 160, 101, 0.1);
}
@media (max-width: 768px) {
  .news-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
  }
}

.news-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .news-detail-nav {
    flex-direction: column;
    gap: 15px;
  }
}

.news-detail-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .news-detail-nav-link:hover:not(.disabled) {
    background-color: #c0a065;
    color: #ffffff;
    border-color: #c0a065;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 160, 101, 0.2);
  }
  .news-detail-nav-link:hover:not(.disabled) i {
    color: #ffffff;
  }
}
.news-detail-nav-link:focus-visible {
  outline: 2px solid #c0a065;
  outline-offset: 2px;
}
.news-detail-nav-link.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.news-detail-nav-link.prev i {
  order: -1;
}
.news-detail-nav-link.list {
  background-color: rgba(192, 160, 101, 0.08);
  border-color: rgba(192, 160, 101, 0.2);
}
@media (min-width: 769px) {
  .news-detail-nav-link.list:hover {
    background-color: #c0a065;
    border-color: #c0a065;
  }
}
.news-detail-nav-link i {
  font-size: 0.8rem;
  color: #c0a065;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .news-detail-nav-link {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .news-detail-nav-link.prev, .news-detail-nav-link.next {
    max-width: 160px;
  }
}

.breadcrumb {
  padding: 20px 0;
  background-color: #ebebec;
  border-bottom: 1px solid rgba(102, 102, 102, 0.15);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  color: #666666;
}
.breadcrumb ol li:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 10px;
  color: #999999;
}
.breadcrumb ol li a {
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .breadcrumb ol li a:hover {
    color: #c0a065;
  }
}
.breadcrumb ol li:last-child {
  color: #000000;
  font-weight: 500;
}
@media (max-width: 480px) {
  .breadcrumb {
    padding: 15px 0;
  }
  .breadcrumb ol {
    font-size: 0.85rem;
  }
  .breadcrumb ol li:not(:last-child)::after {
    margin-left: 8px;
  }
}

.news-list-section {
  padding: 100px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .news-list-section {
    padding: 60px 0 40px;
  }
}

.news-list-container {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(102, 102, 102, 0.15);
  transition: all 0.3s ease;
  gap: 30px;
}
.news-list-item:first-child {
  border-top: 1px solid rgba(102, 102, 102, 0.15);
}
@media (min-width: 769px) {
  .news-list-item:hover {
    background-color: rgba(192, 160, 101, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .news-list-item:hover .news-list-title a {
    color: #c0a065;
  }
}
@media (max-width: 768px) {
  .news-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }
  .news-list-item:hover {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.news-list-date {
  flex-shrink: 0;
  color: #c0a065;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 100px;
}
@media (max-width: 768px) {
  .news-list-date {
    font-size: 0.85rem;
    min-width: auto;
  }
}

.news-list-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.news-list-title a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
@media (min-width: 769px) {
  .news-list-title a:hover {
    color: #c0a065;
  }
}
.news-list-title a:focus-visible {
  outline: 2px solid #c0a065;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .news-list-title {
    font-size: 1rem;
  }
}

.pagination {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-item.disabled .pagination-link {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-item.active .pagination-link {
  background-color: #c0a065;
  color: #ffffff;
  border-color: #c0a065;
  cursor: default;
  pointer-events: none;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .pagination-link:hover:not(.disabled) {
    background-color: #c0a065;
    color: #ffffff;
    border-color: #c0a065;
  }
}
.pagination-link:focus-visible {
  outline: 2px solid #c0a065;
  outline-offset: 2px;
}
.pagination-link i {
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .pagination-link {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }
}

.retreat-videos-main {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .retreat-videos-main {
    padding-top: 70px;
  }
}

.retreat-videos-hero {
  position: relative;
  padding: 100px 0 100px;
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .retreat-videos-hero {
    padding: 80px 0 60px;
  }
}
.retreat-videos-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.retreat-videos-hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.retreat-videos-hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.retreat-videos-hero .container {
  position: relative;
  z-index: 3;
}
.retreat-videos-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.retreat-videos-hero-content h1 {
  color: #ffffff;
}
@media (max-width: 480px) {
  .retreat-videos-hero-content h1 {
    font-size: 2.3rem;
  }
}

.retreat-videos-grid {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .retreat-videos-grid {
    padding: 60px 0;
  }
}

.videos-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .videos-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .videos-wrapper {
    gap: 30px;
  }
}

.video-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 80vh;
  background-color: #000000;
  overflow: hidden;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}

.video-info {
  padding: 25px;
}
@media (max-width: 480px) {
  .video-info {
    padding: 20px;
  }
}

.video-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 480px) {
  .video-title {
    font-size: 1.2rem;
  }
}

.video-description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .video-description {
    font-size: 0.9rem;
  }
}
.video-description a {
  color: #c0a065;
  text-decoration: none;
}

.retreat-videos-cta {
  padding-bottom: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .retreat-videos-cta {
    padding-bottom: 60px;
  }
}
.retreat-videos-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.retreat-videos-cta-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .retreat-videos-cta-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .retreat-videos-cta-title {
    font-size: 1.8rem;
  }
}
.retreat-videos-cta-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media (max-width: 480px) {
  .retreat-videos-cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.retreat-videos-cta .cta-button {
  padding: 18px 40px;
  font-size: 1.1rem;
  display: inline-block;
}
@media (max-width: 480px) {
  .retreat-videos-cta .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
}

.video-player:focus {
  outline: 3px solid #c0a065;
  outline-offset: 3px;
}

@media print {
  .retreat-videos-hero,
  .retreat-videos-cta {
    background: #ffffff !important;
    color: #000000 !important;
  }
  .video-player-wrapper {
    display: none;
  }
  .video-info {
    page-break-inside: avoid;
  }
}/*# sourceMappingURL=styles.css.map */