/* =============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --navy:      #0a7fa8;
  --navy-mid:  #0e9bc9;
  --navy-light:#1ab5e0;
  --gold:      #f97316;
  --gold-lt:   #fb923c;
  --gold-pale: #fff1e6;
  --sand:      #f0fafd;
  --white:     #ffffff;
  --dark:      #0d2a36;
  --gray:      #4a6a78;
  --gray-lt:   #8fb0be;
  --border:    #b8dfe9;
  --bg-soft:   #f5fcff;
  --coral:     #e8604a;
  --teal:      #0891b2;

  --font-body:    'Noto Sans JP', sans-serif;
  --font-disp:    'Oswald', sans-serif;
  --ease:         cubic-bezier(.4,0,.2,1);
  --shadow-sm:    0 2px 8px rgba(10,127,168,.10);
  --shadow-md:    0 8px 32px rgba(10,127,168,.18);
  --shadow-lg:    0 20px 64px rgba(10,127,168,.22);
  --r:            4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =============================================
   UTILITIES
============================================= */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--sand { background: var(--sand); }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-disp); font-size: .72rem; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }

.section-title {
  font-family: var(--font-disp); font-size: clamp(1.9rem,4vw,3rem);
  font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 18px;
}
.section--navy .section-title { color: var(--white); }
.section-lead { font-size: .95rem; color: var(--gray); font-weight: 300; max-width: 540px; }
.section--navy .section-lead { color: rgba(255,255,255,.65); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; font-size: .88rem; font-weight: 500;
  letter-spacing: .05em; border-radius: var(--r);
  transition: all .3s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-white { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1.5px solid var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn .arrow { font-size: 1.1em; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* fade-up */
.fu { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fu.on { opacity: 1; transform: none; }
.fu.d1 { transition-delay: .1s; } .fu.d2 { transition-delay: .2s; }
.fu.d3 { transition-delay: .3s; } .fu.d4 { transition-delay: .4s; }
.fu.d5 { transition-delay: .5s; }

/* SP専用改行 */
.sp-br { display: none; }
@media (max-width: 768px) { .sp-br { display: inline; } }

/* =============================================
   HEADER
============================================= */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,127,168,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { line-height: 1; display: flex; align-items: center; gap: 10px; }
.logo-en {
  font-family: var(--font-body); font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: .12em;
}
.logo-ja { font-size: .6rem; color: var(--gold-lt); letter-spacing: .16em; margin-top: 3px; }
.logo-img { height: 38px; width: auto; display: block; }

/* desktop nav */
.gnav { display: flex; align-items: center; gap: 2px; }
.gnav-item { position: relative; }
.gnav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: .78rem; color: rgba(255,255,255,.82);
  letter-spacing: .05em; transition: color .25s; white-space: nowrap;
}
.gnav-link:hover, .gnav-link.active { color: var(--gold-lt); }
.gnav-link .chevron { font-size: .65em; transition: transform .25s; }
.gnav-item:hover .chevron { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--gold); min-width: 180px;
  box-shadow: var(--shadow-md); border-radius: 0 0 var(--r) var(--r);
}
.gnav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 18px; font-size: .78rem;
  color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .2s;
}
.dropdown a:last-child { border: none; }
.dropdown a:hover { background: rgba(255,255,255,.06); color: var(--gold-lt); padding-left: 24px; }

.nav-cta {
  margin-left: 8px; background: var(--gold); color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--r); font-weight: 500 !important;
  letter-spacing: .04em !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* mobile nav */
.sp-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 800; overflow-y: auto;
  padding: 16px 0 40px;
}
.sp-nav.open { display: block; }
.sp-nav a {
  display: block; padding: 13px 28px; font-size: .9rem;
  color: rgba(255,255,255,.84); border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-nav .sp-sub a { padding-left: 48px; font-size: .83rem; color: rgba(255,255,255,.6); }
.sp-nav .sp-cta {
  margin: 20px 24px 0; background: var(--gold); color: var(--white);
  text-align: center; border-radius: var(--r); font-weight: 500; border-bottom: none;
  padding: 14px !important;
}

/* =============================================
   FIXED SIDE CTA (SP)
============================================= */
.fixed-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
}
.fixed-cta-inner { display: flex; gap: 8px; }
.fixed-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 10px; border-radius: var(--r); font-size: .8rem; font-weight: 500;
}
.fixed-cta .f-tel { background: var(--teal); color: var(--white); }
.fixed-cta .f-mail { background: var(--gold); color: var(--white); }

/* =============================================
   ▼ PAGE: TOP
============================================= */

/* Hero */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://cdn.kinjo-tosouten.com/wp-content/uploads/2026/04/page-hero-bg2-scaled.webp');
  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,40,60,.55)   0%,
    rgba(10,80,110,.42) 45%,
    rgba(10,127,168,.28) 75%,
    rgba(14,155,201,.15) 100%
  );
}
/* 抽象的な海の波紋 */
.hero-accent-line { display: none; }
.hero-inner {
  position: relative; z-index: 2; padding: 140px 0 100px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 160px; align-items: center;
}
.hero-text { text-shadow: 0 2px 12px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.3); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px; padding: 5px 14px; margin-bottom: 24px;
  font-size: .72rem; color: var(--white); letter-spacing: .15em;
}
.hero-catch {
  font-family: var(--font-disp); font-size: clamp(2rem,4.8vw,3.8rem); white-space: nowrap;
  font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 10px;
}
.hero-catch .gold { color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(1rem,1.6vw,1.15rem); color: rgba(255,255,255,.95);
  font-weight: 400; line-height: 1.9; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-disp); font-size: 2rem; font-weight: 700;
  color: var(--gold-lt); line-height: 1; white-space: nowrap;
}
.stat-num span { font-size: .8rem; margin-left: 2px; }
.stat-label { font-size: .72rem; color: rgba(255,255,255,.85); font-weight: 400; letter-spacing: .02em; line-height: 1.4; }

/* hero visual side */
.hero-visual { position: relative; }
.hero-card-wrap {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-card {
  background: var(--white); border: 1px solid rgba(255,255,255,.9);
  border-radius: 8px; padding: 24px 16px; text-align: center;
  transition: all .4s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 110px;
}
.hero-card:hover { background: var(--white); border-color: var(--gold-lt); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.hero-card:nth-child(1) { margin-top: 0; }
.hero-card:nth-child(3) { margin-top: 0; }
.hero-card:nth-child(4) { margin-top: 0; }
.hero-card-icon { font-size: 2rem; margin-bottom: 8px; }
.hero-card-title { font-size: .82rem; color: var(--navy); font-weight: 700; letter-spacing: .04em; }
.hero-card-title-en { font-size: .64rem; color: var(--gray); font-family: var(--font-disp); letter-spacing: .1em; margin-top: 3px; }

/* 証明バッジ floating */
.hero-cert {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); padding: 10px 20px;
  border-radius: 50px; font-size: .72rem; font-weight: 500; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(14,155,201,.5); letter-spacing: .06em;
}

/* 強みバー */
#strengths { padding: 40px 0; background: var(--navy-light); }
.strengths-bar { display: flex; flex-wrap: wrap; gap: 0; }
.str-item {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-right: 1px solid rgba(255,255,255,.1);
}
.str-item:last-child { border: none; }
.str-icon { font-size: 1.4rem; }
.str-text { font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 400; }
.str-text strong { color: var(--white); display: block; font-size: .92rem; }

/* ===== About Top ===== */
#about-top { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-block { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; border-radius: 8px;
  background: linear-gradient(135deg, #0a7fa8 0%, #1ab5e0 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.4);
}
.img-placeholder .icon { font-size: 3rem; }
.img-placeholder p { font-size: .8rem; letter-spacing: .1em; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.badge-num { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-label { font-size: .6rem; letter-spacing: .1em; margin-top: 2px; }

.philosophy {
  margin-top: 36px; padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--gold); background: var(--white);
  border-radius: 0 var(--r) var(--r) 0;
}
.philosophy p { font-size: .92rem; font-weight: 300; line-height: 2; color: var(--gray); }
.philosophy cite { display: block; margin-top: 12px; font-size: .78rem; color: var(--gray-lt); font-style: normal; }

/* ===== Services Preview ===== */
#services-top {}
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; transition: all .4s var(--ease);
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-card-img {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.svc-card-body { padding: 22px 22px 26px; }
.svc-card-num {
  font-family: var(--font-disp); font-size: .7rem; color: var(--gold);
  letter-spacing: .15em; margin-bottom: 6px;
}
.svc-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card-desc { font-size: .83rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 14px;
  font-size: .78rem; color: var(--gold); font-weight: 500;
}

/* services grid colors */
.svc-c1 { background: linear-gradient(135deg, #0a7fa8, #1ab5e0); }
.svc-c2 { background: linear-gradient(135deg, #f97316, #fb923c); }
.svc-c3 { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.svc-c4 { background: linear-gradient(135deg, #2d7d9a, #3a9dbf); }
.svc-c5 { background: linear-gradient(135deg, #1d6a80, #0e9bc9); }

/* ===== Commitment (こだわり preview) ===== */
#commitment { background: var(--navy); }
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; background: rgba(255,255,255,.08); }
.commit-item {
  padding: 40px 32px; background: rgba(255,255,255,.08);
  transition: background .3s; position: relative; overflow: hidden;
}
.commit-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.commit-item:hover::before { transform: scaleX(1); }
.commit-item:hover { background: rgba(255,255,255,.14); }
.commit-num {
  font-family: var(--font-disp); font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,.08); line-height: 1; margin-bottom: -10px;
}
.commit-icon { font-size: 2rem; margin-bottom: 16px; }
.commit-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.commit-desc { font-size: .83rem; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.9; }

/* ===== Guarantee ===== */
#guarantee { background: var(--gold); padding: 64px 0; }
.guarantee-inner { display: flex; align-items: center; gap: 60px; }
.guarantee-icon { font-size: 5rem; flex-shrink: 0; }
.guarantee-title {
  font-family: var(--font-disp); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.guarantee-desc { font-size: .92rem; color: rgba(255,255,255,.85); font-weight: 300; line-height: 1.9; }
.guarantee-badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.g-badge {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
  color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: .78rem;
}

/* ===== Flow Preview ===== */
#flow-preview { background: var(--bg-soft); }
.flow-steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; counter-reset: step; }
.flow-step {
  display: flex; gap: 32px; align-items: flex-start; padding: 32px 0;
  border-bottom: 1px dashed var(--border); position: relative;
}
.flow-step:last-child { border: none; }
.flow-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-disp); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.flow-num::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: calc(100% + 1px); background: var(--border);
}
.flow-step:last-child .flow-num::after { display: none; }
.flow-body { padding-top: 8px; }
.flow-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.flow-desc { font-size: .85rem; color: var(--gray); font-weight: 300; line-height: 1.85; }

/* ===== Recruit Preview ===== */
#recruit-prev { background: var(--navy); }
.recruit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 56px; }
.recruit-visual {
  aspect-ratio: 4/3; background: linear-gradient(135deg, #0a7fa8 0%, #1ab5e0 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.recruit-visual::after {
  content: '現場スタッフ募集中'; position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: var(--white); padding: 6px 16px;
  border-radius: 50px; font-size: .75rem; font-weight: 500;
}
.recruit-points { display: flex; flex-direction: column; gap: 20px; }
.rp-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  background: rgba(255,255,255,.05); border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08); transition: all .3s;
}
.rp-item:hover { background: rgba(255,255,255,.09); border-color: rgba(14,155,201,.4); }
.rp-icon { font-size: 1.6rem; flex-shrink: 0; }
.rp-title { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.rp-desc { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 300; }

/* ===== FAQ Preview ===== */
#faq-prev { background: var(--sand); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  cursor: pointer; font-weight: 500; font-size: .92rem; transition: all .3s;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q-mark {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-family: var(--font-disp); font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.faq-q-text { flex: 1; }
.faq-chevron { color: var(--gray-lt); transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px 72px; font-size: .88rem; color: var(--gray); font-weight: 300; line-height: 1.9; }
.faq-item.open .faq-a { display: block; }

/* ===== Blog Preview ===== */
#blog-prev {}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: all .35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.bc1 { background: linear-gradient(135deg, #c8eef8, #96d8f0); }
.bc2 { background: linear-gradient(135deg, #daf4fc, #b0e6f8); }
.bc3 { background: linear-gradient(135deg, #e8f8fe, #c4eef8); }
.blog-body { padding: 18px 18px 22px; }
.blog-cat {
  display: inline-block; background: var(--gold-pale); color: var(--gold);
  font-size: .68rem; padding: 2px 10px; border-radius: 2px; margin-bottom: 8px; font-weight: 500;
}
.blog-title { font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.5; margin-bottom: 8px; }
.blog-date { font-size: .72rem; color: var(--gray-lt); }

/* ===== CTA Banner ===== */
#cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-title { font-family: var(--font-disp); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 600; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.cta-desc { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 40px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tel-block { margin-top: 28px; }
.tel-num { font-family: var(--font-disp); font-size: 2rem; color: var(--white); letter-spacing: .05em; }
.tel-note { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* =============================================
   ▼ PAGE: ABOUT
============================================= */
.page-hero {
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
  background-image: url('https://cdn.kinjo-tosouten.com/wp-content/uploads/2026/04/page-hero-bg-scaled.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
/* 写真上のオーバーレイ（テキスト可読性確保） */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,40,60,.88)    0%,
    rgba(10,80,110,.75)  40%,
    rgba(10,127,168,.55) 70%,
    rgba(14,155,201,.35) 100%
  );
  z-index: 0;
}
/* 波装飾（オーバーレイより前面） */
.page-hero::before {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q360 60 720 30 Q1080 0 1440 40 L1440 60 L0 60 Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom/100%;
  pointer-events: none;
  z-index: 2;
}
.page-hero-inner { position: relative; z-index: 3; }
.page-hero-en {
  font-family: var(--font-disp); font-size: clamp(3rem,8vw,6rem);
  font-weight: 700; color: rgba(255,255,255,.06); line-height: 1;
  position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;
}
.page-title { font-family: var(--font-disp); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 600; color: var(--white); line-height: 1.2; }
.breadcrumb { display: flex; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 12px; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* About: サービス内容 */
.service-detail-list { margin-top: 60px; display: flex; flex-direction: column; gap: 60px; }
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-bottom: 60px; border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border: none; padding: 0; }
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
.svc-detail-img {
  aspect-ratio: 4/3; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.svc-num-lg { font-family: var(--font-disp); font-size: .7rem; color: var(--gold); letter-spacing: .2em; margin-bottom: 8px; }
.svc-title-lg { font-family: var(--font-disp); font-size: clamp(1.4rem,3vw,2rem); font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.svc-desc-lg { font-size: .9rem; color: var(--gray); font-weight: 300; line-height: 2; }
.svc-points { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.svc-point {
  display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 400;
}
.svc-point::before { content: '\2713'; color: var(--gold); font-weight: 700; }

/* About: こだわり */
.kodawari-hero {
  background: var(--navy); padding: 80px 0; margin-bottom: 0;
}
.kodawari-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.kodawari-quote {
  font-family: var(--font-disp); font-size: clamp(1.4rem,3vw,2.2rem);
  font-weight: 600; color: var(--white); line-height: 1.25;
}
.kodawari-quote .hl { color: var(--gold-lt); display: block; }
.kodawari-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kd-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 20px; transition: all .3s;
}
.kd-item:hover { background: rgba(255,255,255,.1); border-color: rgba(14,155,201,.5); }
.kd-icon { font-size: 1.8rem; margin-bottom: 10px; }
.kd-title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.kd-text { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.8; }

.kodawari-detail { padding: 80px 0; }
.kd-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.kd-detail-card {
  background: var(--white); border-radius: 8px; padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all .35s var(--ease); text-align: center;
}
.kd-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.kd-num-big { font-family: var(--font-disp); font-size: 4rem; font-weight: 700; color: var(--gold-pale); line-height: 1; }
.kd-icon-big { font-size: 2.8rem; margin-bottom: 12px; }
.kd-title-big { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.kd-text-big { font-size: .85rem; color: var(--gray); font-weight: 300; line-height: 1.9; }

/* About: 会社概要 */
.company-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
  font-size: .9rem;
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:last-child { border: none; }
.company-table th {
  width: 200px; padding: 18px 20px; background: var(--sand);
  font-weight: 500; color: var(--navy); text-align: left; vertical-align: top;
}
.company-table td { padding: 18px 24px; color: var(--gray); font-weight: 300; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--navy);
  color: var(--white); padding: 5px 14px; border-radius: 50px; font-size: .75rem;
  font-weight: 500; margin: 3px 4px 3px 0;
}

/* Map */
.map-area {
  width: 100%; height: 320px; background: linear-gradient(135deg, #d0eef8, #b8e2f2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-top: 40px; border: 1px solid var(--border);
}
.map-placeholder { text-align: center; color: var(--gray); }
.map-placeholder .icon { font-size: 2.5rem; margin-bottom: 8px; }

/* =============================================
   ▼ PAGE: SERVICE
============================================= */
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }

/* =============================================
   ▼ PAGE: RECRUIT
============================================= */
.recruit-hero { padding: 80px 0; background: var(--navy); }
.recruit-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.recruit-msg { font-family: var(--font-disp); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.recruit-msg .gold { color: var(--gold-lt); }
.recruit-sub { font-size: .92rem; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.9; margin-top: 16px; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.benefit-card {
  background: var(--white); border-radius: 8px; padding: 28px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); text-align: center;
  transition: all .35s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.benefit-icon { font-size: 2.4rem; margin-bottom: 12px; }
.benefit-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: .95rem; }
.benefit-desc { font-size: .82rem; color: var(--gray); font-weight: 300; line-height: 1.85; }

.recruit-flow { padding: 80px 0; background: var(--sand); }
.req-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.req-step { text-align: center; position: relative; }
.req-step::after {
  content: '\2192'; position: absolute; right: -12px; top: 24px;
  font-size: 1.2rem; color: var(--gold);
}
.req-step:last-child::after { display: none; }
.req-step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  color: var(--white); font-family: var(--font-disp); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.req-step-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.req-step-desc { font-size: .78rem; color: var(--gray); font-weight: 300; }

.job-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: .88rem; }
.job-table tr { border-bottom: 1px solid var(--border); }
.job-table th { width: 180px; padding: 16px 20px; background: var(--sand); font-weight: 500; color: var(--navy); text-align: left; vertical-align: top; }
.job-table td { padding: 16px 24px; color: var(--gray); font-weight: 300; }

/* =============================================
   ▼ PAGE: FAQ
============================================= */
.faq-section { padding: 80px 0; }
.faq-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.faq-cat-btn {
  padding: 8px 20px; border-radius: 50px; font-size: .8rem; font-weight: 500;
  border: 1.5px solid var(--border); color: var(--gray); transition: all .25s; cursor: pointer;
}
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.trouble-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.trouble-card {
  background: var(--white); border-radius: 8px; padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; gap: 16px; align-items: flex-start; transition: all .3s;
}
.trouble-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.trouble-icon { font-size: 2rem; flex-shrink: 0; color: var(--navy); }
.trouble-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: .95rem; }
.trouble-text { font-size: .83rem; color: var(--gray); font-weight: 300; line-height: 1.85; }

/* =============================================
   ▼ PAGE: BLOG
============================================= */
.blog-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-tag {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: .68rem; padding: 2px 10px; border-radius: 2px; margin-bottom: 8px; font-weight: 500;
}
.blog-excerpt { font-size: .8rem; color: var(--gray); font-weight: 300; margin-top: 6px; line-height: 1.7; }

/* =============================================
   ▼ PAGE: CONTACT
============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info-block { background: var(--navy); border-radius: 8px; padding: 40px 36px; color: var(--white); }
.ci-title { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 600; margin-bottom: 28px; color: var(--gold-lt); }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: 4px; letter-spacing: .1em; }
.ci-value { font-size: .95rem; color: var(--white); font-weight: 400; }
.ci-tel { font-family: var(--font-disp); font-size: 1.8rem; color: var(--gold-lt); }

.contact-form-block {}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .82rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-label .required {
  display: inline-block; background: var(--coral); color: var(--white);
  font-size: .65rem; padding: 1px 6px; border-radius: 2px; margin-left: 6px; vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-body); font-size: .88rem;
  background: var(--white); color: var(--dark); transition: border-color .25s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,127,168,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--gray); }
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.form-submit {
  width: 100%; padding: 16px; background: var(--gold); color: var(--white);
  border-radius: var(--r); font-size: .95rem; font-weight: 700;
  letter-spacing: .08em; cursor: pointer; transition: all .3s var(--ease); border: none;
  font-family: var(--font-body); margin-top: 8px;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-main { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand {}
.footer-logo-en { font-family: var(--font-disp); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: .08em; }
.footer-logo-ja { font-size: .65rem; color: var(--gold-lt); letter-spacing: .14em; margin-top: 2px; margin-bottom: 16px; }
.footer-desc { font-size: .8rem; line-height: 1.9; font-weight: 300; }
.footer-contact { margin-top: 20px; }
.f-tel { font-family: var(--font-disp); font-size: 1.6rem; color: var(--white); }
.f-hours { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 3px; }

.footer-nav-title { font-size: .72rem; color: var(--gold-lt); letter-spacing: .15em; margin-bottom: 14px; font-family: var(--font-disp); }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: .8rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav-list a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* SNS Links */
.sns-links { display: flex; gap: 12px; margin-top: 16px; }
.sns-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  transition: all .3s var(--ease); font-size: 1.2rem;
}
.sns-link:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.sns-link svg { width: 20px; height: 20px; fill: currentColor; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .gnav { display: none; }
  .hamburger { display: flex; }
  .fixed-cta { display: block; }
  body { padding-bottom: 60px; }

  .about-grid, .guarantee-inner, .recruit-grid,
  .contact-grid, .service-detail-list .svc-detail,
  .recruit-hero-inner, .service-intro { grid-template-columns: 1fr; }
  .svc-detail.reverse { direction: ltr; }

  .service-cards, .commit-grid, .kd-detail-grid,
  .benefits-grid, .trouble-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-full-grid { grid-template-columns: 1fr 1fr; }
  .req-steps { grid-template-columns: 1fr 1fr; }
  .req-step::after { display: none; }

  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.10); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.10); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .commit-grid { gap: 0; }
  .company-table th { width: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* --- 追加レスポンシブ修正 --- */
  .hero-catch { white-space: normal; font-size: clamp(1.55rem, 7.5vw, 2.4rem); }
  .hero-inner { padding: 100px 0 60px; }
  .guarantee-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .kodawari-visual { grid-template-columns: 1fr; gap: 32px; }
  .kodawari-items  { grid-template-columns: 1fr; }
  .faq-a { padding: 0 16px 20px 48px; }
  .trouble-card { padding: 20px 16px; gap: 12px; }
  .trouble-icon { font-size: 1.6rem; }
  .job-table th { width: 100px; }
  .kodawari-hero, .kodawari-detail, .recruit-hero, .recruit-flow, .faq-section, #cta-banner, #guarantee { padding-top: 56px; padding-bottom: 56px; }
  .hero-badge { font-size: .62rem; letter-spacing: .08em; }
  .stat-label { font-size: .72rem; word-break: break-all; }
}
@media (max-width: 768px) {
  .page-hero { padding-top: 110px; padding-bottom: 60px; }
}
@media (max-width: 480px) {
  .blog-grid, .blog-full-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* page-hero 太陽モチーフ（右上） */
.page-hero-sun {
  position: absolute; top: 30px; right: 40px;
  width: 140px; height: 140px; opacity: .22;
  pointer-events: none; z-index: 1;
  animation: sunPulse 6s ease-in-out infinite;
}
/* page-hero ヤシ（左下） */
.page-hero-palm {
  position: absolute; bottom: 60px; left: 20px;
  width: 110px; height: 150px; opacity: .20;
  pointer-events: none; z-index: 1;
}
/* page-hero 波紋パターン（中央背景） */
.page-hero-ripple {
  position: absolute; bottom: 60px; right: 180px;
  width: 200px; height: 120px; opacity: .14;
  pointer-events: none; z-index: 1;
}

/* =============================================
   OKINAWA SVG ILLUSTRATIONS
============================================= */

/* --- 波形ディバイダー --- */
.wave-divider {
  position: relative; overflow: hidden; line-height: 0;
  height: 80px; margin-top: -1px;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }
.wave-divider--flip { transform: rotate(180deg); }

/* --- ヒーロー 沖縄イラスト --- */
.hero-okinawa {
  position: absolute; bottom: 0; left: -5%; right: -5%;
  pointer-events: none; overflow: hidden;
  width: 110%;
}
.hero-okinawa svg { display: block; width: 100%; }

/* --- 太陽装飾（右上） --- */
.hero-sun {
  position: absolute; top: 90px; right: 60px;
  width: 180px; height: 180px; opacity: .18;
  pointer-events: none;
  animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { transform: scale(1); opacity: .18; }
  50%      { transform: scale(1.06); opacity: .24; }
}

/* --- 水面波紋（セクション装飾） --- */
.section-ocean {
  position: relative; overflow: hidden;
}
.ocean-pattern {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  opacity: .04; pointer-events: none; overflow: hidden;
}
.ocean-pattern svg { width: 100%; height: 100%; }

/* --- ヤシの木（CTAバナー） --- */
.palm-deco {
  position: absolute; pointer-events: none; overflow: hidden;
}
.palm-left  { left: 0;  bottom: 0; width: 200px; height: 280px; opacity: .18; }
.palm-right { right: 0; bottom: 0; width: 200px; height: 280px; opacity: .18; transform: scaleX(-1); }

/* --- 珊瑚・魚の泡（about-topセクション） --- */
.coral-deco {
  position: absolute; bottom: 0; right: 0;
  width: 260px; height: 180px; opacity: .08;
  pointer-events: none;
}

/* --- セクション内 海紋タイルパターン --- */
.sea-tile-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 Q45 40 60 30' stroke='%230a7fa8' stroke-width='1.5' fill='none' opacity='.3'/%3E%3Cpath d='M0 45 Q15 35 30 45 Q45 55 60 45' stroke='%230a7fa8' stroke-width='1' fill='none' opacity='.2'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: .06;
  pointer-events: none;
}

/* --- 波アニメ（ヒーロー底部） --- */
@keyframes waveFloat {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(-50px); }
}
.wave-anim-1 { animation: waveFloat 8s ease-in-out infinite; }
.wave-anim-2 { animation: waveFloat 11s ease-in-out infinite reverse; }
.wave-anim-3 { animation: waveFloat 14s ease-in-out infinite; }

/* 採用ページ: page-hero → recruit-hero をnavyで接続 */
#page-recruit .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q360 60 720 30 Q1080 0 1440 40 L1440 60 L0 60 Z' fill='%230a7fa8'/%3E%3C/svg%3E") no-repeat bottom/100%;
}
#page-recruit .page-hero { margin-bottom: 0; }
#page-recruit .recruit-hero { margin-top: -2px; }

/* scroll top btn */
#scroll-top {
  position: fixed; bottom: 80px; right: 20px; width: 44px; height: 44px;
  background: var(--navy); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow-md); cursor: pointer; z-index: 700;
  opacity: 0; pointer-events: none; transition: all .3s var(--ease);
}
#scroll-top.show { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

@media (min-width: 769px) {
  #scroll-top { bottom: 24px; right: 24px; }
}

/* =============================================
   OKINAWA MOTIF EXTRAS
============================================= */
@keyframes floatFish   { 0%,100%{transform:translateX(0) translateY(0);} 30%{transform:translateX(18px) translateY(-6px);} 70%{transform:translateX(-10px) translateY(4px);} }
@keyframes floatJelly  { 0%,100%{transform:translateY(0) scaleX(1);} 50%{transform:translateY(-12px) scaleX(1.06);} }
@keyframes swaySeaweed { 0%,100%{transform-origin:bottom center; transform:rotate(0deg);} 50%{transform:rotate(6deg);} }
@keyframes spinStar    { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }
@keyframes hibiscusBob { 0%,100%{transform:translateY(0) rotate(-4deg);} 50%{transform:translateY(-8px) rotate(4deg);} }
.fish-anim    { animation: floatFish   9s  ease-in-out infinite; }
.fish-anim2   { animation: floatFish   13s ease-in-out infinite reverse; }
.jelly-anim   { animation: floatJelly  5s  ease-in-out infinite; }
.hibiscus-bob { animation: hibiscusBob 7s  ease-in-out infinite; }


/* =============================================
   MATERIAL SYMBOLS OUTLINED
============================================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.hero-card-icon .material-symbols-outlined,
.svc-card-img .material-symbols-outlined,
.svc-detail-img .material-symbols-outlined { font-size: 3rem; }
.guarantee-icon .material-symbols-outlined { font-size: 4.5rem; }
.kd-icon-big .material-symbols-outlined  { font-size: 2.6rem; }
.commit-icon .material-symbols-outlined  { font-size: 1.9rem; }
.str-icon .material-symbols-outlined     { font-size: 1.4rem; }
.rp-icon .material-symbols-outlined      { font-size: 1.6rem; }
.benefit-icon .material-symbols-outlined { font-size: 2.2rem; }
.trouble-icon .material-symbols-outlined { font-size: 2rem; }
.ci-icon .material-symbols-outlined      { font-size: 1.4rem; }
.kd-icon .material-symbols-outlined      { font-size: 1.8rem; }
.img-placeholder .icon .material-symbols-outlined { font-size: 3rem; }
