
:root {
  /* Color Palette */
  --primary-navy: #1A365D;
  --primary-navy-light: #2C4A7C;
  --accent-gold: #C5A365;
  --accent-gold-hover: #DBC494;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-main: #333333;
  --text-muted: #666666;
  --text-inverse: #FFFFFF;
  --border-light: #E5E7EB;

  /* Typography */
  --font-heading: 'Noto Serif JP', 'Times New Roman', serif;
  --font-body: 'Noto Sans JP', 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1100px;
  --section-padding: 80px 20px;
  --section-padding-mobile: 60px 20px;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-break {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--primary-navy);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  letter-spacing: 0.05em;
  position: relative;
  display: table;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--text-inverse);
}

/* Hero outline button: translucent dark glass so the white label stays legible
   over the bright right side of the hero photo (the scrim fades out there) */
.btn-hero-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(14, 27, 48, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow-sm);
}
.btn-hero-outline:hover {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  flex-direction: column;
}

.logo span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-tel {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-tel .num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-body);
}

.header-tel .time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-navy);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 80px; /* Offset for header */
  background-color: #0E1B30;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 32%;
  opacity: 1;
  filter: saturate(0.98) contrast(1.02);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: rgba(197, 163, 101, 0.2);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197, 163, 101, 0.4);
}

.hero-title {
  color: var(--text-inverse);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55), 0 6px 28px rgba(0,0,0,0.45);
}

.hero-lead {
  color: #fff;
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 2px 14px rgba(0,0,0,0.45);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* --- Strengths Section --- */
.strengths {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.strength-card {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
  border-top: 4px solid var(--primary-navy);
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-gold);
}

.strength-num {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(26, 54, 93, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.strength-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.strength-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
}

/* --- Services Section --- */
.services {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-header {
  background-color: var(--primary-navy);
  color: var(--text-inverse);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-header h3 {
  color: var(--text-inverse);
  font-size: 1.4rem;
  margin: 0;
}

.service-body {
  padding: 2rem;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* --- Concerns Section --- */
.concerns {
  padding: var(--section-padding);
  background-color: var(--primary-navy);
  color: var(--text-inverse);
}

.concerns .section-title {
  color: var(--text-inverse);
}

.concerns .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.concerns-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.concerns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.concerns-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.concerns-list li .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--accent-gold);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 4px;
}

.concerns-action {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- About Section --- */
.about {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.about-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  background: var(--bg-white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image {
  flex: 0 0 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-role {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.about-list li span:first-child {
  width: 120px;
  font-weight: 600;
  color: var(--primary-navy);
}

/* --- Area Section --- */
.area {
  padding: var(--section-padding);
  text-align: center;
}

.area-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.area-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-item h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.area-item p {
  color: var(--text-muted);
  padding-left: 1.5rem;
}

/* --- BLOG / Case Entrances --- */
.content-entry {
  padding: var(--section-padding);
}

.content-entry-blog {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.content-entry-cases {
  background: #F5F7F8;
  border-top: 1px solid var(--border-light);
}

.content-entry-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 4rem;
  align-items: center;
}

.content-entry-inner.is-reverse {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.content-entry-inner.is-reverse .content-entry-copy {
  grid-column: 2;
  grid-row: 1;
}

.content-entry-inner.is-reverse .content-entry-visual {
  grid-column: 1;
  grid-row: 1;
}

.entry-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.entry-label::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--accent-gold);
}

.content-entry-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.content-entry-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 2;
  margin-bottom: 1.7rem;
}

.entry-topics {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.entry-topics li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.entry-topics li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.55rem;
  height: 2px;
  background: var(--accent-gold);
}

.content-entry-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(26, 54, 93, 0.12);
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
}

.content-entry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-entry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,54,93,0.02), rgba(26,54,93,0.16));
  pointer-events: none;
}

/* --- Footer CTA --- */
.footer-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  padding: 4rem 20px;
  text-align: center;
  color: var(--text-inverse);
}

.footer-cta h2 {
  color: var(--text-inverse);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-white);
  color: var(--text-main);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  flex: 1;
  box-shadow: var(--shadow-lg);
}

.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.contact-card .tel {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-card .time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background-color: #0F2039;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 20px 2rem;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info .logo {
  color: var(--text-inverse);
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--text-inverse);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* --- Image / Icon Add-ons --- */

/* Full-image overlay removed. Only a soft LEFT-EDGE scrim remains so the copy
   stays readable — it fades to fully transparent by ~60%, keeping the two men
   and the bright office completely visible on the right. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(11, 21, 38, 0.72) 0%,
    rgba(11, 21, 38, 0.50) 30%,
    rgba(11, 21, 38, 0.18) 48%,
    rgba(11, 21, 38, 0) 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hero-meta-item small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* Strength card icon */
.strength-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197,163,101,0.12), rgba(26,54,93,0.06));
  color: var(--primary-navy);
  transition: var(--transition-normal);
}
.strength-icon svg {
  width: 36px;
  height: 36px;
}
.strength-card:hover .strength-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-navy));
  color: #fff;
  transform: scale(1.05);
}

/* Service header icon */
.service-header {
  position: relative;
  overflow: hidden;
}
.service-header::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,163,101,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: var(--accent-gold);
  flex-shrink: 0;
}
.service-icon svg {
  width: 32px;
  height: 32px;
}
.service-header h3 {
  position: relative;
  z-index: 1;
}
.service-card.is-green .service-header {
  background-color: #2d5016;
}

/* Section divider with mountain pattern */
.divider-mountain {
  height: 60px;
  background: url("../images/pattern-mountain.svg") center bottom / cover no-repeat;
  margin-top: -60px;
  position: relative;
  pointer-events: none;
}

/* Synergy flow visual */
.synergy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  max-width: 920px;
  margin: 3rem auto 0;
}
.synergy-step {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.synergy-step.is-final {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(26,54,93,0.25);
}
.synergy-step .icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(197,163,101,0.15);
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}
.synergy-step.is-final .icon {
  background: rgba(255,255,255,0.15);
  color: var(--accent-gold);
}
.synergy-step .icon svg { width: 28px; height: 28px; }
.synergy-step .title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.synergy-step.is-final .title { color: var(--accent-gold); }
.synergy-step .sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.03em;
}
.synergy-step.is-final .sub { color: rgba(255,255,255,0.85); }
.synergy-arrow {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Concerns illustration mark */
.concerns-mark {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  color: var(--accent-gold);
}

/* Contact card visual */
.contact-card {
  position: relative;
  overflow: hidden;
}
.contact-card .icon-mark {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 36px; height: 36px;
  color: var(--accent-gold);
  opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.15rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .header-cta {
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    flex-direction: column;
    padding: 3rem 2rem;
  }
  .about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .content-entry-inner,
  .content-entry-inner.is-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .content-entry-inner.is-reverse .content-entry-copy,
  .content-entry-inner.is-reverse .content-entry-visual {
    grid-column: auto;
    grid-row: auto;
  }
  .content-entry-visual {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .synergy-flow {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .synergy-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero {
    height: auto;
    padding: 100px 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .mobile-break {
    display: block;
  }
  .hero-actions {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .concerns-list {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-meta { gap: 1.4rem 2rem; }
  .hero-meta-item strong { font-size: 1.5rem; }
  .content-entry {
    padding: var(--section-padding-mobile);
  }
  .content-entry-copy p {
    font-size: 0.98rem;
  }
  .entry-label {
    letter-spacing: 0.14em;
  }
}

/* Price */
.price {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.price-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 2;
}

.price-intro strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.price-block {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.price-block-title {
  font-size: 1.3rem;
  color: var(--primary-navy);
  padding-left: 0.9rem;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 1.2rem;
}

.price-table-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.price-table thead th {
  background-color: var(--primary-navy);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-weight: 500;
  text-align: left;
  padding: 1rem 1.5rem;
  white-space: nowrap;
}

.price-table thead .col-fee { text-align: right; }

.price-table tbody td {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-main);
  vertical-align: middle;
}

.price-table tbody tr:nth-child(even) {
  background-color: #FBFBF8;
}

.price-table tbody tr:hover {
  background-color: #F4F0E6;
}

.price-table .fee {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.05rem;
}

.price-table .col-note,
.price-table td:nth-child(3) {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.price-notes {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.price-notes li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

.price-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.price-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .price-intro { margin-bottom: 2rem; }

  .price-table thead {
    display: none;
  }
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tbody tr {
    border-top: 3px solid var(--primary-navy);
    padding: 0.6rem 0;
  }
  .price-table tbody tr:first-child {
    border-top: none;
  }
  .price-table tbody td {
    border-top: none;
    padding: 0.45rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }
  .price-table tbody td::before {
    content: attr(data-label);
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
  }
  .price-table tbody td[data-label="業務内容"] {
    font-weight: 700;
    color: var(--primary-navy);
  }
  .price-table tbody td[data-label="業務内容"]::before {
    display: none;
  }
  .price-table .fee {
    text-align: right;
  }
}

/* ============================================
   お問い合わせフォーム（#contact 内）
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-info-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 600;
}

.contact-info-tel {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-inverse);
  line-height: 1.1;
  text-decoration: none;
}

.contact-info-tel:hover {
  color: var(--accent-gold-hover);
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-inverse);
  line-height: 1.6;
}

.contact-info-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form-card {
  background: var(--bg-white);
  color: var(--text-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.contact-form-card .contact-form-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 1;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.contact-form .form-row {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.form-required,
.form-optional {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.form-required {
  background: #C0392B;
  color: #fff;
}

.form-optional {
  background: var(--border-light);
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-light);
  transition: var(--transition-normal);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa1ab;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(197, 163, 101, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 1;
  margin: 0.25rem 0 1.5rem;
  line-height: 1.7;
}

.contact-form .form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info {
    padding-top: 0;
  }
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}


/* WordPress rendering and Japanese line-break QA helpers */
html {
  line-break: strict;
}
body {
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
:where(h1, h2, h3, h4, p, li, dt, dd, label, button, a) {
  line-break: strict;
}
:where(.hero-title, .section-title, .page-hero h1, .lead-large, .cta-section h2, .contact-form-title, .card-title) {
  text-wrap: balance;
}
:where(.hero-lead, .section-subtitle, .contact-form-lead, .page-hero p) {
  text-wrap: pretty;
}
:where(.header-tel, .contact-info-tel, .num, .tel, .required, .optional, .form-required, .form-optional) {
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
@supports not (word-break: auto-phrase) {
  body {
    word-break: normal;
  }
}
