/* ========================================
   GET READY GROUP - TOP PAGE
   eco-works.jp inspired business showcase
   ======================================== */

:root {
  --gold: #C8A25C;
  --gold-light: #e0d0a8;
  --gold-pale: #f7f3eb;
  --dark: #2D2D2D;
  --dark-deep: #1a1a1a;
  --bg-cream: #F7F3ED;
  --bg-white: #ffffff;
  --text: #2D2D2D;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e2d8;

  --esthe: #de1819;
  --esthe-light: #fff0f0;
  --hair: #000000;
  --hair-pink: #E88DA8;
  --hair-light: #f9f0f4;
  --bridal: #426a96;
  --bridal-light: #eef2f9;
  --food: #f285e5;
  --food-light: #fdf0fb;

  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-en: 'Cormorant Garamond', Georgia, serif;

  --header-h: 72px;
  --container: 1160px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-ja); font-size: 15px; line-height: 1.8;
  color: var(--text); background: var(--bg-white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s var(--ease); }
ul, ol { list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pc-only { display: inline; }
.sp-only { display: none; }

/* ========================================
   HEADER
   ======================================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: 0.3s; border-bottom: 1px solid transparent;
}
#site-header.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.06); border-bottom-color: var(--border); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo .logo-en { font-family: var(--font-en); font-weight: 600; font-size: 22px; color: var(--dark); letter-spacing: 2px; }
.logo .logo-ja { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: 2px; }
.nav-list { display: flex; align-items: center; gap: 28px; }
.nav-list a { font-size: 13px; font-weight: 500; color: var(--text); letter-spacing: 0.04em; position: relative; }
.nav-list a:not(.nav-cta)::after { content:''; position: absolute; bottom:-3px; left:0; width:0; height:1px; background: var(--gold); transition:0.3s; }
.nav-list a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--gold); color:#fff!important; padding:8px 20px; border-radius:30px; font-size:12px!important; letter-spacing:0.08em; }
.nav-cta:hover { background: #b8923c; }

.hamburger { display:none; background:none; border:none; cursor:pointer; width:28px; height:20px; position:relative; z-index:1100; }
.hamburger span { display:block; width:100%; height:1.5px; background:var(--dark); position:absolute; left:0; transition:0.3s; }
.hamburger span:nth-child(1){top:0} .hamburger span:nth-child(2){top:9px} .hamburger span:nth-child(3){bottom:0}
.hamburger.active span:nth-child(1){top:9px;transform:rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){bottom:9px;transform:rotate(-45deg)}

.mobile-nav { position:fixed; top:0; right:-100%; width:100%; height:100dvh; background:var(--dark-deep); z-index:1050; transition:right 0.4s var(--ease); display:flex; align-items:center; justify-content:center; }
.mobile-nav.open { right:0; }
.mobile-nav-list { text-align:center; }
.mobile-nav-list li { margin-bottom:24px; }
.mobile-nav-list a { font-size:18px; color:#fff; font-weight:400; letter-spacing:0.1em; }
.mobile-nav-list a:hover { color:var(--gold); }

/* ========================================
   HERO
   ======================================== */
#hero { position:relative; height:100svh; min-height:600px; max-height:1000px; overflow:hidden; }
.hero-slider { position:relative; width:100%; height:100%; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.hero-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(45,45,45,0.55),rgba(45,45,45,0.25)); }
.hero-content { position:absolute; inset:0; z-index:5; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#fff; padding:0 24px; }
.hero-label { font-family:var(--font-serif); font-size:15px; letter-spacing:8px; color:var(--gold-light); margin-bottom:20px; opacity:0; animation:fadeUp 0.8s 0.3s forwards; }
.hero-catch { font-family:var(--font-serif); font-size:clamp(28px,5vw,48px); font-weight:600; line-height:1.5; letter-spacing:0.08em; margin-bottom:20px; opacity:0; animation:fadeUp 0.8s 0.6s forwards; }
.hero-sub { font-size:15px; font-weight:300; line-height:2; letter-spacing:0.06em; opacity:0; animation:fadeUp 0.8s 0.9s forwards; }
.hero-pillars { margin-top:16px; font-size:13px; letter-spacing:4px; color:var(--gold-light); opacity:0; animation:fadeUp 0.8s 1.1s forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.hero-indicators { position:absolute; bottom:48px; left:50%; transform:translateX(-50%); z-index:10; display:flex; gap:10px; }
.hero-dot { width:32px; height:3px; background:rgba(255,255,255,0.4); border:none; cursor:pointer; transition:0.3s; padding:0; border-radius:2px; }
.hero-dot.active { background:var(--gold); width:48px; }
.hero-scroll-hint { position:absolute; bottom:32px; right:32px; z-index:10; display:flex; flex-direction:column; align-items:center; gap:6px; }
.hero-scroll-hint span { font-family:var(--font-en); font-size:10px; letter-spacing:3px; color:rgba(255,255,255,0.7); writing-mode:vertical-lr; }
.scroll-bar { width:1px; height:48px; background:rgba(255,255,255,0.25); position:relative; overflow:hidden; }
.scroll-bar::after { content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold); animation:scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%{top:-100%} 100%{top:100%} }

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 100px 0; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-en { font-family:var(--font-en); font-size:13px; font-weight:400; letter-spacing:4px; color:var(--gold); display:block; margin-bottom:4px; font-style:italic; }
.section-en.light { color:var(--gold-light); }
.section-title { font-family:var(--font-serif); font-size:clamp(22px,3vw,30px); font-weight:600; color:var(--dark); line-height:1.5; }
.section-sub { font-size:14px; color:var(--text-light); margin-top:12px; line-height:1.9; }

/* ========================================
   PILLARS
   ======================================== */
.pillars-section { padding:0; margin-top:-60px; position:relative; z-index:20; }
.pillars-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.pillar-card { background:var(--bg-white); border-radius:16px; padding:32px 20px; text-align:center; display:block; box-shadow:0 8px 40px rgba(0,0,0,0.08); transition:0.35s var(--ease); border:1px solid transparent; }
.pillar-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.12); }
.pillar-icon { width:72px; height:72px; border-radius:50%; overflow:hidden; margin:0 auto 16px; }
.pillar-icon img { width:100%; height:100%; object-fit:cover; }
.pillar-tag { display:inline-block; font-size:11px; font-weight:600; padding:4px 14px; border-radius:20px; color:#fff; margin-bottom:10px; letter-spacing:0.08em; }
.esthe-bg { background:var(--esthe); } .hair-bg { background:var(--hair); } .bridal-bg { background:var(--bridal); } .food-bg { background:var(--food); }
.pillar-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--dark); }
.pillar-card p { font-size:12px; color:var(--text-muted); line-height:1.7; }

/* ========================================
   ABOUT
   ======================================== */
.about-section { background:var(--bg-cream); }
.about-grid { display:grid; grid-template-columns:380px 1fr; gap:56px; align-items:start; }
.about-image { border-radius:12px; overflow:hidden; }
.about-image img { width:100%; aspect-ratio:4/5; object-fit:cover; }
.about-catch { font-family:var(--font-serif); font-size:clamp(22px,2.5vw,28px); font-weight:600; color:var(--dark); line-height:1.6; margin-bottom:28px; }
.msg-label { display:inline-block; font-size:11px; font-weight:600; color:var(--gold); letter-spacing:2px; border-bottom:1px solid var(--gold); padding-bottom:2px; margin-bottom:16px; }
.about-message p { font-size:14px; color:var(--text-light); line-height:2; margin-bottom:16px; }
.msg-name { margin-top:20px; }
.msg-position { font-size:12px; color:var(--text-muted); display:block; }
.msg-person { font-family:var(--font-serif); font-size:18px; font-weight:500; letter-spacing:0.15em; }
.about-info { margin-top:32px; padding-top:24px; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; gap:20px; }
.info-item { display:flex; gap:12px; align-items:baseline; }
.info-label { font-size:11px; color:var(--text-muted); min-width:40px; letter-spacing:0.05em; }
.info-value { font-size:13px; color:var(--text); }
.btn-text { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:500; color:var(--gold); margin-top:24px; }
.btn-text:hover { gap:12px; }
.btn-text i { font-size:11px; transition:0.3s; }

/* ========================================
   BUSINESS SHOWCASE — eco-works style
   Large + Small overlapping images,
   vertical catch text, info column
   ======================================== */
.business-section {
  background: var(--bg-white);
  padding-bottom: 0;
}

.biz-showcase {
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}
.biz-showcase:nth-child(odd of .biz-showcase) {
  background: var(--bg-white);
}
.biz-showcase:nth-child(even of .biz-showcase) {
  background: var(--bg-cream);
}

/* --- 3-column grid: photos | vertical-catch | info --- */
.biz-showcase-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  gap: 0;
  align-items: start;
}

/* Layout LEFT: photos | catch | info */
.biz-showcase-inner.layout-left {
  grid-template-columns: minmax(0, 1.3fr) 100px minmax(0, 1fr);
}

/* Layout RIGHT: info | catch | photos */
.biz-showcase-inner.layout-right {
  grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1.3fr);
}

/* ======================
   PHOTOS — overlapping large + small
   ====================== */
.biz-photos {
  position: relative;
  min-height: 400px;
}

/* Large photo */
.biz-photo-large {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  position: relative;
  z-index: 2;
}
.biz-photo-large img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

/* Small photo — overlapping */
.biz-photo-small {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,0.14);
  position: absolute;
  z-index: 3;
  width: 42%;
}
.biz-photo-small img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* LEFT layout: large fills left, small bottom-right */
.layout-left .biz-photo-large {
  width: 88%;
}
.layout-left .biz-photo-small {
  right: 0;
  bottom: -36px;
}

/* RIGHT layout: large fills right, small bottom-left */
.layout-right .biz-photo-large {
  width: 88%;
  margin-left: auto;
}
.layout-right .biz-photo-small {
  left: 0;
  bottom: -36px;
}

/* ======================
   VERTICAL CATCH — 縦書き
   ====================== */
.biz-catch-column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
}

.biz-catch {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.catch-sub {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.4em;
}

.catch-main {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 50px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.esthe-color { color: var(--esthe); }
.hair-pink-color { color: var(--hair-pink); }
.bridal-color { color: var(--bridal); }
.food-color { color: var(--food); }

/* ======================
   INFO COLUMN — text content
   ====================== */
.biz-info-column {
  padding-top: 24px;
}
.layout-left .biz-info-column { padding-left: 50px; }
.layout-right .biz-info-column { padding-right: 50px; }

.biz-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 4px 16px; border-radius: 20px; color: #fff;
  margin-bottom: 14px; letter-spacing: 0.06em;
}

.biz-name {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 600; color: var(--dark);
  margin-bottom: 18px; letter-spacing: 0.04em;
}

.biz-desc {
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 400; color: var(--text);
  line-height: 2; margin-bottom: 22px;
}

.biz-list { margin-bottom: 22px; }
.biz-list li {
  font-size: 13px; color: var(--text-light); padding: 3px 0 3px 22px;
  position: relative; line-height: 1.7;
}
.biz-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 12px;
}

.biz-numbers {
  display: flex; gap: 24px; margin-bottom: 22px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.biz-num-item { display: flex; align-items: baseline; gap: 6px; }
.biz-num { font-family: var(--font-en); font-size: 36px; font-weight: 600; line-height: 1; }
.biz-num-label { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.biz-num-label small { display: block; font-size: 11px; color: var(--text-muted); }

.biz-shops { margin-bottom: 22px; }
.shop { font-size: 12px; color: var(--text-light); padding: 3px 0; line-height: 1.7; }
.shop strong { color: var(--text); font-weight: 600; }

.btn-biz {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: 30px; font-size: 13px; font-weight: 600;
  color: #fff; transition: 0.3s; letter-spacing: 0.02em;
}
.btn-biz i { font-size: 11px; }
.btn-biz:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.esthe-btn { background: var(--esthe); }
.hair-btn { background: var(--hair); }
.bridal-btn { background: var(--bridal); }
.food-btn { background: var(--food); }

/* ========================================
   BUSINESS SHOWCASE — ANIMATIONS
   eco-works.jp style:
   - Large image slides in from the side
   - Small image slides up from below with delay
   - Vertical text chars fade in one by one
   - Info column fades up
   ======================================== */

/* --- Large photo: slide from left (layout-left) or right (layout-right) --- */
.anim-photo-large {
  opacity: 0;
  transition: opacity 1s ease, transform 1s var(--ease);
}
.layout-left .anim-photo-large {
  transform: translateX(-80px);
}
.layout-right .anim-photo-large {
  transform: translateX(80px);
}
.anim-photo-large.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Small photo: slide up from below with delay --- */
.anim-photo-small {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s 0.35s ease, transform 0.9s 0.35s var(--ease);
}
.anim-photo-small.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Vertical text: wrapper fade, then chars stagger --- */
.anim-vertical-text {
  opacity: 0;
  transition: opacity 0.5s 0.2s ease;
}
.anim-vertical-text.visible {
  opacity: 1;
}

/* Sub text above the main chars */
.anim-vertical-text .catch-sub {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.5s 0.3s ease, transform 0.5s 0.3s var(--ease);
}
.anim-vertical-text.visible .catch-sub {
  opacity: 1;
  transform: translateY(0);
}

/* Individual character span — set by JS with staggered delay */
.vchar {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.vchar.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Info column: fade up --- */
.biz-info-column.anim-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s 0.5s ease, transform 0.9s 0.5s var(--ease);
}
.biz-info-column.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SYNERGY
   ======================================== */
.synergy-section { background:linear-gradient(180deg,var(--bg-cream),#fff); }
.synergy-steps { display:flex; align-items:flex-start; justify-content:center; gap:12px; margin-bottom:64px; flex-wrap:wrap; }
.synergy-step { text-align:center; flex:0 0 180px; }
.step-circle { width:100px; height:100px; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; margin:0 auto 16px; color:#fff; }
.step-num { font-family:var(--font-en); font-size:10px; letter-spacing:2px; opacity:0.8; margin-bottom:4px; }
.step-circle i { font-size:24px; }
.bridal-gradient { background:linear-gradient(135deg,#5B8DBF,#426a96); }
.esthe-gradient { background:linear-gradient(135deg,#ff4444,#cc0000); }
.hair-gradient { background:linear-gradient(135deg,#444,#000); }
.gold-gradient { background:linear-gradient(135deg,#d4b068,#C8A25C); }
.synergy-step h4 { font-size:15px; font-weight:700; margin-bottom:8px; }
.synergy-step p { font-size:12px; color:var(--text-light); line-height:1.7; }
.synergy-arrow { display:flex; align-items:center; padding-top:30px; color:var(--gold); font-size:18px; }

.pkg-title { text-align:center; font-family:var(--font-serif); font-size:20px; font-weight:600; color:var(--dark); margin-bottom:28px; }
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pkg-card { background:var(--bg-white); border:1px solid var(--border); border-radius:16px; padding:32px 24px; text-align:center; transition:0.3s var(--ease); }
.pkg-card:hover { border-color:var(--gold); box-shadow:0 8px 32px rgba(200,162,92,0.12); }
.pkg-card i { font-size:28px; color:var(--gold); margin-bottom:16px; }
.pkg-card h4 { font-size:15px; font-weight:700; margin-bottom:8px; }
.pkg-card p { font-size:13px; color:var(--text-light); line-height:1.7; }

/* ========================================
   NEWS
   ======================================== */
.news-section { background:var(--bg-white); }
.news-list { border-top:1px solid var(--border); }
.news-item { display:flex; align-items:center; padding:18px 0; gap:16px; border-bottom:1px solid var(--border); transition:0.25s; }
.news-item:hover { padding-left:8px; }
.news-item time { font-family:var(--font-en); font-size:13px; color:var(--text-muted); min-width:90px; letter-spacing:0.5px; }
.news-tag { font-size:11px; padding:3px 10px; border-radius:3px; font-weight:600; white-space:nowrap; min-width:80px; text-align:center; }
.nt-info { background:#f0ebe0; color:var(--gold); }
.nt-campaign { background:var(--esthe-light); color:var(--esthe); }
.nt-media { background:var(--bridal-light); color:var(--bridal); }
.nt-event { background:var(--food-light); color:#d060c0; }
.news-text { font-size:14px; flex:1; }
.news-arrow { font-size:10px; color:var(--text-muted); }
.news-item:hover .news-arrow { color:var(--gold); }
.news-more { margin-top:28px; text-align:right; }

/* ========================================
   RECRUIT
   ======================================== */
.recruit-section { padding:0; }
.recruit-inner { position:relative; background:url('../images/lady_back.jpg') center/cover no-repeat; padding:100px 0; }
.recruit-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(45,45,45,0.88),rgba(45,45,45,0.75)); }
.recruit-content { position:relative; z-index:2; max-width:600px; }
.recruit-title { font-family:var(--font-serif); font-size:clamp(24px,3.5vw,34px); font-weight:600; color:#fff; line-height:1.5; margin-bottom:20px; }
.recruit-desc { font-size:14px; color:rgba(255,255,255,0.75); line-height:2; margin-bottom:32px; }
.btn-primary { display:inline-flex; align-items:center; gap:10px; padding:14px 36px; background:var(--gold); color:#fff; border-radius:30px; font-size:14px; font-weight:600; transition:0.3s; }
.btn-primary:hover { background:#b8923c; transform:translateY(-2px); }
.btn-primary i { font-size:12px; }

/* ========================================
   CONTACT
   ======================================== */
.contact-section { background:var(--bg-cream); }
.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.contact-card { background:var(--bg-white); border-radius:16px; padding:44px 36px; text-align:center; border:1px solid var(--border); }
.contact-icon { font-size:32px; color:var(--gold); margin-bottom:16px; }
.contact-card h3 { font-size:16px; font-weight:700; margin-bottom:10px; }
.contact-card p { font-size:13px; color:var(--text-light); margin-bottom:20px; line-height:1.7; }
.btn-outline-gold { display:inline-flex; align-items:center; gap:8px; padding:12px 28px; border:1px solid var(--gold); color:var(--gold); border-radius:30px; font-size:13px; font-weight:600; transition:0.3s; }
.btn-outline-gold:hover { background:var(--gold); color:#fff; }
.btn-outline-gold i { font-size:11px; }
.contact-tel { display:block; font-family:var(--font-en); font-size:28px; font-weight:600; color:var(--dark); letter-spacing:2px; }
.contact-tel:hover { color:var(--gold); }
.contact-note { font-size:12px; color:var(--text-muted); margin-top:4px; display:block; }

/* ========================================
   FOOTER
   ======================================== */
#site-footer { background:var(--dark-deep); color:#fff; padding-top:56px; }
.footer-top { display:grid; grid-template-columns:280px 1fr; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-logo .logo-en { font-family:var(--font-en); font-weight:600; font-size:20px; color:#fff; letter-spacing:2px; }
.footer-logo .logo-ja { font-size:10px; color:var(--gold); letter-spacing:4px; margin-left:6px; }
.footer-vision { font-size:12px; color:rgba(255,255,255,0.45); line-height:1.8; margin-top:12px; }
.footer-social { display:flex; gap:10px; margin-top:16px; }
.footer-social a { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); font-size:14px; }
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }
.footer-nav-area { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.footer-col h4 { font-size:13px; font-weight:600; color:#fff; margin-bottom:14px; letter-spacing:0.04em; }
.footer-col li { margin-bottom:8px; }
.footer-col a { font-size:12px; color:rgba(255,255,255,0.45); }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { padding:18px 0; text-align:center; }
.footer-bottom p { font-family:var(--font-en); font-size:11px; color:rgba(255,255,255,0.3); letter-spacing:1px; }

.back-to-top { position:fixed; bottom:28px; right:28px; width:44px; height:44px; border-radius:50%; background:var(--gold); color:#fff; border:none; font-size:14px; cursor:pointer; opacity:0; visibility:hidden; transition:0.3s; z-index:900; box-shadow:0 4px 16px rgba(200,162,92,0.3); }
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background:#b8923c; transform:translateY(-3px); }

/* General fade */
.anim-fade { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
.anim-fade.visible { opacity:1; transform:translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1100px) {
  .biz-showcase-inner.layout-left,
  .biz-showcase-inner.layout-right {
    max-width: 100%;
    padding: 0 24px;
    grid-template-columns: minmax(0, 1.2fr) 80px minmax(0, 1fr);
  }
  .catch-main { font-size: clamp(40px, 5vw, 0.5px); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { max-width: 400px; }
  .about-image img { aspect-ratio: 4/3; }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
  #global-nav { display: none; }
  .hamburger { display: block; }
  .section { padding: 72px 0; }

  .pillars-section { margin-top: -40px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pillar-card { padding: 24px 16px; }
  .pillar-icon { width: 56px; height: 56px; }
  .pillar-card h3 { font-size: 14px; }
  .pillar-card p { font-size: 11px; }

  /* ---- Business showcase → stack vertically on SP ---- */
  .biz-showcase { padding: 64px 0 80px; }

  .biz-showcase-inner.layout-left,
  .biz-showcase-inner.layout-right {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 28px;
  }

  /* Order: photos → catch → info for all */
  .biz-showcase-inner.layout-left .biz-photos,
  .biz-showcase-inner.layout-right .biz-photos { order: 1; min-height: auto; }

  .biz-showcase-inner.layout-left .biz-catch-column,
  .biz-showcase-inner.layout-right .biz-catch-column {
    order: 2;
  }

  .biz-showcase-inner.layout-left .biz-info-column,
  .biz-showcase-inner.layout-right .biz-info-column {
    order: 3;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Vertical text becomes horizontal on SP */
  .biz-catch {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
  .catch-main { font-size: 36px; letter-spacing: 0.12em; }
  .catch-sub { letter-spacing: 0.2em; }

  /* Photos: adjust overlap for SP */
  .layout-left .biz-photo-large,
  .layout-right .biz-photo-large {
    width: 85%;
    margin-left: 0;
  }
  .biz-photo-small {
    position: absolute !important;
    width: 50% !important;
  }
  .layout-left .biz-photo-small {
    right: 0 !important;
    left: auto !important;
    bottom: -24px !important;
  }
  .layout-right .biz-photo-small {
    right: 0 !important;
    left: auto !important;
    bottom: -24px !important;
  }
  .biz-photos { padding-bottom: 40px; }

  .biz-numbers { flex-wrap: wrap; gap: 16px; }

  .synergy-steps { flex-direction: column; align-items: center; gap: 8px; }
  .synergy-step { flex: none; width: 100%; max-width: 260px; }
  .synergy-arrow { transform: rotate(90deg); padding: 0; }
  .pkg-grid { grid-template-columns: 1fr; }

  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-item time { min-width: auto; }
  .news-text { width: 100%; flex: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-area { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pillar-card { padding: 20px 12px; border-radius: 12px; }
  .footer-nav-area { grid-template-columns: 1fr; }
  .catch-main { font-size: 30px; }
}