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

  :root {
    --white: #ffffff;
    --off-white: #fafaf8;
    --ink: #1a1a1a;
    --ink-soft: #333333;
    --gray: #767676;
    --gray-light: #b8b8b8;
    --line: #e5e3df;
    --footer: #3d3631;
    --footer-text: rgba(255,255,255,0.85);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    background: var(--white);
    color: var(--ink);
    line-height: 2;
    font-size: 15.5px;
    font-weight: 400;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: rgba(26,26,26,0.15); }

  /* ---------- Common ---------- */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .section {
    padding: 140px 0;
    position: relative;
  }

  .section-head {
    text-align: center;
    margin-bottom: 80px;
  }

  .eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
    display: block;
  }

  .section-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 36px);
    line-height: 1.7;
    letter-spacing: 0.12em;
    color: var(--ink);
  }

  .divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    margin: 28px auto;
    opacity: 0.5;
  }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 0;
    transition: all 0.5s ease;
    background: transparent;
  }
  header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(229,227,223,0.6);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--white);
    transition: color 0.5s ease;
  }
  header.scrolled .logo { color: var(--ink); }

  nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  nav a {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: opacity 0.3s ease, color 0.5s ease;
    position: relative;
  }
  header.scrolled nav a { color: var(--ink); }
  nav a:hover { opacity: 0.65; }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: 0.3s;
  }
  header.scrolled .menu-toggle span { background: var(--ink); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    z-index: 1;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 56px;
    color: var(--white);
  }
  .hero-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.45em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    text-transform: uppercase;
    animation: fadeUp 1.4s ease 0.3s both;
  }
  .hero-tag::before {
    content: '— ';
  }
  .hero h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 48px;
    animation: fadeUp 1.4s ease 0.5s both;
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
  }
  .hero-sub {
    max-width: 560px;
    font-size: 15px;
    line-height: 2.3;
    color: rgba(255,255,255,0.88);
    margin-bottom: 60px;
    animation: fadeUp 1.4s ease 0.7s both;
    font-weight: 300;
  }
  .hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease 0.9s both;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.7;
    animation: fadeIn 2s ease 1.5s both;
  }
  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--white);
    margin: 14px auto 0;
    animation: scrollLine 2.4s ease-in-out infinite;
    transform-origin: top;
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--ink);
  }
  .btn:hover {
    background: transparent;
    color: var(--white);
  }
  .btn .arrow { transition: transform 0.4s ease; }
  .btn:hover .arrow { transform: translateX(6px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
  }
  .btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }

  /* dark theme button for light backgrounds */
  .btn-dark {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--ink);
  }
  .btn-dark:hover {
    background: transparent;
    color: var(--ink);
  }
  .btn-line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-line:hover {
    background: var(--ink);
    color: var(--white);
  }

  /* ---------- About ---------- */
  .about {
    background: var(--white);
    text-align: center;
  }
  .about-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .about p {
    font-size: 16px;
    line-height: 2.5;
    color: var(--ink-soft);
    margin-bottom: 32px;
    font-weight: 400;
  }
  .about p:last-child { margin-bottom: 0; }
  .about-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 22px !important;
    line-height: 2.2 !important;
    color: var(--ink) !important;
    letter-spacing: 0.12em;
    margin-bottom: 40px !important;
  }

  /* セクション導入リード（編集型・中央寄せ）。
     旧: 各セクションでインライン!importantで上書きしていたものをクラス化。
     これによりモバイルでも適切に縮小できる（インライン!importantはメディアクエリを上書きしてしまうため） */
  .section-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 16.5px;
    line-height: 2.1;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
    max-width: 780px;
    margin: 30px auto 0;
  }
  @media (max-width: 900px) {
    .section-lead { font-size: 15.5px; line-height: 2; letter-spacing: 0.08em; }
  }
  @media (max-width: 480px) {
    .section-lead { font-size: 14.5px; }
  }

  /* ---------- For Who ---------- */
  .forwho {
    background: var(--off-white);
  }
  .forwho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
  }
  .forwho-item {
    padding: 40px 44px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: background 0.4s ease;
    background: var(--white);
    position: relative;
  }
  .forwho-item:hover {
    background: var(--off-white);
  }
  .forwho-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--ink);
    min-width: 44px;
    letter-spacing: 0.05em;
    line-height: 1;
    padding-top: 4px;
    opacity: 0.85;
  }
  .forwho-item p {
    font-size: 15.5px;
    line-height: 2;
    color: var(--ink-soft);
    flex: 1;
    padding-top: 4px;
  }

  /* ---------- Mama Banner ---------- */
  .mama-banner {
    padding: 110px 0;
    background:
      radial-gradient(ellipse at top right, rgba(168, 196, 208, 0.25) 0%, transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(240, 217, 144, 0.22) 0%, transparent 55%),
      linear-gradient(180deg, #fafaf8 0%, #faf5e9 50%, #fafaf8 100%);
    position: relative;
    overflow: hidden;
  }
  .mama-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 8%;
    width: 220px;
    height: 220px;
    background: #dfeaef;
    border-radius: 50%;
    opacity: 0.55;
    pointer-events: none;
  }
  .mama-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 5%;
    width: 260px;
    height: 260px;
    background: #faeec6;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
  }
  .mama-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .mama-banner-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.45em;
    color: #7fa4b3;
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .mama-banner-eyebrow::before { content: '— '; }
  .mama-banner-title {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 3.4vw, 30px);
    font-weight: 500;
    letter-spacing: 0.12em;
    margin: 0 0 26px;
    line-height: 1.85;
    color: var(--ink);
  }
  .mama-banner-desc {
    font-size: 15.5px;
    line-height: 2.3;
    color: var(--ink-soft);
    margin-bottom: 44px;
  }
  .mama-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 38px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.18em;
    transition: all 0.4s ease;
    cursor: pointer;
    background: #2d2622;
    color: #fefcf6;
    border: 1px solid #2d2622;
    border-radius: 32px;
  }
  .mama-banner-btn:hover {
    background: #7fa4b3;
    border-color: #7fa4b3;
  }
  .mama-banner-btn .arrow { transition: transform 0.4s ease; }
  .mama-banner-btn:hover .arrow { transform: translateX(6px); }
  @media (max-width: 900px) {
    .mama-banner { padding: 80px 0; }
    .mama-banner-inner { padding: 0 24px; }
    .mama-banner-btn { padding: 16px 30px; font-size: 13px; width: 100%; max-width: 320px; justify-content: center; }
  }

  /* ---------- Services ---------- */
  .services { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .service-card {
    background: var(--white);
    padding: 54px 46px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .service-card:hover {
    background: var(--off-white);
  }
  .service-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.35em;
    color: var(--gray);
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .service-title {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 22px;
    line-height: 1.6;
  }
  .service-card .service-line {
    width: 30px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
    margin-bottom: 22px;
  }
  .service-desc {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
  }

  /* ---------- Message (Black) ---------- */
  .message {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .message::before {
    content: 'MESSAGE';
    position: absolute;
    top: 80px;
    right: -40px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 200px;
    color: rgba(255,255,255,0.035);
    letter-spacing: 0.2em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .message-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .message .eyebrow { color: var(--gray-light); }
  .message .section-title { color: var(--white); }
  /* ダーク見出しの金の細線（partner-recruitのゴールドと呼応／flagshipの#d4b787系） */
  .message .divider { background: rgba(212, 183, 135, 0.75); opacity: 1; width: 40px; margin: 28px 0; }
  .message .eyebrow,
  .message .section-title {
    text-align: left;
  }
  .message-body {
    margin-top: 60px;
  }
  .message-body p {
    font-size: 16px;
    line-height: 2.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-weight: 300;
  }
  .message-body p.lead {
    font-size: 19px;
    color: var(--white);
    font-weight: 400;
    line-height: 2.4;
  }
  .message-body p.lead .accent {
    color: var(--gray-light);
    font-style: italic;
    font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  }
  .message-sign {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.18);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3em;
    font-size: 13px;
  }
  .message-sign span {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-style: normal;
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.18em;
    margin-top: 10px;
  }

  /* ---------- Notes ---------- */
  .notes { background: var(--white); }

  .notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .note-card {
    background: var(--off-white);
    padding: 38px 32px;
    border: 1px solid var(--line);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .note-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .note-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.12);
  }
  .note-card:hover::after { transform: scaleX(1); }

  .note-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 11.5px;
    letter-spacing: 0.38em;
    color: var(--gray);
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .note-title {
    font-family: "Shippori Mincho", serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: 0.1em;
    line-height: 1.65;
  }
  .note-subtitle {
    font-size: 13px;
    line-height: 1.85;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .note-divider {
    width: 24px;
    height: 1px;
    background: var(--ink);
    margin-bottom: 16px;
    opacity: 0.4;
  }
  .note-desc {
    font-size: 13.5px;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 24px;
  }
  .note-link { margin-top: auto; align-self: flex-start; }
  .note-link {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  .note-link:hover {
    letter-spacing: 0.4em;
  }

  /* ---------- Contact ---------- */
  .contact {
    background: var(--off-white);
    text-align: center;
  }
  .contact-inner {
    max-width: 680px;
    margin: 0 auto;
  }
  .contact-lead {
    font-size: 17px;
    line-height: 2.4;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 500;
  }
  .contact-detail {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 60px;
  }
  .contact-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-email {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .contact-email-label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .contact-email-link {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .contact-email-link:hover {
    color: var(--gray);
    border-color: var(--gray);
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--footer);
    color: var(--footer-text);
    padding: 90px 0 40px;
  }
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }
  .footer-brand .logo {
    color: var(--white) !important;
    font-size: 26px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .footer-tag-line {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
  }
  .footer-brand p {
    font-size: 13.5px;
    line-height: 2.1;
    color: rgba(255,255,255,0.6);
  }
  .footer-col h4 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 26px;
    text-transform: uppercase;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    letter-spacing: 0.08em;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
  }

  /* ---------- Animations ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.7; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .section { padding: 90px 0; }
    .section-head { margin-bottom: 60px; }
    .container { padding: 0 24px; }

    .header-inner { padding: 0 24px; }
    nav { display: none; }
    nav.open {
      display: block;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #1a1a1a;
      padding: 100px 30px 30px;
      z-index: 150;
    }
    nav.open ul {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
    nav.open a { color: var(--white) !important; font-size: 16px; }
    .menu-toggle { display: flex; z-index: 200; position: relative; }
    .menu-toggle.open span { background: var(--white) !important; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    body.menu-open header,
    body.menu-open header.scrolled {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: transparent;
    }
    body.menu-open header.scrolled .logo { color: var(--white); }
    body.menu-open { overflow: hidden; }

    /* ファストビュー: 固定ヘッダーとの被りを避けるため上に余白を足し、
       中央寄せのまま全体を少し下げる（padding-top の半分ぶん下にシフト） */
    .hero { min-height: 90vh; padding-top: 72px; }
    .hero-inner { padding: 0 24px; }
    .hero-tag { font-size: 11.5px; letter-spacing: 0.35em; margin-bottom: 22px; }
    .hero h1 {
      font-size: clamp(24px, 6.2vw, 33px);
      line-height: 1.65;
      letter-spacing: 0.05em;
      margin-bottom: 28px;
    }
    .hero-sub { font-size: 13.5px; line-height: 2.1; margin-bottom: 38px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-scroll { display: none; }

    .forwho-grid {
      grid-template-columns: 1fr;
    }
    .forwho-item { padding: 30px 28px; }
    .forwho-num { font-size: 22px; }

    .services-grid {
      grid-template-columns: 1fr;
    }
    .service-card {
      padding: 44px 32px;
    }
    .service-title { font-size: 20px; }

    .message::before {
      font-size: 120px;
      top: 50px;
    }
    .message-inner { padding: 0 28px; }

    .notes-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .note-card { padding: 32px 26px; }

    .contact-cta { flex-direction: column; }
    .contact-cta .btn { width: 100%; justify-content: center; }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .footer-inner { padding: 0 24px; }
  }

  @media (max-width: 480px) {
    body { font-size: 14.5px; }
    .btn { padding: 16px 28px; font-size: 13px; }
    .about-lead { font-size: 18px !important; }
  }

  /* ---------- Strength / Flow (reuses services-grid) ---------- */
  /* 背景リズム: concept(白)→forwho(生成)→strength(白)→mama(黒) と交互にして
     forwho→strength の同色隣接（のっぺり）を解消 */
  .strength { background: var(--white); }
  .flow { background: var(--off-white); }

  /* ---------- Profile ---------- */
  .profile { background: var(--white); }
  .profile-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
  }
  .profile-head .eyebrow {
    display: block;
    margin-bottom: 22px;
  }
  .profile-head .section-title {
    text-align: left;
  }
  .profile-head .divider {
    margin: 28px 0 0 0;
  }
  .profile-body p {
    font-size: 15.5px;
    line-height: 2.4;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .profile-body p:last-child { margin-bottom: 0; }

  /* ---------- FAQ ---------- */
  /* 背景リズム: notes(白)→flow(生成)→faq(白)→partner(黒) と交互にして
     flow→faq の同色隣接（のっぺり）を解消 */
  .faq { background: var(--off-white); }
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 32px 38px;
    transition: all 0.3s ease;
  }
  .faq-item:hover {
    border-color: var(--ink);
  }
  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
  }
  .faq-q-mark {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--gray);
    line-height: 1.3;
    flex-shrink: 0;
    font-weight: 500;
  }
  .faq-q-text {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
  .faq-a {
    padding-left: 40px;
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
  }

  @media (max-width: 900px) {
    .profile-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .faq-item { padding: 26px 24px; }
    .faq-a { padding-left: 0; }
  }

  /* ---------- Clickable service card ---------- */
  .service-card-link {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }
  .service-card-link:hover {
    background: var(--ink) !important;
    color: var(--white) !important;
  }
  .service-card-link:hover .service-num,
  .service-card-link:hover .service-title,
  .service-card-link:hover .service-desc,
  .service-card-link:hover .service-card-arrow {
    color: var(--white) !important;
  }
  .service-card-link:hover .service-line {
    background: rgba(255,255,255,0.4) !important;
  }
  .service-card-arrow {
    display: inline-block;
    margin-top: auto;
    padding-top: 22px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  /* ---------- Form CTA (consult form invitation) ---------- */
  .form-cta {
    background: var(--off-white);
    padding: 110px 0;
    text-align: center;
    position: relative;
  }
  .form-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .form-cta-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .form-cta-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 0;
  }
  .form-cta-divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    margin: 26px auto 30px;
    opacity: 0.5;
  }
  .form-cta-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 44px;
  }
  .form-cta .btn {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--ink);
  }
  .form-cta .btn:hover {
    background: transparent;
    color: var(--ink);
  }

  @media (max-width: 900px) {
    .form-cta { padding: 70px 0; }
    .form-cta-inner { padding: 0 24px; }
    .form-cta-title { font-size: 20px; }
    .form-cta-text { font-size: 14px; line-height: 2.0; margin-bottom: 36px; }
    .form-cta .btn { width: 100%; justify-content: center; }
  }

  /* ---------- Experience Section (4-pillar on home) ---------- */
  .experience { background: var(--off-white); }
  .experience .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .experience-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 70px;
  }
  .experience-pillar {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 44px 32px 38px;
    text-align: left;
    color: var(--ink);
    position: relative;
    transition: all 0.4s ease;
  }
  .experience-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #b59556;
  }
  .experience-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,26,26,0.08);
    border-color: rgba(181,149,86,0.4);
  }
  .experience-pillar-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: #b59556;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .experience-pillar-title {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .experience-pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .experience-pillar-tags span {
    display: inline-block;
    font-family: "Shippori Mincho", serif;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    background: var(--off-white);
    padding: 4px 10px;
    border-radius: 999px;
  }
  .experience-pillar-desc {
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  @media (max-width: 900px) {
    .experience-pillars {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 50px;
    }
    .experience-pillar { padding: 32px 24px 28px; }
    .experience-pillar-title { font-size: 17px; margin-bottom: 16px; padding-bottom: 14px; }
    .experience-pillar-tags span { font-size: 10.5px; padding: 3px 8px; }
    .experience-pillar-desc { font-size: 12.5px; line-height: 1.9; }
  }
  @media (max-width: 560px) {
    .experience-pillars { grid-template-columns: 1fr; }
  }

  /* ---------- Partner Banner (recruit CTA card on home) ---------- */
  .partner-banner {
    background: var(--off-white);
    padding: 90px 0;
  }
  .partner-banner-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .partner-card {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 28px;
    row-gap: 14px;
    align-items: center;
    background: var(--white);
    padding: 44px 56px;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(26,26,26,0.06), 0 2px 8px rgba(26,26,26,0.03);
    transition: all 0.4s ease;
    color: var(--ink);
  }
  .partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(26,26,26,0.10), 0 4px 14px rgba(26,26,26,0.05);
  }
  .partner-card-head {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .partner-card-mark {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 46px);
    letter-spacing: 0.08em;
    color: #b59556;
    line-height: 1;
    white-space: nowrap;
  }
  .partner-card-badge {
    display: inline-block;
    background: #1a1a1a;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
  }
  .partner-card-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    line-height: 1.9;
    margin: 0;
  }
  .partner-card-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 34px;
    color: var(--ink);
    line-height: 1;
    transition: transform 0.4s ease;
  }
  .partner-card:hover .partner-card-arrow {
    transform: translateX(6px);
  }

  @media (max-width: 900px) {
    .partner-banner { padding: 60px 0; }
    .partner-banner-wrap { padding: 0 20px; }
    .partner-card {
      padding: 30px 32px;
      column-gap: 18px;
      row-gap: 12px;
      border-radius: 10px;
    }
    .partner-card-head { gap: 12px; }
    .partner-card-mark { font-size: 28px; letter-spacing: 0.06em; }
    .partner-card-badge { font-size: 10.5px; padding: 6px 14px; letter-spacing: 0.1em; }
    .partner-card-text { font-size: 13.5px; letter-spacing: 0.04em; line-height: 1.8; }
    .partner-card-arrow { font-size: 26px; }
  }

  /* ---------- Hero lead (second line under H1) ---------- */
  .hero-lead {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.9;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.92);
    margin-top: -28px;
    margin-bottom: 38px;
    animation: fadeUp 1.4s ease 0.6s both;
  }

  /* ---------- Concept Preview (homepage) ---------- */
  .concept { background: var(--white); }
  .concept-title {
    line-height: 1.85 !important;
    letter-spacing: 0.14em !important;
  }
  .concept-lead {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 2.2;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    margin-top: 30px;
    text-align: center;
  }
  .concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 80px auto 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .concept-card {
    background: var(--white);
    padding: 54px 46px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  .concept-card:hover {
    background: var(--ink);
    color: var(--white);
  }
  .concept-card:hover .concept-card-num,
  .concept-card:hover .concept-card-eyebrow,
  .concept-card:hover .concept-card-title,
  .concept-card:hover .concept-card-desc,
  .concept-card:hover .concept-card-arrow {
    color: var(--white);
  }
  .concept-card-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 24px;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    transition: color 0.5s ease;
  }
  .concept-card-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 18px;
    text-transform: uppercase;
    transition: color 0.5s ease;
  }
  .concept-card-title {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin-bottom: 22px;
    transition: color 0.5s ease;
  }
  .concept-card-desc {
    font-size: 14px;
    line-height: 2.1;
    color: var(--ink-soft);
    margin-bottom: 30px;
    flex: 1;
    transition: color 0.5s ease;
  }
  .concept-card-arrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-transform: uppercase;
    transition: color 0.5s ease, letter-spacing 0.3s ease;
    margin-top: auto;
  }
  .concept-card:hover .concept-card-arrow {
    letter-spacing: 0.4em;
  }

  .concept-cta {
    text-align: center;
    margin-top: 70px;
  }

  /* Concept responsive */
  @media (max-width: 900px) {
    .hero-lead {
      font-size: 16px;
      margin-top: -18px;
      margin-bottom: 30px;
      letter-spacing: 0.08em;
    }
    .concept-grid {
      grid-template-columns: 1fr;
      margin-top: 56px;
    }
    .concept-card { padding: 40px 30px; }
    .concept-card-title { font-size: 18px; }
    .concept-lead { font-size: 14.5px; line-height: 2.0; margin-top: 24px; }
    .concept-cta { margin-top: 50px; }
    .concept-cta .btn { width: 100%; justify-content: center; }
  }

  /* ============================================
     Partner Recruit Section (top page)
     ============================================ */
  .partner-recruit {
    background: var(--ink);
    color: var(--white);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .partner-recruit::before {
    content: 'RECRUIT';
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.45em;
    color: rgba(212,183,135,0.7);
    text-transform: uppercase;
    pointer-events: none;
  }
  .partner-recruit-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .partner-recruit-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: #d4b787;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .partner-recruit-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.4vw, 32px);
    line-height: 1.85;
    letter-spacing: 0.16em;
    color: var(--white);
    margin: 0;
  }
  .partner-recruit-divider {
    width: 36px;
    height: 1px;
    background: rgba(212,183,135,0.6);
    margin: 32px auto;
  }
  .partner-recruit-text {
    font-size: 15px;
    line-height: 2.4;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
    letter-spacing: 0.06em;
  }
  .partner-recruit-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.22em;
    border: 1px solid #d4b787;
    color: #d4b787;
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .partner-recruit-cta:hover {
    background: #d4b787;
    color: var(--ink);
  }
  .partner-recruit-cta-arrow {
    transition: transform 0.4s ease;
  }
  .partner-recruit-cta:hover .partner-recruit-cta-arrow {
    transform: translateX(6px);
  }

  @media (max-width: 900px) {
    .partner-recruit { padding: 90px 0; }
    .partner-recruit::before {
      top: 18px; right: 20px;
      font-size: 10px; letter-spacing: 0.35em;
    }
    .partner-recruit-text { font-size: 14px; line-height: 2.1; }
    .partner-recruit-cta { padding: 16px 30px; font-size: 13px; }
  }

  /* ============================================
     Contact Channels (3-up card layout)
     ============================================ */
  .contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 920px;
    margin: 50px auto 40px;
  }
  .contact-channel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 38px 30px 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s ease;
    position: relative;
    text-align: left;
  }
  .contact-channel:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-3px);
  }
  .contact-channel-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 14px;
    transition: color 0.4s ease;
  }
  .contact-channel:hover .contact-channel-eyebrow {
    color: #d4b787;
  }
  .contact-channel-title {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 10px;
    transition: color 0.4s ease;
  }
  .contact-channel:hover .contact-channel-title {
    color: var(--white);
  }
  .contact-channel-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    transition: color 0.4s ease;
    margin-bottom: 22px;
  }
  .contact-channel:hover .contact-channel-desc {
    color: rgba(255,255,255,0.7);
  }
  .contact-channel-arrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gray);
    margin-top: auto;
    transition: color 0.4s ease, transform 0.4s ease;
  }
  .contact-channel:hover .contact-channel-arrow {
    color: #d4b787;
    transform: translateX(6px);
  }

  .contact-social {
    text-align: center;
    margin-top: 30px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
  }
  .contact-social a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-social a:hover {
    color: var(--ink);
  }
  .contact-social-dot {
    margin: 0 16px;
    color: var(--gray-light);
  }

  @media (max-width: 900px) {
    .contact-channels {
      grid-template-columns: 1fr;
      gap: 14px;
      margin: 40px 0 30px;
    }
    .contact-channel { padding: 28px 26px 24px; }
    .contact-channel-title { font-size: 16px; }
  }

  /* ---------- Make note cards link-clickable ---------- */
  a.note-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  a.note-card:hover .note-link {
    letter-spacing: 0.4em;
  }

  /* ---------- Home News Ticker (compact one-line list) ---------- */
  .home-news {
    background: var(--white);
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--line);
  }
  .home-news-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .home-news-head {
    display: flex;
    align-items: baseline;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .home-news-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
  }
  .home-news-title {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--ink);
    line-height: 1.4;
    margin: 0;
  }
  .home-news-more {
    margin-left: auto;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--ink);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .home-news-more:hover {
    border-bottom-color: var(--ink);
    gap: 12px;
  }
  .home-news-more .arrow {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  .home-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .home-news-item {
    border-bottom: 1px solid var(--line);
  }
  .home-news-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 4px;
    color: var(--ink);
    transition: padding 0.3s ease, background 0.3s ease;
  }
  .home-news-item a:hover {
    background: var(--off-white);
    padding-left: 14px;
    padding-right: 14px;
  }
  .hn-date {
    font-family: "Cormorant Garamond", serif;
    font-size: 13.5px;
    letter-spacing: 0.16em;
    color: var(--gray);
    flex-shrink: 0;
    width: 92px;
  }
  .hn-cat {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    background: var(--off-white);
    border: 1px solid var(--line);
    padding: 4px 12px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .hn-important {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #fff;
    background: var(--ink);
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .hn-title {
    font-family: "Shippori Mincho", serif;
    font-size: 14.5px;
    letter-spacing: 0.06em;
    color: var(--ink);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hn-arrow {
    color: var(--gray);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .home-news-item a:hover .hn-arrow {
    transform: translateX(4px);
    color: var(--ink);
  }
  .home-news-empty {
    padding: 24px 0;
    font-size: 13.5px;
    color: var(--gray);
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  @media (max-width: 900px) {
    .home-news { padding: 50px 0 36px; }
    .home-news-inner { padding: 0 24px; }
    .home-news-head { gap: 14px; margin-bottom: 18px; }
    .home-news-title { font-size: 17px; }
    .home-news-more { margin-left: 0; font-size: 12px; }
    .home-news-item a {
      flex-wrap: wrap;
      gap: 10px 12px;
      padding: 16px 4px;
    }
    .home-news-item a:hover {
      padding-left: 4px;
      padding-right: 4px;
      background: transparent;
    }
    .hn-date { font-size: 12px; width: auto; letter-spacing: 0.14em; }
    .hn-cat { font-size: 10.5px; padding: 3px 10px; }
    .hn-important { font-size: 10.5px; padding: 3px 9px; }
    .hn-title {
      font-size: 13.5px;
      flex-basis: 100%;
      white-space: normal;
      line-height: 1.7;
    }
    .hn-arrow { display: none; }
  }


/* ===== 2026-06 redesign: Products / Free entry / section foot CTA ===== */
.products { background: var(--white); }
.free-entry { background: var(--off-white); }

.product-price {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.soon-badge {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 10px;
  border: 1px solid #d4b787;
  color: #b59556;
  font-size: 11px;
  letter-spacing: 0.12em;
  vertical-align: middle;
  white-space: nowrap;
}

.free-entry-cta,
.section-foot-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .free-entry-cta .btn,
  .section-foot-cta .btn {
    width: 100%;
    justify-content: center;
  }
}


/* 3-card sections (free diagnosis / support): 3 columns on desktop */
.free-entry .services-grid,
.services .services-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

@media (max-width: 900px) {
  .free-entry .services-grid,
  .services .services-grid {
    grid-template-columns: 1fr;
  }
}
