/* Leale corporate site — creative redesign (evoworx-inspired) */
:root {
  --bg: #f7f6f1;
  --bg2: #efeee7;
  --ink: #17201a;
  --ink-soft: #55605a;
  --green: #5aa899;      /* teal (UI用・ロゴのミントを濃くした実用色) */
  --green-deep: #3d7f73;
  --mint: #96d1c4;       /* ロゴ実色 */
  --yellow: #f4e77e;     /* ロゴ実色 */
  --blue: #9099b1;       /* ロゴ実色（ラベンダー） */
  --pink: #dea9a8;       /* ロゴ実色 */
  --line: #dcdcd2;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.9;
  font-size: 15.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.en { font-family: "Outfit", sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 6vw; }

/* page cross-fade (View Transitions API) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.35s var(--ease) both; }
::view-transition-new(root) { animation: vt-in 0.5s var(--ease) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-14px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(18px); } }

/* ---------- cursor ---------- */
.cursor {
  position: fixed; z-index: 9999; top: 0; left: 0; width: 12px; height: 12px;
  border-radius: 50%; background: var(--green); pointer-events: none;
  transform: translate(-50%, -50%); transition: width 0.25s, height 0.25s, opacity 0.25s, background 0.25s;
  mix-blend-mode: multiply; opacity: 0.85;
}
.cursor { background: var(--mint); }
.cursor.is-link { width: 46px; height: 46px; background: var(--yellow); opacity: 0.5; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4vw; transition: transform 0.4s var(--ease);
}
.site-header.is-hidden { transform: translateY(-110%); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08)); }
.brand .name { font-weight: 700; font-size: 1rem; line-height: 1.3; letter-spacing: 0.03em; }
.brand .name small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; color: var(--ink-soft); text-transform: uppercase; }

.menu-btn {
  position: fixed; top: 18px; right: 4vw; z-index: 400;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--mint); color: var(--ink); display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.menu-btn:hover { transform: scale(1.08); background: var(--yellow); }
.menu-btn .bars { display: block; width: 22px; }
.menu-btn .bars span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.menu-btn .bars span + span { margin-top: 6px; }
body.menu-open .menu-btn { background: var(--ink); }
body.menu-open .menu-btn .bars span { background: #fff; }
body.menu-open .menu-btn .bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-btn .bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn .bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- overlay menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 300; background: var(--mint); color: var(--ink);
  clip-path: circle(0% at calc(100% - 4vw - 31px) 49px);
  transition: clip-path 0.7s var(--ease); visibility: hidden;
  display: flex; align-items: center; overflow: hidden;
}
body.menu-open .menu-overlay { clip-path: circle(150% at calc(100% - 4vw - 31px) 49px); visibility: visible; }
.menu-overlay .inner { display: flex; gap: 8vw; align-items: flex-start; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 6vw; }
.menu-overlay nav { flex: 1; }
.menu-overlay .m-link {
  display: flex; align-items: baseline; gap: 18px; padding: 0.45em 0;
  opacity: 0; transform: translateY(30px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
body.menu-open .m-link { opacity: 1; transform: none; }
.menu-overlay .m-link .en { font-size: clamp(1.7rem, 4.6vw, 3.2rem); font-weight: 700; letter-spacing: 0.02em; line-height: 1.15; transition: color 0.25s; }
.menu-overlay .m-link:hover .en { color: #fff; }
.menu-overlay .m-link .jp { font-size: 0.8rem; color: #35544c; letter-spacing: 0.1em; }
.menu-overlay .m-side { padding-top: 8px; font-size: 0.85rem; color: #35544c; line-height: 2.2; }
.menu-overlay .m-side a:hover { color: #fff; }
@media (max-width: 760px) { .menu-overlay .m-side { display: none; } .menu-overlay .inner { padding-top: 10vh; } }

/* ---------- hero (index) ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 16vh 0 10vh;
}
.hero .container { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(2.3rem, 7.2vw, 5.6rem); font-weight: 800; line-height: 1.28; letter-spacing: 0.015em;
}
.hero h1 .accent { color: var(--ink); background: linear-gradient(transparent 58%, var(--mint) 58%); }
.hero h1 .enjoy { font-size: 0.34em; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.06em; margin-left: 0.3em; }
.hero .lead { margin-top: 3.2vh; max-width: 620px; color: var(--ink-soft); font-size: clamp(0.92rem, 1.4vw, 1.05rem); }
.hero .actions { margin-top: 4.5vh; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-shapes .shape { position: absolute; border-radius: 6px; opacity: 0.85; will-change: transform; }
.shape.s1 { width: 26vw; height: 7vw; background: linear-gradient(90deg, var(--pink), #ecc5c4); right: -4vw; top: 14%; transform: skewY(-12deg); }
.shape.s2 { width: 20vw; height: 6vw; background: linear-gradient(90deg, var(--yellow), #f9f0a9); right: 10vw; top: 44%; transform: skewY(-12deg); }
.shape.s3 { width: 24vw; height: 6.5vw; background: linear-gradient(90deg, var(--blue), #b3bacc); right: -6vw; top: 72%; transform: skewY(-12deg); }
.shape.s4 { width: 9vw; height: 34vw; background: linear-gradient(180deg, var(--mint), #c0e4db); right: 34vw; top: 30%; transform: skewY(-12deg); opacity: 0.45; }

.scroll-cue { position: absolute; left: 6vw; bottom: 4vh; z-index: 3; display: flex; align-items: center; gap: 12px; font-size: 0.68rem; letter-spacing: 0.34em; color: var(--ink-soft); text-transform: uppercase; }
.scroll-cue::after { content: ""; width: 56px; height: 1px; background: var(--ink-soft); animation: cue 1.8s var(--ease) infinite; transform-origin: left; }
@keyframes cue { 0% { transform: scaleX(0); } 45% { transform: scaleX(1); } 100% { transform: scaleX(1); opacity: 0; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--bg); }
.marquee .track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { font-size: clamp(1.1rem, 2.4vw, 1.8rem); font-weight: 600; letter-spacing: 0.06em; color: var(--ink); white-space: nowrap; }
.marquee span i { font-style: normal; color: var(--pink); margin-right: 3.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.block { padding: 15vh 0; position: relative; }
section.block.alt { background: var(--bg2); }

.sec-head { margin-bottom: 7vh; }
.sec-head .en-big {
  font-size: clamp(2.6rem, 8vw, 6.4rem); font-weight: 800; letter-spacing: 0.01em; line-height: 1;
  text-transform: uppercase;
}
.sec-head .en-big.outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); opacity: 0.9; }
.sec-head .jp { margin-top: 14px; font-weight: 700; font-size: clamp(1rem, 2vw, 1.25rem); display: flex; align-items: center; gap: 14px; }
.sec-head .jp::before { content: ""; width: 34px; height: 3px; border-radius: 2px; background: var(--pink); }
.sec-head .sub { color: var(--ink-soft); margin-top: 12px; max-width: 640px; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: 20px; padding: 34px 30px 30px; position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(23, 32, 26, 0.1); }
.card .tag {
  display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em;
  padding: 5px 16px; border-radius: 999px; background: var(--mint); color: var(--ink); margin-bottom: 18px; text-transform: uppercase;
}
.card.c-yellow .tag { background: var(--yellow); color: var(--ink); }
.card.c-blue .tag { background: var(--blue); color: #fff; }
.card.c-pink .tag { background: var(--pink); color: var(--ink); }
.card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.card p { color: var(--ink-soft); font-size: 0.92rem; }
.card ul { list-style: none; margin-top: 6px; }
.card ul li { padding-left: 1.3em; position: relative; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 7px; }
.card ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.card .more { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-weight: 700; font-size: 0.86rem; }
.card .more .arr { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; transition: background 0.3s, color 0.3s, transform 0.3s; }
.card:hover .more .arr { background: var(--ink); color: #fff; transform: translateX(4px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  position: relative; overflow: hidden; isolation: isolate; transition: color 0.35s var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; transform: translateY(101%); transition: transform 0.45s var(--ease); }
.btn-dark { background: var(--mint); color: var(--ink); }
.btn-dark::before { background: var(--yellow); }
.btn-dark:hover::before { transform: none; }
.btn-line { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-line::before { background: var(--pink); }
.btn-line:hover { color: var(--ink); }
.btn-line:hover::before { transform: none; }

/* ---------- feature rows ---------- */
.feature {
  display: flex; gap: 40px; align-items: flex-start; padding: 44px 0; border-top: 1px solid var(--line);
}
.feature:last-of-type { border-bottom: 1px solid var(--line); }
.feature .num { flex: 0 0 auto; font-family: "Outfit", sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--green); }
.feature h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); max-width: 760px; }
.feature a { color: var(--green-deep); font-weight: 700; border-bottom: 1px solid currentColor; }
@media (max-width: 640px) { .feature { flex-direction: column; gap: 12px; } }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding: 26vh 0 10vh; position: relative; overflow: hidden; }
.page-hero .en-big { font-size: clamp(2.6rem, 9vw, 6.8rem); font-weight: 800; line-height: 1.02; text-transform: uppercase; }
.page-hero .jp-title { margin-top: 18px; font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 700; display: flex; align-items: center; gap: 14px; }
.page-hero .jp-title::before { content: ""; width: 34px; height: 3px; border-radius: 2px; background: var(--pink); }
.page-hero .lead { margin-top: 16px; color: var(--ink-soft); max-width: 680px; }
.page-hero .bc { position: absolute; top: 14vh; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--ink-soft); text-transform: uppercase; }
.page-hero .deco { position: absolute; right: -6vw; top: 8vh; width: 34vw; opacity: 0.07; pointer-events: none; }

/* ---------- table ---------- */
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
.spec-table th, .spec-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.93rem; vertical-align: top; }
.spec-table th { background: #f1f1e9; width: 30%; font-weight: 700; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* ---------- topics ---------- */
.topic { display: flex; gap: 34px; padding: 34px 0; border-top: 1px solid var(--line); align-items: baseline; }
.topic:last-of-type { border-bottom: 1px solid var(--line); }
.topic .date { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--green-deep); flex: 0 0 96px; }
.topic h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.topic p { color: var(--ink-soft); font-size: 0.92rem; }
.topic a { color: var(--green-deep); font-weight: 700; border-bottom: 1px solid currentColor; }
@media (max-width: 640px) { .topic { flex-direction: column; gap: 6px; } }

/* ---------- contact ---------- */
.contact-band { background: linear-gradient(135deg, var(--mint), #c9e9e0); color: var(--ink); padding: 15vh 0; position: relative; overflow: hidden; }
.contact-band .en-big { font-size: clamp(3rem, 11vw, 8.5rem); font-weight: 800; line-height: 1; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.contact-band .jp { margin-top: 20px; font-size: 1.05rem; color: #35544c; }
.contact-band .channels { margin-top: 5vh; display: flex; gap: 18px; flex-wrap: wrap; }
.contact-band .channels a {
  background: #fff; color: var(--ink); font-weight: 700; padding: 18px 36px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px; transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.contact-band .channels a:hover { transform: translateY(-4px) scale(1.03); background: var(--yellow); }
.contact-band .shape-c { opacity: 0.35; }
.contact-band .shape-c { position: absolute; right: -8vw; bottom: -10vh; width: 40vw; opacity: 0.12; pointer-events: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--blue); color: #272c3a; padding: 0 0 40px; font-size: 0.85rem; }
.site-footer .top { border-top: 1px solid rgba(0,0,0,0.14); padding-top: 48px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.site-footer .brand-f { display: flex; align-items: center; gap: 12px; color: #1c212e; font-weight: 700; font-size: 1.05rem; }
.site-footer .brand-f img { width: 40px; }
.site-footer nav ul { list-style: none; display: grid; grid-template-columns: repeat(2, auto); gap: 8px 34px; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { margin-top: 44px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.72rem; letter-spacing: 0.12em; color: #333a4d; }
.pagetop { position: fixed; right: 4vw; bottom: 5vh; z-index: 150; width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.pagetop.is-show { opacity: 1; pointer-events: auto; }
.pagetop:hover { transform: translateY(-4px); }

/* ---------- photos ---------- */
.hero-photo { position: absolute; right: 4vw; top: 50%; transform: translateY(-50%); width: min(30vw, 460px); z-index: 2; }
.hero-photo img { width: 100%; border-radius: 32px 110px 32px 32px; border: 6px solid #fff; box-shadow: 0 24px 60px rgba(23, 32, 26, 0.12); }
@media (max-width: 940px) { .hero-photo { position: static; transform: none; width: min(86vw, 480px); margin: 5vh auto 0; } }
.page-visual { margin-top: -3vh; padding-bottom: 7vh; }
.page-visual img { width: 100%; border-radius: 24px; aspect-ratio: 21 / 9; object-fit: cover; border: 1px solid rgba(0,0,0,0.05); }
@media (max-width: 640px) { .page-visual img { aspect-ratio: 16 / 10; } }
.card-img { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; margin-bottom: 18px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(-0.5deg); }
}
.ph { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid rgba(0,0,0,0.05); animation: floaty 6.5s ease-in-out infinite; }
.media-grid figure:nth-child(2n) .ph, .grid > div:nth-child(2n) .ph { animation-duration: 7.6s; animation-delay: 0.9s; }
.card-img { animation: floaty 8s ease-in-out infinite; }
.grid > .card:nth-child(2) .card-img { animation-delay: 1.1s; }
.grid > .card:nth-child(3) .card-img { animation-delay: 2.2s; }
html.reduced .ph, html.reduced .card-img { animation: none; }
@media (prefers-reduced-motion: reduce) { .ph, .card-img { animation: none; } }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ph:hover img { transform: scale(1.03); }
.ph.contain { display: grid; place-items: center; padding: 26px; }
.ph.contain img { object-fit: contain; max-height: 340px; width: auto; }
.feature .fig { flex: 0 0 240px; }
.feature .fig .ph { aspect-ratio: 4 / 3; }
.feature .fig .ph.contain { aspect-ratio: auto; }
.feature .fig .ph.contain img { max-height: 200px; }
@media (max-width: 640px) { .feature .fig { flex: none; width: 100%; } }
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.media-grid figure { margin: 0; }
.media-grid figcaption { margin-top: 12px; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.media-grid figcaption::before { content: ""; width: 20px; height: 3px; border-radius: 2px; background: var(--mint); }
.media-grid figcaption small { display: block; font-weight: 400; color: var(--ink-soft); }
@media (max-width: 760px) { .media-grid { grid-template-columns: 1fr; } }

/* ---------- statement band ---------- */
.statement { padding: 14vh 0; text-align: center; position: relative; overflow: hidden; }
.statement .line { font-size: clamp(1.7rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.8; letter-spacing: 0.04em; }
.statement .line .raku { background: linear-gradient(transparent 58%, var(--mint) 58%); padding: 0 0.08em; }
.statement .line .tanoshiku { background: linear-gradient(transparent 58%, var(--yellow) 58%); padding: 0 0.08em; }
.statement .note { margin-top: 3.5vh; color: var(--ink-soft); font-size: clamp(0.85rem, 1.3vw, 1rem); }

/* ---------- news ticker (実ニュース) ---------- */
.news-bar { display: flex; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; }
.news-bar .label { flex: 0 0 auto; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 22px; background: var(--ink); color: #fff; }
.news-bar .flow { flex: 1; overflow: hidden; white-space: nowrap; }
.news-bar .flow-track { display: inline-block; padding-left: 100%; animation: newsflow 30s linear infinite; }
.news-bar .flow-track:hover { animation-play-state: paused; }
.news-bar a { font-size: 0.86rem; font-weight: 500; margin-right: 4em; }
.news-bar a .d { font-family: "Outfit", sans-serif; font-weight: 600; color: var(--green-deep); margin-right: 1em; font-size: 0.78rem; }
.news-bar a:hover { color: var(--green-deep); }
@keyframes newsflow { from { transform: translateX(0); } to { transform: translateX(-100%); } }
html.reduced .news-bar .flow-track { animation: none; padding-left: 0; }

/* ---------- Leale town map ---------- */
.town-viewport { position: relative; overflow: hidden; width: 100%; height: min(84vh, 880px); cursor: grab; background: #f4f0e6; touch-action: none; user-select: none; -webkit-user-select: none; }
.town-viewport.grabbing { cursor: grabbing; }
.town-pan { position: absolute; top: 0; left: 0; width: max(1900px, 115vw); will-change: transform; }
.town-base { display: block; width: 100%; height: auto; pointer-events: none; }
@media (max-width: 760px) { .town-pan { width: max(1250px, 160vw); } .town-viewport { height: 74vh; } }
.t-label { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.96); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 8px 24px rgba(23,32,26,0.10); padding: 12px 16px 12px 20px; border-radius: 999px; white-space: nowrap; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); animation: labelBob 5s ease-in-out infinite; animation-delay: var(--d, 0s); }
.t-label:hover { transform: translate(-50%, -50%) scale(1.07); box-shadow: 0 16px 36px rgba(23,32,26,0.18); z-index: 5; }
.t-label .t-name { font-size: 1rem; font-weight: 800; color: var(--green-deep); }
.t-label .t-sub { font-size: 0.66rem; color: var(--ink-soft); }
.t-label .t-plus { width: 26px; height: 26px; border-radius: 50%; background: var(--mint); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-size: 1rem; transition: transform 0.35s var(--ease); }
.t-label:hover .t-plus { transform: rotate(90deg); }
@media (max-width: 760px) { .t-label .t-sub { display: none; } .t-label { padding: 10px 12px 10px 16px; } .t-label .t-name { font-size: 0.9rem; } }
@keyframes labelBob { 0%, 100% { margin-top: 0; } 50% { margin-top: -7px; } }
html.reduced .t-label { animation: none; }
.t-mini { position: absolute; transform: translate(-50%, -50%); font-size: 0.68rem; color: #a4a894; background: rgba(255,255,255,0.75); padding: 4px 12px; border-radius: 999px; pointer-events: none; white-space: nowrap; }
.town-hint { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.92); border: 1px solid var(--line); padding: 9px 20px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); pointer-events: none; transition: opacity 0.6s; z-index: 6; }
.town-hint .en { font-family: "Outfit", sans-serif; font-size: 0.66rem; letter-spacing: 0.18em; background: var(--ink); color: #fff; padding: 3px 10px; border-radius: 999px; }
.town-viewport.explored .town-hint { opacity: 0; }

/* town modal */
.town-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.town-modal[hidden] { display: none; }
.tm-backdrop { position: absolute; inset: 0; background: rgba(23,32,26,0.45); backdrop-filter: blur(3px); }
.tm-card { position: relative; background: var(--bg, #f7f6f1); border-radius: 24px; padding: 42px 40px 36px; max-width: 480px; width: 100%; box-shadow: 0 30px 80px rgba(23,32,26,0.25); animation: tmIn 0.45s var(--ease); }
@keyframes tmIn { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: none; } }
.tm-card .tm-cat { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; padding: 5px 14px; border-radius: 999px; background: var(--mint); margin-bottom: 14px; }
.tm-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.tm-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.9; margin-bottom: 26px; }
.tm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tm-close { position: absolute; top: 14px; right: 18px; font-size: 1.5rem; line-height: 1; color: var(--ink-soft); background: none; border: none; cursor: pointer; padding: 6px; }
.tm-close:hover { color: var(--ink); }
.town .spot { cursor: pointer; }
.town .spot .label { transition: transform 0.35s var(--ease); transform-box: fill-box; transform-origin: center; }
.town .spot:hover .label { transform: scale(1.08); }
.town .spot:hover { filter: drop-shadow(0 10px 18px rgba(23,32,26,0.14)); }
.town text { font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; }
.town-note { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: 0.88rem; }
html.reduced .town .walkers { display: none; }

/* ---------- Leale now board ---------- */
.now-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .now-board { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .now-board { grid-template-columns: 1fr; } }
.now-tile { display: block; background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; padding: 22px 22px 20px; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.now-tile:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(23,32,26,0.08); }
.now-tile .status { display: inline-flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px 4px 9px; border-radius: 999px; background: #eef5f2; color: var(--green-deep); margin-bottom: 14px; }
.now-tile .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: heartbeat 2.2s ease-in-out infinite; }
.now-tile.t-dev .status { background: #fbf3ee; color: #a06341; }
.now-tile.t-dev .status::before { background: var(--pink); }
.now-tile.t-daily .status { background: #faf6e2; color: #8a7a1e; }
.now-tile.t-daily .status::before { background: #e5cf3a; }
.now-tile h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.now-tile p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.7; }
.now-tile .en-tag { position: absolute; top: 20px; right: 20px; font-family: "Outfit", sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; color: rgba(23,32,26,0.28); text-transform: uppercase; }
@keyframes heartbeat { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }
html.reduced .now-tile .status::before { animation: none; }

/* ---------- kumaneko (飲食事業) ---------- */
.kumaneko-band { position: relative; overflow: hidden; }
.kumaneko-band .k-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.kumaneko-band .k-tags span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; padding: 7px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.k-loop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: kstep; }
@media (max-width: 880px) { .k-loop { grid-template-columns: 1fr; } }
.k-loop .step { background: #fff; border-radius: 20px; padding: 30px 28px; border: 1px solid rgba(0,0,0,0.04); position: relative; }
.k-loop .step::before { counter-increment: kstep; content: "0" counter(kstep); font-family: "Outfit", sans-serif; font-weight: 800; font-size: 2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.3px var(--green); display: block; margin-bottom: 14px; }
.k-loop .step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.k-loop .step p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- blog ---------- */
.post-list { display: grid; gap: 0; }
.post-card { display: flex; gap: 34px; padding: 36px 0; border-top: 1px solid var(--line); align-items: baseline; }
.post-card:last-of-type { border-bottom: 1px solid var(--line); }
.post-card .date { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--green-deep); flex: 0 0 110px; }
.post-card .cat { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; padding: 3px 12px; border-radius: 999px; background: var(--mint); margin-left: 12px; vertical-align: middle; text-transform: uppercase; }
.post-card h2, .post-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--green-deep); }
.post-card p { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 640px) { .post-card { flex-direction: column; gap: 6px; } }
.post-banner { margin: 0 0 5vh; }
.post-banner img { width: 100%; border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); }
.post-card .thumb { flex: 0 0 200px; }
.post-card .thumb img { width: 100%; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }
@media (max-width: 640px) { .post-card .thumb { flex: none; width: 100%; max-width: 320px; } }
.post-body { max-width: 760px; }
.post-body .post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 5vh; font-family: "Outfit", sans-serif; font-size: 0.85rem; color: var(--green-deep); font-weight: 600; }
.post-body h2 { font-size: 1.35rem; font-weight: 800; margin: 2.4em 0 0.8em; padding-left: 16px; border-left: 4px solid var(--mint); line-height: 1.5; }
.post-body h3 { font-size: 1.1rem; font-weight: 700; margin: 2em 0 0.6em; }
.post-body p { margin-bottom: 1.4em; color: #2c3630; }
.post-body ul, .post-body ol { margin: 0 0 1.6em 1.4em; color: #2c3630; }
.post-body li { margin-bottom: 0.5em; }
.post-body strong { background: linear-gradient(transparent 62%, var(--yellow) 62%); }
.post-body a { color: var(--green-deep); font-weight: 700; border-bottom: 1px solid currentColor; }
.post-body blockquote { border-left: 3px solid var(--blue); padding: 4px 0 4px 20px; color: var(--ink-soft); margin-bottom: 1.6em; }
.post-nav { margin-top: 8vh; padding-top: 30px; border-top: 1px solid var(--line); }

/* ---------- reveal helpers ---------- */
[data-reveal] { opacity: 0; transform: translateY(44px); }
html.no-js [data-reveal], html.reduced [data-reveal] { opacity: 1; transform: none; }
.split-target .word, .split-target .char { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .marquee .track { animation: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
