/* ============================================================
   株式会社福山設備 - Common Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --color-primary:       #2B2626;
  --color-primary-dark:  #2B2626;
  --color-primary-light: #2a5298;
  --color-accent:        #c9a227;
  --color-accent-dark:   #a07d10;
  --color-accent-light:  #2a2000;
  --gradient-gold:       linear-gradient(135deg, #8b6914 0%, #d4af37 35%, #f5e27a 55%, #d4af37 75%, #9a7b1c 100%);
  --color-text:          #f0f0f0;
  --color-text-sub:      #aaaaaa;
  --color-text-light:    #777777;
  --color-bg:            #111111;
  --color-bg-light:      #1c1c1c;
  --color-bg-warm:       #181210;
  --color-border:        #333333;
  --color-white:         #ffffff;
  --color-success:       #27ae60;

  --font-base: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', YuMincho, 'MS Mincho', serif;

  --w-content:   1100px;
  --pad-x:       40px;
  --pad-x-sp:    16px;

  --h-header:    90px;
  --h-header-sp: 76px;
  --h-fixed-cta: 60px;

  --easing:     cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   8px;
  --radius-xl:   24px;
  --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  padding-top: var(--h-header-sp);
  padding-bottom: var(--h-fixed-cta);
}

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

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

a:hover { opacity: 0.8; }

ul, ol { list-style: none; }

/* ---- Typography ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
}

.section-title--white { color: var(--color-white); }
.section-label--white { color: rgba(255,255,255,0.7); }

.section-desc {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--w-content);
  margin: 0 auto;
  padding-left: var(--pad-x-sp);
  padding-right: var(--pad-x-sp);
}

/* ---- Section ---- */
.section {
  padding: 64px 0;
}

.section--light   { background: var(--color-bg-light); }
.section--warm    { background: var(--color-bg-warm); }
.section--primary { background: var(--color-primary); }
.section--dark    { background: var(--color-primary-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-base);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  opacity: 1;
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--outline {
  background: transparent;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  opacity: 1;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn .material-symbols-outlined {
  font-size: 1.2em;
}

/* ---- Material Symbols ---- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
  line-height: 1;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--h-header-sp);
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
	padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
	width: 340px;
	height: auto
}

@media (max-width: 767px) {
.site-logo {
	width: 70%;
	padding-top: 5px;
}	
}
.logo-text {
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Navigation SP --- */
.global-nav {
  position: fixed;
  top: var(--h-header-sp);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary-dark);
  padding: 24px var(--pad-x-sp) 80px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  z-index: 99;
}

.global-nav.is-open {
  transform: translateX(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.is-current {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;

}

.nav-link--cta {
  display: block;
  margin-top: 20px;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  border-bottom: none;
  text-align: center;
  font-size: 1rem;
}

.nav-link--cta:hover {
  background: var(--color-accent-dark);
  opacity: 1;
}

/* --- Nav Overlay --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 98;
}

.nav-overlay.is-visible {
  display: block;
}

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

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 var(--pad-x-sp);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 16px;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
}

.footer-address,
.footer-tel {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-tel a {
  color: rgba(255,255,255,0.7);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* ============================================================
   FIXED CTA
   ============================================================ */

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  height: var(--h-fixed-cta);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-base);
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition);
}

.fixed-cta__btn:hover { opacity: 0.9; }

.fixed-cta__btn--tel {
  background: var(--color-primary);
  color: var(--color-white);
}

.fixed-cta__btn--form {
  background: var(--color-accent);
  color: var(--color-white);
}

.fixed-cta__label {
  font-size: 0.875rem;
}

.fixed-cta .material-symbols-outlined {
  font-size: 1.25rem;
}

/* ============================================================
   FV
   ============================================================ */

.fv {
  position: relative;
  height: 100svh;
  min-height: 520px;
  max-height: 900px;
}

.fv-swiper,
.fv-slide {
  height: 100%;
}

.fv-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,50,0.88) 0%, rgba(26,60,110,0.65) 100%);
}

.fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--pad-x-sp);
  color: var(--color-white);
  max-width: 680px;
  width: 100%;
}

.fv-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.fv-catch {
  font-size: clamp(2.375rem, 9vw, 4.25rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.fv-sub {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 2;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

.fv-sub strong {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

/* ============================================================
   NUMBERS BAR
   ============================================================ */

.numbers {
  background: var(--color-primary);
  padding: 0;
}

.numbers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
  gap: 1px;
  background: rgba(255,255,255,0.1);
  width: 100%; /* 横幅いっぱいに広げる */

  margin: 0;
  padding: 0;
  list-style: none;
}

.numbers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
  background: var(--color-primary);
  gap: 4px;

}

.numbers-item .material-symbols-outlined {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.numbers-value {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
}

.numbers-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .numbers-list {
    grid-template-columns: repeat(4, 1fr); 
  }
}
/* ============================================================
   ABOUT
   ============================================================ */

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

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: var(--color-bg-light);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.about-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent-light);
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.about-title {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-permit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  background: var(--color-bg-light);
  padding: 8px 14px;
  border-radius: var(--radius-md);
}

.about-permit .material-symbols-outlined {
  font-size: 1rem;
  color: var(--color-success);
}

/* ============================================================
   RECRUIT MESSAGE
   ============================================================ */

.recruit-message {
  background: var(--color-primary);
  color: var(--color-white);
}

.message-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-bottom: 24px;
}

.message-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--color-white);
}

.message-title {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--color-white);
}

.message-text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  text-align: left;
}

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

/* ============================================================
   JOB
   ============================================================ */

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

.job-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.job-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-light);
}

.job-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--easing);
}

.job-card:hover .job-card-image img {
  transform: scale(1.06);
}

.job-card-body {
  padding: 20px;
}

.job-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.job-card-icon .material-symbols-outlined {
  font-size: 1.375rem;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.job-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.job-card-text {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}

.job-link {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   MERIT
   ============================================================ */

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

.merit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.merit-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.merit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.merit-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-bg-light);
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.merit-card-icon .material-symbols-outlined {
  font-size: 1.625rem;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.merit-card-num {
  font-size: 0.625rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.merit-card-value {
  font-size: 1.125rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.merit-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.merit-card-text {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}

/* ============================================================
   FLOW
   ============================================================ */

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

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.flow-item:last-child {
  padding-bottom: 0;
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--color-border);
}

.flow-step {
  flex-shrink: 0;
}

.flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  line-height: 1;
}

.flow-num small {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 1px;
}

.flow-num span {
  font-size: 1.25rem;
  font-weight: 900;
}

.flow-body {
  flex: 1;
  padding-top: 10px;
}

.flow-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.flow-text {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}

.flow-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   REQUIREMENTS
   ============================================================ */

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

.req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.req-table th,
.req-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
}

.req-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  white-space: nowrap;
  width: 8em;
  background: var(--color-bg-light);
}

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

.req-table td strong {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.req-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-right: 6px;
}

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

.req-note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.req-link {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: var(--color-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: var(--color-bg-light);
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--color-bg-light);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.faq-toggle .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--color-text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.is-open .faq-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px 56px;
  background: var(--color-bg-light);
}

.faq-a-text {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.85;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

/* ============================================================
   COMPANY OVERVIEW
   ============================================================ */

.company-overview { background: var(--color-bg-light); }

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.company-table th,
.company-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  white-space: nowrap;
  width: 8em;
  background: var(--color-bg-light);
}

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

.company-link {
  text-align: center;
  margin-top: 28px;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */

.contact-cta {
  position: relative;
  background-image: url('/assets/images/dummy.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,20,44,0.92) 0%, rgba(26,60,110,0.88) 100%);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  padding: 64px var(--pad-x-sp);
}

.contact-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.contact-cta-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.85;
}

.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.contact-cta-tel {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.contact-cta-tel .material-symbols-outlined {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta-tel-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE — Tablet+ (768px)
   ============================================================ */
@media screen and (max-width: 768px) {
	.pc{display: block}
	.sp{display: none}
}

	.pc{display: none}
	.sp{display: block}


@media (min-width: 768px) {
	


  body {
    padding-top: var(--h-header);
    padding-bottom: 0;
  }

  .site-header {
    height: var(--h-header);
  }

  .hamburger {
    display: none;
  }

  .global-nav {
    position: static;
    background: none;
    padding: 0;
    transform: none;
    overflow: visible;
    height: auto;
    display: flex;
    align-items: center;
  }

  .nav-list {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.82);
    border-bottom: none;
    border-radius: var(--radius-sm);
  }



  .nav-link--cta {
    display: inline-block;
    margin-top: 0;
    margin-left: 16px;
    padding: 10px 22px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    border-bottom: none;
    font-size: 0.9375rem;
  }

  .nav-link--cta:hover {
    background: var(--color-accent-dark);
    opacity: 1;
  }

  .nav-overlay {
    display: none !important;
  }

  .fixed-cta {
    display: none;
  }

  .container {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .section {
    padding: 96px 0;
  }

  /* Numbers */
  .numbers-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /* About */
  .about-inner {
    flex-direction: row;
    gap: 56px;
    align-items: center;
  }

  .about-image {
    flex: 0 0 44%;
  }

  /* FV CTA */
  .fv-cta {
    flex-direction: row;
    justify-content: center;
  }

  /* Message CTA */
  .message-cta {
    flex-direction: row;
    justify-content: center;
  }

  /* Job */
  .job-grid {
    flex-direction: row;
  }

  .job-card {
    flex: 1 1 0;
    min-width: 0;
  }

  /* Merit */
  .merit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Flow */
  .flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
  }

  .flow-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .flow-item:not(:last-child)::after {
    left: calc(50% + 32px);
    top: 28px;
    width: calc(100% - 64px);
    height: 2px;
    background: var(--color-border);
  }

  .flow-body {
    padding-top: 0;
  }

  /* Requirements */
  .req-table th {
    width: 10em;
  }

  /* Footer */
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* Contact CTA */
  .contact-cta-btns {
    flex-direction: row;
    justify-content: center;
  }

}

/* ============================================================
   RESPONSIVE — Desktop (1024px)
   ============================================================ */

@media (min-width: 1024px) {

  .logo-text {
    font-size: 1rem;
  }

  .numbers-item {
    padding: 24px 16px;
  }

  .numbers-value {
    font-size: 1.125rem;
  }

  .numbers-label {
    font-size: 0.75rem;
  }

  .merit-grid {
    gap: 24px;
  }

  .merit-card {
    padding: 28px 20px;
  }

}

/* ============================================================
   TOP PAGE (index.php) — Corporate Homepage Styles
   ============================================================ */

/* ---- Section Dot Label (● Service style) ---- */
.sec-dot-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.sec-dot-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.sec-dot-label--white { color: rgba(255,255,255,0.7); }
.sec-dot-label--white::before { background: rgba(255,255,255,0.7); }

/* ---- Fixed Side Button (desktop only) ---- */
.fixed-side {
  display: none;
}

/* ============================================================
   TOP FV
   ============================================================ */

.top-fv {
  position: relative;
  height: 100svh;
  min-height: 540px;
  max-height: 960px;
  overflow: hidden;
}

.top-fv-swiper,
.top-fv-slide {
  height: 100%;
}

.top-fv-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5,15,35,0.08) 0%,
    rgba(5,15,35,0.55) 50%,
    rgba(5,15,35,0.85) 100%
  );
}

.top-fv-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 var(--pad-x-sp) 72px;
}

.top-fv-content {
  text-align: right;
  color: var(--color-white);
  max-width: 100%;
}

.top-fv-en {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.top-fv-catch {
  font-size: clamp(1.875rem, 7vw, 3.75rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 28px;
}

.top-fv-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* ============================================================
   TOP About
   ============================================================ */

.top-about {
  background: var(--color-bg);
  padding: 72px 0 0;
}

.top-about-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 56px;
}

.top-about-text-block {
  padding-bottom: 40px;
}

.top-about-heading {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 20px;
}

.top-about-body {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 28px;
}

.top-about-image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--color-bg-light);
}

.top-about-fullimg {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  background: var(--color-bg-light);
  margin-top: 56px;
}

/* ============================================================
   TOP Service
   ============================================================ */

.top-service {
  background: var(--color-bg);
  padding: 72px 0;
}

.top-service-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-service-image-wrap {
  margin-bottom: 36px;
}

.top-service-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.top-service-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.top-service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition);
}

.top-service-item:first-child {
  border-top: 1px solid var(--color-border);
}

.top-service-item:hover {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}

.top-service-num {
  font-size: 0.6875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 2.5em;
}

.top-service-name {
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
  line-height: 1.4;
}

.top-service-item .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.top-service-item:hover .material-symbols-outlined {
  transform: translateX(4px);
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   TOP Recruit Bar
   ============================================================ */

.top-recruit {
  background: var(--color-primary);
  padding: 72px 0;
  color: var(--color-white);
}

.top-recruit-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-recruit-lead {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
  color: var(--color-white);
  margin-bottom: 16px;
}

.top-recruit-lead em {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.top-recruit-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-bottom: 8px;
}

.top-recruit-stat-value {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.top-recruit-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.top-recruit-note {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 28px;
}

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

/* ============================================================
   TOP Company Mini
   ============================================================ */

.top-company {
  background: var(--color-bg-light);
  padding: 72px 0;
}

.top-company-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.top-company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.top-company-table th,
.top-company-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.top-company-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-sub);
  white-space: nowrap;
  width: 7em;
  background: var(--color-bg-light);
}

/* ============================================================
   TOP CTA (editorial style)
   ============================================================ */

.top-cta {
  position: relative;
  background-image: url('assets/images/dummy.jpg');
  background-size: cover;
  background-position: center;
  text-align: left;
}

.top-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,20,44,0.96) 0%, rgba(8,20,44,0.82) 60%, rgba(8,20,44,0.42) 100%);
}

.top-cta-content {
  position: relative;
  z-index: 1;
  padding: 72px var(--pad-x-sp);
  color: var(--color-white);
  max-width: 620px;
}

.top-cta-title {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.top-cta-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 36px;
}

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

.top-cta-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--color-white);
  margin-top: 28px;
}

.top-cta-tel .material-symbols-outlined {
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-cta-tel-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE — Tablet+ additions for TOP PAGE
   ============================================================ */

@media (min-width: 768px) {

  /* Fixed side button */
  .fixed-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
    writing-mode: vertical-rl;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 20px 10px;
    text-decoration: none;
    gap: 8px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: background var(--transition);
  }

  .fixed-side:hover {
    background: var(--color-accent-dark);
    opacity: 1;
  }

  .fixed-side .material-symbols-outlined {
    writing-mode: horizontal-tb;
    font-size: 1.125rem;
  }

  /* TOP FV */
  .top-fv-body {
    padding: 0 var(--pad-x) 80px;
  }

  .top-fv-content {
    max-width: 580px;
  }

  .top-fv-cta {
    flex-direction: row;
    justify-content: flex-end;
  }

  /* TOP About */
  .top-about {
    padding: 96px 0 0;
  }

  .top-about-inner {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    padding-bottom: 0;
  }

  .top-about-text-block {
    flex: 0 0 50%;
    padding: 0 56px 96px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 96px;
  }

  .top-about-image-block {
    flex: 0 0 50%;
  }

  .top-about-image-block img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    aspect-ratio: auto;
  }

  .top-about-fullimg {
    aspect-ratio: 21/8;
    margin-top: 0;
  }

  /* TOP Service */
  .top-service {
    padding: 96px 0;
  }

  .top-service-inner {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }

  .top-service-image-wrap {
    flex: 0 0 50%;
    padding-right: 56px;
    margin-bottom: 0;
  }

  .top-service-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 360px;
  }

  .top-service-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* TOP Recruit */
  .top-recruit {
    padding: 96px 0;
  }

  .top-recruit-inner {
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
  }

  .top-recruit-left {
    flex: 0 0 44%;
  }

  .top-recruit-right {
    flex: 1;
  }

  .top-recruit-cta {
    flex-direction: row;
    align-items: center;
  }

  /* TOP Company */
  .top-company {
    padding: 96px 0;
  }

  .top-company-inner {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }

  .top-company-head {
    flex: 0 0 240px;
    padding-top: 4px;
  }

  .top-company-body {
    flex: 1;
  }

  /* TOP CTA */
  .top-cta-content {
    padding: 96px var(--pad-x);
  }

  .top-cta-btns {
    flex-direction: row;
    align-items: center;
  }

}


/* ============================================================
   PAGE: HOME トップページ
   ============================================================ */

/* ---- Body override ---- */
body.page-home {
  padding-top: 0;
}

/* ---- Header: transparent until scrolled ---- */
body.page-home .site-header {
  background: transparent !important;
  box-shadow: none !important;
}
body.page-home .site-header.is-scrolled {
  background: var(--color-primary) !important;
  box-shadow: var(--shadow-md) !important;
}

/* ============================================================
   HOME: HERO
   ============================================================ */

.home-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  background: var(--color-primary-dark);
  overflow: hidden;
}

/* 幅制限インナー（人物・サイドボタンの位置基準） */
.home-hero-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

/* 背景・スクロールテキスト専用クリップラッパー */
.home-hero__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* ① 背景画像（2枚）+ オーバーレイ */
.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0s;
}
.home-hero__bg--1 {
  background-image: url('../images/bg-hero1.webp?1');
  opacity: 1;
  z-index: 1;
  animation: heroBgFadeIn 0.65s ease both;
}
.home-hero__bg--2 {
  background-image: url('../images/bg-hero2.webp?2');
  opacity: 0;
  z-index: 1;
}
.home-hero__bg--3 {
  background-image: url('../images/bg-hero3.webp?2');
  opacity: 0;
  z-index: 1;
}
.home-hero__bg-overlay {
  display: none;
}
.home-hero__mosaic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: block;
}

/* ④ hero_text3: ふわっとフェードイン → ゆっくり横スライド（無限ループ） */
.home-hero__text3-outer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.home-hero__text3-track {
  display: flex;
  width: max-content;

  animation:
    heroText3FadeIn 1.4s ease 1.0s forwards,
    heroText3Scroll  28s linear 1.0s infinite;
}

.home-hero__text3-img {
  height: clamp(120px, 22vh, 180px);
  width: auto;
  flex-shrink: 0;
  display: block;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
	margin-top: 30px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* ③ 人物: テキスト2完了前にフェードイン */
.home-hero__man {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-15%);
  height: 97%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0;
  z-index: 2;
  animation: heroManFadeIn 0.8s ease 0.85s forwards;
}

/* ② キャッチコピー */
.home-hero__copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 5%;
}

.home-hero__catch-en1 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin: 0;
  opacity: 0;
  will-change: transform, opacity;
  animation: heroSlideInLeft 0.75s ease 0.32s forwards;
}

.home-hero__catch-en2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.7rem, 1.55vw, 1.45rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
  margin: clamp(10px, 1.2vw, 18px) 0 0;
  opacity: 0;
  will-change: transform, opacity;
  animation: heroSlideInLeft 0.75s ease 0.52s forwards;
}

.home-hero__catch-ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.4vw, 1.3rem);
  line-height: 1.4;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.2em;
  margin: clamp(14px, 1.6vw, 22px) 0 0;
  opacity: 0;
  will-change: transform, opacity;
  animation: heroSlideInLeft 0.75s ease 0.72s forwards;
}

/* doda バナー：キャッチコピー完了後にフェードイン */
.home-hero__doda {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 10;
  opacity: 0;
  animation: heroDodaFadeIn 0.7s ease 1.5s forwards;
}

.home-hero__doda a {
  display: block;
}
.home-hero__doda a:hover {
  opacity: 1;
}

.home-hero__doda img {
  width: clamp(160px, 35vw, 470px);
  height: auto;
  display: block;
}

/* 右側固定お問合せボタン (PC のみ) */
.home-hero__side-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  background: var(--color-primary);
  color: #fff;
  padding: 28px 14px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: background var(--transition), opacity var(--transition);
}
.home-hero__side-btn:hover {
  background: var(--color-primary-light);
  opacity: 1;
}
.home-hero__side-btn .material-symbols-outlined {
  font-size: 1.25rem;
  transform: rotate(90deg);
}
.home-hero__side-btn-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.home-hero__side-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---- Keyframes ---- */
@keyframes heroBgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroSlideInLeft {
  0%   { opacity: 0; transform: translateX(-64px); animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
  65%  { opacity: 1; transform: translateX(10px);  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes heroManFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


@keyframes heroText3Scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

@keyframes heroText3FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- SP: Hero ---- */
@media (max-width: 767px) {
  .home-hero {
    height: 100svh;
    min-height: auto;
  }

  .home-hero__side-btn {
    display: none;
  }

  .home-hero__copy {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 5%;
  }

  .home-hero__catch-en1 {
    font-size: clamp(1.6rem, 9vw, 2.8rem);
  }

  .home-hero__catch-en2 {
    font-size: clamp(0.55rem, 2.8vw, 0.9rem);
  }

  .home-hero__catch-ja {
    font-size: clamp(0.6rem, 2.8vw, 0.9rem);
  }

  .home-hero__text3-img {
    height: clamp(70px, 14vw, 100px);
  }

  .home-hero__doda {
    left: 5%;
    bottom: 4%;
  }

  .home-hero__doda img {
    width: 80vw;
  }
}

/* ---- Tablet: Hero ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .home-hero__copy {
    left: 45%;
  }

  .home-hero__catch-en1 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  }
}

/* ============================================================
   HOME: 共通パーツ
   ============================================================ */

.home-sec-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.home-sec-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

/* ============================================================
   HOME: ABOUT
   ============================================================ */

.home-about {
  padding: 80px 0 0;
  overflow: hidden;
}

.home-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.home-about__title {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.home-about__rule {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border: none;
  margin: 0 0 28px;
}

.home-about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.home-about__link:hover {
  gap: 12px;
  opacity: 1;
}
.home-about__link-arrow {
  width: 12px;
  height: auto;
}

.home-about__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.home-about__fullimg {
  margin-top: 60px;
	margin-bottom: 60px;
}
.home-about__fullimg img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .home-about {
    padding-top: 96px;
  }

  .home-about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0 72px;
    align-items: start;
    padding: 0 var(--pad-x);
    max-width: calc(var(--w-content) + var(--pad-x) * 2);
    margin: 0 auto;
  }

  .home-about__fullimg img {
    height: 560px;
    margin-left: 80px;
  }
}

/* ============================================================
   HOME: STRENGTH
   ============================================================ */

.home-strength {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.home-strength__header {
  margin-bottom: 48px;
}

.home-strength__title {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.home-strength__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .home-strength__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-strength {
    padding: 96px 0;
  }
  .home-strength__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.home-strength__item {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition);
}

.home-strength__item:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.home-strength__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.home-strength__icon .material-symbols-outlined {
  font-size: 1.625rem;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-strength__item-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.home-strength__item-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* ============================================================
   HOME: SERVICE
   ============================================================ */

.home-service {
  overflow: hidden;
}

.home-service__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin-inline: auto;
}

.home-service__img-wrap {
  overflow: hidden;
  line-height: 0;
  order: 2;
}

@media (min-width: 1024px) {
  .home-service__img-wrap {
    order: unset;
  }
}
.home-service__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.home-service__img-wrap:hover .home-service__img {
  transform: scale(1.03);
}

.home-service__content {
  padding: 56px var(--pad-x-sp);
  background: var(--color-bg);
}

.home-service__title {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.home-service__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.home-service__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.home-service__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: padding-left var(--transition), color var(--transition);
}
.home-service__item:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--color-primary-light);
}

.home-service__item-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  transition: background var(--transition);
}
.home-service__item:hover .home-service__item-dot {
  background: var(--color-accent-dark);
}

.home-service__item-name {
  flex: 1;
}

.home-service__item-arrow {
  width: 11px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .home-service__inner {
    grid-template-columns: 42% 58%;
    min-height: 640px;
  }

  .home-service__img {
    height: 100%;
    min-height: 640px;
  }

  .home-service__content {
    padding: 80px 72px 80px 72px;
  }
}

/* ============================================================
   HOME: RECRUIT
   ============================================================ */

.home-recruit {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.home-recruit__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.home-recruit__title {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.home-recruit__rule {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border: none;
  margin: 0 0 24px;
}

.home-recruit__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.home-recruit__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.home-recruit__link:hover {
  gap: 12px;
  opacity: 1;
}
.home-recruit__link-arrow {
  width: 12px;
  height: auto;
}

.home-recruit__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-recruit__stat {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 120px;
}

.home-recruit__stat-label,
.home-recruit__stat-sub {
  font-size: 0.8125rem;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.home-recruit__stat-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.home-recruit__stat-value--lg {
  font-size: 1.375rem;
  font-weight: 700;
}

.home-recruit__stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
}

.home-recruit__photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-recruit__photo {
  overflow: hidden;
  border-radius: var(--radius-md);
  line-height: 0;
}
.home-recruit__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.home-recruit__photo:hover img {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .home-recruit__photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-recruit {
    padding: 96px 0;
  }

  .home-recruit__top {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .home-recruit__stats {
    gap: 16px;
  }

  .home-recruit__stat {
    min-height: 140px;
    padding: 24px 16px;
  }
}

/* ============================================================
   HOME: CTA
   ============================================================ */

.home-cta {
  position: relative;
  background: var(--color-primary);
  padding: 48px 0 56px;
  overflow: hidden;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/img-about.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.home-cta__man {
  position: absolute;
  bottom: 0;
  right: 4%;
  height: 95%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  z-index: 1;
}

.home-cta__card {
  position: relative;
  z-index: 2;
  background: rgba(20, 20, 20, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.home-sec-label--dark {
  color: var(--color-primary);
}

.home-cta__contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.home-cta__tel {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.home-cta__tel a {
  color: inherit;
  text-decoration: none;
}
.home-cta__tel a:hover {
  opacity: 0.8;
}

.home-cta__tel-prefix {
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 2px;
}

.home-cta__hours {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
}

.home-cta__divider {
  display: none;
  background: var(--color-border);
}

.home-cta__recruit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.home-cta__recruit-text {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.home-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 13px 52px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition);
}
.home-cta__btn:hover {
  background: var(--color-primary-light);
  opacity: 1;
}
.home-cta__btn-arrow {
  width: 7px;
  height: auto;
}

@media (max-width: 767px) {
  .home-cta__man {
    display: none;
  }
}

@media (min-width: 1024px) {
  .home-cta {
    padding: 56px 0 64px;
  }

  .home-cta__card {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    padding: 48px 56px;
    /* leave room for man image */
    max-width: calc(var(--w-content) - 200px);
  }

  .home-cta__contact {
    padding-right: 48px;
  }

  .home-cta__divider {
    display: block;
    width: 1px;
    background: var(--color-border);
    margin: 0 48px;
    flex-shrink: 0;
  }

  .home-cta__recruit {
    padding-left: 0;
  }

  .home-cta__tel {
    font-size: 2.25rem;
  }
}


/* ============================================================
   Scroll Fade In
   ============================================================ */

[data-fade] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延バリエーション */
[data-fade-delay="100"] { transition-delay: 0.1s; }
[data-fade-delay="200"] { transition-delay: 0.2s; }
[data-fade-delay="300"] { transition-delay: 0.3s; }
[data-fade-delay="400"] { transition-delay: 0.4s; }
[data-fade-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   下層ページ共通: ページヒーロー
   ============================================================ */

.page-hero {
  background: var(--color-primary-dark);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero_background.webp') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d77e 0%, #c9a227 35%, #ffd700 55%, #a07d10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.page-hero__lead {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ============================================================
   下層ページ共通: お問い合わせフォーム
   ============================================================ */

.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

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

.form-label .required {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  vertical-align: middle;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-light);
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

.form-privacy {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.form-privacy p {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

.form-submit {
  text-align: center;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.confirm-list {
  border-top: 1px solid var(--color-border);
  margin: 0 0 32px;
}

.confirm-list__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-border);
}

.confirm-list__row dt,
.confirm-list__row dd {
  padding: 18px 20px;
  line-height: 1.8;
}

.confirm-list__row dt {
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg-light);
}

.confirm-list__row dd {
  color: var(--color-text-sub);
}

.form-message {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  line-height: 1.8;
}

.form-message--error {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.form-message ul {
  margin-top: 8px;
  padding-left: 1.4em;
}

.thanks-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks-box__icon {
  display: block;
  margin-bottom: 16px;
  font-size: 64px;
  color: var(--color-primary);
}

.thanks-box__icon--error {
  color: #e11d48;
}

@media (max-width: 767px) {
  .confirm-list__row {
    grid-template-columns: 1fr;
  }

  .confirm-list__row dt,
  .confirm-list__row dd {
    padding: 14px 16px;
  }

  .confirm-list__row dd {
    padding-top: 10px;
  }

  .form-actions .btn {
    width: 100%;
  }
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-check-text {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
}

.form-check-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================================
   下層ページ共通: 事業内容 (business.php)
   ============================================================ */

.business-section {
  padding: 80px 0;
}

.business-section:nth-child(even) {
  background: var(--color-bg-light);
}

.business-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.business-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.business-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.business-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.4;
}

.business-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.business-tag {
  border: 1.5px solid var(--color-border);
  color: var(--color-text-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .business-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .business-section:nth-child(even) .business-img-wrap {
    order: 2;
  }

  .business-img {
    height: 360px;
  }
}

/* ============================================================
   下層ページ共通: 会社案内 (company.php)
   ============================================================ */

.company-philosophy {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
}

.company-philosophy__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.company-philosophy__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

.company-map {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .company-map {
    height: 480px;
  }
}

/* ============================================================
   ゴールドグラデーション適用
   ============================================================ */

/* ボタン・ナビ */
.btn--primary,
.btn--outline:hover,
.nav-link--cta,
.fixed-cta__btn--form,
.fixed-side {
  background: var(--gradient-gold) !important;
  border-color: transparent !important;
  color: #111 !important;
}

.btn--primary:hover,
.nav-link--cta:hover,
.fixed-cta__btn--form:hover,
.fixed-side:hover {
  background: var(--gradient-gold) !important;
  color: #111 !important;
  -webkit-text-fill-color: #111;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  filter: brightness(1.12);
  opacity: 1 !important;
}

/* バッジ・ラベル・アイコン背景 */
.faq-q-icon,
.req-badge,
.req-badge--green,
.fv-label,
.message-icon,
.business-label,
.home-cta__btn {
  background: var(--gradient-gold) !important;
  color: #111 !important;
}

/* アイコン色（文字色として使われているもの） */
.faq-q-icon,
.home-cta__btn {
  color: #111 !important;
}

/* ホームCTAボタン hover */
.home-cta__btn:hover {
  filter: brightness(1.12);
  opacity: 1 !important;
}

/* ============================================================
   施工実績 (business.php)
   ============================================================ */

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

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works-item {
  margin: 0;
}

.works-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  aspect-ratio: 4/3;
}

.works-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--easing);
}

.works-item:hover .works-img {
  transform: scale(1.05);
}

.works-caption {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.5;
}
