:root {
  --pink: #E8A0B0;
  --pink-light: #f5d5de;
  --green: #A8C0B0;
  --green-light: #d4e5da;
  --warm-white: #FDFAF5;
  --beige: #f0ebe2;
  --text: #5a4e4a;
  --text-muted: #9a8e8a;
  --text-light: #c0b4b0;
}

#content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── パンくずリスト・ページヘッダー非表示 ── */
.c-breadcrumb,
.p-pageHead {
  display: none !important;
}

/* ── Hero ── */
.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 64px;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-2.jpg');
  background-size: cover;
  background-position: center;
}
.about-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(253,250,245,0.88) 0%,
    rgba(253,250,245,0.6) 50%,
    rgba(168,192,176,0.2) 100%
  );
}
.about-hero__deco-circle {
  position: absolute;
  bottom: 15%; right: 20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(168,192,176,0.4);
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.about-hero__badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 17px; font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 4px;
  margin-bottom: 5px;
}
.about-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}
.about-hero__title em {
  font-style: italic;
  color: var(--pink);
}
.about-hero__sub {
  font-size: 16px; font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
/* .about-hero__scroll {
  position: absolute; bottom: 40px; left: 64px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.12em; color: var(--text-light);
  z-index: 2;
}
.about-hero__scroll-line {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--pink), transparent);
} */

/* ── Sections ── */
.about-section {
  padding: 96px 64px;
  background: var(--warm-white);
}
.about-section--white {
  background: #fff;
}
.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-section__header {
  margin-bottom: 56px;
}
.about-section__en {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.about-section__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px; font-weight: 300;
  color: var(--text);
}

/* ── Ainaとは ── */
.about-aina__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-aina__img-wrap {
  position: relative;
}
.about-aina__img {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 50% 50% 4px 4px / 40% 40% 4px 4px;
  overflow: hidden;
}
.about-aina__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-aina__img-deco {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(168,192,176,0.4);
}
.about-aina__word {
  margin-bottom: 24px;
}
.about-aina__word img {
  width: 90%;
  height: auto;
  display: block;
}
.about-aina__meaning {
  font-size: 12px; letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about-aina__body {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 300;
  line-height: 2.2;
}

/* ── 3つのポイント ── */
.about-points__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-points__card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  border: 0.5px solid rgba(168,192,176,0.25);
}
.about-points__img {
  width: 100%; height: 200px;
  position: relative; overflow: hidden;
}
.about-points__img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-points__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}
.about-points__body {
  padding: 24px 20px;
}
.about-points__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 400;
  margin-bottom: 10px;
}
.about-points__desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.9; color: var(--text-muted);
}

/* ── ヨガ vs ピラティス ── */
.about-yp {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-yp__panel {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 60px 56px;
  overflow: hidden;
  min-height: 560px;
}
.about-yp__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: top;
}
.about-yp__panel--yoga .about-yp__bg {
  background-image: url('../images/yoga.jpg');
}
.about-yp__panel--pilates .about-yp__bg {
  background-image: url('../images/pilates.jpg');
  background-position: center 30%;
}
.about-yp__overlay {
  position: absolute; inset: 0;
}
.about-yp__panel--yoga .about-yp__overlay {
  background: linear-gradient(to top,
    rgba(180,90,110,0.85) 0%,
    rgba(232,160,176,0.5) 50%,
    rgba(232,160,176,0.15) 100%);
}
.about-yp__panel--pilates .about-yp__overlay {
  background: linear-gradient(to top,
    rgba(60,100,80,0.85) 0%,
    rgba(100,150,120,0.5) 50%,
    rgba(168,192,176,0.15) 100%);
}
.about-yp__content {
  position: relative; z-index: 2;
}
.about-yp__tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.25em;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin-bottom: 20px;
}
.about-yp__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: #fff; line-height: 1.2;
  margin-bottom: 8px;
}
.about-yp__subtitle {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.about-yp__line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.about-yp__body {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 2.0; max-width: 320px;
}

/* ── こんな方に ── */
.about-who {
  position: relative; overflow: hidden;
}
.about-who__bg-shape {
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(168,192,176,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.about-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; position: relative;
}
.about-who__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-left: 2px solid var(--pink);
  border-radius: 0 4px 4px 0;
}
.about-who__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--pink-light);
  line-height: 1; flex-shrink: 0;
}
.about-who__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.8; padding-top: 4px;
}

/* ── 講師 ── */
.about-instructors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about-instructors__card {
  text-align: center;
}
.about-instructors__avatar-wrap {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 16px;
}
.about-instructors__avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: #fff;
  overflow: hidden;
}
.about-instructors__avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-instructors__ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232,160,176,0.3);
}
.about-instructors__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 400;
  margin-bottom: 8px;
}
.about-instructors__cert {
  font-size: 11px; font-weight: 300;
  color: var(--text-muted); line-height: 1.9;
}
.about-cta {
  text-align: center;
  margin-top: 48px;
}
.about-instructors__btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--text-light);
  padding: 14px 40px;
  border-radius: 40px;
  transition: border-color 0.2s, color 0.2s;
}
.about-instructors__btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ── 歴史 ── */
.about-history {
  position: relative; overflow: hidden;
  padding: 96px 64px;
}
.about-history__bg {
  position: absolute; inset: 0;
  background-image: url('../images/studio.JPG');
  background-size: cover;
  background-position: center;
}
.about-history__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(90,78,74,0.78) 0%,
    rgba(90,78,74,0.58) 60%,
    rgba(90,78,74,0.22) 100%
  );
}
.about-history__deco-circle {
  position: absolute;
  bottom: -60px; right: 120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1;
  pointer-events: none;
}
.about-history__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.about-history__header {
  margin-bottom: 56px;
}
.about-history__en {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.about-history__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px; font-weight: 300;
  color: #fff;
}
.about-history__content {
  max-width: 600px;
}
.about-history__body {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 300;
  line-height: 2.4;
  color: rgba(255,255,255,0.95);
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.6);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 2px; }

/* ── お知らせ ── */
.top-news {
  background: var(--warm-white);
  padding: 80px 64px;
}
.top-news__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.top-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.top-news__en {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.top-news__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px; font-weight: 300;
  color: var(--text);
}
.top-news__more {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--pink-light);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.top-news__more:hover { color: var(--pink); }
.top-news__list {
  list-style: none;
  padding: 0; margin: 0;
}
.top-news__item {
  border-top: 1px solid rgba(90,78,74,0.12);
}
.top-news__item:last-child {
  border-bottom: 1px solid rgba(90,78,74,0.12);
}
.top-news__link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 8px;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s;
}
.top-news__link:hover { opacity: 0.65; }
.top-news__date {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 300;
  color: var(--text);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.top-news__cat {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--pink);
  border: 1px solid var(--pink-light);
  border-radius: 20px;
  padding: 2px 10px;
  flex-shrink: 0;
}
.top-news__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}

/* ════════════════════════════════
   Mobile ( ~768px )
════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .about-hero {
    min-height: 100svh;
    padding: 48px 24px 64px;
    align-items: flex-end;
  }
  .about-hero__deco-circle { display: none; }
  .about-hero__title { font-size: 36px; }
  .about-hero__scroll { left: 24px; bottom: 28px; }
  .about-hero__badge { color: var(--text); }
  .about-hero__sub { color: var(--text); }

  /* Sections */
  .about-section {
    padding: 64px 24px;
  }
  .about-section__header { margin-bottom: 36px; }
  .about-section__ja { font-size: 22px; }

  /* Ainaとは: 縦並び */
  .about-aina__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-aina__img {
    aspect-ratio: 2/3;
    border-radius: 50% 50% 4px 4px / 33% 33% 4px 4px;
  }
  .about-aina__img-deco { display: none; }
  .about-aina__word { text-align: center; }
  .about-aina__word img { width: 90%; margin: 0 auto; }

  /* ポイント: 縦1列 */
  .about-points__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-points__img { height: 180px; }

  /* ヨガ/ピラティス: 縦並び */
  .about-yp {
    grid-template-columns: 1fr;
  }
  .about-yp__panel {
    min-height: 420px;
    padding: 40px 24px;
  }
  .about-yp__bg {
    background-position: center;
  }
  .about-yp__title { font-size: 36px; }
  .about-yp__content {
    max-width: 58%;
  }
  .about-yp__body { max-width: 100%; }
  .about-yp__panel--pilates .about-yp__content {
    margin-left: auto;
    text-align: right;
  }
  .about-yp__panel--pilates .about-yp__tag {
    margin-left: auto;
  }
  .about-yp__panel--pilates .about-yp__line {
    margin-left: auto;
  }

  /* こんな方に: 縦1列 */
  .about-who__grid {
    grid-template-columns: 1fr;
  }

  /* 講師: 1列 */
  .about-instructors__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* 歴史 */
  .about-history {
    padding: 64px 24px;
  }
  .about-history__deco-circle { display: none; }
  .about-history__body { font-size: 14px; }

  /* お知らせ */
  .top-news {
    padding: 56px 24px;
  }
  .top-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .top-news__link {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ════════════════════════════════
   Tablet ( 769px ~ 1024px )
════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .about-hero { padding: 64px 40px; }
  .about-hero__title { font-size: 44px; }
  .about-hero__scroll { left: 40px; }

  .about-section { padding: 80px 40px; }

  /* ポイント: 2列 */
  .about-points__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 講師: 2列 */
  .about-instructors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .about-yp__panel {
    min-height: 480px;
    padding: 48px 36px;
  }

  .about-history { padding: 80px 40px; }
}
