/* Base Styles */
:root {
  --bg: #0b0c0e;
  --surface: #121417;
  --surface-2: #171a1d;
  --text: #e8eaed;
  --muted: #a3aab3;
  --line: #06C755; /* LINE green */
  --accent: #00d86f;
  --card-border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section { padding: 72px 0; }
.section__title {
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.2;
  margin: 0 0 20px;
}
.section__lead { color: var(--muted); margin: 0 0 32px; }
.accent { color: var(--line); font-weight: 800; }

/* Gym Location Section */
.gym-location {
  /* uses .card background/border/shadow */
  padding: 28px;
  margin-top: 36px;
}

.gym-location__header { margin-bottom: 18px; }
.gym-location__actions { margin-top: 10px; }

.gym-location__name { font-size: clamp(18px, 2.6vw, 22px); margin: 6px 0 6px; color: var(--text); }

.gym-location__address { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.7; }

.gym-location__map { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); }

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gym-location__photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }

.gym-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); background: #0f1214; }
.gym-location__photo { width: 100%; height: auto; object-fit: contain; display: block; transition: transform 0.35s ease; background: transparent; }
.gym-photo.is-cover { aspect-ratio: 4 / 3; }
.gym-photo.is-cover .gym-location__photo { width: 100%; height: 100%; object-fit: cover; background: #0f1214; }
.gym-location__photo:hover {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .gym-location {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    padding: 32px;
  }
  
  .gym-location__header { grid-column: 1 / -1; margin-bottom: 0; }
  
  .gym-location__map {
    grid-column: 1;
    margin-bottom: 0;
  }
  
  .gym-location__photos {
    grid-column: 2;
    margin-top: 0;
    align-items: start;
    grid-auto-rows: auto;
  }
  
  .gym-location__photo { height: auto; object-fit: contain; }
  .gym-photo.is-cover { aspect-ratio: 4 / 3; }
  .gym-photo.is-cover .gym-location__photo { height: 100%; width: 100%; object-fit: cover; }
}

@media (min-width: 1024px) {
  .gym-location {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px;
  }
  
  .gym-location__header { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 12px; margin-bottom: 8px; }
  .gym-location__name { grid-column: 1 / 2; }
  .gym-location__actions { grid-column: 2 / 3; justify-self: end; }
  
  .gym-location__map {
    grid-column: 1 / 3;
  }
  
  .gym-location__photos {
    grid-column: 3;
    align-items: start;
    grid-auto-rows: auto;
  }
}

/* Small button and pill styles reused across the site */
.btn-sm { padding: 6px 10px; font-size: 12px; border-radius: 999px; }
.pill { display: inline-block; background: rgba(6,199,85,0.18); color: #b7ffd9; border: 1px solid rgba(6,199,85,0.35); padding: 4px 10px; border-radius: 999px; font-size: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,12,14,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__logo { font-weight: 900; letter-spacing: 0.5px; }
.brand__tag { color: var(--muted); font-size: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #0b0c0e;
  background: #fff;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.02); }
.btn:active { transform: translateY(0); filter: brightness(0.98); }
.btn-lg { padding: 16px 24px; font-size: clamp(14px, 1.6vw, 18px); }

.btn-line { background: var(--line); color: #04110a; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--card-border);
}

.icon-line {
  width: 20px; height: 20px; display: inline-block;
  background: #fff; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M19.05 4H4.95A2.95 2.95 0 0 0 2 6.95v7.74A2.95 2.95 0 0 0 4.95 17.64h1.86v3.43l3.43-3.43h8.81A2.95 2.95 0 0 0 22 14.69V6.95A2.95 2.95 0 0 0 19.05 4ZM8.48 13.51H6.17V8.91h2.31v4.6Zm4.19 0h-1.9V10.7l-1.16 2.28H8.44L7.28 10.7v2.81H5.38V8.91h2.22l1.25 2.49 1.25-2.49h2.32v4.6Zm4.29 0h-3.2V8.91h1.9v3.09h1.3v1.51Zm1.9 0h-1.9V8.91h1.9v4.6Z"/></svg>') center / contain no-repeat;
}

/* Hero */
.hero {
  position: relative; min-height: 76vh; display: grid; place-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(11,12,14,0.4), rgba(11,12,14,0.7)),
    url('../images/hero.jpg'); /* Replace with your gym photo at images/hero.jpg */
  background-size: cover; background-position: center; filter: saturate(1.1);
}
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 50%, rgba(6,199,85,0.15), transparent 60%); }
.hero__content { position: relative; text-align: center; padding: 64px 0; }
.hero__eyebrow { color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; margin: 0 0 10px; }
.hero__title { font-size: clamp(26px, 5.2vw, 44px); line-height: 1.2; margin: 0 0 12px; }
.hero__subtitle { font-size: clamp(14px, 2.2vw, 18px); margin: 0 0 24px; color: #d6dbe3; }

/* Cards */
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

/* Pricing */
.pricing__grid {
  display: grid; gap: 16px; grid-template-columns: 1fr; align-items: stretch;
}
.price-card__badge { display: inline-block; background: rgba(6,199,85,0.18); color: #b7ffd9; border: 1px solid rgba(6,199,85,0.35); padding: 4px 10px; border-radius: 999px; font-size: 12px; margin-bottom: 8px; }
.price-card__title { margin: 0 0 6px; font-size: 20px; }
.price-card__price { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.price-card__desc { color: var(--muted); margin: 0 0 10px; }
.price-card__list { margin: 0; padding-left: 18px; color: #d2d8e1; }
.price-card.highlight { border-color: rgba(6,199,85,0.45); box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(6,199,85,0.25) inset; }
.price-card.highlight .price-card__title { font-size: clamp(24px, 4.6vw, 36px); color: var(--line); }
.price-card.highlight .btn-outline { border-color: rgba(6,199,85,0.4); }

/* Icon Grid */
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
/* QR Code Banner */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.qr-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.qr-banner__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--accent);
}

.qr-code {
  background: white;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.qr-code__image {
  width: 150px;
  height: 150px;
  display: block;
}

.qr-banner__hint {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0 0;
}

.mobile-only {
  display: none;
}

/* Desktop styles */
@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  
  .qr-banner {
    margin-left: 30px;
  }
  
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: inline;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: inline;
  }
}

/* Base Styles */
.icon-item { display: flex; gap: 12px; align-items: center; background: linear-gradient(180deg, #111416, #0f1214); border: 1px solid var(--card-border); border-radius: 12px; padding: 12px 14px; }
.icon { font-size: 20px; }
.emphasis { margin-top: 16px; color: #e9fff3; background: rgba(6,199,85,0.08); padding: 12px 14px; border: 1px solid rgba(6,199,85,0.25); border-radius: 10px; text-align: center; }

/* Targets */
.target-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
.target-list li { background: linear-gradient(180deg, #111416, #0f1214); border: 1px solid var(--card-border); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.target-icon { font-size: 18px; }

/* CTA */
.cta { text-align: center; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: radial-gradient(80% 60% at 50% 50%, rgba(6,199,85,0.1), transparent 70%); }
.cta__text { margin: 0 0 16px; font-size: clamp(16px, 2.6vw, 22px); }
.cta--bottom { padding-bottom: 88px; }

/* Testimonials */
.testimonials { background: linear-gradient(180deg, #0b0c0e 0%, #0e110f 100%); }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(6, 199, 85, 0.2);
  overflow: hidden;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.15);
}
.testimonial__image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
  background-color: #f0f0f0;
}
.testimonial__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  background-color: #f0f0f0;
  padding: 10px 0;
}
.testimonial:hover .testimonial__image {
  transform: scale(1.05);
}
.testimonial__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121417, #0f1214);
}
.testimonial__title {
  margin: 0 0 12px;
  font-size: 16px;
  color: #FFD700;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}
.testimonial__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #06C755;
}
.testimonial__text {
  margin: 0;
  color: #e6eef0;
  flex-grow: 1;
  line-height: 1.6;
  font-size: 14px;
}

/* Benefits with semina image */
.benefits {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(11, 12, 14, 0.9), rgba(11, 12, 14, 0.9)), 
              url('../images/semina1.jpg') no-repeat center/cover;
  background-attachment: fixed;
  padding: 60px 0;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

/* Update icon grid to be more visible on the background */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 100%;
}

.icon-item {
  background: rgba(18, 20, 23, 0.8) !important;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(6, 199, 85, 0.2) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .benefits {
    background: linear-gradient(to left, rgba(11, 12, 14, 0.8) 0%, rgba(11, 12, 14, 0.8) 60%, transparent 100%),
                url('../images/semina1.jpg') no-repeat right center/cover;
    background-attachment: fixed;
  }
  
  .icon-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
}

@media (min-width: 992px) {
  .benefits {
    background: linear-gradient(to left, rgba(11, 12, 14, 0.9) 0%, rgba(11, 12, 14, 0.8) 40%, transparent 70%),
                url('../images/semina1.jpg') no-repeat right center/cover;
    background-attachment: fixed;
  }
  
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Seminar Gallery */
.seminar-gallery {
  background: var(--surface);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.seminar-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 30px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.seminar-gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--surface-2);
  aspect-ratio: 16/9;
}

.seminar-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(6, 199, 85, 0.2);
}

.seminar-gallery__image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.seminar-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.seminar-gallery__item:hover .seminar-gallery__image {
  transform: scale(1.05);
}

.seminar-gallery__caption {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--text);
}

.seminar-gallery__caption strong {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .seminar-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .seminar-gallery__item {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1024px) {
  .seminar-gallery__grid {
    gap: 40px;
  }
}


/* FAQ */
.accordion__item { background: linear-gradient(180deg, #101315, #0e1113); border: 1px solid var(--card-border); border-radius: 12px; padding: 0 14px; }
.accordion__item + .accordion__item { margin-top: 10px; }
.accordion__summary { cursor: pointer; padding: 14px 0; list-style: none; outline: none; }
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary { display: flex; justify-content: space-between; align-items: center; }
.accordion__summary::after { content: '+'; color: var(--muted); font-weight: 700; }
.accordion__item[open] .accordion__summary::after { content: '−'; }
.accordion__content { padding: 0 0 14px; color: #cfd6de; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer-link { color: var(--muted); text-decoration: none; }
.footer-link:hover { color: var(--text); }

/* Responsive */
@media (min-width: 640px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .target-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .pricing__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .icon-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .target-list { grid-template-columns: repeat(3, 1fr); }
}
