/* neat-dream-748.css — ピッチラボ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --rich-black: #0E141A;
  --jet-black: #2C2D2E;
  --dim-gray: #525357;
  --platinum: #E5E5E5;
  --isabelline: #F5F0EB;
  --oatmeal: #E4D2B8;
  --accent: #C43537;
  --accent-dark: #A02C2E;
  --white: #FFFFFF;
  --fafafa: #FAFAFA;
  --f5f5f5: #F5F5F5;
  --rifle-green: #414833;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--rich-black);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Container ─── */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 1280px) { .container { padding-left: 35px; padding-right: 35px; } }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Noto Sans JP', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--rich-black);
}
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

p { color: var(--dim-gray); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-dark {
  background: var(--rich-black);
  color: var(--white);
  border-color: var(--rich-black);
}
.btn-dark:hover { background: var(--jet-black); }
.btn-outline {
  background: transparent;
  color: var(--rich-black);
  border-color: var(--rich-black);
}
.btn-outline:hover { background: var(--rich-black); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--rich-black); }

/* ─── Top bar ─── */
.top-bar {
  background: var(--f5f5f5);
  border-bottom: 1px solid var(--platinum);
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--dim-gray);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top-bar a { color: var(--dim-gray); }
.top-bar a:hover { color: var(--rich-black); }

/* ─── Header / Nav ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--platinum);
  box-shadow: 0 1px 4px rgba(14,20,26,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 67px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-svg { width: 140px; height: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dim-gray);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--rich-black); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--rich-black);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--fafafa);
  z-index: 200;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--rich-black);
  margin-bottom: 24px;
}
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav ul li { border-bottom: 1px solid var(--platinum); }
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--rich-black);
}

@media (max-width: 1023px) {
  .site-nav, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rich-black);
}
@media (min-width: 768px) { .hero { min-height: 740px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,20,26,0.82) 40%, rgba(196,53,55,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
}

/* ─── Press / Stats bar ─── */
.stats-bar {
  background: var(--rich-black);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

/* ─── Section shared ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--isabelline); }
.section-oatmeal { background: var(--oatmeal); }
.section-dark { background: var(--rich-black); }

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ─── About / Why section ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--isabelline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}
.why-item h4 { font-size: 15px; margin-bottom: 4px; }
.why-item p { font-size: 14px; }

/* ─── Services / Courses ─── */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .courses-grid { grid-template-columns: repeat(3, 1fr); } }

.course-card {
  border: 1px solid var(--platinum);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(14,20,26,0.12);
  transform: translateY(-3px);
}
.course-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.course-card:hover .course-card-img img { transform: scale(1.03); }
.course-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.course-badge.green { background: var(--rifle-green); }
.course-card-body { padding: 24px; }
.course-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.course-card-body p { font-size: 14px; margin-bottom: 16px; }
.course-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--dim-gray);
  margin-bottom: 16px;
}
.course-meta span { display: flex; align-items: center; gap: 5px; }
.course-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--platinum);
}
.price-tag { font-size: 22px; font-weight: 700; color: var(--rich-black); }
.price-tag small { font-size: 12px; color: var(--dim-gray); font-weight: 400; }

/* ─── Process / How it works ─── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--platinum);
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* ─── Instructor ─── */
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .instructor-grid { grid-template-columns: 1fr 1fr; } }

.instructor-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}
.instructor-img img { width: 100%; height: 100%; object-fit: cover; }

.instructor-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.instructor-tag {
  background: var(--isabelline);
  border: 1px solid var(--oatmeal);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 40px;
  color: var(--jet-black);
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--platinum);
  border-radius: 8px;
  padding: 28px;
}
.stars { color: #FCC600; margin-bottom: 14px; font-size: 15px; }
.testimonial-card blockquote { font-size: 15px; color: var(--jet-black); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--rich-black); }
.testimonial-role { font-size: 12px; color: var(--dim-gray); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--platinum); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--rich-black);
  gap: 16px;
}
.faq-question .faq-icon { font-size: 20px; color: var(--accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 14px; color: var(--dim-gray); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--rifle-green);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }

/* ─── Contact form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info h3 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--isabelline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-detail p { font-size: 14px; margin: 0; }

.contact-form { background: var(--white); border: 1px solid var(--platinum); border-radius: 8px; padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--jet-black); }
.form-control {
  width: 100%;
  border: 1px solid var(--platinum);
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--rich-black);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--rich-black); }
.form-control::placeholder { color: var(--dim-gray); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ─── Footer ─── */
.site-footer {
  background: var(--rich-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-svg path { fill: var(--white); }
.footer-desc { font-size: 14px; margin-top: 16px; line-height: 1.65; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; line-height: 1.65; margin-bottom: 6px; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── GDPR Cookies ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--jet-black);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-text { font-size: 14px; flex: 1; min-width: 240px; }
.cookie-text a { color: var(--oatmeal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: var(--accent); color: var(--white); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background: var(--rich-black);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 16px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ─── Content page ─── */
.content-section { padding: 72px 0; }
.content-wrap { max-width: 820px; margin: 0 auto; }
.content-wrap h2 { font-size: 22px; margin: 36px 0 14px; color: var(--rich-black); }
.content-wrap h3 { font-size: 18px; margin: 28px 0 10px; }
.content-wrap p { margin-bottom: 16px; font-size: 15px; }
.content-wrap ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.content-wrap ul li { font-size: 15px; color: var(--dim-gray); margin-bottom: 8px; line-height: 1.65; }

/* ─── Price table ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 8px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1px solid var(--platinum);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-card-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--platinum);
}
.pricing-card.featured .pricing-card-head { background: var(--accent); }
.pricing-card.featured .pricing-card-head h3,
.pricing-card.featured .pricing-card-head .price-big,
.pricing-card.featured .pricing-card-head .price-period { color: var(--white); }
.pricing-card-head h3 { font-size: 18px; margin-bottom: 16px; }
.price-big { font-size: 36px; font-weight: 700; color: var(--rich-black); }
.price-period { font-size: 13px; color: var(--dim-gray); }
.pricing-card-body { padding: 24px 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--platinum);
  color: var(--jet-black);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .feat-icon { color: var(--accent); font-size: 13px; }

/* ─── Map embed placeholder ─── */
.map-wrap {
  width: 100%;
  height: 340px;
  background: var(--platinum);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── Utility ─── */
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 767px) {
  .section { padding: 52px 0; }
  .hero-content p { font-size: 15px; }
  .stats-bar { padding: 20px 0; }
  .contact-form { padding: 24px 16px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
