@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #222;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
table { border-collapse: collapse; }

/* ===== VARIABLES ===== */
:root {
  --green:       #2d7a4f;
  --green-dark:  #1f5e3a;
  --green-light: #e8f5ee;
  --navy:        #1b2e3c;
  --accent:      #e8980f;
  --accent-bg:   #fef3dc;
  --bg:          #f5f8f6;
  --white:       #fff;
  --text:        #222;
  --muted:       #6b7280;
  --border:      #cfddd6;
  --radius:      8px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --max-w:       1200px;
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 4px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-area .logo-sub { font-size: 12px; color: #555; letter-spacing:.05em; }
.logo-area .logo-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .1em;
  line-height: 1.2;
}
.logo-area .logo-catch { font-size: 12px; color: var(--green); font-weight: 500; }
.header-contact { text-align: right; font-size: 13px; color: var(--muted); line-height: 1.7; }
.header-contact a { color: var(--green); text-decoration: none; font-weight: 700; }
.header-contact .tel { font-size: 20px; font-weight: 900; display: block; color: var(--navy); }

/* ===== NAV ===== */
.site-nav { background: var(--navy); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; }
.nav-inner a { color: #e0e8e4; text-decoration: none; font-size: 14px; font-weight: 500; padding: 13px 20px; display: block; transition: background .18s; letter-spacing:.03em; }
.nav-inner a:hover, .nav-inner a.active { background: var(--green); color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px 20px; margin-left: auto; color: #fff; font-size: 20px; }
.nav-links { display: flex; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg,var(--green) 0%,var(--navy) 100%); color: #fff; padding: 52px 20px 44px; text-align: center; }
.page-hero .tag { display: inline-block; background: var(--accent); color: var(--navy); font-size: 12px; font-weight: 700; padding: 3px 14px; border-radius: 20px; letter-spacing:.1em; margin-bottom: 14px; }
.page-hero h1 { font-size: 2rem; font-weight: 900; line-height: 1.5; margin-bottom: 10px; }
.page-hero p { font-size: 15px; opacity: .9; max-width: 560px; margin: 0 auto; }

/* ===== MAIN ===== */
.site-main { max-width: var(--max-w); margin: 0 auto; padding: 0 32px 72px; }
.section { margin-top: 56px; }
.section-title { font-size: 1.4rem; font-weight: 700; color: var(--green); border-left: 5px solid var(--green); padding: 4px 0 4px 16px; margin-bottom: 24px; line-height: 1.4; }
.section-lead { font-size: 15px; color: var(--muted); margin-bottom: 24px; line-height: 1.9; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; }
.card .card-icon { font-size: 32px; margin-bottom: 10px; }
.card strong { display: block; font-size: 16px; color: var(--green); margin-bottom: 6px; font-weight: 700; }
.card p { font-size: 14px; color: var(--muted); }

/* ===== TABLE ===== */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { border: 1px solid var(--border); padding: 14px 18px; font-size: 15px; text-align: left; vertical-align: top; }
.info-table th { background: var(--green); color: #fff; width: 160px; font-weight: 700; white-space: nowrap; }
.info-table td { background: #fff; line-height: 1.85; }

/* ===== FLOW LIST ===== */
.flow-list { list-style: none; counter-reset: step; }
.flow-list li { counter-increment: step; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.flow-list li::before { content: counter(step); background: var(--green); color: #fff; border-radius: 50%; min-width: 36px; height: 36px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-list .step-title { font-weight: 700; font-size: 16px; display: block; margin-bottom: 4px; }
.flow-list .step-desc { font-size: 14px; color: var(--muted); }

/* ===== NOTE BOX ===== */
.note-box { background: var(--accent-bg); border-left: 4px solid var(--accent); padding: 14px 18px; border-radius: 0; font-size: 14px; color: #554400; margin-top: 14px; line-height: 1.9; }

/* ===== BUTTON ===== */
.btn { display: inline-block; background: var(--green); color: #fff; text-decoration: none; padding: 13px 30px; border-radius: 6px; font-weight: 700; font-size: 15px; letter-spacing:.05em; transition: background .2s; border: none; cursor: pointer; font-family: inherit; }
.btn:hover { background: var(--green-dark); }
.btn-full { display: block; width: 100%; text-align: center; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ===== FORM ===== */
.form-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.required-badge { display: inline-block; background: #c0392b; color: #fff; font-size: 11px; padding: 1px 7px; border-radius: 3px; margin-left: 6px; font-weight: 700; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 14px; border: 1px solid #b8cac0; border-radius: 5px; font-size: 15px; font-family: inherit; background: #fff; color: var(--text); transition: border-color .2s; -webkit-appearance: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,79,.14); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { 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='%232d7a4f' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.check-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.check-label { display: flex; align-items: center; gap: 6px; font-size: 15px; cursor: pointer; font-weight: 400; }
.check-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); }
.privacy-scroll { background: #fff; border: 1px solid var(--border); border-radius: 5px; padding: 14px 16px; font-size: 14px; color: var(--muted); max-height: 110px; overflow-y: auto; line-height: 1.75; }
.agree-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 15px; }
.agree-row input { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
#thanks-msg { display: none; text-align: center; padding: 48px 20px; }
#thanks-msg .thanks-icon { font-size: 52px; margin-bottom: 16px; }
#thanks-msg h4 { font-size: 22px; color: var(--green); margin-bottom: 10px; }
#thanks-msg p { font-size: 15px; color: var(--muted); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.checklist { list-style: none; }
.checklist li { padding: 6px 0 6px 28px; position: relative; font-size: 15px; }
.checklist li::before { content: '☑'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== JOB TABS ===== */
.job-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.job-tab { padding: 9px 18px; border: 2px solid var(--green); border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; background: #fff; color: var(--green); transition: all .2s; font-family: inherit; }
.job-tab.active, .job-tab:hover { background: var(--green); color: #fff; }
.job-panel { display: none; }
.job-panel.active { display: block; }
.job-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.job-card-head { background: linear-gradient(135deg,var(--green) 0%,var(--navy) 100%); color: #fff; padding: 22px 24px; }
.job-badge { display: inline-block; background: var(--accent); color: var(--navy); font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 20px; margin-bottom: 8px; }
.job-card-head h3 { font-size: 1.3rem; font-weight: 900; line-height: 1.4; }
.job-card-head .jcsub { font-size: 13px; opacity: .9; margin-top: 6px; }
.job-card-body { padding: 24px; }
.job-table { width: 100%; border-collapse: collapse; }
.job-table th, .job-table td { border: 1px solid var(--border); padding: 12px 16px; font-size: 15px; text-align: left; vertical-align: top; }
.job-table th { background: var(--green); color: #fff; width: 130px; font-weight: 700; white-space: nowrap; }
.job-table td { background: #fff; line-height: 1.8; }
.ibadge { display: inline-block; background: #fff3cd; color: #856404; border: 1px solid #ffc107; font-size: 12px; font-weight: 700; padding: 1px 8px; border-radius: 4px; margin-left: 6px; }

/* ===== POINT GRID ===== */
.point-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.point-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.point-card .p-icon { font-size: 30px; margin-bottom: 10px; }
.point-card strong { display: block; font-size: 15px; color: var(--green); margin-bottom: 6px; font-weight: 700; }
.point-card p { font-size: 14px; color: var(--muted); }

/* ===== SERVICE LIST ===== */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-box-head { background: var(--navy); color: #fff; padding: 10px 18px; font-size: 15px; font-weight: 700; }
.service-box ol { padding: 14px 18px 14px 36px; font-size: 15px; line-height: 2.1; }
.caution-list { list-style: none; font-size: 14px; color: #444; line-height: 2; }
.caution-list li { padding-left: 18px; position: relative; }
.caution-list li::before { content: '※'; position: absolute; left: 0; color: var(--muted); }

/* ===== SEO SECTION ===== */
.seo-section { background: var(--bg); border-radius: var(--radius); padding: 36px 32px; }
.seo-h { font-size: 1.2rem; font-weight: 700; color: var(--navy); text-align: center; margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.seo-h:first-child { margin-top: 0; }
.seo-p { font-size: 15px; line-height: 2; color: #333; }
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-top: 20px; }
.uc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.uc-head { background: var(--green); color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.uc-body { padding: 14px 16px; font-size: 14px; color: #444; line-height: 1.8; }
.uc-tag { display: inline-block; background: var(--accent-bg); color: #7a5500; border: 1px solid #e8c06a; font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 20px; margin-bottom: 8px; }
.merit-num-list { list-style: none; margin-top: 20px; }
.merit-num-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.merit-num-item:first-child { border-top: 1px solid var(--border); }
.mnum { background: var(--green); color: #fff; font-weight: 700; font-size: 14px; min-width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.merit-num-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.merit-num-item p { font-size: 15px; color: #444; line-height: 1.85; }

/* ===== FAQ ===== */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { padding: 18px 44px 18px 0; font-size: 16px; font-weight: 700; cursor: pointer; position: relative; display: flex; align-items: flex-start; gap: 12px; line-height: 1.55; }
.faq-q::after { content: '＋'; position: absolute; right: 0; top: 18px; color: var(--green); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-icon { color: var(--green); font-weight: 900; flex-shrink: 0; }
.faq-a { display: none; padding: 0 0 18px 28px; font-size: 15px; color: var(--muted); line-height: 1.85; }
.faq-item.open .faq-a { display: block; }

/* ===== DOWNLOAD ===== */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.dl-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.dl-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg); }
.dl-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.dl-badge { display: inline-block; font-size: 11px; background: var(--green-light); color: var(--green); border: 1px solid var(--border); padding: 2px 8px; border-radius: 20px; font-weight: 700; margin-bottom: 6px; }
.dl-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.dl-note { font-size: 13px; color: var(--muted); margin-bottom: 10px; flex: 1; }
.dl-btn { display: block; background: var(--green); color: #fff; text-align: center; padding: 10px; border-radius: 5px; font-weight: 700; font-size: 14px; text-decoration: none; transition: background .2s; }
.dl-btn:hover { background: var(--green-dark); }

/* ===== MOBILE NAV ===== */
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-inner a { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.07); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  body { font-size: 15px; }
  .site-main { padding: 0 16px 56px; }
  .header-inner { padding: 10px 16px; }
  .logo-area .logo-name { font-size: 22px; }
  .header-contact .tel { font-size: 16px; }
  .section-title { font-size: 1.2rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .info-table { display: block; overflow-x: auto; }
  .info-table th { width: 100px; }
  .service-grid { grid-template-columns: 1fr; }
  .job-table { display: block; overflow-x: auto; }
  .job-table th { width: 100px; }
  .seo-section { padding: 22px 16px; }
  .form-box { padding: 24px 16px; }
}


/* ===== CAREER TABLE ===== */
.career-table { font-size: 15px; line-height: 2; border-collapse: collapse; width: 100%; }
.career-table td { vertical-align: top; padding-bottom: 4px; }
.career-table .yr { white-space: nowrap; color: var(--green); font-weight: 700; padding-right: 12px; }

/* ===== PC 文字サイズ強化 ===== */
@media (min-width: 1024px) {
  body { font-size: 17px; line-height: 1.9; }
  .section-title { font-size: 1.6rem; }
  .section-lead { font-size: 16px; }
  .page-hero h1 { font-size: 2.4rem; }
  .page-hero p { font-size: 16px; }
  .faq-q { font-size: 17px; }
  .faq-a { font-size: 16px; }
  .info-table th, .info-table td { font-size: 16px; padding: 15px 20px; }
  .job-table th, .job-table td { font-size: 16px; padding: 13px 18px; }
  .merit-num-item h4 { font-size: 17px; }
  .merit-num-item p { font-size: 16px; }
  .seo-p { font-size: 16px; }
  .seo-h { font-size: 1.3rem; }
  .card strong { font-size: 17px; }
  .card p { font-size: 15px; }
  .checklist li { font-size: 16px; }
  .caution-list li { font-size: 15px; }
  .note-box { font-size: 15px; }
  .dl-title { font-size: 16px; }
  .service-box ol { font-size: 16px; }
  .career-table { font-size: 16px; }
  .flow-list .step-title { font-size: 17px; }
  .flow-list .step-desc { font-size: 15px; }
  .logo-area .logo-name { font-size: 32px; }
  .header-contact .tel { font-size: 22px; }
  .nav-inner a { font-size: 15px; }
  .site-main { padding: 0 48px 80px; }
  .header-inner { padding: 14px 48px; }
}

@media (min-width: 1440px) {
  body { font-size: 18px; }
  .site-main { max-width: 1360px; padding: 0 60px 80px; }
  .header-inner { max-width: 1360px; padding: 14px 60px; }
  .nav-inner { max-width: 1360px; }
}

/* ===== フッター改善（視認性アップ） ===== */
.site-footer {
  background: var(--navy) !important;
  color: #d0e4da !important;
  font-size: 15px !important;
  line-height: 2.2 !important;
}
.footer-logo { color: #fff !important; font-size: 26px !important; margin-bottom: 10px !important; }
.site-footer a { color: #90d4b0 !important; text-decoration: none !important; font-weight: 500 !important; }
.site-footer a:hover { text-decoration: underline !important; color: #fff !important; }
.footer-copy { color: #88a898 !important; font-size: 13px !important; margin-top: 24px !important; }

/* ===== 本文文字サイズ 大幅拡大 ===== */
@media (min-width: 1024px) {
  body { font-size: 20px !important; line-height: 2 !important; }
  .section-lead { font-size: 19px !important; }
  .merit-list li { font-size: 19px !important; }
  .str-body p { font-size: 19px !important; }
  .faq-q { font-size: 19px !important; }
  .faq-a { font-size: 18px !important; }
  .info-table th, .info-table td { font-size: 18px !important; padding: 16px 22px !important; }
  .job-table th, .job-table td { font-size: 18px !important; padding: 14px 20px !important; }
  .merit-num-item p { font-size: 18px !important; }
  .seo-p { font-size: 18px !important; }
  .card strong { font-size: 18px !important; }
  .card p { font-size: 17px !important; }
  .checklist li { font-size: 19px !important; }
  .caution-list li { font-size: 17px !important; }
  .note-box { font-size: 17px !important; }
  .dl-title { font-size: 18px !important; }
  .dl-note { font-size: 16px !important; }
  .service-box ol { font-size: 18px !important; line-height: 2.3 !important; }
  .career-table { font-size: 18px !important; }
  .flow-list .step-desc { font-size: 17px !important; }
  .point-card p { font-size: 17px !important; }
  .point-card strong { font-size: 18px !important; }
  .uc-body { font-size: 17px !important; }
  .voice-box { font-size: 15px !important; }
  .case-body p { font-size: 15px !important; }
  .section-title { font-size: 1.8rem !important; }
  .seo-h { font-size: 1.5rem !important; }
  .site-footer { font-size: 17px !important; }
  .footer-logo { font-size: 30px !important; }
  .footer-copy { font-size: 14px !important; }
  p { font-size: 20px; }
}

@media (min-width: 1440px) {
  body { font-size: 21px !important; }
  .faq-q { font-size: 20px !important; }
  .faq-a { font-size: 19px !important; }
  .info-table th, .info-table td { font-size: 19px !important; }
  .merit-list li { font-size: 20px !important; }
  p { font-size: 21px; }
}

/* ===== 動画：黒帯なし・縦幅確保 ===== */


#soundBtn {
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%,-50%) !important;
  background: rgba(0,0,0,.7) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.8) !important;
  padding: 14px 28px !important;
  border-radius: 30px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  font-family: inherit !important;
  white-space: nowrap !important;
}
#soundBtn.hidden { display: none !important; }

/* ===== CTAバナー：薄緑（全ページ統一） ===== */






/* ===== 3つの強み：中見出し大きく ===== */
.str-body h4 { font-size: 1.25rem !important; font-weight: 700 !important; }
@media (min-width: 1024px) {
  .str-body h4 { font-size: 1.4rem !important; }
  .str-body p { font-size: 18px !important; }
}

/* ===== 代表メッセージ文字大きく ===== */
.company-msg { font-size: 18px !important; line-height: 2.1 !important; }
@media (min-width: 1024px) {
  .company-msg { font-size: 19px !important; }
}

/* ===== CTAバナー：薄緑（全ページ統一） ===== */
.cta-section { background: #e8f5ee !important; color: var(--navy) !important; border-top: 2px solid #a8d9b8 !important; margin-top: 60px !important; padding: 56px 20px !important; }
.cta-section h2 { color: var(--navy) !important; font-size: 1.8rem !important; }
.cta-section p { color: #3a5a4a !important; opacity: 1 !important; font-size: 16px !important; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.cta-btn-w { background: var(--green) !important; color: #fff !important; display: inline-block; padding: 14px 30px; border-radius: 6px; font-weight: 700 !important; font-size: 16px; text-decoration: none; }
.cta-btn-w:hover { background: var(--green-dark) !important; }

/* ===== 採用：文字サイズ統一 ===== */
.flow-list .step-title { font-size: 1.1rem; font-weight: 700; }
.flow-list .step-desc { font-size: 16px; }
.point-card strong { font-size: 17px; font-weight: 700; }
.point-card p { font-size: 15px; }
@media (min-width: 1024px) {
  .flow-list .step-title { font-size: 1.25rem !important; }
  .flow-list .step-desc { font-size: 18px !important; }
  .point-card strong { font-size: 19px !important; }
  .point-card p { font-size: 17px !important; }
  .job-card-head h3 { font-size: 1.5rem !important; }
  .job-card-head .jcsub { font-size: 16px !important; }
  .job-tab { font-size: 16px !important; padding: 11px 22px !important; }
  .ibadge { font-size: 14px !important; }
}

/* ===== 応募の流れ：文字サイズ大幅アップ ===== */
.flow-list { list-style: none; counter-reset: step; }
.flow-list li { counter-increment: step; display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.flow-list li::before { content: counter(step); background: var(--green); color: #fff; border-radius: 50%; min-width: 42px; height: 42px; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-list .step-title { font-weight: 700; font-size: 1.2rem !important; display: block; margin-bottom: 6px; color: var(--navy); }
.flow-list .step-desc { font-size: 16px !important; color: var(--muted); line-height: 1.8; display: block; }
@media (min-width: 1024px) {
  .flow-list .step-title { font-size: 1.4rem !important; }
  .flow-list .step-desc { font-size: 18px !important; }
  .flow-list li::before { min-width: 48px; height: 48px; font-size: 20px; }
}

/* ===== 採用ページ流れ：正しいクラス名で大きく ===== */
.fl-title { font-weight: 700 !important; font-size: 1.15rem !important; display: block !important; margin-bottom: 6px !important; color: var(--navy) !important; }
.fl-desc { font-size: 16px !important; color: var(--muted) !important; line-height: 1.85 !important; display: block !important; }
@media (min-width: 1024px) {
  .fl-title { font-size: 1.35rem !important; }
  .fl-desc { font-size: 18px !important; }
}

/* ===== フッター：薄緑に変更（全ページ統一） ===== */
.site-footer { background: #e8f5ee !important; color: var(--navy) !important; border-top: 2px solid #a8d9b8 !important; }
.footer-logo { color: var(--green) !important; font-size: 26px !important; }
.site-footer a { color: var(--green) !important; }
.site-footer a:hover { color: var(--green-dark) !important; text-decoration: underline !important; }
.footer-copy { color: #5a7a6a !important; font-size: 13px !important; }

/* ===== フッター内CTA ===== */
.footer-cta { padding: 44px 20px 36px; border-bottom: 1px solid #a8d9b8; margin-bottom: 32px; }
.footer-cta h2 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.footer-cta p { font-size: 15px; color: #3a5a4a; margin-bottom: 22px; }
.footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-cta-btn { background: var(--green); color: #fff; display: inline-block; padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background .2s; }
.footer-cta-btn:hover { background: var(--green-dark); color: #fff; }
.footer-cta-btn.outline { background: #fff; color: var(--green); border: 2px solid var(--green); }
.footer-cta-btn.outline:hover { background: var(--green); color: #fff; }
@media (min-width: 1024px) {
  .footer-cta h2 { font-size: 1.8rem; }
  .footer-cta p { font-size: 17px; }
  .footer-cta-btn { font-size: 17px; padding: 15px 34px; }
}

/* ===== 問題セクション強調 ===== */
.prob-section { background: #fff8e8 !important; border: 2px solid #f0c060 !important; border-radius: 12px; padding: 40px 24px !important; margin: 32px 0 !important; }
.prob-title { font-size: 1.8rem !important; font-weight: 900 !important; color: #b85000 !important; margin-bottom: 24px !important; }
.prob-list li { font-size: 18px !important; font-weight: 600 !important; padding: 8px 0 8px 32px !important; }
.prob-list li::before { color: #e05000 !important; font-size: 18px !important; }
.prob-card { background: #fff !important; border: 1.5px solid #f0c060 !important; box-shadow: 0 4px 16px rgba(232,152,15,.18) !important; padding: 22px 18px !important; border-radius: 10px !important; }
@media (min-width: 1024px) {
  .prob-title { font-size: 2.2rem !important; }
  .prob-list li { font-size: 20px !important; }
}

/* ===== ソリューションセクション強調 ===== */
.sol-section { padding: 64px 24px !important; }
.sol-section h2 { font-size: 2.2rem !important; font-weight: 900 !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
.sol-section p { font-size: 18px !important; opacity: 1 !important; }
@media (min-width: 1024px) {
  .sol-section h2 { font-size: 2.8rem !important; }
  .sol-section p { font-size: 20px !important; }
}

/* ===== メリット①②③：中見出し・小見出し大きく ===== */
.merit-num-item h4 { font-size: 1.2rem !important; font-weight: 700 !important; margin-bottom: 8px !important; }
.merit-num-item p { font-size: 17px !important; line-height: 1.9 !important; }
@media (min-width: 1024px) {
  .merit-num-item h4 { font-size: 1.4rem !important; }
  .merit-num-item p { font-size: 19px !important; }
}

/* ===== ご利用の流れ：タイトル・説明文大きく ===== */
.flow-img-card strong, .flow-img-card .fl-step-title { font-size: 1.1rem !important; font-weight: 700 !important; display: block !important; margin: 10px 0 6px !important; color: var(--navy) !important; }
.flow-img-card p, .flow-img-card .fl-step-desc { font-size: 15px !important; color: var(--muted) !important; line-height: 1.85 !important; }
@media (min-width: 1024px) {
  .flow-img-card strong, .flow-img-card .fl-step-title { font-size: 1.25rem !important; }
  .flow-img-card p, .flow-img-card .fl-step-desc { font-size: 17px !important; }
}

/* ===== 問題セクション強調（実クラス名） ===== */
.problem-section { background: #fff8e8 !important; border-top: 3px solid #f0c060 !important; border-bottom: 3px solid #f0c060 !important; padding: 52px 20px !important; }
.problem-inner h2 { font-size: 1.9rem !important; font-weight: 900 !important; color: #b85000 !important; }
.prob-card { border: 1.5px solid #f0c060 !important; box-shadow: 0 4px 16px rgba(232,152,15,.18) !important; }
.prob-card ul li { font-size: 17px !important; font-weight: 600 !important; padding: 6px 0 !important; }
@media (min-width: 1024px) {
  .problem-inner h2 { font-size: 2.3rem !important; margin-bottom: 36px !important; }
  .prob-card ul li { font-size: 19px !important; }
}

/* ===== ソリューションセクション強調（実クラス名） ===== */
.solution-section { padding: 72px 24px !important; }
.solution-section h2 { font-size: 2.4rem !important; font-weight: 900 !important; line-height: 1.5 !important; margin-bottom: 18px !important; }
.solution-section p { font-size: 18px !important; opacity: 1 !important; }
@media (min-width: 1024px) {
  .solution-section { padding: 88px 24px !important; }
  .solution-section h2 { font-size: 3rem !important; }
  .solution-section p { font-size: 21px !important; }
}

/* ===== フッター：住所情報頭揃え ===== */
.footer-contact-block { display: inline-block; text-align: left; margin: 16px auto 20px; }
.footer-contact-block p { font-size: 15px !important; color: var(--navy) !important; margin-bottom: 6px; line-height: 1.8; }
.footer-contact-block a { color: var(--green) !important; font-weight: 700; }
@media (min-width: 1024px) {
  .footer-contact-block p { font-size: 16px !important; }
}

/* ===== 修正：問題セクションのチェックボックス重なり解消 ===== */
.prob-card ul { list-style: none !important; padding: 0 !important; }
.prob-card ul li { font-size: 18px !important; font-weight: 600 !important; padding: 7px 0 7px 34px !important; position: relative !important; }
.prob-card ul li::before { content: '☑' !important; position: absolute !important; left: 0 !important; color: #e05000 !important; font-size: 18px !important; }
@media (min-width: 1024px) {
  .prob-card ul li { font-size: 20px !important; padding: 8px 0 8px 38px !important; }
  .prob-card ul li::before { font-size: 20px !important; }
}

/* ===== ヘッダーロゴ：強調・大きく ===== */
.logo-area { text-align: center !important; }
.logo-area .logo-sub { font-size: 13px !important; color: #444 !important; font-weight: 500 !important; display: block !important; }
.logo-area .logo-name { font-size: 34px !important; font-weight: 900 !important; color: var(--green) !important; letter-spacing: .12em !important; display: block !important; }
.logo-area .logo-catch { font-size: 13px !important; color: var(--green) !important; font-weight: 600 !important; display: block !important; }
@media (min-width: 1024px) {
  .logo-area .logo-name { font-size: 40px !important; }
  .logo-area .logo-sub { font-size: 14px !important; }
  .logo-area .logo-catch { font-size: 14px !important; }
}

/* ===== フッター：住所・電話・メールをgridで頭揃え ===== */
.footer-contact-block { display: inline-grid !important; grid-template-columns: auto 1fr !important; gap: 6px 20px !important; text-align: left !important; margin: 16px auto 20px !important; }
.footer-contact-block p { display: contents !important; }
.footer-contact-block .fi-label { color: #4a7a5a !important; font-weight: 600 !important; white-space: nowrap !important; }
.footer-contact-block .fi-value { color: var(--green) !important; font-weight: 500; }
.footer-contact-block .fi-value a { color: var(--green) !important; font-weight: 700 !important; }

/* ===== SNSボタン ===== */
.sns-links { display:flex; gap:7px; align-items:center; margin-top:6px; flex-wrap:wrap; justify-content:flex-end; }
.sns-links a { display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:var(--green-light); border:1px solid var(--border); transition:background .2s,transform .15s; text-decoration:none; flex-shrink:0; }
.sns-links a:hover { background:var(--green); transform:translateY(-2px); }
.sns-links a:hover svg { fill:#fff; }
.sns-links svg { width:15px; height:15px; fill:var(--green); transition:fill .2s; }

/* ===== 動画 ===== */
.video-section { width:100%; display:block; }
.video-wrap { width:100%; position:relative; }
.video-wrap video { display:block; width:100%; height:auto; }
body { overflow-x:hidden; }

/* ===== 新フッター ===== */
.site-footer { background:#1a3d2b; color:#fff; padding:48px 20px 32px; }
.footer-inner { max-width:960px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
@media(max-width:640px){ .footer-inner { grid-template-columns:1fr; gap:24px; } }
.footer-brand .footer-logo { color:#fff; font-size:20px; font-weight:900; letter-spacing:.1em; margin-bottom:10px; }
.footer-brand .footer-logo-sub { color:#fff; font-size:11px; letter-spacing:.15em; margin-bottom:14px; }
.footer-brand address { font-style:normal; font-size:13px; line-height:2; color:#fff; }
.footer-contact-btn { display:inline-block; margin-top:16px; background:var(--green); color:#fff; padding:12px 24px; border-radius:6px; font-weight:700; font-size:14px; text-decoration:none; }
.footer-contact-btn:hover { opacity:.85; }
.footer-nav h4 { color:#fff; font-size:13px; font-weight:700; margin-bottom:12px; letter-spacing:.05em; border-bottom:1px solid #2d6040; padding-bottom:8px; }
.footer-nav ul { list-style:none; }
.footer-nav ul li { margin-bottom:8px; }
.footer-nav ul li a { color:#fff; font-size:13px; text-decoration:none; }
.footer-nav ul li a:hover { color:#fff; }
.footer-tel-block { background:#243b4d; border-radius:8px; padding:16px 20px; margin-top:8px; }
.footer-tel-block p { font-size:12px; color:#fff; margin-bottom:6px; }
.footer-tel-block a { color:#fff; font-size:22px; font-weight:900; text-decoration:none; display:block; }
.footer-tel-block .footer-hours { font-size:11px; color:#fff; margin-top:4px; }
.footer-copy-bar { border-top:1px solid #2d6040; padding-top:20px; text-align:center; font-size:12px; color:#fff; max-width:960px; margin:0 auto; }

/* フッター文字色強制上書き */
.footer-brand .footer-logo-sub { color: var(--green) !important; }
.footer-brand address { color: var(--green) !important; }
.footer-nav h4 { color: var(--green) !important; border-bottom-color: var(--green) !important; }
.footer-nav ul li a { color: var(--green) !important; }
.footer-nav ul li a:hover { color: var(--navy) !important; }
.footer-copy-bar { color: var(--green) !important; border-top-color: var(--green) !important; }
.footer-copy { color: var(--green) !important; }
