@charset "UTF-8";

/* CSS Document */

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

:root {
  --base: #F9F8F6;
  --main: #8C6A32;
  --main-light: rgba(140, 106, 50, 0.08);
  --main-lighter: rgba(140, 106, 50, 0.04);
  --accent-start: #F2CB05;
  --accent-end: #8CBF26;
  --text-body: #5a4a2a;
  --text-light: rgba(140, 106, 50, 0.6);
  --border: rgba(140, 106, 50, 0.12);
}

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

body {
  background-color: var(--base);
  color: var(--main);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 500;
  line-height: 2.0;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height:  auto;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-cta {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border: none;
  padding: 10px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.header-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.header-nav ul li a {
  text-decoration: none;
  color: var(--main);
  font-size: 0.85rem;
}

.pc-only { display: block; }
.sp-only { display: none; }
.menu-trigger { display: none; }

@media (max-width: 1024px) {
  .pc-only { display: none; }
  .sp-only { display: block; margin: 30px auto 0; text-align: center; width: fit-content; }

  .menu-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--main);
    transition: all .4s;
  }

  .menu-trigger span:nth-child(1) { top: 0; }
  .menu-trigger span:nth-child(2) { top: 10px; }
  .menu-trigger span:nth-child(3) { bottom: 0; }

  .menu-trigger.active span:nth-child(1) { transform: translateY(10px) rotate(-45deg); }
  .menu-trigger.active span:nth-child(2) { opacity: 0; }
  .menu-trigger.active span:nth-child(3) { transform: translateY(-10px) rotate(45deg); }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--base);
    padding: 100px 20px;
    transition: right 0.4s;
    z-index: 999;
    overflow-y: auto;
  }

  .header-nav.active { right: 0; }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .header-nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .header-nav ul li a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  body.is-fixed { overflow: hidden; }
}

/* ===== HERO ===== */
.hero {
  padding: 180px 40px 120px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 220px;
  margin: 0 auto 30px;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2.0;
  letter-spacing: 0.08em;
  color: var(--main);
  margin-bottom: 48px;
}

.hero-lead {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 2.2;
  margin-bottom: 48px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--main);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 2px;
}

.cta-primary {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border: none;
  padding: 18px 56px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(140, 191, 38, 0.2);
}

.cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(140, 191, 38, 0.3);
}

/* ===== COMMON LOWER PAGES ===== */
.page-hero {
  padding: 160px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--main);
  margin-bottom: 48px;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--main);
  margin-top: 32px;
  opacity: 0.3;
}

.page-lead {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 2.2;
}

.page-lead p + p { margin-top: 1.6em; }

.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.article-section h2,
.greeting-section h2,
.cta-section h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--main);
  margin-bottom: 36px;
}

.article-section h2,
.greeting-section h2 { text-align: left; }

.article-section h2::after,
.greeting-section h2::after,
.cta-section h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--main);
  margin-top: 20px;
  opacity: 0.25;
}

.cta-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.cta-section h2::after {
  width: 40px;
  margin: 24px auto 0;
  opacity: 0.3;
}

.article-text,
.cta-text {
  font-size: 0.92rem;
  line-height: 2.2;
  color: var(--text-body);
}

.article-text p + p { margin-top: 1.6em; }

.highlight-block {
  margin: 40px 0;
  padding: 40px 36px;
  background: rgba(140, 106, 50, 0.03);
  border-left: 2px solid rgba(140, 106, 50, 0.2);
  border-radius: 0 2px 2px 0;
}

.highlight-block p {
  font-size: 0.92rem;
  line-height: 2.2;
  color: var(--text-body);
}

.highlight-block p + p { margin-top: 1.2em; }

.cta-section {
  padding: 100px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.cta-sub {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.cta-sub:hover { color: var(--main); }

/* ===== HOMEPAGE SECTIONS ===== */
section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-wide {
  max-width: 960px;
  margin: 0 auto;
}

h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--main);
  margin-bottom: 48px;
  text-align: center;
}

h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--main);
  margin: 24px auto 0;
  opacity: 0.3;
}

.section-text {
  font-size: 0.92rem;
  line-height: 2.2;
  color: var(--text-body);
}

.urgency-section { background: var(--base); }

.urgency-message {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 2.0;
  color: var(--main);
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}

.pain-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 48px 0 40px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 2.0;
  color: var(--text-body);
}

.pain-item:first-child { border-top: 1px solid var(--border); }

.pain-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  flex-shrink: 0;
  padding-top: 4px;
}

.values-section { background: rgba(140, 106, 50, 0.02); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.value-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--main);
  margin-bottom: 20px;
  line-height: 1.6;
}

.value-desc {
  font-size: 0.85rem;
  line-height: 2.0;
  color: var(--text-body);
}

.comparison-section { background: var(--base); }

.comparison-table {
  width: 100%;
  margin-top: 48px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 28px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.8;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table th {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  width: 30%;
  background: transparent;
}

.comparison-table td { color: var(--text-body); }
.comparison-table tr:first-child th,
.comparison-table tr:first-child td { border-top: 1px solid var(--border); }

.table-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.comparison-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-items li {
  padding: 4px 0 4px 16px;
  position: relative;
}

.comparison-items li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-light);
  font-size: 0.7rem;
}

.comparison-note {
  font-size: 0.88rem;
  line-height: 2.0;
  color: var(--text-body);
  margin-top: 40px;
  padding: 24px;
  background: var(--main-light);
  border-left: 2px solid rgba(140, 106, 50, 0.2);
  text-align: left;
}

.profile-section { background: rgba(140, 106, 50, 0.02); }

.profile-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.profile-photo {
  width: 350px;
  margin: 0 auto;
}

.profile-title {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.profile-bio {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text-body);
  text-align: left;
  margin-bottom: 40px;
}

.profile-quote {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--main);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-section { background: var(--base); }
.faq-list { margin-top: 48px; }
.faq-item { padding: 32px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.88rem;
  line-height: 2.0;
  color: var(--text-body);
  padding-left: 36px;
}

.final-cta {
  padding: 120px 40px;
  text-align: center;
  background: var(--base);
}

.final-cta .section-text {
  margin-bottom: 48px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo img {
  height: 100px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.footer-nav {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.72rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--main); }

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.section-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 auto;
}

.mid-cta {
  text-align: center;
  padding: 72px 40px;
  background: rgba(140, 106, 50, 0.02);
}

.mid-cta-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 2.0;
  margin-bottom: 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  .header-logo img { height: 36px; }
  .header-cta { font-size: 0.72rem; padding: 8px 16px; }

  .hero { padding: 140px 24px 80px; }
  .hero h1 { font-size: 1.25rem; line-height: 2.0; }
  .hero-lead { font-size: 0.88rem; }
  .hero-badges { gap: 12px; }
  .badge { font-size: 0.72rem; padding: 6px 14px; }

  .page-hero { padding: 130px 24px 60px; }
  .page-hero h1 { font-size: 1.5rem; }
  .article { padding: 0 24px; }
  .article-section { padding: 56px 0; }
  .article-section h2,
  .greeting-section h2,
  .cta-section h2 { font-size: 1.1rem; }
  .highlight-block { padding: 28px 24px; }
  .cta-section { padding: 72px 24px; }
  .cta-primary { padding: 16px 40px; font-size: 0.88rem; }

  section { padding: 72px 24px; }
  h2 { font-size: 1.15rem; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .value-card { padding: 28px 16px; border-bottom: 1px solid var(--border); }
  .value-card:last-child { border-bottom: none; }
  .comparison-table th, .comparison-table td { padding: 16px 12px; font-size: 0.82rem; }
  .final-cta { padding: 80px 24px; }
  .mid-cta { padding: 56px 24px; }
  
  .profile-photo {
    width: 78%;
  }
}
