@charset "UTF-8";
/* ========================================
   マウナジム — ダーク スポーツジム デザイン
   ======================================== */
:root {
  --g-black: #07090d;
  --g-dark: #0d1520;
  --g-dark-2: #111d2b;
  --g-card: #141f2e;
  --g-card-2: #17233a;
  --g-teal: #0dcfe8;
  --g-teal-dk: #09a0b6;
  --g-text: #dce8ef;
  --g-muted: #6a8fa0;
  --g-white: #ffffff;
  --g-line: #06c755;
  --g-easing: cubic-bezier(.22, .68, 0, 1.2);
}

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

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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background: var(--g-black);
  color: var(--g-text);
  line-height: 1.6;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
/* overflow lock は JS の inline style で制御 */
.site_header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(9, 14, 23, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 207, 232, 0.1);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.site_header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site_header__logo {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site_header__logo:hover {
  opacity: 0.8;
}

.site_header__logo img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Nav */
.site_header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site_header__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.site_header__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-white);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.site_header__links .nav__en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.site_header__links .nav__ja {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
  line-height: 1;
}

.site_header__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--g-teal);
  border-radius: 1px;
  transition: width 0.25s ease;
  box-shadow: 0 0 6px rgba(13, 207, 232, 0.6);
}

.site_header__links a:hover,
.site_header__links a.is-active {
  color: var(--g-white);
}

.site_header__links a:hover::after,
.site_header__links a.is-active::after {
  width: 100%;
}

/* CTA button */
.site_header__cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--g-dark);
  background: var(--g-teal);
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s var(--g-easing), box-shadow 0.2s ease;
  box-shadow: 0 3px 14px rgba(13, 207, 232, 0.28);
}

.site_header__cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(13, 207, 232, 0.45);
}

/* Hamburger */
.site_header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(13, 207, 232, 0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site_header__burger:hover {
  background: rgba(13, 207, 232, 0.07);
  border-color: rgba(13, 207, 232, 0.35);
}

.site_header__burger_line {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(220, 232, 239, 0.75);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.site_header__burger.is-open .site_header__burger_line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site_header__burger.is-open .site_header__burger_line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site_header__burger.is-open .site_header__burger_line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile — バーガーを表示、デスクトップナビ・ロゴを非表示 */
@media (max-width: 960px) {
  .site_header__burger {
    display: flex;
  }
  .site_header__nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .site_header__inner {
    padding: 0 16px;
    height: 62px;
  }
}
/* ----------------------------------------
   Drawer overlay
   ---------------------------------------- */
.site_drawer_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 298;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.site_drawer_overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ----------------------------------------
   Drawer panel
   ---------------------------------------- */
.site_drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--g-dark);
  border-left: 1px solid rgba(13, 207, 232, 0.12);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.55);
  z-index: 302;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px;
}

.site_drawer.is-open {
  transform: translateX(0);
}

.site_drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 207, 232, 0.08);
  border: 1px solid rgba(13, 207, 232, 0.2);
  border-radius: 8px;
  color: rgba(220, 232, 239, 0.7);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site_drawer__close:hover {
  background: rgba(13, 207, 232, 0.16);
  color: var(--g-teal);
}

.site_drawer ul {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
}

.site_drawer ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  color: rgba(220, 232, 239, 0.65);
  border-bottom: 1px solid rgba(13, 207, 232, 0.07);
  transition: color 0.2s ease, background 0.2s ease;
}

.site_drawer ul li a .nav__en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}

.site_drawer ul li a .nav__ja {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
  line-height: 1;
  display: block;
}

.site_drawer ul li:first-child a {
  border-top: 1px solid rgba(13, 207, 232, 0.07);
}

.site_drawer ul li a::after {
  content: "›";
  font-size: 20px;
  opacity: 0.3;
  flex-shrink: 0;
  align-self: center;
}

.site_drawer ul li a:hover,
.site_drawer ul li a.is-active {
  color: var(--g-teal);
  background: rgba(13, 207, 232, 0.04);
}

.site_drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 24px 0;
  padding: 15px 24px;
  background: var(--g-teal);
  color: var(--g-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(13, 207, 232, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site_drawer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 207, 232, 0.4);
}

/* ----------------------------------------
   Page wrapper
   ---------------------------------------- */
.page_service_gym {
  width: 100%;
  background: var(--g-black);
}

.page_service_gym .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* section title */
.page_service_gym .page_ttl {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--g-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  position: relative;
  display: block;
}

.page_service_gym .page_ttl::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--g-teal), var(--g-teal-dk));
  border-radius: 2px;
  margin-bottom: 16px;
  box-shadow: 0 0 10px rgba(13, 207, 232, 0.5);
}

/* center variants */
.page_service_gym .faq .page_ttl::before,
.page_service_gym .voice_page .page_ttl::before,
.page_service_gym .place .page_ttl::before,
.page_service_gym.recruit .page_ttl::before {
  margin: 0 auto 16px;
}

.page_service_gym .faq .page_ttl,
.page_service_gym .voice_page .page_ttl,
.page_service_gym .place .page_ttl,
.page_service_gym.recruit .page_ttl {
  text-align: center;
}

/* ----------------------------------------
   Top Hero（トップページ全画面ヒーロー）
   ---------------------------------------- */
.top_hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--g-dark);
}

.top_hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: brightness(0.5) saturate(0.7);
}

.top_hero:hover .top_hero__bg {
  transform: scale(1);
}

.top_hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 9, 13, 0.75) 0%, rgba(7, 9, 13, 0.55) 50%, rgba(13, 207, 232, 0.04) 100%);
  z-index: 1;
}

/* bottom teal line */
.top_hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--g-teal) 30%, var(--g-teal) 70%, transparent);
  z-index: 3;
}

.top_hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 100px;
  max-width: 760px;
}

.top_hero__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--g-teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top_hero__label::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--g-teal);
  box-shadow: 0 0 8px rgba(13, 207, 232, 0.6);
}

.top_hero__ttl {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  color: var(--g-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.top_hero__desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2;
  color: rgba(220, 232, 239, 0.7);
  margin-bottom: 44px;
}

.top_hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.top_hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  transition: transform 0.2s var(--g-easing), box-shadow 0.2s ease;
}

.top_hero__btn--primary {
  background: var(--g-teal);
  color: var(--g-dark);
  box-shadow: 0 6px 24px rgba(13, 207, 232, 0.35);
  animation: hero-pulse 3.5s ease infinite;
}

@keyframes hero-pulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(13, 207, 232, 0.35);
  }
  50% {
    box-shadow: 0 8px 36px rgba(13, 207, 232, 0.55);
  }
}
.top_hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(13, 207, 232, 0.5);
  animation: none;
}

.top_hero__btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.top_hero__btn--outline:hover {
  transform: translateY(-3px);
  border-color: var(--g-teal);
  color: var(--g-teal);
}

@media (max-width: 640px) {
  .top_hero__content {
    padding: 100px 20px 80px;
  }
  .top_hero__ttl {
    font-size: clamp(38px, 11vw, 56px);
  }
  .top_hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .top_hero__btn {
    width: 100%;
    justify-content: center;
  }
}
/* ----------------------------------------
   Top Pillars（3本柱）
   ---------------------------------------- */
.top_pillars {
  background: var(--g-dark);
  border-bottom: 1px solid rgba(13, 207, 232, 0.08);
  padding: 0;
}

.top_pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.top_pillar {
  padding: 56px 40px;
  border-right: 1px solid rgba(13, 207, 232, 0.08);
  position: relative;
  transition: background 0.25s ease;
}

.top_pillar:last-child {
  border-right: none;
}

.top_pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-teal), var(--g-teal-dk));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.top_pillar:hover {
  background: rgba(13, 207, 232, 0.03);
}

.top_pillar:hover::before {
  opacity: 1;
}

.top_pillar__num {
  font-size: 52px;
  font-weight: 800;
  color: rgba(13, 207, 232, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.top_pillar__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--g-white);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.top_pillar__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--g-muted);
}

@media (max-width: 720px) {
  .top_pillars__grid {
    grid-template-columns: 1fr;
  }
  .top_pillar {
    padding: 40px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(13, 207, 232, 0.08);
  }
  .top_pillar:last-child {
    border-bottom: none;
  }
  .top_pillar::before {
    left: 0;
    right: auto;
    width: 3px;
    height: 100%;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--g-teal), var(--g-teal-dk));
    opacity: 0;
  }
  .top_pillar__num {
    font-size: 40px;
  }
}
/* ----------------------------------------
   Bone types（骨格タイプバッジ）
   ---------------------------------------- */
.bone_types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.bone_type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(13, 207, 232, 0.3);
  background: rgba(13, 207, 232, 0.06);
  font-size: 18px;
  font-weight: 800;
  color: var(--g-teal);
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--g-easing);
}

.bone_type:hover {
  background: rgba(13, 207, 232, 0.14);
  border-color: var(--g-teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 207, 232, 0.2);
}

/* ----------------------------------------
   Page Hero（内部ページヒーローバナー）
   ---------------------------------------- */
.page_hero {
  position: relative;
  background: linear-gradient(135deg, #060b14 0%, var(--g-dark) 60%, #081018 100%);
  padding: 64px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 207, 232, 0.1);
}

.page_hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page_hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-teal) 0%, var(--g-teal-dk) 40%, transparent 100%);
}

/* photo bg variant */
.page_hero--has-img {
  background-size: cover;
  background-position: center 35%;
  min-height: 320px;
}

.page_hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 9, 13, 0.65) 0%, rgba(7, 9, 13, 0.88) 100%);
}

.page_hero__inner {
  position: relative;
  z-index: 1;
}

.page_hero__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g-teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page_hero__label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--g-teal);
  box-shadow: 0 0 6px rgba(13, 207, 232, 0.6);
}

.page_hero__ttl {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--g-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.page_hero__lead {
  font-size: 14px;
  color: rgba(220, 232, 239, 0.65);
  line-height: 1.85;
  max-width: 600px;
}

@media (max-width: 600px) {
  .page_hero {
    padding: 48px 0 40px;
  }
  .page_hero__ttl {
    font-size: clamp(24px, 7vw, 34px);
  }
}
/* ----------------------------------------
   Voice — 新要素
   ---------------------------------------- */
.voice_stars {
  font-size: 16px;
  letter-spacing: 3px;
  color: #fbbf24;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.35);
}

.voice_store_badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--g-teal);
  background: rgba(13, 207, 232, 0.1);
  border: 1px solid rgba(13, 207, 232, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ----------------------------------------
   Recruit — 新要素
   ---------------------------------------- */
.recruit_inner {
  padding-top: 72px;
  padding-bottom: 104px;
}

.recruit_card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 0;
  border-bottom: 1px solid rgba(13, 207, 232, 0.1);
  padding-bottom: 24px;
  background: rgba(13, 207, 232, 0.03);
}

.recruit_card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-teal);
  background: rgba(13, 207, 232, 0.1);
  border: 1px solid rgba(13, 207, 232, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.recruit_card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--g-white);
  letter-spacing: 0.03em;
}

/* ----------------------------------------
   Interview — 新要素
   ---------------------------------------- */
.interview_section_ttl {
  text-align: center;
  margin-bottom: 64px;
  padding-top: 72px;
}

.interview_section_ttl img {
  max-width: 100%;
  height: auto;
  opacity: 0.88;
}

/* ----------------------------------------
   Load error
   ---------------------------------------- */
.load_error {
  text-align: center;
  color: var(--g-muted);
  font-size: 14px;
  padding: 48px 0;
}

/* ----------------------------------------
   Method
   ---------------------------------------- */
.page_service_gym .method {
  position: relative;
  padding: 104px 0;
  background: var(--g-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 207, 232, 0.07);
}

.page_service_gym .method .bg_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  pointer-events: none;
  white-space: nowrap;
}

.page_service_gym .method .bg_txt img {
  max-width: none;
  height: 80vh;
  width: auto;
  filter: brightness(10);
}

.page_service_gym .method .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.page_service_gym .method .clm_l {
  flex: 1 1 400px;
}

.page_service_gym .method .img_box .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.page_service_gym .method .img_box .grid li img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(0.8) saturate(0.8);
}

.page_service_gym .method .img_box .grid li img:hover {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
  box-shadow: 0 8px 28px rgba(13, 207, 232, 0.2);
}

.page_service_gym .method .clm_r {
  flex: 1 1 400px;
}

.page_service_gym .method .txt_box h2 {
  margin-bottom: 1em;
}

.page_service_gym .method .txt_box h2 img {
  max-width: 100%;
  height: auto;
}

.page_service_gym .method .txt_box h2 .sp {
  display: none;
}

.page_service_gym .method .txt_box .txt {
  font-size: 15px;
  line-height: 2.2;
  color: var(--g-muted);
}

@media (max-width: 900px) {
  .page_service_gym .method .inner {
    flex-direction: column;
  }
  .page_service_gym .method .img_box .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .page_service_gym .method .txt_box h2 .pc {
    display: none;
  }
  .page_service_gym .method .txt_box h2 .sp {
    display: block;
  }
}
/* ----------------------------------------
   Personal style
   ---------------------------------------- */
.page_service_gym .personal_style {
  position: relative;
  padding: 104px 0;
  background: var(--g-white);
  overflow: hidden;
}

.page_service_gym .personal_style::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page_service_gym .personal_style .bg_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.035;
  pointer-events: none;
}

.page_service_gym .personal_style .bg_txt img {
  max-width: none;
  height: 60vh;
  width: auto;
  filter: brightness(0);
}

.page_service_gym .personal_style .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page_service_gym .personal_style h2 {
  margin-bottom: 1.5em;
}

.page_service_gym .personal_style h2 img {
  max-width: 100%;
  height: auto;
}

.page_service_gym .personal_style .txt {
  font-size: 15px;
  line-height: 2.2;
  color: #2a3640;
  text-align: left;
}

/* ----------------------------------------
   Interview
   ---------------------------------------- */
.page_service_gym .interview {
  background: var(--g-dark);
  padding-bottom: 104px;
  border-top: 1px solid rgba(13, 207, 232, 0.07);
}

.page_service_gym .interview .mv {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.page_service_gym .interview .mv img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 45vh;
  filter: brightness(0.7) saturate(0.8);
}

.page_service_gym .interview .mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--g-teal) 30%, var(--g-teal) 70%, transparent);
}

.page_service_gym .interview .inner h2 {
  text-align: center;
  margin: 72px 0 56px;
}

.page_service_gym .interview .inner h2 img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

.page_service_gym .interview .item {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.page_service_gym .interview .item .txt_box {
  flex: 1 1 400px;
  min-width: 280px;
}

.page_service_gym .interview .item .txt_box .txt {
  margin-bottom: 2em;
}

.page_service_gym .interview .item .txt_box .txt:last-child {
  margin-bottom: 0;
}

.page_service_gym .interview .item .txt_box h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--g-teal);
  margin-bottom: 0.65em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(13, 207, 232, 0.18);
  letter-spacing: 0.03em;
}

.page_service_gym .interview .item .txt_box p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--g-muted);
}

.page_service_gym .interview .item .img_box {
  flex: 0 1 320px;
  min-width: 260px;
}

.page_service_gym .interview .item .img_box img {
  width: 100%;
  border-radius: 14px;
  filter: brightness(0.85) saturate(0.85);
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .page_service_gym .interview .item {
    flex-direction: column;
  }
  .page_service_gym .interview .item .img_box {
    order: -1;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* ----------------------------------------
   FAQ
   ---------------------------------------- */
.page_service_gym .faq {
  padding: 104px 0;
  background: var(--g-dark-2);
  border-top: 1px solid rgba(13, 207, 232, 0.07);
}

.page_service_gym .faq .page_ttl {
  margin-bottom: 2.5em;
}

.page_service_gym .faq .inner {
  max-width: 820px;
  margin: 0 auto;
}

.page_service_gym .faq ul {
  padding: 0;
}

.page_service_gym .faq ul > li {
  background: var(--g-card);
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 24px 28px 24px 78px;
  position: relative;
  transition: transform 0.2s var(--g-easing), box-shadow 0.2s ease;
  border: 1px solid rgba(13, 207, 232, 0.07);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.page_service_gym .faq ul > li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(13, 207, 232, 0.12);
}

.page_service_gym .faq ul > li .icon {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--g-teal), var(--g-teal-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(13, 207, 232, 0.35);
}

.page_service_gym .faq ul > li .icon img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.page_service_gym .faq ul > li h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--g-white);
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.page_service_gym .faq ul > li .anser {
  font-size: 14px;
  color: var(--g-muted);
  line-height: 1.95;
}

.page_service_gym .faq ul > li .anser p {
  margin: 0;
}

@media (max-width: 600px) {
  .page_service_gym .faq {
    padding: 72px 0;
  }
  .page_service_gym .faq ul > li {
    padding: 20px 20px 20px 64px;
  }
  .page_service_gym .faq ul > li .icon {
    left: 16px;
    top: 20px;
    width: 30px;
    height: 30px;
  }
}
/* ----------------------------------------
   Voice（お客様の声）
   ---------------------------------------- */
.page_service_gym .voice_page {
  padding: 104px 0;
  background: var(--g-black);
  position: relative;
  overflow: hidden;
}

.page_service_gym .voice_page::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page_service_gym .voice_page .inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page_service_gym .voice_page .page_ttl {
  margin-bottom: 0.5em;
}

.page_service_gym .voice_page .voice_lead {
  text-align: center;
  font-size: 15px;
  color: var(--g-muted);
  margin-bottom: 56px;
}

.page_service_gym .voice_page .voice_list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page_service_gym .voice_page .voice_item {
  background: linear-gradient(160deg, var(--g-card-2) 0%, var(--g-card) 100%);
  border-radius: 16px;
  border-top: 3px solid var(--g-teal);
  overflow: hidden;
  padding: 32px;
  transition: transform 0.25s var(--g-easing), box-shadow 0.25s ease;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
  position: relative;
}

.page_service_gym .voice_page .voice_item::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 120px;
  font-family: Georgia, serif;
  font-weight: 800;
  color: var(--g-teal);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page_service_gym .voice_page .voice_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.page_service_gym .voice_page .voice_review {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page_service_gym .voice_page .voice_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page_service_gym .voice_page .voice_name {
  font-size: 14px;
  font-weight: 800;
  color: var(--g-teal);
  letter-spacing: 0.06em;
}

.page_service_gym .voice_page .voice_name::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--g-teal);
  border-radius: 2px;
  margin-top: 5px;
  opacity: 0.45;
}

.page_service_gym .voice_page .voice_date {
  color: var(--g-muted);
  font-size: 13px;
}

.page_service_gym .voice_page .voice_text {
  font-size: 15px;
  line-height: 2;
  color: var(--g-text);
  margin: 0;
}

.page_service_gym .voice_page .voice_reply {
  background: rgba(13, 207, 232, 0.05);
  border-radius: 10px;
  border-left: 3px solid rgba(13, 207, 232, 0.3);
  padding: 18px 20px;
}

.page_service_gym .voice_page .voice_reply_label {
  font-size: 11px;
  font-weight: 800;
  color: var(--g-teal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page_service_gym .voice_page .voice_reply_text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--g-muted);
  margin: 0;
  padding-bottom: 0;
}

@media (max-width: 600px) {
  .page_service_gym .voice_page {
    padding: 72px 0;
  }
  .page_service_gym .voice_page .voice_item {
    padding: 24px 20px;
  }
}
/* ----------------------------------------
   Place（店舗一覧）
   ---------------------------------------- */
.page_service_gym .place {
  padding: 104px 0;
  background: var(--g-dark);
  border-top: 1px solid rgba(13, 207, 232, 0.07);
}

.page_service_gym .place .inner {
  max-width: 960px;
  margin: 0 auto;
}

.page_service_gym .place .page_ttl {
  margin-bottom: 0.5em;
}

.page_service_gym .place .place_lead {
  text-align: center;
  font-size: 15px;
  color: var(--g-muted);
  margin-bottom: 56px;
}

.page_service_gym .place .place_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* card shared */
.page_service_gym .place .item {
  background: linear-gradient(160deg, var(--g-card-2) 0%, var(--g-card) 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 207, 232, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
}

.page_service_gym .place .place_list .item,
.page_service_gym .place .place_list .item_link,
.page_service_gym .place .place_list_top .place_item_top {
  flex: 1 1 300px;
  max-width: 440px;
  min-width: 280px;
}

/* link card */
.page_service_gym .place .item_link {
  display: block;
  color: inherit;
  background: linear-gradient(160deg, var(--g-card-2) 0%, var(--g-card) 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 207, 232, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--g-easing), box-shadow 0.25s ease;
}

.page_service_gym .place .item_link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(13, 207, 232, 0.18);
}

/* photo */
.page_service_gym .place .item .photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page_service_gym .place .item .photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-teal), var(--g-teal-dk));
}

.page_service_gym .place .item .photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: brightness(0.82) saturate(0.82);
}

.page_service_gym .place .item_link:hover .photo img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

/* logo */
.page_service_gym .place .item .logo {
  text-align: center;
  margin: 28px 0 18px;
  padding: 0 20px;
}

.page_service_gym .place .item .logo img {
  max-width: 200px;
  height: auto;
  opacity: 0.88;
}

/* clm / data */
.page_service_gym .place .item .clm {
  padding: 0 28px 36px;
}

.page_service_gym .place .item .data {
  text-align: center;
}

.page_service_gym .place .item .name {
  font-size: 20px;
  font-weight: 800;
  color: var(--g-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.page_service_gym .place .item .address {
  font-size: 13px;
  color: var(--g-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.page_service_gym .place .item .address i {
  margin-right: 4px;
  color: var(--g-teal);
  opacity: 0.8;
}

.page_service_gym .place .item .tel {
  margin-bottom: 22px;
}

.page_service_gym .place .item .tel a {
  font-size: 20px;
  font-weight: 800;
  color: var(--g-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
}

.page_service_gym .place .item .tel a:hover {
  color: var(--g-teal);
}

.page_service_gym .place .item .tel a i {
  font-size: 16px;
  color: var(--g-teal);
}

/* hours */
.page_service_gym .place .item .place_hours {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(13, 207, 232, 0.04);
  border-radius: 10px;
  border-left: 3px solid rgba(13, 207, 232, 0.3);
}

.page_service_gym .place .item .place_hours h3 {
  font-size: 11px;
  font-weight: 800;
  color: var(--g-teal);
  margin-bottom: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page_service_gym .place .item .place_hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 13px;
  color: var(--g-muted);
}

.page_service_gym .place .item .place_hours dt {
  font-weight: 700;
  color: var(--g-text);
}

.page_service_gym .place .item .place_hours dd {
  margin: 0;
}

/* reserve button */
.page_service_gym .place .item .place_reserve {
  margin-bottom: 22px;
}

.page_service_gym .place .item .place_reserve_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #07d05c 0%, #05b84f 100%);
  padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.page_service_gym .place .item .place_reserve_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.4);
}

.page_service_gym .place .item .place_reserve_btn i {
  font-size: 20px;
}

/* link buttons */
.page_service_gym .place .item .data ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page_service_gym .place .item .data ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-teal);
  padding: 10px 18px;
  background: rgba(13, 207, 232, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(13, 207, 232, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
}

.page_service_gym .place .item .data ul li a:hover {
  background: rgba(13, 207, 232, 0.14);
  border-color: rgba(13, 207, 232, 0.3);
  transform: translateY(-1px);
}

.page_service_gym .place .item .data ul li a i {
  font-size: 15px;
}

/* item detail link & button */
.page_service_gym .place .item_link .item_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-teal);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

.page_service_gym .place .item_link:hover .item_btn {
  text-decoration: underline;
}

.page_service_gym .place .item_link .item_btn i {
  font-size: 12px;
}

.page_service_gym .place .place_detail_link {
  margin-top: 20px;
  text-align: center;
}

.page_service_gym .place .place_detail_link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-teal);
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.page_service_gym .place .place_detail_link a:hover {
  opacity: 1;
}

.page_service_gym .place .place_detail_link a i {
  font-size: 12px;
}

/* top page place section */
.page_service_gym .place.place_top {
  padding: 80px 0 104px;
}

/* single place page */
.page_service_gym .place.place_single .inner {
  max-width: 720px;
}

.page_service_gym .place .place_back {
  margin-bottom: 40px;
}

.page_service_gym .place .place_back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--g-teal);
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.page_service_gym .place .place_back a:hover {
  opacity: 1;
}

.page_service_gym .place.place_single .item {
  padding: 0;
}

.page_service_gym .place .place_map {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(13, 207, 232, 0.08);
}

.page_service_gym .place .place_map iframe {
  display: block;
  width: 100%;
  height: 450px;
  max-height: 60vh;
}

@media (max-width: 600px) {
  .page_service_gym .place {
    padding: 72px 0;
  }
  .page_service_gym .place .place_lead {
    margin-bottom: 40px;
  }
  .page_service_gym .place .place_list {
    flex-direction: column;
    gap: 24px;
  }
  .page_service_gym .place .place_list .item,
  .page_service_gym .place .place_list .item_link {
    max-width: none;
    min-width: 0;
  }
  .page_service_gym .place .item .logo img {
    max-width: 160px;
  }
  .page_service_gym .place .item .tel a {
    font-size: 18px;
  }
  .page_service_gym .place .place_map iframe {
    height: 300px;
  }
}
/* ----------------------------------------
   Recruit（採用情報）
   ---------------------------------------- */
.page_service_gym.recruit {
  background: var(--g-dark-2);
}

.page_service_gym.recruit .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page_service_gym.recruit .page_ttl {
  margin-bottom: 0.5em;
}

.page_service_gym.recruit .recruit_lead {
  text-align: center;
  font-size: 15px;
  color: var(--g-muted);
  margin-bottom: 48px;
  line-height: 1.75;
}

.page_service_gym.recruit .recruit_list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page_service_gym.recruit .recruit_card {
  background: var(--g-card);
  border-radius: 16px;
  border: 1px solid rgba(13, 207, 232, 0.08);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.page_service_gym.recruit .recruit_info {
  width: 100%;
  border-collapse: collapse;
}

.page_service_gym.recruit .recruit_info th,
.page_service_gym.recruit .recruit_info td {
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(13, 207, 232, 0.07);
  vertical-align: top;
}

.page_service_gym.recruit .recruit_info tr:last-child th,
.page_service_gym.recruit .recruit_info tr:last-child td {
  border-bottom: none;
}

.page_service_gym.recruit .recruit_info th {
  width: 130px;
  font-weight: 700;
  color: var(--g-teal);
  background: rgba(13, 207, 232, 0.04);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.page_service_gym.recruit .recruit_info td {
  color: var(--g-text);
}

@media (max-width: 600px) {
  .page_service_gym.recruit {
    padding: 56px 0 72px;
  }
  .page_service_gym.recruit .recruit_info th,
  .page_service_gym.recruit .recruit_info td {
    display: block;
    width: 100%;
  }
  .page_service_gym.recruit .recruit_info th {
    padding-bottom: 8px;
    border-bottom: none;
  }
}
/* ----------------------------------------
   Recruit CTA
   ---------------------------------------- */
.recruit_cta {
  background: linear-gradient(135deg, #060b12 0%, var(--g-dark) 50%, #081018 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(13, 207, 232, 0.12);
  border-bottom: 1px solid rgba(13, 207, 232, 0.07);
}

.recruit_cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.recruit_cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.recruit_cta .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.recruit_cta .inner h2 {
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.8em;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.recruit_cta .recruit_cta_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
}

.recruit_cta .recruit_cta_links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: transparent;
  color: var(--g-teal);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 38px;
  border-radius: 50px;
  border: 2px solid rgba(13, 207, 232, 0.45);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  letter-spacing: 0.05em;
}

.recruit_cta .recruit_cta_links a:hover {
  background: rgba(13, 207, 232, 0.1);
  border-color: var(--g-teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 207, 232, 0.22);
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer_main {
  background: var(--g-dark);
  padding: 56px 20px;
  text-align: center;
  border-top: 1px solid rgba(13, 207, 232, 0.07);
}

.footer_main .logo {
  margin-bottom: 22px;
}

.footer_main .logo img {
  width: 160px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
}

.footer_main .copyright {
  font-size: 12px;
  color: var(--g-muted);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.footer_main .copyright p {
  margin: 0;
}

@media (max-width: 800px) {
  .recruit_cta {
    padding: 56px 16px;
  }
  .footer_main {
    padding: 44px 16px;
  }
  .footer_main .logo img {
    width: 140px;
  }
}
/* ========================================
   Place List Page — Photo Cards
   ======================================== */
.plist_section {
  background: var(--g-black);
  padding: 80px 0 104px;
}

.plist_grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ----------------------------------------
   Photo Card
   ---------------------------------------- */
.pcard {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  isolation: isolate;
}

/* background photo */
.pcard__bg {
  position: absolute;
  inset: 0;
  background-color: var(--g-dark);
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.75);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.pcard:hover .pcard__bg {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(0.9);
}

/* gradient mask — bottom-up */
.pcard__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 13, 0.97) 0%, rgba(7, 9, 13, 0.65) 45%, rgba(7, 9, 13, 0.15) 100%);
  z-index: 1;
}

/* teal bottom accent */
.pcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-teal), var(--g-teal-dk) 50%, transparent);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--g-easing);
}

.pcard:hover::after {
  transform: scaleX(1);
}

/* body content */
.pcard__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 44px;
  z-index: 2;
}

/* logo */
.pcard__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* name */
.pcard__name {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--g-white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* address */
.pcard__address {
  font-size: 13px;
  color: rgba(220, 232, 239, 0.65);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pcard__address i {
  color: var(--g-teal);
  font-size: 12px;
}

/* tel */
.pcard__tel {
  font-size: 15px;
  font-weight: 700;
  color: rgba(220, 232, 239, 0.8);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.pcard__tel i {
  color: var(--g-teal);
  font-size: 13px;
}

/* hours */
.pcard__hours {
  font-size: 12px;
  color: rgba(220, 232, 239, 0.5);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pcard__hours i {
  color: var(--g-teal);
  opacity: 0.7;
}

/* footer row */
.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* detail CTA */
.pcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--g-dark);
  background: var(--g-teal);
  padding: 11px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(13, 207, 232, 0.28);
  transition: transform 0.2s var(--g-easing), box-shadow 0.2s ease;
}

.pcard:hover .pcard__cta {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 207, 232, 0.45);
}

@media (max-width: 860px) {
  .plist_grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .pcard {
    min-height: 440px;
  }
}
@media (max-width: 480px) {
  .plist_section {
    padding: 60px 0 80px;
  }
  .plist_grid {
    padding: 0 16px;
    gap: 18px;
  }
  .pcard {
    min-height: 380px;
  }
  .pcard__body {
    padding: 28px 24px 32px;
  }
  .pcard__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pcard__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
