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

    :root {
      --primary: #C0412A;
      --primary-light: #D9664E;
      --primary-pale: #FDF0ED;
      --primary-mid: #E8846C;
      --warm-bg: #FEFCF8;
      --beige: #FAF5EE;
      --beige-dark: #F0E8DC;
      --white: #FFFFFF;
      --text-dark: #2C2C2C;
      --text-mid: #5A5A5A;
      --text-light: #9A9A9A;
      --border: #EAE0D2;
      /* 後方互換 */
      --gold: #C0412A;
      --gold-light: #D9664E;
      --gold-pale: #FDF0ED;
      --green-deep: #4A6B50;
      --green-mid: #6A9470;
      --green-soft: #EBF4ED;
      --ashi: #C5A070;
      --ashi-light: rgba(197, 160, 112, 0.12);
      --ashi-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cline x1='0' y1='6' x2='50' y2='6' stroke='%23C5A070' stroke-width='1'/%3E%3Crect x='56' y='2' width='8' height='8' transform='rotate(45 60 6)' fill='none' stroke='%23C5A070' stroke-width='1'/%3E%3Cline x1='70' y1='6' x2='120' y2='6' stroke='%23C5A070' stroke-width='1'/%3E%3C/svg%3E");
      --ashi-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24'%3E%3Cpath d='M0 24 Q12 12 24 24 Q36 12 48 24' fill='none' stroke='%23C5A070' stroke-width='0.7'/%3E%3Cpath d='M0 16 Q12 4 24 16 Q36 4 48 16' fill='none' stroke='%23C5A070' stroke-width='0.7'/%3E%3C/svg%3E");
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text-dark);
      background: var(--warm-bg);
      overflow-x: hidden;
    }

    /* ===============================
       ASHI DECORATIONS
    =============================== */
    .section-title-wrap .section-title {
      position: relative;
    }

    .section-title-wrap:not(.manner-header *) .section-title::after {
      content: '';
      display: block;
      width: 100px;
      height: 10px;
      margin-top: 12px;
      background: var(--ashi-divider) center / contain no-repeat;
      opacity: 0.55;
    }

    .manner-header .section-title::after {
      display: none;
    }

    .section-en {
      position: relative;
      padding-left: 14px;
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--primary);
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .section-en::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 6px;
      height: 6px;
      border: 1px solid var(--ashi);
      transform: translateY(-50%) rotate(45deg);
      opacity: 0.7;
    }

    .ashi-section-bg {
      position: relative;
      overflow: hidden;
    }

    .ashi-section-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--ashi-wave);
      background-size: 48px 24px;
      opacity: 0.035;
      pointer-events: none;
    }

    .ashi-section-bg > .container {
      position: relative;
    }

    /* ===============================
       HEADER
    =============================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }

    header.scrolled {
      box-shadow: 0 4px 24px rgba(100,120,100,0.1);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text-dark);
    }

    .logo-emblem {
      width: 44px;
      height: 44px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-emblem svg {
      width: 26px;
      height: 26px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-text-main {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--text-dark);
      white-space: nowrap;
    }

    .logo-text-sub {
      font-size: 10px;
      color: var(--text-light);
      letter-spacing: 0.1em;
      margin-top: 2px;
      white-space: nowrap;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 0;
    }

    nav a {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-mid);
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 20px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--primary);
      background: var(--primary-pale);
    }

    .header-lang {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 8px;
      padding-left: 10px;
      border-left: 1px solid var(--border);
      flex-shrink: 0;
    }

    .header-lang a {
      font-size: 11px;
      color: var(--text-light);
      text-decoration: none;
      padding: 4px 8px;
      border: 1px solid var(--border);
      border-radius: 3px;
      transition: all 0.2s;
    }

    .header-lang a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ===============================
       HERO / MV
    =============================== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

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

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide-bg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }

    .hero-slide.active .hero-slide-bg {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.5) 100%
      );
    }

    .hero-content {
      position: absolute;
      bottom: 15%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      color: white;
      width: 100%;
      padding: 0 24px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 20px;
    }

    .hero-label::before,
    .hero-label::after {
      content: '';
      display: block;
      width: 48px;
      height: 10px;
      background: var(--ashi-divider) center / contain no-repeat;
      opacity: 0.75;
    }

    .hero-label::after {
      transform: scaleX(-1);
    }

    .hero-title-logo {
      display: block;
      width: min(520px, 82vw);
      height: auto;
      margin: 0 auto;
      filter: drop-shadow(0 2px 24px rgba(0,0,0,0.5));
    }

    .hero-title-text {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .hero-title {
      margin: 0 auto 20px;
    }

    .hero-copy {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(14px, 1.8vw, 18px);
      font-weight: 300;
      letter-spacing: 0.12em;
      line-height: 2.2;
      color: rgba(255,255,255,0.88);
    }

    .hero-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }

    .hero-dot.active {
      background: white;
      width: 24px;
      border-radius: 3px;
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      font-size: 10px;
      letter-spacing: 0.2em;
    }

    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
      animation: scrollLine 2s infinite;
    }

    @keyframes scrollLine {
      0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
      100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
    }

    /* ===============================
       SECTION COMMON
    =============================== */
    section {
      padding: 80px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .section-title-wrap {}

    .section-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text-dark);
    }

    .section-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--primary);
      text-decoration: none;
      background: var(--primary-pale);
      padding: 8px 18px;
      border-radius: 20px;
      transition: background 0.2s, color 0.2s;
    }

    .section-more:hover {
      background: var(--primary);
      color: white;
    }

    .section-more-arrow {
      width: 16px;
      height: 1px;
      background: var(--primary);
      position: relative;
    }

    .section-more-arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 5px;
      height: 5px;
      border-right: 1px solid var(--primary);
      border-top: 1px solid var(--primary);
      transform: rotate(45deg);
    }

    .section-more:hover .section-more-arrow { background: white; }
    .section-more:hover .section-more-arrow::after { border-color: white; }

    .social-section-action {
      display: flex;
      justify-content: flex-end;
      margin-top: 24px;
    }

    /* ===============================
       INSTAGRAM
    =============================== */
    .instagram-section {
      background: var(--beige);
      padding: 72px 0;
    }

    .instagram-handle {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .instagram-handle svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
    }

    .instagram-handle span {
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }

    .instagram-embeds {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .instagram-embed-card {
      background: var(--white);
      border: 1px solid #DBDBDB;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(44,44,44,0.06);
    }

    .instagram-embed-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-bottom: 1px solid #EFEFEF;
    }

    .instagram-embed-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #D8B16A;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .instagram-embed-name {
      font-size: 12px;
      font-weight: 700;
      color: #262626;
      line-height: 1.3;
    }

    .instagram-embed-place {
      font-size: 11px;
      color: #8E8E8E;
      line-height: 1.4;
    }

    .instagram-embed-media {
      aspect-ratio: 1;
      background: #F5F5F5;
    }

    .instagram-embed-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .instagram-embed-body {
      padding: 12px 14px 14px;
    }

    .instagram-embed-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #262626;
      margin-bottom: 10px;
    }

    .instagram-embed-actions svg {
      width: 20px;
      height: 20px;
      stroke-width: 1.8;
    }

    .instagram-embed-caption {
      font-size: 12px;
      line-height: 1.65;
      color: #262626;
      margin-bottom: 10px;
    }

    .instagram-embed-caption strong {
      font-weight: 700;
    }

    .instagram-embed-link {
      display: inline-block;
      color: #385185;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
    }

    /* ===============================
       X / TWITTER
    =============================== */
    .twitter-section {
      padding: 72px 0;
      background: var(--white);
    }

    .twitter-header-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .twitter-x-logo {
      width: 36px;
      height: 36px;
      background: var(--text-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .twitter-x-logo svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .twitter-handle {
      font-size: 13px;
      color: var(--text-light);
      margin-top: 4px;
    }

    .twitter-embed-frame {
      max-width: 560px;
      max-height: 640px;
      margin: 0 auto;
      border: 1px solid #CFD9DE;
      border-radius: 14px;
      background: #FFFFFF;
      overflow-y: auto;
      box-shadow: 0 4px 18px rgba(15,20,25,0.08);
    }

    .twitter-embed-frame::-webkit-scrollbar {
      width: 8px;
    }

    .twitter-embed-frame::-webkit-scrollbar-thumb {
      background: #CFD9DE;
      border-radius: 999px;
    }

    .twitter-embed-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 16px;
      border-bottom: 1px solid #EFF3F4;
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.96);
      z-index: 1;
    }

    .twitter-embed-title {
      font-size: 15px;
      font-weight: 700;
      color: #0F1419;
      line-height: 1.35;
    }

    .twitter-follow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      padding: 0 16px;
      border-radius: 999px;
      background: #0F1419;
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      flex-shrink: 0;
    }

    .tweet-card {
      padding: 16px;
      background: #FFFFFF;
      border-bottom: 1px solid #EFF3F4;
      transition: background 0.2s;
    }

    .tweet-card:hover {
      background: #F7F9F9;
    }

    .tweet-card:last-child {
      border-bottom: none;
    }

    .tweet-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .tweet-user {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tweet-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 1px solid #C0412A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
      flex-shrink: 0;
    }

    .tweet-name {
      font-size: 13px;
      font-weight: 700;
      color: #0F1419;
      line-height: 1.3;
    }

    .tweet-id {
      font-size: 12px;
      color: #536471;
    }

    .tweet-body {
      font-size: 13px;
      line-height: 1.55;
      color: #0F1419;
      margin-bottom: 12px;
    }

    .tweet-image {
      width: 100%;
      aspect-ratio: 16/9;
      background: #EFF3F4;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #CFD9DE;
      margin-bottom: 12px;
    }

    .tweet-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .tweet-date {
      font-size: 12px;
      color: #536471;
    }

    @media (max-width: 900px) {
      .instagram-embeds {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .instagram-embeds {
        grid-template-columns: 1fr;
      }

      .twitter-embed-frame {
        border-radius: 10px;
      }
    }

    /* ===============================
       SUPPORT MAP
    =============================== */
    .support-map-section {
      background: linear-gradient(180deg, #F8EFE8 0%, var(--warm-bg) 100%);
      padding: 64px 0 88px;
      position: relative;
    }

    .support-map-container {
      max-width: 1280px;
    }

    .support-map-hero {
      display: grid;
      grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.55fr);
      min-height: 480px;
      overflow: hidden;
      border-radius: 24px;
      text-decoration: none;
      color: inherit;
      border: 1px solid rgba(92, 69, 44, 0.14);
      background: #231914;
      box-shadow: 0 30px 78px rgba(74, 60, 46, 0.2), 0 1px 0 rgba(255,255,255,0.68) inset;
      position: relative;
      isolation: isolate;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .support-map-hero::before {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255,255,255,0.32);
      border-radius: 18px;
      pointer-events: none;
      z-index: 5;
    }

    .support-map-hero:hover {
      transform: translateY(-5px);
      box-shadow: 0 36px 90px rgba(74, 60, 46, 0.24), 0 2px 0 rgba(255,255,255,0.95) inset;
    }

    .support-map-copy {
      background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(167, 52, 32, 0.96) 0%, rgba(114, 34, 24, 0.96) 100%);
      padding: 54px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      color: white;
      position: relative;
      z-index: 3;
    }

    .support-map-copy::after {
      content: '';
      position: absolute;
      right: -26px;
      top: 0;
      bottom: 0;
      width: 64px;
      background: inherit;
      transform: skewX(-7deg);
      transform-origin: top;
      z-index: -1;
    }

    .support-map-kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 11px;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.7);
      font-weight: 700;
    }

    .support-map-kicker span:first-child {
      color: #C0412A;
      background: white;
      border-radius: 999px;
      padding: 6px 12px;
      letter-spacing: 0.12em;
    }

    .support-map-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: 0.04em;
    }

    .support-map-lead {
      font-size: 15px;
      color: rgba(255,255,255,0.88);
      line-height: 1.95;
      letter-spacing: 0.04em;
    }

    .support-map-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .support-map-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.16);
      color: white;
      font-size: 13px;
      font-weight: 700;
      padding: 9px 15px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.28);
      letter-spacing: 0.04em;
    }

    .support-map-tag svg,
    .support-map-tag img {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }

    .support-map-tag img {
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .support-map-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      align-self: flex-start;
      background: white;
      color: var(--primary);
      font-size: 15px;
      font-weight: 700;
      padding: 15px 28px;
      border-radius: 999px;
      margin-top: 8px;
      box-shadow: 0 10px 28px rgba(72, 20, 10, 0.24);
    }

    .support-map-visual {
      background: #ECE1CB;
      min-height: 480px;
      position: relative;
      overflow: hidden;
    }

    .support-map-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(120, 49, 32, 0.18) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 100%),
        radial-gradient(circle at 74% 28%, rgba(255,255,255,0.34), transparent 28%);
      pointer-events: none;
      z-index: 1;
    }

    .support-map-image {
      width: 100%;
      height: 100%;
      display: block;
      min-height: 480px;
      object-fit: cover;
      object-position: 45% 42%;
      transform: scale(1.04);
      transition: transform 0.5s ease;
    }

    .support-map-hero:hover .support-map-image {
      transform: scale(1.08);
    }

    .support-map-floating-label {
      position: absolute;
      right: 28px;
      top: 26px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.94);
      color: #4A3C2E;
      border: 1px solid rgba(197, 160, 112, 0.38);
      box-shadow: 0 8px 28px rgba(74, 60, 46, 0.12);
      border-radius: 999px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .support-map-pin {
      position: absolute;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      filter: drop-shadow(0 12px 18px rgba(40, 30, 20, 0.22));
    }

    .support-map-pin-icon {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 50% 50% 50% 8px;
      transform: rotate(-45deg);
      background: #C0412A;
      border: 3px solid rgba(255,255,255,0.82);
    }

    .support-map-pin-icon img {
      width: 25px;
      height: 25px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transform: rotate(45deg);
    }

    .support-map-pin-label {
      background: rgba(255,255,255,0.94);
      color: #35271F;
      border: 1px solid rgba(91, 70, 52, 0.16);
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(52, 40, 30, 0.15);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 8px 13px;
      white-space: nowrap;
    }

    .support-map-pin-toilet {
      right: 18%;
      top: 34%;
    }

    .support-map-pin-toilet .support-map-pin-icon {
      background: #267BC3;
    }

    .support-map-pin-trash {
      right: 34%;
      bottom: 24%;
    }

    .support-map-pin-trash .support-map-pin-icon {
      background: #22985F;
    }

    .support-map-pin-smoking {
      right: 11%;
      bottom: 28%;
    }

    .support-map-pin-smoking .support-map-pin-icon {
      background: #7444A7;
    }

    .support-map-pin-bamboo {
      left: 12%;
      top: 40%;
    }

    .support-map-pin-bamboo .support-map-pin-icon {
      background: #5A9A22;
    }

    @media (max-width: 900px) {
      .support-map-section {
        padding: 44px 0 64px;
      }

      .support-map-hero {
        grid-template-columns: 1fr;
      }

      .support-map-copy::after {
        display: none;
      }

      .support-map-visual,
      .support-map-image {
        min-height: 320px;
      }

      .support-map-image {
        object-position: 42% 46%;
      }
    }

    @media (max-width: 640px) {
      .support-map-copy {
        padding: 38px 28px;
      }

      .support-map-title {
        font-size: 34px;
      }

      .support-map-lead {
        font-size: 14px;
      }

      .support-map-floating-label {
        left: 18px;
        right: auto;
        top: 18px;
      }

      .support-map-pin-icon {
        width: 44px;
        height: 44px;
      }

      .support-map-pin-icon img {
        width: 21px;
        height: 21px;
      }

      .support-map-pin-label {
        display: none;
      }

      .support-map-pin-toilet {
        right: 22%;
        top: 32%;
      }

      .support-map-pin-trash {
        right: 36%;
        bottom: 22%;
      }

      .support-map-pin-smoking {
        right: 12%;
        bottom: 27%;
      }

      .support-map-pin-bamboo {
        left: 13%;
        top: 43%;
      }
    }

    /* ===============================
       CONTENT NAV
    =============================== */
    .content-nav {
      background: var(--warm-bg);
      padding: 80px 0;
    }

    .nav-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .nav-cards + .nav-cards {
      margin-top: 20px;
    }

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

    .nav-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: var(--text-dark);
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
      border: 1px solid var(--border);
      display: block;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .nav-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(192,65,42,0.1);
    }

    .nav-card-image {
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .nav-card-image svg,
    .nav-card-image img,
    .nav-card-image-bg svg {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .nav-card:hover .nav-card-image svg,
    .nav-card:hover .nav-card-image img,
    .nav-card:hover .nav-card-image-bg svg {
      transform: scale(1.05);
    }

    .nav-card-body {
      padding: 18px 20px 22px;
    }

    .nav-card-icon {
      width: 34px;
      height: 34px;
      background: var(--primary-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .nav-card-icon svg {
      width: 17px;
      height: 17px;
      color: var(--primary);
    }

    .nav-card-title {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .nav-card-desc {
      font-size: 12px;
      line-height: 1.85;
      color: var(--text-light);
    }

    .nav-card-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--primary);
      margin-top: 14px;
      background: var(--primary-pale);
      padding: 5px 12px 5px 10px;
      border-radius: 20px;
    }

    .nav-card-arrow-line {
      width: 12px;
      height: 1px;
      background: var(--primary);
      position: relative;
      flex-shrink: 0;
    }

    .nav-card-arrow-line::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 5px;
      height: 5px;
      border-right: 1px solid var(--primary);
      border-top: 1px solid var(--primary);
      transform: rotate(45deg);
    }

    /* ===============================
       MANNER
    =============================== */
    .manner-section {
      padding: 92px 0 104px;
      background: linear-gradient(180deg, rgba(250, 245, 238, 0.92), rgba(253, 250, 243, 0.98));
    }

    .manner-panel {
      position: relative;
    }

    .manner-header {
      position: relative;
      margin-bottom: 34px;
      align-items: flex-start;
      border-bottom: 0;
      padding-bottom: 0;
    }

    .manner-header::after {
      content: '';
      display: block;
      width: min(100%, 1080px);
      height: 1px;
      margin-top: 30px;
      background: linear-gradient(90deg, rgba(197,160,112,0.42), rgba(197,160,112,0.08));
    }

    .manner-title {
      font-size: clamp(38px, 5vw, 68px);
      color: var(--text-dark);
      margin-bottom: 14px;
      line-height: 1.1;
    }

    .manner-lead {
      font-size: 15px;
      line-height: 1.9;
      color: var(--text-dark);
      font-weight: 500;
      max-width: none;
      white-space: nowrap;
    }

    .manner-content {
      display: grid;
      gap: 28px;
    }

    .garbage-problem-block {
      padding: 36px;
      border: 1px solid rgba(197, 160, 112, 0.34);
      border-top: 4px solid var(--primary);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 18px 48px rgba(60, 42, 31, 0.08);
    }

    .garbage-problem-head {
      margin-bottom: 24px;
    }

    .garbage-problem-title {
      margin: 0;
      color: var(--primary);
      font-size: 24px;
      line-height: 1.45;
      letter-spacing: 0.04em;
    }

    .garbage-video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 360px));
      justify-content: center;
      gap: 24px;
    }

    .garbage-video-embed {
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border: 1px solid rgba(197, 160, 112, 0.38);
      border-radius: 16px;
      background: #FFFDF9;
      box-shadow: 0 16px 42px rgba(60, 42, 31, 0.1);
    }

    .garbage-video-embed iframe,
    .garbage-video-embed video {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
      object-fit: cover;
    }

    .garbage-video-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.8;
      text-align: center;
      background:
        linear-gradient(135deg, rgba(192,65,42,0.05), rgba(197,160,112,0.08)),
        #FFFDF9;
    }

    .garbage-problem-link-wrap {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .manner-definition {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: stretch;
      padding: 36px;
      max-width: 100%;
      border: 1px solid rgba(197, 160, 112, 0.34);
      border-top: 4px solid var(--primary);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 18px 48px rgba(60, 42, 31, 0.08);
    }

    .manner-definition-copy {
      min-width: 0;
      max-width: none;
    }

    .manner-definition-title {
      font-size: 22px;
      line-height: 1.5;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: 0.04em;
    }

    .manner-definition-text,
    .manner-message {
      font-size: 15px;
      line-height: 2;
      color: var(--text-dark);
      font-weight: 500;
    }

    .manner-message strong {
      color: var(--primary);
      font-weight: 700;
    }

    .manner-message {
      grid-column: 1 / -1;
      max-width: 940px;
      margin: 0 auto;
      text-align: center;
    }

    .manner-visual {
      margin: 0;
      padding: 14px 14px 12px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,251,244,0.96));
      border: 1px solid rgba(197, 160, 112, 0.38);
      border-radius: 16px;
      box-shadow: 0 24px 64px rgba(60, 42, 31, 0.12);
      position: relative;
      overflow: hidden;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
    }

    .manner-visual::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(192, 65, 42, 0.1);
      border-radius: 12px;
      pointer-events: none;
    }

    .manner-visual img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 11px;
      position: relative;
      z-index: 1;
      background: #fbf2dc;
    }

    .manner-visual figcaption {
      margin-top: 10px;
      font-size: 12px;
      line-height: 1.6;
      color: var(--text-light);
      text-align: right;
      position: relative;
      z-index: 1;
    }

    .manner-link-wrap {
      display: flex;
      justify-content: center;
      grid-column: 1 / -1;
      margin-top: 0;
    }

    .manner-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 22px;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      box-shadow: 0 10px 28px rgba(192,65,42,0.18);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .manner-more:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(192,65,42,0.24);
    }

    .manner-more .section-more-arrow,
    .manner-more .section-more-arrow::after {
      background: white;
      border-color: white;
    }

    @media (max-width: 900px) {
      .manner-header {
        align-items: flex-start;
      }

      .manner-message {
        text-align: left;
      }

      .manner-definition {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }

    @media (max-width: 640px) {
      .manner-section {
        padding: 72px 0;
      }

      .manner-definition {
        padding: 22px 18px;
        gap: 18px;
      }

      .garbage-problem-block {
        padding: 22px 18px;
      }

      .garbage-video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .garbage-problem-link-wrap {
        justify-content: stretch;
      }

      .manner-definition-title {
        font-size: 18px;
      }

      .manner-definition-text,
      .manner-message {
        font-size: 14px;
        line-height: 1.9;
      }

      .manner-lead {
        white-space: normal;
      }

      .manner-visual {
        padding: 8px 8px 10px;
      }

      .manner-visual figcaption {
        text-align: left;
      }
    }

    .manner-more-wrap {
      text-align: center;
      margin-top: 36px;
    }

    .manner-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background: var(--primary);
      color: white;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-decoration: none;
      border-radius: 32px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(192, 65, 42, 0.25);
    }

    .manner-cta:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(192, 65, 42, 0.3);
    }

    .manner-cta-arrow {
      width: 18px;
      height: 1px;
      background: white;
      position: relative;
    }

    .manner-cta-arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 7px;
      height: 7px;
      border-right: 1.5px solid white;
      border-top: 1.5px solid white;
      transform: rotate(45deg);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 24px;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-decoration: none;
      border-radius: 24px;
      transition: all 0.2s;
      background: white;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    /* ===============================
       EVENT BANNER
    =============================== */
    .event-section {
      padding: 0;
    }

    .event-banner {
      position: relative;
      height: 360px;
      overflow: hidden;
      text-decoration: none;
      display: block;
    }

    .event-banner-bg {
      position: absolute;
      inset: 0;
    }

    .event-banner-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .event-banner:hover .event-banner-bg-img {
      transform: scale(1.04);
    }

    .event-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.1) 100%
      );
    }

    .event-banner-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .event-banner-content > div::before {
      content: '';
      display: block;
      width: 80px;
      height: 10px;
      margin-bottom: 16px;
      background: var(--ashi-divider) center / contain no-repeat;
      opacity: 0.7;
      filter: brightness(2);
    }

    .event-banner-en {
      font-size: 11px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .event-banner-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      letter-spacing: 0.06em;
      color: white;
      line-height: 1.3;
      margin-bottom: 12px;
      text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }

    .event-banner-desc {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.85);
      margin-bottom: 28px;
    }

    .btn-event {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: white;
      color: var(--text-dark);
      font-size: 13px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 0.08em;
      padding: 13px 28px;
      border-radius: 2px;
      transition: background 0.2s;
    }

    .event-banner:hover .btn-event {
      background: var(--primary-pale);
    }

    .btn-event-arrow {
      width: 20px;
      height: 1px;
      background: var(--primary);
      position: relative;
    }

    .btn-event-arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 6px;
      height: 6px;
      border-right: 1px solid var(--primary);
      border-top: 1px solid var(--primary);
      transform: rotate(45deg);
    }

    /* ===============================
       RECOMMENDED SHOPS
    =============================== */
    .shops-section {
      background: linear-gradient(180deg, #FAF7F2 0%, var(--warm-bg) 100%);
      padding: 80px 0 72px;
      position: relative;
    }

    .shops-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200, 168, 120, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .shops-section .container {
      position: relative;
    }

    .shops-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .shops-header-icon {
      width: 32px;
      height: 32px;
      margin: 0 auto 20px;
      color: var(--ashi);
    }

    .shops-header-icon svg {
      width: 100%;
      height: 100%;
    }

    .shops-title-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 12px;
    }

    .shops-title-deco {
      display: flex;
      flex-direction: column;
      gap: 5px;
      opacity: 0.35;
    }

    .shops-title-deco span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--ashi);
    }

    .shops-title-deco-left span:nth-child(1) { transform: rotate(-20deg); }
    .shops-title-deco-left span:nth-child(2) { transform: rotate(-5deg); width: 18px; }
    .shops-title-deco-right span:nth-child(1) { transform: rotate(5deg); width: 18px; align-self: flex-end; }
    .shops-title-deco-right span:nth-child(2) { transform: rotate(20deg); align-self: flex-end; }

    .shops-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(20px, 2.5vw, 26px);
      font-weight: 700;
      letter-spacing: 0.14em;
      color: #4A3C2E;
    }

    .shops-title::after {
      content: '';
      display: block;
      width: 100px;
      height: 10px;
      margin: 10px auto 0;
      background: var(--ashi-divider) center / contain no-repeat;
      opacity: 0.5;
    }

    .shops-subtitle {
      font-size: 13px;
      color: #9A8268;
      letter-spacing: 0.1em;
      font-weight: 400;
    }

    .shops-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items: start;
      margin-bottom: 52px;
    }

    .shop-card {
      background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F1 100%);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(197, 160, 112, 0.38);
      box-shadow: 0 1px 0 rgba(255,255,255,0.95) inset, 0 10px 28px rgba(74, 60, 46, 0.12);
      text-decoration: none;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      width: 100%;
      min-width: 0;
      aspect-ratio: 5 / 2;
      padding: 6px;
      gap: 0;
      position: relative;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .shop-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.72) inset;
      pointer-events: none;
      z-index: 1;
    }

    .shop-card:hover {
      transform: translateY(-3px);
      border-color: rgba(192, 65, 42, 0.36);
      box-shadow: 0 1px 0 rgba(255,255,255,0.95) inset, 0 16px 38px rgba(74, 60, 46, 0.18);
    }

    .shop-card-image {
      width: 42%;
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      z-index: 2;
    }

    .shop-card-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, rgba(255,252,248,0.15) 100%);
      pointer-events: none;
    }

    .shop-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .shop-card:hover .shop-card-image img {
      transform: scale(1.08);
    }

    .shop-card-body {
      flex: 1;
      padding: 10px 16px 10px 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      min-width: 0;
      background: rgba(255, 253, 249, 0.92);
      border-radius: 0 10px 10px 0;
      z-index: 2;
    }

    .shop-card-body::before {
      content: 'PICK UP';
      font-size: 9px;
      letter-spacing: 0.22em;
      color: var(--ashi);
      font-weight: 500;
      margin-bottom: 6px;
    }

    .shop-card-name {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #3A3028;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
      padding-right: 36px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.3;
    }

    .shop-card-desc {
      font-size: 10px;
      color: #9A8268;
      letter-spacing: 0.06em;
      line-height: 1.5;
      font-weight: 400;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .shop-card-arrow {
      position: absolute;
      bottom: 10px;
      right: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      letter-spacing: 0.12em;
      color: #9A8268;
      transition: color 0.25s, gap 0.25s;
    }

    .shop-card-arrow svg {
      width: 14px;
      height: 14px;
      stroke-width: 1.5;
      transition: transform 0.25s;
    }

    .shop-card:hover .shop-card-arrow {
      color: #7A634D;
      gap: 8px;
    }

    .shop-card:hover .shop-card-arrow svg {
      transform: translateX(2px);
    }

    .shop-card-recruiting {
      border: 1.5px dashed rgba(197, 160, 112, 0.5) !important;
      background: rgba(255, 253, 249, 0.74) !important;
      box-shadow: 0 8px 24px rgba(74, 60, 46, 0.08) !important;
      pointer-events: auto;
      aspect-ratio: 5 / 2;
      align-self: start;
      align-items: center;
      justify-content: center;
    }

    .shop-card-recruiting:hover {
      transform: none !important;
      box-shadow: none !important;
      border-color: var(--primary-mid) !important;
    }

    .shop-card-recruiting-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
      width: 100%;
      padding: 0 16px;
    }

    .shop-card-recruiting-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-light);
      letter-spacing: 0.08em;
    }

    .shop-card-recruiting-sub {
      font-size: 11px;
      color: var(--primary);
      letter-spacing: 0.05em;
    }

    .shops-footer {
      position: relative;
      text-align: center;
    }

    .shops-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      color: #5D4B33;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      letter-spacing: 0.12em;
      padding: 14px 36px;
      border-radius: 32px;
      text-decoration: none;
      border: 1.5px solid var(--ashi);
      transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .shops-cta:hover {
      background: var(--ashi);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(197, 160, 112, 0.3);
    }

    .shops-cta-arrow {
      font-size: 14px;
      line-height: 1;
      transition: transform 0.25s;
    }

    .shops-cta:hover .shops-cta-arrow {
      transform: translateX(3px);
    }

    .shops-deco {
      position: absolute;
      right: 0;
      bottom: -8px;
      width: 120px;
      height: 80px;
      opacity: 0.3;
      pointer-events: none;
    }

    .shops-deco svg {
      width: 100%;
      height: 100%;
    }

    @media (max-width: 900px) {
      .shops-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .shop-card {
        aspect-ratio: 5 / 1.7;
      }

      .shop-card-image {
        width: 34%;
      }

      .shop-card-name {
        font-size: 15px;
      }

      .shop-card-desc {
        font-size: 12px;
      }
    }

    @media (max-width: 640px) {
      .shops-deco {
        display: none;
      }
    }

    /* ===============================
       FOOTER
    =============================== */
    footer {
      background: #3A2A22;
      color: white;
      position: relative;
    }

    footer::before {
      content: '';
      display: block;
      height: 32px;
      background: var(--warm-bg);
      background-image: var(--ashi-divider);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 160px 10px;
    }

    .footer-main {
      padding: 56px 0 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-emblem {
      width: 48px;
      height: 48px;
      border: 1.5px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-text-main {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: white;
    }

    .footer-logo-text-sub {
      font-size: 10px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
      margin-top: 3px;
    }

    .footer-nav-cols {
      display: flex;
      gap: 48px;
    }

    .footer-nav-col {}

    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-list a {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-nav-list a::before {
      content: '';
      width: 4px;
      height: 4px;
      border: 1px solid rgba(197, 160, 112, 0.45);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .footer-nav-list a:hover {
      color: white;
    }

    .footer-sns {
      display: flex;
      gap: 12px;
    }

    .footer-sns-link {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.2s;
    }

    .footer-sns-link:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
    }

    .footer-sns-link svg {
      width: 16px;
      height: 16px;
    }

    .footer-bottom {
      background: rgba(0,0,0,0.2);
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .footer-policy {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }

    .footer-policy-links {
      display: flex;
      gap: 24px;
    }

    .footer-policy-links a {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }

    .footer-policy-links a:hover {
      color: rgba(255,255,255,0.7);
    }

    .footer-copyright {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.06em;
    }

    /* ===============================
       GOLD DIVIDER
    =============================== */
    .gold-divider {
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, transparent, var(--primary-mid), var(--primary), var(--primary-mid), transparent);
      opacity: 0.4;
    }

.social-plugin-frame { margin-top: 28px; }
.social-plugin-frame .sbi,
.social-plugin-frame .ctf { font-family: 'Noto Sans JP', sans-serif; }
.social-plugin-fallback { padding: 34px; border: 1px dashed rgba(192, 65, 42, 0.28); border-radius: 10px; background: rgba(255,255,255,0.62); color: var(--text-dark); line-height: 1.8; }

    /* ===============================
       RESPONSIVE FIXES
    =============================== */
    @media (max-width: 1040px) {
      header nav,
      .header-lang {
        display: none !important;
      }

      header {
        position: sticky;
      }

      .header-inner {
        justify-content: center;
        padding: 0 18px;
        position: relative;
      }

      .logo {
        min-width: 0;
      }

      .logo img {
        max-width: min(72vw, 360px);
        height: auto !important;
        max-height: 34px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      header.nav-open nav {
        display: flex !important;
      }
    }

    @media (max-width: 900px) {
      .container {
        padding-left: 28px;
        padding-right: 28px;
      }

      .hero {
        height: calc(100svh - 64px);
        min-height: 620px;
        margin-top: 0;
      }

      .hero-content {
        width: min(100%, 640px);
        padding: 0 28px;
      }

      .hero-title-logo {
        width: min(82vw, 560px);
      }

      .hero-title-text {
        font-size: clamp(34px, 8vw, 56px);
        letter-spacing: 0.08em;
      }

      .hero-copy {
        font-size: 16px;
      }

      .section-header {
        align-items: flex-start;
      }

      .section-title {
        font-size: clamp(28px, 7vw, 40px);
        line-height: 1.35;
      }

      .nav-cards,
      .nav-cards-row2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .nav-card-title {
        font-size: 18px;
        line-height: 1.45;
      }

      .nav-card-desc {
        font-size: 13px;
        line-height: 1.8;
      }

      .nav-card-arrow {
        width: fit-content;
      }

      .support-map-section,
      .content-nav,
      .shops-section,
      .manner-section {
        padding-top: 64px;
        padding-bottom: 64px;
      }

      .footer-top,
      .footer-policy {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 640px) {
      .container,
      .footer-inner,
      .footer-bottom-inner {
        padding-left: 20px;
        padding-right: 20px;
      }

      .hero {
        min-height: 600px;
      }

      .hero-label {
        font-size: 10px;
        letter-spacing: 0.18em;
      }

      .hero-title-logo {
        width: min(88vw, 420px);
      }

      .hero-title-text {
        font-size: clamp(30px, 9vw, 42px);
      }

      .hero-copy {
        font-size: 14px;
        line-height: 1.9;
      }

      .support-map-hero {
        border-radius: 18px;
      }

      .support-map-tags {
        gap: 8px;
      }

      .support-map-tag {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
      }

      .nav-cards,
      .nav-cards-row2 {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .nav-card {
        display: grid;
        grid-template-columns: 38% 1fr;
        min-height: 168px;
        border-radius: 14px;
      }

      .nav-card-image {
        height: 100%;
        aspect-ratio: auto;
      }

      .nav-card-body {
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
      }

      .nav-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
      }

      .nav-card-title {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 6px;
        word-break: keep-all;
        overflow-wrap: anywhere;
      }

      .nav-card-desc {
        font-size: 12px;
        line-height: 1.75;
      }

      .nav-card-arrow {
        margin-top: 10px;
        padding: 5px 11px;
        writing-mode: horizontal-tb;
      }

      .manner-content,
      .summary-panel,
      .association-card {
        grid-template-columns: 1fr;
      }

      .shops-grid {
        grid-template-columns: 1fr !important;
      }

      .footer-nav-cols,
      .footer-policy-links {
        flex-direction: column;
        gap: 14px;
      }

      .social-section-action {
        justify-content: flex-start;
        margin-top: 20px;
      }

      .social-section-action .section-more {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
      }

      .manner-link-wrap {
        justify-content: stretch;
      }

      .manner-more {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 380px) {
      .nav-card {
        grid-template-columns: 1fr;
      }

      .nav-card-image {
        aspect-ratio: 16 / 9;
      }
    }
