/* ========== SHARED BASE (from company.html) ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #fffefb;
  --color-accent: #f0a254;
  --color-dark: #171717;
  --color-body: #3c3c3c;
  --color-light-accent: #fbe6d0;
  --color-section-bg: #f5f0eb;
  --font-ja: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --color-green: #60B4AE;
  --color-pink: #DB5B75;
  --color-warm: #c4713b;
  --color-warm-light: #f5e1d0;
}

body {
  font-family: var(--font-ja);
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-overlay.fade-out {
  animation: overlayFade 1s ease-out forwards;
}

@keyframes overlayFade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.loading-logo { overflow: visible; }

.load-block {
  opacity: 0;
  transform-origin: center center;
  animation: blockDrop 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes blockDrop {
  0%   { opacity: 0; transform: translateY(-60px) rotate(-8deg); }
  50%  { opacity: 1; transform: translateY(3px) rotate(1deg); }
  70%  { transform: translateY(-2px) rotate(0deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.loading-overlay.explode .load-block {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s ease-out !important;
  opacity: 0 !important;
}

.loading-overlay.explode .load-block:nth-child(1)  { transform: translate(-300px, -250px) rotate(-120deg) scale(0.3) !important; }
.loading-overlay.explode .load-block:nth-child(2)  { transform: translate(-250px, 300px) rotate(90deg) scale(0.2) !important; }
.loading-overlay.explode .load-block:nth-child(3)  { transform: translate(-180px, -150px) rotate(200deg) scale(0.4) !important; }
.loading-overlay.explode .load-block:nth-child(4)  { transform: translate(-100px, 250px) rotate(-60deg) scale(0.3) !important; }
.loading-overlay.explode .load-block:nth-child(5)  { transform: translate(150px, -300px) rotate(150deg) scale(0.2) !important; }
.loading-overlay.explode .load-block:nth-child(6)  { transform: translate(80px, 200px) rotate(-180deg) scale(0.4) !important; }
.loading-overlay.explode .load-block:nth-child(7)  { transform: translate(-350px, 100px) rotate(100deg) scale(0.2) !important; }
.loading-overlay.explode .load-block:nth-child(8)  { transform: translate(200px, -200px) rotate(-90deg) scale(0.3) !important; }
.loading-overlay.explode .load-block:nth-child(9)  { transform: translate(300px, 150px) rotate(240deg) scale(0.2) !important; }
.loading-overlay.explode .load-block:nth-child(10) { transform: translate(250px, -100px) rotate(-150deg) scale(0.3) !important; }
.loading-overlay.explode .load-block:nth-child(11) { transform: translate(350px, 250px) rotate(60deg) scale(0.2) !important; }
.loading-overlay.explode .load-block:nth-child(12) { transform: translate(-200px, -350px) rotate(-200deg) scale(0.4) !important; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: rgba(255, 254, 251, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 66px;
}

.logo-svg { height: 38px; width: auto; overflow: visible; }

.logo-block {
  opacity: 0;
}
body.loaded .logo-block {
  animation: logoDrop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoDrop {
  0%   { opacity: 0; transform: translateY(-40px); }
  60%  { opacity: 1; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--color-dark);
  transition: opacity 0.3s;
}

.header-nav a:hover { opacity: 0.6; }

.header-cta {
  background: var(--color-accent);
  color: var(--color-bg) !important;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.header-cta:hover { opacity: 0.8; }

/* ========== HERO ========== */
/* ========== COMPANY STATEMENT ========== */
.company-statement {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.company-statement-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 90px;
  position: relative;
  z-index: 1;
}

.company-statement-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.company-statement-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.company-statement-line {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  color: var(--color-dark);
}

.company-statement-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(240, 162, 84, 0.3));
  margin-bottom: 32px;
  border-radius: 2px;
}

.company-statement-sub {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .06em;
  color: var(--color-body);
}

/* ========== COMMON ========== */
.section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 90px 80px;
}

.section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-warm);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.breadcrumb a:hover { opacity: 0.6; }
.breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== PAGE HERO (共通) ========== */
.page-hero-section {
  margin-top: 104px;
  position: relative;
  background: linear-gradient(135deg, #f5f0eb 0%, #fbe6d0 40%, #f0d4b8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 162, 84, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 90px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.page-hero-catch {
  font-size: 15px;
  line-height: 2;
  color: var(--color-body);
}

.page-hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: rgba(196, 113, 59, .06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-hero-date {
  font-family: var(--font-en);
  font-size: 13px;
  color: #999;
  letter-spacing: .04em;
}

.page-hero-tag {
  font-size: 11px;
  padding: 3px 14px;
  border-radius: 20px;
  background: var(--color-light-accent);
  color: var(--color-warm);
  font-weight: 500;
}

@media (max-width: 768px) {
  .page-hero-section {
    margin-top: 60px;
  }

  .page-hero-inner {
    padding: 24px 20px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .page-hero-catch {
    font-size: 14px;
  }
}

/* ========== MESSAGE ========== */
.message-section {
  margin-bottom: 80px;
}

.message-grid {
  margin-top: 40px;
}

.message-text {
  font-size: 16px;
  color: var(--color-body);
  line-height: 2.2;
  letter-spacing: 1px;
}

.message-text .highlight {
  background: linear-gradient(transparent 60%, var(--color-warm-light) 60%);
  font-weight: 700;
}

.message-name-block {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.message-role {
  font-size: 13px;
  color: var(--color-warm);
  letter-spacing: 2px;
  font-weight: 500;
}

.message-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
}


/* ========== PHILOSOPHY ========== */
.philosophy-section {
  background: #f7f5f2;
  color: var(--color-dark);
  padding: 100px 90px;
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: 'Philosophy';
  position: absolute;
  right: -20px;
  top: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 160px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(196, 113, 59, 0.05);
  white-space: nowrap;
  pointer-events: none;
}

.philosophy-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.philosophy-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-bottom: 50px;
}

.philosophy-main {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 2;
  margin-bottom: 60px;
  max-width: 800px;
}

.philosophy-main .accent {
  color: var(--color-accent);
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  border-top: 2px solid rgba(196, 113, 59, 0.15);
  padding-top: 30px;
}

.value-number {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.value-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 2;
  letter-spacing: 0.5px;
}

/* ========== COMPANY INFO ========== */
.info-section {
  margin-bottom: 80px;
}

.info-table {
  width: 100%;
  margin-top: 40px;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #e8e3dd;
}

.info-row:first-child {
  border-top: 1px solid #e8e3dd;
}

.info-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 2px;
  padding: 28px 0;
  background: var(--color-section-bg);
  padding-left: 24px;
}

.info-value {
  font-size: 15px;
  color: var(--color-body);
  letter-spacing: 1px;
  padding: 28px 0 28px 32px;
  line-height: 1.8;
}

.info-value a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.info-value a:hover { opacity: 0.6; }

/* ========== HISTORY ========== */
.history-section {
  margin-bottom: 80px;
}

.history-list {
  margin-top: 40px;
}

.history-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #e8e3dd;
  align-items: start;
}

.history-item:first-child {
  border-top: 1px solid #e8e3dd;
}

.history-year {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 28px;
  color: var(--color-warm);
  letter-spacing: 1px;
}

.history-content {
  font-size: 15px;
  color: var(--color-body);
  letter-spacing: 1px;
  line-height: 2;
}

.history-content strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* ========== ACCESS ========== */
.access-section {
  margin-bottom: 0;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-info-item {
  display: flex;
  gap: 16px;
}

.access-info-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-warm);
  letter-spacing: 2px;
  min-width: 80px;
  padding-top: 2px;
}

.access-info-text {
  font-size: 15px;
  color: var(--color-body);
  letter-spacing: 1px;
  line-height: 1.8;
}

.access-map {
  background: #e8e4df;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--color-section-bg);
  padding: 80px 90px;
  text-align: center;
}

.contact-section .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 15px;
  color: var(--color-body);
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

.btn-contact {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 20px 60px;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.btn-contact:hover { opacity: 0.8; }

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg);
  padding: 80px 90px 40px;
  border-top: 1px solid #e5e0db;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 30px;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-body);
  margin-bottom: 50px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 80px;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.footer-nav a::before {
  content: '';
  width: 15px;
  height: 1px;
  background: var(--color-body);
}

.footer-nav a:hover { color: var(--color-accent); }
.footer-nav a:hover::before { background: var(--color-accent); }

.footer-copyright {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-body);
  letter-spacing: 1px;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ========== FADE IN ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 16px;
  }

  .logo-svg { height: 26px; }

  .hamburger { display: block; }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .header-nav.open { right: 0; }

  .header-nav a {
    font-size: 15px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid #e5e0db;
  }

  .header-cta {
    margin-top: 20px;
    padding: 12px 24px !important;
    text-align: center;
    border-bottom: none !important;
    width: 100%;
    display: block !important;
  }

  .hamburger {
    background: var(--color-accent);
    width: 38px;
    height: 38px;
    border-radius: 4px;
  }

  .hamburger span {
    background: #fff;
    width: 18px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hamburger span:nth-child(1) { top: 10px; }
  .hamburger span:nth-child(2) { top: 18px; }
  .hamburger span:nth-child(3) { top: 26px; }

  .hamburger.active span:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .company-statement-inner {
    padding: 60px 20px;
  }

  .company-statement-sub {
    font-size: 14px;
  }

  .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .section-wrap {
    padding: 32px 20px 50px;
  }

  .section-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .message-text {
    font-size: 14px;
  }

  .message-name {
    font-size: 20px;
  }

  .philosophy-section {
    padding: 60px 20px;
  }

  .philosophy-section::before {
    font-size: 80px;
    top: -15px;
  }

  .philosophy-main {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-title {
    font-size: 18px;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .info-label {
    padding: 16px 20px 8px;
    font-size: 13px;
  }

  .info-value {
    padding: 8px 20px 20px;
    font-size: 14px;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .history-year {
    font-size: 22px;
  }

  .history-content {
    font-size: 14px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-map {
    height: 280px;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }

  .footer {
    padding: 40px 20px 24px;
  }

  .footer-logo img { height: 36px; margin-bottom: 20px; }
  .footer-tagline { font-size: 13px; margin-bottom: 30px; }
  .footer-nav { margin-bottom: 40px; gap: 10px; }
  .footer-nav a { font-size: 13px; }
}


/* ========== INDEX PAGE (scoped) ========== */
/* ========== INDEX PAGE SPECIFIC ========== */




/* ========== HEADER ========== */










/* ========== HERO ========== */
.page-index .hero {
  position: relative;
  width: 100%;
  margin-top: 104px;
  height: calc(100vh - 104px);
  background: linear-gradient(to right, #f5f5e1 50%, #fff1dc 50%);
  overflow: hidden;
}

.page-index .hero-text {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
}
body.loaded .page-index .hero-text {
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.page-index .hero-text p {
  font-size: 30px;
  font-weight: 700;
  line-height: 63.8px;
  letter-spacing: 6.3px;
  color: var(--color-dark);
  white-space: nowrap;
}

.page-index .hero-city-label {
  position: absolute;
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 103px);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.4vw, 5.15px);
  color: #dce4a8;
  opacity: 0;
  bottom: 180px;
  z-index: 1;
}

.page-index .hero-city-label.fukuoka {
  left: clamp(16px, 5vw, 100px);
}
body.loaded .page-index .hero-city-label.fukuoka {
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}
.page-index .hero-city-label.kyoto {
  right: clamp(16px, 5vw, 100px);
}
body.loaded .page-index .hero-city-label.kyoto {
  animation: fadeIn 0.8s ease-out 1.4s forwards;
}

.page-index .hero-illustrations {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 112%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}

.page-index .hero-illust-wrap {
  position: relative;
  flex: 1;
  max-width: 55%;
}

.page-index .hero-illust-wrap img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
}

body.loaded .page-index .hero-illust-wrap:first-child img {
  animation: slideInLeft 1s ease-out 0.9s forwards;
}

body.loaded .page-index .hero-illust-wrap:last-child img {
  animation: slideInRight 1s ease-out 1.1s forwards;
}

.page-index .hero-light { display: none; }

.page-index .hero-particle { display: none; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.5; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}



.page-index .hero-mobile-buildings { display: none; }

/* ========== SECTION COMMON ========== */
.page-index .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 90px;
}

.page-index .section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 2px;
}

.page-index .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 50px;
}

/* ========== SERVICE CARDS ========== */
.page-index .service-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.page-index .service-card:last-child { margin-bottom: 0; }
.page-index .service-card.reverse { direction: rtl; }
.page-index .service-card.reverse > * { direction: ltr; }

.page-index .service-card-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.page-index .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index .service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-index .service-card-number {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.page-index .service-card-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.page-index .service-card-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-bottom: 16px;
}

.page-index .service-card-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1px;
  color: var(--color-body);
  margin-bottom: 28px;
}

.page-index .service-card-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 385px;
  font-family: var(--font-ja);
  position: relative;
  overflow: hidden;
}

.page-index .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.page-index .btn-outline:hover::before {
  left: 0;
}

.page-index .btn-outline:hover {
  color: #fff;
  border-color: var(--color-accent);
}

.page-index .btn-outline::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
  position: relative;
  z-index: 1;
}

.page-index .btn-outline:hover::after {
  background: #fff;
  transform: translateX(5px);
}

.page-index .service-sublinks {
  display: flex;
  gap: 12px;
  padding-left: 8px;
}

.page-index .sublink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 20px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.page-index .sublink::after {
  content: '→';
  font-size: 12px;
  transition: transform 0.3s ease;
}

.page-index .sublink:hover {
  background: var(--color-accent);
  color: #fff;
}

.page-index .sublink:hover::after {
  transform: translateX(3px);
}

/* ========== NEWS ========== */
.page-index .news-section {
  background: var(--color-section-bg);
  padding: 80px 0;
}

.page-index .news-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 90px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.page-index .news-header { flex-shrink: 0; }
.page-index .news-header .section-title { margin-bottom: 30px; }

.page-index .news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index .news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.page-index .news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-index .news-item.tall { align-items: flex-start; }

.page-index .news-date {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-body);
  white-space: nowrap;
}

.page-index .news-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.page-index .news-title-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  flex: 1;
}

.page-index .news-arrow {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

/* ========== BLOG ========== */
.page-index .blog-section { padding: 80px 0; }

.blog-section .section-label,
.page-index .blog-section .section-title {
  text-align: center;
}

.page-index .blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 30px;
  justify-content: center;
  padding: 0 90px;
}

.page-index .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-index .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-index .blog-card-image {
  height: 169px;
  background: #e8e4df;
  margin: 18px 18px 0;
  border-radius: 8px;
  overflow: hidden;
}

.page-index .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index .blog-card-body { padding: 16px 24px 24px; }

.page-index .blog-card-date {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 6px;
}

.page-index .blog-card-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-dark);
}

.page-index .blog-more {
  text-align: center;
  margin-top: 40px;
}

/* ========== CONTACT ========== */
.page-index .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-index .contact-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-index .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-index .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-index .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== PLACEHOLDER ========== */
.page-index .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}

/* ========== HAMBURGER ========== */






/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-index .hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }

  .page-index .hero-text {
    top: 28%;
    left: 0;
    right: 0;
    transform: none;
    padding: 0 20px;
    opacity: 0;
  }
  body.loaded .page-index .hero-text {
    animation: fadeInUpMobile 1s ease-out 0.3s forwards;
  }

  .page-index .hero-text p {
    font-size: 22px;
    line-height: 2;
    letter-spacing: 3px;
    white-space: normal;
  }

  .page-index .hero-text span {
    display: block;
  }

  .page-index .hero-illustrations { display: none; }

  .page-index .hero-mobile-buildings {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .page-index .hero-mobile-buildings img {
    position: absolute;
    bottom: 0;
    max-width: none;
    opacity: 0;
  }
  body.loaded .page-index .hero-mobile-buildings img {
    animation: slideInBuilding 0.8s ease-out forwards;
  }

  .page-index .mb-fukuoka-tower {
    left: -2px;
    height: 52vh;
    width: auto;
    z-index: 3;
    animation-delay: 0.9s !important;
  }

  .page-index .mb-blue-building {
    left: 8px;
    height: 28vh;
    width: auto;
    z-index: 2;
    animation-delay: 1.0s !important;
  }

  .page-index .mb-red-tower {
    left: 130px;
    height: 22vh;
    width: auto;
    z-index: 3;
    animation-delay: 1.1s !important;
  }

  .page-index .mb-kyoto-tower {
    right: -5px;
    height: 52vh;
    width: auto;
    z-index: 3;
    animation-delay: 1.0s !important;
  }

  .page-index .mb-temple {
    right: 55px;
    height: 14vh;
    width: auto;
    z-index: 6;
    animation-delay: 1.2s !important;
  }

  .page-index .mb-station {
    right: -5px;
    height: 11vh;
    width: auto;
    z-index: 2;
    animation-delay: 1.1s !important;
  }

  .page-index .mb-building {
    display: none !important;
  }

  .page-index .hero-mobile-buildings .hero-city-label {
    font-size: 46px;
    letter-spacing: 5px;
    writing-mode: vertical-rl;
    z-index: 0;
    top: 20%;
  }

  .page-index .hero-mobile-buildings .hero-city-label.fukuoka {
    left: 8px;
  }
  body.loaded .page-index .hero-mobile-buildings .hero-city-label.fukuoka {
    animation: fadeInLabelMobile 0.8s ease-out 1.2s forwards;
  }

  .page-index .hero-mobile-buildings .hero-city-label.kyoto {
    right: 8px;
    left: auto;
  }
  body.loaded .page-index .hero-mobile-buildings .hero-city-label.kyoto {
    animation: fadeInLabelMobile 0.8s ease-out 1.4s forwards;
  }

  .page-index .section-wrap {
    padding: 50px 20px;
  }

  .page-index .section-title {
    font-size: 22px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
  }

  .page-index .section-label { font-size: 12px; }

  .page-index .service-card {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .page-index .service-card.reverse { direction: ltr; }

  .page-index .service-card-image {
    border-radius: 8px;
  }

  .page-index .service-card-number {
    font-size: 32px;
  }

  .page-index .service-card-name {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .page-index .service-card-desc {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .page-index .btn-outline {
    max-width: 100%;
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .page-index .news-section { padding: 40px 0; }

  .page-index .news-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
    align-items: stretch;
  }

  .page-index .news-header .section-title { margin-bottom: 0; }

  .page-index .news-item {
    display: block;
    padding: 12px 14px;
  }

  .page-index .news-date {
    font-size: 12px;
    margin-right: 8px;
  }

  .page-index .news-tag { font-size: 10px; padding: 2px 8px; }

  .page-index .news-title-text {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    overflow-wrap: break-word;
  }

  .page-index .news-arrow { display: none; }

  .page-index .blog-section { padding: 40px 0; }

  .page-index .blog-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 20px;
    gap: 16px;
  }

  .page-index .blog-card-image { height: 180px; }
  .page-index .blog-card-body { padding: 12px 16px 18px; }
  .page-index .blog-card-title { font-size: 14px; }

  .page-index .contact-section { padding: 50px 20px; }

  .page-index .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-index .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-index .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }



  @keyframes fadeInUpMobile {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInLabelMobile {
    from { opacity: 0; }
    to { opacity: 0.6; }
  }

  @keyframes slideInBuilding {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
}


/* ========== STAFF PAGE (scoped) ========== */
/* ========== STAFF PAGE SPECIFIC ========== */




/* ========== HEADER ========== */









/* ========== HERO ========== */
/* ========== BREADCRUMB ========== */
.page-staff .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-staff .breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.page-staff .breadcrumb a:hover { opacity: 0.6; }
.page-staff .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== SECTION ========== */
.page-staff .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 90px 100px;
}

/* ========== DEPARTMENT SECTION ========== */
.page-staff .dept-section {
  margin-bottom: 80px;
}

.page-staff .dept-section:last-child {
  margin-bottom: 0;
}

.page-staff .dept-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-accent);
}

.page-staff .dept-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-warm);
  letter-spacing: 3px;
}

.page-staff .dept-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ========== STAFF GRID ========== */
.page-staff .staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

/* ========== STAFF CARD ========== */
.page-staff .staff-card {
  display: flex;
  flex-direction: column;
}

.page-staff .staff-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f0ebe5;
}

.page-staff .staff-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-staff .staff-card-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f0eb, #ebe0d4);
}

.page-staff .staff-card-ph span {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  font-family: var(--font-ja);
}

.page-staff .staff-card-body {
  padding: 16px 4px 0;
}

.page-staff .staff-card-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.page-staff .staff-card-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.page-staff .staff-card-name-en {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.page-staff .staff-card-message {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.9;
  letter-spacing: 0.3px;
}

/* ========== CONTACT ========== */
.page-staff .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-staff .contact-section .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  color: #fff;
  margin-bottom: 20px;
}

.page-staff .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-staff .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-staff .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== HAMBURGER ========== */






/* ========== FADE IN ========== */


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-staff .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .page-staff .section-wrap {
    padding: 50px 20px 60px;
  }

  .page-staff .dept-header {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
  }

  .page-staff .dept-name {
    font-size: 19px;
  }

  .page-staff .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .page-staff .staff-card-name {
    font-size: 16px;
  }

  .page-staff .staff-card-message {
    font-size: 12px;
  }


  .page-staff .contact-section { padding: 50px 20px; }

  .page-staff .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-staff .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-staff .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }


}


/* ========== WELFARE PAGE (scoped) ========== */
/* ========== WELFARE PAGE SPECIFIC ========== */




/* ========== HEADER ========== */









/* ========== HERO ========== */
.page-welfare .welfare-hero {
  margin-top: 104px;
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #f5f0eb 0%, #fbe6d0 50%, #e8f4f3 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-welfare .welfare-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 180, 174, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-welfare .welfare-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 162, 84, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-welfare .welfare-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-welfare .welfare-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-welfare .welfare-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-welfare .welfare-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

.page-welfare .hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(240, 162, 84, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ========== SECTION COMMON ========== */
.page-welfare .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-welfare .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ========== BREADCRUMB ========== */
.page-welfare .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-welfare .breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.page-welfare .breadcrumb a:hover { opacity: 0.6; }
.page-welfare .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== ABOUT SECTION ========== */
.page-welfare .welfare-about {
  margin-bottom: 80px;
}

.page-welfare .welfare-about-text {
  font-size: 16px;
  color: var(--color-body);
  line-height: 2.2;
  letter-spacing: 1px;
  max-width: 800px;
}

.page-welfare .welfare-about-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-welfare .welfare-about-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* ========== SERVICE CARDS ========== */
.page-welfare .service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.page-welfare .service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.page-welfare .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.page-welfare .service-card-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.page-welfare .service-card-visual.green {
  background: linear-gradient(135deg, #e8f4f3 0%, #d4efed 50%, #b8e0dc 100%);
}

.page-welfare .service-card-visual.pink {
  background: linear-gradient(135deg, #f9eef1 0%, #f0d4db 50%, #e8b8c5 100%);
}

.page-welfare .service-card-visual-number {
  position: absolute;
  top: 30px;
  left: 36px;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 100px;
  line-height: 1;
  opacity: 0.15;
}

.page-welfare .service-card-visual.green .service-card-visual-number { color: var(--color-green); }
.page-welfare .service-card-visual.pink .service-card-visual-number { color: var(--color-pink); }

.page-welfare .service-card-visual-label {
  position: absolute;
  bottom: 30px;
  left: 36px;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--color-body);
}

.page-welfare .service-card-body {
  padding: 36px;
}

.page-welfare .service-card-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.page-welfare .service-card-tag.green { background: var(--color-green); }
.page-welfare .service-card-tag.pink { background: var(--color-pink); }

.page-welfare .service-card-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.page-welfare .service-card-sub {
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-welfare .service-card-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.9;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.page-welfare .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: gap 0.3s;
}

.page-welfare .service-card-link.green { color: var(--color-green); }
.page-welfare .service-card-link.pink { color: var(--color-pink); }

.page-welfare .service-card-link:hover { gap: 16px; }

.page-welfare .service-card-link-arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  position: relative;
}

.page-welfare .service-card-link.green .service-card-link-arrow { background: var(--color-green); }
.page-welfare .service-card-link.pink .service-card-link-arrow { background: var(--color-pink); }

.page-welfare .service-card-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-top: 1px solid;
  transform: rotate(45deg);
}

.page-welfare .service-card-link.green .service-card-link-arrow::after { border-color: var(--color-green); }
.page-welfare .service-card-link.pink .service-card-link-arrow::after { border-color: var(--color-pink); }

/* ========== VALUES ========== */
.page-welfare .values-section {
  background: var(--color-section-bg);
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 80px;
}

.page-welfare .values-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-welfare .values-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-welfare .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.page-welfare .value-item {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
}

.page-welfare .value-item-number {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 40px;
  color: var(--color-light-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.page-welfare .value-item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.page-welfare .value-item-text {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.9;
}

/* ========== FACILITIES OVERVIEW ========== */
.page-welfare .facilities-overview {
  margin-bottom: 40px;
}

.page-welfare .facilities-overview-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-welfare .facilities-overview-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-welfare .facilities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-welfare .facility-mini {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.page-welfare .facility-mini:hover {
  transform: translateY(-3px);
}

.page-welfare .facility-mini-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-welfare .facility-mini-tag.green { background: var(--color-green); }
.page-welfare .facility-mini-tag.pink { background: var(--color-pink); }

.page-welfare .facility-mini-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-welfare .facility-mini-info {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.page-welfare .facility-mini-new {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #e8894a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  margin-left: 6px;
}

/* ========== CONTACT ========== */
.page-welfare .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-welfare .contact-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-welfare .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-welfare .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-welfare .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== HAMBURGER ========== */






/* ========== FADE IN ========== */


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-welfare .welfare-hero {
    margin-top: 60px;
    min-height: auto;
  }

  .page-welfare .hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -15px;
  }

  .page-welfare .welfare-hero-inner {
    padding: 50px 20px 40px;
  }

  .page-welfare .welfare-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-welfare .welfare-hero-catch {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .page-welfare .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .page-welfare .section-wrap {
    padding: 50px 20px;
  }

  .page-welfare .section-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .page-welfare .service-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-welfare .service-card-visual {
    height: 200px;
  }

  .page-welfare .service-card-visual-number {
    font-size: 70px;
  }

  .page-welfare .service-card-body {
    padding: 24px;
  }

  .page-welfare .service-card-name {
    font-size: 20px;
  }

  .page-welfare .values-section {
    padding: 36px 20px;
    border-radius: 14px;
  }

  .page-welfare .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-welfare .values-title {
    font-size: 20px;
  }

  .page-welfare .facilities-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-welfare .facilities-overview-title {
    font-size: 20px;
  }

  .page-welfare .contact-section { padding: 50px 20px; }

  .page-welfare .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-welfare .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-welfare .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }


}


/* ========== FOOD PAGE (scoped) ========== */
/* ========== FOOD PAGE SPECIFIC ========== */




/* ========== HEADER ========== */









/* ========== HERO ========== */
.page-food .food-hero {
  margin-top: 104px;
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #f5f0eb 0%, #fbe6d0 40%, #f0d4b8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-food .food-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 113, 59, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-food .food-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 162, 84, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-food .food-hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(196, 113, 59, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-food .food-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-food .food-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-warm);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-food .food-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-food .food-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

/* ========== SECTION COMMON ========== */
.page-food .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-food .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ========== PLACEHOLDER IMAGE ========== */
.page-food .ph-image {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 8px;
  overflow: hidden;
}

/* ========== BREADCRUMB ========== */
.page-food .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-food .breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.page-food .breadcrumb a:hover { opacity: 0.6; }
.page-food .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== ABOUT SECTION ========== */
.page-food .food-about {
  margin-bottom: 80px;
}

.page-food .food-about-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-warm);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-food .food-about-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.page-food .food-about-text {
  font-size: 16px;
  color: var(--color-body);
  line-height: 2.2;
  letter-spacing: 1px;
  max-width: 800px;
}

.page-food .food-about-text .highlight {
  background: linear-gradient(transparent 60%, var(--color-warm-light) 60%);
  font-weight: 700;
}

/* ========== SHOP LIST ========== */
.page-food .shop-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.page-food .shop-card {
  display: grid;
  grid-template-columns: 1fr;
  padding: 48px 0;
  border-bottom: 1px solid #e8e3dd;
}

.page-food .shop-card:first-child {
  border-top: 1px solid #e8e3dd;
}

.page-food .shop-card-visual {
  display: none;
}

.page-food .shop-card-number {
  display: none;
}

.page-food .shop-card-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.page-food .shop-card-main {
  display: flex;
  flex-direction: column;
}

.page-food .shop-card-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-warm);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-food .shop-card-catch {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.page-food .shop-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.page-food .shop-card-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 2;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  max-width: 560px;
}

.page-food .shop-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.page-food .shop-card-links {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.page-food .shop-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-food .shop-card-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-food .shop-card-info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  flex-shrink: 0;
  width: 70px;
  padding-top: 2px;
}

.page-food .shop-card-info-text {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.page-food .shop-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-warm);
  transition: gap 0.3s;
}

.page-food .shop-card-link:hover { gap: 14px; }

.page-food .shop-card-link-arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-warm);
  position: relative;
}

.page-food .shop-card-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color-warm);
  border-top: 1px solid var(--color-warm);
  transform: rotate(45deg);
}

.page-food .shop-card-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== PHOTO ROW ========== */
.page-food .photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.page-food .photo-row .ph-image {
  height: 240px;
}

/* ========== CONTACT ========== */
.page-food .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-food .contact-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-food .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-food .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-food .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== HAMBURGER ========== */






/* ========== FADE IN ========== */


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-food .food-hero {
    margin-top: 60px;
    min-height: auto;
  }

  .page-food .food-hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -15px;
  }

  .page-food .food-hero-inner {
    padding: 50px 20px 40px;
  }

  .page-food .food-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-food .food-hero-catch {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .page-food .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .page-food .section-wrap {
    padding: 50px 20px;
  }

  .page-food .section-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .page-food .food-about-title {
    font-size: 22px;
  }

  .page-food .food-about-text {
    font-size: 14px;
  }

  .page-food .shop-card {
    padding: 32px 0;
  }

  .page-food .shop-card-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-food .shop-card-name {
    font-size: 19px;
    letter-spacing: 1.5px;
  }

  .page-food .shop-card-desc {
    font-size: 13px;
  }

  .page-food .shop-card-thumb {
    height: 150px;
  }

  .page-food .shop-card-info-row {
    flex-direction: column;
    gap: 2px;
  }

  .page-food .shop-card-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-food .photo-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .page-food .photo-row .ph-image {
    height: 200px;
  }

  .page-food .contact-section { padding: 50px 20px; }

  .page-food .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-food .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-food .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }


}


/* ========== GROUPHOME PAGE (scoped) ========== */
/* ========== GROUPHOME PAGE SPECIFIC ========== */




/* ========== HEADER ========== */









/* ========== HERO ========== */
.page-grouphome .page-hero {
  margin-top: 104px;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #e8f4f3 0%, #d4efed 40%, #f5f0eb 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-grouphome .page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 180, 174, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-grouphome .page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 180, 174, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-grouphome .page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-grouphome .page-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-green);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-grouphome .page-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-grouphome .page-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

.page-grouphome .page-hero-badge {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 6px;
  margin-top: 32px;
}

.page-grouphome .hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(96, 180, 174, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ========== SECTION COMMON ========== */
.page-grouphome .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-grouphome .section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
}

.page-grouphome .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ========== PLACEHOLDER IMAGE ========== */
.page-grouphome .ph-image {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 8px;
  overflow: hidden;
}

/* ========== INTRO (text + image side by side) ========== */
.page-grouphome .intro-row {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 70px;
}

.page-grouphome .intro-row.reverse {
  flex-direction: row-reverse;
}

.page-grouphome .intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-grouphome .intro-text-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.page-grouphome .intro-text-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 2px;
}

.page-grouphome .intro-text-title.green::before { background: var(--color-green); }

.page-grouphome .intro-text p {
  font-size: 15px;
  color: var(--color-body);
  line-height: 2;
  letter-spacing: 0.8px;
}

.page-grouphome .intro-image {
  flex: 1;
  min-height: 320px;
}

/* ========== FEATURES ========== */
.page-grouphome .features-section {
  margin-bottom: 70px;
}

.page-grouphome .features-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-grouphome .features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: feature;
}

.page-grouphome .feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid #ece7e1;
  counter-increment: feature;
}

.page-grouphome .feature-item:first-child {
  border-top: 1px solid #ece7e1;
}

.page-grouphome .feature-num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.page-grouphome .feature-num.green { color: var(--color-green); }

.page-grouphome .feature-item-body {
  flex: 1;
}

.page-grouphome .feature-item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.page-grouphome .feature-item-text {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.8;
}

/* ========== PHOTO GALLERY ROW ========== */
.page-grouphome .gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 70px;
}

.page-grouphome .gallery-row .ph-image {
  height: 220px;
}

/* ========== FLOW ========== */
.page-grouphome .flow-section {
  background: var(--color-section-bg);
  border-radius: 20px;
  padding: 50px 60px;
  margin-bottom: 70px;
}

.page-grouphome .flow-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

.page-grouphome .flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.page-grouphome .flow-step {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
}

.page-grouphome .flow-step-number {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--color-light-accent);
  margin-bottom: 14px;
}

.page-grouphome .flow-step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-grouphome .flow-step-desc {
  font-size: 12px;
  color: var(--color-body);
  line-height: 1.7;
}

.page-grouphome .flow-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-body);
}

/* ========== SCHEDULE ========== */
.page-grouphome .schedule-section {
  margin-bottom: 70px;
}

.page-grouphome .schedule-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-grouphome .schedule-timeline {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.page-grouphome .schedule-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-green), var(--color-accent));
  border-radius: 2px;
}

.page-grouphome .schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 6px;
  position: relative;
}

.page-grouphome .schedule-time {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-green);
  flex-shrink: 0;
  width: 68px;
  text-align: right;
  padding-top: 2px;
}

.page-grouphome .schedule-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-green);
  flex-shrink: 0;
  margin-top: 4px;
}

.page-grouphome .schedule-content {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-dark);
  padding-bottom: 20px;
}

/* ========== FACILITY ========== */
.page-grouphome .facility-section {
  margin-bottom: 70px;
}

.page-grouphome .facility-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-grouphome .facility-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.page-grouphome .facility-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.page-grouphome .facility-card-images .ph-image {
  height: 360px;
  border-radius: 0;
}

.page-grouphome .facility-card-top {
  padding: 36px 50px 28px;
  border-bottom: 1px solid #f0ebe5;
}

.page-grouphome .facility-card-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.page-grouphome .facility-card-label.green { background: var(--color-green); }

.page-grouphome .facility-card-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.page-grouphome .facility-card-capacity {
  font-size: 14px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-grouphome .facility-card-body {
  padding: 30px 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.page-grouphome .facility-info-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-grouphome .facility-info-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-light-accent);
}

.page-grouphome .facility-info-text {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.page-grouphome .facility-info-text small {
  font-size: 12px;
  color: #999;
}

.page-grouphome .facility-badge-new {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-accent), #e8894a);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ========== CONTACT ========== */
.page-grouphome .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-grouphome .contact-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-grouphome .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-grouphome .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-grouphome .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== BREADCRUMB ========== */
.page-grouphome .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-grouphome .breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.page-grouphome .breadcrumb a:hover { opacity: 0.6; }
.page-grouphome .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== HAMBURGER ========== */






/* ========== FADE IN ========== */


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-grouphome .page-hero {
    margin-top: 60px;
    min-height: auto;
  }

  .page-grouphome .hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -15px;
  }

  .page-grouphome .page-hero-inner {
    padding: 50px 20px 40px;
  }

  .page-grouphome .page-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-grouphome .page-hero-catch {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .page-grouphome .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .page-grouphome .section-wrap {
    padding: 50px 20px;
  }

  .page-grouphome .section-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .page-grouphome .intro-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }

  .page-grouphome .intro-row.reverse {
    flex-direction: column;
  }

  .page-grouphome .intro-image {
    min-height: 200px;
  }

  .page-grouphome .intro-text-title {
    font-size: 18px;
  }

  .page-grouphome .intro-text p {
    font-size: 14px;
  }

  .page-grouphome .feature-num {
    font-size: 30px;
    width: 44px;
  }

  .page-grouphome .feature-item {
    gap: 16px;
    padding: 20px 0;
  }

  .page-grouphome .feature-item-title {
    font-size: 14px;
  }

  .page-grouphome .gallery-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .page-grouphome .gallery-row .ph-image {
    height: 200px;
  }

  .page-grouphome .flow-section {
    padding: 36px 20px;
    border-radius: 14px;
  }

  .page-grouphome .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-grouphome .flow-step {
    padding: 24px 16px 20px;
  }

  .page-grouphome .flow-step-number {
    font-size: 36px;
  }

  .page-grouphome .flow-step-title {
    font-size: 14px;
  }

  .page-grouphome .facility-card-images {
    grid-template-columns: 1fr;
  }

  .page-grouphome .facility-card-images .ph-image {
    height: 260px;
  }

  .page-grouphome .facility-card-top {
    padding: 24px 20px 20px;
  }

  .page-grouphome .facility-card-name {
    font-size: 20px;
  }

  .page-grouphome .facility-card-body {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-grouphome .contact-section { padding: 50px 20px; }

  .page-grouphome .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-grouphome .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-grouphome .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }


}


/* ========== BTYPE PAGE (scoped) ========== */
/* ========== BTYPE PAGE SPECIFIC ========== */




/* ========== HEADER ========== */









/* ========== HERO ========== */
.page-btype .page-hero {
  margin-top: 104px;
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #f9eef1 0%, #f0d4db 40%, #f5f0eb 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-btype .page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(219, 91, 117, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-btype .page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(219, 91, 117, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-btype .page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-btype .page-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-pink);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-btype .page-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-btype .page-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

.page-btype .page-hero-badge {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-pink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 6px;
  margin-top: 32px;
}

.page-btype .hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(219, 91, 117, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ========== SECTION COMMON ========== */
.page-btype .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-btype .section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
}

.page-btype .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* ========== PLACEHOLDER IMAGE ========== */
.page-btype .ph-image {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 8px;
  overflow: hidden;
}

/* ========== INTRO (text + image side by side) ========== */
.page-btype .intro-row {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 70px;
}

.page-btype .intro-row.reverse {
  flex-direction: row-reverse;
}

.page-btype .intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-btype .intro-text-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.page-btype .intro-text-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 2px;
}

.page-btype .intro-text-title.pink::before { background: var(--color-pink); }

.page-btype .intro-text p {
  font-size: 15px;
  color: var(--color-body);
  line-height: 2;
  letter-spacing: 0.8px;
}

.page-btype .intro-image {
  flex: 1;
  min-height: 320px;
}

/* ========== FEATURES ========== */
.page-btype .features-section {
  margin-bottom: 70px;
}

.page-btype .features-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-btype .features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: feature;
}

.page-btype .feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid #ece7e1;
  counter-increment: feature;
}

.page-btype .feature-item:first-child {
  border-top: 1px solid #ece7e1;
}

.page-btype .feature-num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.page-btype .feature-num.pink { color: var(--color-pink); }

.page-btype .feature-item-body {
  flex: 1;
}

.page-btype .feature-item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.page-btype .feature-item-text {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.8;
}

/* ========== PHOTO GALLERY ROW ========== */
.page-btype .gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 70px;
}

.page-btype .gallery-row .ph-image {
  height: 340px;
}

/* ========== FLOW ========== */
.page-btype .flow-section {
  background: var(--color-section-bg);
  border-radius: 20px;
  padding: 50px 60px;
  margin-bottom: 70px;
}

.page-btype .flow-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

.page-btype .flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.page-btype .flow-step {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
}

.page-btype .flow-step-number {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--color-light-accent);
  margin-bottom: 14px;
}

.page-btype .flow-step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-btype .flow-step-desc {
  font-size: 12px;
  color: var(--color-body);
  line-height: 1.7;
}

.page-btype .flow-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-body);
}

/* ========== SCHEDULE ========== */
.page-btype .schedule-section {
  margin-bottom: 70px;
}

.page-btype .schedule-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-btype .schedule-timeline {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.page-btype .schedule-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 102px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-pink), var(--color-accent));
  border-radius: 2px;
}

.page-btype .schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 6px;
  position: relative;
}

.page-btype .schedule-time {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-pink);
  flex-shrink: 0;
  width: 90px;
  text-align: right;
  padding-top: 2px;
}

.page-btype .schedule-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-pink);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-pink);
  flex-shrink: 0;
  margin-top: 4px;
}

.page-btype .schedule-content {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-dark);
  padding-bottom: 20px;
}

/* ========== WORK EXAMPLES ========== */
.page-btype .work-examples {
  margin-bottom: 70px;
}

.page-btype .work-examples-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.page-btype .work-examples-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-btype .work-example-tag {
  padding: 10px 28px;
  border-radius: 30px;
  border: 1.5px solid #e0dbd5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-dark);
}

/* ========== FACILITY ========== */
.page-btype .facility-section {
  margin-bottom: 70px;
}

.page-btype .facility-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.page-btype .facility-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.page-btype .facility-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.page-btype .facility-card-images .ph-image {
  height: 360px;
  border-radius: 0;
}

.page-btype .facility-card-top {
  padding: 36px 50px 28px;
  border-bottom: 1px solid #f0ebe5;
}

.page-btype .facility-card-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.page-btype .facility-card-label.pink { background: var(--color-pink); }

.page-btype .facility-card-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.page-btype .facility-card-capacity {
  font-size: 14px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-btype .facility-card-body {
  padding: 30px 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.page-btype .facility-info-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-btype .facility-info-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-light-accent);
}

.page-btype .facility-info-text {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.page-btype .facility-info-text small {
  font-size: 12px;
  color: #999;
}

/* ========== CONTACT ========== */
.page-btype .contact-section {
  background: var(--color-accent);
  padding: 80px 0;
  text-align: center;
}

.page-btype .contact-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-btype .contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.page-btype .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 22px 80px;
  border-radius: 40px;
  font-family: var(--font-ja);
  transition: all 0.3s;
}

.page-btype .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */








/* ========== BREADCRUMB ========== */
.page-btype .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: var(--color-body);
  letter-spacing: 1px;
}

.page-btype .breadcrumb a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.page-btype .breadcrumb a:hover { opacity: 0.6; }
.page-btype .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ========== HAMBURGER ========== */






/* ========== FADE IN ========== */


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {










  .page-btype .page-hero {
    margin-top: 60px;
    min-height: auto;
  }

  .page-btype .hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -15px;
  }

  .page-btype .page-hero-inner {
    padding: 50px 20px 40px;
  }

  .page-btype .page-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-btype .page-hero-catch {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .page-btype .breadcrumb {
    padding: 14px 20px;
    font-size: 12px;
  }

  .page-btype .section-wrap {
    padding: 50px 20px;
  }

  .page-btype .section-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .page-btype .intro-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }

  .page-btype .intro-row.reverse {
    flex-direction: column;
  }

  .page-btype .intro-image {
    min-height: 200px;
  }

  .page-btype .intro-text-title {
    font-size: 18px;
  }

  .page-btype .intro-text p {
    font-size: 14px;
  }

  .page-btype .feature-num {
    font-size: 30px;
    width: 44px;
  }

  .page-btype .feature-item {
    gap: 16px;
    padding: 20px 0;
  }

  .page-btype .feature-item-title {
    font-size: 14px;
  }

  .page-btype .gallery-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 50px;
  }

  .page-btype .gallery-row .ph-image {
    height: 260px;
  }

  .page-btype .flow-section {
    padding: 36px 20px;
    border-radius: 14px;
  }

  .page-btype .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-btype .flow-step {
    padding: 24px 16px 20px;
  }

  .page-btype .flow-step-number {
    font-size: 36px;
  }

  .page-btype .flow-step-title {
    font-size: 14px;
  }

  .page-btype .schedule-timeline::before {
    left: 50px;
  }

  .page-btype .schedule-time {
    width: 40px;
    font-size: 13px;
  }

  .page-btype .schedule-content {
    font-size: 14px;
  }

  .page-btype .work-examples-list {
    gap: 10px;
  }

  .page-btype .work-example-tag {
    padding: 8px 20px;
    font-size: 13px;
  }

  .page-btype .facility-card-images {
    grid-template-columns: 1fr;
  }

  .page-btype .facility-card-images .ph-image {
    height: 260px;
  }

  .page-btype .facility-card-top {
    padding: 24px 20px 20px;
  }

  .page-btype .facility-card-name {
    font-size: 20px;
  }

  .page-btype .facility-card-body {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-btype .contact-section { padding: 50px 20px; }

  .page-btype .contact-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .page-btype .contact-desc {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .page-btype .btn-contact {
    font-size: 15px;
    padding: 16px 40px;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
  }


}


/* ========================================== */
/* ========== NURSING PAGE ========== */
/* ========================================== */

.page-nursing .nursing-hero {
  margin-top: 104px;
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #e8f4f3 0%, #d4ede9 40%, #c8e6e2 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-nursing .nursing-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 180, 174, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-nursing .nursing-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 180, 174, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-nursing .nursing-hero-typo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 160px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(96, 180, 174, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-nursing .nursing-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-nursing .nursing-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: #4a9e98;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-nursing .nursing-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-nursing .nursing-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

/* SECTION COMMON */
.page-nursing .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-nursing .section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-green);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-nursing .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.page-nursing .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: #999;
}

.page-nursing .breadcrumb a {
  color: var(--color-green);
  transition: opacity 0.3s;
}

.page-nursing .breadcrumb a:hover { opacity: 0.6; }
.page-nursing .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ABOUT */
.page-nursing .nursing-about {
  margin-bottom: 100px;
}

.page-nursing .nursing-about-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-green);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-nursing .nursing-about-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.page-nursing .nursing-about-text {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-body);
  max-width: 800px;
}

.page-nursing .nursing-about-text .highlight {
  color: var(--color-green);
  font-weight: 700;
}

/* SERVICE GRID */
.page-nursing .nursing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-nursing .nursing-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.page-nursing .nursing-service-card:hover {
  transform: translateY(-4px);
}

.page-nursing .nursing-service-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 300;
  color: rgba(96, 180, 174, 0.25);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.page-nursing .nursing-service-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.page-nursing .nursing-service-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-body);
}

.page-nursing .nursing-services {
  margin-bottom: 100px;
}

/* FLOW */
.page-nursing .nursing-flow {
  margin-bottom: 100px;
}

.page-nursing .nursing-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.page-nursing .nursing-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}

.page-nursing .nursing-flow-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.page-nursing .nursing-flow-step {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-green);
  letter-spacing: 2px;
  white-space: nowrap;
  min-width: 80px;
  padding-top: 4px;
}

.page-nursing .nursing-flow-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.page-nursing .nursing-flow-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-body);
}

/* INFO TABLE (reuse shared styles) */
.page-nursing .info-table {
  max-width: 900px;
}

.page-nursing .info-row {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}

.page-nursing .info-row:first-child {
  border-top: 1px solid #e8e8e8;
}

.page-nursing .info-label {
  min-width: 180px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
}

.page-nursing .info-value {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-body);
}

.page-nursing .info-value a {
  color: var(--color-green);
  transition: opacity 0.3s;
}

.page-nursing .info-value a:hover { opacity: 0.6; }

/* CONTACT (shared) */
.page-nursing .contact-section {
  background: var(--color-section-bg);
  text-align: center;
  padding: 80px 20px;
}

.page-nursing .contact-section .section-title {
  margin-bottom: 20px;
}

.page-nursing .contact-desc {
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 32px;
}

.page-nursing .btn-contact {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 4px;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.page-nursing .btn-contact:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-nursing .nursing-hero {
    min-height: 400px;
  }

  .page-nursing .nursing-hero-inner {
    padding: 80px 20px 60px;
  }

  .page-nursing .nursing-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-nursing .nursing-hero-catch {
    font-size: 14px;
  }

  .page-nursing .nursing-hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -15px;
  }

  .page-nursing .section-wrap {
    padding: 50px 20px;
  }

  .page-nursing .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .page-nursing .breadcrumb {
    padding: 15px 20px;
  }

  .page-nursing .nursing-about-title {
    font-size: 22px;
  }

  .page-nursing .nursing-service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nursing .nursing-flow-item {
    flex-direction: column;
    gap: 8px;
  }

  .page-nursing .info-row {
    flex-direction: column;
    gap: 4px;
  }

  .page-nursing .info-label {
    min-width: auto;
    font-size: 13px;
  }
}

/* ========================================== */
/* ========== TOURISM PAGE ========== */
/* ========================================== */

.page-tourism .tourism-hero {
  margin-top: 104px;
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #f5f0eb 0%, #f0e4d8 40%, #ebe0d4 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-tourism .tourism-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(219, 91, 117, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.page-tourism .tourism-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 162, 84, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-tourism .tourism-hero-typo {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: -4px;
  color: rgba(219, 91, 117, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-tourism .tourism-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-tourism .tourism-hero-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-pink);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-tourism .tourism-hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.page-tourism .tourism-hero-catch {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 2px;
  line-height: 2;
  max-width: 640px;
}

/* SECTION COMMON */
.page-tourism .section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 90px;
}

.page-tourism .section-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-pink);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-tourism .section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.page-tourism .breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 90px;
  font-size: 13px;
  color: #999;
}

.page-tourism .breadcrumb a {
  color: var(--color-pink);
  transition: opacity 0.3s;
}

.page-tourism .breadcrumb a:hover { opacity: 0.6; }
.page-tourism .breadcrumb span { margin: 0 8px; color: #ccc; }

/* ABOUT */
.page-tourism .tourism-about {
  margin-bottom: 100px;
}

.page-tourism .tourism-about-label {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-pink);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-tourism .tourism-about-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.page-tourism .tourism-about-text {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-body);
  max-width: 800px;
}

.page-tourism .tourism-about-text .highlight {
  color: var(--color-pink);
  font-weight: 700;
}

/* SERVICE GRID */
.page-tourism .tourism-services {
  margin-bottom: 100px;
}

.page-tourism .tourism-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-tourism .tourism-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.page-tourism .tourism-service-card:hover {
  transform: translateY(-4px);
}

.page-tourism .tourism-service-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 300;
  color: rgba(219, 91, 117, 0.20);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.page-tourism .tourism-service-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.page-tourism .tourism-service-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-body);
}

/* AREA */
.page-tourism .tourism-area {
  margin-bottom: 60px;
}

.page-tourism .tourism-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.page-tourism .tourism-area-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.page-tourism .tourism-area-card:hover {
  transform: translateY(-4px);
}

.page-tourism .tourism-area-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #f5f0eb;
}

.page-tourism .tourism-area-body {
  padding: 30px;
}

.page-tourism .tourism-area-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.page-tourism .tourism-area-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-body);
}

/* CONTACT */
.page-tourism .contact-section {
  background: var(--color-section-bg);
  text-align: center;
  padding: 80px 20px;
}

.page-tourism .contact-section .section-title {
  margin-bottom: 20px;
}

.page-tourism .contact-desc {
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 32px;
}

.page-tourism .btn-contact {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 4px;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.page-tourism .btn-contact:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-tourism .tourism-hero {
    min-height: 400px;
  }

  .page-tourism .tourism-hero-inner {
    padding: 80px 20px 60px;
  }

  .page-tourism .tourism-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-tourism .tourism-hero-catch {
    font-size: 14px;
  }

  .page-tourism .tourism-hero-typo {
    font-size: 80px;
    right: -10px;
    bottom: -10px;
  }

  .page-tourism .section-wrap {
    padding: 50px 20px;
  }

  .page-tourism .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .page-tourism .breadcrumb {
    padding: 15px 20px;
  }

  .page-tourism .tourism-about-title {
    font-size: 22px;
  }

  .page-tourism .tourism-service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tourism .tourism-area-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tourism .tourism-area-image {
    height: 180px;
  }
}

/* ==========================================================
   BLOG LIST PAGE
   ========================================================== */
.page-blog .blog-main {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* --- Featured Card --- */
.page-blog .blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #faf6f1;
  border: 1px solid #ece5dc;
  margin-bottom: 60px;
  transition: box-shadow 0.3s;
}

.page-blog .blog-featured:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.page-blog .blog-featured-image {
  min-height: 420px;
  overflow: hidden;
}

.page-blog .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.page-blog .blog-featured:hover .blog-featured-image img {
  transform: scale(1.04);
}

.page-blog .blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 48px;
  color: var(--color-dark);
}

.page-blog .blog-featured-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-blog .blog-featured-excerpt {
  font-size: 14px;
  color: var(--color-body);
  line-height: 2;
  margin-bottom: 32px;
}

.page-blog .blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.page-blog .blog-featured-meta .blog-date {
  color: #999;
}

/* --- Shared blog elements --- */
.page-blog .blog-date,
.page-blog-detail .blog-date {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 13px;
  color: #aaa;
}

.page-blog .blog-cat-badge,
.page-blog-detail .blog-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-accent);
  border: 1px solid rgba(240, 162, 84, 0.4);
  padding: 4px 14px;
  border-radius: 14px;
}

.page-blog .blog-cat-pill,
.page-blog-detail .blog-cat-pill {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-light-accent);
  padding: 2px 10px;
  border-radius: 10px;
}

.page-blog .blog-read-more {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-blog .blog-read-more-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

.page-blog .blog-ph,
.page-blog-detail .blog-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e4df, #d4cfc9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
}

/* --- 3-column grid --- */
.page-blog .blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.page-blog .blog-card,
.page-blog-detail .blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-blog .blog-card:hover,
.page-blog-detail .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.page-blog .blog-card-thumb,
.page-blog-detail .blog-card-thumb {
  height: 220px;
  overflow: hidden;
}

.page-blog .blog-card-thumb img,
.page-blog-detail .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.page-blog .blog-card:hover .blog-card-thumb img,
.page-blog-detail .blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

.page-blog .blog-card-info,
.page-blog-detail .blog-card-info {
  padding: 20px 22px 24px;
}

.page-blog .blog-card-meta,
.page-blog-detail .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-blog .blog-card-title,
.page-blog-detail .blog-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-dark);
}

/* --- List view --- */
.page-blog .blog-list {
  display: flex;
  flex-direction: column;
}

.page-blog .blog-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid #e8e3dd;
  transition: background 0.3s;
}

.page-blog .blog-list-item.first {
  border-top: 1px solid #e8e3dd;
}

.page-blog .blog-list-item:hover {
  background: #fdfaf6;
}

.page-blog .blog-list-thumb {
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
}

.page-blog .blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.page-blog .blog-list-item:hover .blog-list-thumb img {
  transform: scale(1.05);
}

.page-blog .blog-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.page-blog .blog-list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark);
}

.page-blog .blog-list-excerpt {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Empty state --- */
.page-blog .blog-empty {
  text-align: center;
  padding: 100px 0;
}

.page-blog .blog-empty p {
  color: #999;
  font-size: 15px;
  letter-spacing: 2px;
}

/* ==========================================================
   BLOG DETAIL PAGE
   ========================================================== */
.page-blog-detail .breadcrumb-current {
  color: #999;
}

/* --- Eyecatch --- */
.page-blog-detail .blog-detail-eyecatch {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-detail .blog-detail-eyecatch figure {
  margin: 32px 0;
}

.page-blog-detail .blog-detail-eyecatch img {
  width: 100%;
  border-radius: 0;
}

/* --- Related --- */
.page-blog-detail .blog-related {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.page-blog-detail .blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==========================================================
   BLOG RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .page-blog .blog-main {
    padding: 30px 20px 60px;
  }

  .page-blog .blog-featured {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .page-blog .blog-featured-image {
    min-height: 240px;
  }

  .page-blog .blog-featured-body {
    padding: 30px 24px;
  }

  .page-blog .blog-featured-title {
    font-size: 20px;
  }

  .page-blog .blog-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-blog .blog-card-thumb,
  .page-blog-detail .blog-card-thumb {
    height: 180px;
  }

  .page-blog .blog-list-item {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .page-blog .blog-list-thumb {
    height: 90px;
  }

  .page-blog .blog-list-title {
    font-size: 14px;
  }

  .page-blog .blog-list-excerpt {
    display: none;
  }

  .page-blog .breadcrumb {
    padding: 15px 20px;
  }

  .page-blog-detail .blog-related {
    padding: 50px 20px 60px;
  }

  .page-blog-detail .blog-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-detail .breadcrumb {
    padding: 15px 20px;
  }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
/* --- Form Wrap --- */
.page-contact .contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Department Selection --- */
.page-contact .contact-dept-section {
  margin-bottom: 48px;
}

.page-contact .contact-dept-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  border: 1px solid #e5e0db;
  border-radius: 12px;
  overflow: hidden;
}

.page-contact .contact-dept-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #f0ece6;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-ja);
  text-align: left;
}

.page-contact .contact-dept-item:last-child {
  border-bottom: none;
}

.page-contact .contact-dept-item:hover {
  background: #fdfaf6;
}

.page-contact .contact-dept-item.active {
  background: #fdf6ee;
}

.page-contact .contact-dept-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d0cac3;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.page-contact .contact-dept-item.active .contact-dept-radio {
  border-color: var(--color-accent);
}

.page-contact .contact-dept-item.active .contact-dept-radio::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.page-contact .contact-dept-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-contact .contact-dept-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.5px;
}

.page-contact .contact-dept-sub {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
}

/* --- Form Fields --- */
.page-contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-contact .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-contact .contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.page-contact .contact-form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-contact .contact-required {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--color-accent);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.page-contact .contact-input,
.page-contact .contact-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0dbd5;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-ja);
  color: var(--color-dark);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.page-contact .contact-input:focus,
.page-contact .contact-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(240, 162, 84, 0.08);
}

.page-contact .contact-input::placeholder,
.page-contact .contact-textarea::placeholder {
  color: #c0b8b0;
  font-size: 14px;
}

.page-contact .contact-textarea {
  resize: vertical;
  min-height: 200px;
  line-height: 1.8;
}

/* --- Agree --- */
.page-contact .contact-agree {
  margin-top: 8px;
}

.page-contact .contact-agree-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.page-contact .contact-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.page-contact .contact-agree-text {
  font-size: 14px;
  color: var(--color-body);
}

.page-contact .contact-agree-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Submit --- */
.page-contact .contact-submit {
  text-align: center;
  margin-top: 16px;
}

.page-contact .contact-submit-btn {
  display: inline-block;
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4px;
  padding: 22px 100px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-ja);
  transition: opacity 0.3s;
}

.page-contact .contact-submit-btn:hover {
  opacity: 0.8;
}

.page-contact .contact-submit-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.page-contact .contact-error {
  text-align: center;
  color: #c43739;
  font-size: 14px;
  font-weight: 500;
}

/* --- Thanks --- */
.page-contact .contact-thanks {
  text-align: center;
  padding: 60px 0 100px;
}

.page-contact .contact-thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.page-contact .contact-thanks-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.page-contact .contact-thanks-text {
  font-size: 15px;
  color: var(--color-body);
  line-height: 2.2;
  margin-bottom: 40px;
}

.page-contact .contact-thanks .btn-outline {
  display: inline-block;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 40px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.page-contact .contact-thanks .btn-outline:hover {
  background: var(--color-dark);
  color: #fff;
}

/* --- Confirm Screen --- */
.page-contact .contact-confirm-table {
  max-width: 640px;
  margin: 0 auto;
}

.page-contact .confirm-row {
  display: flex;
  border-bottom: 1px solid #f0ebe5;
  padding: 18px 0;
}

.page-contact .confirm-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  width: 160px;
  flex-shrink: 0;
}

.page-contact .confirm-value {
  font-size: 15px;
  color: var(--color-body);
  flex: 1;
}

.page-contact .confirm-message {
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .page-contact .confirm-row {
    flex-direction: column;
    gap: 6px;
  }

  .page-contact .confirm-label {
    width: auto;
  }
}

/* --- Info Section --- */
.page-contact .contact-info-section {
  background: var(--color-section-bg);
  padding: 80px 90px;
}

.page-contact .contact-info-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.page-contact .contact-info-block h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-warm);
  margin-bottom: 16px;
}

.page-contact .contact-info-tel {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.page-contact .contact-info-note {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
}

.page-contact .contact-info-address {
  font-size: 15px;
  color: var(--color-body);
  line-height: 2;
}

/* ==========================================================
   CONTACT PAGE RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .page-contact .breadcrumb {
    padding: 15px 20px;
  }

  .page-contact .section-wrap {
    padding: 50px 20px;
  }

  .page-contact .contact-dept-item {
    padding: 16px 18px;
  }

  .page-contact .contact-field-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-contact .contact-submit-btn {
    width: 100%;
    padding: 18px 20px;
  }

  .page-contact .contact-info-section {
    padding: 50px 20px;
  }

  .page-contact .contact-info-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-contact .contact-info-tel {
    font-size: 26px;
  }
}


/* ========== SERVICE PAGE (事業内容一覧) ========== */

.service-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px 0 0;
}

.service-item {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-item-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-number {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.service-item-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.service-item-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-item-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--color-body);
  margin-bottom: 28px;
}

.service-item-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item-sublinks {
  display: flex;
  gap: 24px;
}

.service-sublink {
  font-size: 14px;
  color: var(--color-accent);
  position: relative;
  padding-left: 16px;
}

.service-sublink::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .service-list {
    gap: 50px;
    padding: 50px 0;
  }

  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }

  .service-item-name {
    font-size: 22px;
  }

  .service-item-sublinks {
    flex-direction: column;
    gap: 10px;
  }
}


/* ========== NEWS PAGE (新着情報一覧) ========== */

.news-page-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.news-page-item {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid #e8e4df;
  transition: background .2s;
}

.news-page-item:first-child {
  border-top: 1px solid #e8e4df;
}

.news-page-item:hover {
  background: rgba(240, 162, 84, .04);
}

.news-page-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.news-page-date {
  font-family: var(--font-en);
  font-size: 13px;
  color: #999;
  letter-spacing: .04em;
}

.news-page-tag {
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 20px;
  background: var(--color-light-accent);
  color: var(--color-warm);
  font-weight: 500;
}

.news-page-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.news-page-excerpt {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.8;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-empty {
  text-align: center;
  padding: 100px 20px;
  color: #999;
  font-size: 15px;
}

@media (max-width: 768px) {
  .news-page-list {
    padding: 40px 0 60px;
  }

  .news-page-item {
    padding: 20px 0;
  }

  .news-page-title {
    font-size: 15px;
  }
}


/* ========== NEWS DETAIL PAGE (新着情報 詳細) ========== */

.news-detail-eyecatch {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.news-detail-eyecatch figure {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.news-detail-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.news-detail-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-body);
  margin-bottom: 4px;
}

.news-detail-others {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-top: 1px solid #e8e4df;
}

.news-detail-others-title {
  font-size: 18px;
  font-weight: 700;
  padding-top: 40px;
  margin-bottom: 8px;
}

.news-detail-others-list .news-page-item:first-child {
  border-top: none;
}

@media (max-width: 768px) {
  .news-detail-eyecatch {
    padding: 0 20px;
    margin-top: 24px;
  }

  .news-detail-body {
    padding: 40px 0 50px;
  }

  .news-detail-others {
    padding-bottom: 50px;
  }
}

/* ========== ARTICLE BODY & BLOCK RENDERER ========== */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  font-size: 15px;
  line-height: 2.2;
  color: #444;
  letter-spacing: 0.4px;
}
.article-body > * + * { margin-top: 28px; }
.article-body p { margin-top: 20px; }
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #171717;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0a254;
  margin-top: 48px;
  letter-spacing: 1.5px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  padding-left: 14px;
  border-left: 3px solid #f0a254;
  margin-top: 36px;
  letter-spacing: 1px;
}
.article-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-top: 28px;
}
.article-body hr {
  border: none;
  height: 1px;
  background: #e5e0db;
  margin: 40px 0;
}
.article-body img { max-width: 100%; height: auto; border-radius: 8px; }
.block-image { margin: 32px 0; }
.block-image figcaption { text-align: center; font-size: 13px; color: #aaa; margin-top: 10px; }
.block-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 32px 0; }
.block-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.block-quote {
  position: relative;
  background: #171717;
  border-radius: 14px;
  padding: 36px 44px;
  margin: 32px 0;
}
.block-quote::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 60px;
  color: #f0a254;
  opacity: 0.3;
  line-height: 1;
}
.block-quote p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 2.1; margin: 0; }
.block-quote cite { display: block; color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 12px; font-style: normal; }
.block-table-wrap { overflow-x: auto; margin: 28px 0; }
.block-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.block-table th, .block-table td { padding: 14px 18px; border-bottom: 1px solid #e8e3dd; text-align: left; line-height: 1.7; }
.block-table th { background: #faf8f5; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.block-columns { display: grid; gap: 24px; margin: 28px 0; }
.block-columns-2 { grid-template-columns: 1fr 1fr; }
.block-columns-3 { grid-template-columns: 1fr 1fr 1fr; }
.block-button-wrap { text-align: center; margin: 32px 0; }
.block-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.block-button:hover { opacity: 0.85; }
.block-button-primary { background: #f0a254; color: #fff; }
.block-button-secondary { background: #171717; color: #fff; }
.block-button-outline { border: 2px solid #f0a254; color: #f0a254; background: transparent; }
.block-link-list { list-style: none; margin: 24px 0; }
.block-link-list li { border-bottom: 1px solid #f0ece6; }
.block-link-list a {
  display: block;
  padding: 14px 8px;
  color: #171717;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.block-link-list a::before { content: '→ '; color: #f0a254; }
.block-link-list a:hover { color: #f0a254; }
.block-accordion { margin: 28px 0; }
.block-accordion-item { border: 1px solid #e5e0db; border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.block-accordion-item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #171717;
  cursor: pointer;
  background: #fdfcfa;
  list-style: none;
}
.block-accordion-item summary::-webkit-details-marker { display: none; }
.block-accordion-item summary::before { content: '▸ '; color: #f0a254; }
.block-accordion-item[open] summary::before { content: '▾ '; }
.block-accordion-body { padding: 16px 20px; font-size: 14px; color: #666; border-top: 1px solid #f0ece6; }
.block-steps { margin: 28px 0; }
.block-step { display: flex; gap: 16px; margin-bottom: 20px; }
.block-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0a254;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.block-step-body h4 { font-size: 15px; font-weight: 700; color: #171717; margin: 0 0 4px; border: none; padding: 0; }
.block-step-body p { font-size: 14px; color: #666; margin: 0; line-height: 1.8; }
.block-faq { margin: 28px 0; }
.block-faq-item { border: 1px solid #e5e0db; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.block-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fdf6ee;
  font-weight: 700;
  font-size: 14px;
  color: #171717;
}
.block-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #f0ece6;
}
.block-faq-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.block-faq-badge.q { background: #f0a254; }
.block-faq-badge.a { background: #60B4AE; }
.block-bubble { display: flex; gap: 12px; margin: 24px 0; }
.block-bubble-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf6ee;
  border: 1px solid #e5e0db;
  flex-shrink: 0;
}
.block-bubble-name { display: block; font-size: 12px; font-weight: 700; color: #999; margin-bottom: 4px; }
.block-bubble-text {
  background: #fdfcfa;
  border: 1px solid #e5e0db;
  border-radius: 16px;
  border-top-left-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}
.block-notice {
  border-left: 4px solid #f0a254;
  background: #fdf6ee;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.block-notice-title { font-size: 14px; font-weight: 700; color: #8a6d3b; margin-bottom: 8px; }
.block-notice-body { font-size: 14px; color: #8a6d3b; line-height: 1.8; }
.block-panel {
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.8;
}
.block-panel-memo { background: #fdf6ee; border-left: 4px solid #f0a254; color: #8a6d3b; }
.block-panel-success { background: #f0faf8; border-left: 4px solid #60B4AE; color: #3d7a74; }
.block-panel-warning { background: #fdf6ee; border-left: 4px solid #f0a254; color: #8a6d3b; }
.block-panel-info { background: #f0f4fa; border-left: 4px solid #6b9fd4; color: #4a6d8c; }
.block-panel-error { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }

@media (max-width: 768px) {
  .article-body { padding: 24px 16px 40px; }
  .block-columns-2, .block-columns-3 { grid-template-columns: 1fr; }
  .block-gallery { grid-template-columns: repeat(2, 1fr); }
  .block-quote { padding: 24px 20px 24px 36px; }
}

/* ========== GLOBAL btn-outline ========== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-ja);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-outline:hover::before { left: 0; }
.btn-outline:hover { color: #fff; border-color: var(--color-accent); }
.btn-outline::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
  position: relative;
  z-index: 1;
}
.btn-outline:hover::after { background: #fff; transform: translateX(5px); }
