/*
Theme Name: BlankSlate Child
Template: blankslate
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #284b7d;
  --navy-dark:   #1a3357;
  --navy-light:  #284b7d;
  --beige:       #e8cda9;
  --beige-light: #f5ede0;
  --beige-mid:   #dfc09a;
  --black:       #1c1c1e;
  --dark:        #2d2d2d;
  --mid-gray:    #555560;
  --gray-text:   #777785;
  --gray-border: #dde2ea;
  --off-white:   #f5f5f5;
  --white:       #ffffff;
  --green:       #2d7a3a;
  --green-light: #e8f4ea;
  --sans: 'DM Sans', 'Noto Sans JP', 'BIZ UDGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 400; color: var(--dark); background: var(--white); line-height: 1.8; -webkit-font-smoothing: antialiased; letter-spacing: 0.02em; }

.entry-title, .post-edit-link { display: none !important; }

/* ===== NEWS BAR ===== */
.hero-news-bar { position: relative; z-index: 10; background: rgba(26,51,87,0.9); padding: 9px 0; overflow: hidden; display: flex; align-items: center; flex-shrink: 0; }
.news-label { flex-shrink: 0; background: var(--beige); color: var(--navy-dark); font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 2px; margin-left: 20px; margin-right: 16px; letter-spacing: 0.06em; white-space: nowrap; text-decoration: none; transition: background 0.2s; }
.news-label:hover { background: var(--beige-mid); }
.news-track { flex: 1; overflow: hidden; }
.news-list { display: flex; gap: 48px; white-space: nowrap; }
.news-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.7); white-space: nowrap; text-decoration: none; }
.news-item:hover { color: var(--beige); }
.news-item::before { content: '▸'; color: var(--beige); font-size: 10px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HEADER ===== */
.site-header-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 300; background: transparent; border-bottom: 1px solid transparent; box-shadow: none; display: flex; align-items: center; padding: 0 40px; padding-top: env(safe-area-inset-top); height: calc(90px + env(safe-area-inset-top)); transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.4s ease; }
.site-header-wrap.header-hidden { transform: translateY(-100%); }
.site-header-wrap.header-scrolled { background: rgba(255,255,255,0.01); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.site-header-wrap.header-scrolled::before { display: none; }
body.modal-open .site-header-wrap,
body.menu-open .site-header-wrap { background: rgba(26,51,87,0.95); backdrop-filter: none; }
.site-header { display: flex; align-items: center; flex-shrink: 0; margin-right: 40px; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 0.01em; line-height: 1.1; white-space: nowrap; transition: color 0.3s; }
.logo-sub { font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0.14em; text-transform: uppercase; transition: color 0.3s; }
.header-scrolled .logo-main { color: var(--navy); }
.header-scrolled .logo-sub { color: var(--gray-text); }
.global-nav { flex: 1; }
.nav-inner { display: flex; align-items: center; height: 90px; justify-content: flex-end; }
.nav-links { list-style: none; display: flex; }
.nav-links > li:last-child > a { padding-right: 32px; }
.nav-links > li { position: relative; }
.nav-links .nav-label { display: flex; align-items: center; height: 90px; padding: 0 13px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.03em; gap: 4px; white-space: nowrap; cursor: default; transition: color 0.3s; }
.nav-links .nav-label.current { color: var(--white); border-bottom: 2px solid var(--white); }
.nav-links a { display: flex; align-items: center; height: 90px; padding: 0 13px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); text-decoration: none; letter-spacing: 0.03em; transition: color 0.15s; gap: 4px; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-links a.current { color: var(--white); border-bottom: 2px solid var(--white); }
.header-scrolled .nav-links .nav-label { color: var(--dark); }
.header-scrolled .nav-links .nav-label.current { color: var(--navy); border-bottom-color: var(--navy); }
.header-scrolled .nav-links a { color: var(--dark); }
.header-scrolled .nav-links a:hover { color: var(--navy); }
.header-scrolled .nav-links a.current { color: var(--navy); border-bottom-color: var(--navy); }
.nav-arrow { font-size: 9px; opacity: 0.4; transition: transform 0.2s; }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: rgba(20,40,70,0.45); border: none; border-top: 2px solid var(--beige-mid); border-radius: 0; min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); z-index: 300; backdrop-filter: blur(8px); }
.nav-links > li:hover .dropdown { display: block; }
.dropdown a { height: auto; padding: 11px 18px; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a::before { content: '›'; color: var(--beige); font-size: 15px; }
.dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.header-scrolled .dropdown { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-top: 2px solid var(--navy); box-shadow: 0 8px 24px rgba(40,75,125,0.1); }
.header-scrolled .dropdown a { color: var(--dark); border-bottom-color: var(--gray-border); }
.header-scrolled .dropdown a::before { color: var(--navy-light); }
.header-scrolled .dropdown a:hover { background: rgba(255,255,255,0.4); color: var(--navy); }
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.header-contact { background: rgba(255,255,255,0.15); color: var(--white); text-decoration: none; padding: 9px 20px; border-radius: 0; font-size: 13px; font-weight: 600; transition: background 0.3s, border-color 0.3s; letter-spacing: 0.04em; white-space: nowrap; border: 1px solid rgba(255,255,255,0.5); }
.header-contact:hover { background: rgba(255,255,255,0.3); }
.header-scrolled .header-contact { background: var(--navy); border-color: var(--navy); }
.header-scrolled .header-contact:hover { background: var(--navy-dark); }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.header-scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); z-index: 500; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu-logo { font-size: 20px; font-weight: 900; color: var(--white); text-decoration: none; }
.mobile-menu-logo span { color: var(--beige); }
.mobile-menu-close { width: 40px; height: 40px; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.mobile-menu-close span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu-close span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { list-style: none; padding: 12px 0; flex: 1; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-item > a { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; font-size: 15px; font-weight: 600; color: var(--white); text-decoration: none; }
.mobile-nav-item > a .mobile-arrow { font-size: 11px; opacity: 0.4; transition: transform 0.2s; }
.mobile-nav-item.sub-open > a .mobile-arrow { transform: rotate(180deg); }
.mobile-sub { display: none; background: rgba(0,0,0,0.2); }
.mobile-nav-item.sub-open .mobile-sub { display: block; }
.mobile-sub a { display: block; padding: 11px 24px 11px 40px; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-sub a::before { content: '›  '; color: var(--beige); }
.mobile-sub a:hover { color: var(--white); }
.mobile-menu-footer { padding: 20px 24px 32px; }
.mobile-cta-btn { display: block; background: var(--navy-light); color: var(--white); text-align: center; padding: 14px; font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 0; margin-bottom: 14px; }
.mobile-tel-link { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; }
.mobile-x-link { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; margin-top: 10px; transition: color 0.2s; }
.mobile-x-link:hover { color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 120px; padding-bottom: 72px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 8s ease; }
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,51,87,0.82) 0%, rgba(26,51,87,0.45) 60%, rgba(26,51,87,0.15) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; width: 100%; padding: 0 48px; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero-tag::before { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.5); }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 300; color: var(--white); line-height: 1.45; letter-spacing: 0.06em; margin-bottom: 14px; }
.page-hero-lead { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.95; max-width: 480px; margin-bottom: 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--white); padding: 11px 40px; border-bottom: 1px solid var(--gray-border); }
.breadcrumb-inner { max-width: 1300px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--gray-text); flex-wrap: wrap; }
.breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== MAIN ===== */
.main-wrap { background: var(--off-white); padding: 88px 40px; }
.main-inner { max-width: 1300px; margin: 0 auto; }
.main-inner--narrow { max-width: 860px; }

/* ===== WORKS GRID ===== */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.work-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; }
.work-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.work-img { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; position: relative; background: var(--off-white); }
.work-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.work-card:hover .work-img img { transform: scale(1.04); }
.work-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--gray-text); }
.work-img-zoom { position: absolute; bottom: 10px; right: 10px; width: 32px; height: 32px; background: rgba(26,51,87,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); pointer-events: none; z-index: 2; }
.work-img-placeholder span { font-size: 11px; }
.work-tag { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 2px; letter-spacing: 0.06em; }
.work-body { padding: 18px 20px 22px; }
.work-name { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.work-desc { font-size: 14px; color: var(--gray-text); line-height: 1.75; }
.work-card--cta { cursor: default; background: var(--navy); border-color: var(--navy); grid-column: 1 / -1; margin-top: 40px; }
.work-card--cta:hover { transform: none; box-shadow: none; }
.work-img--cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 48px 40px; aspect-ratio: auto; height: 100%; min-height: 160px; background: var(--navy); text-align: center; }
.work-cta-content { flex: 1; text-align: center; }
.work-cta-btn { display: none; }
.work-cta-en { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; display: inline-block; margin-bottom: 14px; }
.work-cta-title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 10px; }
.work-cta-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 0; }
.work-cta-btn { display: inline-flex; align-items: center; background: var(--beige); color: var(--navy-dark); font-size: 12px; font-weight: 700; padding: 9px 18px; border-radius: 0; text-decoration: none; transition: background 0.2s; letter-spacing: 0.04em; white-space: nowrap; }
.work-cta-btn:hover { background: var(--beige-mid); }

/* ===== TAB ===== */
.tab-wrap { margin-bottom: 40px; }
.tab-list { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 2px solid var(--gray-border); padding-bottom: 0; }
.tab-btn { background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--gray-text); cursor: pointer; font-family: var(--sans); letter-spacing: 0.03em; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== EQUIPMENT SECTION ===== */
.equip-section { margin-bottom: 56px; }
.equip-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-border); }
.equip-section-label { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.12em; white-space: nowrap; }
.equip-section-title { font-size: 17px; font-weight: 600; color: var(--black); letter-spacing: 0.03em; }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,51,87,0.85); z-index: 600; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 0; border: 1px solid var(--gray-border); box-shadow: 0 24px 64px rgba(40,75,125,0.2); max-width: 720px; width: 100%; overflow: hidden; position: relative; animation: modalIn 0.2s ease; margin: auto; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close { position: sticky; top: 0; float: right; margin: 12px 12px 0 0; width: 36px; height: 36px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.2s; }
.modal-close:hover { background: var(--navy-dark); }
.modal-img { width: 100%; height: 320px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-body { padding: 28px 32px 32px; }
.modal-tag { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; margin-bottom: 12px; }
.modal-name { font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 12px; letter-spacing: 0.03em; }
.modal-desc { font-size: 15px; color: var(--gray-text); line-height: 1.9; margin-bottom: 24px; }
.modal-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--beige); color: var(--navy-dark); padding: 12px 24px; font-size: 13px; font-weight: 700; text-decoration: none; border-radius: 0; transition: all 0.2s; letter-spacing: 0.04em; }
.modal-btn:hover { background: var(--beige-mid); transform: translateY(-1px); }

/* ===== EFFORT PAGES ===== */
.intro-text { font-size: 15px; color: var(--dark); line-height: 2; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-border); }
.intro-note { font-size: 12px; color: var(--gray-text); margin-bottom: 48px; padding-bottom: 48px; border-bottom: none; }
.cert-table { width: 100%; border-collapse: collapse; margin-bottom: 56px; background: var(--white); }
.cert-table th { background: var(--navy); color: var(--white); font-size: 13px; font-weight: 600; padding: 14px 20px; text-align: left; letter-spacing: 0.04em; width: 200px; }
.cert-table td { font-size: 15px; color: var(--dark); padding: 14px 20px; border-bottom: 1px solid var(--gray-border); font-weight: 500; }
.cert-table tr:last-child td { border-bottom: none; }
.green-section { background: var(--green-light); border: 1px solid rgba(45,122,58,0.2); border-left: 4px solid var(--green); border-radius: 0; padding: 32px 36px; margin-bottom: 32px; }
.green-section-title { font-size: 18px; font-weight: 600; color: var(--green); margin-bottom: 16px; letter-spacing: 0.03em; display: flex; align-items: center; gap: 10px; }
.ink-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ink-list li { font-size: 15px; color: var(--dark); line-height: 1.9; padding-left: 20px; position: relative; }
.ink-list li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-size: 16px; font-weight: 700; line-height: 1.6; }
.ink-summary { font-size: 15px; color: var(--mid-gray); line-height: 1.95; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(45,122,58,0.2); font-style: italic; }
.fsc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fsc-list li { font-size: 15px; color: var(--dark); line-height: 1.9; padding-left: 20px; position: relative; }
.fsc-list li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-size: 16px; font-weight: 700; line-height: 1.6; }
.fsc-link-wrap { text-align: center; margin-top: 36px; }
.fsc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--beige-mid); padding-bottom: 2px; transition: color 0.2s; }
.fsc-link:hover { color: var(--navy-light); }
.fsc-link::after { content: '→'; }

/* ===== SDGs ===== */
.sdgs-grid { display: flex; flex-direction: column; gap: 28px; margin-bottom: 56px; }
.sdgs-card { border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.sdgs-card-head { padding: 20px 28px; display: flex; align-items: center; gap: 16px; }
.sdgs-card-head--product { background: #1a5fa8; }
.sdgs-card-head--env     { background: var(--green); }
.sdgs-card-head--people  { background: #b85c00; }
.sdgs-card-head--local   { background: #7a4098; }
.sdgs-card-title { font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; line-height: 1.4; padding-left: 14px; border-left: 3px solid rgba(255,255,255,0.5); }
.sdgs-card-body { padding: 24px 28px; background: var(--white); }
.sdgs-card-desc { font-size: 15px; color: var(--mid-gray); line-height: 1.95; margin-bottom: 20px; }
.sdgs-card-label { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; border-bottom: 1px solid var(--gray-border); padding-bottom: 8px; }
.sdgs-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sdgs-list li { font-size: 15px; color: var(--dark); line-height: 1.85; padding-left: 18px; position: relative; }
.sdgs-list li::before { content: '●'; position: absolute; left: 0; font-size: 7px; color: var(--navy-light); top: 7px; }
.navy-section { background: var(--white); border: 1px solid var(--gray-border); border-left: 4px solid var(--navy); border-radius: 0; padding: 28px 32px; }
.navy-section-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.navy-section-text { font-size: 15px; color: var(--dark); line-height: 1.95; margin-bottom: 8px; }
.navy-section-text:last-child { margin-bottom: 0; }

/* ===== BCP ===== */
.bcp-section { margin-bottom: 48px; }
.bcp-section-title { font-size: 17px; font-weight: 600; color: var(--black); letter-spacing: 0.04em; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-border); display: flex; align-items: center; gap: 10px; }
.bcp-section-title::before { content: ''; display: block; width: 4px; height: 20px; background: var(--navy); border-radius: 2px; }
.bcp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.bcp-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; padding: 24px; }
.bcp-card-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.bcp-card-title::before { content: '›'; color: var(--navy-light); font-size: 18px; line-height: 1.2; flex-shrink: 0; }
.bcp-card-text { font-size: 14px; color: var(--gray-text); line-height: 1.85; }

.bcp-about-note { font-size: 11px; color: var(--gray-text); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--gray-border); }
.cert-img-wrap { margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; padding: 20px; border: 1px solid var(--gray-border); border-radius: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.08); overflow: hidden; }
.cert-img-wrap img { width: 100%; height: auto; display: block; }

/* ===== HEALTH ===== */
.health-layout { display: flex !important; gap: 56px; align-items: flex-start; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-border); }
.health-text { flex: 1; }
.health-layout .cert-img-wrap { flex-shrink: 0; width: 280px; max-width: 100%; margin-left: 0; margin-right: 0; }
.health-text p { font-size: 15px; color: var(--dark); line-height: 2; margin-bottom: 20px; }
.health-text p:last-child { margin-bottom: 0; }
.health-text .note { font-size: 12px; color: var(--gray-text); margin-top: 4px; }
.health-about-text { font-size: 15px; color: var(--dark); line-height: 1.95; }

.works-more { text-align: center; margin-top: 36px; }
.work-card { text-decoration: none; color: inherit; }

/* ===== PRIVACY ===== */
.privacy-sections { display: flex; flex-direction: column; gap: 0; }
.privacy-section { padding: 32px 0; border-bottom: 1px solid var(--gray-border); }
.privacy-section:last-child { border-bottom: none; }
.privacy-section-title { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 16px; display: flex; align-items: baseline; gap: 10px; letter-spacing: 0.03em; }
.privacy-num { color: var(--navy); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.privacy-text { font-size: 15px; color: var(--dark); line-height: 2; margin-bottom: 12px; }
.privacy-text:last-child { margin-bottom: 0; }
.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-left: 0; counter-reset: privacy-counter; }
.privacy-list li { font-size: 15px; color: var(--dark); line-height: 1.9; padding-left: 28px; position: relative; counter-increment: privacy-counter; }
.privacy-list li::before { content: '(' counter(privacy-counter) ')'; position: absolute; left: 0; color: var(--navy); font-weight: 600; font-size: 12px; }

/* ===== CONTACT FORM 7 ===== */
.wpcf7-acceptance .wpcf7-list-item { display: inline-flex !important; align-items: center !important; gap: 10px !important; margin: 0 !important; }
.wpcf7-acceptance .wpcf7-list-item label { display: inline-flex !important; align-items: center !important; gap: 10px !important; font-weight: 400 !important; cursor: pointer; }
.wpcf7-acceptance input[type="checkbox"] { width: 18px !important; height: 18px !important; margin: 0 !important; flex-shrink: 0; accent-color: var(--navy); }

/* ===== CONTACT PAGE ===== */

.contact-notes-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-notes-list li { font-size: 15px; color: var(--gray-text); line-height: 1.8; padding-left: 16px; position: relative; }
.contact-notes-list li::before { content: '・'; position: absolute; left: 0; color: var(--navy); }
.contact-form-wrap { margin-bottom: 56px; }
.contact-form-wrap label { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 20px; }
.contact-form-wrap label span.wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea { width: 100%; padding: 12px 16px; font-size: 14px; font-family: var(--sans); color: var(--dark); background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; transition: border-color 0.2s; outline: none; }
.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap input[type="tel"]:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(40,75,125,0.08); }
.contact-form-wrap textarea { min-height: 160px; resize: vertical; }
.contact-form-wrap select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777785' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.contact-form-wrap .wpcf7-acceptance { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 400; color: var(--dark); margin-bottom: 24px; }
.contact-form-wrap .wpcf7-acceptance .wpcf7-list-item { display: flex; align-items: center; gap: 10px; margin: 0; }
.contact-form-wrap .wpcf7-acceptance input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; margin: 0; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit { display: inline-flex; align-items: center; justify-content: center; background: var(--navy); color: var(--white); font-size: 14px; font-weight: 700; font-family: var(--sans); padding: 14px 48px; border: none; border-radius: 0; cursor: pointer; transition: background 0.2s; letter-spacing: 0.06em; width: 100%; }
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { background: var(--navy-dark); }
.contact-form-wrap .wpcf7-not-valid-tip { font-size: 12px; color: #e53e3e; margin-top: 4px; display: block; }
.contact-form-wrap .wpcf7-response-output { margin-top: 20px; padding: 14px 20px; border-radius: 0; font-size: 13px; border: 1px solid var(--gray-border); }
.contact-form-wrap .wpcf7-mail-sent-ok { background: #f0fff4; border-color: #48bb78; color: #276749; }
.contact-form-wrap .wpcf7-validation-errors { background: #fff5f5; border-color: #fc8181; color: #c53030; }
.contact-tel-wrap { background: var(--navy); border-radius: 0; padding: 48px 40px; margin-top: 56px; }
.contact-tel-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beige); opacity: 0.8; margin-bottom: 8px; display: block; }
.contact-tel-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 32px; }
.contact-tel-grid { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 0; overflow: hidden; justify-content: center; }
.contact-tel-item { padding: 28px 64px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.contact-tel-item:last-child { border-right: none; }
.contact-tel-type { display: inline-block; font-size: 10px; font-weight: 700; color: var(--beige); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.contact-tel-num { display: block; font-size: 28px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: 0.04em; margin-bottom: 2px; transition: color 0.2s; }
.contact-tel-num:hover { color: var(--beige); }
.contact-tel-hours { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
span.contact-tel-num { color: var(--white) !important; text-decoration: none !important; }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); padding: 0 0 24px; }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-contact { padding: 64px 40px 56px; border-bottom: 1px solid rgba(255,255,255,0.08); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.footer-contact-label { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 12px; opacity: 0.7; }
.footer-contact-title { font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); letter-spacing: 0.04em; line-height: 1; margin-bottom: 16px; }
.footer-btns-anim { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.footer-btns-anim.visible { opacity: 1; transform: translateY(0); }
.footer-contact-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-contact-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-contact-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 0; transition: all 0.2s; white-space: nowrap; }
.footer-contact-btn-primary { background: var(--beige); color: var(--navy-dark); }
.footer-contact-btn-primary:hover { background: var(--beige-mid); transform: translateY(-1px); }
.footer-contact-btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.footer-contact-btn-secondary:hover { background: rgba(255,255,255,0.2); }
.footer-nav { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr 0.8fr 0.8fr; gap: 32px; padding: 48px 40px 40px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
@media (max-width: 1100px) {
  .footer-nav { grid-template-columns: 1fr 1fr 1fr; gap: 32px 24px; }
  .footer-nav > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px 16px; padding: 40px 20px 32px; }
  .footer-nav > div:first-child { grid-column: 1 / -1; }
}
.footer-logo { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-logo a { color: var(--white); text-decoration: none; }
.footer-logo a:hover { color: var(--beige); }
.footer-logo span { color: var(--beige); }
.footer-info { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 2.1; }
.footer-info a { color: inherit; text-decoration: none; }
.footer-sns { margin-top: 14px; display: flex; gap: 10px; }
.footer-x-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.2); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.footer-x-link:hover { color: var(--white); border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--beige); margin-bottom: 16px; opacity: 0.8; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--beige-mid); font-size: 16px; opacity: 0.6; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 0 40px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.45); }

/* ===== PAGE HERO STATS ===== */
.page-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,0.2); border-radius: 0; overflow: hidden; width: fit-content; }
.page-hero-stat { padding: 14px 24px; border-right: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.25); display: flex; flex-direction: column; justify-content: center; }
.page-hero-stat:last-child { border-right: none; }
.page-hero-stat-num { font-size: 22px; font-weight: 700; color: var(--beige); line-height: 1; margin-bottom: 5px; white-space: nowrap; }
.page-hero-stat-num span { font-size: 11px; font-weight: 500; color: rgba(232,205,169,0.7); margin-left: 2px; }
.page-hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; white-space: nowrap; }

/* ===== SECTION COMMON ===== */
.section { padding: 88px 40px; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-white { background: var(--off-white); }
.section-alt { background: #efefed; }
.section-navy { background: var(--navy); }
.sec-head { margin-bottom: 48px; }
.sec-label { display: inline-block; background: transparent; color: var(--navy-light); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; border-bottom: 1px solid var(--navy-light); padding-bottom: 2px; }
.sec-title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 600; color: var(--black); letter-spacing: 0.04em; line-height: 1.4; margin-bottom: 12px; }
.sec-desc { font-size: 15px; color: var(--gray-text); line-height: 1.95; max-width: 45ch; }
.sec-divider { width: 36px; height: 2px; background: var(--beige-mid); display: block; margin-bottom: 14px; }

/* ===== REASON ROWS ===== */
.reasons-list { display: flex; flex-direction: column; gap: 30px; }
.reason-row { display: grid; grid-template-columns: 4fr 7fr; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); transition: box-shadow 0.25s, transform 0.25s; }
.reason-row--reverse { direction: rtl; }
.reason-row--reverse > * { direction: ltr; }
.reason-row:hover { box-shadow: 0 8px 32px rgba(40,75,125,0.1); transform: translateY(-2px); }
.reason-img { overflow: hidden; }
.reason-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.reason-row:hover .reason-img img { transform: scale(1.04); }
.reason-body { padding: 32px 40px; display: flex; flex-direction: column; justify-content: center; }
.reason-num { font-size: 40px; font-weight: 300; color: var(--beige-mid); line-height: 1; margin-bottom: 10px; }
.reason-title { font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 12px; line-height: 1.5; }
.reason-lead { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.7; margin-bottom: 12px; padding-left: 14px; border-left: 3px solid var(--beige-mid); }
.reason-text { font-size: 15px; color: var(--gray-text); line-height: 1.95; }
.reason-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 12px; font-weight: 600; color: var(--white); background: var(--navy); padding: 6px 14px; text-decoration: none; width: fit-content; transition: background 0.2s; letter-spacing: 0.04em; }
.reason-link::after { content: '→'; transition: transform 0.2s; }
.reason-link:hover, .reason-row:hover .reason-link { background: var(--navy-dark); }
.reason-link:hover::after, .reason-row:hover .reason-link::after { transform: translateX(3px); }
a.reason-row { text-decoration: none; color: inherit; display: grid; }

/* ===== FACTORY CARDS ===== */
.factory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.factory-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.factory-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.factory-img { height: 220px; overflow: hidden; }
.factory-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.factory-card:hover .factory-img img { transform: scale(1.04); }
.factory-body { padding: 24px 28px; }
.factory-title { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.factory-text { font-size: 15px; color: var(--gray-text); line-height: 1.9; }

/* ===== DESIGN BLOCK ===== */
.design-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.design-img { overflow: hidden; }
.design-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s; }
.design-block:hover .design-img img { transform: scale(1.03); }
.design-body { background: var(--navy); padding: 36px 48px; display: flex; flex-direction: column; justify-content: center; }
.design-label { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; display: inline-block; margin-bottom: 18px; }
.design-title { font-size: 22px; font-weight: 600; color: var(--white); line-height: 1.55; margin-bottom: 16px; }
.design-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.95; margin-bottom: 28px; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.product-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.product-img { aspect-ratio: 2 / 1; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 18px 20px 22px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.product-desc { font-size: 14px; color: var(--gray-text); line-height: 1.75; }
.products-more { text-align: center; margin-top: 36px; }

/* ===== ECO GRID ===== */
.eco-img-wrap { margin-bottom: 48px; border-radius: 0; overflow: hidden; }
.eco-img-wrap img { width: 100%; height: auto; display: block; }
.eco-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.eco-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; padding: 28px 32px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.25s, transform 0.25s; border-top: 3px solid var(--navy); }
.eco-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.eco-badge { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; width: fit-content; }
.eco-title { font-size: 18px; font-weight: 600; color: var(--black); line-height: 1.5; }
.eco-text { font-size: 15px; color: var(--gray-text); line-height: 1.85; flex: 1; }
.eco-more { font-size: 12px; font-weight: 600; color: var(--white); background: var(--navy); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; width: fit-content; transition: background 0.2s; letter-spacing: 0.04em; margin-top: auto; }
.eco-more::after { content: '→'; transition: transform 0.2s; }
.eco-more:hover, .eco-card:hover .eco-more { background: var(--navy-dark); }
.eco-more:hover::after, .eco-card:hover .eco-more::after { transform: translateX(3px); }

/* ===== SERVICE LIST (事業内容ページ) ===== */
.service-list { display: flex; flex-direction: column; gap: 48px; }
.service-item { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); transition: box-shadow 0.25s, transform 0.25s; text-decoration: none; color: inherit; }

/* 取り扱い製品ページ用3列レイアウト */
.works-service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: transparent; }
.works-service-list .service-item { display: flex; flex-direction: column; grid-template-columns: none; border: none; border-radius: 0; box-shadow: none; padding: 0 32px; position: relative; background: transparent; }
.works-service-list .service-item::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: var(--gray-border); }
.works-service-list .service-item:last-child::after { display: none; }
.works-service-list .service-item:hover { transform: none; box-shadow: none; }
.works-service-list .service-body { padding: 16px 0 24px; }
.works-service-list .service-img { flex-shrink: 0; }
.works-service-list .service-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform 0.6s; border-radius: 0; }
.works-service-list .service-item.reverse .service-body { order: -1; }
.works-service-list .service-num { font-size: 11px; color: var(--gray-text); letter-spacing: 0.2em; margin-bottom: 10px; }
.works-service-list .service-name { font-size: clamp(18px, 1.8vw, 22px); margin-bottom: 12px; }
.works-service-list .service-desc { font-size: 14px; margin-bottom: 16px; }
.works-service-list .service-features { margin-bottom: 16px; }
.works-service-list .service-link { margin-bottom: 24px; }
.service-item:hover { box-shadow: 0 8px 32px rgba(40,75,125,0.1); transform: translateY(-2px); }
.service-img { overflow: hidden; align-self: stretch; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.service-item:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.service-item.reverse .service-body { order: -1; }
.service-num { font-size: 40px; font-weight: 300; color: var(--beige-mid); line-height: 1; margin-bottom: 8px; }
.service-en { display: inline-block; background: transparent; color: var(--navy-light); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; border-bottom: 1px solid var(--navy-light); padding-bottom: 2px; }
.service-name { font-size: clamp(20px, 2vw, 24px); font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 12px; }
.service-desc { font-size: 15px; color: var(--gray-text); line-height: 1.95; margin-bottom: 18px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-feature { background: var(--off-white); color: var(--navy); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.04em; border: 1px solid var(--gray-border); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--navy); border: 1px solid var(--navy); padding: 6px 14px; border-radius: 2px; width: fit-content; transition: background 0.2s, color 0.2s; letter-spacing: 0.04em; background: var(--white); }
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-item:hover .service-link { background: var(--navy); color: var(--white); }
.service-item:hover .service-link::after { transform: translateX(3px); }

/* ===== EFFORT BANNER ===== */
.effort-banner { background: var(--beige-light); padding: 64px 40px; border-top: 1px solid var(--beige-mid); border-bottom: 1px solid var(--beige-mid); }
.effort-banner-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.effort-banner-label { display: inline-block; color: var(--navy-light); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; border-bottom: 1px solid var(--navy-light); padding-bottom: 2px; }
.effort-banner-title { font-size: clamp(22px, 2.5vw, 28px); font-weight: 600; color: var(--black); letter-spacing: 0.04em; line-height: 1.4; margin-bottom: 10px; }
.effort-banner-desc { font-size: 15px; color: var(--gray-text); line-height: 1.9; }
.effort-banner-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.effort-banner-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; border-radius: 0; transition: all 0.2s; white-space: nowrap; }
.effort-banner-btn-primary { background: var(--navy); color: var(--white); }
.effort-banner-btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.effort-banner-btn-secondary { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.effort-banner-btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--navy); padding: 72px 40px; text-align: center; }
.cta-inner { max-width: 1300px; margin: 0 auto; }
.cta-label { display: inline-block; color: var(--beige); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; }
.cta-title { font-size: clamp(20px, 2.8vw, 28px); font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: 0.04em; }
.cta-desc { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; line-height: 1.9; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== NEWS LIST PAGE ===== */
.page-hero--simple { height: auto !important; min-height: 0; background: var(--navy-dark); padding-top: 120px; padding-bottom: 72px; }
.page-hero--simple .page-hero-overlay { background: linear-gradient(to right, rgba(26,51,87,0.92) 0%, rgba(26,51,87,0.6) 100%); }
.news-section { padding: 72px 40px; background: var(--off-white); }
.news-section-inner { max-width: 860px; margin: 0 auto; }
.news-items { display: flex; flex-direction: column; }
.news-entry { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--gray-border); text-decoration: none; color: inherit; transition: background 0.15s; }
.news-entry:first-child { border-top: 1px solid var(--gray-border); }
.news-entry:hover { background: var(--off-white); padding-left: 12px; padding-right: 12px; margin: 0 -12px; border-radius: 0; }
.news-entry-date { font-size: 13px; color: var(--gray-text); letter-spacing: 0.08em; padding-top: 3px; white-space: nowrap; }
.news-entry-title { font-size: 16px; font-weight: 600; color: var(--black); line-height: 1.6; }
.news-entry:hover .news-entry-title { color: var(--navy); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-size: 13px; font-weight: 600; border-radius: 0; text-decoration: none; transition: all 0.2s; }
.pagination a { color: var(--navy); border: 1px solid var(--gray-border); }
.pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination span.current { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.news-pagination { margin-top: 48px; }
.news-pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.news-pagination .nav-links a, .news-pagination .nav-links span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; font-size: 13px; font-weight: 600; border-radius: 0; text-decoration: none; transition: all 0.2s; }
.news-pagination .nav-links a { color: var(--navy); border: 1px solid var(--gray-border); }
.news-pagination .nav-links a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.news-pagination .nav-links span.current { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.news-pagination .nav-links .page-numbers.dots { border: none; color: var(--gray-text); }
.no-posts { text-align: center; padding: 64px 0; color: var(--gray-text); font-size: 15px; }

/* ===== ARTICLE ===== */
.article-section { padding: 72px 40px; background: var(--white); }
.article-inner { max-width: 860px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.article-date { font-size: 12px; color: var(--gray-text); letter-spacing: 0.08em; }
.article-title { font-size: clamp(20px, 3vw, 28px); font-weight: 600; color: var(--black); line-height: 1.5; letter-spacing: 0.03em; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-border); }
.article-body { font-size: 15px; color: var(--dark); line-height: 2; }
.article-body p { margin-bottom: 1.6em; }
.article-body h2 { font-size: 18px; font-weight: 700; color: var(--black); margin: 2em 0 0.8em; padding-left: 14px; border-left: 3px solid var(--navy); }
.article-body h3 { font-size: 16px; font-weight: 700; color: var(--black); margin: 1.6em 0 0.6em; }
.article-body ul, .article-body ol { padding-left: 1.6em; margin-bottom: 1.6em; }
.article-body li { margin-bottom: 0.4em; }
.article-body a { color: var(--navy); text-decoration: underline; }
.article-body a:hover { color: var(--navy-light); }
.article-body img { max-width: 100%; height: auto; border-radius: 0; margin: 1em 0; }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-border); }
.article-nav-link { display: flex; flex-direction: column; gap: 6px; padding: 16px 20px; border: 1px solid var(--gray-border); border-radius: 0; text-decoration: none; transition: all 0.2s; }
.article-nav-link:hover { border-color: var(--navy-light); background: var(--off-white); }
.article-nav-link.next { text-align: right; }
.article-nav-direction { font-size: 10px; font-weight: 600; color: var(--navy-light); letter-spacing: 0.14em; text-transform: uppercase; }
.article-nav-title { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.5; }
.article-back { text-align: center; margin-top: 40px; }
.article-back a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; font-size: 13px; font-weight: 600; color: var(--navy); border: 1px solid var(--gray-border); border-radius: 0; text-decoration: none; transition: all 0.2s; letter-spacing: 0.04em; }
.article-back a::before { content: '←'; }
.article-back a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== MESSAGE BLOCK ===== */
.message-block { background: var(--navy); border-radius: 0; padding: 36px 36px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 280px; gap: 52px; align-items: center; }
.message-block::before { content: '"'; position: absolute; top: -20px; left: 40px; font-size: 160px; font-weight: 900; color: rgba(255,255,255,0.04); font-family: Georgia, serif; line-height: 1; }
.message-body { position: relative; z-index: 1;}
.message-lead { font-size: 20px; font-weight: 600; color: var(--beige); margin-bottom: 24px; line-height: 1.6; letter-spacing: 0.04em; }
.message-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 2; margin-bottom: 28px; }
.message-sign { font-size: 14px; color: rgba(255,255,255,0.45); }
.message-photo { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.message-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: 0; border: 1px solid rgba(255,255,255,0.15); display: block; }
.message-photo-caption { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.7; letter-spacing: 0.04em; }
.pdf-download { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--navy); border: 1px solid var(--gray-border); border-radius: 0; padding: 12px 22px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-top: 28px; letter-spacing: 0.04em; }
.pdf-download:hover { border-color: var(--navy-light); color: var(--navy-light); }
.pdf-size { font-size: 11px; font-weight: 400; color: var(--gray-text); margin-left: 2px; }

/* ===== PROFILE TABLE ===== */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid var(--gray-border); }
.profile-table tr:first-child { border-top: 1px solid var(--gray-border); }
.profile-table th { width: 180px; padding: 20px 24px; background: var(--off-white); color: var(--navy); font-size: 14px; font-weight: 700; text-align: left; vertical-align: top; letter-spacing: 0.04em; border-right: 2px solid var(--beige-mid); white-space: nowrap; }
.profile-table td { padding: 20px 28px; font-size: 15px; color: var(--dark); line-height: 1.9; }
.profile-table td a { color: var(--navy); text-decoration: none; font-weight: 600; }
.profile-table td a:hover { text-decoration: underline; }

/* ===== HISTORY ===== */
.history-list { list-style: none; position: relative; padding-left: 0; }
.history-list::before { content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px; background: var(--beige-mid); }
.history-item { display: flex; position: relative; }
.history-item::after { content: ''; position: absolute; left: 104px; top: 24px; width: 12px; height: 12px; background: var(--beige); border: 2px solid var(--white); border-radius: 50%; z-index: 1; }
.history-year { width: 110px; flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--navy-light); padding: 18px 0; letter-spacing: 0.04em; }
.history-content { flex: 1; padding: 18px 0 18px 44px; font-size: 15px; color: var(--dark); line-height: 1.8; border-bottom: 1px solid var(--gray-border); }
.history-item:last-child .history-content { border-bottom: none; }
.section-alt .history-item::after { border-color: #efefed; }

/* ===== ACCESS ===== */
.access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.access-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s; }
.access-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.08); }
.access-card-header { background: var(--navy); padding: 16px 24px; display: flex; align-items: center; gap: 10px; }
.access-card-tag { background: var(--beige); color: var(--navy-dark); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.08em; }
.access-card-name { font-size: 16px; font-weight: 600; color: var(--white); }
.access-map { width: 100%; height: 220px; border: none; display: block; border-bottom: 1px solid var(--gray-border); }
.access-card-body { padding: 24px; }
.access-info { display: flex; flex-direction: column; gap: 10px; }
.access-row { display: flex; gap: 12px; font-size: 13px; align-items: flex-start; }
.access-label { flex-shrink: 0; width: 72px; font-weight: 700; color: var(--navy); font-size: 11px; letter-spacing: 0.04em; padding-top: 2px; }
.access-value { color: var(--mid-gray); line-height: 1.75; }
.access-value a { color: var(--navy); text-decoration: none; font-weight: 600; }

/* ===== HERO SWIPER ===== */
.hero-wrap { position: relative; z-index: 0; display: flex; flex-direction: column; height: 100svh; min-height: 620px; }
.hero-swiper { position: relative; width: 100%; flex: 1; min-height: 0; overflow: hidden; }
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease; }
.swiper-slide-active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,25,50,0.68) 0%, rgba(10,25,50,0.35) 60%, transparent 100%); }
.slide-scroll-dark { position: absolute; inset: 0; background: rgba(0,0,0,0); z-index: 1; pointer-events: none; transition: background 0.05s linear; }
.slide-content { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; max-width: 1300px; margin: 0 auto; padding: 80px 48px; }
@keyframes slideUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.slide-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 16px; opacity: 0; }
.slide-tag::before { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.5); }
.slide-h1 { font-size: clamp(26px, 4vw, 48px); font-weight: 300; color: var(--white); line-height: 1.55; letter-spacing: 0.06em; margin-bottom: 18px; opacity: 0; }
.slide-h1 em { font-style: normal; font-weight: 600; color: var(--white); }
.slide-lead { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 2; max-width: 420px; margin-bottom: 30px; letter-spacing: 0.04em; opacity: 0; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; }
.swiper-slide-active .slide-tag { animation: slideUp 0.7s ease 0.1s forwards; }
.swiper-slide-active .slide-h1 { animation: slideUp 0.7s ease 0.25s forwards; }
.swiper-slide-active .slide-lead { animation: slideUp 0.7s ease 0.4s forwards; }
.swiper-slide-active .slide-btns { animation: slideUp 0.7s ease 0.55s forwards; }
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .slide-tag,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .slide-h1,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .slide-lead,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .slide-btns { opacity: 1; }
.swiper-pagination { position: absolute !important; bottom: 20px !important; left: 0 !important; right: 0 !important; z-index: 20 !important; display: flex !important; align-items: center; justify-content: center; gap: 6px; width: 100% !important; }
.swiper-pagination-bullet { width: 8px !important; height: 8px !important; border-radius: 4px !important; background: rgba(255,255,255,0.4) !important; opacity: 1 !important; transition: width 0.3s ease, background 0.3s ease !important; margin: 0 3px !important; }
.swiper-pagination-bullet-active { width: 28px !important; border-radius: 4px !important; background: rgba(255,255,255,0.9) !important; }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: rgba(0,0,0,0.3); z-index: 20; }
.hero-progress-bar { height: 100%; width: 0%; background: var(--beige); transition: none; }
.hero-progress-bar.animating { transition: width 5.5s linear; width: 100%; }
.swiper-button-prev, .swiper-button-next { color: rgba(255,255,255,0.6) !important; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 16px !important; }
.main-content { position: relative; z-index: 1; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy); padding: 48px 40px; }
.stats-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.15); border-radius: 0; overflow: hidden; }
.stat-item { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); transition: background 0.2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.09); }
.stat-num { font-size: clamp(36px, 3.5vw, 52px); font-weight: 700; color: var(--beige); line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px; }
.stat-num span { font-size: 16px; font-weight: 500; color: rgba(232,205,169,0.7); margin-left: 2px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature-card { overflow: hidden; transition: all 0.25s; padding: 0 24px; position: relative; }
.feature-card::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: var(--gray-border); }
.feature-card:last-child::after { display: none; }
.feature-card:hover { opacity: 0.85; }
.feature-img { aspect-ratio: 2 / 1; overflow: hidden; border-radius: 0; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.feature-card:hover .feature-img img { transform: scale(1.04); }
.feature-body { padding: 20px 0 0; }
.feature-num { font-size: 13px; font-weight: 600; color: var(--beige-mid); line-height: 1; margin-bottom: 10px; letter-spacing: 0.1em; font-family: var(--sans); }
.feature-title { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: 0.03em; }
.feature-text { font-size: 15px; color: var(--gray-text); line-height: 1.9; }

/* ===== SERVICE ROWS ===== */
.service-rows { display: flex; flex-direction: column; gap: 20px; }
.service-row { display: grid; grid-template-columns: 4fr 7fr; min-height: 320px; text-decoration: none; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); transition: box-shadow 0.25s, transform 0.25s; }
.service-row:hover { box-shadow: 0 8px 32px rgba(40,75,125,0.1); transform: translateY(-2px); }
.service-row-img { position: relative; overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-num { position: absolute; top: 18px; left: 18px; width: 38px; height: 38px; border-radius: 50%; background: rgba(40,75,125,0.85); display: flex; align-items: center; justify-content: center; }
.service-row-num span { font-size: 12px; font-weight: 700; color: var(--beige); letter-spacing: 0.05em; }
.service-row-body { padding: 32px 40px; display: flex; flex-direction: column; justify-content: center; }
.service-row-label { font-size: 10px; font-weight: 600; color: var(--navy-light); letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid var(--navy-light); padding-bottom: 2px; display: inline-block; margin-bottom: 18px; }
.service-row-name { font-size: 18px; font-weight: 600; color: var(--black); line-height: 1.35; margin-bottom: 16px; }
.service-row-desc { font-size: 15px; color: var(--gray-text); line-height: 1.95; margin-bottom: 28px; }
.service-row-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--white); background: var(--navy); padding: 6px 14px; width: fit-content; transition: background 0.2s; letter-spacing: 0.04em; }
.service-row-link::after { content: '→'; transition: transform 0.2s; }
.service-row-link:hover, .service-row:hover .service-row-link { background: var(--navy-dark); }
.service-row-link:hover::after, .service-row:hover .service-row-link::after { transform: translateX(3px); }

/* ===== EFFORT GRID (取り組みTOPページ) ===== */
.effort-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.effort-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; text-decoration: none; display: flex; flex-direction: column; }
.effort-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.effort-icon { background: var(--navy); padding: 28px 24px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.effort-icon-emoji { font-size: 32px; line-height: 1; }
.effort-icon-badge { display: inline-block; background: var(--beige); color: var(--navy-dark); font-size: 9px; font-weight: 700; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.effort-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.effort-name { font-size: 17px; font-weight: 600; color: var(--black); line-height: 1.5; letter-spacing: 0.03em; }
.effort-desc { font-size: 14px; color: var(--gray-text); line-height: 1.75; flex: 1; }
.effort-link { font-size: 12px; color: var(--navy-light); font-weight: 600; margin-top: 4px; }

/* ===== EFFORT STRIP ===== */
.effort-strip { background: var(--navy); padding: 88px 40px; overflow: hidden; }
.effort-strip-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.effort-strip-img { position: relative; overflow: hidden; border-radius: 0; }
.effort-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.effort-strip-body { display: flex; flex-direction: column; justify-content: center; }
.effort-strip-label { display: inline-block; color: var(--beige); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid var(--beige-mid); padding-bottom: 2px; margin-bottom: 16px; width: fit-content; }
.effort-strip-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; color: var(--white); letter-spacing: 0.04em; line-height: 1.4; margin-bottom: 16px; }
.effort-strip-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 28px; }
.effort-strip-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.effort-strip-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.effort-strip-list li:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.effort-strip-list li a { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; font-size: 15px; font-weight: 600; color: var(--white); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.effort-strip-list li a::after { content: '→'; color: var(--beige); font-size: 13px; }
.effort-strip-list li a:hover { color: var(--beige); padding-left: 8px; }
@media (max-width: 900px) {
  .effort-strip { padding: 0; }
  .effort-strip-inner { grid-template-columns: 1fr; gap: 0; }
  .effort-strip-img { height: 260px; }
  .effort-strip-body { padding: 48px 32px; }
}
.effort-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.effort-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 400; padding: 8px 16px; border-radius: 2px; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.04em; }
.effort-badge:hover { background: rgba(232,205,169,0.15); color: var(--beige); border-color: rgba(232,205,169,0.4); }

/* ===== TOP NEWS ===== */
.top-news-list { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.top-news-entry { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--gray-border); text-decoration: none; color: inherit; transition: background 0.15s; }
.top-news-entry:first-child { border-top: 1px solid var(--gray-border); }
.top-news-entry:hover { }
.top-news-date { font-size: 12px; color: var(--gray-text); letter-spacing: 0.08em; padding-top: 3px; white-space: nowrap; }
.top-news-title { font-size: 16px; font-weight: 600; color: var(--black); line-height: 1.6; }
.top-news-entry:hover .top-news-title { color: var(--navy); }
.news-new { display: inline-block; background: #e03a3a; color: var(--white); font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 2px; letter-spacing: 0.1em; margin-right: 8px; vertical-align: middle; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-desc { margin: 0 auto; }
.sec-head--center .sec-divider { display: block; margin: 0 auto 14px; }

/* ===== SERVICE GRID ===== */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: 0 8px 28px rgba(40,75,125,0.1); transform: translateY(-2px); }
.service-card-img { height: 160px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.service-card-name { font-size: 17px; font-weight: 600; color: var(--black); }
.service-card-desc { font-size: 14px; color: var(--gray-text); line-height: 1.75; flex: 1; }

/* ===== LOCATION BLOCK ===== */
.location-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.location-img { overflow: hidden; }
.location-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s; }
.location-block:hover .location-img img { transform: scale(1.03); }
.location-body { background: var(--navy); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.location-label { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; display: inline-block; margin-bottom: 18px; }
.location-title { font-size: 20px; font-weight: 600; color: var(--white); line-height: 1.55; margin-bottom: 16px; }
.location-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.95; }

/* ===== INTRO BLOCK ===== */
.intro-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.intro-img { overflow: hidden; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s; }
.intro-block:hover .intro-img img { transform: scale(1.03); }
.intro-body { background: var(--navy); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.intro-label { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; display: inline-block; margin-bottom: 18px; }
.intro-lead { font-size: 20px; font-weight: 600; color: var(--beige); line-height: 1.55; margin-bottom: 18px; }
.intro-body .intro-text { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.95; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

/* ===== UD BLOCK ===== */
.ud-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.ud-img { overflow: hidden; height: 300px; }
.ud-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ud-body { background: var(--off-white); padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.ud-badge { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.ud-title { font-size: 20px; font-weight: 600; color: var(--black); line-height: 1.55; margin-bottom: 14px; }
.ud-text { font-size: 15px; color: var(--gray-text); line-height: 1.95; }

/* ===== SAMPLE BLOCK ===== */
.sample-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.sample-img { overflow: hidden; }
.sample-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s; }
.sample-block:hover .sample-img img { transform: scale(1.03); }
.sample-body { background: var(--navy); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.sample-label { font-size: 10px; font-weight: 600; color: var(--beige); letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid rgba(232,205,169,0.4); padding-bottom: 2px; display: inline-block; margin-bottom: 18px; }
.sample-title { font-size: 22px; font-weight: 600; color: var(--white); line-height: 1.55; margin-bottom: 16px; }
.sample-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.95; margin-bottom: 28px; }
.sample-note { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-top: 16px; }

/* ===== セクション追加背景 ===== */
.section-navy-light { background: #1e3a5f; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.faq-q { background: var(--off-white); padding: 18px 24px; display: flex; align-items: center; gap: 14px; cursor: pointer; }
.faq-q-icon { flex-shrink: 0; width: 26px; height: 26px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 700; border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--black); flex: 1; line-height: 1.5; }
.faq-a { display: none; background: var(--white); padding: 18px 24px 18px 64px; font-size: 15px; color: var(--mid-gray); line-height: 1.9; border-top: 1px solid var(--gray-border); }
.faq-a.open { display: block; }
.faq-more { text-align: center; margin-top: 28px; }

/* ===== EQUIPMENT SECTION ===== */
.equip-section { margin-bottom: 56px; }
.equip-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-border); }
.equip-section-label { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.12em; white-space: nowrap; }
.equip-section-title { font-size: 17px; font-weight: 600; color: var(--black); letter-spacing: 0.03em; }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,51,87,0.85); z-index: 600; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 0; border: 1px solid var(--gray-border); box-shadow: 0 24px 64px rgba(40,75,125,0.2); max-width: 720px; width: 100%; overflow: hidden; position: relative; animation: modalIn 0.2s ease; margin: auto; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close { position: sticky; top: 0; float: right; margin: 12px 12px 0 0; width: 36px; height: 36px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.2s; }
.modal-close:hover { background: var(--navy-dark); }
.modal-img { width: 100%; height: 320px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-body { padding: 28px 32px 32px; }
.modal-tag { display: inline-block; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; margin-bottom: 12px; }
.modal-name { font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 12px; letter-spacing: 0.03em; }
.modal-desc { font-size: 15px; color: var(--gray-text); line-height: 1.9; margin-bottom: 24px; white-space: pre-line; }
.modal-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--beige); color: var(--navy-dark); padding: 12px 24px; font-size: 13px; font-weight: 700; text-decoration: none; border-radius: 0; transition: all 0.2s; letter-spacing: 0.04em; }
.modal-btn:hover { background: var(--beige-mid); transform: translateY(-1px); }

/* ===== FAQ LAYOUT ===== */
.faq-layout { display: flex; gap: 40px; align-items: flex-start; }
.faq-sidebar { flex-shrink: 0; width: 260px; position: sticky; top: 88px; }
.sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 12px; padding: 0 4px; }
.category-list { list-style: none; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); }
.category-item { border-bottom: 1px solid var(--gray-border); }
.category-item:last-child { border-bottom: none; }
.category-btn { width: 100%; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--dark); background: var(--white); border: none; text-align: left; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; justify-content: space-between; gap: 8px; font-family: var(--sans); letter-spacing: 0.03em; }
.category-btn:hover { background: var(--off-white); color: var(--navy); }
.category-btn.active { background: var(--navy); color: var(--white); font-weight: 700; }
.category-count { font-size: 11px; background: var(--off-white); color: var(--gray-text); padding: 2px 8px; border-radius: 10px; flex-shrink: 0; }
.category-btn.active .category-count { background: rgba(255,255,255,0.2); color: var(--white); }
.faq-content { flex: 1; min-width: 0; }
.faq-section { display: none; }
.faq-section.active { display: block; }
.faq-section-title { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--navy); display: flex; align-items: center; gap: 10px; letter-spacing: 0.04em; }
.faq-section-title::before { content: ''; width: 4px; height: 20px; background: var(--beige-mid); border-radius: 2px; flex-shrink: 0; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-item:first-child { border-top: 1px solid var(--gray-border); }
.faq-q { background: var(--white); padding: 18px 24px; display: flex; align-items: flex-start; gap: 14px; cursor: pointer; transition: background 0.15s; }
.faq-q:hover { background: var(--off-white); }
.faq-q.open { background: var(--navy); }
.faq-q-icon { flex-shrink: 0; width: 26px; height: 26px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 700; border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.faq-q.open .faq-q-icon { background: var(--beige); color: var(--navy-dark); }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--black); flex: 1; line-height: 1.6; }
.faq-q.open .faq-q-text { color: var(--white); }
.faq-toggle { flex-shrink: 0; width: 22px; height: 22px; border: 1px solid var(--gray-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-text); margin-top: 2px; transition: all 0.2s; }
.faq-q.open .faq-toggle { background: var(--beige); border-color: var(--beige); color: var(--navy-dark); transform: rotate(45deg); }
.faq-a { display: none; background: var(--off-white); padding: 18px 24px 18px 64px; font-size: 15px; color: var(--dark); line-height: 1.9; border-top: 1px solid var(--gray-border); }
.faq-a.open { display: block; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; border-radius: 0; transition: all 0.2s; cursor: pointer; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-beige { background: var(--beige); color: var(--navy-dark); font-weight: 700; }
.btn-beige:hover { background: var(--beige-mid); transform: translateY(-1px); }
.btn-outline { background: var(--navy); color: var(--white); }
.btn-outline:hover { background: var(--navy-dark); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-tel-grid { flex-direction: column; }
  .contact-tel-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .contact-tel-item:last-child { border-bottom: none; }
  .contact-tel-wrap { padding: 32px 24px; }
  .logo-main { font-size: 16px; }
  .hamburger { display: flex; }
  .global-nav { display: none; }
  .header-contact { display: none; }
  .site-header-wrap { padding: 0 20px; padding-top: env(safe-area-inset-top); height: calc(56px + env(safe-area-inset-top)); }
  .logo-sub { display: none; }
  .page-hero { padding-top: 72px; padding-bottom: 48px; }
  .page-hero--simple { padding-top: 88px; padding-bottom: 32px; }
  .page-hero-inner { padding: 0 24px; }
  .breadcrumb { padding: 10px 20px; }
  .article-section { padding: 48px 20px; }
  .article-nav { grid-template-columns: 1fr; }
  .news-section { padding: 48px 20px; }
  .news-entry { grid-template-columns: 1fr; gap: 4px; }
  .effort-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { flex-direction: column; gap: 28px; }
  .faq-sidebar { width: 100%; position: static; }
  .category-list { display: flex; flex-wrap: wrap; }
  .category-item { border-bottom: none; border-right: 1px solid var(--gray-border); flex: 1; min-width: 140px; }
  .main-wrap { padding: 60px 20px; }
  .modal-img { height: 220px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .work-img--cta { flex-direction: column; align-items: flex-start; gap: 16px; min-height: auto; aspect-ratio: auto; padding: 28px 24px; }
  .modal-img { height: 220px; }
  .tab-btn { font-size: 12px; padding: 8px 12px; }
  .sdgs-card-head { padding: 16px 20px; }
  .sdgs-card-body { padding: 20px; }
  .navy-section { padding: 20px; }
  .bcp-cards { grid-template-columns: 1fr; }
  .cert-table th { width: 130px; font-size: 12px; padding: 12px 14px; }
  .cert-table td { font-size: 12px; padding: 12px 14px; }
  .green-section { padding: 24px 20px; }
  .health-layout { flex-direction: column; gap: 32px; }
  .health-layout .cert-img-wrap { width: 100%; }
  .footer-contact { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px 40px; }
  .footer-contact-btns { align-items: flex-start; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px; }
  .footer-bottom { padding: 0 20px; }

  .hero-swiper { min-height: 400px; }
  .slide-content { padding: 80px 24px; }
  .slide-h1 { font-size: 24px; }
  .slide-btns .btn { padding: 9px 14px; font-size: 12px; white-space: nowrap; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 0; }
  .feature-card::after { top: auto; bottom: 0; right: 0; width: 100%; height: 1px; }
  .feature-card:first-child { padding-top: 0; }
  .feature-card:last-child { padding-bottom: 0; }
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row-img { height: 240px; }
  .service-row-body { padding: 32px 24px; }
  .service-row-name { font-size: 15px; }
  .top-news-entry { grid-template-columns: 1fr; gap: 2px; }
  .top-news-date { padding-top: 0; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); width: 100%; max-width: 360px; }
  .page-hero-stat { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 12px 16px; }
  .page-hero-stat:nth-child(2) { border-right: none; }
  .page-hero-stat:nth-child(3), .page-hero-stat:nth-child(4) { border-bottom: none; }
  .page-hero-stat:nth-child(4) { border-right: none; }
  .section { padding: 60px 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-block { grid-template-columns: 1fr; }
  .location-img { height: 260px; }
  .location-body { padding: 36px 28px; }
  .reason-row { grid-template-columns: 1fr; }
  .reason-row--reverse { direction: ltr; }
  .reason-img { height: 220px; }
  .reason-body { padding: 28px 24px; }
  .service-item, .service-item.reverse { grid-template-columns: 1fr; }
  .service-img { height: 220px; }
  .service-item.reverse .service-body { order: 0; }
  .service-body { padding: 28px 24px; }
  .works-service-list { grid-template-columns: 1fr; }
  .works-service-list .service-item { padding: 0 0 1px; margin-bottom: 24px; }
  .works-service-list .service-item::after { top: auto; bottom: 0; width: 100%; height: 1px; }
  .works-service-list .service-item:last-child::after { display: none; }
  .works-service-list .service-item:last-child { margin-bottom: 0; padding-bottom: 0; }
  .works-service-list .service-body { padding: 16px 0 20px; }
  .effort-banner { padding: 48px 20px; }
  .effort-banner-inner { grid-template-columns: 1fr; gap: 24px; }
  .effort-banner-btns { align-items: flex-start; }
  .cta-section { padding: 56px 20px; }
  .message-photo img { aspect-ratio: 3/4; }
  .message-photo-caption { font-size: 11px; }
  .profile-table th { width: 110px; padding: 14px 12px; font-size: 12px; }
  .profile-table td { padding: 14px 16px; font-size: 13px; }
  .history-list::before { left: 88px; }
  .history-item::after { left: 82px; }
  .history-year { width: 88px; font-size: 11px; }
  .history-content { padding-left: 36px; font-size: 13px; }
  .access-grid { grid-template-columns: 1fr; }
  .intro-block { grid-template-columns: 1fr; }
  .intro-img { height: 260px; }
  .intro-img img { height: 260px; }
  .intro-body { padding: 36px 28px; }
  .intro-body::after { display: none; }
  .ud-block { grid-template-columns: 1fr; }
  .ud-img { height: 220px; }
  .ud-body { padding: 36px 28px; }
  .factory-grid { grid-template-columns: 1fr; gap: 24px; }
  .eco-grid { grid-template-columns: 1fr; gap: 24px; }
  .design-block { grid-template-columns: 1fr; }
  .design-img { height: 260px; }
  .design-body { padding: 36px 28px; }
  .sample-block { grid-template-columns: 1fr; }
  .sample-img { height: 260px; }
  .sample-body { padding: 36px 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .works-grid { grid-template-columns: 1fr; gap: 24px; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; gap: 24px; }
  .effort-grid { grid-template-columns: 1fr; gap: 24px; }
  .message-block { grid-template-columns: 1fr; }
  .message-photo { flex-direction: row; align-items: center; gap: 16px; }
  .message-photo img { width: 100px; aspect-ratio: 3/4; }
  .footer-nav { grid-template-columns: 1fr; }
}
/* ============================================================
   ニュース カテゴリータブ
   ============================================================ */
.news-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.news-cat-tab {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.news-cat-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.news-cat-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
@media (max-width: 768px) {
  .news-category-tabs {
    gap: 6px;
    margin-bottom: 28px;
  }
  .news-cat-tab {
    font-size: 12px;
    padding: 7px 14px;
  }
}

/* ============================================================
   設備紹介 イントロセクション
   ============================================================ */
.equip-intro {
  margin-bottom: 0;
  padding-bottom: 0;
}.equip-intro-head {
  text-align: left;
  margin-bottom: 48px;
}
.equip-intro-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--navy-light);
  padding-bottom: 2px;
  margin-bottom: 14px;
}
.equip-intro-divider {
  width: 36px;
  height: 2px;
  background: var(--beige-mid);
  display: block;
  margin: 0 0 14px;
}
.equip-intro-lead {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: 720px;
  margin: 0;
}
.equip-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.equip-feature-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 0;
  overflow: hidden;
}
.equip-feature-img {
  width: 200px;
  min-height: 160px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
}
.equip-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.equip-feature-body {
  padding: 24px;
  flex: 1;
}
.equip-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  padding-left: 12px;
  border-left: 3px solid var(--beige-mid);
}
.equip-feature-text {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.95;
}
.equip-divider {
  height: 1px;
  background: var(--gray-border);
  margin-bottom: 64px;
  display: none;
}
@media (max-width: 900px) {
  .equip-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .equip-feature-card {
    flex-direction: column;
  }
  .equip-feature-img {
    width: 100%;
    height: 200px;
  }
  .equip-feature-body {
    padding: 20px;
  }
  .equip-intro-lead {
    font-size: 18px;
  }
}

/* ============================================================
   設備カード一覧ラップ（alt背景）
   ============================================================ */
.equip-cards-wrap {
  background: var(--off-white);
  padding: 72px 40px 96px;
  border-top: 1px solid var(--gray-border);
}
.equip-cards-wrap .main-inner {
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .equip-cards-wrap {
    padding: 48px 20px 72px;
  }
}





/* ============================================================
   設備紹介ページ専用 main-wrap 下余白調整
   ============================================================ */
.main-wrap--equip {
  padding-bottom: 48px;
}

/* ============================================================
   製品ページ リード文
   ============================================================ */
.works-lead-text {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 56px;
  display: block;
}

/* ============================================================
   TOPページ専用 セクション幅
   ============================================================ */
.section-top {
  padding: 88px 5%;
}
.section-inner--top {
  max-width: 100%;
}
@media (max-width: 768px) {
  .section-top {
    padding: 60px 5%;
  }
}

/* ============================================================
   TOPページ 選ばれる理由 横並び行レイアウト
   ============================================================ */
.why-list {
  border-top: 1px solid var(--gray-border);
}
.why-row {
  border-bottom: 1px solid var(--gray-border);
}
.why-inner {
  display: grid;
  grid-template-columns: 280px 1fr 400px;
  gap: 48px;
  align-items: center;
  padding: 48px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.why-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.why-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-light);
  font-family: var(--sans);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.why-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.why-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 2;
}
.why-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 0;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .why-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  .why-img {
    aspect-ratio: 2 / 1;
  }
}

/* ============================================================
   スマホ時フォントサイズ調整
   ============================================================ */
@media (max-width: 768px) {
  .sec-desc,
  .feature-text,
  .reason-text,
  .service-desc,
  .service-row-desc,
  .eco-text,
  .factory-text,
  .design-text,
  .sample-text,
  .location-text,
  .intro-text,
  .intro-body .intro-text,
  .ud-text,
  .bcp-card-text,
  .navy-section-text,
  .sdgs-card-desc,
  .sdgs-list li,
  .fsc-list li,
  .ink-list li,
  .ink-summary,
  .health-text p,
  .health-about-text,
  .privacy-text,
  .privacy-list li,
  .history-content,
  .message-text,
  .equip-feature-text,
  .effort-desc,
  .cta-desc { font-size: 14px; }

  .feature-title,
  .reason-title,
  .factory-title,
  .eco-title,
  .bcp-card-title,
  .navy-section-title,
  .green-section-title,
  .privacy-section-title,
  .equip-feature-title,
  .effort-name,
  .service-card-name,
  .access-card-name,
  .work-name,
  .product-name { font-size: 15px; }

  .work-desc,
  .product-desc,
  .service-card-desc,
  .effort-desc,
  .bcp-card-text { font-size: 13px; }
}

@media (max-width: 768px) {
  .sec-title { font-size: 20px; }
  .service-name { font-size: 18px; }
  .reason-title { font-size: 17px; }
  .design-title { font-size: 18px; }
  .sample-title { font-size: 18px; }
  .location-title { font-size: 18px; }
  .ud-title { font-size: 18px; }
  .intro-lead { font-size: 17px; }
  .cta-title { font-size: 20px; }
  .equip-intro-lead { font-size: 17px; }
}

@media (max-width: 768px) {
  .works-lead-text { font-size: 18px; }
  .work-cta-title { font-size: 15px; }
}

/* ============================================================
   企業理念セクション
   ============================================================ */
.philosophy-lead {
  margin-bottom: 48px;
}
.philosophy-catch {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.philosophy-sub {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.9;
}
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.philosophy-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-border);
}
.philosophy-item:first-child {
  border-top: 1px solid var(--gray-border);
}
.philosophy-item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.philosophy-ja {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  position: relative;
  display: inline;
  background-image: linear-gradient(rgba(232, 205, 169, 0.45), rgba(232, 205, 169, 0.45));
  background-repeat: no-repeat;
  background-size: 0% 40%;
  background-position: 0% 90%;
  transition: background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.philosophy-ja.highlight {
  background-size: 100% 40%;
}
.philosophy-en {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--navy-light);
  padding: 3px 10px;
  border-radius: 2px;
}
.philosophy-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.philosophy-text {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 2;
}
@media (max-width: 768px) {
  .philosophy-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .philosophy-catch {
    font-size: 20px;
  }
}

/* ============================================================
   ワークフローページ
   ============================================================ */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
}
.workflow-step {
  position: relative;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-border);
}
.workflow-step:first-child {
  border-top: 1px solid var(--gray-border);
}
.workflow-step-num {
  font-size: 80px;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
  position: absolute;
  top: 48px;
  left: 0;
  font-family: var(--sans);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.workflow-step-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-left: 60px;
}
.workflow-step-body--reverse {
  direction: rtl;
}
.workflow-step-body--reverse > * {
  direction: ltr;
}
.workflow-step-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
}
.workflow-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workflow-step-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.workflow-step-lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--beige-mid);
}
.workflow-step-text {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 2;
}
.workflow-cta {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .workflow-step {
    padding: 48px 0;
  }
  .workflow-step-num {
    font-size: 56px;
    top: 32px;
  }
  .workflow-step-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 44px;
    direction: ltr;
  }
  .workflow-step-body--reverse {
    direction: ltr;
  }
  .workflow-step-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .top-news-title { font-size: 14px; }
}

/* stats-leadタイトル */
.stats-lead { text-align: center; margin-bottom: 32px; }
.stats-lead-title { font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--white); letter-spacing: 0.04em; margin-top: 8px; }

/* セクションタイトル キャッチコピースタイル */
.sec-title--catch {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.catch-accent { color: var(--black); }
.catch-highlight {
  background-image: linear-gradient(rgba(232, 205, 169, 0.45), rgba(232, 205, 169, 0.45));
  background-repeat: no-repeat;
  background-size: 0% 40%;
  background-position: 0% 90%;
  transition: background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.catch-highlight.highlight {
  background-size: 100% 40%;
}

/* フェードインアニメーション */
.fade-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-init.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* カード単位：速めのスライドインは削除 */

@media (max-width: 900px) {
  .effort-strip-inner.fade-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.effort-icon { background: none; padding: 0; }
.effort-icon-img { width: 100%; height: 160px; object-fit: cover; display: block; }
/* ===== RECRUIT ===== */
.recruit-wrap { display: flex; min-height: 100vh; }

/* ===== LEFT SIDEBAR ===== */
.recruit-sidebar { width: 200px; flex-shrink: 0; position: fixed; top: 0; left: 0; height: 100dvh; background: var(--navy-dark); display: flex; flex-direction: column; z-index: 700; overflow-y: auto; }
.recruit-sidebar-logo { padding: 24px 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.recruit-sidebar-logo-main { font-size: 14px; font-weight: 900; color: var(--white); line-height: 1.3; }
.recruit-sidebar-logo-sub { font-size: 9px; color: var(--beige); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
.recruit-nav { padding: 16px 0; flex: 1; }
.recruit-nav-item { display: block; padding: 12px 20px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.2s; cursor: pointer; display: flex; align-items: center; gap: 10px; border-left: 3px solid transparent; }
.recruit-nav-item:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.recruit-nav-item.active { color: var(--white); background: rgba(255,255,255,0.08); border-left-color: var(--beige); font-weight: 700; }
.recruit-nav-icon { font-size: 16px; opacity: 0.5; width: 14px; text-align: center; }
.recruit-nav-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 12px 20px; }
.recruit-nav-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 8px 20px 4px; }
.recruit-sidebar-btns { padding: 16px 14px 24px; display: flex; flex-direction: column; gap: 8px; }
.recruit-sidebar-btn { display: block; padding: 11px 14px; font-size: 12px; font-weight: 700; text-align: center; text-decoration: none; border-radius: 0; transition: all 0.2s; letter-spacing: 0.04em; }
.recruit-sidebar-btn-entry { background: var(--beige); color: var(--navy-dark); }
.recruit-sidebar-btn-entry:hover { background: var(--beige-mid); }
.recruit-sidebar-btn-contact { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.recruit-sidebar-btn-contact:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ===== MAIN CONTENT ===== */
.recruit-main { margin-left: 200px; flex: 1; }

/* ===== SECTION COMMON ===== */
.recruit-section { padding: 96px 72px; }
.recruit-section:nth-child(even) { background: var(--off-white); }
.recruit-section-head { margin-bottom: 56px; }
.recruit-section-label { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy-light); border-bottom: 1px solid var(--navy-light); padding-bottom: 2px; margin-bottom: 10px; }
.recruit-section-title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 600; color: var(--black); line-height: 1.4; letter-spacing: 0.04em; margin-bottom: 12px; }
.recruit-section-desc { font-size: 15px; color: var(--gray-text); line-height: 1.95; max-width: 600px; }

/* ===== HERO ===== */
.recruit-hero-section { position: relative; height: 480px; overflow: hidden; display: flex; align-items: flex-end; }
.recruit-hero-bg {  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;}
.recruit-hero-bg.loaded { transform: scale(1); }
.recruit-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,28,50,0.9) 0%, rgba(15,28,50,0.5) 50%, rgba(15,28,50,0.1) 100%); }
.recruit-hero-content { position: relative; z-index: 2; padding: 72px 72px; width: 100%; }
.recruit-hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 16px; }
.recruit-hero-badge::before { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.5); }
.recruit-hero-title { font-size: clamp(28px, 3.5vw, 52px); font-weight: 300; color: var(--white); line-height: 1.4; letter-spacing: 0.08em; margin-bottom: 16px; }
.recruit-hero-title .accent { font-weight: 900; color: var(--beige); }
.recruit-hero-lead { font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; margin-bottom: 32px; line-height: 1.8; max-width: 480px; }
.recruit-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.recruit-hero-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--beige); color: var(--navy-dark); font-size: 13px; font-weight: 700; padding: 13px 28px; border-radius: 0; text-decoration: none; transition: all 0.2s; letter-spacing: 0.06em; }
.recruit-hero-btn-primary:hover { background: var(--beige-mid); transform: translateY(-2px); }
.recruit-hero-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600; padding: 13px 28px; border-radius: 0; border: 1px solid rgba(255,255,255,0.3); text-decoration: none; transition: all 0.2s; }
.recruit-hero-btn-secondary:hover { background: rgba(255,255,255,0.1); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== MARQUEE ===== */
.recruit-marquee-section { padding: 0; overflow: hidden; background: var(--white); }
.recruit-marquee-row { overflow: hidden; }
.recruit-marquee-inner { display: flex; gap: 16px; animation: marquee 18s linear infinite; padding: 40px 0; }
.recruit-marquee-inner:hover { animation-play-state: paused; }
.recruit-marquee-img { flex-shrink: 0; width: 650px; height: 550px; overflow: hidden; border-radius: 0; }
.recruit-marquee-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== QUICK FACTS ===== */
.recruit-facts { padding: 48px 72px 96px; background: var(--white); }
.recruit-about-block { border-top: 1px solid var(--gray-border); padding: 48px 0; }
.recruit-about-block:last-child { border-bottom: 1px solid var(--gray-border); }
.recruit-about-q { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 28px; letter-spacing: 0.03em; display: flex; align-items: center; gap: 10px; }
.recruit-about-q::before { content: ''; display: block; width: 4px; height: 22px; background: var(--beige-mid); border-radius: 2px; flex-shrink: 0; }
.recruit-about-body { padding-left: 14px; }
.recruit-about-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; background: var(--white); border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; }
.recruit-about-table th { width: 180px; padding: 12px 16px; background: var(--white); font-size: 13px; font-weight: 700; color: var(--navy); text-align: left; border-bottom: 1px solid var(--gray-border); vertical-align: top; border-right: 2px solid var(--gray-border); }
.recruit-about-table td { padding: 12px 16px; font-size: 13px; color: var(--dark); border-bottom: 1px solid var(--gray-border); line-height: 1.8; }
.recruit-about-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.recruit-about-service { background: var(--off-white); border-radius: 0; padding: 24px; }
.recruit-about-service-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--beige-mid); }
.recruit-about-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.recruit-about-list li { font-size: 13px; color: var(--dark); line-height: 1.7; padding-left: 16px; position: relative; }
.recruit-about-list li::before { content: '›'; position: absolute; left: 0; color: var(--navy-light); font-weight: 700; }
.recruit-intro-text { font-size: 15px; color: var(--dark); line-height: 2; margin-bottom: 16px; }
.recruit-fact { background: var(--white); padding: 36px 40px; display: flex; align-items: flex-start; gap: 20px; }
.recruit-fact-num { font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -0.02em; flex-shrink: 0; }
.recruit-fact-num small { font-size: 0.4em; font-weight: 700; }
.recruit-fact-body { padding-top: 8px; }
.recruit-fact-label { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.recruit-fact-desc { font-size: 12px; color: var(--gray-text); line-height: 1.8; }

/* ===== PANELS ===== */
.recruit-panel { position: relative; height: 560px; overflow: hidden; display: flex; align-items: center; }
.recruit-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 8s ease; }
.recruit-panel:hover .recruit-panel-bg { transform: scale(1); }
.recruit-panel-overlay--left { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,28,50,0.92) 0%, rgba(15,28,50,0.75) 45%, rgba(15,28,50,0.1) 100%); }
.recruit-panel-overlay--right { position: absolute; inset: 0; background: linear-gradient(to left, rgba(15,28,50,0.92) 0%, rgba(15,28,50,0.75) 45%, rgba(15,28,50,0.1) 100%); }
.recruit-panel-inner { position: relative; z-index: 2; width: 100%; padding: 0 72px; }
.recruit-panel-inner--right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.recruit-panel-num { font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; display: block; margin-bottom: -24px; letter-spacing: -0.04em; }
.recruit-panel-title { font-size: clamp(24px, 2.5vw, 38px); font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 24px; }
.recruit-panel-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 2; max-width: 460px; }

/* ===== GALLERY ===== */
.recruit-gallery { padding: 96px 72px; background: var(--white); }
.recruit-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 48px; }
.recruit-gallery-item { overflow: hidden; border-radius: 2px; aspect-ratio: 4/3; }
.recruit-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.recruit-gallery-item:hover img { transform: scale(1.05); }

/* ===== NUMBERS ===== */
.recruit-numbers-section { background: var(--navy-dark); padding: 80px 72px; }
.recruit-numbers-title { font-size: clamp(22px, 2.5vw, 36px); font-weight: 600; color: var(--white); margin-bottom: 56px; letter-spacing: 0.04em; }
.recruit-stats { display: flex; gap: 0; }
.recruit-stat { flex: 1; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.recruit-stat:last-child { border-right: none; }
.recruit-stat-num { display: block; font-size: clamp(40px, 4vw, 60px); font-weight: 900; color: var(--beige); line-height: 1; margin-bottom: 12px; }
.recruit-stat-num small { font-size: 0.45em; }
.recruit-stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }

/* ===== JOBS ===== */
.recruit-jobs-section { padding: 96px 72px; background: var(--off-white); }
.recruit-jobs-box { border: 2px dashed var(--gray-border); border-radius: 0; padding: 56px 40px; text-align: center; margin-bottom: 40px; background: var(--white); }
.recruit-jobs-empty-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.recruit-jobs-empty-text { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.recruit-jobs-empty-sub { font-size: 13px; color: var(--gray-text); }
.recruit-contact-box { background: var(--navy); border-radius: 0; padding: 48px; text-align: center; }
.recruit-contact-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige); opacity: 0.8; margin-bottom: 12px; display: block; }
.recruit-contact-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }
.recruit-contact-btn { display: inline-flex; align-items: center; background: var(--beige); color: var(--navy-dark); font-size: 14px; font-weight: 700; padding: 14px 36px; border-radius: 0; text-decoration: none; transition: all 0.2s; }
.recruit-contact-btn:hover { background: var(--beige-mid); transform: translateY(-1px); }

/* ===== NEWS ===== */
.recruit-news-section { padding: 96px 72px; background: var(--white); }
.recruit-news-list { display: flex; flex-direction: column; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; margin-top: 40px; }
.recruit-news-item { display: flex; align-items: center; gap: 24px; padding: 20px 28px; border-bottom: 1px solid var(--gray-border); text-decoration: none; transition: background 0.15s; background: var(--white); }
.recruit-news-item:last-child { border-bottom: none; }
.recruit-news-item:hover { background: var(--off-white); }
.recruit-news-date { font-size: 12px; color: var(--gray-text); white-space: nowrap; flex-shrink: 0; }
.recruit-news-text { font-size: 14px; color: var(--black); font-weight: 500; flex: 1; }
.recruit-news-more { font-size: 11px; font-weight: 700; color: var(--navy-light); white-space: nowrap; }

/* ===== ACCESS ===== */
.recruit-access-section { padding: 96px 72px; background: var(--off-white); }
.recruit-access-grid { display: flex; gap: 48px; align-items: flex-start; margin-top: 40px; }
.recruit-access-info { flex: 1; }
.recruit-access-dl { display: flex; flex-direction: column; }
.recruit-access-row { display: flex; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--gray-border); font-size: 13px; }
.recruit-access-row:first-child { border-top: 1px solid var(--gray-border); }
.recruit-access-row dt { font-weight: 700; color: var(--navy); min-width: 80px; flex-shrink: 0; }
.recruit-access-row dd { color: var(--dark); line-height: 1.8; }
.recruit-access-row dd a { color: var(--navy); text-decoration: none; }
.recruit-access-map { flex-shrink: 0; width: 440px; height: 300px; border-radius: 0; overflow: hidden; border: 1px solid var(--gray-border); }

/* ===== FAQ ===== */
.recruit-faq-section { padding: 96px 72px; background: var(--white); }

/* ===== ENTRY ===== */
.recruit-entry-section { padding: 96px 72px; background: var(--navy-dark); }
.recruit-entry-section .recruit-section-label { color: var(--beige); border-color: rgba(232,205,169,0.4); }
.recruit-entry-section .recruit-section-title { color: var(--white); }
.recruit-entry-section .recruit-section-desc { color: rgba(255,255,255,0.6); }
.recruit-entry-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.recruit-entry-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--beige); color: var(--navy-dark); font-size: 15px; font-weight: 700; padding: 18px 40px; border-radius: 0; text-decoration: none; transition: all 0.2s; letter-spacing: 0.06em; }
.recruit-entry-btn-primary:hover { background: var(--beige-mid); transform: translateY(-2px); }
.recruit-entry-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 600; padding: 18px 40px; border-radius: 0; border: 1px solid rgba(255,255,255,0.25); text-decoration: none; transition: all 0.2s; }
.recruit-entry-btn-secondary:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ===== RECRUIT HAMBURGER (mobile only) ===== */
.recruit-hamburger { display: none; position: fixed; top: 16px; right: 16px; z-index: 800; width: 44px; height: 44px; background: var(--navy-dark); border: none; border-radius: 0; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.recruit-hamburger span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.recruit-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.recruit-hamburger.open span:nth-child(2) { opacity: 0; }
.recruit-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.recruit-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 650; }
.recruit-sidebar-overlay.open { display: block; }

@media (max-width: 900px) {
  .recruit-hamburger { display: flex; }
  .recruit-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; display: flex; overflow-y: auto; max-height: 100dvh; }
  .recruit-sidebar.open { transform: translateX(0); }
  .recruit-main { margin-left: 0; }
  .recruit-hero-section { height: 400px; }
  .recruit-hero-content { padding: 32px 24px; }
  .recruit-facts { padding: 64px 24px; }
  .recruit-facts-grid { grid-template-columns: 1fr; }
  .recruit-about-services { grid-template-columns: 1fr; }
  .recruit-about-table th { width: 120px; }
  .recruit-about-q { font-size: 15px; margin-bottom: 16px; }
  .recruit-panel { height: 400px; }
  .recruit-panel-inner { padding: 0 24px; }
  .recruit-panel-inner--right { align-items: flex-start; text-align: left; }
  .recruit-gallery { padding: 64px 24px; }
  .recruit-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .recruit-numbers-section { padding: 56px 24px; }
  .recruit-stats { flex-wrap: wrap; }
  .recruit-stat { flex: 1 1 45%; }
  .recruit-jobs-section, .recruit-news-section, .recruit-access-section, .recruit-faq-section, .recruit-entry-section { padding: 64px 24px; }
  .recruit-access-grid { flex-direction: column; }
  .recruit-access-map { width: 100%; height: 240px; }
  .recruit-marquee-img { width: 400px; height: 300px; }
}
/* ===== WORKS STAGGER GRID ===== */
.works-stagger-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.works-stagger-col { display: flex; flex-direction: column; gap: 32px; }
.works-stagger-col--right { margin-top: 80px; }
.works-stagger-grid .service-item { display: flex; flex-direction: column; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); transition: box-shadow 0.25s, transform 0.25s, opacity 0.7s ease; text-decoration: none; color: inherit; padding: 0; }
.works-stagger-grid .service-item:hover { box-shadow: 0 8px 32px rgba(40,75,125,0.1); transform: translateY(-2px); }
.works-stagger-grid .service-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform 0.6s; }
.works-stagger-grid .service-item:hover .service-img img { transform: scale(1.04); }
.works-stagger-grid .service-body { padding: 20px 24px 28px; }
.works-stagger-grid .service-num { font-size: 11px; color: var(--gray-text); letter-spacing: 0.2em; margin-bottom: 10px; }
.works-stagger-grid .service-name { font-size: clamp(18px, 1.8vw, 22px); margin-bottom: 12px; }
.works-stagger-grid .service-desc { font-size: 14px; margin-bottom: 16px; color: var(--mid-gray); line-height: 1.8; }
.works-stagger-grid .service-link { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; }
.works-stagger-grid .service-item-header { display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-bottom: 1px solid var(--gray-border); background: var(--white); }
.works-stagger-grid .service-item-header::before { content: ''; display: block; width: 3px; height: 14px; background: var(--beige-mid); border-radius: 2px; flex-shrink: 0; }
.works-stagger-grid .service-item-header .service-num { font-size: 13px; font-weight: 700; color: var(--gray-text); letter-spacing: 0.12em; margin-bottom: 0; }
.works-stagger-grid .service-item-header .service-num-label { color: var(--gray-text); }
.works-stagger-grid .service-item-header-divider { width: 1px; height: 12px; background: var(--gray-border); flex-shrink: 0; }
.works-stagger-grid .service-item-header .service-en { margin-bottom: 0; font-size: 13px; font-weight: 700; color: var(--gray-text); letter-spacing: 0.12em; border-bottom: none; padding-bottom: 0; }
@media (max-width: 768px) {
  .works-stagger-grid { grid-template-columns: 1fr; }
  .works-stagger-col--right { margin-top: 0; }
}

/* ===== WORKS CATEGORY NAV ===== */
.works-category-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-border); display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.works-category-nav-label { font-size: 11px; font-weight: 600; color: var(--gray-text); letter-spacing: 0.12em; white-space: nowrap; }
.works-category-nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.works-category-nav-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--navy); text-decoration: none; padding: 8px 16px; border: 1px solid var(--gray-border); border-radius: 2px; transition: background 0.15s, border-color 0.15s; background: var(--white); }
.works-category-nav-link:hover { background: var(--off-white); border-color: var(--navy); }
.works-category-nav-link span { font-size: 11px; opacity: 0.6; }
@media (max-width: 768px) { .works-category-nav { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ===== WORKS STATS ===== */
.works-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 56px; border: 1px solid var(--gray-border); border-radius: 0; overflow: hidden; background: var(--white); }
.works-stat-item { padding: 24px 20px; text-align: center; border-right: 1px solid var(--gray-border); background: var(--white); }
.works-stat-item:last-child { border-right: none; }
.works-stat-num { font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.works-stat-num span { font-size: 0.45em; font-weight: 500; color: var(--navy-light); margin-left: 2px; }
.works-stat-label { font-size: 11px; color: var(--gray-text); letter-spacing: 0.06em; }

/* ===== WORKS BADGE ===== */
.works-badge-row { margin-bottom: 32px; }
.works-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 2px; letter-spacing: 0.04em; }
.works-badge::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--beige); border-radius: 50%; }

@media (max-width: 768px) {
  .works-stats { grid-template-columns: repeat(2, 1fr); }
  .works-stat-item:nth-child(2) { border-right: none; }
  .works-stat-item:nth-child(3) { border-top: 1px solid var(--gray-border); }
  .works-stat-item:nth-child(4) { border-top: 1px solid var(--gray-border); border-right: none; }
}

/* ===== WORKS VOICE ===== */
.works-voice { background: var(--off-white); padding: 64px 0; margin-top: 56px; }
.works-voice-head { margin-bottom: 40px; }
.works-voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.works-voice-card { background: var(--white); border-radius: 0; padding: 32px 28px; border: 1px solid var(--gray-border); position: relative; display: flex; flex-direction: column; gap: 20px; }
.works-voice-card::before { content: '\201C'; font-size: 64px; color: var(--beige-mid); line-height: 1; position: absolute; top: 16px; left: 20px; font-family: Georgia, serif; }
.works-voice-text { font-size: 14px; color: var(--dark); line-height: 1.9; padding-top: 5px; }
.works-voice-title { font-size: 16px; font-weight: 600; color: var(--black); line-height: 1.5; margin-top: -8px; }
.works-voice-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.works-voice-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--off-white); border: 2px solid var(--gray-border); }
.works-voice-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.works-voice-info { display: flex; flex-direction: column; gap: 3px; }
.works-voice-company { font-size: 12px; font-weight: 600; color: var(--navy); }
.works-voice-role { font-size: 11px; color: var(--gray-text); }
.works-voice-tag { display: inline-block; background: var(--beige-light); color: var(--navy); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: 0.06em; width: fit-content; }

@media (max-width: 768px) {
  .works-voice-grid { grid-template-columns: 1fr; }
  .works-voice { padding: 48px 0; }
}


/* iPhone SEなど縦が低い端末向け調整 */
@media (max-width: 767px) {
  .hero-wrap {
    min-height: 0;
  }

  .slide-content {
    padding: 56px 20px;
  }
}

/* ===== SITE POPUP ===== */
#sitePopup { position:fixed; bottom:24px; right:24px; z-index:9999; width:300px; background:var(--white); box-shadow:0 8px 32px rgba(0,0,0,0.18); flex-direction:column; border-radius:10px; overflow:hidden; animation:popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }
#sitePopup .popup-img img:hover { transform:scale(1.03); }
#sitePopup .popup-body:hover .popup-body-text { color:#1d79bf; }
@keyframes popupIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@media (max-width: 768px) {
  #sitePopup { right:auto; left:50%; transform:translateX(-50%); bottom:16px; width:calc(100% - 32px); max-width:480px; border-radius:10px; animation:popupInMobile 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  @keyframes popupInMobile { from { opacity:0; transform:translateX(-50%) translateY(20px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
}