@charset "UTF-8";
/*
Theme Name: Personal Gym VASE Hachioji
Theme URI: https://www.southcity.jp/
Author: South City
Author URI: https://www.southcity.jp/
Description: パーソナルジムVASE 八王子店のWordPressテーマです。
Version: 1.0.0
Text Domain: vase-hachioji
*/

/* =========================================
   Settings (VASE Colors & Fonts)
========================================= */
:root {
  --color-main: #4cb2d4;      /* VASE Blue */
  --color-main-dark: #3a869f; /* VASE Blue Hover */
  --color-main-pale: #f0f9fc; 
  --color-accent: #ec76a2;      /* Pink (Campaign & Badge) */
  --color-accent-dark: #d8658f; /* Pink Hover */
  --color-text: #333333;
  --color-text-light: #777777;
  --color-bg: #ffffff;
  --color-bg-light: #f7f7f7;
  --color-border: #dddddd;
  --color-req: #ec76a2;         /* 必須バッジ (Pink) */
  --color-opt: #f09f4d;
  --color-star: #f5b120;        /* 星のゴールド (VOICE用) */
  --color-line: #06C755;        /* LINE公式グリーン */
  
  --font-main: 'Montserrat', 'Noto Sans JP', sans-serif;
  --container-width: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  --swiper-navigation-color: var(--color-main);
  --swiper-pagination-color: var(--color-main);
}

/* =========================================
   Base & Reset
========================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-bg);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

body.is-fixed {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* =========================================
   Utility
========================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 120px 0; }
.bg-light { background-color: var(--color-bg-light); }
.text-center { text-align: center; }
.u-mt-20 { margin-top: 20px; }
.u-mt-40 { margin-top: 40px; }
.u-mt-60 { margin-top: 60px; }
.u-mb-40 { margin-bottom: 40px; }
.u-mb-60 { margin-bottom: 60px; }
.p-40 { padding: 40px; }
.color-main { color: var(--color-main); }
.color-accent { color: var(--color-accent); }

/* =========================================
   Components
========================================= */
.section__header { text-align: center; margin-bottom: 80px; }
.section__title { font-size: 2.8rem; font-weight: 500; color: var(--color-main); letter-spacing: 0.15em; line-height: 1.1; text-transform: uppercase; margin: 0; }
.section__subtitle { margin-top: 15px; font-size: 0.9rem; color: var(--color-text-light); font-weight: 700; letter-spacing: 0.05em; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 20px 50px; border-radius: 4px; font-weight: 700; transition: var(--transition); cursor: pointer; border: none; font-size: 1rem; letter-spacing: 0.1em; }
.btn--main { background: var(--color-main); color: #fff; }
.btn--main:hover { background: var(--color-main-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn--large { padding: 25px 60px; font-size: 1.2rem; border-radius: 8px; width: 100%; max-width: 400px; }
.btn--header { padding: 10px 20px; font-size: 0.85rem; background: var(--color-main); color: #fff; border-radius: 4px; }
.btn--header:hover { background: var(--color-main-dark); }
.btn--outline { border: 1px solid var(--color-main); color: var(--color-main); background: transparent; }
.btn--outline:hover { background: var(--color-main); color: #fff; }

.btn--line { background: var(--color-line); color: #fff; padding: 20px 50px; border-radius: 12px; box-shadow: 0 10px 20px rgba(6, 199, 85, 0.15); display: inline-flex; align-items: center; justify-content: center; width: 100%; max-width: 100%; }
.btn--line:hover { background: #05b34c; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3); color: #fff; }
.line-icon { font-size: 2.2rem; margin-right: 15px; }
.line-text { text-align: left; font-size: 1.1rem; line-height: 1.4; letter-spacing: 0.05em; }

/* =========================================
   Header
========================================= */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header__inner { position: relative; height: 90px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
@media (min-width: 1101px) { .header__nav { position: absolute; left: 50%; transform: translateX(-50%); } }
.header__logo a { display: flex; align-items: center; line-height: 1; position: relative; z-index: 1001; }
.header__logo img { height: 48px; }
.header__menu { display: flex; gap: 30px; }
.header__menu a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; transition: color 0.3s; }
.header__menu a:hover { color: var(--color-main); }
.header__cta { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1001; }
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 20px; background: none; border: none; cursor: pointer; padding: 0; z-index: 1001; }
.hamburger span { width: 100%; height: 2px; background: var(--color-text); transition: var(--transition); border-radius: 2px; }

/* =========================================
   Hero
========================================= */
/* SP用ベース設定 */
.hero { position: relative; display: flex; align-items: stretch; color: #fff; width: 100%; overflow: hidden; aspect-ratio: 4 / 5; padding: 0; }
/* PC用設定 */
@media (min-width: 769px) { .hero { aspect-ratio: auto; min-height: 100vh; padding: 120px 0; align-items: center; } }
/* PC超横長(dt)用設定 - 32:9固定 */
@media (min-width: 1681px) { .hero { aspect-ratio: 32 / 9; padding: 0; min-height: auto; align-items: center; } }

.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.hero__content { width: 100%; position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.hero__lead { font-weight: 700; letter-spacing: 0.2em; font-size: 1.2rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

/* ボタンコンテナの基本スタイル */
.hero__buttons { padding-left: 20px; }

/* =========================================
   Hero New Copy (FV) - クリーンデザイン
========================================= */
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.hero__ribbon {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 40px 12px 20px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero__hexagons {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.hero__hexagon-wrap {
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}

.hero__hexagon {
  width: 65px;
  height: 75px;
  background: #fff06b;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero__title-new {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font-size: 2.2rem;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 8px;
  border-left: 6px solid var(--color-main);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero__title-new .highlight {
  color: var(--color-accent);
}

/* =========================================
   SCROLL Animation (FV 下部)
========================================= */
.scroll-down {
  position: absolute; 
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%); 
  color: #fff; 
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em; 
  animation: scrollBlink 2s infinite; 
  opacity: 0.8;
  z-index: 10;
  text-align: center;
}

.scroll-down::after {
  content: '';
  display: block;
  width: 2px; 
  height: 40px; 
  background: #fff; 
  margin: 10px auto 0;
}

@keyframes scrollBlink {
  0% { transform: translate(-50%, 0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* =========================================
   CONCEPT (About)
========================================= */
.message-card { position: relative; background: #fff; padding: 60px 50px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); border-top: 4px solid var(--color-main); margin: 0 auto; text-align: center; }
.message-card__icon { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); background: var(--color-main); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(76, 178, 212, 0.3); transition: var(--transition); }
.message-card__inner { position: relative; z-index: 1; }
.message-card__greeting { font-size: 1.3rem; font-weight: 700; color: var(--color-main-dark); margin: 0 0 25px; letter-spacing: 0.05em; }
.message-card__text { font-size: 1rem; line-height: 2; color: var(--color-text); letter-spacing: 0.03em; margin: 0; }
.message-card__highlight { display: block; margin-top: 15px; font-size: 1.15rem; font-weight: 700; color: var(--color-main-dark); border-bottom: 4px solid var(--color-main); background: var(--color-main-pale); padding: 15px; border-radius: 8px; }

.sp-only { display: none; }

.about__item { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.about__item--reverse { flex-direction: row-reverse; }
.about__img { width: 50%; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__text { width: 50%; }
.about__text h3 { font-size: 1.8rem; font-weight: 700; color: var(--color-main); line-height: 1.4; margin-bottom: 25px; }

/* 他のジムとの違い */
.about__difference { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 1000px; margin-left: auto; margin-right: auto; }
.about__difference-inner { display: flex; flex-direction: column; }
.about__difference-img { width: 100%; line-height: 0; aspect-ratio: 16 / 9; }
.about__difference-img img { width: 100%; height: 100%; object-fit: cover; }
.about__difference-content { width: 100%; padding: 35px 40px 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.about__difference-title { font-size: 1.6rem; font-weight: 700; color: var(--color-main); margin: 0 0 20px; border-bottom: 3px solid var(--color-main-pale); padding-bottom: 10px; display: inline-block; align-self: center; }
.about__difference-text { font-size: 1rem; line-height: 1.8; color: var(--color-text); margin: 0; }
.about__difference-text strong { color: var(--color-accent); }

/* =========================================
   TRIAL (無料体験 / 各種特典表示)
========================================= */
.trial__benefit { background: #fff; border: 2px solid var(--color-accent); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 1000px; margin-left: auto; margin-right: auto; }
.trial__benefit-header { background: var(--color-accent); color: #fff; text-align: center; padding: 15px 20px; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.1em; }
.trial__benefit-body { padding: 40px; text-align: center; }
.trial__benefit-list { display: inline-block; text-align: left; font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; }

.trial__benefit-list li { margin-bottom: 15px; display: flex; align-items: baseline; gap: 10px; line-height: 1.6; }
.trial__benefit-list i { font-size: 1.1rem; }
.u-free { color: var(--color-accent); font-size: 1.4em; line-height: 1; margin-left: 5px; }

.trial__benefit-note { font-size: 0.85rem; color: var(--color-text-light); margin: 0; padding-top: 20px; border-top: 1px dashed var(--color-border); text-align: left; }

.trial__heading { text-align: center; font-size: 1.8rem; font-weight: 700; color: var(--color-text); margin-bottom: 40px; position: relative; padding-bottom: 15px; }
.trial__heading::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--color-main); }

/* 体験の流れ */
.flow-steps { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.flow-step { display: flex; align-items: center; gap: 50px; background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.flow-step:nth-child(even) { flex-direction: row-reverse; }
.flow-step__img { width: 45%; border-radius: 12px; overflow: hidden; line-height: 0; }
.flow-step__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.flow-step__content { width: 55%; }
.flow-step__num { display: inline-block; font-family: 'Montserrat', sans-serif; color: var(--color-main); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 10px; }
.flow-step__title { font-size: 1.3rem; font-weight: 700; margin: 0 0 15px; line-height: 1.5; }
.flow-step__text { color: var(--color-text-light); margin: 0; font-size: 0.95rem; }

/* ターゲット比較 */
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.target-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.target-card__title { text-align: center; font-size: 1.1rem; font-weight: 700; margin: 0 0 25px; padding-bottom: 20px; border-bottom: 2px solid var(--color-border); }
.target-card__list li { position: relative; padding-left: 2em; margin-bottom: 15px; font-weight: 500; line-height: 1.6; }
.target-card__list li:last-child { margin-bottom: 0; }
.target-card__list i { position: absolute; left: 0; top: 4px; font-size: 1.1rem; }

.target-card--ng { background: #fff; border-top: 6px solid #999; }
.target-card--ng .target-card__title { color: #555; }
.target-card--ng .target-card__list i { color: #999; }
.target-card--ng .target-card__list li { color: #666; }

.target-card--ok { background: var(--color-main-pale); border-top: 6px solid var(--color-main); }
.target-card--ok .target-card__title { color: var(--color-main-dark); }
.target-card--ok .target-card__list i { color: var(--color-main); }

/* クロージング */
.trial__closing { background: #fff; border-radius: 16px; padding: 60px 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); max-width: 1000px; margin-left: auto; margin-right: auto; }
.trial__closing-title { text-align: center; font-size: 1.6rem; font-weight: 700; color: var(--color-main-dark); margin: 0 0 30px; }
.trial__closing-text { font-size: 1rem; color: var(--color-text); margin: 0 auto; max-width: 700px; }
.promise-text { margin-top: 15px; font-size: 0.9rem; color: var(--color-text-light); }
.promise-text i { color: var(--color-main); margin-right: 5px; }

/* =========================================
   VOICE (お客様の声)
========================================= */
.voice__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.voice-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; }
.voice-card__images { display: flex; background: var(--color-border); }
.voice-card__img-box { width: 50%; flex: 0 0 50%; position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.voice-card__img-box:first-child { border-right: 2px solid var(--color-border); }
.voice-card__img-box img { width: 100%; height: 100%; object-fit: cover; }
.voice-card__label { position: absolute; top: 15px; left: 15px; background: rgba(0, 0, 0, 0.6); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 4px; z-index: 10; }
.voice-card__label--after { background: var(--color-accent); }
.voice-card__body { padding: 35px 30px; flex-grow: 1; }
.voice-card__meta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed var(--color-border); }
.voice-card__profile { display: flex; align-items: baseline; gap: 12px; }
.voice-card__name { margin: 0; font-size: 1.3rem; font-weight: 700; color: var(--color-main-dark); }
.voice-card__age { font-size: 0.9rem; color: var(--color-text-light); font-weight: 500; }
.voice-card__rating { color: var(--color-star); font-size: 1.1rem; letter-spacing: 2px; }
.voice-card__rating .fa-regular { color: #ddd; }
.voice-card__text { font-size: 0.95rem; line-height: 1.8; color: var(--color-text); margin: 0; }
.voice__note { font-size: 0.85rem; color: var(--color-accent); margin: 40px 0 0; }

/* =========================================
   PRICE & Campaign
========================================= */
.campaign-card { background: #fff; border-radius: 20px; box-shadow: 0 15px 40px rgba(76, 178, 212, 0.15); border: 2px solid var(--color-main); position: relative; }
.campaign-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: #fff; padding: 8px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 10; white-space: nowrap; }
.campaign-card__header { background: var(--color-main); color: #fff; text-align: center; padding: 40px 20px 30px; border-radius: 18px 18px 0 0; }
.campaign-card__header h3 { font-size: 1.8rem; margin: 0 0 10px; }
.campaign-card__header h3 .highlight { color: #fff06b; font-size: 2.2rem; }
.campaign-card__header .sub-text { font-size: 1.2rem; font-weight: 700; margin: 0; }
.campaign-card__header .sub-text span { font-size: 2rem; color: #fff06b; }
.campaign-card__body { padding: 40px; }
.campaign-list { list-style: none; padding: 0; margin: 0; display: flex; justify-content: space-between; gap: 20px; }
.campaign-list li { flex: 1; text-align: center; background: var(--color-main-pale); border-radius: 12px; padding: 25px 20px; position: relative; }
.campaign-list__title { color: var(--color-main); font-weight: 700; font-size: 0.9rem; margin-bottom: 15px; letter-spacing: 0.05em; }
.campaign-list__content span { display: block; font-size: 0.95rem; font-weight: 700; color: var(--color-text); margin-bottom: 10px; }
.price-strike { font-size: 0.9rem; color: var(--color-text-light); text-decoration: line-through; margin-bottom: 5px; }
.price-free { font-size: 3rem; font-weight: 700; color: var(--color-accent); line-height: 1; font-family: 'Montserrat', sans-serif; }
.price-free span { display: inline; font-size: 1.2rem; color: var(--color-accent); }
.price-free.discount { font-size: 2.5rem; }
.campaign-list__content small { display: block; font-size: 0.75rem; color: var(--color-text-light); margin-top: 10px; }

.price__intro { text-align: center; }
.price__lead { font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; color: var(--color-main-dark); }
.admission-fee { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--color-border); border-radius: 8px; padding: 15px 40px; gap: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.admission-fee__label { font-weight: 700; color: var(--color-text); letter-spacing: 0.1em; font-size: 1rem; }
.admission-fee__price { font-size: 1.8rem; font-weight: 700; color: var(--color-text); font-family: 'Montserrat', sans-serif; line-height: 1; }
.admission-fee__price small { font-size: 1.1rem; margin-left: 2px; }
.admission-fee__price .tax { font-size: 0.85rem; color: var(--color-text-light); font-family: var(--font-main); font-weight: 500; margin-left: 5px; }

.plan-wrapper { margin-bottom: 50px; }
.plan-title { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.plan-subtitle { font-size: 1rem; color: var(--color-text-light); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-item { background: #fff; border-radius: 12px; padding: 40px 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-border); transition: transform 0.3s ease; position: relative; }
.plan-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.plan-item__times { font-size: 1.1rem; font-weight: 700; color: var(--color-text); margin-bottom: 15px; border-bottom: 2px solid var(--color-main-pale); padding-bottom: 15px; }
.plan-item__times span { font-size: 2rem; color: var(--color-main); font-family: 'Montserrat', sans-serif; margin: 0 5px; }
.plan-item__price { font-size: 1rem; font-weight: 700; color: var(--color-text-light); }
.plan-item__price span { font-size: 1.8rem; color: var(--color-text); font-family: 'Montserrat', sans-serif; }

.plan-item.recommend { border: 2px solid var(--color-main); background: var(--color-main-pale); transform: scale(1.05); z-index: 1; }
.plan-item.recommend:hover { transform: scale(1.05) translateY(-5px); }
.plan-item.recommend .plan-item__times { border-bottom-color: var(--color-main); }

.recommend-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: #fff; padding: 5px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; white-space: nowrap; }
.plan-item.recommend .plan-item__times span { color: var(--color-accent); }

.price__points { display: flex; justify-content: center; }
.points-box { background: #fff; border: 2px solid var(--color-main-pale); border-radius: 12px; padding: 30px 40px; width: 100%; }
.points-box__title { color: var(--color-main); font-size: 1.2rem; font-weight: 700; margin: 0 0 15px; text-align: center; letter-spacing: 0.1em; }
.points-box__list { padding: 0; list-style: none; margin: 0; }
.points-box__list li { position: relative; padding-left: 1.8em; margin-bottom: 10px; font-weight: 500; color: var(--color-text); }
.points-box__list li:last-child { margin-bottom: 0; }
.points-box__list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-main); font-weight: bold; font-size: 1.1rem; }

.price__notes { display: flex; justify-content: center; }
.note-list { padding: 0; list-style: none; margin: 0; max-width: 800px; width: 100%; }
.note-list li { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 6px; line-height: 1.6; }
.note-list li:last-child { margin-bottom: 0; }

/* =========================================
   FAQ
========================================= */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { background: #fff; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq__question { padding: 25px 30px; font-weight: 700; cursor: pointer; position: relative; list-style: none; display: flex; align-items: center; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::before { content: "Q"; color: var(--color-main); font-size: 1.4rem; margin-right: 15px; }
.faq__question::after { content: "+"; position: absolute; right: 30px; font-size: 1.5rem; color: var(--color-main); transition: transform 0.3s; }
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer { padding: 0 30px 25px 65px; color: var(--color-text-light); line-height: 1.7; }

/* =========================================
   Facility Slider
========================================= */
.facility-slider { padding-bottom: 60px; }
.facility-slider img { border-radius: 12px; width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.facility-slider .swiper-button-prev,
.facility-slider .swiper-button-next {
  top: calc(50% - 30px);
}

/* =========================================
   TRAINER
========================================= */
.trainer__grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.trainer-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: center; max-width: 900px; width: 100%; }
.trainer-card__img { width: 40%; line-height: 0; }
.trainer-card__img img { width: 100%; height: 100%; object-fit: cover; }
.trainer-card__body { width: 60%; padding: 50px; }

/* =========================================
   News (Blog)
========================================= */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); transition: var(--transition); }
.blog-card a { display: flex; flex-direction: column; height: 100%; }
.blog-card:hover { transform: translateY(-10px); }
.blog-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 24px; flex-grow: 1; }

/* =========================================
   Access
========================================= */
.access__container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.access__map-box { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); min-height: 450px; width: 100%; }
.access__map-box iframe { display: block; }
.access__info-box { background: #fff; padding: 50px; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; }
.access__branch { font-size: 1.4rem; font-weight: 700; margin: 0 0 15px; color: var(--color-text); border-bottom: 2px solid var(--color-main); display: inline-block; padding-bottom: 8px; }
.access__address { font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; color: var(--color-text-light); padding-bottom: 20px; border-bottom: 1px solid #eee; }
.access__address i { color: var(--color-main); margin-right: 8px; width: 16px; text-align: center; }
.access__list { display: flex; flex-direction: column; gap: 15px; margin: 0 0 30px; }
.access__list-item { display: flex; align-items: center; gap: 10px; }
.access__list dt { width: 85px; font-weight: 700; color: var(--color-main); font-size: 0.85rem; display: flex; align-items: center; flex-shrink: 0; }
.access__list dt i { width: 16px; margin-right: 8px; text-align: center; }
.access__list dd { margin: 0; flex: 1; font-size: 0.9rem; color: var(--color-text); line-height: 1.5; }
.tel-link { font-size: 1.1rem; font-weight: 400; transition: color 0.3s; }
.tel-link:hover { color: var(--color-main); }
.btn--map { display: flex; align-items: center; justify-content: center; width: 100%; padding: 16px 20px; background: var(--color-main); color: #fff; border-radius: 8px; font-weight: 700; letter-spacing: 0.05em; transition: var(--transition); gap: 10px; border: none; }
.btn--map:hover { background: var(--color-main-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* =========================================
   Form (Contact)
========================================= */
.form { background: #fff; padding: 60px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form__table { width: 100%; border-collapse: collapse; }
.form__table th { width: 250px; text-align: left; padding: 30px 20px; border-bottom: 1px solid #eee; }
.form__table td { padding: 25px 0; border-bottom: 1px solid #eee; }
.form__input { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; font-family: inherit; }
.badge { font-size: 0.7rem; padding: 2px 8px; border-radius: 2px; margin-right: 10px; color: #fff; }
.badge--req { background: var(--color-req); }
.badge--opt { background: var(--color-opt); }

/* =========================================
   Footer
========================================= */
.footer { background: #fff; padding: 60px 0; border-top: 1px solid var(--color-border); }
.footer__inner { display: flex; flex-direction: column; align-items: center; }
.footer__logo { height: 110px; margin-bottom: 40px; }
.footer__nav { display: flex; gap: 40px; margin-bottom: 40px; }
.footer__copy { font-size: 0.8rem; color: var(--color-text-light); }

/* =========================================
   Floating CTA (スマホ用追従バナー)
========================================= */
.floating-cta { display: none; }

/* =========================================
   Responsive
========================================= */
@media (max-width: 1100px) {
  .header__inner { height: 70px; padding: 0 20px; }
  .header__logo img { height: 38px; }
  .header__nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); z-index: 1000; }
  .header__menu { flex-direction: column; align-items: center; gap: 30px; }
  .header__menu a { font-size: 1.2rem; font-weight: 700; }
  .hamburger { display: flex; }
  .pc-only { display: none !important; }
  .header.is-open .header__nav { opacity: 1; visibility: visible; }
  .hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  
  .floating-cta { display: block; position: fixed; bottom: 0; left: 0; width: 100%; padding: 10px 15px 15px; background: linear-gradient(to top, #fff 60%, rgba(255,255,255,0)); z-index: 999; pointer-events: none; }
  .floating-cta__inner { display: flex; gap: 10px; width: 100%; pointer-events: auto; }
  .btn--floating { flex: 1; padding: 12px 5px; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; text-decoration: none; line-height: 1.3; text-align: center; transition: var(--transition); }
  .btn--floating i { font-size: 1.6rem; }
  .btn--line-float { background: var(--color-line); color: #fff; box-shadow: 0 4px 15px rgba(6,199,85,0.3); }
  .btn--line-float:hover { background: #05b34c; transform: translateY(-2px); }
  .btn--web-float { background: var(--color-main); color: #fff; box-shadow: 0 4px 15px rgba(76, 178, 212, 0.3); }
  .btn--web-float:hover { background: var(--color-main-dark); transform: translateY(-2px); }

  body { padding-bottom: 80px; }
  .price__grid { grid-template-columns: 1fr; }
  .access__container { grid-template-columns: 1fr; gap: 20px; }
  .access__map-box { min-height: auto; height: 300px; aspect-ratio: auto; }
  .access__info-box { padding: 40px 25px; align-items: center; text-align: center; }
  .access__branch { font-size: 1.3rem; margin-bottom: 10px; }
  .access__address { font-size: 0.9rem; margin-bottom: 25px; border-bottom: none; padding-bottom: 0; }
  .access__list { width: 100%; margin-bottom: 30px; gap: 0; }
  .access__list-item { flex-direction: column; align-items: center; gap: 4px; padding: 15px 0; border-bottom: 1px dashed #ddd; }
  .access__list-item:last-child { border-bottom: none; padding-bottom: 0; }
  .access__list dt { width: auto; justify-content: center; font-size: 0.8rem; color: var(--color-main-dark); }
  .access__list dd { font-size: 0.95rem; }
  .tel-link { font-size: 1.3rem; font-weight: 700; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .message-card { padding: 50px 25px 40px; }
  .message-card__greeting { font-size: 1.1rem; }
  .message-card__text { font-size: 0.95rem; }
  .message-card__highlight { font-size: 1rem; padding: 15px 12px; }
  .sp-only { display: block; }
  .about__item, .about__item--reverse { flex-direction: column; gap: 30px; }
  .about__img, .about__text { width: 100%; }
  .about__text { text-align: center; }

  .hero { padding: 0; } 
  .hero__content { justify-content: center; position: relative; padding-top: 70px; padding-bottom: 150px; } 
  .hero__lead { margin-left: 5vw; }
  .hero__copy { gap: 15px; margin-bottom: 0; margin-left: -5vw; }
  .hero__ribbon { font-size: 1rem; padding: 10px 35px 10px 5vw; clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%); }
  .hero__hexagons { gap: 10px; margin-left: 5vw; }
  .hero__hexagon { width: 55px; height: 64px; font-size: 0.8rem; }
  .hero__title-new { font-size: 1.3rem; padding: 15px 25px 15px 5vw; border-radius: 0 8px 8px 0; border-left: none; }
  
  .hero__buttons { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 400px; display: flex; justify-content: center; padding-left: 0 !important; margin-top: 0; z-index: 10; }
  .hero__buttons .btn { width: 100%; padding: 16px 20px; font-size: 1.1rem; }

  .about__difference-inner { flex-direction: column; }
  .about__difference-img { width: 100%; }
  .about__difference-content { width: 100%; padding: 25px 20px 30px; text-align: center; }
  .about__difference-title { font-size: 1.4rem; align-self: center; margin-bottom: 15px;}

  .trial__benefit-body { padding: 25px 20px; } 
  .flow-step, .flow-step:nth-child(even) { flex-direction: column; gap: 20px; padding: 20px; }
  .flow-step__img { width: 100%; }
  .flow-step__content { width: 100%; text-align: center; }
  .flow-step__title { font-size: 1.1rem; }
  .target-grid { grid-template-columns: 1fr; gap: 20px; }
  .target-card { padding: 30px 20px; text-align: center; }
  .target-card__list { display: inline-block; text-align: left; }
  .trial__closing { padding: 40px 20px; text-align: center; }
  .trial__closing-title { font-size: 1.3rem; }
  .trial__closing-text { font-size: 0.95rem; text-align: center; margin: 0 auto; }
  
  .voice__grid { grid-template-columns: 1fr; gap: 30px; }
  .voice-card__body { padding: 25px 20px; }
  .voice-card__meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .voice-card__rating { font-size: 1rem; }

  .campaign-list { flex-direction: column; gap: 15px; }
  .campaign-card__header h3 { font-size: 1.4rem; }
  .campaign-card__header h3 .highlight { font-size: 1.8rem; }
  .campaign-card__header .sub-text { font-size: 1rem; }
  .campaign-card__header .sub-text span { font-size: 1.6rem; }
  .campaign-card__body { padding: 20px; }
  .price__lead { font-size: 0.95rem; line-height: 1.5; padding: 0 10px; }
  .admission-fee { flex-direction: column; gap: 5px; padding: 15px; width: 100%; max-width: 280px; }
  .admission-fee__price { font-size: 1.5rem; }
  .admission-fee__price .tax { display: block; text-align: center; margin-top: 5px; }
  .plan-grid { grid-template-columns: 1fr; gap: 15px; }
  .plan-item.recommend { transform: none; }
  .plan-item.recommend:hover { transform: translateY(-5px); }
  .points-box { padding: 25px 20px; }
  .points-box__list li { font-size: 0.9rem; padding-left: 1.5em; }
  .trainer-card { flex-direction: column; }
  .trainer-card__img, .trainer-card__body { width: 100%; }
  .trainer-card__body { padding: 30px 20px; text-align: center; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-card__body { text-align: center; }
  .form { padding: 30px 20px; }
  .form__table th, .form__table td { display: block; width: 100%; border: none; padding: 10px 0; }
  .access__info-box { padding: 30px 15px; }
  .footer__nav { flex-direction: column; gap: 20px; text-align: center; }
  
  .btn--floating { font-size: 0.75rem; padding: 10px 5px; gap: 4px; }
  .btn--floating i { font-size: 1.4rem; }
  .line-icon { font-size: 1.8rem; margin-right: 10px; }
  .line-text { font-size: 1rem; }
}

/* =========================================
   PC超横長(dt)向け 32:9 文字サイズ最適化
========================================= */
@media (min-width: 1681px) {
  .hero__content { 
    padding-top: clamp(80px, 6vw, 110px); 
    padding-bottom: clamp(20px, 2vw, 40px); 
  }
  .hero__lead { 
    font-size: clamp(0.9rem, 0.9vw, 1.1rem); 
    margin-bottom: clamp(10px, 1vw, 15px); 
  }
  .hero__copy { 
    gap: clamp(10px, 1vw, 15px); 
    margin-bottom: clamp(15px, 1.5vw, 25px); 
  }
  .hero__ribbon { 
    font-size: clamp(0.9rem, 0.9vw, 1.1rem); 
    padding: clamp(6px, 0.6vw, 10px) clamp(25px, 2vw, 35px) clamp(6px, 0.6vw, 10px) clamp(15px, 1vw, 20px); 
  }
  .hero__hexagons { 
    gap: clamp(8px, 0.8vw, 12px); 
  }
  .hero__hexagon { 
    width: clamp(45px, 2.7vw, 55px); 
    height: clamp(52px, 3.2vw, 64px); 
    font-size: clamp(0.7rem, 0.7vw, 0.85rem); 
  }
  .hero__title-new { 
    font-size: clamp(1.3rem, 1.5vw, 1.8rem); 
    padding: clamp(10px, 0.8vw, 15px) clamp(20px, 1.5vw, 30px); 
    border-left-width: clamp(3px, 0.3vw, 5px);
  }
  .hero__buttons .btn { 
    padding: clamp(12px, 0.8vw, 15px) clamp(25px, 2vw, 40px); 
    font-size: clamp(0.85rem, 0.8vw, 1rem); 
  }
}

/* =========================================
   Modal (注意事項ポップアップ)
========================================= */
.modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); cursor: pointer; }
.modal__content { position: relative; background: #fff; width: 100%; max-width: 800px; max-height: 85vh; border-radius: 12px; padding: 50px 40px; overflow-y: auto; box-shadow: 0 10px 40px rgba(0,0,0,0.2); transform: translateY(20px); transition: transform 0.3s ease; }
.modal.is-open .modal__content { transform: translateY(0); }
.modal__close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2rem; color: #999; cursor: pointer; line-height: 1; padding: 5px; transition: color 0.3s; }
.modal__close:hover { color: var(--color-main); }
.modal__title { font-size: 1.4rem; font-weight: 700; color: var(--color-main); border-bottom: 2px solid var(--color-main-pale); padding-bottom: 10px; margin: 0 0 20px; }
.modal__subtitle { font-size: 1.1rem; font-weight: 700; margin: 30px 0 15px; color: var(--color-text); }
.modal__text { font-size: 0.95rem; line-height: 1.8; margin-bottom: 15px; }
.modal__list-num, .modal__list-dot { font-size: 0.9rem; line-height: 1.8; color: var(--color-text); margin-bottom: 30px; }
.modal__list-num { list-style: decimal; padding-left: 1.5em; }
.modal__list-num li { margin-bottom: 8px; }
.modal__list-dot { list-style: none; }
.modal__list-dot li { position: relative; padding-left: 1.2em; margin-bottom: 8px; }
.modal__list-dot li::before { content: "・"; position: absolute; left: 0; }

@media (max-width: 768px) {
  .modal__content { padding: 40px 20px; }
  .modal__title { font-size: 1.2rem; }
}

/* =========================================
   下層ページ共通（Page Header）
========================================= */
.main-under { padding-top: 90px; }

.page-header { background-color: var(--color-main); background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/profile.jpg'); background-size: cover; background-position: center; color: #fff; text-align: center; padding: 100px 0; }
.page-title-en { display: block; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 15px; }
.page-title-jp { font-size: 2.4rem; font-weight: 700; margin: 0; }

@media (max-width: 1100px) { .main-under { padding-top: 70px; } }
@media (max-width: 768px) { .page-header { padding: 60px 0; } .page-title-jp { font-size: 1.8rem; } }

/* =========================================
   NEWS（お知らせ一覧・詳細ページ）用追加CSS
========================================= */
.news-list-wrapper { max-width: 1000px; margin: 0 auto; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.pagination__item { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 4px; background: #fff; border: 1px solid var(--color-border); color: var(--color-text); font-weight: 700; transition: var(--transition); }
.pagination__item:hover, .pagination__item.is-active { background: var(--color-main); color: #fff; border-color: var(--color-main); }

.article-wrapper { max-width: 800px; margin: 0 auto; background: #fff; padding: 60px 80px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.05); }
.article__header { border-bottom: 1px solid var(--color-border); padding-bottom: 30px; margin-bottom: 40px; }
.article__meta { display: flex; gap: 15px; margin-bottom: 15px; font-size: 0.9rem; color: var(--color-text-light); font-family: 'Montserrat', sans-serif; }
.article__title { font-size: 1.8rem; font-weight: 700; line-height: 1.4; margin: 0; }
.article__thumbnail { margin-bottom: 40px; border-radius: 12px; overflow: hidden; }
.article__thumbnail img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article__content { font-size: 1rem; line-height: 1.8; color: var(--color-text); }
.article__content h2 { font-size: 1.4rem; font-weight: 700; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--color-main-pale); color: var(--color-main-dark); }
.article__content p { margin-bottom: 20px; }
.article__footer { margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--color-border); text-align: center; }

@media (max-width: 768px) {
  .article-wrapper { padding: 40px 20px; border-radius: 0; }
  .article__title { font-size: 1.4rem; }
}

/* =========================================
   プライバシーポリシー専用
========================================= */
.privacy-wrapper { max-width: 900px; margin: 0 auto; background: #fff; padding: 80px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.05); }
.privacy-intro { margin-bottom: 60px; font-size: 1rem; line-height: 2; }
.privacy-item { margin-bottom: 50px; }
.privacy-item h2 { font-size: 1.4rem; font-weight: 700; color: var(--color-text); margin-bottom: 25px; padding-bottom: 12px; border-bottom: 1px solid var(--color-border); position: relative; }
.privacy-item h2::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 60px; height: 3px; background: var(--color-main); }
.privacy-item p { font-size: 1rem; color: var(--color-text-light); margin-bottom: 20px; }
.privacy-item ul { padding-left: 1.2em; margin-bottom: 20px; }
.privacy-item ul li { font-size: 1rem; color: var(--color-text-light); margin-bottom: 10px; list-style: disc; }

.company-info { background: var(--color-main-pale); padding: 40px; border-radius: 12px; margin-top: 60px; }
.company-info h2 { font-size: 1.3rem; color: var(--color-main-dark); margin-bottom: 20px; border-bottom: 2px solid var(--color-main); display: inline-block; padding-bottom: 5px; }
.company-info-text { font-size: 0.95rem; margin-bottom: 25px; }
.company-info dl { margin: 0; }
.company-info dt { font-weight: 700; float: left; width: 100px; color: var(--color-main-dark); margin-bottom: 15px; }
.company-info dd { margin-left: 100px; margin-bottom: 15px; }

.cta-under { text-align: center; border-top: 1px solid var(--color-border); background: #fff; }
.cta-under__text { font-size: 1.2rem; font-weight: 700; margin-bottom: 30px; }

@media (max-width: 768px) {
  .privacy-wrapper { padding: 40px 20px; border-radius: 0; }
  .privacy-item h2 { font-size: 1.2rem; }
  .company-info dt { float: none; width: 100%; margin-bottom: 5px; }
  .company-info dd { margin-left: 0; }
}

/* =========================================
   会社概要ページ（Company）専用
========================================= */
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.company-tile { background-size: cover; background-position: center; background-repeat: no-repeat; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: var(--transition); text-decoration: none; aspect-ratio: 1 / 1; overflow: hidden; }
.company-tile:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(76, 178, 212, 0.3); }
.company-tile__label { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--color-main); letter-spacing: 0.15em; margin-bottom: 15px; text-transform: uppercase; }
.company-tile__title { font-size: 1.6rem; font-weight: 700; color: #ffffff; margin-bottom: 20px; line-height: 1.4; }
.company-tile__text { font-size: 0.95rem; line-height: 1.8; color: #ffffff; margin-bottom: 30px; max-width: 280px; }
.company-tile__btn { display: inline-flex; align-items: center; gap: 8px; color: var(--color-main); font-weight: 700; font-size: 0.9rem; padding-bottom: 4px; border-bottom: 2px solid var(--color-main-pale); transition: border-color 0.3s; }
.company-tile:hover .company-tile__btn { border-bottom-color: var(--color-main); }

@media (max-width: 768px) {
  .company-grid { grid-template-columns: 1fr; gap: 20px; }
  .company-tile { padding: 30px 20px; }
  .company-tile__label { font-size: 0.75rem; margin-bottom: 10px; }
  .company-tile__title { font-size: 1.3rem; margin-bottom: 15px; }
  .company-tile__text { font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
  .company-tile__btn { font-size: 0.85rem; }
}

/* =========================================
   Image Modal (画像拡大ポップアップ)
========================================= */
.js-img-zoom { cursor: zoom-in; transition: opacity 0.3s; }
.js-img-zoom:hover { opacity: 0.8; }
.image-modal .modal__overlay { background: rgba(0, 0, 0, 0.85); }
.image-modal__content { position: relative; z-index: 10001; width: 90%; max-width: 1000px; max-height: 90vh; display: flex; justify-content: center; align-items: center; transform: translateY(20px) scale(0.95); transition: transform 0.3s ease; }
.modal.is-open .image-modal__content { transform: translateY(0) scale(1); }
.image-modal__content img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 15px 50px rgba(0,0,0,0.5); }
.image-modal__close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 2.5rem; background: none; border: none; cursor: pointer; line-height: 1; padding: 0; transition: color 0.3s; }
.image-modal__close:hover { color: var(--color-main); }
@media (max-width: 768px) { .image-modal__close { top: -35px; font-size: 2rem; } }