/* ============================================================
   Iroha Hero v2 — nagomi-style, fresh class namespace "iroha-hero"
   Loaded AFTER tenri-clone.css. No !important overrides needed
   because class names are unique to this hero.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700;900&family=Zen+Maru+Gothic:wght@500;700;900&family=M+PLUS+Rounded+1c:wght@500;700;800;900&display=swap');

.iroha-hero {
  --iro-pink: #e8537b;
  --iro-pink-soft: #ffd6e1;
  --iro-pink-bg: #fff5f8;
  --iro-yellow: #ffd96b;
  --iro-ink: #2a1820;
  --iro-ink-soft: #6b5560;
  --iro-shadow-sm: 0 6px 18px rgba(232,83,123,.14);
  --iro-shadow-md: 0 20px 52px -14px rgba(232,83,123,.34);
  --iro-ease: cubic-bezier(.2,.8,.2,1);

  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 0 140px;
  min-height: 760px;
  font-family: "Zen Kaku Gothic New", "Zen Maru Gothic", system-ui, sans-serif;
  color: var(--iro-ink);
  background-image:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(255,208,221,.55), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 30%, rgba(255,233,176,.55), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 90%, rgba(206,236,203,.5), transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 95%, rgba(255,208,221,.55), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--iro-pink-bg) 100%);
}
.iroha-hero *,
.iroha-hero *::before,
.iroha-hero *::after { box-sizing: border-box; }
.iroha-hero a { text-decoration: none; color: inherit; }
.iroha-hero ul { list-style: none; margin: 0; padding: 0; }
.iroha-hero img { display: block; max-width: 100%; height: auto; }

/* ============ Background blob shapes ============ */
.iroha-hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.iroha-blob {
  position: absolute;
  opacity: .75;
  filter: blur(1px) drop-shadow(0 14px 28px rgba(232,83,123,.08));
  animation: iroha-blob-drift 18s ease-in-out infinite;
  mix-blend-mode: multiply;
}
.iroha-blob::after {
  /* subtle highlight */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 30% at 35% 30%, rgba(255,255,255,.6), transparent 60%);
  pointer-events: none;
}
.iroha-blob--1 { top:  2%;  left: 20%; width: 170px; animation-delay: -1s;  transform: rotate(12deg); }
.iroha-blob--2 { top:  6%;  right: 18%; width: 200px; animation-delay: -5s;  transform: rotate(-10deg); }
.iroha-blob--3 { top: 32%;  left: 2%;   width: 220px; animation-delay: -9s;  transform: rotate(18deg); }
.iroha-blob--4 { top: 26%;  right: 3%;  width: 240px; animation-delay: -3s;  transform: rotate(-14deg); }
.iroha-blob--5 { bottom: 22%; left: 16%; width: 160px; animation-delay: -7s;  transform: rotate(8deg); }
.iroha-blob--6 { bottom: 16%; right: 14%; width: 180px; animation-delay: -11s; transform: rotate(-6deg); }
.iroha-blob--7 { top: 50%;   left: 44%;  width: 130px; opacity: .4; animation-delay: -13s; transform: rotate(22deg); }
.iroha-blob--8 { bottom: 40%; left: 38%; width: 110px; opacity: .45; animation-delay: -6s; transform: rotate(-16deg); }

@keyframes iroha-blob-drift {
  0%, 100% { translate: 0 0; }
  33%      { translate: 12px -14px; }
  66%      { translate: -10px 10px; }
}

/* ============ Header ============ */
.iroha-hero__header {
  position: relative;
  z-index: 20;
  max-width: none;
  margin: 0;
  padding: 0 clamp(12px, 1.5vw, 28px) 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.iroha-hero__logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: -24px;
  padding-left: 0;
  animation: iroha-logo-in .9s var(--iro-ease) both;
}
.iroha-hero__logo-chara {
  width: clamp(64px, 7vw, 110px);
  height: auto;
  animation: iroha-bob 4.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(232,83,123,.22));
  pointer-events: none;
}
.iroha-hero__logo-chara--left  { animation-delay: -0.5s; margin-left: -8px; }
.iroha-hero__logo-chara--right { animation-delay: -2s; }

.iroha-hero__logo {
  flex: 0 0 auto;
  display: block;
  width: clamp(240px, 24vw, 360px);
  position: relative;
}
.iroha-hero__logo-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}
.iroha-hero__logo-image {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  height: auto;
  display: block;
  pointer-events: none;
}
.iroha-hero__logo .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.iroha-logo-cloud path {
  transition: transform .6s var(--iro-ease);
}
.iroha-hero__logo:hover .iroha-logo-cloud path {
  transform: scale(1.02);
  transform-origin: center;
}
.iroha-logo-star {
  transform-box: fill-box;
  transform-origin: center;
  animation: iroha-star-twinkle 2.2s ease-in-out infinite;
}
.iroha-logo-star--2 { animation-delay: .4s; }
.iroha-logo-star--3 { animation-delay: .8s; }
.iroha-logo-brand {
  font-variation-settings: "wght" 900;
  paint-order: stroke fill;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-linejoin: round;
}
.iroha-logo-caption {
  paint-order: stroke fill;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linejoin: round;
}
@keyframes iroha-star-twinkle {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.15); }
}
.iroha-hero__nav {
  flex: 0 1 auto;
  animation: iroha-rise .9s var(--iro-ease) .1s both;
  position: relative;
}
.iroha-hero__nav::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(120deg,
    rgba(255,179,200,.6) 0%,
    rgba(255,217,107,.5) 30%,
    rgba(196,230,245,.5) 60%,
    rgba(255,179,200,.6) 100%);
  background-size: 200% 100%;
  z-index: 0;
  animation: iroha-nav-sheen 8s ease-in-out infinite;
  filter: blur(2px);
}
.iroha-hero__nav ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,249,251,.94) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 7px 8px 7px 10px;
  box-shadow:
    0 14px 40px -14px rgba(232,83,123,.35),
    0 2px 0 rgba(255,255,255,.9) inset,
    0 -1px 0 rgba(232,83,123,.05) inset;
}
.iroha-hero__nav ul li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
.iroha-hero__nav ul li::marker { content: none; }
.iroha-hero__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--iro-ink);
  border-radius: 999px;
  transition: color .25s var(--iro-ease), background .25s var(--iro-ease), transform .25s var(--iro-ease);
}
.iroha-hero__nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9fb8, var(--iro-pink));
  box-shadow: 0 0 0 3px rgba(232,83,123,.12);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .25s var(--iro-ease), transform .25s var(--iro-ease);
}
.iroha-hero__nav a:hover,
.iroha-hero__nav a:focus-visible {
  background: linear-gradient(180deg, #fff5f8, #ffe8ef);
  color: var(--iro-pink);
  transform: translateY(-1px);
}
.iroha-hero__nav a:hover .iroha-hero__nav-dot,
.iroha-hero__nav a:focus-visible .iroha-hero__nav-dot {
  opacity: 1;
  transform: scale(1);
}
.iroha-hero__nav-cta { margin-left: 4px; }
.iroha-hero__nav-cta a {
  padding: 13px 24px;
  color: #fff;
  background:
    linear-gradient(135deg, #ff7fa1 0%, var(--iro-pink) 55%, #cf3f66 100%);
  box-shadow:
    0 10px 22px -8px rgba(232,83,123,.55),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -6px 12px rgba(0,0,0,.08);
  font-weight: 800;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
}
.iroha-hero__nav-cta a::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: iroha-cta-shine 4.5s ease-in-out infinite;
}
.iroha-hero__nav-cta a svg {
  width: 16px;
  height: 16px;
  fill: #ffd96b;
  stroke: #ffd96b;
  flex-shrink: 0;
}
.iroha-hero__nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px -10px rgba(232,83,123,.65),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -6px 12px rgba(0,0,0,.1);
  color: #fff;
  background:
    linear-gradient(135deg, #ff7fa1 0%, var(--iro-pink) 55%, #cf3f66 100%);
}
@keyframes iroha-nav-sheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes iroha-cta-shine {
  0%, 70% { left: -60%; }
  100%    { left: 130%; }
}

/* ============ Side vertical contact tab (CSS-only, stable) ============ */
.iroha-side-tab {
  position: absolute !important;
  top: 290px !important;
  left: 20px !important;
  z-index: 15 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  min-width: 48px !important;
  min-height: 220px !important;
  padding: 26px 6px !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  letter-spacing: .12em !important;
  background: linear-gradient(180deg, #ff7fa1 0%, #e8537b 55%, #c93c61 100%) !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  border-radius: 14px !important;
  box-shadow:
    0 18px 38px -10px rgba(232,83,123,.55),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -6px 12px rgba(0,0,0,.08) !important;
  animation: iroha-slide-left 1s var(--iro-ease) .3s both;
  transition: transform .3s var(--iro-ease), box-shadow .3s var(--iro-ease);
  overflow: visible !important;
  writing-mode: horizontal-tb !important;
}
.iroha-side-tab:hover {
  transform: translateX(4px);
  box-shadow:
    0 22px 44px -12px rgba(232,83,123,.65),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -6px 12px rgba(0,0,0,.1);
  color: #fff;
}
.iroha-side-tab__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--iro-pink);
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,.18), inset 0 -2px 4px rgba(232,83,123,.18);
}
.iroha-side-tab__text {
  flex: 0 0 auto !important;
  display: inline-block !important;
  writing-mode: vertical-rl !important;
  -webkit-writing-mode: vertical-rl !important;
  text-orientation: upright !important;
  -webkit-text-orientation: upright !important;
  line-height: 1.9 !important;
  font-feature-settings: "palt";
  letter-spacing: .18em !important;
  max-height: none !important;
  height: auto !important;
  color: #fff !important;
}
.iroha-side-tab__arrow {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  animation: iroha-arrow-bob 1.8s ease-in-out infinite;
}
@keyframes iroha-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ============ Bottom corner characters (larger, safe zones) ============ */
.iroha-hero__chara {
  position: absolute;
  z-index: 6;
  width: clamp(110px, 13vw, 190px);
  height: auto;
  object-fit: contain;
  animation: iroha-bob 6s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(232,83,123,.25));
  pointer-events: none;
}
.iroha-hero__chara--bl {
  left: 3%;
  bottom: 150px;
  animation-delay: -3.5s;
}
.iroha-hero__chara--br {
  right: 3%;
  bottom: 170px;
  width: clamp(120px, 14vw, 210px);
  animation-delay: -1s;
}
.iroha-hero__chara--apple {
  position: absolute;
  z-index: 6;
  top: 26%;
  right: 2.5%;
  width: clamp(90px, 10vw, 150px);
  height: auto;
  animation: iroha-apple-pop 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 22px rgba(232,83,123,.28));
  transform-origin: 50% 80%;
  pointer-events: none;
}

/* ============ Tulip character (near top-right nav) ============ */
.iroha-hero__chara--tulip {
  position: absolute;
  z-index: 7;
  top: 120px;
  right: calc(5% + clamp(110px, 12vw, 170px));
  width: clamp(110px, 12vw, 160px);
  height: auto;
  animation: iroha-tulip-sway 4.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 22px rgba(142,84,200,.3));
  transform-origin: 50% 90%;
  pointer-events: none;
}
@keyframes iroha-tulip-sway {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(5deg)  translateY(-6px); }
}

/* ============ Pumpkin character (left empty area below side-tab) ============ */
.iroha-hero__chara--pumpkin {
  position: absolute;
  z-index: 6;
  top: 48%;
  left: 5%;
  width: clamp(110px, 12vw, 160px);
  height: auto;
  animation: iroha-bob 5.5s ease-in-out infinite -2s;
  filter: drop-shadow(0 14px 20px rgba(255,140,60,.28));
  transform-origin: 50% 80%;
  pointer-events: none;
}
@keyframes iroha-apple-pop {
  0%, 100% { transform: translateY(0) rotate(-4deg) scale(1); }
  50%      { transform: translateY(-8px) rotate(4deg) scale(1.03); }
}

/* Wave-divider decorative chars — desktop hidden by default, shown on mobile */
body .iroha-hero .iroha-hero__wavechara { display: none !important; }

/* ============ Main visual — full photo, no crop ============ */
.iroha-hero__visual {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto 0;
  animation: iroha-rise-scale 1.1s var(--iro-ease) .2s both;
}
.iroha-hero__photo {
  position: relative;
  border-radius: 58% 42% 56% 44% / 50% 56% 44% 50%;
  overflow: hidden;
  box-shadow:
    0 50px 100px -20px rgba(232,83,123,.38),
    0 0 0 8px #fff,
    0 0 0 10px #ffd6e1,
    0 0 0 18px #fff,
    0 0 0 20px rgba(232,83,123,.35);
  animation: iroha-blob-morph 20s ease-in-out infinite;
  background: linear-gradient(135deg, #ffe4ec, #fff5f8);
  aspect-ratio: 16 / 9;
}
.iroha-hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 30%, rgba(255,245,248,.6) 100%);
  z-index: 2;
}
.iroha-hero__photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 2px dashed rgba(232,83,123,.35);
  z-index: 3;
  pointer-events: none;
}
/* Slideshow container */
.iroha-hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.iroha-hero__slide {
  position: absolute;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center 30%;
}
.iroha-hero__slide--static {
  opacity: 1;
  animation: none;
}

/* ===== Fade slideshow (3 slides, 15s cycle, 5s per slide) ===== */
.iroha-hero__slide--fade {
  opacity: 0;
  animation: irohaHeroFade 15s ease-in-out infinite;
  will-change: opacity;
}
.iroha-hero__slide--1 { animation-delay: 0s; }
.iroha-hero__slide--2 { animation-delay: 5s; }
.iroha-hero__slide--3 { animation-delay: 10s; }
@keyframes irohaHeroFade {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  33%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .iroha-hero__slide--fade { animation: none; opacity: 1; }
  .iroha-hero__slide--fade.iroha-hero__slide--2,
  .iroha-hero__slide--fade.iroha-hero__slide--3 { opacity: 0; }
}

/* ============ Hero copy overlay ============ */
.iroha-hero__copy {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  width: 86%;
  max-width: 820px;
  text-align: center;
  z-index: 12;
  pointer-events: none;
}
.iroha-hero__copy-line {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  font-family: "Zen Kaku Gothic New", "Zen Maru Gothic", sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #2a1820;
  text-shadow:
    0 0 1px #fff,
    0 0 2px #fff,
    0 0 6px rgba(255,255,255,.95),
    0 0 12px rgba(255,255,255,.85),
    0 2px 4px rgba(255,255,255,.9),
    0 -1px 2px rgba(255,255,255,.9);
  opacity: 0;
  transform: translateY(20px);
  animation: iroha-rise .9s var(--iro-ease) forwards;
}
.iroha-hero__copy-line strong,
.iroha-hero__copy-line b { color: var(--iro-pink); }
.iroha-hero__copy-line:nth-child(1) { animation-delay: .55s; }
.iroha-hero__copy-line:nth-child(2) { animation-delay: .75s; }
.iroha-hero__copy-line:nth-child(3) { animation-delay: .95s; }
.iroha-hero__copy em {
  position: relative;
  font-style: normal;
  font-weight: 900;
  color: var(--iro-pink);
  padding: 0 8px;
  z-index: 1;
  text-shadow:
    0 0 2px #fff,
    0 0 6px rgba(255,255,255,.9),
    0 2px 4px rgba(255,255,255,.9);
}
.iroha-hero__copy em::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 12px;
  background: var(--iro-yellow);
  border-radius: 12px;
  z-index: -1;
  transform: skewX(-6deg);
  opacity: .95;
}

/* ============ Wave section divider ============ */
.iroha-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(80px, 10vw, 150px);
  z-index: 4;
  pointer-events: none;
  display: block;
}

/* ============ Floating contact ============ */
.iroha-hero__fab,
a.iroha-hero__fab {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 100 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  padding: 14px 24px !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: .05em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  background: linear-gradient(135deg, #ff6f96, var(--iro-pink)) !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 36px -8px rgba(232,83,123,.55) !important;
  transition: transform .25s var(--iro-ease), box-shadow .25s var(--iro-ease);
  text-decoration: none !important;
}
.iroha-hero__fab > * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: nowrap !important;
}
.iroha-hero__fab span:first-child {
  font-size: 18px !important;
  line-height: 1 !important;
}
.iroha-hero__fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 44px -10px rgba(232,83,123,.65) !important;
  color: #fff !important;
}

/* ============ Animations ============ */
@keyframes iroha-rise       { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iroha-rise-scale { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes iroha-slide-left { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes iroha-logo-in    { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iroha-bob        { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes iroha-blob-morph {
  0%, 100% { border-radius: 56% 44% 58% 42% / 50% 54% 46% 50%; }
  50%      { border-radius: 48% 52% 44% 56% / 56% 48% 52% 44%; }
}

/* ============ Focus visible ============ */
.iroha-hero a:focus-visible {
  outline: 3px solid var(--iro-pink);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .iroha-hero__visual { max-width: 88%; }
}
@media (max-width: 900px) {
  .iroha-hero { padding: 16px 0 90px; min-height: auto; }
  .iroha-hero__header { flex-direction: column; align-items: center; gap: 14px; }
  .iroha-hero__logo { width: 220px; }
  .iroha-hero__logo-chara { width: 60px; }
  .iroha-hero__nav ul {
    padding: 6px 6px 6px 14px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 26px;
  }
  .iroha-hero__nav a { padding: 8px 14px; font-size: 13px; }
  .iroha-hero__nav-cta a { padding: 10px 18px; }
  .iroha-hero__visual { margin-top: 24px; max-width: 92%; }
  .iroha-hero__photo { aspect-ratio: 4 / 3; }
  .iroha-side-tab { top: auto; bottom: 120px; width: 46px; padding: 14px 8px 12px; font-size: 13px; }
  .iroha-side-tab__icon { width: 28px; height: 28px; }
  .iroha-side-tab__icon svg { width: 15px; height: 15px; }
  .iroha-hero__chara--bl { left: 1%; bottom: 100px; }
  .iroha-hero__chara--br { right: 1%; bottom: 90px; }
  .iroha-hero__chara--apple { display: none; }
  .iroha-hero__chara--tulip { display: none; }
  .iroha-hero__chara--pumpkin { display: none; }
}
@media (max-width: 640px) {
  .iroha-hero__copy-line { font-size: clamp(15px, 4.6vw, 20px); }
  .iroha-side-tab { display: none; }
  .iroha-hero__fab { padding: 10px 16px; font-size: 12px; }
  .iroha-hero__chara { width: 76px !important; }
  .iroha-hero__chara--br { width: 86px !important; }
  .iroha-hero__logo-chara { width: 48px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .iroha-hero *,
  .iroha-hero *::before,
  .iroha-hero *::after { animation: none !important; transition: none !important; }
  .iroha-hero__copy-line { opacity: 1; transform: none; }
}

/* ================================================================
   ABOUT SECTION (iroha-about) — fresh namespace, overrides tc-*
   ================================================================ */
.iroha-about {
  position: relative;
  padding: 64px 0 100px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}
.iroha-about *,
.iroha-about *::before,
.iroha-about *::after {
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: auto !important;
}

/* ----- Bottom wave divider into next section ----- */
.iroha-about__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(50px, 6vw, 80px);
  display: block;
  pointer-events: none;
  z-index: 3;
}

/* ----- Top confetti dots ----- */
.iroha-about__confetti {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 50%, 560px);
  height: 40px;
  pointer-events: none;
  z-index: 1;
}
.iroha-about__dot {
  position: absolute;
  border-radius: 50%;
  animation: iroha-confetti-bob 4.5s ease-in-out infinite;
}
.iroha-about__dot--1 { left:  5%; top: 18px; width: 10px; height: 10px; background: #ffb347; animation-delay:  0s; }
.iroha-about__dot--2 { left: 18%; top:  4px; width:  8px; height:  8px; background: #67b6e5; animation-delay: -.6s; }
.iroha-about__dot--3 { left: 30%; top: 30px; width: 12px; height: 12px; background: #ff8aa4; animation-delay: -1.2s; }
.iroha-about__dot--4 { left: 42%; top:  8px; width:  9px; height:  9px; background: #6fb574; animation-delay: -1.8s; }
.iroha-about__dot--5 { left: 56%; top: 24px; width: 11px; height: 11px; background: #b68be3; animation-delay: -2.4s; }
.iroha-about__dot--6 { left: 70%; top:  2px; width:  8px; height:  8px; background: #ffd84d; animation-delay: -3.0s; }
.iroha-about__dot--7 { left: 82%; top: 28px; width: 10px; height: 10px; background: #ff8aa4; animation-delay: -3.6s; }
.iroha-about__dot--8 { left: 94%; top: 12px; width:  9px; height:  9px; background: #67b6e5; animation-delay: -4.2s; }
@keyframes iroha-confetti-bob {
  0%, 100% { transform: translateY(0) scale(1); opacity: .9; }
  50%      { transform: translateY(-6px) scale(1.15); opacity: 1; }
}
.iroha-about__bg {
  display: none !important;
}

/* ----- Scattered kid illustrations (hugging content edges) ----- */
.iroha-about__kid {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-about-kid-bob 4.5s ease-in-out infinite;
}
.iroha-about__kid--tl {
  top: 50%;
  left: 1.5%;
  width: clamp(110px, 11vw, 160px);
  transform: translateY(-50%);
  --rot: -4deg;
  animation-delay: 0s;
}
.iroha-about__kid--tr {
  top: 50%;
  right: 1.5%;
  width: clamp(110px, 11vw, 160px);
  transform: translateY(-50%);
  --rot: 4deg;
  animation-delay: -2s;
}
@keyframes iroha-about-kid-bob {
  0%, 100% { transform: translateY(-50%) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(calc(-50% - 14px)) rotate(calc(var(--rot, 0deg) + 2deg)); }
}
.iroha-about__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: multiply;
  opacity: .35;
}
.iroha-about__blob--1 {
  width: 420px; height: 420px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, #ffc9d7 0%, transparent 70%);
  animation: iroha-about-drift 16s ease-in-out infinite;
}
.iroha-about__blob--2 {
  width: 380px; height: 380px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, #fde3b8 0%, transparent 70%);
  animation: iroha-about-drift 19s ease-in-out -6s infinite reverse;
}
.iroha-about__blob--3 {
  width: 340px; height: 340px;
  bottom: -110px; left: 35%;
  background: radial-gradient(circle, #d5f0d7 0%, transparent 70%);
  animation: iroha-about-drift 22s ease-in-out -3s infinite;
}
@keyframes iroha-about-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}
.iroha-about__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 83, 123, .08) 1.2px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 35%, transparent 75%);
  opacity: .6;
}

.iroha-about__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* New 1-column horizontal layout */
.iroha-about .ir-sec-head {
  text-align: center;
  margin-bottom: 4px;
}
.iroha-about .ir-sec-en {
  display: block;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: .06em;
  color: #2a1a22;
}
.iroha-about .ir-sec-ja {
  margin: 4px 0 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(11px, .85vw, 13px);
  letter-spacing: .26em;
  color: #6b5158;
}
.iroha-about .ir-about-catch {
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
  font-size: clamp(16px, 1.7vw, 21px);
  color: #c8375d;
  font-weight: 700;
  line-height: 1.5 !important;
  letter-spacing: .03em;
  text-align: center;
  margin: 0 0 14px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
}
.iroha-about .ir-sec-about-body {
  user-select: text !important;
  -webkit-user-select: text !important;
  cursor: text;
  pointer-events: auto;
}
.iroha-about .ir-sec-about-body p {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: .04em;
  color: #2a1a22;
  font-weight: 700;
  margin: 0;
  text-align: center;
  user-select: text !important;
  -webkit-user-select: text !important;
  cursor: text;
  white-space: nowrap;
}
.iroha-about .ir-sec-about-body p:last-child { margin-bottom: 0; }

/* ----- Layout (2 column: catch / content) ----- */
.iroha-about__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: 320px;
}

/* ----- Left: vertical large heading ----- */
.iroha-about__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.iroha-about__catch-main {
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 2.2;
  color: #2a1a22;
  margin: 0;
  letter-spacing: .15em;
  writing-mode: vertical-rl !important;
  -webkit-writing-mode: vertical-rl !important;
  text-orientation: upright !important;
  -webkit-text-orientation: upright !important;
}

/* ----- Right: content ----- */
.iroha-about__content {
  position: relative;
  max-width: 700px;
}
.iroha-about__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}
.iroha-about__title-en {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Nunito", "Quicksand", sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: .04em;
  color: #2a1a22;
  white-space: nowrap;
}
.iroha-about__title-jp {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(11px, .95vw, 13px);
  letter-spacing: .28em;
  color: #6b5158;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0e0e3;
  white-space: nowrap;
}
.iroha-about__body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.95;
  color: #3f2a31;
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: normal;
}
.iroha-about__body:last-child { margin-bottom: 0; }
.iroha-about__chip {
  display: inline-block;
  padding: 3px 13px;
  margin: 0 3px;
  background: linear-gradient(135deg, #ffe0e8, #ffd2dd);
  color: #c63e63;
  font-weight: 800;
  font-size: .9em;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(232, 83, 123, .18);
  border: 1px solid rgba(232, 83, 123, .25);
}
.iroha-about__chip--2 {
  background: linear-gradient(135deg, #fff1d8, #ffe4b3);
  color: #b87219;
  box-shadow: 0 4px 10px rgba(232, 160, 50, .2);
  border-color: rgba(232, 160, 50, .25);
}

/* ----- Pillars (animated banners) ----- */
.iroha-about__pillars {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.iroha-about__pillar {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 22px 22px;
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid #f0d8de;
  box-shadow: 0 14px 30px -18px rgba(232, 83, 123, .25);
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
  animation: iroha-pillar-float 6s ease-in-out infinite;
}
.iroha-about__pillar:nth-child(1) { background: linear-gradient(160deg, #fff 60%, #fff0f4 100%); }
.iroha-about__pillar:nth-child(2) { background: linear-gradient(160deg, #fff 60%, #fff8e8 100%); }
.iroha-about__pillar:nth-child(3) { background: linear-gradient(160deg, #fff 60%, #ecf6ed 100%); }
.iroha-about__pillar:nth-child(1) { animation-delay: 0s; }
.iroha-about__pillar:nth-child(2) { animation-delay: -2s; }
.iroha-about__pillar:nth-child(3) { animation-delay: -4s; }
@keyframes iroha-pillar-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.iroha-about__pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.7) 45%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.7) 55%, transparent 80%);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  animation: iroha-pillar-sheen 5s ease-in-out infinite;
}
.iroha-about__pillar:nth-child(1)::before { animation-delay: 0s; }
.iroha-about__pillar:nth-child(2)::before { animation-delay: 1.4s; }
.iroha-about__pillar:nth-child(3)::before { animation-delay: 2.8s; }
@keyframes iroha-pillar-sheen {
  0%, 60%, 100% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  68%           { opacity: .9; }
  85%           { transform: translateX(120%)  skewX(-18deg); opacity: 0; }
}
.iroha-about__pillar::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ffb3c8, #ffd08a, #a5d9a8, #ffb3c8);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
  animation: iroha-pillar-border 8s linear infinite;
}
.iroha-about__pillar:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 44px -18px rgba(232, 83, 123, .35);
}
.iroha-about__pillar:hover::after {
  opacity: 1;
}
@keyframes iroha-pillar-border {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.iroha-about__pillar-icon {
  grid-row: 1 / 3;
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #ff8aa4, #e8537b);
  border-radius: 50%;
  box-shadow: 0 8px 16px -4px rgba(232, 83, 123, .35);
}
.iroha-about__pillar:nth-child(2) .iroha-about__pillar-icon {
  background: linear-gradient(135deg, #ffdd95, #f0a247);
  box-shadow: 0 8px 16px -4px rgba(232, 160, 50, .35);
}
.iroha-about__pillar:nth-child(3) .iroha-about__pillar-icon {
  background: linear-gradient(135deg, #b9e3bc, #6fb574);
  box-shadow: 0 8px 16px -4px rgba(80, 160, 80, .35);
}
.iroha-about__pillar-num {
  grid-column: 2;
  grid-row: 1;
  font-family: "Fredoka", "Baloo 2", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .1em;
  color: #c63e63;
}
.iroha-about__pillar-title {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  margin-left: 40px;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #2a1820;
}
.iroha-about__pillar-desc {
  grid-column: 2;
  grid-row: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  color: #6b4c55;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .iroha-about__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .iroha-about__pillars {
    grid-template-columns: 1fr;
  }
  .iroha-about__pillar {
    padding: 18px 20px;
  }
  .iroha-about__pillar-title {
    margin-left: 30px;
  }
  .iroha-about__title-en {
    font-size: clamp(40px, 12vw, 60px);
  }
}
@media (max-width: 600px) {
  .iroha-about__catch-line { font-size: 20px; }
  .iroha-about__title-en { font-size: 44px; }
  .iroha-about__body { font-size: 14px; line-height: 1.9; }
}
@media (prefers-reduced-motion: reduce) {
  .iroha-about *,
  .iroha-about *::before,
  .iroha-about *::after { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Match next features section background with the wave divider above */
body .tenri-clone .tc-features,
body section.tc-features {
  background: #fdeef0 !important;
  padding: 80px 0 90px !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}

/* Features section organic blob background (same gradient defs as hero) */
body .tc-features .iroha-feat__blobs {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
.iroha-feat__blobs .iroha-blob {
  position: absolute;
  opacity: .85 !important;
  filter: blur(1px) drop-shadow(0 14px 28px rgba(232,83,123,.12));
  animation: iroha-blob-drift 18s ease-in-out infinite;
  mix-blend-mode: normal !important;
}
/* Randomized placement — different layout from hero */
.iroha-feat-blob--1 { top: 62%; left: 6%;  width: 240px; animation-delay: -2s;  transform: rotate(-22deg); }
.iroha-feat-blob--2 { top: 12%; left: 28%; width: 160px; animation-delay: -13s; transform: rotate(34deg); }
.iroha-feat-blob--3 { top: 70%; left: 46%; width: 190px; animation-delay: -4s;  transform: rotate(-8deg); }
.iroha-feat-blob--4 { top:  4%; right: 8%; width: 260px; animation-delay: -15s; transform: rotate(18deg); }
.iroha-feat-blob--5 { top: 38%; left: 60%; width: 140px; animation-delay: -7s;  transform: rotate(-30deg); }
.iroha-feat-blob--6 { top: 48%; left: 18%; width: 180px; animation-delay: -10s; transform: rotate(6deg); }

/* Ensure content sits above blobs */
body .tc-features .tc-features-head,
body .tc-features .tc-features-wrap { position: relative; z-index: 2; }

/* Features section watercolor characters */
body .tc-features .iroha-feat__char {
  position: absolute !important;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-feat-char-bob 4.8s ease-in-out infinite;
}
body .tc-features .iroha-feat__char--sun {
  bottom: 22px;
  left: 3%;
  top: auto;
  width: clamp(90px, 10vw, 140px);
  --rot: -6deg;
  animation-delay: 0s;
}
body .tc-features .iroha-feat__char--rainbow {
  bottom: 22px;
  left: 2%;
  width: clamp(120px, 13vw, 180px);
  opacity: .92;
  --rot: -4deg;
  animation-delay: -1.4s;
  z-index: 1 !important;
}
body .tc-features .iroha-feat__char--group {
  top: 18px;
  right: 2%;
  bottom: auto;
  width: clamp(140px, 15vw, 200px);
  --rot: 3deg;
  animation-delay: -2.6s;
  z-index: 1 !important;
}
@keyframes iroha-feat-char-bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}
@keyframes iroha-feat-char-bob-center {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-10px) rotate(-2deg); }
}

@media (max-width: 820px) {
  body .tc-features .iroha-feat__char--sun { top: 10px; left: 2%; width: 70px; }
  body .tc-features .iroha-feat__char--rainbow { top: 4px; width: 100px; }
  body .tc-features .iroha-feat__char--group { bottom: 8px; right: 2%; width: 110px; }
}

/* Old Intervention section — hidden (replaced by new iroha-inter) */
body .tenri-clone .tc-inter,
body section.tc-inter { display: none !important; }

/* Intervention section floating characters */
body .iroha-inter .iroha-inter__char {
  position: absolute !important;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-feat-char-bob 4.8s ease-in-out infinite;
}
body .iroha-inter .iroha-inter__char--elephant {
  bottom: 24px;
  left: -8px;
  width: clamp(120px, 13vw, 170px);
  --rot: -4deg;
  animation-delay: -1.2s;
}
@media (max-width: 820px) {
  body .iroha-inter .iroha-inter__char--elephant { bottom: 10px; left: 2%; width: 90px; }
}

/* ================================================================
   NEW INTERVENTION SECTION (iroha-inter)
   ================================================================ */
.iroha-inter {
  position: relative;
  padding: 56px 24px 88px;
  background: #fdeef0;
  overflow: hidden;
}

/* Intervention → News wave divider */
body .iroha-inter > .iroha-inter__wave {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  top: auto !important;
  width: 100% !important;
  height: clamp(50px, 6vw, 80px) !important;
  display: block !important;
  pointer-events: none;
  z-index: 3;
}

/* Force NEWS section to white background */
body .tenri-clone .tc-news,
body section.tc-news {
  background: #ffffff !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 90px 24px 140px !important;
}
body .tc-news .tc-nami-top,
body .tc-news .tc-nami-bottom { display: none !important; }
body .tc-news .tc-news-ill { display: none !important; }

/* News section decorative pattern (same vibe as About hero) */
body .tc-news .iroha-news__pattern {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
body .tc-news .iroha-newspat {
  position: absolute;
  display: block;
}
/* Stars */
body .tc-news .iroha-newspat--star {
  width: 22px;
  height: 22px;
  background: #ffd96b;
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter: drop-shadow(0 2px 4px rgba(255, 180, 50, .4));
  animation: iroha-newspat-twinkle 3.2s ease-in-out infinite;
}
body .tc-news .iroha-newspat--1 { top: 10%; left: 10%; transform: scale(.8); animation-delay: 0s; }
body .tc-news .iroha-newspat--2 { top: 16%; right: 14%; transform: scale(1.1); animation-delay: .8s; }
body .tc-news .iroha-newspat--3 { top: 64%; left: 7%; transform: scale(.7); animation-delay: -1.4s; }
body .tc-news .iroha-newspat--4 { top: 72%; right: 18%; transform: scale(.9); animation-delay: -2.2s; }

/* Dots */
body .tc-news .iroha-newspat--dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: iroha-newspat-float 4s ease-in-out infinite;
}
body .tc-news .iroha-newspat--5 { top: 24%; left: 4%;  background: #ff8aa4; }
body .tc-news .iroha-newspat--6 { top: 36%; right: 6%; background: #a5d4ef; animation-delay: -1s; }
body .tc-news .iroha-newspat--7 { top: 58%; left: 28%; background: #b6dca7; animation-delay: -2s; }
body .tc-news .iroha-newspat--8 { top: 70%; right: 30%; background: #b68be3; animation-delay: -3s; }

/* Hearts */
body .tc-news .iroha-newspat--heart {
  width: 16px;
  height: 14px;
  background: #ff8aa4;
  clip-path: path('M8 14 C 8 14, 0 8, 0 4 C 0 1, 3 0, 5 2 C 6 3, 8 5, 8 5 C 8 5, 10 3, 11 2 C 13 0, 16 1, 16 4 C 16 8, 8 14, 8 14 Z');
  opacity: .8;
  filter: drop-shadow(0 2px 4px rgba(255, 138, 164, .4));
  animation: iroha-newspat-float 3.6s ease-in-out infinite;
}
body .tc-news .iroha-newspat--9 { top: 20%; left: 40%; animation-delay: -1.2s; }
body .tc-news .iroha-newspat--10 { top: 82%; left: 52%; animation-delay: -2.4s; }

/* Rings */
body .tc-news .iroha-newspat--ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(255, 138, 164, .35);
  animation: iroha-newspat-float 5s ease-in-out infinite;
}
body .tc-news .iroha-newspat--11 { top: 34%; left: 46%; animation-delay: -.8s; }
body .tc-news .iroha-newspat--12 { top: 56%; right: 44%; width: 28px; height: 28px; border-color: rgba(134, 198, 234, .38); animation-delay: -2.6s; }

/* Sparkles */
body .tc-news .iroha-newspat--sparkle {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(90deg, transparent 46%, #ffb6c9 46%, #ffb6c9 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, #ffb6c9 46%, #ffb6c9 54%, transparent 54%);
  opacity: .7;
  filter: drop-shadow(0 0 6px rgba(255, 138, 164, .6));
  animation: iroha-newspat-twinkle 2.6s ease-in-out infinite;
}
body .tc-news .iroha-newspat--13 { top: 42%; left: 20%; animation-delay: -.4s; }
body .tc-news .iroha-newspat--14 { top: 28%; right: 36%; animation-delay: -1.3s; }
body .tc-news .iroha-newspat--15 { top: 82%; left: 38%; animation-delay: -2.1s; }

@keyframes iroha-newspat-twinkle {
  0%, 100% { opacity: .35; transform: scale(.75) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.15) rotate(12deg); }
}
@keyframes iroha-newspat-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.08); }
}

@media (max-width: 820px) {
  body .tc-news .iroha-news__pattern { display: none !important; }
}

/* News section floating character */
body .tc-news .iroha-news__char {
  position: absolute !important;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-feat-char-bob 4.8s ease-in-out infinite;
}
body .tc-news .iroha-news__char--apple {
  bottom: 32px;
  right: 2.5%;
  width: clamp(130px, 13vw, 180px);
  --rot: 4deg;
  animation-delay: -1.8s;
}

/* News layout — stacked card list */
body .tc-news .tc-news-inner {
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  position: relative;
  z-index: 5;
}
body .tc-news .tc-news-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 28px !important;
  width: 100% !important;
}
body .tc-news .tc-news-left {
  text-align: center !important;
  width: 100% !important;
  max-width: none !important;
}
body .tc-news .tc-sec-title .tc-en {
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  color: #2a1a22 !important;
  display: block !important;
}
body .tc-news .tc-sec-title .tc-ja {
  margin: 10px 0 0 !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  letter-spacing: .26em !important;
  color: #6b5158 !important;
  display: block !important;
}
body .tc-news .tc-sec-title .tc-maru { display: none !important; }
body .tc-news .tc-news-more {
  display: inline-block !important;
  padding: 12px 32px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ff4f77, #ff87a5) !important;
  box-shadow: 0 10px 22px -8px rgba(232, 83, 123, .42) !important;
  transition: transform .3s, filter .3s !important;
  margin-top: 6px !important;
}
body .tc-news .tc-news-more::after {
  content: "→" !important;
  margin-left: 8px !important;
}
body .tc-news .tc-news-more:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
}

/* Home NEWS — dynamic posts, vertical card grid with large thumbnail */
body .tc-news .iroha-home-news {
  list-style: none !important;
  margin: 30px auto 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 1080px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 26px !important;
}
body .tc-news .iroha-home-news__item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}
body .tc-news .iroha-home-news__item::before,
body .tc-news .iroha-home-news__item::after { display: none !important; }
body .tc-news .iroha-home-news__link {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 2px solid #ffe3ea !important;
  border-radius: 22px !important;
  text-decoration: none !important;
  transition: transform .4s, border-color .4s, box-shadow .4s !important;
  box-shadow: 0 18px 40px -22px rgba(232, 83, 123, .28) !important;
  overflow: hidden !important;
  height: 100% !important;
}
body .tc-news .iroha-home-news__link:hover {
  transform: translateY(-6px) !important;
  border-color: #ffb6c9 !important;
  box-shadow: 0 30px 54px -24px rgba(232, 83, 123, .4) !important;
}
body .tc-news .iroha-home-news__thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe3ea, #fff0f4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .tc-news .iroha-home-news__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
body .tc-news .iroha-home-news__link:hover .iroha-home-news__thumb img {
  transform: scale(1.06);
}
body .tc-news .iroha-home-news__thumb-placeholder {
  font-size: 56px;
  opacity: .75;
  filter: drop-shadow(0 4px 8px rgba(255, 138, 164, .35));
}
body .tc-news .iroha-home-news__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px !important;
  text-align: left;
}
body .tc-news .iroha-home-news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
body .tc-news .iroha-home-news__date {
  font-family: "M PLUS Rounded 1c", sans-serif !important;
  font-weight: 800 !important;
  font-size: 12.5px !important;
  color: #c8375d !important;
  letter-spacing: .04em !important;
}
body .tc-news .iroha-home-news__cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
body .tc-news .iroha-home-news__cat--blog {
  background: #fff0c6;
  color: #7a4a10;
}
body .tc-news .iroha-home-news__cat--news {
  background: linear-gradient(135deg, #ffd4dd, #ffb9c7);
  color: #7a2333;
}
body .tc-news .iroha-home-news__title {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
  font-weight: 800 !important;
  font-size: 14.5px !important;
  color: #1f0f15 !important;
  line-height: 1.55 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .tc-news .iroha-home-news__empty {
  text-align: center !important;
  font-size: 14px !important;
  color: #6b5158 !important;
  padding: 24px 0 !important;
}

/* Center the news row container so grid fills the width */
body .tc-news .tc-news-inner .tc-news-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

@media (max-width: 1080px) {
  body .tc-news .iroha-home-news { grid-template-columns: repeat(2, 1fr) !important; max-width: 720px !important; }
}
@media (max-width: 560px) {
  body .tc-news .iroha-home-news { grid-template-columns: 1fr !important; max-width: 420px !important; gap: 18px !important; }
}

/* News article list — vertical stacked cards */
body .tc-news .tc-news-right {
  list-style: none !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 760px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
body .tc-news .tc-news-right li {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 18px 24px !important;
  background: #ffffff !important;
  border: 2px solid #ffe3ea !important;
  border-radius: 18px !important;
  transition: transform .35s, box-shadow .35s, border-color .35s !important;
  list-style: none !important;
  flex-wrap: wrap !important;
}
body .tc-news .tc-news-right li:hover {
  transform: translateY(-3px) !important;
  border-color: #ffb6c9 !important;
  box-shadow: 0 18px 36px -16px rgba(232, 83, 123, .28) !important;
}
body .tc-news .tc-news-right li::before,
body .tc-news .tc-news-right li::after { display: none !important; }
body .tc-news .tc-news-date-block {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
}
body .tc-news .tc-news-date-block time {
  font-family: "M PLUS Rounded 1c", sans-serif !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  color: #c8375d !important;
  letter-spacing: .04em !important;
}
body .tc-news .tc-news-cat {
  margin: 0 !important;
}
body .tc-news .tc-news-cat a {
  display: inline-block !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  background: #fff0c6 !important;
  color: #7a5a10 !important;
  text-decoration: none !important;
  border: none !important;
}
body .tc-news .tc-news-right li a.tc-news-title {
  flex: 1 1 auto !important;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #1f0f15 !important;
  text-decoration: none !important;
  line-height: 1.6 !important;
  transition: color .3s !important;
}
body .tc-news .tc-news-right li a.tc-news-title:hover {
  color: #c8375d !important;
}

/* News → Contact wave divider */
body .tc-news > .iroha-news__wave {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  top: auto !important;
  width: 100% !important;
  height: clamp(50px, 6vw, 80px) !important;
  display: block !important;
  pointer-events: none;
  z-index: 3;
}

/* ================================================================
   MOBILE TOP BAR + DRAWER (desktop: hidden)
   ================================================================ */
.iroha-mobilebar { display: none; }
.iroha-mobile-drawer { display: none; }

/* ================================================================
   MOBILE RESPONSIVE OVERRIDES (≤ 820px)
   ================================================================ */
@media (max-width: 820px) {
  /* ---- ABOUT ---- */
  body .iroha-about { padding: 40px 0 60px !important; }
  body .iroha-about__inner { max-width: 100% !important; padding: 0 18px !important; }
  body .iroha-about .ir-sec-en { font-size: 32px !important; }
  body .iroha-about .ir-about-catch { font-size: 15px !important; line-height: 1.7 !important; padding: 0 12px !important; }
  body .iroha-about .ir-sec-about-body p,
  body section.iroha-about .ir-sec-about-body p {
    white-space: normal !important;
    font-size: 13px !important;
    line-height: 1.9 !important;
    padding: 0 8px !important;
  }
  /* ABOUT kids — hidden on mobile */
  body .iroha-about__kid--tl,
  body .iroha-about__kid--tr { display: none !important; }

  /* ---- FEATURES ---- */
  body .tc-features { padding: 60px 16px 110px !important; }
  body .tc-features .tc-features-head { max-width: 100% !important; padding: 0 8px !important; }
  body .tc-features .tc-features-head .tc-ja { font-size: 22px !important; }
  body .tc-features .tc-features-head p,
  body section.tc-features .tc-features-head p,
  body .tenri-clone .tc-features .tc-features-head p {
    white-space: normal !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    padding: 0 4px !important;
    text-align: center !important;
  }
  body .tc-features .tc-features-list {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 12px !important;
  }
  body .tc-features .tc-features-list li {
    max-width: 420px !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  /* FEATURES chars — corners, small */
  body .tc-features .iroha-feat__blobs { display: none !important; }
  body .tc-features .iroha-feat__char {
    display: block !important;
    position: absolute !important;
    width: 58px !important;
    height: auto !important;
    transform: none !important;
    animation: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }
  body .tc-features .iroha-feat__char--sun {
    top: 4px !important;
    left: 4px !important;
    right: auto !important;
    bottom: auto !important;
  }
  body .tc-features .iroha-feat__char--rainbow { display: none !important; }
  body .tc-features .iroha-feat__char--group {
    bottom: 40px !important;
    right: 4px !important;
    left: auto !important;
    top: auto !important;
    width: 56px !important;
  }

  /* ---- SERVICE ---- */
  body .iroha-service { padding: 60px 16px 110px !important; }
  body .iroha-service__list { grid-template-columns: 1fr !important; gap: 40px !important; }
  body .iroha-svc-card { padding: 58px 22px 30px !important; }
  body .iroha-svc-card__title { font-size: 22px !important; }
  body .iroha-svc-card .iroha-svc-card__desc { font-size: 13px !important; line-height: 1.8 !important; }
  /* SERVICE chars — top-left + bottom-right, tiny */
  body .iroha-service .iroha-service__char {
    display: block !important;
    position: absolute !important;
    width: 58px !important;
    height: auto !important;
    transform: none !important;
    animation: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }
  body .iroha-service .iroha-service__char--logo {
    top: 6px !important;
    left: 4px !important;
    right: auto !important;
    bottom: auto !important;
  }
  body .iroha-service .iroha-service__char--forest {
    bottom: 40px !important;
    right: 4px !important;
    left: auto !important;
    top: auto !important;
    width: 52px !important;
  }

  /* ---- INTERVENTION ---- */
  body .iroha-inter { padding: 40px 16px 56px !important; }
  body .iroha-inter__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  body .iroha-inter__en { font-size: 28px !important; }
  body .iroha-inter__ja { font-size: 17px !important; margin-top: 6px !important; }
  body .iroha-inter__desc {
    margin: 16px 0 22px !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
  }
  body .iroha-inter__btn { padding: 13px 36px !important; font-size: 13px !important; }
  body .iroha-inter__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  body .iroha-inter-card {
    padding: 18px 12px 16px !important;
    border-radius: 18px !important;
    gap: 8px !important;
  }
  body .iroha-inter-card--1 { grid-column: 1 !important; grid-row: 1 !important; }
  body .iroha-inter-card--2 { grid-column: 2 !important; grid-row: 1 !important; }
  body .iroha-inter-card--3 { grid-column: 1 / -1 !important; grid-row: 2 !important; max-width: 70% !important; margin: 0 auto !important; }
  body .iroha-inter-card--4 { grid-column: 1 !important; grid-row: 3 !important; }
  body .iroha-inter-card--5 { grid-column: 2 !important; grid-row: 3 !important; }
  body .iroha-inter-card__text { font-size: 11px !important; line-height: 1.55 !important; }
  body .iroha-inter-card__title { font-size: 13px !important; }
  body .iroha-inter-card__icon { width: 46px !important; height: 46px !important; }
  body .iroha-inter-card__icon svg { width: 22px !important; height: 22px !important; }
  body .iroha-inter-card__num {
    width: auto !important;
    height: auto !important;
    top: 8px !important;
    right: 10px !important;
    left: auto !important;
    font-size: 18px !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    color: rgba(232,83,123,.18) !important;
  }
  /* INTERVENTION elephant — top-right corner, tiny */
  body .iroha-inter .iroha-inter__char--elephant {
    display: block !important;
    position: absolute !important;
    top: 6px !important;
    right: 4px !important;
    left: auto !important;
    bottom: auto !important;
    width: 58px !important;
    height: auto !important;
    transform: none !important;
    animation: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }

  /* ---- NEWS ---- */
  body .tc-news,
  body section.tc-news { padding: 40px 16px 60px !important; }
  body .tc-news .tc-news-right { max-width: 100% !important; }
  body .tc-news .tc-news-right li {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 16px 18px !important;
  }
  body .tc-news .tc-news-date-block { gap: 10px !important; }
  body .tc-news .tc-news-right li a.tc-news-title { font-size: 13.5px !important; }
  /* NEWS apple char — bottom-right corner, tiny */
  body .tc-news .iroha-news__char--apple {
    display: block !important;
    position: absolute !important;
    top: auto !important;
    right: 8px !important;
    bottom: 40px !important;
    left: auto !important;
    width: 64px !important;
    height: auto !important;
    transform: none !important;
    animation: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }

  /* ---- FOOTER info ---- */
  body .tc-footer .iroha-footer-info__name { font-size: 16px !important; }
  body .tc-footer .iroha-footer-info__line {
    font-size: 12.5px !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin-bottom: 10px !important;
  }
  body .tc-footer .iroha-footer-info__line span {
    align-self: flex-start !important;
    min-width: auto !important;
  }

  /* HERO chars — all hidden on mobile so nothing overlaps the main photo */
  body .iroha-hero .iroha-hero__chara,
  body .iroha-hero__chara-left,
  body .iroha-hero__chara-right,
  body .iroha-hero__chara-tulip,
  body .iroha-hero__chara--bl,
  body .iroha-hero__chara--br,
  body .iroha-hero__chara--apple,
  body .iroha-hero__chara--pumpkin,
  body .iroha-hero__chara--tulip,
  body .iroha-hero__chara--tl,
  body .iroha-hero__chara--tr { display: none !important; }

  /* Main visual — nudge down a bit on mobile */
  body .iroha-hero__visual {
    margin-top: 56px !important;
  }

  /* Wave-divider decorative chars (clover / sunflower) — mobile only */
  body .iroha-hero .iroha-hero__wavechara {
    display: block !important;
    position: absolute !important;
    bottom: 10px !important;
    width: 82px !important;
    height: auto !important;
    z-index: 11 !important;
    pointer-events: none;
    filter: drop-shadow(0 6px 10px rgba(80,120,60,.25));
  }
  body .iroha-hero .iroha-hero__wavechara--l { left: 6px !important; right: auto !important; }
  body .iroha-hero .iroha-hero__wavechara--r { right: 6px !important; left: auto !important; }

  /* ---- Hide Hero side tab on mobile ---- */
  body .iroha-side-tab { display: none !important; }

  /* ================================================================
     MOBILE PERFORMANCE — disable all lazy/delayed effects
     ================================================================ */

  /* Kill every animation, transition, filter that delays paint */
  body *,
  body *::before,
  body *::after {
    animation: none !important;
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    transition: none !important;
    will-change: auto !important;
  }

  /* Remove content-visibility so nothing is deferred */
  body * {
    content-visibility: visible !important;
    contain: none !important;
  }

  /* Force all lazy images to load immediately on mobile */
  body img[loading="lazy"] {
    content-visibility: visible !important;
  }

  /* Kill expensive filter/backdrop effects */
  body .iroha-hero__photo,
  body .iroha-hero__photo::before,
  body .iroha-hero__photo::after,
  body .iroha-hero__slides,
  body .iroha-hero__slide:not(.iroha-hero__slide--fade),
  body .iroha-hero__slide--static,
  body .iroha-hero__copy,
  body .iroha-feat-card,
  body .iroha-feat-card__photo img,
  body .iroha-svc-card,
  body .iroha-inter-card,
  body .iroha-activity-card,
  body .iroha-about-page__hero,
  body .iroha-about-page__hero::before,
  body .iroha-about-page__pattern,
  body .iroha-pat,
  body .iroha-newspat,
  body .iroha-blob,
  body .iroha-hero__blobs,
  body .iroha-feat__blobs,
  body .iroha-contact__blobs,
  body .tc-features-list li,
  body .iroha-home-news__link,
  body .iroha-home-news__thumb img,
  body .iroha-news-list__item a,
  body .iroha-contact-imgbtn,
  body .iroha-contact-imgbtn img,
  body .iroha-footer,
  body .iroha-footer::before,
  body .iroha-footer::after,
  body .iroha-footer__logo-img {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Disable heavy blob backgrounds on mobile */
  body .iroha-hero__blobs,
  body .iroha-feat__blobs,
  body .iroha-contact__blobs,
  body .iroha-contact__pattern,
  body .iroha-about-page__pattern,
  body .iroha-news__pattern { display: none !important; }

  /* No scroll-triggered reveal — show immediately */
  body [data-aos],
  body .reveal,
  body .fade-in,
  body .slide-in,
  body [class*="iroha-reveal"] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Ensure sections with reduced-motion still show fully */
  body .iroha-hero,
  body .iroha-about,
  body .tc-features,
  body .iroha-service,
  body .iroha-inter,
  body .tc-news,
  body .tc-contact,
  body .iroha-footer {
    content-visibility: visible !important;
  }

  /* ---- Lighten expensive effects on mobile for fast render ---- */
  body .iroha-hero__header .iroha-hero__nav ul,
  body .iroha-about-page__nav ul {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  body .iroha-hero__photo {
    will-change: auto !important;
  }
  body .iroha-hero__photo,
  body .iroha-hero__photo::before,
  body .iroha-hero__photo::after {
    animation: none !important;
  }
  body .iroha-hero__slide:not(.iroha-hero__slide--fade),
  body .iroha-hero__slide--static {
    filter: none !important;
    animation: none !important;
    transform: none !important;
  }
  /* Mobile: keep fade slideshow running, just drop filters */
  body .iroha-hero__slide--fade {
    filter: none !important;
    transform: none !important;
    content-visibility: visible !important;
    contain: none !important;
    animation: irohaHeroFade 15s ease-in-out infinite !important;
    transition: opacity .6s ease-in-out !important;
  }
  body .iroha-hero__slide--fade.iroha-hero__slide--1 { animation-delay: 0s !important; }
  body .iroha-hero__slide--fade.iroha-hero__slide--2 { animation-delay: 5s !important; }
  body .iroha-hero__slide--fade.iroha-hero__slide--3 { animation-delay: 10s !important; }
  body .iroha-hero__blobs,
  body .iroha-hero__bg-noise { display: none !important; }

  /* Ensure hero image is always rendered */
  body .iroha-hero__slide--static {
    content-visibility: visible !important;
    contain: none !important;
  }

  /* Mobile hero copy — match desktop look AND desktop rise-in animation */
  body .iroha-hero__copy {
    width: 90% !important;
    max-width: none !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 8% !important;
    padding: 0 !important;
    text-align: center !important;
    opacity: 1 !important;
  }
  body .iroha-hero__copy-line {
    display: block !important;
    font-family: "Zen Kaku Gothic New", "Zen Maru Gothic", sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.55 !important;
    margin: 0 auto 4px !important;
    letter-spacing: .02em !important;
    white-space: nowrap !important;
    text-align: center !important;
    width: 100% !important;
    color: #2a1820 !important;
    text-shadow:
      0 0 1px #fff,
      0 0 2px #fff,
      0 0 6px rgba(255,255,255,.95),
      0 0 12px rgba(255,255,255,.85),
      0 2px 4px rgba(255,255,255,.9),
      0 -1px 2px rgba(255,255,255,.9) !important;
    /* restore desktop rise-in effect (body * animation reset is overridden here) */
    animation: iroha-rise .9s var(--iro-ease) both !important;
    animation-duration: .9s !important;
  }
  body .iroha-hero__copy-line:nth-child(1) { animation-delay: .55s !important; }
  body .iroha-hero__copy-line:nth-child(2) { animation-delay: .75s !important; }
  body .iroha-hero__copy-line:nth-child(3) { animation-delay: .95s !important; }
  body .iroha-hero__copy em {
    font-style: normal;
    color: #e8537b !important;
    font-weight: 900 !important;
    position: relative;
  }
  body .iroha-hero__photo {
    aspect-ratio: 16 / 9 !important;
  }
  /* Match PC crop: show the full slide photo without cutting the bottom */
  body .iroha-hero__slide--fade {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    inset: 0 !important;
  }

  /* ---- Hide main desktop logo + nav on mobile ---- */
  body .iroha-hero__header .iroha-hero__logo-wrap,
  body .iroha-hero__header .iroha-hero__nav { display: none !important; }
  body .iroha-hero__header {
    min-height: 0 !important;
    padding: 0 !important;
    justify-content: flex-end !important;
  }

  /* ---- Show mobile top bar ---- */
  body .iroha-mobilebar {
    display: flex !important;
    position: absolute !important;
    top: 4px;
    left: 0;
    right: 8px;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
  }
  body .iroha-mobilebar__logo {
    display: block;
    pointer-events: auto;
    text-decoration: none !important;
    border: none !important;
    margin-left: -18px;
    filter: drop-shadow(0 6px 12px rgba(232, 83, 123, .25));
  }
  body .iroha-mobilebar__logo-svg {
    display: block;
    width: 120px;
    height: auto;
    overflow: visible;
  }
  body .iroha-mobilebar__toggle {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4f77, #ff87a5);
    box-shadow: 0 12px 22px -8px rgba(232, 83, 123, .5),
                inset 0 1px 0 rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
  }
  body .iroha-mobilebar__toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .3s, opacity .3s;
  }
  body .iroha-mobilebar__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body .iroha-mobilebar__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  body .iroha-mobilebar__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* ---- Drawer ---- */
  body .iroha-mobile-drawer {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 200 !important;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
  }
  body .iroha-mobile-drawer.is-open {
    pointer-events: auto;
    opacity: 1;
  }
  body .iroha-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 26, 34, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  body .iroha-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    background: linear-gradient(170deg, #fff0f4 0%, #fde8ee 100%);
    padding: 72px 32px 40px;
    box-shadow: -20px 0 40px -18px rgba(232, 83, 123, .4);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
  }
  body .iroha-mobile-drawer.is-open .iroha-mobile-drawer__panel {
    transform: translateX(0);
  }
  body .iroha-mobile-drawer__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 20px -8px rgba(232, 83, 123, .35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .iroha-mobile-drawer__close span {
    position: absolute;
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: #c8375d;
  }
  body .iroha-mobile-drawer__close span:first-child { transform: rotate(45deg); }
  body .iroha-mobile-drawer__close span:last-child { transform: rotate(-45deg); }

  body .iroha-mobile-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  body .iroha-mobile-drawer__list li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  body .iroha-mobile-drawer__list li::before,
  body .iroha-mobile-drawer__list li::after { display: none !important; }
  body .iroha-mobile-drawer__list a {
    display: block;
    padding: 16px 18px;
    font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 15.5px;
    color: #2a1a22 !important;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(200, 55, 93, .18);
    letter-spacing: .05em;
  }
  body .iroha-mobile-drawer__list a:hover {
    color: #c8375d !important;
  }
  body .iroha-mobile-drawer__cta {
    margin-top: 18px !important;
    background: linear-gradient(135deg, #ff4f77, #ff87a5) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    text-align: center !important;
    padding: 16px 24px !important;
    border: none !important;
    letter-spacing: .1em !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 26px -10px rgba(232, 83, 123, .5) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }
  body .iroha-mobile-drawer__cta svg {
    width: 18px;
    height: 18px;
    color: #ffe999;
  }

  html.iroha-drawer-open,
  html.iroha-drawer-open body { overflow: hidden !important; }

  /* ---- Slim fixed CTA on mobile so it doesn't cover content ---- */
  body .iroha-hero__fab {
    bottom: 12px !important;
    right: 12px !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 22px -8px rgba(232, 83, 123, .45) !important;
  }

  /* ---- Prevent fixed CTA from overlapping last visible sections ---- */
  body .tc-footer { padding-bottom: 80px !important; }

  /* ---- Ensure no horizontal overflow ---- */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  body { position: relative !important; }

  /* Mobile: prevent any wide elements from pushing body wider than viewport */
  body * {
    max-width: 100vw;
  }

  /* Ensure common root containers fit the viewport */
  body #body, body .body, body .body-in,
  body #container, body .container,
  body #main, body .main, body #content, body .content,
  body .wrap, body .content-in {
    max-width: 100vw !important;
    overflow-x: clip !important;
  }

  /* Mobile: larger tap targets for links and buttons */
  body .iroha-about-page__nav li a,
  body .iroha-mobile-drawer__list a,
  body .iroha-contact-btn,
  body .iroha-svc-card__btn,
  body .iroha-about-page__btn,
  body .iroha-inter__btn,
  body .iroha-page__btn,
  body .iroha-hero__fab,
  body .tc-news-more {
    min-height: 48px;
  }
  /* ensure tel/mailto links clearly tappable on mobile */
  body a[href^="tel:"],
  body a[href^="mailto:"] {
    display: inline-block;
    min-height: 44px;
    line-height: 1.4;
  }

  /* Minimum readable font-size for body copy */
  body p,
  body li,
  body .iroha-home-news__title,
  body .iroha-svc-card__desc,
  body .iroha-inter-item ul li,
  body .iroha-life__body p,
  body .iroha-flow__step p,
  body .iroha-about-page__lead,
  body .iroha-about-page__section-lead {
    font-size: 14px !important;
    line-height: 1.85 !important;
  }
}

/* Global horizontal-scroll lock (all viewports) */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* ================================================================
   Sub-page shared template (iroha-page)
   ================================================================ */
.iroha-page {
  background: #fdeef0;
  padding: 70px 24px 110px;
  position: relative;
  overflow: hidden;
}
.iroha-page::before,
.iroha-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.iroha-page::before {
  width: 440px; height: 440px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, #ffd0dc 0%, transparent 70%);
}
.iroha-page::after {
  width: 380px; height: 380px;
  bottom: -120px; right: -100px;
  background: radial-gradient(circle, #fde3b8 0%, transparent 70%);
}
.iroha-page__hero {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}
.iroha-page__en {
  display: block;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: .08em;
  color: #2a1a22;
}
.iroha-page__ja {
  margin: 14px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .08em;
  color: #c8375d;
}
.iroha-page__dots {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
}
.iroha-page__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}
.iroha-page__dots span:nth-child(1) { background: #ff8aa4; }
.iroha-page__dots span:nth-child(2) { background: #ffd96b; }
.iroha-page__dots span:nth-child(3) { background: #b6dca7; }
.iroha-page__dots span:nth-child(4) { background: #a5d4ef; }
.iroha-page__dots span:nth-child(5) { background: #b68be3; }
.iroha-page__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 42px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 54px -24px rgba(232, 83, 123, .28),
              0 10px 26px -16px rgba(232, 83, 123, .18);
  position: relative;
  z-index: 2;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  color: #1f0f15;
}
.iroha-page__lead {
  font-size: 18px;
  font-weight: 800;
  color: #c8375d;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.6;
}
.iroha-page__inner h2 {
  margin: 32px 0 14px;
  font-size: 19px;
  font-weight: 900;
  color: #2a1a22;
  padding-left: 14px;
  border-left: 5px solid #ff87a5;
  letter-spacing: .04em;
}
.iroha-page__inner p {
  font-size: 14.5px;
  line-height: 1.95;
  margin: 0 0 16px;
  font-weight: 600;
}
.iroha-page__inner ul,
.iroha-page__inner ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.iroha-page__inner li {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f0f15;
}
.iroha-page__inner a {
  color: #c8375d;
  text-decoration: none;
  border-bottom: 1px dashed rgba(200, 55, 93, .4);
}
.iroha-page__inner a:hover { color: #ff4f77; }
.iroha-page__btn {
  display: inline-block;
  margin-top: 24px;
  padding: 15px 36px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff4f77, #ff87a5);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: 0 14px 24px -10px rgba(232, 83, 123, .42);
  transition: transform .3s, filter .3s;
}
.iroha-page__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #ffffff !important;
}

@media (max-width: 820px) {
  .iroha-page { padding: 48px 16px 80px; }
  .iroha-page__inner { padding: 32px 22px; border-radius: 22px; }
  .iroha-page__lead { font-size: 15px; }
  .iroha-page__inner h2 { font-size: 16px; }
  .iroha-page__inner p,
  .iroha-page__inner li { font-size: 13.5px; }
}

/* ================================================================
   FOOTER — compact, elegant, pink-forward
   ================================================================ */
body .iroha-footer {
  position: relative;
  background:
    linear-gradient(180deg, #ffe3ea 0%, #ffcdd9 100%);
  padding: 26px 24px 0;
  margin-top: 0;
  overflow: hidden;
  color: #1f0f15;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  isolation: isolate;
}
body .iroha-footer::before {
  content: "";
  position: absolute;
  inset: -40px -40px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 201, 215, .7) 0%, transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(253, 227, 184, .65) 0%, transparent 30%);
  opacity: .75;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
body .iroha-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
body .iroha-footer__grid {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(0, 1.2fr);
  grid-template-areas: "brand info nav";
  column-gap: 40px;
  row-gap: 0;
  align-items: start;
  padding-bottom: 14px;
}
body .iroha-footer__brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
body .iroha-footer__info { grid-area: info; }
body .iroha-footer__nav  { grid-area: nav; }
body .iroha-footer__logo {
  display: inline-block;
  text-decoration: none !important;
  border: none !important;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .5s;
}
body .iroha-footer__logo:hover {
  transform: translateY(-4px) rotate(-2deg);
  filter: brightness(1.05);
}
body .iroha-footer__logo-svg {
  display: block;
  width: 180px;
  height: auto;
  overflow: visible;
}
body .iroha-footer__logo-img {
  display: block;
  width: clamp(150px, 13vw, 180px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(232, 83, 123, .28));
}
body .iroha-footer__tagline {
  margin: 0;
  max-width: 220px;
  font-size: 11px;
  line-height: 1.7;
  font-weight: 700;
  color: #c8375d;
  letter-spacing: .02em;
}

/* Center info column: transparent, no white card */
body .iroha-footer__info {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body .iroha-footer__info:hover { transform: none !important; }
body .iroha-footer__info::before { display: none !important; }

body .iroha-footer__name {
  margin: 0 0 12px;
  font-size: 14.5px;
  font-weight: 900;
  color: #c8375d;
  letter-spacing: .06em;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(200, 55, 93, .4);
  display: flex;
  align-items: center;
  gap: 8px;
}
body .iroha-footer__name::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4f77, #ffb347);
  box-shadow: 0 0 10px rgba(255, 79, 119, .6);
}
body .iroha-footer__info .iroha-footer__line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  color: #1a0710;
  border-bottom: none;
}
body .iroha-footer__info .iroha-footer__line span {
  flex: 0 0 auto;
  min-width: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #c8375d;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
  box-shadow: none;
  text-align: left;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
body .iroha-footer__info .iroha-footer__line a {
  color: #1a0710 !important;
  text-decoration: none !important;
  font-weight: 800;
  border-bottom: 1px dashed rgba(200, 55, 93, .4);
  transition: color .3s, border-color .3s;
}
body .iroha-footer__info .iroha-footer__line a:hover {
  color: #c8375d !important;
  border-bottom-color: #ff6a8e;
}

body .iroha-footer__nav {
  align-self: center;
  padding-top: 24px;
  justify-self: center;
}
body .iroha-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  column-gap: 28px;
  row-gap: 12px;
  justify-items: center;
  justify-content: center;
}
body .iroha-footer__nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
body .iroha-footer__nav li::before,
body .iroha-footer__nav li::after { display: none !important; }
body .iroha-footer__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 800;
  color: #3a1520 !important;
  text-decoration: none !important;
  transition: color .3s, transform .3s;
  letter-spacing: .04em;
}
body .iroha-footer__nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff87a5;
  flex: 0 0 auto;
  transition: transform .3s, background .3s;
}
body .iroha-footer__nav a:hover {
  color: #c8375d !important;
  transform: translateX(3px);
}
body .iroha-footer__nav a:hover::before {
  transform: scale(1.6);
  background: #c8375d;
}

@media (max-width: 900px) {
  body .iroha-footer__grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "info"
      "nav" !important;
    column-gap: 0 !important;
    row-gap: 22px !important;
  }
  body .iroha-footer__brand { align-items: center; text-align: center; }
  body .iroha-footer__tagline { text-align: center; }
  body .iroha-footer__nav ul { grid-template-columns: 1fr 1fr; }
}

body .iroha-footer__copy {
  position: relative;
  margin: 0;
  padding: 10px 24px 14px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: #7a2333;
  letter-spacing: .14em;
}
body .iroha-footer__copy::before {
  content: "";
  display: block;
  width: min(380px, 55%);
  margin: 0 auto 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 55, 93, .45) 50%, transparent);
}

@media (max-width: 900px) {
  body .iroha-footer { padding: 34px 18px 24px; }
  body .iroha-footer__grid { grid-template-columns: 1fr; gap: 22px; }
  body .iroha-footer__brand { align-items: center; text-align: center; }
  body .iroha-footer__tagline { text-align: center; }
  body .iroha-footer__info { padding: 16px 18px; }
  body .iroha-footer__info .iroha-footer__line { flex-wrap: wrap; gap: 6px; margin: 0 0 6px; }
  body .iroha-footer__nav ul { grid-template-columns: 1fr 1fr; }
}

/* Footer business info block */
body .tc-footer .iroha-footer-info {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  color: #1f0f15;
}
body .tc-footer .iroha-footer-info__name {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #c8375d;
  letter-spacing: .04em;
}
body .tc-footer .iroha-footer-info__line {
  margin: 0 0 6px;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body .tc-footer .iroha-footer-info__line span {
  flex: 0 0 auto;
  min-width: 64px;
  font-weight: 700;
  color: #6b5158;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fff0f4;
  font-size: 12px;
  text-align: center;
}
body .tc-footer .iroha-footer-info__line a {
  color: #1f0f15 !important;
  text-decoration: none !important;
  border-bottom: 1px dashed rgba(200, 55, 93, .4);
}
body .tc-footer .iroha-footer-info__line a:hover {
  color: #c8375d !important;
}

/* CONTACT section — pink to match new palette */
body .tenri-clone .tc-contact,
body section.tc-contact {
  background: #fdeef0 !important;
  background-image: none !important;
  padding: 6px 24px 24px !important;
  position: relative !important;
  overflow: hidden !important;
}
body .tc-contact .tc-contact-inner {
  margin-top: -70px !important;
  padding-top: 0 !important;
}

/* Contact → Footer wave divider */
body .tc-contact {
  padding-bottom: 160px !important;
}
body .tc-contact > .iroha-contact__wave {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  top: auto !important;
  width: 100% !important;
  height: clamp(38px, 4.5vw, 60px) !important;
  display: block !important;
  pointer-events: none;
  z-index: 3;
}
body .iroha-footer {
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}

/* Contact section — organic blob background (same family as hero) */
body .tc-contact .iroha-contact__blobs {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
body .tc-contact .iroha-contact__blobs .iroha-blob {
  position: absolute;
  opacity: .75 !important;
  filter: blur(1px) drop-shadow(0 14px 28px rgba(232,83,123,.12));
  animation: iroha-blob-drift 18s ease-in-out infinite;
  mix-blend-mode: normal !important;
}
/* Randomized placement — different from hero and features */
body .tc-contact .iroha-ct-blob--1 { top: 58%; left: 4%;  width: 220px; animation-delay: -2s;  transform: rotate(-20deg); }
body .tc-contact .iroha-ct-blob--2 { top:  8%; left: 32%; width: 160px; animation-delay: -13s; transform: rotate(28deg); }
body .tc-contact .iroha-ct-blob--3 { top: 66%; left: 52%; width: 180px; animation-delay: -4s;  transform: rotate(-6deg); }
body .tc-contact .iroha-ct-blob--4 { top:  4%; right: 6%; width: 240px; animation-delay: -15s; transform: rotate(16deg); }
body .tc-contact .iroha-ct-blob--5 { top: 34%; left: 64%; width: 150px; animation-delay: -7s;  transform: rotate(-26deg); }
body .tc-contact .iroha-ct-blob--6 { top: 46%; left: 20%; width: 170px; animation-delay: -10s; transform: rotate(8deg); }

@media (max-width: 820px) {
  body .tc-contact .iroha-contact__blobs { display: none !important; }
}

/* Contact section floating character */
body .tenri-clone .tc-contact > img.iroha-contact__char,
body .tc-contact > img.iroha-contact__char {
  display: block !important;
  position: absolute !important;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-feat-char-bob 4.8s ease-in-out infinite;
}
body .tc-contact .iroha-contact__char--pair {
  bottom: 36px;
  left: 3%;
  width: clamp(140px, 14vw, 200px);
  --rot: -4deg;
  animation-delay: -2.2s;
}
body .tc-contact > img[src*="nami-r"],
body .tc-contact > img[src*="nami-w-r"] { display: none !important; }
body .tc-contact .tc-contact-wrap {
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative;
  z-index: 5;
}
body .tc-contact .tc-contact-head {
  text-align: center !important;
  margin-bottom: 0 !important;
}
body .tc-contact .tc-sec-title .tc-en {
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  color: #2a1a22 !important;
  display: block !important;
}
body .tc-contact .tc-sec-title .tc-ja {
  margin: 10px 0 0 !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  letter-spacing: .26em !important;
  color: #6b5158 !important;
  display: block !important;
}
body .tc-contact .tc-sec-title .tc-maru { display: none !important; }
body .tc-contact .tc-contact-head p {
  margin: 8px 0 0 !important;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.85 !important;
  color: #1f0f15 !important;
  text-align: center !important;
}

/* Contact image buttons — image only, no card */
body .iroha-contact-imgbtn {
  display: block;
  text-decoration: none !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s;
}
body .iroha-contact-imgbtn:hover {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.05) saturate(1.05) drop-shadow(0 24px 36px rgba(232, 83, 123, .32));
  background: transparent !important;
  box-shadow: none !important;
}
body .iroha-contact-imgbtn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  filter: drop-shadow(0 18px 30px rgba(232, 83, 123, .28));
  transition: filter .45s;
}
body .iroha-contact-list li:has(.iroha-contact-imgbtn) { max-width: 460px !important; }

/* New contact buttons — fancy card-style with illustration frame */
body .iroha-contact-list {
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 32px !important;
  flex-wrap: wrap !important;
  max-width: 860px !important;
}
body .iroha-contact-list li {
  list-style: none !important;
  flex: 1 1 320px !important;
  max-width: 380px !important;
}
body .iroha-contact-list li::before,
body .iroha-contact-list li::after { display: none !important; }

body .iroha-contact-btn {
  position: relative;
  display: block !important;
  padding: 26px 22px 22px !important;
  border-radius: 28px !important;
  text-decoration: none !important;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif !important;
  overflow: hidden !important;
  isolation: isolate;
  text-align: center !important;
  min-height: 168px !important;
  background: #ffffff !important;
  border: 3px solid #ffffff !important;
  box-shadow:
    0 28px 52px -22px rgba(232, 83, 123, .4),
    0 10px 22px -14px rgba(232, 83, 123, .26),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: transform .5s cubic-bezier(.2,.8,.2,1),
              box-shadow .5s,
              filter .5s !important;
}
body .iroha-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--iroha-ct-bg, linear-gradient(135deg, #ffd4dd, #ffb9c7));
  z-index: -2;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
body .iroha-contact-btn::after {
  content: "✦";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .8));
  animation: iroha-ctbtn-star 3.2s ease-in-out infinite;
}
@keyframes iroha-ctbtn-star {
  0%, 100% { opacity: .5; transform: scale(.85) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.15) rotate(18deg); }
}
body .iroha-contact-btn:hover {
  transform: translateY(-6px) !important;
  filter: brightness(1.04) !important;
  box-shadow:
    0 36px 60px -22px rgba(232, 83, 123, .5),
    0 14px 26px -14px rgba(232, 83, 123, .32),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}
body .iroha-contact-btn:hover::before {
  transform: scale(1.06);
}

body .iroha-contact-btn__sub {
  position: relative;
  display: inline-block !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
  font-weight: 800 !important;
  padding: 5px 18px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  color: var(--iroha-ct-accent, #c8375d) !important;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, .15),
              inset 0 1px 0 rgba(255, 255, 255, 1);
  margin-bottom: 18px !important;
  text-transform: uppercase;
  font-family: "M PLUS Rounded 1c", sans-serif !important;
}
body .iroha-contact-btn__main {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
  padding: 14px 22px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px dashed rgba(255, 255, 255, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
body .iroha-contact-btn__main::before {
  content: "→";
  display: inline-block;
  color: #ffffff;
  font-weight: 900;
  transition: transform .3s;
}
body .iroha-contact-btn:hover .iroha-contact-btn__main::before {
  transform: translateX(-4px);
}
body .iroha-contact-btn__main::after {
  content: "♡";
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  opacity: .85;
}

/* pink variant */
body .iroha-contact-btn--web {
  --iroha-ct-bg: linear-gradient(135deg, #ff4f77 0%, #ff87a5 55%, #ffb6c9 100%);
  --iroha-ct-accent: #c8375d;
}
/* orange variant */
body .iroha-contact-btn--reserve {
  --iroha-ct-bg: linear-gradient(135deg, #ff9a3c 0%, #ffbf5a 55%, #ffd88a 100%);
  --iroha-ct-accent: #b16420;
}
body .iroha-contact-btn--reserve .iroha-contact-btn__sub {
  color: #b16420 !important;
}

@media (max-width: 820px) {
  body .tc-contact,
  body section.tc-contact { padding: 36px 16px 40px !important; }
  body .tc-contact .tc-contact-inner {
    margin-top: 14px !important;
    padding-top: 0 !important;
  }
  body .tc-contact .tc-contact-head { margin-bottom: 0 !important; }
  body .tc-contact .tc-contact-head p {
    margin: 12px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
  }
  body .iroha-contact-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }
  body .iroha-contact-list li {
    flex: 0 0 auto !important;
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  body .iroha-contact-imgbtn {
    display: block !important;
    line-height: 0;
    height: 120px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  body .iroha-contact-imgbtn img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
  }
  /* CONTACT pair chars — bottom-left corner, tiny */
  body .tc-contact .iroha-contact__char,
  body .tc-contact > img.iroha-contact__char,
  body .tenri-clone .tc-contact > img.iroha-contact__char,
  body .iroha-contact__char--pair {
    display: block !important;
    position: absolute !important;
    bottom: 6px !important;
    left: 4px !important;
    top: auto !important;
    right: auto !important;
    width: 66px !important;
    height: auto !important;
    transform: none !important;
    animation: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }
  body .iroha-contact-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  body .iroha-contact-list li {
    flex: 0 0 auto !important;
    max-width: 300px !important;
    width: 100% !important;
  }
  body .iroha-contact-btn { padding: 22px 18px !important; min-height: 90px !important; }
  body .iroha-contact-btn__main { font-size: 16px !important; }
}
.iroha-inter::before,
.iroha-inter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.iroha-inter::before {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, #ffc9d7 0%, transparent 70%);
}
.iroha-inter::after {
  width: 360px; height: 360px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, #fde3b8 0%, transparent 70%);
}

.iroha-inter__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

/* --- Left column --- */
.iroha-inter__en {
  display: block;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: .08em;
  color: #2a1a22;
}
.iroha-inter__ja {
  margin: 10px 0 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: .08em;
  color: #c8375d;
}
.iroha-inter__dots {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
}
.iroha-inter__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}
.iroha-inter__dots span:nth-child(1) { background: #ff8aa4; }
.iroha-inter__dots span:nth-child(2) { background: #ffd96b; }
.iroha-inter__dots span:nth-child(3) { background: #b6dca7; }
.iroha-inter__dots span:nth-child(4) { background: #a5d4ef; }
.iroha-inter__dots span:nth-child(5) { background: #b68be3; }

body .iroha-inter__desc,
body .iroha-inter .iroha-inter__desc {
  margin: 26px 0 34px !important;
  font-size: 14px !important;
  line-height: 1.95 !important;
  font-weight: 800 !important;
  color: #1a0a10 !important;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
  text-align: justify !important;
  text-wrap: pretty;
}

.iroha-inter__btn {
  display: inline-block;
  padding: 16px 52px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ff4f77, #ff87a5);
  box-shadow: 0 14px 24px -10px rgba(232, 83, 123, .42);
  transition: transform .3s, filter .3s, box-shadow .3s;
}
.iroha-inter__btn::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform .3s;
}
.iroha-inter__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 20px 30px -10px rgba(232, 83, 123, .5);
}
.iroha-inter__btn:hover::after { transform: translateX(5px); }

/* --- Right grid (5 redesigned cards) --- */
.iroha-inter__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.iroha-inter-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 18px 22px;
  text-align: center;
  box-shadow:
    0 22px 40px -22px rgba(232, 83, 123, .32),
    0 8px 20px -12px rgba(232, 83, 123, .18),
    inset 0 1px 0 rgba(255,255,255,.9);
  border: 1px solid rgba(255,214,225,.95);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  isolation: isolate;
  overflow: hidden;
}
.iroha-inter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,238,243,.6) 100%);
  pointer-events: none;
  z-index: 0;
}
.iroha-inter-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,200,.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.iroha-inter-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 52px -22px rgba(232, 83, 123, .42),
    0 12px 24px -14px rgba(232, 83, 123, .26),
    inset 0 1px 0 rgba(255,255,255,1);
}
.iroha-inter-card > * { position: relative; z-index: 1; }

/* Balanced 3+2 layout: top row 3 cards, bottom row 2 centered */
.iroha-inter-card--1 { grid-column: 1 / span 2; grid-row: 1; }
.iroha-inter-card--2 { grid-column: 3 / span 2; grid-row: 1; }
.iroha-inter-card--3 { grid-column: 5 / span 2; grid-row: 1; }
.iroha-inter-card--4 { grid-column: 2 / span 2; grid-row: 2; }
.iroha-inter-card--5 { grid-column: 4 / span 2; grid-row: 2; }

.iroha-inter-card__num {
  position: absolute;
  top: 12px;
  right: 14px;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .02em;
  color: rgba(232,83,123,.18);
  z-index: 1;
  pointer-events: none;
}

.iroha-inter-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe2ea, #fff5f8);
  color: #e8537b;
  box-shadow:
    0 10px 20px -10px rgba(232,83,123,.5),
    inset 0 -3px 8px rgba(232,83,123,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  margin-top: 6px;
  flex: 0 0 auto;
}
.iroha-inter-card__icon svg { width: 28px; height: 28px; display: block; }

.iroha-inter-card--2 .iroha-inter-card__icon { background: linear-gradient(135deg, #fff1d6, #fffaf0); color: #ff9a3c; box-shadow: 0 10px 20px -10px rgba(255,154,60,.5), inset 0 -3px 8px rgba(255,154,60,.08), inset 0 1px 0 rgba(255,255,255,.9); }
.iroha-inter-card--3 .iroha-inter-card__icon { background: linear-gradient(135deg, #dcf2e0, #f3fbf3); color: #4ea66c; box-shadow: 0 10px 20px -10px rgba(78,166,108,.45), inset 0 -3px 8px rgba(78,166,108,.08), inset 0 1px 0 rgba(255,255,255,.9); }
.iroha-inter-card--4 .iroha-inter-card__icon { background: linear-gradient(135deg, #d8ecf9, #f1f8fc); color: #4c95cb; box-shadow: 0 10px 20px -10px rgba(76,149,203,.45), inset 0 -3px 8px rgba(76,149,203,.08), inset 0 1px 0 rgba(255,255,255,.9); }
.iroha-inter-card--5 .iroha-inter-card__icon { background: linear-gradient(135deg, #ead6f8, #f7f0fd); color: #9968cf; box-shadow: 0 10px 20px -10px rgba(153,104,207,.45), inset 0 -3px 8px rgba(153,104,207,.08), inset 0 1px 0 rgba(255,255,255,.9); }

.iroha-inter-card--2::after { background: radial-gradient(circle, rgba(255,200,120,.45), transparent 70%); }
.iroha-inter-card--3::after { background: radial-gradient(circle, rgba(150,220,170,.45), transparent 70%); }
.iroha-inter-card--4::after { background: radial-gradient(circle, rgba(150,200,235,.45), transparent 70%); }
.iroha-inter-card--5::after { background: radial-gradient(circle, rgba(200,160,235,.45), transparent 70%); }

.iroha-inter-card__title {
  margin: 4px 0 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #c8375d;
  letter-spacing: .04em;
  line-height: 1.4;
}
.iroha-inter-card--2 .iroha-inter-card__title { color: #d27a16; }
.iroha-inter-card--3 .iroha-inter-card__title { color: #2f8a51; }
.iroha-inter-card--4 .iroha-inter-card__title { color: #2f7bb3; }
.iroha-inter-card--5 .iroha-inter-card__title { color: #7a4abd; }

.iroha-inter-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 900;
  color: #2a1820;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  letter-spacing: .02em;
}

@media (max-width: 1080px) {
  .iroha-inter__inner { grid-template-columns: 1fr; gap: 36px; }
  .iroha-inter__grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 820px) {
  .iroha-inter { padding: 40px 16px 52px; }
  .iroha-inter__inner { grid-template-columns: 1fr; gap: 28px; }
  .iroha-inter__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .iroha-inter-card {
    padding: 18px 12px 16px;
    border-radius: 18px;
    gap: 8px;
  }
  .iroha-inter-card--1 { grid-column: 1; grid-row: 1; }
  .iroha-inter-card--2 { grid-column: 2; grid-row: 1; }
  .iroha-inter-card--3 { grid-column: 1 / -1; grid-row: 2; max-width: 70%; margin: 0 auto; }
  .iroha-inter-card--4 { grid-column: 1; grid-row: 3; }
  .iroha-inter-card--5 { grid-column: 2; grid-row: 3; }
  .iroha-inter-card__icon { width: 46px; height: 46px; }
  .iroha-inter-card__icon svg { width: 22px; height: 22px; }
  .iroha-inter-card__num { font-size: 18px; top: 8px; right: 10px; }
  .iroha-inter-card__title { font-size: 13px; }
  .iroha-inter-card__text { font-size: 11px; line-height: 1.55; }
}

/* Service section floating characters */
body .iroha-service .iroha-service__char {
  position: absolute !important;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(232, 83, 123, .22));
  animation: iroha-feat-char-bob 4.8s ease-in-out infinite;
}
body .iroha-service .iroha-service__char--logo {
  top: 28px;
  left: 2.5%;
  width: clamp(130px, 14vw, 190px);
  --rot: -4deg;
  animation-delay: 0s;
}
body .iroha-service .iroha-service__char--forest {
  bottom: 28px;
  right: 8px;
  width: clamp(130px, 14vw, 190px);
  --rot: 4deg;
  animation-delay: -2.4s;
}
@media (max-width: 820px) {
  body .iroha-service .iroha-service__char--logo { top: 10px; left: 2%; width: 96px; }
  body .iroha-service .iroha-service__char--forest { bottom: 10px; right: 2%; width: 96px; }
}

/* ================================================================
   NEW SERVICE SECTION (iroha-service) — pink-tuned to match hero
   ================================================================ */
.iroha-service {
  position: relative;
  padding: 90px 24px 140px;
  background: #ffffff;
  overflow: hidden;
}

/* Service → Intervention wave divider */
body .iroha-service > .iroha-service__wave {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  top: auto !important;
  width: 100% !important;
  height: clamp(50px, 6vw, 80px) !important;
  display: block !important;
  pointer-events: none;
  z-index: 3;
}
.iroha-service__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* soft decorative blobs in the background */
.iroha-service::before,
.iroha-service::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.iroha-service::before {
  width: 440px; height: 440px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, #ffd0dc 0%, transparent 70%);
}
.iroha-service::after {
  width: 380px; height: 380px;
  bottom: -140px; right: -100px;
  background: radial-gradient(circle, #ffe3a8 0%, transparent 70%);
}

/* --- Head (ABOUT-US style: big English + small JP) --- */
.iroha-service__head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.iroha-service__en {
  display: block;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: .08em;
  color: #2a1a22;
}
.iroha-service__ja {
  margin: 10px 0 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: .26em;
  color: #6b5158;
}
.iroha-service__divider {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
}
.iroha-service__divider span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.iroha-service__divider span:nth-child(1) { background: #ff8aa4; }
.iroha-service__divider span:nth-child(2) { background: #ffd96b; }
.iroha-service__divider span:nth-child(3) { background: #b6dca7; }
.iroha-service__divider span:nth-child(4) { background: #a5d4ef; }
.iroha-service__divider span:nth-child(5) { background: #b68be3; }

/* --- Card grid --- */
.iroha-service__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

/* --- Card base --- */
.iroha-svc-card {
  position: relative;
  border-radius: 28px;
  padding: 72px 36px 40px;
  background: #ffffff;
  box-shadow: 0 28px 54px -24px rgba(232, 83, 123, .28),
              0 10px 26px -16px rgba(232, 83, 123, .18);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1);
  overflow: visible;
}
.iroha-svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 28px 28px 0 0;
  z-index: 1;
}
.iroha-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 68px -26px rgba(232, 83, 123, .36),
              0 14px 30px -18px rgba(232, 83, 123, .22);
}

/* --- Age badge (pill floating above card top edge) --- */
.iroha-svc-card__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  color: #ffffff;
  z-index: 4;
  box-shadow: 0 12px 22px -8px rgba(0,0,0,.28);
  white-space: nowrap;
  border: 3px solid #ffffff;
}

/* --- Titles --- */
.iroha-svc-card__title {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  line-height: 1.3;
  color: #2a1a22;
  letter-spacing: .02em;
}
.iroha-svc-card__sub {
  margin: 0 auto 24px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  color: #ffffff;
  width: fit-content;
  border-radius: 999px;
  letter-spacing: .04em;
}
.iroha-svc-card .iroha-svc-card__desc,
body .iroha-service .iroha-svc-card .iroha-svc-card__desc {
  margin: 0 0 30px !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  color: #1f0f15 !important;
  font-weight: 600 !important;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
  text-align: justify !important;
  text-justify: inter-ideograph !important;
  text-wrap: pretty !important;
  word-break: normal !important;
  line-break: strict !important;
  hanging-punctuation: allow-end !important;
}

/* --- CTA button --- */
.iroha-svc-card__btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: .12em;
  font-family: "Zen Maru Gothic", sans-serif;
  transition: transform .3s, filter .3s, box-shadow .3s;
  box-shadow: 0 14px 24px -10px rgba(0, 0, 0, .28);
  position: relative;
  overflow: hidden;
}
.iroha-svc-card__btn::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transform: translateX(0);
  transition: transform .3s;
  font-weight: 700;
}
.iroha-svc-card__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 30px -10px rgba(0, 0, 0, .34);
}
.iroha-svc-card__btn:hover::after { transform: translateX(4px); }

/* --- Pink variant (left card: 0-6) --- */
.iroha-svc-card--blue {
  background: linear-gradient(172deg, #ffffff 55%, #fff0f4 100%);
}
.iroha-svc-card--blue::before {
  background: linear-gradient(90deg, #ff6a8e, #ffabc0);
}
.iroha-svc-card--blue .iroha-svc-card__badge {
  background: linear-gradient(135deg, #ff6a8e, #ffabc0);
}
.iroha-svc-card--blue .iroha-svc-card__sub {
  background: linear-gradient(135deg, #ffd4dd, #ffb9c7);
  color: #7a2333;
}
.iroha-svc-card--blue .iroha-svc-card__btn {
  background: linear-gradient(135deg, #ff4f77, #ff87a5);
}

/* --- Warm variant (right card: 7-18) --- */
.iroha-svc-card--yellow {
  background: linear-gradient(172deg, #ffffff 55%, #fff8e4 100%);
}
.iroha-svc-card--yellow::before {
  background: linear-gradient(90deg, #ffb347, #ffd88a);
}
.iroha-svc-card--yellow .iroha-svc-card__badge {
  background: linear-gradient(135deg, #ff9a3c, #ffc45e);
}
.iroha-svc-card--yellow .iroha-svc-card__sub {
  background: linear-gradient(135deg, #fff1c2, #ffe199);
  color: #7a4a10;
}
.iroha-svc-card--yellow .iroha-svc-card__btn {
  background: linear-gradient(135deg, #f08a1e, #ffb54a);
}

/* --- Responsive --- */
@media (max-width: 820px) {
  .iroha-service { padding: 64px 18px 80px; }
  .iroha-service__list { grid-template-columns: 1fr; gap: 26px; }
  .iroha-svc-card { padding: 50px 26px 32px; }
  .iroha-svc-card__title { margin-top: 26px; font-size: 22px; }
}

/* Features → Intervention wave divider */
body .tc-features > .iroha-feat__wave {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  top: auto !important;
  width: 100% !important;
  height: clamp(50px, 6vw, 80px) !important;
  display: block !important;
  pointer-events: none;
  z-index: 3;
}
body .tenri-clone .tc-features::before,
body .tenri-clone .tc-features::after,
body section.tc-features::before,
body section.tc-features::after { display: none !important; }
body .tc-features .tc-features-head { margin-bottom: 0 !important; max-width: 920px !important; }
body .tc-features .tc-features-head .tc-sec-title .tc-ja,
body .tc-features .tc-features-head .tc-ja {
  color: #2a1a22 !important;
  font-weight: 900 !important;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", Nunito, sans-serif !important;
  letter-spacing: .06em !important;
}
body .tc-features .tc-features-head p { font-size: 15px !important; line-height: 1.85 !important; margin-top: 10px !important; white-space: nowrap !important; text-align: center !important; font-weight: 700 !important; color: #2a1a22 !important; }
body .tc-features .tc-features-wrap { margin-top: 16px !important; }
body .tc-features .tc-features-list { margin-top: 0 !important; }
body .tc-features .tc-features-list li {
  padding: 0 !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 40px -18px rgba(232, 83, 123, .28), 0 6px 18px -10px rgba(232, 83, 123, .18) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1) !important;
}
body .tc-features .tc-features-list li:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 50px -20px rgba(232, 83, 123, .38), 0 10px 22px -12px rgba(232, 83, 123, .22) !important;
}

/* photo header */
body .iroha-feat-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fce7ee;
}
body .iroha-feat-card__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
body .tc-features .tc-features-list li:hover .iroha-feat-card__photo img {
  transform: scale(1.06);
}
body .iroha-feat-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,245,248,.85) 100%);
  pointer-events: none;
}

/* colored accent bar on top of each card, matching old per-card hues */
body .iroha-feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2;
}
body .iroha-feat-card--study::before { background: linear-gradient(90deg, #ff8aa4, #ffb6c9); }
body .iroha-feat-card--music::before { background: linear-gradient(90deg, #b68be3, #d6b8ff); }
body .iroha-feat-card--sport::before { background: linear-gradient(90deg, #ffb347, #ffd38a); }

/* card body */
body .iroha-feat-card__body {
  padding: 18px 22px 26px !important;
  text-align: center;
}
body .tc-features .tc-features-list li h3 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  margin: 0 0 8px !important;
  color: #c8375d !important;
  font-weight: 700 !important;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif !important;
}
body .tc-features .tc-features-list li p {
  font-size: 14px !important;
  line-height: 1.85 !important;
  margin: 0 !important;
  color: #1f0f15 !important;
  font-weight: 600 !important;
  text-align: left !important;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif !important;
}

/* layout tightening */
body .tc-features .tc-features-list {
  display: flex !important;
  gap: 28px !important;
  justify-content: center !important;
}
body .tc-features .tc-features-list li {
  flex: 1 1 0 !important;
  max-width: 300px !important;
  margin-right: 0 !important;
  position: relative !important;
}
@media (max-width: 820px) {
  body .tc-features .tc-features-list {
    flex-direction: column !important;
    align-items: center !important;
  }
  body .tc-features .tc-features-list li {
    max-width: 420px !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
}

/* ===== Mobile footer compact (SP only) ===== */
@media (max-width: 640px) {
  body .iroha-footer { padding: 22px 16px 14px !important; }
  body .iroha-footer__inner { gap: 0 !important; }
  body .iroha-footer__grid { gap: 14px !important; row-gap: 14px !important; }

  body .iroha-footer__brand { gap: 6px !important; }
  body .iroha-footer__logo-img { width: 150px !important; height: auto !important; }
  body .iroha-footer__tagline {
    margin: 4px 0 0 !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
  }

  body .iroha-footer__info { padding: 0 !important; gap: 0 !important; }
  body .iroha-footer__name {
    margin: 0 0 8px !important;
    padding-bottom: 6px !important;
    font-size: 13px !important;
  }
  body .iroha-footer__info .iroha-footer__line {
    padding: 3px 0 !important;
    margin: 0 !important;
    gap: 8px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
  body .iroha-footer__info .iroha-footer__line span {
    min-width: 42px !important;
    font-size: 10px !important;
  }

  body .iroha-footer__nav { padding-top: 6px !important; }
  body .iroha-footer__nav ul {
    column-gap: 16px !important;
    row-gap: 6px !important;
  }
  body .iroha-footer__nav a {
    padding: 3px 0 !important;
    font-size: 12px !important;
    gap: 7px !important;
  }

  body .iroha-footer__copy {
    padding: 6px 16px 8px !important;
    font-size: 9.5px !important;
    letter-spacing: .1em !important;
    line-height: 1.5 !important;
  }
  body .iroha-footer__copy::before {
    margin: 0 auto 5px !important;
  }
}
