
    /* ========== RESET & BASE ========== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lexend', 'Zen Kaku Gothic New', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 2.0;
      letter-spacing: 0.08em;
      background: var(--bg-main);
      color: var(--text-main);
      overflow-x: hidden;
      user-select: none;
      -webkit-user-select: none;
    }

    main {
      background: var(--bg-main);
      position: relative;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    ul {
      list-style: none;
    }

    /* ========== CSS VARIABLES ========== */
    :root {
      --accent: #bfae9c;
      /* 荳雁刀縺ｪ繝｢繧ｫ繧ｰ繝ｬ繝ｼ繧ｸ繝･ */
      --accent-dark: #a3917d;
      --text-main: #4a4a4a;
      /* 繝繝ｼ繧ｯ繧ｰ繝ｬ繝ｼ */
      --text-light: #888888;
      --bg-main: #ffffff;
      /* 逋ｽ */
      --bg-sub: #fbfaf8;
      /* 縺斐￥阮・＞繝吶・繧ｸ繝･ */
      --border-color: #eaeaea;
      /* 阮・＞繧ｰ繝ｬ繝ｼ */

      --section-gap-sp: 80px;
      --section-gap-pc: 140px;
      --max-width: 1100px;
      --side-pad-sp: 24px;
      --side-pad-pc: 40px;
    }

    /* ========== UTILITY ========== */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--side-pad-sp);
    }

    .section-label {
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 12px;
      font-weight: 300;
    }

    .section-heading {
      font-size: clamp(36px, 8vw, 64px);
      font-weight: 300;
      line-height: 1.1;
      text-transform: uppercase;
      color: #8c8e84;
      margin-bottom: 32px;
      letter-spacing: 0.05em;
    }

    .section-heading.red {
      color: var(--accent);
    }

    .accent-line {
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin-bottom: 24px;
    }

    /* ========== HEADER ========== */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(135, 137, 126, 0.95);
      /* #87897e */
      backdrop-filter: blur(10px);
      border-bottom: none;
      height: 70px;
      display: flex;
      align-items: center;
    }

    .header-inner {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--side-pad-sp);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: block;
      line-height: 1;
    }

    .header-logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .header-nav {
      display: none;
    }

    .header-btn {
      display: none;
      background: #ffffff;
      color: #87897e;
      border: 1px solid #ffffff;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.15em;
      padding: 10px 24px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .header-btn:hover {
      background: transparent;
      color: #ffffff;
    }

    .hamburger {
      width: 32px;
      height: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .hamburger span {
      display: block;
      height: 1px;
      background: #ffffff;
      transition: all 0.3s;
    }

    /* ========== FULLSCREEN MENU ========== */
    #fullscreen-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg-sub);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #fullscreen-menu.open {
      transform: translateX(0);
    }

  .menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  
  /* 🌟重要：ボタンのクリック領域をしっかり確保 */
  width: 44px;
  height: 44px;
  
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; /* 他の要素に隠されないように前面へ */
}

/* 「×」の斜め線（1本目） */
.menu-close::before {
  content: '';
  position: absolute; /* ボタンの真ん中を基準にする */
  width: 24px;        /* 線の長さ */
  height: 1px;        /* 線の太さ */
  background: var(--text-main);
  transform: rotate(45deg);
}

/* 「×」の斜め線（2本目） */
.menu-close::after {
  content: '';
  position: absolute; /* ボタンの真ん中を基準にする */
  width: 24px;        /* 線の長さ */
  height: 1px;        /* 線の太さ */
  background: var(--text-main);
  transform: rotate(-45deg);
}
    .menu-nav ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    .menu-nav a {
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-main);
    }

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

    .menu-tel {
      margin-top: 64px;
      text-align: center;
    }

    .menu-tel a {
      font-size: 20px;
      color: var(--accent);
      letter-spacing: 0.1em;
    }

    /* ========== FV ========== */
    #fv {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      z-index: 1;
      background: var(--bg-main);
    }

    .fv-left {
      width: 100%;
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px var(--side-pad-sp) 80px;
      position: relative;
      z-index: 10;
      order: 2;
      /* SP: 逕ｻ蜒上・荳九↓驟咲ｽｮ */
    }

    .fv-right {
      width: 100%;
      flex: 1;
      /* SP: 菴吶▲縺滄ｫ倥＆繧堤判蜒上↓蜈・※繧・*/
      position: relative;
      overflow: hidden;
      order: 1;
      /* SP: 逕ｻ蜒上ｒ荳翫↓驟咲ｽｮ */
    }

    @media (min-width: 768px) {
      #fv {
        flex-direction: row;
      }

      .fv-left {
        width: 45%;
        height: 100%;
        padding: 0 40px;
        /* 蟾ｦ蜿ｳ縺ｮ菴咏區繧呈戟縺溘○縺､縺､荳ｭ螟ｮ縺ｫ驟咲ｽｮ */
        order: 1;
      }

      .fv-right {
        width: 55%;
        height: 100%;
        order: 2;
      }
    }

    .fv-bg {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      filter: brightness(0.95);
      /* 譏弱ｋ縺上リ繝√Η繝ｩ繝ｫ縺ｫ */
      z-index: 0;
    }

    .fv-bg-fade {
      z-index: 1;
      opacity: 0;
    }

    .fv-bg.zoom-active {
      animation: fvZoomIn 15s linear forwards;
    }

    @keyframes fvZoomIn {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.1);
      }
    }

    .fv-content {
      position: relative;
      z-index: 10;
      text-align: center;
      /* SP: 荳ｭ螟ｮ謠・∴ */
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 440px;
    }

    @media (min-width: 768px) {
      .fv-content {
        text-align: left;
        /* PC: 蟾ｦ謠・∴ */
      }
    }

    @keyframes fvContentFadeIn {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fv-sub {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--text-light);
      opacity: 0;
      transform: translateY(20px);
      animation: fvContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
      line-height: 2.2;
      order: 2;
      /* SP: 繝ｭ繧ｴ縺ｮ荳・*/
      margin-top: 24px;
      margin-bottom: 0;
    }

    .fv-logo-text {
      font-family: 'Lexend', sans-serif;
      font-weight: 300;
      font-size: clamp(40px, 6vw, 72px);
      letter-spacing: 0.08em;
      color: var(--text-main);
      opacity: 0;
      line-height: 1.2;
      transform: translateY(20px);
      animation: fvContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
      order: 1;
      /* SP: 繧ｳ繝斐・縺ｮ荳・*/
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .fv-sub {
        order: 1;
        /* PC: 繝ｭ繧ｴ縺ｮ荳・*/
        margin-top: 0;
        margin-bottom: 48px;
      }

      .fv-logo-text {
        order: 2;
        /* PC: 繧ｳ繝斐・縺ｮ荳・*/
        margin-bottom: 0;
      }
    }

    /* ========== TEXT ANIMATION (FV縺ｮ譁・ｭ励ヵ繧ｧ繝ｼ繝峨う繝ｳ逕ｨ) ========== */
    .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      white-space: nowrap;
    }

    .reveal .char {
      opacity: 1;
      transform: translateY(0);
    }

    .fv-scroll {
      position: absolute;
      bottom: 40px;
      right: 24px;
      left: auto;
      margin: 0;
      width: fit-content;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .fv-scroll {
        right: 40px;
      }
    }

    .fv-scroll span {
      writing-mode: vertical-rl;
      font-family: 'Lexend', sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: #ffffff;
    }

    .fv-scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, #ffffff, transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    /* 繧ｹ繝槭・繝医ヵ繧ｩ繝ｳ陦ｨ遉ｺ縺ｫ縺翫￠繧区隼陦瑚ｪｿ謨ｴ逕ｨ縺ｮ繝ｦ繝ｼ繝・ぅ繝ｪ繝・ぅ繧ｯ繝ｩ繧ｹ */
    .pc-br {
      display: none;
    }

    .sp-space {
      display: inline;
    }

    @media (min-width: 768px) {
      .pc-br {
        display: inline;
      }

      .sp-space {
        display: none;
      }
    }

    .sp-only {
      display: none !important;
    }

    @media (max-width: 767px) {
      .sp-only {
        display: block !important;
      }
    }

    /* ========== SECTION SPACING ========== */
    section {
      margin-bottom: 0;
      padding: 90px 0;
      position: relative;
      z-index: 2;
      background: var(--bg-main);
    }

    /* ========== CTA BLOCK ========== */
    .cta-block {
      background: var(--bg-sub);
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 56px var(--side-pad-sp);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .cta-block .cta-label {
      font-size: 12px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-light);
      display: block;
      margin-bottom: 16px;
    }

    .cta-link {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-size: clamp(16px, 4vw, 24px);
      font-weight: 300;
      color: var(--text-main);
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }

    .cta-link:hover {
      color: var(--accent);
    }

    .cta-link .cta-icon {
      width: 40px;
      height: 40px;
      background: var(--bg-main);
      border: 1px solid var(--border-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }

    .cta-block p {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 16px;
      letter-spacing: 0.1em;
    }

    /* ========== ABOUT ========== */
    #about {
      padding: 100px 0;
      background: var(--bg-main);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-wrap img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      background-color: var(--bg-sub);
      filter: brightness(0.95);
    }

    .about-img-badge {
      position: absolute;
      bottom: -16px;
      right: 16px;
      background: var(--bg-main);
      border: 1px solid var(--border-color);
      padding: 12px 24px;
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--text-main);
    }

    .about-body {
      padding-top: 16px;
    }

    .about-body h2 {
      font-size: clamp(32px, 8vw, 54px);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 32px;
      color: #8c8e84;
    }

    .about-body p {
      font-size: 16px;
      color: var(--text-light);
      line-height: 2.2;
    }

    .about-name-en {
      font-size: 12px;
      letter-spacing: 0.25em;
      color: var(--accent);
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }

    /* ========== MID IMAGE (Between About and Concerns) ========== */
    .mid-image-wrap {
      width: 100%;
      position: relative;
      z-index: 2;
      background: var(--bg-main);
      padding-bottom: var(--section-gap-sp);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      background-color: var(--bg-sub);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    /* ========== TROUBLE ========== */
    #trouble {
      background: var(--bg-sub);
      padding: 60px var(--side-pad-sp);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .trouble-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 24px 0;
    }

    .trouble-header {
      display: flex;
      align-items: baseline;
      gap: 16px;
      flex-wrap: wrap;
    }

    .trouble-header .section-label {
      margin-bottom: 0;
    }

    .trouble-heading {
      font-size: clamp(28px, 6vw, 40px);
      font-weight: 300;
      color: #8c8e84;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      line-height: 1;
      margin: 0;
    }

    .trouble-lead {
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--text-light);
      margin: 0;
    }

    .trouble-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin: 0;
    }

    .trouble-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border-color);
      font-size: 16px;
      color: var(--text-main);
      line-height: 1.6;
    }

    .trouble-item:nth-child(odd) {
      padding-right: 0;
      border-right: none;
    }

    .trouble-item:nth-child(even) {
      padding-left: 0;
    }

    .trouble-item::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    .trouble-cta {
      font-size: clamp(15px, 3vw, 18px);
      color: var(--text-main);
      letter-spacing: 0.1em;
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 0;
      margin-top: 16px;
    }

    .trouble-cta::before {
      display: none;
    }

    .trouble-cta em {
      color: var(--accent);
      font-style: normal;
    }

    @media (min-width: 950px) {
      #trouble {
        padding: 60px var(--side-pad-pc);
      }

      .trouble-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0 56px;
      }

      .trouble-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-right: 1px solid var(--border-color);
        padding-right: 56px;
      }

      .trouble-list {
        grid-template-columns: 1fr 1fr;
      }

      .trouble-item:nth-child(odd) {
        padding-right: 16px;
        border-right: 1px solid var(--border-color);
      }

      .trouble-item:nth-child(even) {
        padding-left: 16px;
      }

      .trouble-cta {
        border-left: 1px solid var(--border-color);
        padding-left: 56px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        white-space: nowrap;
        margin-top: 0;
      }

      .trouble-cta::before {
        display: none;
      }
    }

    /* ========== SERVICE ========== */
    #service {
      position: relative;
      padding: 100px 0;
      background: var(--bg-main);
      z-index: 1;
    }

    #service::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('img/servicebg.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      opacity: 0.35;
      /* 閭梧勹逕ｻ蜒上′繧医ｊ隕九∴繧九ｈ縺・↓隱ｿ謨ｴ */
      z-index: -1;
      pointer-events: none;
    }

    .service-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--side-pad-sp);
    }

    .service-head {
      margin-bottom: 48px;
    }

    .service-cards {
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .service-card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .service-card-img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      background-color: var(--bg-sub);
      filter: brightness(0.95);
    }

    .service-card-body {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-num {
      font-size: 48px;
      font-weight: 300;
      color: var(--border-color);
      line-height: 1;
      margin-bottom: 12px;
    }

    .service-point-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--accent);
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-size: clamp(20px, 4vw, 24px);
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--text-main);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .h3-line {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--accent);
      margin-bottom: 24px;
    }

    .service-card p {
      font-size: 16px;
      color: var(--text-light);
      line-height: 2.2;
    }

    /* ========== MENU / PRICE ========== */
    #menu {
      background: var(--bg-sub);
      padding: 90px 0;
      position: relative;
    }

    .menu-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    .menu-list {
      display: flex;
      flex-direction: column;
      margin-top: 48px;
    }

    .menu-item {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 24px;
      padding: 32px 0;
      border-bottom: 1px solid var(--border-color);
    }

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

    .menu-name {
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--text-main);
      display: block;
      margin-bottom: 8px;
    }

    .menu-desc {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }

    .menu-price {
      font-size: clamp(20px, 4vw, 24px);
      font-weight: 300;
      color: var(--text-main);
      white-space: nowrap;
      letter-spacing: 0.1em;
      align-self: center;
    }

    /* ========== VOICE ========== */
    #voice {
      background: var(--bg-main);
      padding: 90px 0;
      overflow: hidden;
    }

    .voice-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--side-pad-sp);
    }

    .voice-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .voice-card {
      background: var(--bg-sub);
      padding: 32px;
      border: 1px solid var(--border-color);
    }

    .voice-stars {
      color: var(--accent);
      font-size: 14px;
      margin-bottom: 16px;
      letter-spacing: 4px;
    }

    .voice-text {
      font-size: 16px;
      color: var(--text-main);
      line-height: 2.0;
      margin-bottom: 24px;
    }

    .voice-author {
      font-size: 12px;
      letter-spacing: 0.1em;
      color: var(--text-light);
    }

    .voice-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 56px;
    }

    .voice-more-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 280px;
      height: 64px;
      background: var(--bg-sub);
      color: var(--text-main);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .voice-more-btn span {
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.2em;
      margin-bottom: 2px;
    }

    .voice-more-btn small {
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--text-light);
      transition: color 0.3s ease;
    }

    .voice-more-btn:hover {
      background: var(--text-main);
      color: var(--bg-main);
      border-color: var(--text-main);
    }

    .voice-more-btn:hover small {
      color: rgba(255, 255, 255, 0.7);
    }

    /* ========== MESSAGE ========== */
    #message {
      padding: 90px 0;
      background: var(--bg-sub);
    }

    .message-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .message-img img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      background-color: var(--bg-main);
    }

    .message-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #message-heading {
      font-size: 24px;
    }

    .message-text-static {
      font-size: 16px;
      line-height: 2.2;
      color: var(--text-main);
      padding: 24px 0;
    }

    .message-quote-wrap {
      text-align: center;
      margin-top: 80px;
      padding: 60px var(--side-pad-sp);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .message-quote {
      font-size: clamp(18px, 4vw, 26px);
      font-weight: 400;
      line-height: 1.8;
      color: var(--text-main);
      padding: 0;
      display: inline-block;
      max-width: 800px;
      width: 100%;
    }

    .quote-emphasize {
      font-weight: 400;
      color: var(--accent);
      display: inline;
    }

    /* ========== ACCESS ========== */
    #access {
      padding: 100px 0;
      background: var(--bg-main);
    }

    .access-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .access-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-top: 48px;
    }

    .access-info dt {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
      margin-top: 24px;
    }

    .access-info dt:first-child {
      margin-top: 0;
    }

    .access-info dd {
      font-size: 16px;
      color: var(--text-main);
      line-height: 2.0;
    }

    .access-info dd a {
      color: var(--text-main);
      border-bottom: 1px solid var(--border-color);
    }

    .access-info dd a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    .map-wrap {
      width: 100%;
      height: 400px;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ========== FOOTER ========== */
    #footer {
      background: #87897e;
      border-top: none;
      padding: 64px var(--side-pad-sp) 40px;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .footer-logo-text {
      font-size: 20px;
      color: #ffffff;
      margin-bottom: 24px;
      display: block;
      letter-spacing: 0.1em;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 32px;
      margin-bottom: 40px;
    }

    .footer-nav a {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
    }

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

    .footer-copy {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.1em;
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 32px 0;
    }

    /* ========== BACK TO TOP ========== */
    #back-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 48px;
      height: 48px;
      background: var(--bg-main);
      border: 1px solid var(--border-color);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      font-size: 18px;
      z-index: 900;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s;
      border-radius: 50%;
    }

    #back-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    #back-top:hover {
      background: var(--bg-sub);
      color: var(--accent);
      border-color: var(--accent);
    }

    /* ========== SP FIXED CTA ========== */
    #sp-fixed-cta {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 990;
      height: 60px;
      border-top: 1px solid var(--border-color);
    }

    .sp-cta-main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: var(--accent);
      color: var(--bg-main);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.1em;
      transition: background 0.3s;
    }

    .sp-cta-main:hover {
      background: var(--accent-dark);
    }

    /* ========== ANIMATIONS ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ========== PC STYLES ========== */
    @media (min-width: 768px) {
      :root {
        --side-pad-sp: var(--side-pad-pc);
      }

      body {
        padding-bottom: 0;
      }

      #sp-fixed-cta {
        display: none;
      }

      #back-top {
        bottom: 40px;
        right: 40px;
      }

      .header-inner {
        padding: 0 var(--side-pad-pc);
      }

      .header-nav {
        display: flex;
        align-items: center;
        gap: 40px;
      }

      .header-nav a {
        font-size: 13px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #ffffff;
        transition: opacity 0.3s;
      }

      .header-nav a:hover {
        color: #ffffff;
        opacity: 0.7;
      }

      .header-btn {
        display: inline-block;
      }

      .hamburger {
        display: none;
      }

      section {
        padding: 120px 0;
      }

      .cta-block {
        padding: 72px var(--side-pad-pc);
      }

      .about-inner {
        grid-template-columns: 45% 1fr;
        gap: 80px;
        align-items: center;
      }

      .about-body {
        padding-top: 0;
      }

      .mid-image-wrap {
        padding-bottom: var(--section-gap-pc);
      }

      .service-head {
        margin-bottom: 80px;
      }

      .service-cards {
        gap: 120px;
      }

      .service-card {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }

      .service-card:nth-child(even) {
        direction: rtl;
      }

      .service-card:nth-child(even)>* {
        direction: ltr;
      }

      /* service-card-img のサイズは共通化済み */

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

      .message-inner {
        grid-template-columns: 1fr 45%;
        gap: 80px;
        align-items: center;
        direction: rtl;
      }

      .message-inner>* {
        direction: ltr;
      }

      .access-grid {
        grid-template-columns: 35% 1fr;
        gap: 64px;
      }

      .footer-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 64px;
        align-items: end;
      }

      .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
      }

      .footer-nav {
        justify-content: flex-end;
        margin-bottom: 16px;
      }
    }

    @media (min-width: 1024px) {}

    .sp-only {
      display: none !important;
    }

    @media (max-width: 767px) {
      body {
        padding-bottom: 60px;
      }

      .sp-only {
        display: block !important;
      }
    }
  
