/*
Theme Name: メイジツ コーポレートサイト
Theme URI:
Author: 株式会社メイジツ
Author URI:
Description: 株式会社メイジツのコーポレートサイト用WordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meizitsu
*/

/* ============================================
   株式会社メイジツ コーポレートサイト
   ============================================ */

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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul, ol {
  list-style: none;
}

/* --- Variables --- */
:root {
  --color-primary: #1B2E4B;
  --color-primary-light: #2A4066;
  --color-accent: #0055A4;
  --color-accent-light: #0070D4;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #FFFFFF;
  --color-bg-light: #F5F7FA;
  --color-bg-dark: #E8ECF1;
  --color-border: #D1D9E6;
  --color-white: #FFFFFF;
  --color-cta: #C75000;
  --color-cta-hover: #A84400;
  --max-width: 1100px;
  --header-height: 80px;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

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

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo .logo-img {
  height: 44px;
  width: auto;
}

.header-logo .logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  background: var(--color-bg-light);
  color: var(--color-accent);
}

.header-nav .nav-cta {
  background: var(--color-accent);
  color: #fff;
  margin-left: 8px;
  padding: 8px 20px;
}

.header-nav .nav-cta:hover {
  background: var(--color-accent-light);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 100px 30px 40px;
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-bg-dark);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .nav-cta-mobile {
  display: block;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  border-bottom: none;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.show {
  opacity: 1;
}

/* --- Hero (Top Page) --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,55,90,0.7) 0%, rgba(36,59,92,0.7) 50%, rgba(27,50,80,0.7) 100%), url('images/fv_1.jpeg') center/cover no-repeat;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.hero-catch {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-catch .hero-sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--color-accent-light);
  padding-left: 12px;
  margin-bottom: 20px;
}

.hero-catch h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero-catch h1 span {
  color: #7EB8E8;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  color: var(--color-white);
}

.hero-stat .stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #7EB8E8;
  line-height: 1.2;
}

.hero-stat .stat-num small {
  font-size: 16px;
  font-weight: 400;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  text-align: center;
}

.btn-primary {
  background: var(--color-cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199, 80, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 85, 164, 0.3);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

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

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

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-en {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.section-dark .section-header .section-en {
  color: #7EB8E8;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-dark .section-header h2 {
  color: var(--color-white);
}

.section-header p {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-header-left .section-en {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.section-header-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* --- Strength Cards (Top) --- */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.strength-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.strength-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Service Section (Top) --- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: var(--color-white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--color-border);
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.service-item .service-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  object-fit: cover;
}

.service-item .service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.service-item .service-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-item .service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-item .service-link:hover {
  color: var(--color-accent-light);
}

/* --- Works / Results Section --- */
.works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}

.works-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.works-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.works-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.works-card .works-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-text-muted);
  overflow: hidden;
}

.works-card .works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.works-card .works-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.works-card .works-body p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Flow Section --- */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.flow-step:not(:last-child) {
  border-bottom: none;
}

.flow-step .step-num {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.flow-step:not(:last-child) .step-num::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 20px);
  background: var(--color-border);
  z-index: 1;
}

.flow-step .step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  padding-top: 4px;
}

.flow-step .step-content p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #243B5C 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-section .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.cta-tel .tel-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-tel .tel-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Company Info Table --- */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--color-border);
}

.company-table th {
  width: 160px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  vertical-align: top;
  background: var(--color-bg-light);
}

.company-table td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}

/* --- Map --- */
.map-wrap {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* --- Contact Form --- */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding: 40px 0;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-detail-item .detail-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-detail-item .detail-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.contact-detail-item .detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group label .required {
  display: inline-block;
  font-size: 11px;
  background: var(--color-cta);
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}

.form-group label .optional {
  display: inline-block;
  font-size: 11px;
  background: var(--color-text-muted);
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.1);
}

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

.form-privacy {
  margin: 24px 0;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

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

/* --- Recruit --- */
.recruit-message {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.recruit-message p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 2;
}

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

.recruit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
}

.recruit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.recruit-card dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
}

.recruit-card dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.recruit-card dd {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Page Header --- */
.page-header {
  background: var(--color-primary);
  margin-top: var(--header-height);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .section-en {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7EB8E8;
  margin-bottom: 8px;
  position: relative;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.breadcrumb-list a {
  color: var(--color-text-light);
}

.breadcrumb-list a:hover {
  color: var(--color-accent);
}

.breadcrumb-list .separator {
  color: var(--color-text-muted);
}

/* --- Strength Page Detail --- */
.strength-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.strength-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.strength-detail:nth-child(even) {
  direction: rtl;
}

.strength-detail:nth-child(even) > * {
  direction: ltr;
}

.strength-detail .strength-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  overflow: hidden;
}

.strength-detail .strength-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.strength-detail .strength-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.strength-detail .strength-text p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 12px;
}

.strength-detail .strength-text ul {
  margin-top: 16px;
}

.strength-detail .strength-text ul li {
  font-size: 14px;
  color: var(--color-text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.strength-detail .strength-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* --- Numbers Section --- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.number-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.number-card .num {
  font-size: 40px;
  font-weight: 700;
  color: #7EB8E8;
  line-height: 1.2;
}

.number-card .num small {
  font-size: 18px;
  font-weight: 500;
}

.number-card .num-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* --- Quality Section Detail --- */
.quality-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quality-point {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 16px;
}

.quality-point .q-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.quality-point .q-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.quality-point .q-content p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Parallax Section --- */
.parallax-section {
  background-attachment: fixed;
  position: relative;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 0;
}

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

.footer-company .footer-logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-company p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strength-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .strength-detail:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 240px !important;
  }

  :root {
    --header-height: 64px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 50px 20px 60px;
  }

  .hero-catch h1 {
    font-size: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-stat .stat-num {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-item .service-thumb {
    aspect-ratio: 16/9;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .number-card .num {
    font-size: 30px;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }

  .recruit-cards {
    grid-template-columns: 1fr;
  }

  .company-table th {
    width: 100px;
    padding: 14px 12px;
    font-size: 13px;
  }

  .company-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section h2 {
    font-size: 20px;
  }

  .page-header {
    padding: 35px 0;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .flow-step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
}
