/* ===== 新デザインシステム CSS ===== */

/* ===== CSS Variables ===== */
:root {
  /* カラーパレット */
  --color-white: #FFFFFF;
  --color-light-gray: #F7FAFC;
  --color-cool-gray: #E2E8F0;
  --color-warm-gray: #718096;
  --color-charcoal: #2D3748;
  
  /* グリーンアクセント */
  --color-primary-green: #38A169;
  --color-dark-green: #2F855A;
  
  /* フォントファミリー */
  --font-primary: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-english: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* フォントサイズ */
  --text-4xl: 2.25rem; /* 36px */
  --text-3xl: 1.875rem; /* 30px */
  --text-2xl: 1.5rem; /* 24px */
  --text-xl: 1.25rem; /* 20px */
  --text-lg: 1.125rem; /* 18px */
  --text-base: 1rem; /* 16px */
  --text-sm: 0.875rem; /* 14px */
  
  /* スペーシング */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-4: 1rem; /* 16px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  
  /* その他 */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ===== Base Styles ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* 横スクロールバーを非表示 */
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  cursor: default;
  overflow-x: hidden; /* 横スクロールバーを非表示 */
  width: 100%;
}

a:hover, button:hover, .footer-contact-btn:hover {
  cursor: pointer;
}

#art-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 9999;
  border: 2.5px solid #38A169; /* グリーン */
  border-radius: 50%;
  background: rgba(255,255,255,0.9); /* 白半透明で見やすく */
  box-shadow: 0 0 0 2px rgba(56, 161, 105, 0.2), 0 0 20px rgba(56, 161, 105, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, border 0.2s, opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  mix-blend-mode: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
}
#art-cursor::after {
  content: '';
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #38A169; /* グリーン */
  box-shadow: 0 0 12px rgba(56, 161, 105, 0.5);
  transition: transform 0.3s ease;
}

/* ホバー時はアートカーソルを非表示にし、指カーソルだけ */
a:hover ~ #art-cursor,
button:hover ~ #art-cursor,
.footer-contact-btn:hover ~ #art-cursor {
  opacity: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* ===== ヘッダーナビゲーション ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-cool-gray);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand .brand-link {
  font-family: var(--font-english);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.nav-brand .brand-link:hover {
  color: var(--color-primary-green);
  transform: scale(1.05);
}

.brand-logo {
  height: 80px;
  width: auto;
 
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-logo:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-8);
}

.nav-link {
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-green);
  background-color: rgba(56, 161, 105, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 2px 0;
  transition: var(--transition);
}


/* ===== セクション共通 ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
  padding: var(--space-12) 0;
}

.section-title {
  font-family: var(--font-english);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary-green);
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* マーキー背景テキスト（画面全体） */
.marquee-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, -50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.marquee-text {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 12s linear infinite;
}

.marquee-text span {
  font-family: 'Inter', sans-serif;
  font-size: 12vw;
  font-weight: 900;
  color: rgba(56, 161, 105, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-right: 0.3em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  .marquee-text {
    animation: none;
  }
}

/* ===== WORKSセクション ===== */
.works-section {
  background: var(--color-white);
  padding: var(--space-20) 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.work-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-cool-gray);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-green);
}

/* 詳細リンクホバー時はオーバーレイを非表示 */
.work-card:has(.work-detail-link:hover) .work-overlay {
  opacity: 0 !important;
  pointer-events: none;
}

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* カードhover時の背景色あり（ユーザー要望） */
  background: rgba(56, 161, 105, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  /* オーバーレイ上でも常に視認できる配色 */
  color: #166534;
  font-weight: 600;
  text-decoration: none;
  padding: 1em 2.2em;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s cubic-bezier(.2,.8,.2,1),
    color 0.25s ease,
    background-color 0.25s ease;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* 斜めワイプで塗りが入る */
.work-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  /* ホバー時の塗りは“濃色”にしてオーバーレイ上でも埋もれない */
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(22, 101, 52, 0.95) 100%);
  transform: translateX(-110%) skewX(-18deg);
  transition: transform 0.55s cubic-bezier(.77,0,.18,1);
  z-index: -1;
}

.work-link:hover::before {
  transform: translateX(0) skewX(-18deg);
}

/* 矢印アイコン */
.work-link::after {
  content: '↗';
  font-size: 1em;
  opacity: 0;
  transform: translateX(-10px) translateY(10px) rotate(-20deg);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease;
}

.work-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.work-link:hover::after {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0deg);
}

.work-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

/* カード下部の詳細リンク */
.work-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: all 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.work-detail-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-green) 0%, #2f855a 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.work-detail-link:hover::before {
  left: 0;
}

.work-detail-link span {
  position: relative;
  z-index: 1;
}

.work-detail-link:hover {
  color: var(--color-white);
}

.work-detail-link span:last-child {
  transition: transform 0.3s ease;
}

.work-detail-link:hover span:last-child {
  transform: translateX(4px);
}

.work-content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.work-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.work-description {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.tag {
  background: rgba(56, 161, 105, 0.1);
  color: var(--color-primary-green);
  padding: var(--space-1) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ===== ABOUTセクション ===== */
.about-section {
  background: var(--color-light-gray);
  padding: var(--space-20) 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
  margin-top: var(--space-12);
}

.about-image {
  text-align: center;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--color-primary-green);
  box-shadow: 0 8px 24px rgba(56, 161, 105, 0.2);
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.about-name {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.about-title {
  font-size: var(--text-xl);
  color: var(--color-primary-green);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.about-description {
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* About Highlight Section - Modern Design */
.about-highlight {
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4ade80, #38a169, #2f855a);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  font-size: 2rem;
  filter: grayscale(0.2);
}

.highlight-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.highlight-content {
  display: grid;
  gap: 1rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-item:last-child {
  border-bottom: none;
}

.achievement-label {
  font-size: 0.9rem;
  font-weight: 600;

  min-width: 80px;
  text-align: center;
  padding: 0.4rem 0.8rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 12px;
 
}

.achievement-value {
  flex: 1;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.about-conclusion {
  font-weight: 600;
  color: #1a202c;
  margin-top: 1.5rem;
}

.skills-title,
.timeline-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-6);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.skill-category-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary-green);
  margin-bottom: var(--space-4);
}

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

.skill-list li {
  color: var(--color-warm-gray);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-cool-gray);
}

.skill-list li:last-child {
  border-bottom: none;
}

.timeline {
  position: relative;
  padding-left: var(--space-8);
}

/* ベースの線（グレー） */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-cool-gray); /* グレーに変更 */
  z-index: 0;
}

/* 進行バー（緑） */
.timeline::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0; /* JSで制御 */
  background: var(--color-primary-green);
  z-index: 1;
  transition: height 0.1s linear;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
  transition: opacity 0.5s ease;
}

/* ドット（初期状態：グレー） */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -43.5px; /* 0.5px右に調整 */
  top: 0;
  width: 16px; /* 12pxから拡大 */
  height: 16px; /* 12pxから拡大 */
  background: var(--color-cool-gray);
  border-radius: 50%;
  border: 4px solid var(--color-white); /* 枠線も少し太く */
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* アクティブなドット（緑） */
.timeline-item.active::before {
  background: var(--color-primary-green);
  transform: scale(1.2);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-warm-gray); /* 初期グレー */
  margin-bottom: var(--space-2);
  transition: color 0.3s ease;
}

.timeline-item.active .timeline-date {
  color: var(--color-primary-green);
}

.timeline-content h5 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--color-warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== PRICINGセクション ===== */
.pricing-section {
  background: var(--color-light-gray);
  padding: var(--space-20) 0;
}

.pricing-note {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  text-align: center;
  margin-top: var(--space-4);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.pricing-table {
  max-width: 800px;
  margin: var(--space-16) auto 0;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-cool-gray);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-cool-gray);
  transition: var(--transition);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item:hover {
  background: rgba(56, 161, 105, 0.03);
}

.pricing-service {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  flex: 1;
}

.pricing-cost {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0;
  min-width: 140px;
  text-align: right;
}

/* ===== フッター ===== */

/* ===== レスポンシブデザイン ===== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-container {
    padding: 10px 16px; /* 上下のパディングを小さく */
  }
  
  .brand-logo {
    height: 60px; /* 少し小さく */
    width: auto;
  }
  
  .nav-list {
    display: none;
  }
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px; /* 60pxから50pxに調整 */
    right: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    z-index: 2000;
    min-width: 160px;
    padding: 1em 0.5em;
    gap: 0.5em;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .nav-container {
    padding: 8px 16px; /* 上下のパディングを小さく */
  }
  
  .brand-logo {
    height: 50px; /* 80pxから50pxに縮小 */
    width: auto;
  }
  
  .nav-list {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .section-header {
    padding: var(--space-8) 0; /* レスポンシブ時はパディングを小さく */
  }
  
  /* マーキーテキストの位置を調整（VALUEセクションと揃える） */
  /* VALUEセクションはpadding-top: 0なので、他のセクションもそれに合わせる */
  .section-header .marquee-bg {
    top: 40%; /* VALUEセクションの位置に合わせてさらに上に */
  }
  
  .section-title {
    margin-bottom: var(--space-2); /* マージンを小さく */
  }
  
  .section-subtitle {
    margin-top: var(--space-2); /* サブタイトルのマージンを調整 */
    line-height: 1.6; /* 行間を調整 */
    display: block; /* ブロック要素として確実に表示 */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .timeline {
    padding-left: var(--space-6);
  }
  
  .timeline-item::before {
    left: -35.5px;
  }
  
  /* Pricing responsive styles */
  .pricing-table {
    margin: var(--space-12) var(--space-4) 0;
  }
  
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
  }
  
  .pricing-service {
    font-size: var(--text-base);
  }
  
  .pricing-cost {
    font-size: var(--text-lg);
    text-align: left;
    min-width: auto;
  }
  
  /* カタログセクション レスポンシブ */
  .timeline-content div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 6px 12px; /* さらに小さく */
  }
  
  .brand-logo {
    height: 40px; /* さらに小さく */
    width: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header {
    padding: var(--space-6) 0; /* さらに小さく */
  }
  
  /* マーキーテキストの位置を調整（VALUEセクションと揃える） */
  .section-header .marquee-bg {
    top: 38%; /* VALUEセクションの位置に合わせてさらに上に */
  }
  
  .section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2); /* レスポンシブ時はマージンを小さく */
  }
  
  .section-subtitle {
    margin-top: var(--space-2); /* サブタイトルのマージンを調整 */
    line-height: 1.6; /* 行間を調整 */
    display: block; /* ブロック要素として確実に表示 */
  }
  
  .work-content {
    padding: var(--space-4);
  }
  
  .about-name {
    font-size: var(--text-2xl);
  }

  .about-highlight {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .highlight-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .highlight-title {
    font-size: 1.2rem;
  }

  .achievement-item {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 0.8rem 0;
  }

  .achievement-label {
    min-width: auto;
    align-self: center;
  }

  .achievement-value {
    font-size: 0.9rem;
  }
}

/* ===== アニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ===== フォーカス状態 ===== */
.focus-visible {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  #art-cursor {
    display: none !important;
  }
}

/* ===== PARALLAX HERO Section ===== */
.parallax-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #1e293b;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) saturate(1.1) contrast(1.1);
  opacity: 0.6;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.8) 50%, rgba(226, 232, 240, 0.9) 100%);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.parallax-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.parallax-content {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.media-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: all 0.1s ease-out;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.title-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.parallax-title-left,
.parallax-title-right {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  color: #1e293b;
  text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(16, 185, 129, 0.2);
  transition: transform 0.1s ease-out;
  margin: 0;
  line-height: 1;
  font-family: var(--font-english);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  pointer-events: none;
}

.parallax-subtitle-left,
.parallax-subtitle-right {
  font-size: 2.2rem;
  color: #E8E3D3;
  font-weight: 700;
  transition: transform 0.1s ease-out;
  margin: 0;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.parallax-hero-section .content-section {
  width: 100%;
  padding: 8rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.95) 20%, rgba(248, 250, 252, 1) 100%);
}

.parallax-hero-section .content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-hero-section .content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #334155;
}

/* 私の3つの強み - モダンデザイン */
.parallax-hero-section .strengths-section {
  margin-top: 8rem;
  padding-top: 0;
}

.parallax-hero-section .strengths-title {
  font-size: 2rem;
  font-weight: 300;
  color: #334155;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  position: relative;
}

.parallax-hero-section .strengths-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4ade80, #38a169);
  border-radius: 1px;
}

.parallax-hero-section .strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.parallax-hero-section .strength-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.parallax-hero-section .strength-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #38a169, #2f855a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.parallax-hero-section .strength-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.parallax-hero-section .strength-item:hover::before {
  opacity: 1;
}

.parallax-hero-section .strength-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-icon {
  transform: scale(1.1);
  filter: grayscale(0);
}

.parallax-hero-section .strength-content {
  width: 100%;
}

.parallax-hero-section .strength-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-title {
  color: #38a169;
}

.parallax-hero-section .strength-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-description {
  color: #4a5568;
}

.parallax-hero-section .content-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1e293b;
  font-family: var(--font-english);
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.parallax-hero-section .content-text {
  font-size: 1.5rem;
    line-height: 1.9;
    /* margin-bottom: 2rem; */
    font-weight: 600;
}

.parallax-hero-section .hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .media-container {
    width: 250px;
    height: 350px;
    border-radius: 16px;
  }
  
  .parallax-title-left,
  .parallax-title-right {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .parallax-subtitle-left,
  .parallax-subtitle-right {
    font-size: 1.8rem;
  }
  
  .content-section {
    padding: 4rem 1.5rem;
  }

  .parallax-hero-section .strengths-section {
    margin-top: 4rem;
  }

  .parallax-hero-section .strengths-title {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .parallax-hero-section .strengths-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .parallax-hero-section .strength-item {
    padding: 2rem 1.5rem;
  }

  .parallax-hero-section .strength-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .parallax-hero-section .strength-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .parallax-hero-section .strength-description {
    font-size: 0.9rem;
  }
  
  .parallax-hero-section .content-text {
    font-size: 1.1rem;
  }
  
  .parallax-hero-section .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .parallax-hero-section .hero-actions .btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .media-container {
    width: 220px;
    height: 320px;
  }
  
  .subtitle-container {
    margin-top: 2rem;
  }
  
  .content-section {
    padding: 3rem 1rem;
  }
}


