@charset "UTF-8";

:root {
  --pink: #de3187;
  --pink-light: #f472b6;
  --pink-pale: #fce7f3;
  --black: #0a0a0a;
  --white: #fafafa;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --gold: #c9a96e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  border-bottom: 1px solid rgba(222,49,135,0.3);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--white); letter-spacing: 0.05em;
}
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75); text-decoration: none;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink); color: var(--white);
  border: none; padding: 9px 22px;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: #c01070; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/bodymake-17.jpg');
  background-size: cover; background-position: center top;
  opacity: 0.38;
  filter: saturate(0.6);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 80px 80px;
  max-width: 720px;
  animation: fadeUp 1.1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink);
  border: 1px solid var(--pink);
  padding: 5px 14px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.35; margin-bottom: 12px;
}
.hero-title em {
  font-style: normal; color: var(--pink);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 28px;
  font-style: italic;
}
.hero-desc {
  font-size: 0.9rem; line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 40px;
}
.hero-stats {
  display: flex; gap: 40px; margin-bottom: 44px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--white); font-weight: 300;
  line-height: 1;
}
.hero-stat-num span { color: var(--pink); font-size: 1.1rem; }
.hero-stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em; margin-top: 4px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--pink); color: var(--white);
  padding: 14px 36px; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-family: 'Noto Sans JP', sans-serif;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #c01070; transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 14px 36px;
  font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

/* TRAINER PROFILE */
.profile-section {
  background: var(--white); padding: 100px 80px;
  display: grid; grid-template-columns: 340px 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.profile-img-wrap {
  position: relative;
}
.profile-img-wrap::before {
  content: ''; position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--pink); z-index: 0;
}
.profile-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  position: relative; z-index: 1;
  filter: grayscale(15%);
}
.profile-text .section-label {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 16px; display: block;
}
.profile-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.4;
  margin-bottom: 20px;
}
.profile-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gray);
  letter-spacing: 0.15em; margin-bottom: 28px;
  font-style: italic;
}
.profile-body {
  font-size: 0.88rem; line-height: 2;
  color: #444; margin-bottom: 28px;
}
.profile-brands {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.brand-tag {
  font-size: 0.68rem; letter-spacing: 0.18em;
  padding: 5px 14px; border: 1px solid #ddd;
  color: var(--gray); text-transform: uppercase;
}
.credentials {
  margin-top: 28px; display: flex; flex-direction: column; gap: 10px;
}
.credential-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; color: #444;
}
.credential-item::before {
  content: '—'; color: var(--pink); flex-shrink: 0;
}

/* SECTION TEMPLATE */
section { position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 80px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label {
  display: inline-block; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.5;
}
.section-header .subtitle {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.8; max-width: 600px;
  margin: 16px auto 0;
}
.section-header .divider {
  width: 60px; height: 3px; background: var(--pink); margin: 20px auto 0;
}
.section-header .subtitle.mt-24 {
  margin-top: 24px;
}

/* DARK SECTION & INFOGRAPHIC VARIANTS */
.bg-gray-light { background: var(--gray-light); }
.bg-white { background: var(--white); }

.dark-section { background: var(--black); color: var(--white); }
.dark-section .section-header h2 { color: var(--white); }
.dark-section .section-header .subtitle { color: rgba(255,255,255,0.6); }

.dark-section .infographic-text h3 { color: var(--white); }
.dark-section .infographic-text p { color: rgba(255,255,255,0.65); }
.dark-section .infographic-text ul { border-top: 1px solid rgba(255,255,255,0.1); }
.dark-section .infographic-text ul li { 
  border-bottom: 1px solid rgba(255,255,255,0.08); 
  color: rgba(255,255,255,0.7); 
}

/* CONCEPT CARDS */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #e5e7eb;
}
.concept-card {
  background: var(--white); padding: 44px 36px;
  transition: background 0.3s;
}
.concept-card:hover { background: #fdf2f8; }
.concept-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--pink-light);
  font-weight: 300; line-height: 1;
  margin-bottom: 20px; opacity: 0.5;
}
.concept-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; font-weight: 400;
  margin-bottom: 14px; line-height: 1.5; color: var(--black);
}
.concept-card p {
  font-size: 0.82rem; line-height: 1.9;
  color: var(--gray);
}

/* IMAGE INFOGRAPHIC ROW */
.infographic-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  margin-bottom: 80px;
}
.infographic-row:last-child { margin-bottom: 0; }
.infographic-row img {
  width: 100%; border-radius: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.infographic-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 16px; line-height: 1.6; color: var(--black);
}
.infographic-text p {
  font-size: 0.85rem; line-height: 2;
  color: var(--gray);
}
.infographic-text ul {
  list-style: none; margin-top: 16px;
}
.infographic-text ul li {
  font-size: 0.83rem; line-height: 1.8;
  color: #444; padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; gap: 10px;
}
.infographic-text ul li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--pink); border-radius: 50%;
  flex-shrink: 0;
}

/* PROBLEM SECTION */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 48px;
}
.problem-card {
  border: 1px solid #e5e7eb;
  padding: 32px 28px; background: var(--white);
  position: relative; overflow: hidden;
}
.problem-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-icon { font-size: 1.8rem; margin-bottom: 16px; color: var(--black); }
.problem-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem; font-weight: 400;
  margin-bottom: 10px; color: var(--black);
}
.problem-card p { font-size: 0.8rem; line-height: 1.8; color: var(--gray); }

/* COMPARISON TABLE */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
  font-size: 0.85rem;
}
.compare-table th {
  padding: 14px 20px; text-align: left;
  background: var(--black); color: var(--white);
  font-weight: 400; letter-spacing: 0.08em; font-size: 0.78rem;
}
.compare-table th.pink { background: var(--pink); }
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid #f0f0f0; color: #444;
}
.compare-table td.feature { font-weight: 500; color: var(--black); }
.compare-table td.check { color: var(--pink); text-align: center; font-size: 1.1rem; }
.compare-table td.cross { color: #ccc; text-align: center; font-size: 1.1rem; }
.compare-table tr:hover td { background: #fdf2f8; }

/* BODYMAKE MENU CARDS */
.menu-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.menu-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(222,49,135,0.12);
}
.menu-card-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}
.menu-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-card-content {
  padding: 20px 18px;
}
.menu-card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  font-family: 'Noto Serif JP', serif;
}
.menu-card-desc {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.8;
}
.menu-card-action {
  text-align: center;
  padding: 0 18px 20px;
}
.menu-card-btn {
  display: inline-block;
  color: var(--pink);
  padding: 9px 20px;
  border: 1.5px solid var(--pink);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: background 0.3s, color 0.3s;
}
.menu-card-btn:hover {
  background: var(--pink);
  color: var(--white);
}

/* FLOW */
.flow-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 48px;
}
.flow-step {
  padding: 36px 28px; text-align: center;
  background: var(--white); border: 1px solid #e5e7eb;
}
.flow-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: var(--pink);
  font-weight: 300; line-height: 1; margin-bottom: 12px;
}
.flow-step h3 {
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 10px; color: var(--black);
  font-family: 'Noto Serif JP', serif;
}
.flow-step p { font-size: 0.77rem; line-height: 1.8; color: var(--gray); }

/* FAQ SECTION */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-summary {
  padding: 25px;
  cursor: pointer;
  font-weight: bold;
  background: #000;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-summary::-webkit-details-marker {
  display: none; /* Hide default marker in Safari */
}
.faq-summary-text {
  text-align: left;
  flex: 1;
}
.faq-summary-icon {
  font-size: 1.5rem;
  margin-left: 15px;
}
.faq-answer {
  padding: 35px;
  line-height: 2;
  color: #333;
  background: #fafafa;
  border-top: 1px solid #eee;
  text-align: left;
}
.faq-answer p { margin-bottom: 15px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

/* MEDIA ACHIEVEMENTS */
.media-bar {
  background: var(--gray-light); padding: 40px 80px; text-align: center;
}
.media-label {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 20px;
}
.media-logos {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; letter-spacing: 0.15em; color: #aaa;
}
.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.media-gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.media-gallery-grid a { display: block; text-decoration: none; }
.media-gallery-grid a:hover img,
.media-gallery-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222,49,135,0.12);
}
.media-info-box {
  background: var(--white);
  padding: 40px 48px;
  border: 1px solid #e5e7eb;
  margin-top: 48px;
  font-size: 0.85rem;
  line-height: 2;
  color: #444;
  text-align: left;
}
.media-info-box strong {
  color: var(--black);
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  display: inline-block;
  margin-bottom: 16px;
}

/* BOOKS SECTION */
.books-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.books-img-link {
  display: block;
  text-decoration: none;
}
.books-img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.books-img-link:hover .books-img {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(222,49,135,0.15);
}
.books-btn-wrap {
  margin-top: 40px;
}
.books-btn {
  display: inline-block;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  padding: 14px 36px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s ease;
  background: transparent;
}
.books-btn:hover {
  background: var(--pink);
  color: var(--white);
}

/* PINK BANNER */
.pink-banner {
  background: var(--pink); color: var(--white);
  padding: 80px; text-align: center;
}
.pink-banner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.6; margin-bottom: 20px;
}
.pink-banner p {
  font-size: 0.9rem; line-height: 2;
  opacity: 0.88; max-width: 600px; margin: 0 auto 36px;
}
.btn-white {
  background: var(--white); color: var(--pink);
  padding: 14px 44px; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  transition: opacity 0.3s;
}
.btn-white:hover { opacity: 0.88; }

/* FOOTER */
footer {
  background: var(--black); color: rgba(255,255,255,0.55);
  padding: 60px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--white); margin-bottom: 14px;
}
.footer-brand span { color: var(--pink); }
.footer-desc { font-size: 0.8rem; line-height: 1.9; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.78rem; line-height: 1; margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.72rem;
}
.footer-copy { color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 100px 30px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .profile-section { grid-template-columns: 1fr; padding: 60px 30px; }
  .profile-img-wrap { max-width: 280px; }
  .section-inner { padding: 60px 30px; }
  .concept-grid { grid-template-columns: 1fr; }
  .infographic-row { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .pink-banner { padding: 60px 30px; }
  .media-bar { padding: 40px 30px; }
  footer { padding: 60px 30px 40px; }
  .media-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px;}
  .media-info-box { padding: 30px 24px; }
}