/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 21 2025 | 06:54:41 */
@charset "UTF-8";
/* Foundation */
/* Variables */
:root {
  --color-primary: #ff8c00;
  --color-primary-dark: #e67e00;
  --color-secondary: #1a1a1a;
  --color-text-main: #000;
  --color-text-sub: #000;
  --color-text-white: #fff;
  --color-bg-light: #eee;
  --color-bg-dark: #111;
  --color-bg-gray: #f2f2f2;
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
  --width-inner: 1200px;
}

/* SCSS Variables */
/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font-base);
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:root :where(.is-layout-constrained) > * {
  margin-block-start: 0;
}

/* Layout */
/* Foundation */
.l-section {
  width: 100%;
  padding: 80px 0;
}
.l-section--bg-light {
  background-color: var(--color-bg-light);
}

.l-inner {
  width: 100%;
  max-width: var(--width-inner);
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Layout Utility within Layout layer */
.l-grid {
  display: grid;
  gap: 20px;
}
.l-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.l-grid--3col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 80px;
}
.l-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .l-grid {
    /* 4col specific fallback for mobile icons */
  }
  .l-grid--2col, .l-grid--4col {
    grid-template-columns: 1fr;
  }
  .l-grid--icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Foundation */
.l-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

/* Foundation */
.l-main {
  display: block;
  margin-top: 0 !important;
  padding-inline: 0;
}

/* Foundation */
.l-footer {
  padding: 20px 0;
  font-size: 16px;
  color: var(--color-text);
  text-align: center;
  background-color: #fff;
}
.l-footer__copyright {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}

/* Object > Component */
/* Foundation */
/* Section Title */
.c-section-title {
  margin-bottom: 40px;
  text-align: center;
  /* Modify title color for dark background */
}
.c-section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.c-section-title__ja {
  display: block;
  font-size: clamp(28px, 4.667vw, 32px);
  font-weight: 700;
  color: var(--color-text-sub);
}
.c-section-title__ja--sub {
  margin-bottom: 56px;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  text-align: center;
}
.c-section-title--white .c-section-title__en,
.c-section-title--white .c-section-title__ja {
  color: #fff;
}

/* Foundation */
/* Feature Card */
.c-feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #eee;
}
.c-feature-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 180px;
  padding: 40px 20px 0 20px;
  background-color: #343434;
  color: #fff;
  text-align: center;
}
.c-feature-card__header img {
  max-height: 110px;
}
.c-feature-card--light .c-feature-card__header {
  background-color: #eee;
  color: var(--color-text-main);
}
.c-feature-card--light .c-feature-card__sub {
  color: var(--color-text-sub);
}
.c-feature-card--light .c-feature-card__title,
.c-feature-card--light .c-feature-card__body {
  color: #000;
}
.c-feature-card__icon {
  font-size: 4rem;
  color: var(--color-primary);
}
.c-feature-card__icon--circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
}
.c-feature-card__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: #b1a392;
}
.c-feature-card__sub {
  display: block;
  margin-top: 5px;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccc;
}
.c-feature-card__body {
  flex-grow: 1;
  padding: 25px 32px;
  background-color: #eee;
  font-size: clamp(15px, 2.5vw, 16px);
  line-height: 1.7;
  color: #eee;
}
.c-feature-card__body:has(.c-feature-card__price-label) {
  text-align: center;
}
.c-feature-card--dark-body .c-feature-card__body {
  background-color: #343434;
  color: #b1a392;
}
.c-feature-card__price {
  display: inline;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fcf045;
}
.c-feature-card__price span {
  font-weight: normal;
  color: #fff;
}
.c-feature-card__price-label {
  display: inline;
  font-size: 0.9rem;
  text-align: center;
}
.c-feature-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.c-feature-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.c-feature-card:hover .c-feature-card__image {
  transform: scale(1.05);
}

/* Foundation */
/* Facility Card (Splide content) */
.c-facility-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.c-facility-card:hover {
  transform: translateY(-5px);
}
.c-facility-card__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-facility-card__content {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
  gap: 20px;
  padding-block: 20px 24px;
  border-bottom: #7b7b7b solid 6px;
}
.c-facility-card__content::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  display: block;
  width: 64px;
  height: 6px;
  content: "";
  background-color: var(--color-primary);
}
.c-facility-card__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
}
.c-facility-card__title::before {
  display: block;
  width: 32px;
  height: 2px;
  content: "";
  background-color: #000;
}
.c-facility-card__text {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-text-sub);
}

#facilities-splide .splide__track {
  max-width: 1800px;
  margin-left: 320px;
}

/* Foundation */
/* Price Plan Card */
.c-plan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #333;
}
.c-plan-card__header {
  padding: 15px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #333;
}
.c-plan-card__header small {
  font-size: 0.7em;
  vertical-align: super;
}
.c-plan-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 40px 30px;
  text-align: center;
}
.c-plan-card__badge {
  margin-bottom: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #668ad8;
  border: 2px solid #668ad8;
}
.c-plan-card__desc {
  margin-bottom: 20px;
  font-size: 16px;
}
.c-plan-card__price {
  margin-bottom: 30px;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.c-plan-card__note {
  width: 100%;
  margin-top: auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-sub);
  text-align: left;
}

/* Foundation */
/* Icon Box */
.c-icon-box {
  padding: 24px 12px;
  text-align: center;
  background-color: var(--color-bg-light);
}
.c-icon-box__emoji img {
  margin-bottom: 8px;
}
.c-icon-box__emoji img[src*=".webp"] {
  width: 148px;
}
.c-icon-box__title {
  margin-bottom: 20px;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
}
.c-icon-box__desc {
  margin-top: 5px;
  font-size: clamp(15px, 2.5vw, 16px);
  text-align: left;
  color: var(--color-text-sub);
}

/* Foundation */
/* FAQ Item */
.c-accordion {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
}
.c-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  list-style: none;
  cursor: pointer;
  /* details open state handling */
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary::after {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  content: "+";
}
details[open] .c-accordion__summary::after {
  transform: rotate(45deg);
}
.c-accordion__content {
  padding: 0 20px 20px;
  padding-top: 15px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-sub);
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease;
}

/* Object > Project */
/* Foundation */
/* --- Hamburger Drawer --- */
/* Checkbox hack wrapper */
.p-drawer-trigger {
  display: none;
}

.p-drawer {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s linear 0.4s;
  /* Drawer Open Logic (Checkbox Hack) */
}
.p-drawer__list {
  width: 100%;
  text-align: center;
}
.p-drawer__item {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.p-drawer__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}
.p-drawer__link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
  content: "";
}
.p-drawer__link:hover::after {
  width: 100%;
}
.p-drawer__ja {
  display: block;
  margin-top: 5px;
  font-family: var(--font-base);
  font-size: 0.8rem;
  font-weight: normal;
  color: #888;
}
#nav-input:checked ~ .p-drawer {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-input:checked ~ .p-drawer .p-drawer__item {
  opacity: 1;
  transform: translateY(0);
}
#nav-input:checked ~ .p-drawer .p-drawer__item:nth-child(1) {
  transition-delay: 0.2s;
}
#nav-input:checked ~ .p-drawer .p-drawer__item:nth-child(2) {
  transition-delay: 0.3s;
}
#nav-input:checked ~ .p-drawer .p-drawer__item:nth-child(3) {
  transition-delay: 0.4s;
}
#nav-input:checked ~ .p-drawer .p-drawer__item:nth-child(4) {
  transition-delay: 0.5s;
}
#nav-input:checked ~ .p-drawer .p-drawer__item:nth-child(5) {
  transition-delay: 0.6s;
}

/* Foundation */
/* --- Hero Section --- */
.p-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("http://fitnessgym-vista.com/wp-content/uploads/main-photo-scaled.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--color-text-white);
}
.p-hero__sidebar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 88px;
  height: 100%;
  padding: 0;
  background-color: #cfcfcf;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s ease;
}
@media (max-width: 768px) {
  .p-hero__sidebar {
    position: absolute;
    bottom: auto;
    flex-direction: row;
    width: 100%;
    height: 60px;
    padding: 0 20px;
  }
}
.p-hero__logo-text {
  margin: auto;
}
.p-hero__logo-text img {
  width: 44px;
}
@media (max-width: 768px) {
  .p-hero__logo-text {
    margin: 0 auto;
    font-size: 1rem;
    writing-mode: horizontal-tb;
  }
}
.p-hero__hamburger {
  position: relative;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 160px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Hamburger Animation State (Logic from #nav-input:checked) */
}
.p-hero__hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 48px;
  height: 3px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.p-hero__hamburger span:nth-child(1) {
  top: calc(50% - 20px);
}
.p-hero__hamburger span:nth-child(2) {
  top: 50%;
}
.p-hero__hamburger span:nth-child(3) {
  top: calc(50% + 20px);
}
#nav-input:checked ~ .p-hero__sidebar .p-hero__hamburger span {
  left: 40px;
}
#nav-input:checked ~ .p-hero__sidebar .p-hero__hamburger span:nth-child(1) {
  top: 94px;
  transform: rotate(45deg) translateX(-50%);
}
#nav-input:checked ~ .p-hero__sidebar .p-hero__hamburger span:nth-child(2) {
  opacity: 0;
}
#nav-input:checked ~ .p-hero__sidebar .p-hero__hamburger span:nth-child(3) {
  top: 59px;
  transform: rotate(-45deg) translateX(-50%);
}
.p-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
  background-color: #070707;
  color: #fff;
  transition: background-color 0.3s ease;
}
.p-hero__cta img {
  width: 44px;
}
.p-hero__cta:hover {
  background-color: #333;
}
@media (max-width: 768px) {
  .p-hero__cta {
    display: none;
  }
}
.p-hero__cta-text {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.p-hero__content {
  position: absolute;
  top: 296px;
  left: 250px;
  padding: 0 20px;
  text-align: left;
}
.p-hero__title {
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: 2.5rem;
  }
}
.p-hero__subtitle {
  font-size: 42px;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.p-hero__banner {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 300px;
}
@media (max-width: 768px) {
  .p-hero__banner {
    right: 10px;
    bottom: 10px;
    width: 200px;
  }
}

@media (min-width: 769px) {
  #nav-input:checked ~ .p-hero__sidebar {
    transform: translateX(340px);
  }
}
/* Foundation */
/* --- News Section --- */
.p-news__row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
}
.p-news__row--dark {
  background-color: #4d4d4d;
}
.p-news__row--light {
  background-color: #e6e6e6;
}
.p-news__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--width-inner);
  padding: 0 20px;
}
@media (max-width: 768px) {
  .p-news__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-news__label {
  min-width: 120px;
  margin-right: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
}
.p-news__label--wide {
  letter-spacing: 0.4em;
}
@media (max-width: 768px) {
  .p-news__label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: left;
  }
}
.p-news__box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-news__box {
    width: 100%;
    padding: 12px 20px;
  }
}
.p-news__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .p-news__inner {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
  }
}
.p-news__date {
  margin-right: 30px;
  font-family: var(--font-en);
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-news__date {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 0.8rem;
    border-bottom: 1px solid #ccc;
  }
}
.p-news__text {
  overflow: hidden;
  font-size: 0.95rem;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-news__text {
    width: 100%;
    padding-bottom: 2px;
    font-size: 0.9rem;
    white-space: normal;
    border-bottom: 1px solid #ccc;
  }
}

/* Foundation */
/* --- Concept Section --- */
.p-concept {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  background-image: url("http://fitnessgym-vista.com/wp-content/uploads/concept-photo-scaled.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .p-concept {
    padding: 60px 0;
  }
}
.p-concept::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.p-concept__box {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  margin-inline: 50% auto;
  color: var(--color-text-white);
  text-align: left;
}
@media (max-width: 768px) {
  .p-concept__box {
    padding: 30px 20px;
    width: 95%;
  }
}
.p-concept__subtitle {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.p-concept__title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-text-white);
}
@media (max-width: 768px) {
  .p-concept__title {
    font-size: 2.2rem;
  }
}
.p-concept__title::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 64px;
  height: 6px;
  background-color: var(--color-primary);
  content: "";
}
.p-concept__desc {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
}
@media (max-width: 768px) {
  .p-concept__desc {
    font-size: 0.9rem;
  }
}
.p-concept__list {
  padding-top: 20px;
  list-style: none;
}
.p-concept__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--color-primary);
  transition: background-color 0.3s ease;
}
.p-concept__item[open] {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.p-concept__item[open] summary::after {
  font-size: 18px;
  content: "—";
}
.p-concept__item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 2.667vw, 19px);
  font-weight: 700;
  cursor: pointer;
}
.p-concept__item summary:focus {
  outline: none;
}
.p-concept__item summary::after {
  font-size: 24px;
  line-height: 1;
  content: "+";
}
@media (max-width: 768px) {
  .p-concept__item {
    font-size: 0.9rem;
  }
}
.p-concept__item:last-child {
  margin-bottom: 0;
}
.p-concept__item:hover {
  background-color: var(--color-primary-dark);
}
.p-concept__item div {
  font-size: 18px;
  font-weight: 500;
}

/* Foundation */
/* --- Price Section Specifics --- */
.p-price-bg {
  position: relative;
  background-image: url("http://fitnessgym-vista.com/wp-content/uploads/price-photo01-scaled.webp");
  background-position: center;
  background-size: cover;
}
.p-price-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(81, 81, 81, 0.65);
  content: "";
}
.p-price-content {
  position: relative;
  z-index: 2;
  padding: 72px 120px;
  margin: 0 auto;
  background-color: #fff;
}
.p-price-fees {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px;
  text-align: center;
}
.p-price-fees__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.2rem;
}
.p-price-fees__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.p-price-fees__item dt {
  color: #333;
}
.p-price-fees__item dd {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
}
.p-price-divider {
  width: 60%;
  margin: 64px auto;
  border: none;
  border-top: 2px solid #333;
}
@media (max-width: 768px) {
  .p-price-divider {
    width: 100%;
  }
}
.p-price-category {
  margin-bottom: 24px;
}
.p-price-category:last-child {
  margin-bottom: 0;
}
.p-price-category__title {
  margin-bottom: 40px;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-price-category__sub {
  margin-left: 10px;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: normal;
  color: #666;
}
.p-price-disclaimer {
  margin-top: 30px;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  text-indent: -1em;
}
.p-price-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}

/* Foundation */
.p-banner-item {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #333;
  transition: opacity 0.3s ease;
}
.p-banner-item:hover {
  opacity: 0.7;
}
.p-banner-item__img {
  display: block;
  width: 180px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-banner-item__img {
    width: 120px;
    height: 100px;
  }
}
.p-banner-item__content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .p-banner-item__content {
    padding: 0 15px;
  }
}
.p-banner-item__text {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-banner-item__text {
    font-size: 0.9rem;
  }
}
.p-banner-item__en {
  margin-right: 15px;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-banner-item__en {
    font-size: 1.1rem;
    margin-right: 10px;
  }
}

/* Foundation */
/* --- FAQ Section Specifics --- */
.p-faq-bg {
  color: #fff;
  background-color: #8f8f8f;
}

.p-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* Foundation */
/* --- Access Section Specifics --- */
.p-access-bg {
  background: url("http://fitnessgym-vista.com/wp-content/uploads/access-photo02-scaled.webp") no-repeat center center/cover;
}
.p-access-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px;
}
.p-access-card {
  display: flex;
  margin-bottom: 80px;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  .p-access-card {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.p-access-card__visual {
  position: relative;
  width: 50%;
  min-height: 350px;
  aspect-ratio: 5/4;
}
@media (max-width: 768px) {
  .p-access-card__visual {
    width: 100%;
    height: 250px;
    min-height: auto;
  }
}
.p-access-card__visual iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.p-access-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding-inline: 48px;
}
@media (max-width: 768px) {
  .p-access-card__info {
    width: 100%;
    padding: 30px 20px;
  }
}
.p-access-card__label {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
  color: #666;
}
.p-access-card__name {
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-access-card__name {
    font-size: 1.5rem;
  }
}
.p-access-card__addr {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 700;
}
.p-access-card__tel {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-access-card__tel {
    font-size: 28px;
  }
}
.p-access-card__tel span {
  margin-right: 10px;
  font-size: 28px;
}
.p-access-card__meta {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.8;
}
.p-access-card__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-access-divider {
  width: 100%;
  margin: 0 auto 64px;
  border: none;
  border-top: 1px solid #ccc;
}
.p-access-intro {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.p-access-sub {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.p-access-main {
  margin-bottom: 40px;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

/* Foundation */
.p-sns-icon {
  display: block;
  width: 56px;
  height: 56px;
  transition: opacity 0.3s;
}
.p-sns-icon[aria-label=Instagram] {
  width: 46px;
  height: 46px;
}
.p-sns-icon:hover {
  opacity: 0.8;
}
.p-sns-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Object > Utility */
/* Foundation */
/* ==========================================================================
   Utility (u-) & State (is-)
   ========================================================================== */
.u-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.u-text-white {
  color: #fff !important;
}

.u-text-center {
  text-align: center !important;
}/*# sourceMappingURL=style.css.map */