/* スムーズスクロール設定 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Montserrat', 'Segoe UI', 'Hiragino Sans', 'Meiryo', sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 6rem;
  /* GPUアクセラレーション有効化 */
  will-change: scroll-position;
}

/* メインナビゲーション */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 179, 71, 0.1);
  z-index: 1001;
  padding: 0.8rem 0;
}

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

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

.nav-logo:hover {
  color: #ff9800;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #404040;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ff6b35;
}

.nav-links a.active {
  color: #ff6b35;
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff6b35;
  border-radius: 1px;
}

/* 共通ヘッダースタイル */
.site-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  margin-top: 4rem;
}

/* mission.html専用のヘッダー間隔調整 */
.mission-page .site-header {
  margin-top: 4rem;
}

/* mission.html専用のヘッダーレイアウト */
.mission-page .header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 2rem;
  gap: 1rem;
}

.logo-img {
  max-width: 120px;
  height: auto;
}

.main-title {
  margin: 0;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f0f0f;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(255,179,71,0.08);
  transition: transform 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.main-title:hover {
  transform: translateZ(0) translateY(-2px);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,179,71,0.08), transparent);
  animation: shimmer 4s infinite;
  /* GPUアクセラレーション有効化 */
  transform: translateZ(0);
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 2rem;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(255,179,71,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
  /* GPUアクセラレーション有効化 */
  transform: translateZ(0);
  will-change: transform;
}

.logo:hover {
  transform: translateZ(0) scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(255,179,71,0.25));
}

/* メインコンテンツ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ページタイトル */
.page-title {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f0f0f;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(255,179,71,0.08);
  margin: 0 0 2rem 0;
}

/* カード */
.card {
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.02);
  margin: 3rem 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 1;
  transform: translateZ(0);
  /* GPUアクセラレーション有効化 */
  will-change: transform;
}

.card.animate {
  transform: translateZ(0) translateY(0) scale(1);
}

.card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 20px rgba(0,0,0,0.04);
  transform: translateZ(0) translateY(-8px) scale(1.02);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb347, #ff9800);
  transform: translateZ(0) scaleX(0);
  transition: transform 0.3s ease;
  /* GPUアクセラレーション有効化 */
  will-change: transform;
}

.card:hover::before {
  transform: translateZ(0) scaleX(1);
}

.section-mission {
  background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
}

.section-vision {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.section-value {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: left;
}

.section-title {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  display: block;
  transition: transform 0.3s ease;
  color: #0f0f0f;
  line-height: 1.3;
  /* GPUアクセラレーション有効化 */
  transform: translateZ(0);
  will-change: transform;
}

.section-title:hover {
  transform: translateZ(0) scale(1.02);
}

.gradient-text span {
  background: linear-gradient(135deg, #ff6b35 0%, #ffb347 50%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border-bottom: 3px solid #ffb347;
  padding-bottom: 0.2em;
  transition: border-bottom-color 0.3s ease;
}

.gradient-text:hover span {
  border-bottom-color: #ff6b35;
}

.section-lead {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2d2d2d;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.section-lead:hover {
  color: #ff6b35;
}

.section-desc {
  font-size: 1rem;
  color: #404040;
  line-height: 1.8;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

.section-desc p {
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  font-weight: 400;
}

.section-desc p:hover {
  color: #2d2d2d;
}

.section-desc p:last-child {
  margin-bottom: 0;
}

/* バリューリスト */
.value-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0 0;
  text-align: left;
}

.value-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: 1.5rem;
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.value-list li::before {
  content: none;
}

.value-list li:hover {
  box-shadow: 0 12px 40px rgba(255,179,71,0.15);
}

.value-icon {
  font-size: 2rem;
  line-height: 1.6;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: color 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(255, 179, 71, 0.2));
  width: 3rem;
  text-align: center;
}

.value-list li:hover .value-icon {
  color: #ff6b35;
}

.value-list li div {
  text-align: left;
}

.value-list li strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}

/* ヒーローセクション */
.hero-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
  padding: 8rem 2rem 6rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
}

.gradient-text {
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 0 0 3rem 0;
  opacity: 0.9;
  font-weight: 400;
  color: white;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
  color: white;
}

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

.hero-footnote {
  margin-top: 2rem;
  text-align: center;
}

.hero-footnote small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 400;
}

.cta-button {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title i {
  color: #ff6b35;
  font-size: 2.2rem;
  line-height: 1;
  vertical-align: middle;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* サービスグリッド */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* プログラム詳細 */
.program-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detail-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.detail-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
  margin: 0 0 0.5rem 0;
}

.detail-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* 対象者グリッド */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.target-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 53, 0.2);
}

.target-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.target-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.target-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 強みグリッド */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strength-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 193, 7, 0.2);
}

.strength-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffc107, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.strength-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.strength-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 提供形式セクション */
.delivery-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.delivery-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  flex-shrink: 0;
}

.delivery-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.delivery-text p {
  color: #666;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

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

.delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.delivery-features li i {
  color: #4caf50;
  font-size: 0.9rem;
}

/* CTAセクション */
.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  opacity: 0.9;
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button.primary.large {
  background: white;
  color: #ff6b35;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.primary.large:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-button.secondary.large {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.secondary.large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ffb347 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,179,71,0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,179,71,0.4);
}

.btn-line {
  background: linear-gradient(135deg, #00c300 0%, #00a000 100%);
  box-shadow: 0 4px 16px rgba(0,195,0,0.3);
}

.btn-line:hover {
  box-shadow: 0 8px 24px rgba(0,195,0,0.4);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* フォーム */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  padding: 3rem 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

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

/* テーブル */
.table-container {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  padding: 3rem 2.5rem;
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table td {
  padding: 1.2rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 1rem;
  line-height: 1.6;
}

.company-table td:first-child {
  font-weight: 600;
  color: #2d2d2d;
  width: 150px;
  vertical-align: top;
}

.company-table td:last-child {
  color: #404040;
}

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

/* フッター */
.site-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  color: #6c757d;
  font-size: 0.95rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffb347, #ff6b35);
  transform: translateZ(0) scaleX(0);
  transition: transform 0.3s ease;
  /* GPUアクセラレーション有効化 */
  will-change: transform;
}

.site-footer:hover::after {
  transform: translateZ(0) scaleX(1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom small {
  color: #6c757d;
  font-size: 0.85rem;
}

.footer-bottom .copyright-year {
  color: #6c757d;
  font-weight: 600;
}

/* スクロールインジケーター */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,179,71,0.15);
  z-index: 1000;
  /* GPUアクセラレーション有効化 */
  transform: translateZ(0);
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #ffb347, #ff9800);
  width: 0%;
  transition: width 0.1s ease;
  /* GPUアクセラレーション有効化 */
  transform: translateZ(0);
  will-change: width;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .header-inner {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .container, .page-container {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-lead {
    font-size: 1.1rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
  }
  
  .value-list li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .value-list li strong {
    font-size: 1.1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 2rem 1.5rem;
  }
  
  .content-section h1 {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .table-container {
    padding: 1.5rem;
  }

  /* ビジネスページ用レスポンシブ */
  .hero-section {
    padding: 6rem 1.5rem 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title i {
    font-size: 1.5rem;
  }

  .services-grid,
  .target-grid,
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .delivery-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .delivery-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* 新規セクション用レスポンシブ */
  .about-infra-text {
    padding: 2rem;
  }

  .about-infra-text p {
    font-size: 1rem;
  }

  .infra-roles {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .role-item {
    padding: 1.5rem;
  }

  .role-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner p {
    font-size: 1.1rem;
  }

  /* 新規要素用レスポンシブ */
  .hero-footnote {
    margin-top: 1.5rem;
  }

  .hero-footnote small {
    font-size: 0.8rem;
  }

  .faq-toggle {
    padding: 1.2rem;
  }

  .faq-toggle h3 {
    font-size: 0.95rem;
  }

  .toggle-icon {
    font-size: 0.9rem;
  }

  .faq-answer.show {
    max-height: 150px;
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* 会社情報グリッド */
  .company-info-grid {
    grid-template-columns: 1fr;
  }
  
  .business-item {
    flex-direction: column;
    text-align: center;
  }
  
  .message-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 1.3rem;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-section h3 {
    font-size: 1rem;
  }
  
  .footer-section ul li a {
    font-size: 0.85rem;
  }
  
  .footer-section p {
    font-size: 0.85rem;
  }
  
  .footer-section .company-info span {
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .nav-container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .header-inner, .container, .page-container {
    padding: 1.5rem 1rem;
  }
  
  .main-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-lead {
    font-size: 1rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
    padding: 1.5rem;
  }
  
  .value-list li {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .value-list li strong {
    font-size: 1rem;
  }
  
  .logo {
    width: 80px;
  }
  
  .hero {
    padding: 4rem 1rem 3rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .content-section {
    padding: 1.5rem 1rem;
  }
  
  .content-section h1 {
    font-size: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem 1rem;
  }
  
  .table-container {
    padding: 1rem;
  }
  
  .company-table td:first-child {
    font-size: 0.9rem;
  }
  
  .nav-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  /* ビジネスページ用レスポンシブ */
  .hero-section {
    padding: 5rem 1rem 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .stat-item {
    flex-direction: row;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .target-card,
  .strength-card {
    padding: 1.5rem;
  }

  .service-icon,
  .target-icon,
  .strength-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .delivery-content {
    padding: 1.5rem;
  }

  .delivery-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  /* 新規セクション用レスポンシブ */
  .about-infra-text {
    padding: 1.5rem;
  }

  .about-infra-text p {
    font-size: 0.95rem;
  }

  .infra-roles {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .role-item {
    padding: 1.2rem;
  }

  .role-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .role-item h3 {
    font-size: 1.1rem;
  }

  .role-item p {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 1.5rem 1rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .cta-banner .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* 会社情報グリッド */
  .info-item,
  .business-item,
  .message-content {
    padding: 1.5rem;
  }
  
  .info-icon,
  .business-icon {
    font-size: 2.5rem;
  }
  
  .avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .contact-icon {
    font-size: 3rem;
  }
  
  .faq-toggle {
    padding: 1rem 1.5rem;
  }
  
  .faq-toggle h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1rem;
  }

  .about-header {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
  
  .profile-value {
    font-size: 1rem;
  }
  
  .link-item {
    padding: 1.5rem;
  }
  
  .link-title {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 1rem;
    margin: 0 auto 1rem auto;
  }
  
  .footer-section ul li a {
    font-size: 0.85rem;
  }
  
  .footer-section p {
    font-size: 0.85rem;
  }
  
  .footer-section .company-info span {
    font-size: 0.85rem;
  }
  
  .footer-section .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-bottom small {
    font-size: 0.8rem;
  }
}

/* アニメーション用クラス（軽量化版） */
.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.slide-in-left {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.slide-in-right {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* アニメーション無効化（パフォーマンス向上のため） */
.fade-in.visible,
.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
}

/* インフラエンジニアとはセクション */
.about-infra-content {
  margin-top: 3rem;
}

.about-infra-text {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.about-infra-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #404040;
  margin: 0;
  text-align: center;
}

.infra-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.role-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.role-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.role-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.role-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.role-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* FAQセクション */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.faq-item:hover {
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-toggle {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background: #fafafa;
}

.faq-toggle h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f0f0f;
  margin: 0;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffb347;
  transition: transform 0.3s ease;
}

.faq-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.faq-answer.show {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: #404040;
  line-height: 1.6;
}

/* モバイルUX改善 - 統一された余白 */
.content-section {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  margin: 3rem 0;
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
  opacity: 1;
  transform: translateZ(0);
  /* GPUアクセラレーション有効化 */
  will-change: transform;
  /* 統一された余白 */
  padding-block: 2rem;
}

/* セクション間の余白統一 */
.content-section + .content-section {
  margin-top: 2rem;
}

/* FAQアイテム間の余白調整 */
.faq-item + .faq-item {
  margin-top: 1rem;
}

/* CTAバナー */
.cta-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.cta-banner-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner p {
  font-size: 1.3rem;
  color: #404040;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.cta-banner .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(45deg, #ff6b35, #ff9800);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-banner .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
} 

/* 会社情報グリッド */
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.info-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.info-item:hover {
  transform: translateZ(0) translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.info-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0 0 0.5rem 0;
}

.info-item p {
  color: #404040;
  margin: 0;
  line-height: 1.6;
}

/* 事業内容 */
.business-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.business-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.business-item:hover {
  transform: translateZ(0) translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.business-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.business-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0 0 1rem 0;
}

.business-text p {
  color: #404040;
  margin: 0;
  line-height: 1.6;
}

/* 代表者メッセージ */
.message-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin: 2rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.message-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffb347, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.message-text {
  flex: 1;
}

.message-text p {
  color: #404040;
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.signature {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #ffb347;
  text-align: right;
}

.signature strong {
  color: #0f0f0f;
  font-size: 1.1rem;
}

/* お問い合わせコンテンツ */
.contact-content {
  text-align: center;
  margin: 2rem 0;
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-content p {
  color: #404040;
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.line-cta {
  margin: 2rem 0;
}

/* フォーム改善 */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #0f0f0f;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #0f0f0f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffb347;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
} 

/* 会社概要ページ専用スタイル */
.about-header {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #404040;
  margin: 0;
  line-height: 1.6;
}

.about-section {
  margin-bottom: 4rem;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0 0 2rem 0;
  letter-spacing: -0.01em;
}

.company-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-item {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1.5rem;
}

.profile-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #0f0f0f;
  margin: 0;
  line-height: 1.6;
}

/* リンクセクション */
.links-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.link-item {
  display: block;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.link-item:hover {
  transform: translateZ(0) translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.link-category {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffb347;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.link-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 0.5rem;
}

.link-desc {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 1.3rem;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .about-header {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
  
  .profile-value {
    font-size: 1rem;
  }
  
  .link-item {
    padding: 1.5rem;
  }
  
  .link-title {
    font-size: 1.1rem;
  }
}

/* 新しく追加したセクション用スタイル */

/* 習得スキルセクション */
.skills-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.skills-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.skill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.skill-item i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.skill-item span {
  font-weight: 500;
  color: #1a1a1a;
}

/* 未来像セクション */
.future-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.future-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.future-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.future-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.future-item i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.future-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.future-item p {
  color: #666;
  line-height: 1.6;
}

/* 卒業までの流れ */
.flow-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.flow-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.flow-step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.flow-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.flow-step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 他社との違い */
.comparison-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.comparison-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #ff6b35;
  color: white;
  font-weight: 600;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-item {
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-header .comparison-item {
  font-weight: 600;
}

.comparison-row:nth-child(even) {
  background: #f8f9fa;
}

/* 料金案内セクション */
.pricing-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.pricing-main {
  margin-bottom: 3rem;
}

.price-highlight {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  display: block;
}

.price-note {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.pricing-description {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-option {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-option:hover {
  background: #fff5f0;
  transform: translateY(-2px);
}

.pricing-option h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.pricing-option p {
  color: #666;
}

.pricing-cta {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}

.pricing-cta p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* メンター紹介セクション */
.mentors-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mentor-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.mentor-intro p {
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.mentor-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mentor-feature {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mentor-feature:hover {
  background: #fff5f0;
  transform: translateY(-2px);
}

.mentor-feature i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.mentor-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.mentor-feature p {
  color: #666;
  line-height: 1.6;
}

.mentor-cta {
  text-align: center;
}

/* 就職支援セクション */
.job-support-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.support-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: #fff5f0;
  transform: translateY(-2px);
}

.support-icon {
  margin-bottom: 1.5rem;
}

.support-icon i {
  font-size: 2.5rem;
  color: #ff6b35;
}

.support-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.support-item p {
  color: #666;
  line-height: 1.6;
}

/* 申込導線セクション */
.application-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.application-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.application-option {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.application-option:hover {
  background: #fff5f0;
  transform: translateY(-4px);
}

.option-icon {
  margin-bottom: 2rem;
}

.option-icon i {
  font-size: 3rem;
  color: #ff6b35;
}

.application-option h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.application-option p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 固定CTAバナー */
.fixed-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 107, 53, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fixed-cta-banner.show {
  transform: translateY(0);
}

.fixed-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.fixed-cta-content span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.fixed-cta-button {
  background: white;
  color: #ff6b35;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.fixed-cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .skills-grid,
  .future-grid,
  .flow-steps,
  .pricing-options,
  .mentor-features,
  .support-items,
  .application-options {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .fixed-cta-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .skills-section,
  .future-section,
  .flow-section,
  .comparison-section,
  .pricing-content,
  .mentors-content,
  .job-support-content,
  .application-content {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .fixed-cta-banner {
    padding: 1rem;
  }
  
  .fixed-cta-content span {
    font-size: 1rem;
  }
  
  .fixed-cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
} 