@layer reset, tokens, base, layout, components, pages, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img,
  iframe,
  svg {
    display: block;
    max-width: 100%;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul,
  ol {
    list-style: none;
    padding: 0;
  }

  fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
  }

  legend {
    padding: 0;
  }
}

@layer tokens {
  :root {
    --en-base: #faf8f4;
    --en-sub: #f1eee7;
    --en-text: #1a1a1a;
    --en-muted: #444444;
    --en-gold: #b79a5b;
    --en-gold-light: rgba(183, 154, 91, 0.1);
    --en-gold-text: #7a6835;
    --en-line: rgba(183, 154, 91, 0.18);
    --en-dark: #1f2a37;
    --en-white: #ffffff;

    --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
      sans-serif;
    --font-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;

    --text-body: clamp(1.0625rem, 0.11vw + 1.04rem, 1.125rem);
    --text-small: clamp(0.875rem, 0.84rem + 0.14vw, 0.95rem);
    --text-h1: clamp(2rem, 1.77vw + 1.59rem, 3rem);
    --text-h2: clamp(1.6rem, 1.37vw + 1.28rem, 2.375rem);
    --space-section: clamp(5rem, 8.84vw + 2.93rem, 10rem);
    --space-page-header-y: clamp(2.75rem, 2.21vw + 2.23rem, 4rem);
    --space-container-x: clamp(1.25rem, 2.21vw + 0.73rem, 2.5rem);
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;

    --section-gap-sm: clamp(3.5rem, 3.54vw + 2.67rem, 5.5rem);
    --section-gap-md: clamp(4.75rem, 3.98vw + 3.82rem, 7rem);
    --shadow-card-hover: 0 24px 44px rgba(34, 34, 34, 0.1);
    --en-gold-hover: #c9ad6e;
    --en-badge-bg: #666666;
    --en-error: #ef4f4f;
  }
}

@layer base {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
  }

  body {
    font-family: var(--font-sans);
    font-size: var(--text-body);
    line-height: 1.8;
    color: var(--en-text);
    background: url('../img/white-bg.png') center / cover no-repeat fixed;
  }

  main {
    padding-top: 4.5rem;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--font-serif);
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--en-text);
    font-weight: 500;
  }

  p {
    line-height: 2;
    color: var(--en-muted);
  }

  :where(a, button, input, select, textarea):focus-visible {
    outline: 2px solid var(--en-gold);
    outline-offset: 2px;
  }

  :focus-visible {
    outline: 2px solid var(--en-gold);
    outline-offset: 3px;
  }

  :where(button, .btn) {
    min-height: 48px;
  }

  .input,
  .select,
  .textarea {
    font-size: 1rem;
  }

  .input:focus,
  .select:focus,
  .textarea:focus {
    outline: none;
    border-color: rgba(183, 154, 91, 0.55);
    box-shadow: 0 0 0 4px rgba(183, 154, 91, 0.12);
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }

    html.js .reveal,
    html.js .reveal.is-visible {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
}

@layer layout {
  .container {
    width: min(71.25rem, calc(100% - var(--space-container-x) * 2));
    margin-inline: auto;
  }

  .section-y {
    padding-block: var(--space-section);
  }
}

@layer components {
  /* --- Buttons --- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-sm);
    padding: 0.78rem 1.85rem;
    border: 1px solid transparent;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease,
      border-color 0.2s ease, transform 0.2s ease,
      box-shadow 0.2s ease;
    cursor: pointer;
  }

  .btn-primary {
    color: var(--en-white);
    background: var(--en-gold);
    border-color: var(--en-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .btn-primary:hover {
    background: var(--en-gold-hover);
    border-color: var(--en-gold-hover);
    box-shadow: 0 4px 20px rgba(183, 154, 91, 0.35);
    transform: translateY(-1px);
  }

  .btn-secondary {
    color: var(--en-gold);
    background: var(--en-white);
    border-color: var(--en-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .btn-secondary:hover {
    color: var(--en-white);
    background: var(--en-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }

  .btn__arrow {
    display: inline-block;
    vertical-align: middle;
    transform: translateY(1.5px);
    transition: transform 0.3s ease;
  }

  .btn:hover .btn__arrow {
    transform: translateX(4px) translateY(1.5px);
  }

  .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--en-gold);
  }

  .btn-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* --- Page Hero & Breadcrumb --- */
  .page-hero {
    padding-top: clamp(2.5rem, 2.65vw + 1.88rem, 4rem);
  }

  .page-hero + .section-y {
    padding-top: 0;
    margin-top: clamp(3rem, 1.77vw + 2.59rem, 4rem);
  }

  .page-hero__label {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--en-gold);
    text-transform: uppercase;
  }

  .page-hero__title {
    margin-top: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  .page-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--en-muted);
  }

  .page-hero__breadcrumb a {
    transition: color 0.2s ease;
  }

  .page-hero__breadcrumb a:hover {
    color: var(--en-gold);
  }

  .page-hero__sep {
    opacity: 0.5;
  }

  .page-hero .container::after {
    content: "";
    display: block;
    margin-top: clamp(2rem, 1.77vw + 1.59rem, 3rem);
    border-bottom: 1px solid var(--en-line);
  }

  /* --- Section Heading --- */
  .section-heading {
    text-align: center;
  }

  .section-heading._left {
    text-align: left;
  }

  .section-heading__label {
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--en-gold-text);
  }

  .section-heading__title {
    font-size: clamp(1.75rem, 1.11vw + 1.49rem, 2.375rem);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.06em;
    color: var(--en-text);
  }

  .section-heading__line {
    width: 2.5rem;
    height: 1px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    background: var(--en-gold);
    opacity: 0.6;
  }

  .section-heading:not(._left) .section-heading__line {
    margin-inline: auto;
  }

  .section-heading__sub {
    margin-top: 1.5rem;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--en-muted);
  }

  .section-heading:not(._left) .section-heading__sub {
    margin-inline: auto;
  }

  /* --- Header & Desktop Nav --- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease,
      box-shadow 0.2s ease;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .site-header:has(.mobile-nav.is-open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.875rem;
  }

  .site-logo {
    display: inline-flex;
    align-items: center;
    width: 8.25rem;
    overflow: hidden;
  }

  .site-logo img {
    height: 2.5rem;
    width: auto;
    max-width: none;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-nav__links {
    display: flex;
    align-items: center;
    gap: 1.7rem;
  }

  .desktop-nav__link {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
  }

  .desktop-nav__link:hover {
    color: var(--en-gold);
  }

  .desktop-nav__contact {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .desktop-nav__contact .btn {
    min-height: 42px;
    height: 42px;
    padding-inline: 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  /* 資料請求ボタン（共通：黒文字＋ゴールド枠＋白80%背景） */
  .desktop-nav__contact .btn-secondary {
    color: var(--en-text);
    border-color: var(--en-gold);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: none;
    transition: color 0.2s ease, box-shadow 0.2s ease;
  }

  .desktop-nav__contact .btn-secondary:hover {
    color: var(--en-gold);
    box-shadow: inset 0 0 0 1px var(--en-gold);
    background: rgba(255, 255, 255, 0.8);
    transform: none;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 44px;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
  }

  .header-phone:hover {
    color: var(--en-gold);
  }

  .header-phone svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--en-gold);
  }

  /* --- Mobile Nav --- */
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--en-text);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .menu-toggle svg {
    width: 1.6rem;
    height: 1.6rem;
    opacity: 0;
    pointer-events: none;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 11px;
    width: 22px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: top 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
  }

  .menu-toggle::before {
    top: 15px;
    box-shadow: 0 7px 0 currentColor;
  }

  .menu-toggle::after {
    top: 29px;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 22px;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .menu-toggle[aria-expanded="true"]::after {
    top: 22px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--en-bg, #FAF8F4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s linear 0s;
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem var(--space-container-x);
  }

  .mobile-nav__logo {
    display: block;
  }

  .mobile-nav__logo img {
    height: 2.5rem;
    width: auto;
  }

  .mobile-nav__close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--en-text);
    cursor: pointer;
  }

  .mobile-nav__close svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .mobile-nav__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem var(--space-container-x);
  }

  .mobile-nav__list {
    display: grid;
    gap: 0.5rem;
    text-align: center;
  }

  .mobile-nav__link {
    display: block;
    padding: 0.875rem 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 0.44vw + 1.02rem, 1.375rem);
    letter-spacing: 0.06em;
  }

  .mobile-nav__cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--en-line);
    display: grid;
    gap: 0.75rem;
  }

  .mobile-nav__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
    padding-inline: 1rem;
  }

  .mobile-nav__phone svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--en-gold);
    flex-shrink: 0;
  }

  .mobile-nav__phone-number {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mobile-nav__phone-note {
    display: block;
    font-size: 0.6875rem;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--en-muted);
  }

  .mobile-nav__btn {
    min-height: 48px;
    font-size: 0.875rem;
  }

  /* --- Footer --- */
  .site-footer {
    background: rgba(241, 238, 231, 0.55);
    border-top: 1px solid var(--en-line);
    font-family: var(--font-serif);
  }

  .footer-inner {
    padding-block: 3.5rem 2.5rem;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-brand img {
    width: 10.5rem;
    max-width: none;
    object-fit: cover;
    object-position: right center;
  }

  .footer-address {
    text-align: center;
    font-size: 0.8125rem;
    line-height: 2;
    color: var(--en-muted);
  }

  .footer-phone {
    color: var(--en-muted);
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .footer-phone:hover {
    color: var(--en-gold);
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
  }

  .footer-nav a {
    font-size: 0.8125rem;
    color: var(--en-muted);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
  }

  .footer-nav a:hover {
    color: var(--en-gold);
  }

  .footer-bottom {
    margin-top: 2.5rem;
    border-top: 1px solid var(--en-line);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-meta {
    font-size: 0.75rem;
    color: var(--en-muted);
  }

  .footer-copy {
    font-size: clamp(0.6875rem, 0.11vw + 0.66rem, 0.75rem);
    color: var(--en-muted);
  }

  /* --- Floating CTA --- */
  .floating-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--en-base) 95%, transparent);
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .floating-cta .btn {
    width: 100%;
    padding-inline: 0.8rem;
    font-size: 0.83rem;
  }

  /* --- Badges & Meta --- */
  .notice-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    border-radius: var(--radius-sm);
    border: 1px solid var(--en-gold);
    padding: 0.1rem 0.5rem;
    font-size: clamp(0.625rem, 0.11vw + 0.6rem, 0.6875rem);
    color: var(--en-gold);
    min-width: 8em;
  }

  .meta-date {
    font-family: var(--font-serif);
    font-size: clamp(0.75rem, 0.22vw + 0.7rem, 0.875rem);
    color: var(--en-muted);
    white-space: nowrap;
  }

  /* --- Form Elements --- */
  .field-label {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--en-text);
  }

  .required-badge {
    border-radius: 0;
    background: var(--en-gold);
    color: var(--en-white);
    font-size: 0.625rem;
    padding: 0.15rem 0.45rem;
  }

  .input,
  .select,
  .textarea {
    width: 100%;
    border: 1px solid var(--en-line);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--en-text);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
  }

  .input,
  .select {
    min-height: 44px;
  }

  .select {
    padding-right: 2.5rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }

  .textarea {
    min-height: 9rem;
    resize: vertical;
    line-height: 1.8;
  }

  .helper-text {
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    color: var(--en-muted);
  }

  /* --- Reveal Animation --- */
  .reveal {
    opacity: 1;
    transform: none;
  }

  html.js .reveal {
    opacity: 0;
    transform: translateY(20px);
  }

  html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  /* --- Components Responsive (768px) --- */
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }

    .footer-brand {
      align-items: flex-start;
    }

    .footer-address {
      text-align: left;
    }

    .footer-nav ul {
      justify-content: flex-end;
    }

    .section-heading__sub {
      font-size: 1rem;
      line-height: 2;
    }
  }

  /* --- Components Responsive (1024px) --- */
  @media (min-width: 1024px) {
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 1.6rem;
    }

    .menu-toggle {
      display: none;
    }

    .mobile-nav {
      display: none !important;
    }

    .floating-cta {
      display: none;
    }

    .page-hero__title {
      font-size: clamp(2rem, 0.61vw + 1.86rem, 2.35rem);
    }

    .page-hero__breadcrumb {
      margin-top: 1.5rem;
    }
  }
}

@layer pages {
  /* ===================== [PAGE] TOP ===================== */
  body.page-home {
    padding-bottom: 4.85rem;
  }

  @media (min-width: 768px) {
    body.page-home {
      padding-bottom: 0;
    }
  }

  /* ---- [SECTION] HERO ---- */
  @keyframes heroFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .hero__content {
    opacity: 0;
    animation: heroFadeIn 2s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
  }

  .hero__overlay {
    opacity: 0;
    animation: heroFadeIn 2s cubic-bezier(0.23, 1, 0.32, 1) 1.3s forwards;
  }

  .page-home main {
    padding-top: 0;
  }

  .hero {
    position: relative;
    min-height: max(600px, 100svh);
    overflow: hidden;
  }

  .hero__media,
  .hero__overlay {
    position: absolute;
    inset: 0;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 20%;
  }

  .hero__overlay {
    background: rgba(250, 248, 244, 0.65);
  }

  .hero__content-wrap {
    position: relative;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
  }

  .hero__content {
    max-width: clamp(32rem, 35.36vw + 23.71rem, 52rem);
    padding: 1.5rem 1rem 1.75rem;
    position: relative;
  }

  .hero__content::before,
  .hero__content::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
    display: none;
  }

  .hero__content::before {
    width: clamp(20rem, 42.43vw + 10.06rem, 44rem);
    height: clamp(20rem, 42.43vw + 10.06rem, 44rem);
    top: -30%;
    left: -15%;
    background: radial-gradient(circle, rgba(250, 248, 244, 0.75) 0%, rgba(250, 248, 244, 0) 65%);
  }

  .hero__content::after {
    width: clamp(14rem, 31.82vw + 6.54rem, 32rem);
    height: clamp(14rem, 31.82vw + 6.54rem, 32rem);
    bottom: -20%;
    left: 5%;
    background: radial-gradient(circle, rgba(250, 248, 244, 0.55) 0%, rgba(250, 248, 244, 0) 65%);
  }

  .hero__label {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 0.54vw + 1.07rem, 1.5rem);
    letter-spacing: 0.08em;
    text-transform: none;
    line-height: 1.45;
    color: var(--en-gold-text);
  }

  .hero__sub {
    margin-top: 1.2rem;
    font-size: clamp(0.875rem, 0.22vw + 0.82rem, 1rem);
    line-height: 1.95;
    letter-spacing: 0.01em;
    color: var(--en-text);
  }

  .hero__title {
    margin-top: 1.2rem;
    font-size: clamp(1.5rem, 0.88vw + 1.29rem, 2rem);
    font-weight: 600;
    line-height: 1.68;
    letter-spacing: 0.04em;
    color: var(--en-text);
  }

  .hero__cta {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .hero__cta .btn {
    min-height: 52px;
    height: 52px;
    padding-inline: 2rem;
  }

  .hero__badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 1rem;
    color: var(--en-muted);
  }

  .hero__badges li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero__badges span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--en-gold);
  }

  @media (min-width: 640px) {
    .hero__cta {
      flex-direction: row;
      gap: 1rem;
    }
  }

  @media (min-width: 768px) {
    .hero__media img {
      object-position: 65% 15%;
    }

    .hero__overlay {
      background: linear-gradient(
        105deg,
        rgba(255, 250, 244, 0.78) 0%,
        rgba(255, 250, 244, 0.50) 42%,
        rgba(255, 250, 244, 0.15) 72%,
        rgba(255, 250, 244, 0) 100%
      );
    }

    .hero__content {
      padding-block: 3rem;
    }

    .hero__content::before,
    .hero__content::after {
      display: block;
    }

    .hero__label {
      font-size: clamp(1.6rem, 0.61vw + 1.46rem, 1.95rem);
      color: var(--en-gold);
    }

    .hero__title {
      font-size: var(--text-h1);
      letter-spacing: 0.07em;
    }

    .hero__sub {
      font-size: 1rem;
    }

    .hero__badges {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .hero__title {
      line-height: 1.65;
    }
  }

  /* ---- [SECTION] EMPATHY ---- */
  /* Off-white overlay — silk texture shows through */
  .empathy {
    background: rgba(255, 255, 255, 0.55);
    padding-block: clamp(4rem, 7.07vw + 2.34rem, 8rem);
  }

  .empathy__inner {
    max-width: 37.5rem;
    margin-inline: auto;
    text-align: center;
  }

  .empathy__intro {
    font-size: clamp(1.5rem, 0.67vw + 1.34rem, 1.875rem);
    letter-spacing: 0.12em;
    color: var(--en-gold-text);
    font-family: var(--font-serif);
    font-weight: 500;
    margin-bottom: 2.5rem;
  }

  .empathy__voices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .empathy__voice {
    font-size: clamp(1.0625rem, 0.34vw + 0.98rem, 1.25rem);
    font-family: var(--font-serif);
    line-height: 1.9;
    color: var(--en-text);
    letter-spacing: 0.04em;
    margin: 0;
  }

  .empathy__rule {
    border: none;
    width: 48px;
    height: 1px;
    background: var(--en-gold);
    margin: 0 auto 3rem;
  }

  .empathy__resolve {
    font-size: clamp(1.125rem, 0.56vw + 0.99rem, 1.4375rem);
    font-family: var(--font-serif);
    line-height: 1.85;
    color: var(--en-text);
    letter-spacing: 0.04em;
    margin: 0;
  }

  .empathy__resolve em {
    font-style: normal;
    color: inherit;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 0.08em;
  }

  @media (min-width: 768px) {
    .empathy__voices {
      gap: 2rem;
    }
  }

  /* ---- [SECTION] TRUST ---- */
  .trust {
    background: rgba(241, 233, 215, 0.6);
    position: relative;
    overflow: hidden;
  }

  .trust__subsection {
    margin-top: 3.5rem;
    padding-top: 0;
  }

  .trust__subsection:first-child {
    margin-top: 0;
  }

  .trust__subsection--voices,
  .trust__subsection--video,
  .trust__subsection--awards {
    margin-top: 5rem;
  }

  .trust__subsection--video {
    background: transparent;
    padding-bottom: 0;
  }

  @media (min-width: 768px) {
    .trust__subsection--voices,
    .trust__subsection--video,
    .trust__subsection--awards {
      margin-top: 6rem;
    }
  }

  .trust__subsection-head {
    text-align: center;
  }

  .trust__subsection-title {
    font-size: clamp(1.25rem, 0.44vw + 1.15rem, 1.5rem);
  }

  .trust__subsection-text {
    max-width: 42rem;
    margin: 1.25rem auto 0;
    font-size: 1rem;
    color: var(--en-text);
  }

  .trust__subsection .success__grid,
  .trust__testimonial-shell {
    margin-top: 2.5rem;
  }

  .trust__testimonial-shell {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(183, 154, 91, 0.12);
    padding: 1.5rem;
  }

  .trust .testimonials__grid {
    margin-top: 0;
  }

  .trust img {
    border-radius: 0;
  }

  /* trust > 成婚事例 (success__grid, story-card) */
  .success__grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
  }

  .story-card {
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    background: #fff;
    border: none;
    overflow: visible;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .story-card > a {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .story-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .story-card__media img {
    border-radius: 0;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    width: 100%;
    transition: none;
  }

  .story-card:hover .story-card__media img {
    transform: none;
  }

  .story-card__body {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(183, 154, 91, 0.2);
    background: transparent;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .story-card__title {
    margin-top: 0.45rem;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .story-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.6rem;
    font-size: 0.9375rem;
    line-height: 1.9;
    flex: 1;
  }

  .story-card__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--en-gold);
  }

  .success__link {
    margin-top: 2.5rem;
    margin-bottom: 0;
    text-align: right;
  }

  .btn-link--subtle {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    color: var(--en-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.2s ease;
  }

  .btn-link--subtle:hover {
    opacity: 0.6;
  }

  .btn-link__arrow {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .btn-link--subtle:hover .btn-link__arrow {
    transform: translateX(4px);
  }

  @media (min-width: 768px) {
    .success__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 2rem;
    }
  }

  /* trust > 口コミ (testimonials) */
  .testimonials__grid {
    margin-top: 3.5rem;
    display: grid;
    gap: 1.25rem;
  }

  @keyframes fade-slide-up {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .testimonial-card {
    border-radius: 0;
    border: 1px solid var(--en-line);
    background: #fff;
    padding: 1.5rem;
    animation: fade-slide-up 0.4s both;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .testimonial-card[hidden] {
    display: none;
  }

  .testimonial-stars {
    display: inline-flex;
    gap: 0.1rem;
    font-size: 0.8rem;
  }

  .testimonial-stars .active {
    color: var(--en-gold);
  }

  .testimonial-stars .inactive {
    color: var(--en-line);
  }

  .testimonial-meta {
    margin-top: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .testimonial-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--en-text);
  }

  .testimonial-type {
    font-size: 0.72rem;
  }

  .testimonial-text {
    margin-top: 1rem;
    font-size: 0.813rem;
    line-height: 1.85;
    color: var(--en-text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    /* 5行分の固定高さ: 0.813rem × 1.85 × 5 ≈ 7.52rem */
    min-height: calc(0.813rem * 1.85 * 5);
  }

  .testimonial-date {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.7rem;
    opacity: 0.6;
  }

  .testimonials__nav {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid var(--en-line);
    background: #fff;
    color: var(--en-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-btn svg {
    width: 0.8rem;
    height: 0.8rem;
  }

  .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .carousel-dot {
    width: 8px;
    min-width: 8px;
    height: 8px;
    min-height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--en-gold);
    opacity: 0.25;
    transition: width 0.3s ease, opacity 0.3s ease;
    appearance: none;
  }

  .carousel-dot.active {
    width: 18px;
    opacity: 1;
  }

  @media (min-width: 768px) {
    .trust__testimonial-shell {
      padding: 2.5rem;
    }

    .testimonials__nav {
      margin-top: 2.5rem;
      gap: 1.5rem;
    }

    .carousel-btn {
      width: 44px;
      height: 44px;
      min-height: 44px;
    }

    .carousel-btn svg {
      width: 1rem;
      height: 1rem;
    }

    .carousel-dots {
      gap: 0.625rem;
    }

    .carousel-dot {
      width: 11px;
      min-width: 11px;
      height: 11px;
      min-height: 11px;
    }

    .carousel-dot.active {
      width: 24px;
    }
  }

  /* trust > 動画 (youtube-card, youtube-embed) */
  .youtube__grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
  }

  .youtube-card {
    border-radius: 0;
    border: 1px solid var(--en-line);
    background: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .youtube-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }

  .youtube-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--en-line);
  }

  .youtube-trigger {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(31, 42, 55, 0.1);
    cursor: pointer;
  }

  .youtube-trigger img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .youtube-play {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .youtube-play svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    color: var(--en-gold);
    margin-left: 3px;
  }

  .youtube-open-link {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    border-radius: 0;
    background: rgba(31, 42, 55, 0.7);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.625rem;
    line-height: 1;
    padding: 0.35rem 0.45rem;
  }

  .youtube-card__body {
    padding: 1.25rem;
    text-align: center;
  }

  .youtube-card__title {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--en-text);
  }

  @media (min-width: 768px) {
    .youtube__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
    }

    .trust__award-figure {
      width: 17.5rem;
    }

    .trust__award-figure img {
      width: 250px;
      height: 250px;
    }
  }

  /* trust > 受賞 (trust__awards) */
  .trust__awards {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
  }

  .trust__awards-lead {
    max-width: 42rem;
    margin: 1.5rem auto 0;
    font-size: 0.95rem;
    line-height: 2;
    color: var(--en-text);
  }

  .trust__awards-list {
    margin: 2.5rem 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .trust__award-figure {
    width: 18.75rem;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .trust__award-figure img {
    width: 17.5rem;
    height: 17.5rem;
    margin: 0 auto 1rem;
    object-fit: contain;
  }

  .trust__award-figure figcaption {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--en-text);
  }

  /* ---- [WRAPPER] ABOUT + FLOW ---- */
  /* Static light rays — white SVG on cream bg, fixed (like ogiya-wedding.jp) */
  .about-flow-wrap {
    background: rgba(255, 255, 255, 0.55);
  }

  /* ---- [SECTION] ABOUT ---- */
  .about {
    background: transparent;
    color: var(--en-text);
    position: relative;
  }

  .about .section-heading__line {
    margin-bottom: 3rem;
  }

  .about__body {
    font-size: clamp(0.9375rem, 0.23vw + 0.88rem, 1.0625rem);
    font-family: var(--font-serif);
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: var(--en-muted);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 45rem;
    margin-inline: auto;
  }

  .about__break {
    display: none;
  }

  .about__facts {
    list-style: none;
    padding: 2rem 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    border-top: 1px solid var(--en-line);
  }

  .about__facts li {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: var(--en-muted);
    line-height: 1.7;
  }

  /* about > 3つの約束 (about__promises, points) */
  .about__promises {
    margin-top: 5rem;
  }

  .about__promises-title {
    text-align: center;
    font-size: clamp(1.25rem, 0.44vw + 1.15rem, 1.5rem);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--en-text);
    margin-top: 0;
    margin-bottom: 0;
  }

  .points {
    background: var(--en-base);
  }

  .points__list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .points__row {
    position: relative;
  }

  .points__figure {
    width: 95%;
  }

  .points__figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    display: block;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  }

  .points__panel {
    width: 95%;
    background: rgba(255, 255, 255, 0.92);
    padding: 2.5rem 1.75rem;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 3;
  }

  /* SP: 奇数（01, 03）→ 画像左寄せ、白枠右寄せ */
  .points__row:nth-child(odd) .points__figure {
    margin-left: 0;
    margin-right: auto;
  }

  .points__row:nth-child(odd) .points__panel {
    margin-left: auto;
    margin-right: 0;
  }

  /* SP: 偶数（02）→ 画像右寄せ、白枠左寄せ */
  .points__row:nth-child(even) .points__figure {
    margin-left: auto;
    margin-right: 0;
  }

  .points__row:nth-child(even) .points__panel {
    margin-left: 0;
    margin-right: auto;
  }

  .points__num {
    display: block;
    font-size: clamp(3rem, 2.65vw + 2.38rem, 4.5rem);
    font-family: var(--font-serif);
    color: var(--en-gold);
    opacity: 0.18;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    user-select: none;
  }

  .points__title {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: var(--en-text);
    margin-bottom: 1rem;
  }

  .points__desc {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--en-muted);
    margin: 0;
  }

  @media (min-width: 768px) {
    .about__break {
      display: block;
    }

    .about__facts {
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .about__facts li {
      font-size: 0.9375rem;
    }

    .points__list {
      gap: 8rem;
    }

    .points__row {
      display: grid;
      align-items: stretch;
    }

    .points__figure {
      width: 100%;
    }

    .points__panel {
      width: auto;
      margin: 0;
      padding: 3rem 2.5rem;
      position: relative;
      z-index: 1;
      aspect-ratio: auto;
      transform: translateY(3rem);
    }

    .points__num {
      font-size: clamp(3.5rem, 3.54vw + 2.67rem, 5.5rem);
      margin-bottom: 1.75rem;
    }

    .points__title {
      margin-bottom: 1.25rem;
    }

    .points__desc {
      font-size: 1rem;
      line-height: 1.9;
    }

    .points__row:nth-child(odd) {
      grid-template-columns: 50% 50%;
    }

    .points__row:nth-child(odd) .points__figure {
      grid-column: 2;
      grid-row: 1;
      margin-left: -1rem;
    }

    .points__row:nth-child(odd) .points__panel {
      grid-column: 1;
      grid-row: 1;
      margin-right: -1rem;
      padding-right: 2.5rem;
    }

    .points__row:nth-child(even) {
      grid-template-columns: 50% 50%;
    }

    .points__row:nth-child(even) .points__figure {
      grid-column: 1;
      grid-row: 1;
      margin-right: -1rem;
    }

    .points__row:nth-child(even) .points__panel {
      grid-column: 2;
      grid-row: 1;
      margin-left: -1rem;
      padding-left: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .points__row:nth-child(odd) .points__panel {
      margin-right: -1rem;
      padding-right: 3rem;
    }

    .points__row:nth-child(even) .points__panel {
      margin-left: -1rem;
      padding-left: 3rem;
    }

    .points__num {
      font-size: clamp(4rem, 3.54vw + 3.17rem, 6rem);
      margin-bottom: 2rem;
    }

    .points__title {
      margin-bottom: 1.5rem;
    }
  }

  /* ---- [SECTION] FLOW ---- */
  .flow {
    background: transparent;
    position: relative;
    margin-top: 0;
  }

  .flow__desktop {
    display: none;
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.03);
  }

  .flow__desktop-wrap {
    max-width: 67.5rem;
    margin-inline: auto;
    position: relative;
  }

  .flow__desktop-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    border-top: 1px dashed var(--en-gold);
    opacity: 0.3;
  }

  .flow__desktop-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .flow-step {
    text-align: center;
  }

  .flow-step__dot {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--en-gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: clamp(0.8125rem, 0.11vw + 0.79rem, 0.875rem);
    position: relative;
    z-index: 1;
  }

  .flow-step__title {
    margin-top: 1rem;
    font-size: 0.94rem;
  }

  .flow-step__desc {
    margin-top: 0.6rem;
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .flow__mobile {
    margin-top: 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.03);
  }

  .flow__mobile::before {
    content: "";
    position: absolute;
    left: calc(1.5rem + 18px);
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background: var(--en-gold);
    opacity: 0.2;
  }

  .flow-mobile-step {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding-left: 0.1rem;
  }

  .flow-mobile-step + .flow-mobile-step {
    margin-top: 1.8rem;
  }

  .flow-mobile-step__dot {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--en-gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: clamp(0.8125rem, 0.11vw + 0.79rem, 0.875rem);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .flow-mobile-step__title {
    font-size: 1rem;
  }

  .flow-mobile-step__desc {
    margin-top: 0.35rem;
    font-size: 0.9rem;
  }

  @media (min-width: 1024px) {
    .flow__desktop {
      display: block;
    }

    .flow__mobile {
      display: none;
    }
  }

  /* ---- [SECTION] PRICING ---- */
  .pricing {
    background: rgba(250, 248, 244, 0.6);
  }

  .pricing__table-wrap {
    max-width: 44rem;
    margin: 3rem auto 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  }

  .pricing__table-head {
    background: var(--en-gold);
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    border-top: 1px solid var(--en-line);
    padding: 1.25rem 1.5rem;
  }

  .pricing-row:first-of-type {
    border-top: 0;
  }

  .pricing-row__label {
    font-size: 0.95rem;
    color: var(--en-text);
  }

  .pricing-row__value {
    text-align: right;
  }

  .pricing-row__value strong {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--en-text);
  }

  .pricing-row__value span {
    margin-left: 0.25rem;
    font-size: 0.75rem;
  }

  .pricing-row--sub {
    border-top: 1px dashed var(--en-line);
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
  }

  .pricing-row--sub .pricing-row__label {
    font-size: 0.85rem;
    color: var(--en-muted);
  }

  .pricing-row--sub .pricing-row__value strong {
    font-size: 1.05rem;
  }

  .pricing__cta {
    margin-top: 3.5rem;
    text-align: center;
  }

  .pricing-docs {
    max-width: 44rem;
    margin: 3rem auto 0;
    border-radius: 0;
    background: #fff;
    padding: 1.5rem;
  }

  .pricing-docs__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.125rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .pricing-docs__title svg {
    width: 20px;
    height: 20px;
    color: var(--en-gold);
  }

  .pricing-docs ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
  }

  .pricing-docs li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
  }

  .pricing-docs li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--en-gold);
    opacity: 0.5;
    margin-top: 0.65rem;
    flex-shrink: 0;
  }

  /* ---- [SECTION] FAQ ---- */
  .faq {
    background: rgba(241, 238, 231, 0.6);
  }

  .faq__inner {
    max-width: 52rem;
    margin: 3.5rem auto 0;
    border-radius: 0;
    background: #fff;
    padding-inline: 1.5rem;
  }

  .faq-item {
    border-bottom: 1px solid var(--en-line);
  }

  .faq-item:last-child {
    border-bottom: 0;
  }

  .faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem 0;
    cursor: pointer;
  }

  .faq-symbol {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .faq-symbol--q {
    color: #fff;
    background: var(--en-gold);
  }

  .faq-symbol--a {
    color: var(--en-gold);
    background: var(--en-gold-light);
  }

  .faq-question {
    flex: 1;
    font-size: 1rem;
    line-height: 1.625;
    color: var(--en-text);
  }

  .faq-chevron {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    color: var(--en-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
  }

  .faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
  }

  .faq-panel__inner {
    overflow: hidden;
    display: flex;
    gap: 1rem;
  }

  .faq-answer {
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--en-muted);
    padding-bottom: 1.25rem;
  }

  .faq__diagnostic {
    max-width: 52rem;
    margin: 4rem auto 0;
    text-align: center;
  }

  .faq__diagnostic-lead {
    font-size: clamp(1.125rem, 0.55vw + 0.99rem, 1.375rem);
    font-family: var(--font-serif);
    color: var(--en-text);
    margin-bottom: 1.25rem;
  }

  .faq__diagnostic-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .faq__diagnostic-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--en-line);
    border-radius: 0;
    padding: 0 0 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    font-size: 0.9375rem;
    color: var(--en-gold);
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease;
    max-width: 320px;
    width: 100%;
    overflow: hidden;
  }

  .faq__diagnostic-banner {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    border-bottom: 1px solid var(--en-line);
  }

  .faq__diagnostic-desc {
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--en-muted);
    text-align: left;
    padding-inline: 1rem;
    margin-top: 0.5rem;
  }

  .faq__diagnostic-link:hover {
    opacity: 0.8;
  }

  .faq__diagnostic-note {
    font-size: 0.6875rem;
    color: var(--en-muted);
  }

  @media (min-width: 640px) {
    .faq__diagnostic-links {
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
    }

    .faq__diagnostic-link {
      justify-content: flex-start;
    }

    .faq__diagnostic-desc {
      flex-grow: 1;
    }
  }

  @media (min-width: 768px) {
    .faq__inner {
      padding-inline: 2rem;
    }
  }

  /* ---- [SECTION] LAST CTA (CONTACT) ---- */
  .last-cta {
    background: rgba(238, 223, 190, 0.35);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(183, 154, 91, 0.25);
    border-bottom: 1px solid rgba(183, 154, 91, 0.3);
  }

  .last-cta__inner {
    padding-block: clamp(5rem, 3.54vw + 4.17rem, 7rem);
    text-align: center;
    position: relative;
  }

  .last-cta__label {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--en-gold);
  }

  .last-cta__title {
    margin-top: 0.6rem;
    color: var(--en-text);
    font-size: clamp(1.4rem, 0.61vw + 1.26rem, 1.75rem);
    line-height: 1.8;
  }

  .last-cta__line {
    width: 2.5rem;
    height: 1px;
    margin: 1.2rem auto 0;
    background: var(--en-gold);
    opacity: 0.6;
  }

  .last-cta__desc {
    margin: 1.4rem auto 0;
    max-width: 33rem;
    color: var(--en-text);
    font-size: 0.9rem;
    opacity: 0.88;
  }

  .last-cta__buttons {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .last-cta__buttons .btn {
    width: min(100%, 20rem);
  }

  .last-cta__phone-wrap {
    margin-top: 2.2rem;
    display: grid;
    gap: 0.3rem;
    justify-items: center;
  }

  .last-cta__phone-label,
  .last-cta__phone-note {
    font-size: 0.875rem;
    color: rgba(85, 85, 85, 0.86);
  }

  .last-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--en-text);
  }

  .last-cta__phone svg {
    width: 1rem;
    height: 1rem;
    color: var(--en-gold);
  }

  .last-cta__phone strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: 400;
  }

  .last-cta__badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.5rem;
    font-size: 0.8125rem;
    color: rgba(26, 26, 26, 0.5);
  }

  @media (min-width: 768px) {
    .last-cta__buttons {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }

    .last-cta__buttons .btn {
      width: auto;
    }
  }

  /* ---- [SECTION] NEWS BAND ---- */
  .news-band {
    background: rgba(250, 248, 244, 0.6);
    border-top: 1px solid var(--en-line);
    padding-block: var(--space-section);
  }

  .news-band__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .news-band__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .news-band__label {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 1.33vw + 1.19rem, 2.25rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--en-gold-text);
    line-height: 1;
  }

  .news-band__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--en-line);
  }

  .news-band__more {
    align-self: flex-end;
    order: 3;
  }

  .news-band__more .btn-link {
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.2s ease;
  }

  .news-band__more .btn-link:hover {
    opacity: 0.6;
  }

  .news-band__more .btn-link:hover .btn-link__arrow {
    transform: translateX(4px);
  }

  .news-excerpt__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid var(--en-line);
    padding-block: 1.25rem;
  }

  .news-excerpt__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
  }

  .news-excerpt__title {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 500;
    color: var(--en-muted);
    transition: color 0.2s ease;
  }

  .news-excerpt__item:hover .news-excerpt__title {
    color: var(--en-gold);
  }

  @media (min-width: 640px) {
    .news-excerpt__item {
      flex-direction: row;
      align-items: baseline;
      gap: 1.4rem;
    }
  }

  @media (min-width: 768px) {
    .news-band__inner {
      display: grid;
      grid-template-columns: 15rem 1fr;
      grid-template-rows: auto 1fr;
      gap: 0.75rem 4rem;
      align-items: start;
    }

    .news-band__header {
      grid-column: 1;
      grid-row: 1;
      position: sticky;
      top: 6rem;
    }

    .news-band__more {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
      order: unset;
    }

    .news-band__list {
      grid-column: 2;
      grid-row: 1 / -1;
    }
  }

  /* ===================== [PAGE] NEWS ===================== */
  /* ---- [SECTION] LIST ---- */
  .news-list-wrap {
    max-width: 55rem;
    margin-inline: auto;
  }

  .page-intro {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(0.9375rem, 0.33vw + 0.86rem, 1.125rem);
    line-height: 1.9;
  }

  .news-list {
    margin-top: 2.5rem;
    border-top: 1px solid var(--en-line);
  }

  .news-list__item {
    border-bottom: 1px solid var(--en-line);
  }

  .news-list__link {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-block: 1.5rem;
  }

  .news-list__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  .news-list__title {
    font-family: var(--font-serif);
    font-size: clamp(0.875rem, 0.22vw + 0.82rem, 1rem);
    line-height: 1.8;
    font-weight: 500;
    color: var(--en-muted);
    transition: color 0.2s ease;
  }

  .news-list__link:hover .news-list__title {
    color: var(--en-gold);
  }

  .news-list__arrow {
    display: none;
    width: 20px;
    height: 8px;
    color: var(--en-muted);
    flex-shrink: 0;
    transition: color 0.2s ease;
  }

  .news-list__link:hover .news-list__arrow {
    color: var(--en-gold);
  }

  @media (min-width: 640px) {
    .news-list__link {
      flex-direction: row;
      align-items: baseline;
      gap: 1.4rem;
    }
  }

  @media (min-width: 1200px) {
    .news-list__arrow {
      display: block;
    }
  }

  /* ---- [COMPONENT] PAGINATION ---- */
  .pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--en-muted);
    border: 1px solid var(--en-line);
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .pagination__item:hover {
    color: var(--en-gold);
    border-color: var(--en-gold);
  }

  .pagination__item.is-current {
    color: var(--en-white);
    background: var(--en-gold);
    border-color: var(--en-gold);
  }

  .pagination__next {
    border: none;
  }

  .pagination__next:hover {
    border: none;
  }

  /* ===================== [PAGE] NEWS DETAIL ===================== */
  /* ---- [SECTION] ARTICLE ---- */
  .detail-wrap {
    max-width: 45rem;
    margin-inline: auto;
  }

  .detail-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .detail-title {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 0.54vw + 1.07rem, 1.5rem);
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .detail-divider {
    margin-top: 1.5rem;
    width: 100%;
    height: 1px;
    background: var(--en-line);
  }

  .detail-body {
    margin-top: 2rem;
    white-space: pre-line;
    font-size: 0.95rem;
    line-height: 2.2;
  }

  .back-link-wrap {
    margin-top: 2.5rem;
    text-align: center;
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--en-muted);
  }

  .back-link svg {
    width: 16px;
    height: 16px;
  }

  /* ===================== [PAGE] REPORT ===================== */
  /* ---- [SECTION] LIST ---- */

  .report-list-grid {
    margin-top: 3.5rem;
    display: grid;
    gap: 1.75rem;
  }

  .report-list-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--en-line);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .report-list-card > a {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .report-list-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .report-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .report-list-card:hover .report-list-card__media img {
    transform: scale(1.03);
  }

  .report-list-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .report-list-card__title {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .report-list-card__summary {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.9;
    flex: 1;
  }

  .report-list-card__more {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--en-gold);
  }

  @media (min-width: 768px) {
    .report-list-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* ===================== [PAGE] REPORT DETAIL ===================== */
  /* ---- [SECTION] ARTICLE ---- */
  .report-detail-media {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }

  .report-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .report-detail-sections {
    margin-top: 2.5rem;
    display: grid;
    gap: 2.5rem;
  }

  .report-detail-section__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
  }

  .report-detail-section__title::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--en-gold);
    flex-shrink: 0;
  }

  .report-detail-section__body {
    margin-top: 1rem;
    white-space: pre-line;
    font-size: 0.95rem;
    line-height: 2.2;
  }

  /* ===================== [PAGE] CONTACT ===================== */
  /* ---- [SECTION] FORM ---- */
  .contact-wrap {
    max-width: 55rem;
    margin-inline: auto;
  }

  .contact-phone-box {
    margin-top: clamp(3rem, 1.77vw + 2.59rem, 4rem);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
  }

  .contact-phone-box__title {
    font-size: 0.875rem;
    color: var(--en-muted);
  }

  .contact-phone-box__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--en-text);
  }

  .contact-phone-box__link svg {
    width: 1rem;
    height: 1rem;
    color: var(--en-gold);
  }

  .contact-phone-box__note {
    font-size: 0.6875rem;
  }

  .contact-guide {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--en-line);
    background: #fff;
    padding: 1.5rem;
  }

  .contact-guide__lead {
    margin-top: 1.1rem;
    font-size: 1rem;
    color: var(--en-muted);
  }

  .contact-guide__steps {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.9rem;
  }

  .contact-guide__step {
    border-radius: var(--radius-md);
    background: var(--en-base);
    border: 1px solid var(--en-line);
    padding: 1rem;
  }

  .contact-guide__meta {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--en-gold);
  }

  .contact-guide__title {
    margin-top: 0.25rem;
    font-size: 1rem;
  }

  .contact-guide__desc {
    margin-top: 0.4rem;
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .contact-form {
    margin-top: clamp(4rem, 3.54vw + 3.17rem, 6rem);
  }

  .contact-form-intro {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.9;
    text-align: center;
  }

  .form-row {
    margin-bottom: 1.5rem;
  }

  .form-grid-2 {
    display: grid;
    gap: 0.75rem;
  }

  .name-sub-label {
    margin-bottom: 0.35rem;
    display: block;
    font-size: 0.75rem;
    color: var(--en-muted);
  }

  .contact-date-fieldset {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--en-gold-light);
    background: var(--en-gold-light);
    padding: 1rem;
  }

  .contact-date-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--en-text);
  }

  .contact-date-note {
    font-size: 0.6875rem;
    font-weight: 400;
  }

  .contact-date-list {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.6rem;
  }

  .contact-date-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .contact-date-row span {
    width: 4.25rem;
    flex-shrink: 0;
    font-size: 0.75rem;
  }

  .privacy-consent {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .privacy-consent input {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    border: 1px solid var(--en-line);
    accent-color: var(--en-gold);
  }

  .privacy-consent p {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .privacy-consent a {
    color: var(--en-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .privacy-consent .warn {
    margin-left: 0.4rem;
    color: var(--en-error);
    font-size: 0.6875rem;
  }

  .contact-submit {
    margin-top: clamp(2.5rem, 1.77vw + 2.09rem, 3.5rem);
    text-align: center;
  }

  .contact-submit .btn {
    min-height: 52px;
    padding-inline: 3rem;
    white-space: nowrap;
  }

  @media (min-width: 768px) {
    .form-grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-phone-box {
      flex-direction: column;
    }
  }

  /* ===================== [PAGE] PRIVACY ===================== */
  /* ---- [SECTION] CONTENT ---- */
  .privacy-wrap {
    max-width: 45rem;
    margin-inline: auto;
  }

  .privacy-intro {
    font-size: 0.95rem;
    line-height: 2;
  }

  .privacy-sections {
    margin-top: 2.5rem;
  }

  .privacy-sections section + section {
    margin-top: 3rem;
  }

  .privacy-section__title {
    font-size: clamp(1rem, 0.22vw + 0.95rem, 1.125rem);
  }

  .privacy-section__body {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* ===================== [PAGE] CONTACT CONFIRM ===================== */
  .confirm-table {
    margin-top: clamp(3rem, 1.77vw + 2.59rem, 4rem);
  }

  .confirm-list {
    border-top: 1px solid var(--en-line);
  }

  .confirm-list__row {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--en-line);
  }

  .confirm-list__label {
    padding: 0.875rem 1rem 0.25rem;
    font-size: 0.875rem;
    font-family: var(--font-serif);
    color: var(--en-muted);
    background: rgba(241, 238, 231, 0.4);
  }

  .confirm-list__value {
    padding: 0.25rem 1rem 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  @media (min-width: 600px) {
    .confirm-list__row {
      grid-template-columns: 11rem 1fr;
    }

    .confirm-list__label {
      padding: 1.25rem 1rem;
    }

    .confirm-list__value {
      padding: 1.25rem 1rem;
    }
  }

  .confirm-actions {
    margin-top: clamp(2.5rem, 1.77vw + 2.09rem, 3.5rem);
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .confirm-actions .btn {
    flex: 0 1 14rem;
    min-height: 52px;
    white-space: nowrap;
  }

  /* ===================== [PAGE] CONTACT THANKS ===================== */
  .thanks-content {
    text-align: center;
  }

  .thanks-content__icon {
    margin-inline: auto;
    width: 4rem;
    height: 4rem;
    color: var(--en-gold);
  }

  .thanks-content__icon svg {
    width: 100%;
    height: 100%;
  }

  .thanks-content__title {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 0.55vw + 1.12rem, 1.5625rem);
    line-height: 1.7;
  }

  .thanks-content__text {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.9;
    color: var(--en-muted);
  }

  .thanks-content__phone {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .thanks-content__back {
    margin-top: clamp(2.5rem, 1.77vw + 2.09rem, 3.5rem);
  }
}

@layer utilities {
  .hidden {
    display: none !important;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Responsive line break utilities */
  .u-br-sp { display: inline; }
  .u-br-pc { display: none; }
  .sp-only { display: inline; }
  @media (min-width: 768px) {
    .u-br-sp { display: none; }
    .u-br-pc { display: inline; }
    .sp-only { display: none; }
  }
}
