@charset "UTF-8";

:root {
  --color-main: #d9455f;
  --color-main-dark: #a92446;
  --color-accent: #f7c2be;
  --color-bg: #fff8f5;
  --color-bg-soft: #fff1ec;
  --color-text: #3b2b2b;
  --color-muted: #7d6666;
  --color-white: #ffffff;
  --shadow: 0 18px 45px rgba(169, 36, 70, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --inner: min(1120px, calc(100% - 40px));
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.9;
  background: var(--color-white);
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
  Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 69, 95, 0.1);
}

.header-inner {
  width: var(--inner);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 14px;
  color: #604b4b;
}

.nav a {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-main), #ef7180);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(217, 69, 95, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 69, 95, 0.32);
}

.menu-button {
  display: none;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-main-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
  MV HTMLテキスト版
========================= */

.hero {
  position: relative;
  background: #fff8f5;
  overflow: hidden;
}

/* 画像内の既存文字を隠して、HTMLテキストを読みやすくする左側グラデーション */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.97) 28%,
    rgba(255, 252, 250, 0.86) 42%,
    rgba(255, 248, 245, 0.42) 56%,
    rgba(255, 248, 245, 0.00) 70%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 128%;
  height: 110px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,78 C140,52 260,44 390,58 C520,72 620,90 720,90 C820,90 920,72 1050,58 C1180,44 1300,52 1440,78 L1440,120 L0,120 Z' fill='%23fff8f5'/></svg>");
}

.hero-picture,
.hero-picture img {
  display: block;
  width: 100%;
}

.hero-picture img {
  height: auto;
}

/* MVテキスト */
.hero-content {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 50%;
  width: var(--inner);
  transform: translate(-50%, -50%);
}

.hero-title {
  margin: 0;
  color: #4a2b22;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.1vw, 94px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: #dd596d;
  font-size: 0.86em;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

.hero-lead {
  max-width: 620px;
  margin: clamp(28px, 3.2vw, 48px) 0 0;
  color: #4d322b;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0.08em;
}

/* 旧MV要素をHTMLに残していても表示させない */
.hero-inner,
.hero-copy,
.hero-image,
.hero-visual,
.photo-card,
.floating-card,
.eyebrow {
  display: none;
}

/* =========================
  Common
========================= */

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-main), #ef7180);
  box-shadow: 0 18px 34px rgba(217, 69, 95, 0.3);
}

.button-secondary {
  color: var(--color-main-dark);
  background: #fff;
  border: 1px solid rgba(217, 69, 95, 0.18);
  box-shadow: 0 12px 28px rgba(169, 36, 70, 0.08);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-3px);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--color-bg);
}

.section-inner {
  width: var(--inner);
  margin-inline: auto;
}

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

.section-heading-left {
  text-align: left;
  margin-bottom: 24px;
}

.section-heading span {
  display: block;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 37px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pc-only {
    display: inline;
  }

.sp-only {
  display: none;
}

/* =========================
  Results
========================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 69, 95, 0.12);
  box-shadow: 0 14px 34px rgba(169, 36, 70, 0.06);
}

.stat-card strong {
  display: block;
  color: var(--color-main);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  font-family: var(--font-serif);
  font-weight: 600;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

/* =========================
  About
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  min-height: auto;
  border-radius: 28px;
  background: none !important;
  box-shadow: 0 18px 45px rgba(169, 36, 70, 0.12);
  overflow: hidden;
}

.about-image::after {
  content: none;
  display: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-copy {
  text-align: left;
}

.about-copy .section-heading {
  text-align: left;
  margin-bottom: 24px;
}

.about-copy h3 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-copy p {
  color: #604b4b;
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 2;
}

.about-copy .button-primary {
  display: flex;
  width: fit-content;
  min-width: 260px;
  margin: 34px 0 0 auto;
}

/* =========================
  Values / Support / Voice
========================= */

.values-grid,
.support-grid,
.voice-grid {
  display: grid;
  gap: 22px;
}

.values-grid,
.support-grid {
  grid-template-columns: repeat(4, 1fr);
}

.voice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.support-card,
.voice-card {
  background: #fff;
  border: 1px solid rgba(217, 69, 95, 0.11);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(169, 36, 70, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-card:hover,
.support-card:hover,
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(169, 36, 70, 0.13);
}

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

.icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card h3,
.support-card h3,
.voice-card h3 {
  margin: 0 0 10px;
  color: var(--color-main-dark);
  font-size: 18px;
  line-height: 1.6;
}

.value-card p,
.support-card p,
.voice-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.support-card {
  overflow: hidden;
}

.support-thumb {
  height: 170px;
  background:
    url("../images/support-1.jpg") center / cover no-repeat,
    linear-gradient(135deg, #fff, #ecd6cf);
}

.support-card:nth-child(2) .support-thumb {
  background-image:
    url("../images/support-2.jpg"),
    linear-gradient(135deg, #fff, #ecd6cf);
}

.support-card:nth-child(3) .support-thumb {
  background-image:
    url("../images/support-3.jpg"),
    linear-gradient(135deg, #fff, #ecd6cf);
}

.support-card:nth-child(4) .support-thumb {
  background-image:
    url("../images/support-4.jpg"),
    linear-gradient(135deg, #fff, #ecd6cf);
}

.support-body {
  padding: 28px 24px 34px;
  text-align: center;
}

.support-card h3 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 21px;
  line-height: 1.55;
}

.support-card p {
  margin: 0 auto;
  text-align: left;
  line-height: 2;
}

.voice-card {
  padding: 30px;
}

.note {
  margin-top: 20px;
  text-align: right;
  color: var(--color-muted);
  font-size: 12px;
}

/* =========================
  Profile
========================= */

.profile-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fffaf8 48%,
    #fff6f3 100%
  );
  padding: 40px 0 100px;
}

.profile-deco {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.profile-deco-top {
  top: 0;
}

.profile-deco-bottom {
  bottom: 0;
}

.profile-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 72px;
  align-items: center;
  min-height: 560px;
}

.profile-copy {
  max-width: 740px;
}

.profile-copy .section-heading {
  text-align: left;
  margin-bottom: 30px;
}

.profile-copy p {
  margin: 0;
  color: #604b4b;
  font-size: 17px;
  line-height: 2.1;
  font-weight: 400;
}

.profile-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-photo-wrap {
  width: 400px;
  display: flex;
  justify-content: center;
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.profile-photo img {
  transform: scaleX(-1);
}

.profile-button {
  width: 360px;
  min-height: 64px;
}

/* =========================
  Voice
========================= */

.voice-section {
  background: #fff8f6;
}

.voice-section .section-heading {
  margin-bottom: 64px;
}

.voice-list {
  display: grid;
  gap: 24px;
}

.voice-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 36px;
  background: #fff;
  border: 1px solid #f3dada;
  border-radius: 28px;
  padding: 24px 28px;
  box-shadow: 0 10px 28px rgba(190, 53, 95, 0.04);
}

.voice-person {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-person img {
  width: 180px;
  height: auto;
  display: block;
}

.voice-content h3 {
  margin: 0 0 16px;
  color: #bd2f59;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.55;
  font-weight: 700;
}

.voice-content p {
  margin: 0;
  color: #6f5b5b;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
  font-weight: 400;
}

.voice-note {
  margin-top: 24px;
  text-align: right;
  color: #7b6666;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================
  Company
========================= */

.company-box {
  max-width: 780px;
  margin-inline: auto;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.company-table th,
.company-table td {
  padding: 17px 0;
  border-bottom: 1px solid rgba(217, 69, 95, 0.12);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 150px;
  color: var(--color-main-dark);
  font-weight: 700;
}

.company-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.company-button-wrap .button-primary {
  margin: 0;
  width: 45%;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 190px 20px;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  margin-bottom: 48px;
}

.contact-heading span {
  display: block;
  margin-bottom: 18px;
  color: #df4f6a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.contact-heading h2 {
  margin: 0;
  color: #3b2a2a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.35;
}

.contact-text {
  margin: 0 auto;
  color: #6d5757;
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.contact-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.contact-button {
  min-width: 300px;
  justify-content: center;
}

/* =========================
  CTA
========================= */

.cta-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #94243f, #e44d68);
  color: #fff;
  text-align: center;
}

.cta-inner {
  width: var(--inner);
  margin-inline: auto;
}

.cta-inner h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.55;
  font-weight: 600;
}

.cta-inner p {
  margin: 0 auto 32px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-inner .button-secondary {
  min-width: 280px;
  min-height: 66px;
  font-size: 17px;
}

/* =========================
  Footer
========================= */

.site-footer {
  background: #fff;
  padding: 40px 20px 28px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;

  /* ナビ上の線 */
  border-top: 1px solid rgba(190, 120, 120, 0.28);
  padding-top: 26px;

  margin: 0 0 20px;
}

.footer-nav a {
  color: #5c4a4a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: #df4d6d;
}

.footer-copy {
  margin: 0;
  color: #8f7b7b;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* =========================
  Animation
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  Tablet
========================= */

@media (max-width: 1080px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .values-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  :root {
    --inner: min(100% - 32px, 1120px);
  }

  .header-inner {
    height: 74px;
  }

  .logo img {
    width: 138px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero::after {
  bottom: -25px;
}

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 42px;
  }

  .about-copy .section-heading {
    text-align: center;
  }

  .about-copy .button-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .profile-section {
    padding: 100px 0 100px;
  }

  .profile-deco {
    width: 140%;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    text-align: center;
  }

  .profile-copy {
    max-width: 100%;
  }

  .profile-copy .section-heading {
    text-align: center;
  }

  .profile-copy p {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }

  .profile-side {
    width: min(380px, 88vw);
    margin: 0 auto;
  }

  .profile-photo-wrap {
    width: 240px;
  }

  .profile-button {
    width: min(340px, 86vw);
  }

  .stats-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 42px 0;
    text-align: center;
  }

  .profile-copy .section-heading {
    text-align: center;
  }

  .profile-text {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .profile-button {
    margin-left: auto;
    margin-right: auto;
  }

  .profile-photo {
    width: min(340px, 76vw);
  }

  .voice-card {
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 32px 36px;
  }

  .voice-person {
    width: 140px;
  }

  .voice-content h3 {
    font-size: 22px;
  }

  .voice-content p {
    font-size: 16px;
  }

  .contact-section {
  padding: 140px 20px;
}

.site-header.is-open .header-inner {
    height: auto;
    min-height: 92px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 0 24px;
  }

  .site-header.is-open .logo {
    padding-top: 0;
  }

  .site-header.is-open .menu-button {
    margin-left: auto;
  }

  .site-header.is-open .nav {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 26px 0 0;
  }

  .site-header.is-open .nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(217, 69, 95, 0.08);
    font-size: 16px;
  }

  .site-header.is-open .header-cta {
    display: flex;
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 16px 24px;
    font-size: 18px;
  }

}

/* =========================
  Smartphone
========================= */

@media (max-width: 640px) {
  :root {
    --inner: min(100% - 28px, 1120px);
  }

  body {
    line-height: 1.85;
    letter-spacing: 0.03em;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    height: 92px;
  }

  .logo img {
    width: 190px;
  }

  .menu-button {
    width: 72px;
    height: 72px;
    font-size: 34px;
  }

  .hero {
    min-height: 690px;
  }

    .hero-picture {
    position: absolute;
    inset: 0;
  }

  .hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
  }

  .hero::after {
    height: 90px;
    bottom: -5px;
  }

  .hero::before {
  display: none;
  }

  .hero-content {
    top: 42%;
    left: 50%;
    width: calc(100% - 32px);
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.35;
    letter-spacing: 0.06em;
  }


  .hero-title-accent {
    font-size: 0.9em;
    letter-spacing: 0.08em;
  }

  .hero-lead {
    max-width: 92%;
    margin-top: 140px;
    font-size: clamp(13px, 4.6vw, 15px);
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .hero-title {
    background: none;
    padding: 0;
  }

  .hero-title span {
    display: table;
    margin-bottom: 2px;
    padding: 0 14px 2px 8px;

    background:
      linear-gradient(
        90deg,
        rgba(254, 243, 238, 0.94) 0%,
        rgba(254, 243, 238, 0.82) 58%,
        rgba(254, 243, 238, 0.34) 86%,
        rgba(254, 243, 238, 0.00) 100%
      );
  }

  .hero-lead {
    display: inline-block;
    max-width: 92%;
    padding: 12px 18px 12px 10px;
    border-radius: 0;

    background:
      linear-gradient(
        90deg,
        rgba(254, 243, 238, 0.92) 0%,
        rgba(254, 243, 238, 0.78) 62%,
        rgba(254, 243, 238, 0.30) 88%,
        rgba(254, 243, 238, 0.00) 100%
      );
  }
  

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .values-grid,
  .support-grid,
  .voice-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-grid {
    gap: 34px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-copy .section-heading,
  .section-heading-left {
    text-align: center;
  }

  .about-copy h3 {
    font-size: 31px;
    line-height: 1.65;
  }

 .about-copy p {
    font-size: 15px;
    line-height: 2;
  }

  .about-copy .button-primary {
    width: min(86vw, 340px);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy .button-primary {
    width: 100%;
  }

  .icon {
    margin-bottom: 5px;
  }

  .value-card {
    padding: 22px ;
  }

  .support-body {
    padding: 26px 24px 32px;
  }

  .support-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .profile-section {
    padding: 84px 0 88px;
  }

  .profile-deco {
    width: 180%;
  }

  .profile-layout {
    gap: 32px;
  }

  .profile-copy p {
    font-size: 15px;
    line-height: 2;
  }

  .profile-photo-wrap {
    width: 210px;
  }

  .profile-button {
    width: min(86vw, 340px);
    min-width: 0;
  }

  .voice-section .section-heading {
    margin-bottom: 40px;
  }

  .voice-section .section-heading {
    margin-bottom: 40px;
  }

  .voice-list {
    gap: 18px;
  }

  .voice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 28px 25px;
    border-radius: 24px;
    text-align: center;
  }

  .voice-person {
    width: 100%;
    padding-top: 0;
    display: flex;
    justify-content: center;
  }

  .voice-person img {
    width: 150px;
    height: auto;
  }

  .voice-content {
    width: 100%;
  }

  .voice-content h3 {
    font-size: 21px;
    line-height: 1.55;
    margin-bottom: 14px;
    text-align: center;
  }

  .voice-content p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .voice-note {
    margin-top: 18px;
    text-align: left;
    font-size: 12px;
  }

  .company-box {
    padding: 24px 18px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .company-table th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .company-button-wrap {
    margin-top: 36px;
  }

  .company-button-wrap .button-primary {
    width: min(100%, 320px);
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-inner h2 {
    font-size: 29px;
  }

  .cta-inner .button-secondary {
    min-width: 0;
  }

  .note {
    text-align: left;
  }

  .site-footer {
    padding: 34px 20px 24px;
  }

  .footer-nav {
    gap: 12px 20px;
    padding-top: 22px;
    margin-bottom: 18px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .logo img {
    width: 168px;
  }

  .menu-button {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}

/* =========================
  Results 画像月桂樹 修正版
========================= */

.results-section {
  background: #fff8f5;
  padding: 88px 0 96px;
}

.results-section .section-heading {
  margin-bottom: 42px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.stat-card {
  position: relative;
  min-height: 156px;
  padding: 30px 82px;
  text-align: center;
  background: #fffdf9;
  border: 1px solid rgba(222, 205, 156, 0.85);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 古いCSSの擬似要素を完全に無効化 */
.stat-card::before,
.stat-card::after {
  content: none !important;
  display: none !important;
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-label {
  margin: 0 0 8px;
  color: #b9963f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.stat-number {
  margin: 0;
  color: #b9963f;
  font-family: var(--font-serif);
  line-height: 1;
  white-space: nowrap;
}

.stat-number strong {
  display: inline-block;
  color: #c29a2f;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat-number span {
  display: inline-block;
  margin-left: 6px;
  color: #b9963f;
  font-size: 15px;
  font-weight: 700;
  vertical-align: baseline;
}

/* 月桂樹画像 */
.stat-laurel {
  position: absolute !important;
  top: 55%;
  width: 92px;
  max-width: none;
  height: auto;
  opacity: 0.62;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}

.stat-laurel-left {
  left: 10px;
}

.stat-laurel-right {
  right: 10px;
  transform: translateY(-50%) scaleX(-1);
}

/* Tablet */
@media (max-width: 920px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
    margin-inline: auto;
  }

  .stat-card {
    min-height: 146px;
    padding: 26px 78px;
  }

  .stat-laurel {
    width: 84px;
  }

  .stat-laurel-left {
    left: 8px;
  }

  .stat-laurel-right {
    right: 8px;
  }

  .stat-number strong {
    font-size: 50px;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .results-section {
    padding: 72px 0;
  }

  .stat-card {
    min-height: 132px;
    padding: 22px 62px;
    border-radius: 18px;
    box-shadow:
      0 8px 18px rgba(169, 36, 70, 0.035),
      inset 0 0 0 8px #fffdf9,
      inset 0 0 0 9px rgba(230, 217, 180, 0.82);
  }

  .stat-laurel {
    width: 72px;
    opacity: 0.58;
  }

  .stat-laurel-left {
    left: 10px;
  }

  .stat-laurel-right {
    right: 10px;
  }

  .stat-label {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .stat-number strong {
    font-size: 40px;
  }

  .stat-number span {
    font-size: 15px;
  }
}

/* =========================
  Support
========================= */

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.support-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 69, 95, 0.11);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(169, 36, 70, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(169, 36, 70, 0.13);
}

.support-thumb {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #fff1ec;
}

.support-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.support-body {
  position: static;
  padding: 30px 24px 34px;
  background: #fff;
  text-align: center;
}

.support-card h3 {
  margin: 0 0 18px;
  color: var(--color-main-dark);
  font-size: 21px;
  line-height: 1.55;
  text-align: center;
}

.support-card p {
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

/* Tablet */
@media (max-width: 920px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-thumb {
    height: 210px;
  }
}

/* Smartphone */
@media (max-width: 640px) {

  .sp-only {
    display: inline;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-card {
    border-radius: 20px;
  }

  .support-thumb {
    height: 250px;
  }

  .support-body {
    position: static;
    padding: 14px 14px 24px;
    background: #fff;
    text-align: center;
  }

  .support-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
  }

  .support-card p {
    margin: 0 auto;
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }

/* =========================
   CONTACT
========================= */

  .contact-section {
    min-height: auto;
    padding: 120px 20px 130px;
  }

  .contact-bg {
    background-position: center center;
    background-size: cover;
  }

  .contact-heading {
    margin-bottom: 24px;
  }

  .contact-heading span {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .contact-heading h2 {
    font-size: 38px;
  }

  .contact-text {
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }


  .contact-button-wrap {
    margin-top: 12px;
  }

  .contact-button {
    width: min(100%, 320px);
    min-width: 0;
  }

}