/*
Theme Name: ZeroY Starter
Description: GOLFNIA Japan B2B Golf Ball OEM Manufacturing Theme
*/

/* --------------------------------------------------
   Reset & Base Styles
-------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-gray);
  box-shadow: 0 1px 3px rgba(15, 43, 70, 0.04);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: var(--radius-control);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.site-tagline {
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  margin-top: 2px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.nav-list a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--green);
}

.nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--green);
}

.nav-contact-btn {
  background-color: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-control);
  font-weight: 600 !important;
  box-shadow: 0 2px 6px rgba(30, 122, 78, 0.2);
}

.nav-contact-btn:hover {
  background-color: var(--green-deep) !important;
  color: var(--white) !important;
}

/* お問い合わせページ表示中は、ボタンを一段濃くして現在地を示す */
.nav-list a.nav-contact-btn.is-active {
  background-color: var(--green-deep) !important;
}

.nav-list a.nav-contact-btn.is-active::after {
  display: none;
}

/* --------------------------------------------------
   About Page: Hero Section
-------------------------------------------------- */
.about-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 122, 78, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #85CBA4;
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-hero-title .accent {
  color: #85CBA4;
  display: inline-block;
}

.about-hero-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin-bottom: 48px;
}

.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-control);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-num small {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 4px;
  color: #85CBA4;
}

.metric-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------
   General Sections
-------------------------------------------------- */
.about-section {
  padding: 88px 0;
}

.bg-white {
  background-color: var(--white);
}

.bg-soft {
  background-color: var(--soft-gray);
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}

.section-badge {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto;
}

.section-center-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 1.4rem;
}

/* --------------------------------------------------
   Split Row (Philosophy & QC)
-------------------------------------------------- */
.split-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.split-row.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.quote-box {
  background-color: var(--green-tint);
  border-left: 4px solid var(--green);
  padding: 18px 22px;
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  margin-top: 28px;
}

.quote-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------
   Gray Placeholder Boxes (画像代替ブロック)
-------------------------------------------------- */
.ph-box {
  background: linear-gradient(135deg, #E6EAEF 0%, #D8DFE7 100%);
  border: 1px solid #CCD5DF;
  border-radius: var(--radius-control);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(15, 43, 70, 0.04);
}

.ph-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.25) 0,
    rgba(255, 255, 255, 0.25) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.6;
}

.ph-box.aspect-4-3 {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.ph-box.aspect-16-10 {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.ph-box.aspect-4-5 {
  aspect-ratio: 4 / 5;
  width: 100%;
}

.ph-tag {
  position: relative;
  z-index: 2;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-deep);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: var(--radius-control);
  border: 1px solid var(--line-gray);
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(15, 43, 70, 0.06);
}

.ph-note {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  color: var(--text-sub);
}

/* --------------------------------------------------
   Manufacturing Capabilities
-------------------------------------------------- */
.capa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.capa-card {
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 43, 70, 0.04);
  display: flex;
  flex-direction: column;
}

.capa-content {
  padding: 28px;
  flex: 1;
}

.capa-content h3 {
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
}

.capa-content p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-gray);
  padding-top: 16px;
}

.check-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green);
  font-weight: 700;
}

/* --------------------------------------------------
   QC Steps
-------------------------------------------------- */
.qc-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.qc-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  padding: 14px 18px;
}

.step-idx {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.qc-step-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.qc-step-item p {
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------
   Delivery Flow
-------------------------------------------------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flow-card {
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-control);
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(15, 43, 70, 0.03);
}

.flow-num {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.flow-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 0;
  margin-bottom: 10px;
}

.flow-card p {
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------
   Company Profile Table (会社概要)
-------------------------------------------------- */
.profile-table-wrap {
  margin-top: 32px;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  overflow: hidden;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

.profile-table th,
.profile-table td {
  padding: 18px 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--line-gray);
  text-align: left;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: none;
}

.profile-table th {
  width: 28%;
  background-color: var(--soft-gray);
  color: var(--navy-deep);
  font-weight: 700;
  vertical-align: top;
}

.profile-table td {
  color: var(--text-main);
}

/* --------------------------------------------------
   About CTA Section
-------------------------------------------------- */
.about-cta-section {
  padding: 64px 0 88px;
  background-color: var(--white);
}

.cta-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 43, 70, 0.12);
}

.cta-kicker {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #85CBA4;
  margin-bottom: 12px;
  display: block;
}

.cta-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-control);
  box-shadow: 0 4px 16px rgba(30, 122, 78, 0.35);
  width: 100%;
  text-align: center;
}

.btn-cta:hover {
  background-color: var(--green-deep);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-nav-heading {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
  padding-top: 24px;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --------------------------------------------------
   Responsive Design (Mobile / Tablet)
-------------------------------------------------- */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .about-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-row,
  .split-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .capa-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .site-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .about-hero-metrics {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }
  .profile-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
}

/* --------------------------------------------------
   Testing Page (/testing/) — restrained B2B wordmark
-------------------------------------------------- */
.testing-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 320px);
  padding: 88px 0;
  background-color: var(--soft-gray);
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}

.testing-stage-inner {
  display: flex;
  justify-content: center;
}

.testing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  padding: clamp(44px, 6vw, 72px) clamp(48px, 10vw, 120px);
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-control);
  text-align: center;
}

.testing-accent {
  width: 36px;
  height: 2px;
  background-color: var(--green);
}

.testing-word {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  color: var(--navy-deep);
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .testing-stage {
    min-height: calc(100vh - 380px);
    padding: 64px 0;
  }
  .testing-card {
    width: 100%;
    padding: 36px 20px;
    gap: 18px;
  }
}

/* --------------------------------------------------
   Shared Page Hero (お問い合わせ・送信完了 など)
-------------------------------------------------- */
.page-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}

.page-hero .hero-kicker {
  margin-bottom: 14px;
}

.page-hero-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 18px;
  color: var(--white);
}

.page-hero-lead {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0;
}

/* --------------------------------------------------
   Contact Page (お問い合わせフォーム)
-------------------------------------------------- */
.contact-section {
  padding: 72px 0 88px;
  background-color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 14px;
}

.form-required-note {
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 28px;
}

.badge-req,
.badge-opt {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 1px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 1px;
  color: var(--white);
}

.badge-req {
  background-color: var(--green);
}

.badge-opt {
  background-color: var(--text-mute);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  padding: 12px 14px;
}

.form-input::placeholder {
  color: var(--text-mute);
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 122, 78, 0.12);
}

.form-textarea {
  resize: vertical;
}

.form-hint {
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 8px 0 0;
}

.form-consent {
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  padding: 18px 20px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 6px 0 0;
  flex-shrink: 0;
  accent-color: var(--green);
}

.form-actions {
  margin-top: 10px;
}

.btn-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.form-note {
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 14px 0 0;
}

/* --------------------------------------------------
   Contact Page: サイドブロック
-------------------------------------------------- */
.aside-block {
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  padding: 24px 22px;
}

.aside-block + .aside-block {
  margin-top: 20px;
}

.aside-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-gray);
}

.aside-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-flow li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.aside-idx {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.5;
}

.aside-flow strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.aside-flow p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-sub);
  margin: 0;
}

.aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aside-list li {
  position: relative;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-main);
  padding: 7px 0 7px 20px;
}

.aside-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--green);
  font-weight: 700;
}

/* --------------------------------------------------
   Thanks Page (送信完了)
-------------------------------------------------- */
.thanks-section {
  padding: 72px 0 88px;
  background-color: var(--soft-gray);
  border-bottom: 1px solid var(--line-gray);
}

.thanks-inner {
  display: flex;
  justify-content: center;
}

.thanks-card {
  width: 100%;
  max-width: 720px;
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 6vw, 72px);
  text-align: center;
}

.thanks-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background-color: var(--green-tint);
  color: var(--green);
}

.thanks-message {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 16px;
}

.thanks-sub {
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 34px;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.thanks-actions .btn-cta {
  max-width: 360px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  background-color: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 28px;
}

.btn-ghost:hover {
  color: var(--green);
  border-color: var(--green);
}

/* --------------------------------------------------
   Responsive (お問い合わせ・送信完了)
-------------------------------------------------- */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 48px 0 44px;
  }
  .contact-section,
  .thanks-section {
    padding: 56px 0 64px;
  }
}

/* --------------------------------------------------
   Contact Page: 電話ブロック
-------------------------------------------------- */
.aside-tel {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  margin: 0 0 6px;
}

.aside-tel a {
  color: var(--navy-deep);
}

.aside-tel a:hover {
  color: var(--green);
}

.aside-tel-note {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-sub);
  margin: 0;
}

/* --------------------------------------------------
   Footer: リーガルリンク
-------------------------------------------------- */
.footer-legal {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--white);
}

/* --------------------------------------------------
   Privacy Policy Page (プライバシーポリシー)
-------------------------------------------------- */
.privacy-section {
  padding: 64px 0 88px;
  background-color: var(--white);
}

.privacy-body {
  max-width: 820px;
}

.privacy-lead {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-main);
  margin-bottom: 40px;
}

.privacy-block + .privacy-block {
  margin-top: 36px;
}

.privacy-heading {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.6;
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}

.privacy-block p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-main);
  margin: 0;
}

.privacy-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.privacy-list li {
  position: relative;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-main);
  padding: 6px 0 6px 20px;
}

.privacy-list li::before {
  content: "・";
  position: absolute;
  left: 2px;
  top: 6px;
  color: var(--green);
  font-weight: 700;
}

.privacy-block a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-block a:hover {
  color: var(--green-deep);
}

.privacy-date {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--text-sub);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-gray);
}

@media (max-width: 600px) {
  .privacy-section {
    padding: 48px 0 64px;
  }
  .privacy-heading {
    font-size: 1rem;
  }
}

/* --------------------------------------------------
   Scroll Progress Bar (読了インジケーター)
   ページ最上部の細いバー。JS が要素を生成するため、
   JS が無効な環境では何も表示されません（本文の閲覧には影響しません）。
-------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 101;
  background-color: var(--green);
  transform: scaleX(0);
  transform-origin: 0 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.scroll-progress.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none;
  }
}
/* ==================================================================
   FRONT PAGE（トップページ）専用スタイル — この区画より下が追加分
   ------------------------------------------------------------------
   front-page.php だけで使う骨組みです。既存のルールは一切変更せず、
   共通クラス（.wrap / .hero-kicker / .section-* / .metric-* /
   .capa-* / .check-list / .flow-* / .profile-table* / .cta-* /
   .btn-cta / .btn-ghost / .ph-* / .book-* / .bg-*）を土台に、
   余白・罫線・グリッドだけを var(--…) トークンで補っています。
   ブレークポイントは既存と同じ 900px / 600px に揃えました。
   ================================================================== */

.front-page {
  /* 既存 .hero-kicker / .cta-kicker と同じアクセント色を局所トークン化 */
  --front-accent: #85CBA4;
}

/* ---------- 1. ヒーロー（日本市場向けOEM製造のご案内） ---------- */
.front-hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.front-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 122, 78, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.front-hero .wrap {
  position: relative;
  z-index: 2;
}

.front-hero-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 22px;
}

.front-hero-title .accent {
  color: var(--front-accent);
  display: inline-block;
}

.front-hero-lead {
  font-size: 1.02rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 0 36px;
}

.front-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin-bottom: 44px;
}

.front-hero-actions .btn-cta,
.front-hero-actions .btn-ghost {
  width: auto;
  max-width: none;
  padding: 15px 30px;
}

/* ---------- 数字ストリップ（.metric-card は既存のダーク背景用スタイル） ---------- */
.front-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- セクション共通の余白 ---------- */
.front-section {
  padding: 88px 0;
}/* ---------- 選ばれる理由（3カラム） ---------- */
.front-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- セクション末尾のリンク行 ---------- */
.front-link-row {
  margin-top: 40px;
}

.front-link-row.is-center {
  text-align: center;
}

.front-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  padding: 10px 18px;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  background-color: var(--white);
}

.front-link:hover {
  border-color: var(--green);
  color: var(--green-deep);
}

/* ---------- お問い合わせ導線 ---------- */
.front-cta-section {
  padding: 64px 0 88px;
  background-color: var(--white);
}

/* ---------- レスポンシブ（既存と同じ 900px / 600px に揃える） ---------- */
@media (max-width: 900px) {
  .front-reason-grid {
    grid-template-columns: 1fr;
  }
  .front-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .front-hero {
    padding: 64px 0 52px;
  }
  .front-section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .front-metrics {
    grid-template-columns: 1fr;
  }
  .front-hero {
    padding: 48px 0 40px;
  }
  .front-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .front-hero-actions .btn-cta,
  .front-hero-actions .btn-ghost {
    width: 100%;
    max-width: none;
  }
  .front-section,
  .front-cta-section {
    padding: 52px 0;
  }
  .front-link-row {
    margin-top: 28px;
  }
}
/* --------------------------------------------------
   製品（product）— 一覧・詳細
   余白と罫線で整理し、強い影や装飾は使わない。
-------------------------------------------------- */
.product-count {
  margin: 0 0 20px;
  font-size: 0.85rem;
  color: var(--text-sub);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.filter-chips a:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-chips a.is-active {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.chip-count {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--text-mute);
}

.filter-chips a.is-active .chip-count {
  color: rgba(255, 255, 255, 0.8);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(15, 43, 70, 0.06);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-cover {
  display: block;
  aspect-ratio: 4 / 3;
  background-color: var(--soft-gray);
  border-bottom: 1px solid var(--line-gray);
  overflow: hidden;
}

.product-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
}

.product-card-model {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--green);
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy-deep);
}

.product-card-features {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-sub);
}

.product-card-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-gray);
}

.product-card-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.product-empty {
  margin: 0;
  padding: 28px 24px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  font-size: 0.95rem;
  color: var(--text-sub);
  text-align: center;
}/* 製品詳細 */
.product-single-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.product-single-media {
  flex: 0 0 320px;
  max-width: 320px;
}

.product-single-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  overflow: hidden;
}

.product-single-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--text-mute);
}

.product-single-body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
}

.spec-box {
  margin-bottom: 32px;
  padding: 24px 26px 20px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
}

.spec-title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-gray);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.spec-list {
  margin: 0;
  padding: 0;
}

.spec-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
}

.spec-row + .spec-row {
  border-top: 1px solid var(--line-gray);
}

.spec-row dt {
  flex: 0 0 120px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--navy-deep);
}

.spec-row dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--text-main);
}

.product-features {
  margin-bottom: 28px;
}

.product-features-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.product-features p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-main);
}

.product-content {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-main);
}

.product-content > * + * {
  margin-top: 1.2rem;
}

.product-pdf {
  margin: 24px 0 0;
}

.product-doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: var(--radius-control);
  background-color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.product-doc:hover {
  background-color: var(--green);
  color: var(--white);
}

.product-foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-gray);
}

.product-back {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.product-back a {
  color: var(--green);
}

.product-back a:hover {
  color: var(--green-deep);
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-single-layout {
    flex-direction: column;
    gap: 32px;
  }
  .product-single-media {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .spec-row {
    flex-direction: column;
    gap: 2px;
  }
  .spec-row dt {
    flex: none;
  }
  .product-doc {
    width: 100%;
    justify-content: center;
  }
}/* --------------------------------------------------
   お知らせ（news）— 一覧・詳細
-------------------------------------------------- */
.news-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line-gray);
}

.news-item {
  border-bottom: 1px solid var(--line-gray);
}

.news-link {
  display: grid;
  grid-template-columns: 120px 130px 1fr;
  gap: 4px 16px;
  align-items: baseline;
  padding: 16px 4px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--text-mute);
}

.news-kind {
  justify-self: start;
  padding: 1px 10px;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-sub);
}

.news-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy-deep);
}

.news-excerpt {
  grid-column: 3 / 4;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-sub);
}

.news-empty {
  margin: 0 0 28px;
  padding: 28px 24px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  font-size: 0.95rem;
  color: var(--text-sub);
  text-align: center;
}

.news-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.news-pagination a,
.news-pagination span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  font-size: 0.84rem;
  color: var(--text-main);
}

.news-pagination .current {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.news-single-body {
  max-width: 820px;
}

.news-meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: var(--text-sub);
}

.news-content {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-main);
}

.news-content > * + * {
  margin-top: 1.2rem;
}

.news-file,
.news-products {
  margin: 22px 0 0;
  font-size: 0.88rem;
  color: var(--text-main);
}

.news-products-title {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.news-products-list {
  margin: 0;
  padding-left: 18px;
}

.news-products-list a {
  color: var(--green);
}/* --------------------------------------------------
   導入実績（case）— 区块与详情
-------------------------------------------------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background-color: var(--white);
  border: 1px solid var(--line-gray);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-control);
}

.case-meta {
  display: flex;
  font-size: 0.75rem;
  color: var(--text-sub);
}

.case-meta span + span::before {
  content: "／";
  margin: 0 10px;
  color: var(--text-mute);
}

.case-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy-deep);
}

.case-story {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-sub);
}

.case-scope {
  margin: 0;
  font-size: 0.78rem;
  color: var(--green);
}

.case-card-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-gray);
}

.case-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

.case-single-body,
.case-content {
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-main);
}

.case-detail {
  margin: 0 0 28px;
  padding: 22px 24px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
}

.case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: var(--text-sub);
}

.case-detail-row {
  display: flex;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-main);
}

.case-detail-block {
  margin-top: 18px;
}

.case-detail-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.case-detail-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-main);
}

.case-foot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line-gray);
}

.case-back {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.case-back a {
  color: var(--green);
}

.case-back a:hover {
  color: var(--green-deep);
}

/* --------------------------------------------------
   資料ダウンロード（document）
-------------------------------------------------- */
.doc-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line-gray);
}

.doc-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-gray);
}

.doc-link,
.doc-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--green);
}

.doc-kind {
  padding: 1px 10px;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-sub);
}

.doc-meta {
  font-size: 0.78rem;
  color: var(--text-mute);
}

.doc-updated,
.doc-lang,
.doc-version {
  margin-right: 8px;
}

.doc-empty {
  margin: 0 0 24px;
  padding: 24px;
  background-color: var(--soft-gray);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-control);
  font-size: 0.9rem;
  color: var(--text-sub);
  text-align: center;
}

/* --------------------------------------------------
   よくあるご質問（FAQ）
-------------------------------------------------- */
.faq-group + .faq-group {
  margin-top: 34px;
}

.faq-group-title {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.faq-list {
  margin: 0;
}

.faq-item {
  padding: 16px 0;
  border-top: 1px solid var(--line-gray);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-gray);
}

.faq-q {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--navy-deep);
}

.faq-a {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-main);
}

.faq-more {
  display: block;
  margin-top: 0.5em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-link {
    grid-template-columns: 100px 1fr;
  }
  .news-excerpt {
    grid-column: 2 / 3;
  }
}

@media (max-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  .news-link {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .news-excerpt {
    grid-column: 1 / 2;
  }
  .doc-item {
    flex-direction: column;
    gap: 4px;
  }
}/* --------------------------------------------------
   ヘッダーナビの調整（項目が増えたため、折り返しを防ぐ）
-------------------------------------------------- */
.header-inner {
  gap: 16px;
}

.site-brand {
  flex: 0 0 auto;
}

.site-title {
  white-space: nowrap;
}

.nav-list {
  flex-wrap: nowrap;
  gap: 16px;
}

.nav-list a {
  white-space: nowrap;
  font-size: 0.84rem;
}

@media (max-width: 1280px) {
  .nav-list {
    gap: 12px;
  }
  .nav-list a {
    font-size: 0.8rem;
  }
  .brand-badge {
    font-size: 0.95rem;
    padding: 7px 12px;
  }
  .site-title {
    font-size: 0.88rem;
  }
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 10px;
  }
  .nav-list a {
    font-size: 0.76rem;
  }
  .nav-contact-btn {
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
  }
}/* --------------------------------------------------
   画像プレースホルダーに実写真を入れた場合の表示
   （.ph-box のハッチングと余白を消し、写真を面いっぱいに表示）
-------------------------------------------------- */
.ph-box.has-photo {
  padding: 0;
}

.ph-box.has-photo::before {
  display: none;
}

.ph-box.has-photo .ph-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}