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

html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  background: #fdf8f0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --orange: #ff7e5f;
  --orange-d: #feb47b;
  --green: #2ecc71;
  --green-d: #27ae60;
  --yellow: #f1c40f;
  --cream: #ffffff;
  --text: #2c3e50;
  --text-mid: #95a5a6;
  --hdr-h: 80px;
  --gradient-main: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  --gradient-accent: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}



/* ══════════════════════════════
   HEADER  — flush to top, full width, always visible
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-h);
  z-index: 200;
  border-radius: 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* ── Nav groups ── */
.nav-group {
  display: flex;
  align-items: stretch;
  list-style: none;
}

.nav-group.left {
  justify-content: flex-end;
}

.nav-group.right {
  justify-content: flex-start;
}

.nav-group li {
  flex: 0 0 auto;
}

.nav-group li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 0 14px;
  width: 110px;
  text-decoration: none;
  border-left: 1px solid rgba(58, 46, 34, 0.08);
  position: relative;
  transition: background .22s;
  border-radius: 0;
}

.nav-group.right li:last-child a {
  border-right: 1px solid rgba(58, 46, 34, 0.08);
  border-radius: 0;
}

.nav-group.left li:first-child a {
  border-radius: 0;
}

.nav-group li a:hover {
  background: rgba(224, 122, 58, 0.06);
}

/* bottom accent line on hover */
.nav-group li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}

.nav-group li a:hover::after {
  transform: scaleX(1);
}

/* Nav icon — always orange */
.nav-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-icon svg {
  width: 26px;
  height: 26px;
}

.nav-group li a:hover .nav-icon svg {
  opacity: 0.75;
}

/* Nav text — always brown */
.nav-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  color: var(--text);
}

.nav-en {
  display: none;
}

/* ── Center Logo ── */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 28px;
  text-decoration: none;
  border-left: 1px solid rgba(58, 46, 34, 0.08);
  border-right: 1px solid rgba(58, 46, 34, 0.08);
}

.logo-emblem {
  width: 44px;
  height: 44px;
}

.logo-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: var(--green-d);
  line-height: 1;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  line-height: 1;
}

/* ══════════════════════════════
   FV WRAPPER — exactly 100vh, no scroll needed
══════════════════════════════ */
.fv {
  position: relative;
  width: 100%;
  height: 768px;
  background: var(--cream);
}

/* ── Main image area — centered accounting for side elements ── */
.fv-stage {
  position: absolute;
  /* left edge: after counter area (160px) */
  left: 160px;
  /* right edge: before float buttons (72px) */
  right: 72px;
  top: calc(var(--hdr-h) + 20px);
  bottom: 28px;
}

/* Image fills the stage */
.fv-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ── Slide images ── */
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation: none;
}

.slide.active .slide-bg {
  animation: kenburns 7s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.0) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

.slide:nth-child(2n).active .slide-bg {
  animation: kenburns-r 7s ease-in-out forwards;
}

@keyframes kenburns-r {
  0% {
    transform: scale(1.12) translate(1%, 1%);
  }

  100% {
    transform: scale(1.0) translate(0, 0);
  }
}

.slide-1 .slide-bg,
.slide-2 .slide-bg,
.slide-3 .slide-bg {
  background-color: #c8d8c0;
}

.fv-stage-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.0) 30%,
      rgba(0, 0, 0, 0.0) 45%,
      rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 5;
  border-radius: 20px;
}

/* ══════════════════════════════
   SLIDE COUNTER  (left of image)
══════════════════════════════ */
.slide-counter-wrap {
  position: absolute;
  left: 90px;
  top: calc(var(--hdr-h) + 20px);
  bottom: 28px;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.counter-current {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.counter-sep {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--orange), rgba(106, 158, 112, 0.4));
}

.counter-total {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1;
}

.counter-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(106, 158, 112, 0.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
  outline: none;
}

.cdot.active {
  background: var(--orange);
  height: 18px;
  border-radius: 3px;
}

/* ══════════════════════════════
   CATCHCOPY — bold, centered, impactful
══════════════════════════════ */
.fv-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 48px 32px 28px;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.0) 100%);
}

.copy-main {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.06em;
  line-height: 1;
  /* にじみの原因だった text-shadow を削除しました */
}

.copy-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  margin: 10px auto 8px;
  border-radius: 2px;
}

.copy-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.18em;
  line-height: 1.7;
  /* にじみの原因だった text-shadow を削除しました */
}

/* ══════════════════════════════
   BLOG BUTTON — big, bold, unmissable
══════════════════════════════ */
.blog-btn {
  position: absolute;
  left: 80px;
  bottom: -4px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(255, 126, 95, 0.4);
  transition: all 0.3s ease;
  animation: blog-pulse 3s infinite;
}

@keyframes blog-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(224, 122, 58, 0.2), 0 0 0 12px rgba(224, 122, 58, 0.08), 0 14px 40px rgba(224, 122, 58, 0.55);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(224, 122, 58, 0.25), 0 0 0 22px rgba(224, 122, 58, 0.1), 0 18px 50px rgba(224, 122, 58, 0.6);
  }
}

.blog-btn:hover {
  background: var(--orange-d);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 0 10px rgba(224, 122, 58, 0.25), 0 18px 50px rgba(224, 122, 58, 0.65);
}

.blog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.blog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}

/* Float button colour variants */
.float-btn--tel {
  background: var(--green);
}

.float-btn--tel:hover {
  background: var(--green-d);
}

.float-btn--hp {
  background: #7a6a58;
}

.float-btn--hp:hover {
  background: #5a4e42;
}

/* ══════════════════════════════
   FLOATING RIGHT BUTTONS
══════════════════════════════ */
.float-right {
  position: fixed;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 46px;
  padding: 16px 0;
  background: var(--orange);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.18);
  transition: background .22s, width .22s;
  overflow: hidden;
}

.float-btn:hover {
  background: var(--orange-d);
  width: 52px;
}

.float-btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn-icon svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.float-btn-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
}

.float-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-right: 10px;
}

.float-sns-link {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #9a8a7a;
  transition: color .22s, transform .22s;
}

.float-sns-link:hover {
  color: var(--orange);
  transform: scale(1.15);
}

.float-sns-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 310;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════
   DRAWER
══════════════════════════════ */
.sp-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 290;
  pointer-events: none;
}

.sp-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .3s;
}

.sp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 82vw);
  height: 100%;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
}

.sp-drawer.open {
  pointer-events: auto;
}

.sp-drawer.open .sp-drawer-overlay {
  opacity: 1;
}

.sp-drawer.open .sp-drawer-panel {
  transform: translateX(0);
}

.sp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(58, 46, 34, 0.08);
}

.sp-drawer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.sp-drawer-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.1em;
}

.sp-drawer-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-mid);
  border-radius: 50%;
  transition: background .2s;
}

.sp-drawer-close:hover {
  background: rgba(58, 46, 34, 0.06);
}

.sp-drawer-nav {
  list-style: none;
  padding: 8px 0;
  flex: 1;
}

.sp-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(58, 46, 34, 0.05);
  transition: background .2s;
}

.sp-drawer-nav li a:hover {
  background: rgba(224, 122, 58, 0.06);
}

.sp-drawer-nav li a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-drawer-sep {
  height: 1px;
  background: rgba(58, 46, 34, 0.1);
  margin: 8px 18px;
}

.sp-drawer-actions {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sp-drawer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.sp-drawer-actions .dact-tel {
  background: var(--green);
}

.sp-drawer-actions .dact-hp {
  background: #7a6a58;
}

.sp-drawer-actions svg {
  width: 18px;
  height: 18px;
}

.sp-drawer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 4px 16px 24px;
}

.sp-drawer-sns a {
  color: var(--text-mid);
  transition: color .2s;
}

.sp-drawer-sns a:hover {
  color: var(--orange);
}

.sp-drawer-sns svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* ══════════════════════════════
   BOTTOM CTA BAR (SP only, FV通過後に出現)
══════════════════════════════ */
.sp-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  grid-template-columns: 1fr 1fr;
  height: 62px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.13);
}

.sp-bottom-cta.visible {
  transform: translateY(0);
}

.sp-bcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sp-bcta-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-bcta-tel {
  background: var(--green);
}

.sp-bcta-web {
  background: var(--orange);
}

/* ══════════════════════════════
   RESPONSIVE ≤ 768px
══════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --hdr-h: 60px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 0 8px;
    gap: 0;
  }

  .nav-group.left {
    display: none;
  }

  .nav-group.right {
    display: none;
  }

  .header-logo {
    border: none;
    padding: 0;
    justify-content: center;
    grid-column: 2;
  }

  .logo-emblem {
    width: 34px;
    height: 34px;
  }

  .logo-ja {
    font-size: 14px;
  }

  .logo-en {
    display: none;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .sp-drawer {
    display: block;
  }

  .fv {
    height: 667px;
  }

  .fv-stage {
    left: 10px;
    right: 10px;
    top: calc(var(--hdr-h) + 10px);
    bottom: 10px;
  }

  .fv-stage-inner::after {
    background: none;
  }

  .slide-counter-wrap {
    display: none;
  }

  .copy-main {
    font-size: clamp(22px, 7vw, 34px);
    text-shadow: none;
    /* スマホ時に確実に影を消す */
  }

  .copy-sub {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #000;
    text-shadow: none;
    /* スマホ時に確実に影を消す */
  }

  .fv-copy {
    top: auto;
    bottom: 25px;
    left: 15px;
    right: 15px;
    transform: none;
    padding: 24px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .blog-btn {
    display: none;
  }

  .blog-ja {
    font-size: 17px;
  }

  .float-right {
    display: none;
  }

  .sp-bottom-cta {
    display: grid;
  }
}

/* ══════════════════════════════
   NEW SECTIONS (Tailwind Interoperability)
══════════════════════════════ */
/* Optional Custom Overrides for Gallery & Swiper */


.bg-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@supports (-webkit-touch-callout: none) {
  .bg-parallax {
    background-attachment: scroll;
  }
}

.swiper-pagination-bullet {
  background: #4caf50 !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

/* ══════════════════════════════
   CONCERNS SECTION — Dynamic Premium Design
══════════════════════════════ */
.concerns-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  overflow: hidden;
}

/* Floating orbs */
.concerns-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.concerns-orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4caf50 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: orb-float-1 8s ease-in-out infinite;
}

.concerns-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #e07a3a 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  animation: orb-float-2 10s ease-in-out infinite;
}

.concerns-orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f0b840 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float-3 12s ease-in-out infinite;
}

@keyframes orb-float-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 30px) scale(1.1);
  }
}

@keyframes orb-float-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, -40px) scale(1.15);
  }
}

@keyframes orb-float-3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }

  50% {
    transform: translate(-40%, -60%) scale(1.2);
    opacity: 0.3;
  }
}

.concerns-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Section Headings (Shared) ── */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--green-d);
  margin: 0 0 6px;
  line-height: 1;
}

.section-heading-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.section-heading-line {
  width: 50px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--green), var(--orange), transparent);
  border-radius: 2px;
}

/* Light variant for dark backgrounds (e.g. Concerns section) */
.section-heading--light .section-heading-title {
  color: rgba(255, 255, 255, 0.9);
}

.section-heading--light .section-heading-sub {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading--light .section-heading-line {
  background: linear-gradient(90deg, transparent, #4caf50, #e07a3a, transparent);
  height: 3px;
  width: 60px;
}

/* ── Layout ── */
.concerns-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* ── Image ── */
.concerns-image-wrap {
  flex-shrink: 0;
  width: 42%;
  position: relative;
  align-self: stretch;
}

.concerns-image-glow {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: conic-gradient(from 0deg,
      #4caf50, #a5d6a7, #e07a3a, #f0b840, #4caf50);
  animation: border-spin 6s linear infinite;
  z-index: 0;
  filter: blur(2px);
}

@keyframes border-spin {
  0% {
    filter: blur(2px) hue-rotate(0deg);
  }

  100% {
    filter: blur(2px) hue-rotate(360deg);
  }
}

.concerns-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #1a2a1a;
  padding: 4px;
  height: 100%;
}

.concerns-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.concerns-image-wrap:hover .concerns-image {
  transform: scale(1.05);
}

/* Floating badge */
.concerns-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 10;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e07a3a, #f0b840);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 4px 20px rgba(224, 122, 58, 0.5),
    0 0 0 4px rgba(224, 122, 58, 0.2);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(224, 122, 58, 0.5), 0 0 0 4px rgba(224, 122, 58, 0.2);
  }

  50% {
    box-shadow: 0 6px 28px rgba(224, 122, 58, 0.6), 0 0 0 8px rgba(224, 122, 58, 0.15);
  }
}

.concerns-badge-icon {
  font-size: 18px;
  line-height: 1;
}

.concerns-badge-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

/* ── Content ── */
.concerns-content {
  flex: 1;
  min-width: 0;
}

.concerns-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.concerns-subtitle-accent {
  display: inline-block;
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, #4caf50, #e07a3a);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Concern list ── */
.concerns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concern-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: default;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;

  /* Scroll-reveal animation */
  opacity: 0;
  transform: translateX(30px);
  animation: concern-reveal 0.6s ease forwards;
  animation-delay: calc(var(--item-delay, 0) * 0.1s + 0.3s);
}

@keyframes concern-reveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Shine sweep on hover */
.concern-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.concern-item:hover::before {
  left: 100%;
}

.concern-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(76, 175, 80, 0.12);
}

.concern-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s;
}

.concern-item:hover .concern-number {
  opacity: 1;
  color: #a5d6a7;
  transform: scale(1.1);
}

.concern-text {
  flex: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.concern-item:hover .concern-text {
  color: #fff;
}

.concern-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  transition: all 0.3s;
}

.concern-item:hover .concern-arrow {
  color: #4caf50;
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .concerns-section {
    padding: 70px 16px;
  }

  .concerns-heading {
    margin-bottom: 40px;
  }

  .concerns-layout {
    flex-direction: column;
    gap: 36px;
  }

  .concerns-image-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .concerns-image-frame {
    height: auto;
  }

  .concerns-image {
    height: auto;
  }

  .concerns-badge {
    width: 72px;
    height: 72px;
    bottom: -10px;
    right: -10px;
  }

  .concerns-badge-icon {
    font-size: 15px;
  }

  .concerns-badge-text {
    font-size: 10px;
  }

  .concerns-subtitle {
    font-size: 20px;
    justify-content: center;
  }

  .concern-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .concern-text {
    font-size: 16px;
  }

  .concern-number {
    font-size: 17px;
    width: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .concerns-layout {
    gap: 30px;
  }

  .concerns-image-wrap {
    width: 38%;
  }
}

/* ══════════════════════════════
   ABOUT SECTION — Dynamic Premium (Warm)
══════════════════════════════ */
.about-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 100px 24px;
  margin-bottom: 80px;
  background: linear-gradient(180deg, #fdf8f0 0%, #f0ebe0 50%, #fdf8f0 100%);
  overflow: hidden;
}

/* Subtle dot pattern */
.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(106, 158, 112, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Floating decorative shapes */
.about-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-float--1 {
  width: 280px;
  height: 280px;
  border: 2px solid rgba(165, 214, 167, 0.15);
  top: -60px;
  right: -80px;
  animation: about-drift 14s ease-in-out infinite;
}

.about-float--2 {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(224, 122, 58, 0.1);
  bottom: -40px;
  left: -40px;
  animation: about-drift 18s ease-in-out infinite reverse;
}

@keyframes about-drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -15px) rotate(10deg);
  }
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading styles removed and replaced by global .section-heading */

/* ── Main layout ── */
.about-main {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* ── Image column ── */
.about-img-col {
  flex-shrink: 0;
  width: 44%;
  position: relative;
}

/* Decorative ring behind image */
.about-img-deco-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(165, 214, 167, 0.25);
  border-radius: 50%;
  z-index: 0;
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.4;
  }
}

.about-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
  border-radius: 0 0 24px 24px;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-col:hover .about-img {
  transform: scale(1.04);
}

/* Year badge */
.about-year {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-year-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--green-d);
  line-height: 1;
}

.about-year-unit {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-mid);
}

/* ── Text column ── */
.about-text-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.about-title {
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #3a405a;
  line-height: 1.5;
  margin: 0 0 28px;
  padding-left: 20px;
}

.about-title-line {
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  background: linear-gradient(to bottom, var(--green), var(--orange));
  border-radius: 2px;
}

.about-body {
  margin-bottom: 32px;
}

.about-para {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  color: #7a6a58;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  padding-left: 20px;
  border-left: 2px solid rgba(165, 214, 167, 0.3);
  transition: border-color 0.3s;
}

.about-para:last-child {
  margin-bottom: 0;
}

.about-para:hover {
  border-left-color: var(--green);
}

/* ── Stats strip ── */
.about-stats {
  display: flex;
  gap: 12px;
}

.about-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(165, 214, 167, 0.2);
  border-radius: 14px;
  transition: all 0.3s;
}

.about-stat:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 158, 112, 0.12);
}

.about-stat-icon {
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 214, 167, 0.15);
  border-radius: 10px;
  transition: all 0.3s;
}

.about-stat:hover .about-stat-icon {
  background: var(--green);
  color: #fff;
}

.about-stat-val {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.about-stat-lbl {
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-section {
    padding: 70px 16px;
    margin-bottom: 60px;
  }

  .about-heading {
    margin-bottom: 40px;
  }

  .about-main {
    flex-direction: column;
    gap: 36px;
  }

  .about-img-col {
    width: 100%;
  }

  .about-img {
    min-height: 280px;
    height: 280px;
  }

  .about-img-deco-ring {
    width: 80px;
    height: 80px;
    top: -12px;
    left: -12px;
  }

  .about-title {
    font-size: 22px;
    text-align: center;
    padding-left: 0;
  }

  .about-title-line {
    display: none;
  }

  .about-para {
    padding-left: 14px;
    font-size: 16px;
  }

  .about-stats {
    flex-direction: column;
    gap: 10px;
  }

  .about-year {
    bottom: 16px;
    left: 16px;
    padding: 8px 14px;
  }

  .about-year-num {
    font-size: 26px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-main {
    gap: 36px;
  }

  .about-img-col {
    width: 40%;
  }
}

/* ══════════════════════════════
   GALLERY MODAL
══════════════════════════════ */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 5;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-modal.active .modal-content {
  transform: scale(1);
}

.modal-content img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* ══════════════════════════════
   INSTAGRAM STYLES
══════════════════════════════ */
.insta-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.float-btn--insta {
  background: linear-gradient(45deg, #f09433, #bc1888) !important;
}

.float-btn--insta:hover {
  filter: brightness(1.1);
}

.dact-insta {
  background: linear-gradient(45deg, #f09433, #bc1888) !important;
}

.sp-bcta-insta {
  background: linear-gradient(45deg, #f09433, #bc1888) !important;
}

@media (max-width: 768px) {
  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 40px;
}

.modal-next {
  right: 40px;
}

@media (max-width: 1024px) {
  .modal-prev {
    left: 20px;
  }

  .modal-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .modal-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .modal-prev {
    left: 5px;
  }

  .modal-next {
    right: 5px;
  }
}

/* ── Teal Return Button (Replaces back-to-top) ── */
.teal-return-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #19bab5;
  /* Vibrant Teal from the image */
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  /* Top level */
  box-shadow: 0 4px 18px rgba(25, 186, 181, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.teal-return-btn i {
  font-size: 24px;
}

.teal-return-btn:hover {
  transform: translateY(-5px) scale(1.08);
  background: #16a5a1;
  box-shadow: 0 8px 25px rgba(25, 186, 181, 0.45);
}

@media (max-width: 768px) {
  .teal-return-btn {
    bottom: 85px;
    /* Stay above mobile bottom CTA bar */
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

/* ══════════════════════════════
   OPENING SEQUENCE & RESET BTN
   (Newly Added)
══════════════════════════════ */

/* Opening Overlay */
.opening-sequence {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  z-index: 9900;
  /* Over everything */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
  pointer-events: auto;
}

.opening-sequence.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.opening-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: opening-reveal 0.8s ease forwards 0.2s;
}

@keyframes opening-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-emblem-large {
  width: 100px;
  height: 100px;
  animation: logo-spin 4s linear infinite;
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.opening-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.opening-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--green-d);
  letter-spacing: 0.15em;
}

.opening-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  letter-spacing: 0.3em;
}

/* Spinner/Loader bar */
.opening-loader {
  width: 160px;
  height: 2px;
  background: rgba(106, 158, 112, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.opening-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--orange);
  animation: loader-progress 2s cubic-bezier(0.65, 0, 0.35, 1) forwards 0.3s;
}

@keyframes loader-progress {
  to {
    width: 100%;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: #18beb5;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(24, 190, 181, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 26px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #14a098;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(24, 190, 181, 0.45);
}



@media (max-width: 768px) {
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .logo-emblem-large {
    width: 70px;
    height: 70px;
  }

  .opening-ja {
    font-size: 20px;
  }
}
/* --------------------------------------------------
   FLOW SECTION (譲渡までの流れ)
-------------------------------------------------- */
#flow {
    font-family: 'Zen Maru Gothic', sans-serif;
}

#flow .group:hover {
    transform: translateY(-5px);
}

#flow .fa-paw {
    display: inline-block;
}

/* Walking paw prints animation (subtle) */
@keyframes paw-walk {
    0%, 100% { transform: scale(1) rotate(0); opacity: 0.07; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.12; }
}

#flow .absolute i.fa-paw {
    animation: paw-walk 4s ease-in-out infinite;
}

#flow .absolute i.fa-paw:nth-child(2n) {
    animation-delay: 1s;
}

#flow .absolute i.fa-paw:nth-child(3n) {
    animation-delay: 2s;
}

/* --------------------------------------------------
   RECRUITMENT SECTION ADDITIONS
-------------------------------------------------- */
.insta-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

.group:hover .shake-animation {
  display: inline-block;
  animation: shake 0.4s ease-in-out infinite;
}


/* --------------------------------------------------
   RESPONSIVE FIXES
-------------------------------------------------- */
@media (max-width: 375px) {
  .donation-item-bank {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .donation-item-bank .flex-grow {
    width: 100%;
  }
  .donation-item-bank table {
    margin: 0 auto;
  }
}
