/* ========================================
   SAI HP Renewal 2026 - Style 2
   b-engineer風デザイン（ライトテーマ・白基調）
   ======================================== */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header - Light Theme */
.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 40px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1002;
}

.brand:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 39px;
  width: auto;
  filter: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: #ff6b35;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.global-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.sub-toggle {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  color: #2a2a2a;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.sub-toggle:hover {
  color: #ff6b35;
}

.sub-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  list-style: none;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav-item.has-sub:hover .sub-nav,
.nav-item.has-sub .sub-nav:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* サブメニューへの遷移エリアを追加（マウスが離れても消えないように） */
.nav-item.has-sub::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
  z-index: 1000;
  background: transparent;
}

.nav-item.has-sub:hover::before {
  display: block;
}

.sub-nav li {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.sub-nav li:hover {
  background-color: rgba(255, 107, 53, 0.1);
  padding-left: 2rem;
}

.sub-nav a {
  text-decoration: none;
  color: #2a2a2a;
  display: block;
}

.nav-list a {
  text-decoration: none;
  color: #2a2a2a;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 500;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #cc3333, #ccaa00, #0052cc);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.5), 0 0 20px rgba(204, 170, 0, 0.3), 0 0 30px rgba(0, 82, 204, 0.3);
}

.nav-list a:hover {
  color: #cc3333;
  text-shadow: none;
}

.nav-list a:nth-child(1):hover {
  color: #cc3333;
  text-shadow: none;
}

.nav-list a:nth-child(1)::after {
  background: linear-gradient(90deg, #cc3333, #cc5555);
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.8);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #cc3333, #ccaa00, #0052cc) !important;
  color: #ffffff !important;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(204, 51, 51, 0.3), 0 0 30px rgba(204, 170, 0, 0.2), 0 0 40px rgba(0, 82, 204, 0.2) !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #cc4444, #ccbb33, #0066cc) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(204, 51, 51, 0.4), 0 0 40px rgba(204, 170, 0, 0.3), 0 0 50px rgba(0, 82, 204, 0.3) !important;
}

.nav-cta::after {
  display: none;
}

/* Hero Section - Light Tech Style */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: #fafafa;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 50%, #e8e8f0 100%);
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(204, 51, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(204, 170, 0, 0.08) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
  background: none;
  backdrop-filter: none;
}

.hero-content {
  color: #2a2a2a;
  background: none;
  backdrop-filter: none;
  opacity: 1;
}

.hero-mission-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #cc3333;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0.8;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(204, 51, 51, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(204, 51, 51, 0.1);
}

.hero-eyebrow {
  font-size: 0.85rem;
  background: linear-gradient(135deg, #cc3333, #ccaa00, #0052cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #1a1a2e 0%, #cc3333 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
  white-space: normal;
  word-break: normal;
}

.hero-title br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(42, 42, 42, 0.85);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ul要素として使用される場合 */
ul.hero-lead {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

ul.hero-lead li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
}

ul.hero-lead li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #cc3333, #ccaa00, #0052cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.65);
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #cc3333, #ccaa00, #0052cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #cc3333, #ccaa00, #0052cc, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: linear-gradient(135deg, #cc3333, #cc5555);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(204, 51, 51, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(204, 51, 51, 0.5);
}

.btn.secondary {
  background: transparent;
  color: #ccaa00;
  border: 2px solid #ccaa00;
}

.btn.secondary:hover {
  background: rgba(204, 170, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(204, 170, 0, 0.3);
}

/* Education Button - 黄色系 */
.btn.secondary.btn-education {
  background: linear-gradient(135deg, #ccaa00, #ccbb33);
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(204, 170, 0, 0.3);
}

.btn.secondary.btn-education:hover {
  background: linear-gradient(135deg, #ccbb33, #ccaa00) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(204, 170, 0, 0.5) !important;
}

/* Global Button - 青系 */
.btn.secondary.btn-global {
  background: linear-gradient(135deg, #0052cc, #0066cc);
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3);
}

.btn.secondary.btn-global:hover {
  background: linear-gradient(135deg, #0066cc, #0052cc) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 82, 204, 0.5) !important;
}

.btn.large {
  padding: 1.25rem 3.5rem;
  font-size: 1.1rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #cc3333;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(204, 51, 51, 0.3);
  border-radius: 30px;
  background: rgba(204, 51, 51, 0.1);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(42, 42, 42, 0.8);
  margin-top: 1rem;
  line-height: 1.6;
}

.section-header .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #cc3333 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #e85a2a 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-lead {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(42, 42, 42, 0.85);
  letter-spacing: 0.1em;
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

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

.section-light {
  background: #ffffff;
  color: #333333;
}

.section-light .section-label {
  color: rgba(51, 51, 51, 0.6);
}

.section-light .section-title {
  color: #1a1a2e;
}

.section-light .section-subtitle {
  color: rgba(51, 51, 51, 0.7);
}

/* 静止している縦・横のグリッド線は削除（背景エフェクトは動きのある線のみ） */
.section-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  z-index: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-number {
  font-size: 6rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.25), rgba(204, 170, 0, 0.25), rgba(0, 82, 204, 0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a2e;
  position: relative;
}

/* Grid */
.grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards - Light Theme */
.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.1);
  line-height: 1;
}

.card-icon-wrapper {
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 3.5rem;
  display: inline-block;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.card p {
  color: rgba(42, 42, 42, 0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.card-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
}

/* Service Section - Large Vertical */
.service-section {
  padding: 8rem 0;
  position: relative;
}

@keyframes it-gradient-drift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.service-section.service-it {
  background: linear-gradient(145deg, #fff8f8 0%, #ffefef 25%, #fce8e8 50%, #fdf2f2 75%, #fff5f5 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: it-gradient-drift 12s ease-in-out infinite;
}

.service-section.service-education {
  background: linear-gradient(145deg, #fffef8 0%, #fdf2e0 25%, #f8ebd8 50%, #fcecd8 75%, #fffbf5 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: it-gradient-drift 12s ease-in-out infinite;
}

.service-section.service-global {
  background: linear-gradient(145deg, #f8fcff 0%, #e0eef8 25%, #d0e4f5 50%, #e5f2fc 75%, #f5faff 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: it-gradient-drift 12s ease-in-out infinite;
}

.service-large-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-large-content.service-large-reverse {
  direction: rtl;
}

.service-large-content.service-large-reverse > * {
  direction: ltr;
}

.service-large-image {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.service-large-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* IT Solution - 赤系 */
.service-it .service-large-overlay {
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.2) 0%, rgba(204, 85, 85, 0.1) 50%, transparent 100%);
}

.service-it .service-large-number {
  color: rgba(204, 51, 51, 0.15);
}

.service-it .service-large-label {
  color: #cc3333;
  background: rgba(204, 51, 51, 0.1);
  border: 1px solid rgba(204, 51, 51, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
}

.service-it .service-large-title {
  background: linear-gradient(135deg, #1a1a2e 0%, #cc3333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.pc-only {
  display: none;
}

@media (min-width: 1024px) {
  .service-it .service-large-title {
    font-size: 3.4rem;
  }
  
  .pc-only {
    display: inline;
  }
}

.service-it .service-large-link {
  color: #cc3333;
  border-color: rgba(204, 51, 51, 0.3);
  background: rgba(204, 51, 51, 0.1);
}

.service-it .service-large-link:hover {
  border-color: #cc3333;
  background: rgba(204, 51, 51, 0.2);
  box-shadow: 0 4px 20px rgba(204, 51, 51, 0.3);
}

/* Education - 黄色系 */
.service-education .service-large-overlay {
  background: linear-gradient(135deg, rgba(204, 170, 0, 0.2) 0%, rgba(204, 187, 51, 0.1) 50%, transparent 100%);
}

.service-education .service-large-number {
  color: rgba(204, 170, 0, 0.15);
}

.service-education .service-large-label {
  color: #ccaa00;
  background: rgba(204, 170, 0, 0.1);
  border: 1px solid rgba(204, 170, 0, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
}

.service-education .service-large-title {
  background: linear-gradient(135deg, #1a1a2e 0%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-education .service-large-link {
  color: #ccaa00;
  border-color: rgba(204, 170, 0, 0.3);
  background: rgba(204, 170, 0, 0.1);
}

.service-education .service-large-link:hover {
  border-color: #ccaa00;
  background: rgba(204, 170, 0, 0.2);
  box-shadow: 0 4px 20px rgba(204, 170, 0, 0.3);
}

/* Global - 青系 */
.service-global .service-large-overlay {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.2) 0%, rgba(0, 136, 204, 0.1) 50%, transparent 100%);
}

.service-global .service-large-number {
  color: rgba(0, 82, 204, 0.15);
}

.service-global .service-large-label {
  color: #0052cc;
  background: rgba(0, 82, 204, 0.1);
  border: 1px solid rgba(0, 82, 204, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
}

.service-global .service-large-title {
  background: linear-gradient(135deg, #1a1a2e 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-global .service-large-link {
  color: #0052cc;
  border-color: rgba(0, 82, 204, 0.3);
  background: rgba(0, 82, 204, 0.1);
}

.service-global .service-large-link:hover {
  border-color: #0052cc;
  background: rgba(0, 82, 204, 0.2);
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3);
}

.service-large-text {
  position: relative;
  z-index: 1;
}

.service-large-number {
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Arial', sans-serif;
}

.service-large-label {
  font-size: 0.9rem;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-large-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  color: #1a1a2e;
}

.service-large-mission {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 3rem;
}

.service-large-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(255, 107, 53, 0.1);
}

.service-large-link svg {
  transition: transform 0.3s ease;
}

.service-large-link:hover {
  gap: 1.5rem;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.2);
}

.service-large-link:hover svg {
  transform: translate(5px, -5px);
}

/* Mission Section - Large Vertical */
.mission-section {
  padding: 10rem 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.mission-section:hover {
  transform: translateY(-5px);
}

.mission-section:hover::before {
  opacity: 1;
}

/* Mission Section - About Page (Light Background with Image) */
.mission-section-about {
  background-color: #f5f5f5;
  padding: 8rem 0;
  min-height: 90vh;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.mission-section-about .mission-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/about/mission.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
  animation: missionImageFade 2s ease-in-out;
}

@keyframes missionImageFade {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 0.85;
    transform: scale(1);
  }
}

.mission-section-about .mission-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.25) 100%);
  z-index: 1;
}

.mission-section-about .container {
  position: relative;
  z-index: 2;
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 40px rgba(255, 107, 53, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}

.mission-section:hover .mission-content {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(255, 107, 53, 0.08),
    inset 0 0 60px rgba(255, 107, 53, 0.05);
}

.mission-section-about .mission-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 40px rgba(255, 107, 53, 0.05);
  transform: translateY(0);
}

.mission-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0.8;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
}

.mission-section:hover .mission-label {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
  transform: scale(1.05);
}

.mission-section-about .mission-label {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.mission-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #e85a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.mission-section:hover .mission-title {
  text-shadow: 
    0 0 40px rgba(255, 107, 53, 0.5),
    0 0 60px rgba(255, 107, 53, 0.3),
    0 0 80px rgba(255, 107, 53, 0.2);
  transform: translateY(-5px);
}

.mission-section-about .mission-title {
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.mission-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease;
}

.mission-section:hover .mission-text {
  color: rgba(26, 26, 46, 1);
  text-shadow: none;
  transform: translateY(-3px);
}

/* ABOUTページのMISSION: 共通のホバーエフェクトを無効化（詳細度を高めて確実に上書き） */
.mission-section-about.mission-section::before {
  display: none;
}
.mission-section-about.mission-section:hover {
  transform: none;
}
.mission-section-about.mission-section:hover .mission-content {
  transform: none;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 0 40px rgba(255, 107, 53, 0.05);
}
.mission-section-about.mission-section:hover .mission-label {
  transform: none;
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: none;
}
.mission-section-about.mission-section:hover .mission-title {
  transform: none;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}
.mission-section-about.mission-section:hover .mission-text {
  transform: none;
  color: rgba(42, 42, 42, 0.95);
}

.mission-section-about .mission-text {
  color: rgba(42, 42, 42, 0.95);
  text-shadow: none;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 800px;
  text-align: left;
}

.mission-list li {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.mission-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
}

.mission-section-about .mission-list li {
  color: rgba(42, 42, 42, 0.95);
  text-shadow: none;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(255, 107, 53, 0.1);
}

.mission-link:hover {
  gap: 1.5rem;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.2);
}

/* Vision Section - Large Vertical */
.vision-section {
  padding: 10rem 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision-section .vision-sphere-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vision-section .vision-sphere-canvas-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.vision-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vision-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #ccaa00;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0.8;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(204, 170, 0, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(204, 170, 0, 0.1);
}

.vision-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #b8860b 50%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

.vision-title br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

.vision-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.vision-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccaa00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
  padding: 1rem 2rem;
  border: 2px solid rgba(204, 170, 0, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(204, 170, 0, 0.1);
}

.vision-link:hover {
  gap: 1.5rem;
  border-color: #ccaa00;
  background: rgba(204, 170, 0, 0.2);
}

/* Company Profile Section - Large Vertical */
.company-profile-section {
  padding: 6rem 0;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.company-profile-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 82, 204, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.company-profile-section:hover {
  transform: translateY(-5px);
}

.company-profile-section:hover::before {
  opacity: 1;
}

.company-profile-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(0, 82, 204, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 40px rgba(0, 82, 204, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}

.company-profile-section:hover .company-profile-content {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 82, 204, 0.35);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(0, 82, 204, 0.08),
    inset 0 0 60px rgba(0, 82, 204, 0.05);
}

.company-profile-label {
  display: inline-block;
  font-size: 0.9rem;
  color: #0052cc;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  opacity: 0.8;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(0, 82, 204, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(0, 82, 204, 0.1);
  transition: all 0.4s ease;
}

.company-profile-section:hover .company-profile-label {
  background: rgba(0, 82, 204, 0.2);
  border-color: rgba(0, 82, 204, 0.6);
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.4);
  transform: scale(1.05);
}

.company-profile-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #0052cc 50%, #cc3333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.company-profile-section:hover .company-profile-title {
  text-shadow: 
    0 0 40px rgba(0, 82, 204, 0.5),
    0 0 60px rgba(0, 82, 204, 0.3),
    0 0 80px rgba(0, 82, 204, 0.2);
  transform: translateY(-5px);
}

.company-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  transition: all 0.4s ease;
}

.company-profile-section:hover .company-info {
  transform: translateY(-3px);
}

.company-info dt {
  font-size: 1rem;
  font-weight: 600;
  color: #0052cc;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 82, 204, 0.3);
  letter-spacing: 0.05em;
  grid-column: 1;
  transition: all 0.4s ease;
}

.company-profile-section:hover .company-info dt {
  color: #0066ff;
  border-bottom-color: rgba(0, 82, 204, 0.5);
  text-shadow: 0 0 10px rgba(0, 82, 204, 0.3);
}

.company-info dd {
  font-size: 1rem;
  color: rgba(42, 42, 42, 0.95);
  line-height: 1.8;
  margin-left: 0;
  padding-left: 0;
  grid-column: 2;
  transition: all 0.4s ease;
}

.company-profile-section:hover .company-info dd {
  color: rgba(26, 26, 46, 1);
  text-shadow: none;
}

.company-info-note {
  font-size: 0.85rem;
  color: rgba(42, 42, 42, 0.7);
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}

/* 従業員数と所在地は全幅に */
.company-info dt:nth-of-type(5),
.company-info dd:nth-of-type(5),
.company-info dt:nth-of-type(6),
.company-info dd:nth-of-type(6) {
  grid-column: 1 / -1;
}

.company-info dt:nth-of-type(5),
.company-info dt:nth-of-type(6) {
  grid-column: 1;
}

.company-info dd:nth-of-type(5),
.company-info dd:nth-of-type(6) {
  grid-column: 2;
}

/* Origin Section - Same Style as Company Profile */
.origin-text {
  text-align: left;
  color: rgba(42, 42, 42, 0.95);
  line-height: 1.8;
  transition: all 0.4s ease;
  max-width: 800px;
  margin: 0 auto;
}

.company-profile-section:hover .origin-text {
  color: rgba(26, 26, 46, 1);
  text-shadow: none;
}

.origin-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(42, 42, 42, 0.95);
  line-height: 1.8;
}

.origin-sai {
  margin-bottom: 2.5rem;
}

.origin-sai-header {
  text-align: center;
  margin-bottom: 3rem;
}

.origin-sai-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.origin-sai-letter {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #3399ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 82, 204, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.origin-sai-letter::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0052cc, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.company-profile-section:hover .origin-sai-letter::after {
  opacity: 1;
}

.origin-sai-subtitle {
  font-size: 1.1rem;
  color: rgba(42, 42, 42, 0.8);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.origin-meaning {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.origin-meaning-item {
  padding: 2rem;
  background: rgba(0, 82, 204, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 82, 204, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.origin-meaning-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0052cc, #0066ff, #3399ff);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.company-profile-section:hover .origin-meaning-item {
  background: rgba(0, 82, 204, 0.1);
  border-color: rgba(0, 82, 204, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
}

.company-profile-section:hover .origin-meaning-item::before {
  opacity: 1;
}

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

.origin-meaning-letter-large {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #3399ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
  text-align: center;
  transition: all 0.4s ease;
}

.company-profile-section:hover .origin-meaning-letter-large {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 82, 204, 0.5));
}

.origin-meaning-title-wrapper {
  flex: 1;
}

.origin-meaning-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}

.company-profile-section:hover .origin-meaning-title {
  color: #0066ff;
  text-shadow: 0 0 10px rgba(0, 82, 204, 0.3);
}

.origin-meaning-subtitle {
  font-size: 1rem;
  color: rgba(42, 42, 42, 0.7);
  font-weight: 500;
}

.origin-meaning-text {
  font-size: 1rem;
  color: rgba(42, 42, 42, 0.9);
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  transition: all 0.4s ease;
}

.company-profile-section:hover .origin-meaning-text {
  color: rgba(26, 26, 46, 1);
}

.origin-japanese {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 82, 204, 0.3);
}

.origin-japanese-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0052cc;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 82, 204, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 82, 204, 0.3);
}

.origin-japanese-item {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 82, 204, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 82, 204, 0.15);
  transition: all 0.4s ease;
}

.company-profile-section:hover .origin-japanese-item {
  background: rgba(0, 82, 204, 0.1);
  border-color: rgba(0, 82, 204, 0.3);
  transform: translateX(5px);
}

.origin-japanese-word {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0052cc;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.origin-japanese-text {
  font-size: 0.95rem;
  color: rgba(42, 42, 42, 0.9);
  line-height: 1.8;
  margin: 0;
}

/* History Section - Timeline Layout */
.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.history-timeline-line {
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    rgba(0, 82, 204, 0.3) 0%,
    rgba(0, 82, 204, 0.5) 50%,
    rgba(0, 82, 204, 0.3) 100%);
  border-radius: 2px;
}

.company-profile-section:hover .history-timeline-line {
  background: linear-gradient(180deg, 
    rgba(0, 82, 204, 0.5) 0%,
    rgba(0, 102, 255, 0.7) 50%,
    rgba(0, 82, 204, 0.5) 100%);
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.4);
}

.history-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.4s ease;
}

.history-item:last-child {
  margin-bottom: 0;
}

.company-profile-section:hover .history-item {
  transform: translateX(5px);
}

.history-year {
  font-size: 2rem;
  font-weight: 700;
  color: #0052cc;
  min-width: 80px;
  text-align: right;
  line-height: 1;
  background: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #3399ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.company-profile-section:hover .history-year {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 82, 204, 0.5));
}

.history-content {
  flex: 1;
  position: relative;
  padding-left: 3rem;
}

.history-dot {
  position: absolute;
  left: calc((120px + 1.5px) - 8px - (80px + 2rem) - 3px);
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.3);
  border: 3px solid rgba(0, 82, 204, 0.5);
  transition: all 0.4s ease;
  z-index: 2;
}

.history-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.5);
  transition: all 0.4s ease;
}

.company-profile-section:hover .history-dot {
  background: rgba(0, 82, 204, 0.5);
  border-color: rgba(0, 102, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.6);
  transform: scale(1.3);
}

.company-profile-section:hover .history-dot::before {
  width: 30px;
  height: 30px;
}

.history-dot-current {
  background: rgba(0, 102, 255, 0.5);
  border-color: rgba(0, 102, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.8);
  }
}

.history-text {
  background: rgba(0, 82, 204, 0.05);
  border: 1px solid rgba(0, 82, 204, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.company-profile-section:hover .history-text {
  background: rgba(0, 82, 204, 0.1);
  border-color: rgba(0, 82, 204, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
}

.history-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}

.company-profile-section:hover .history-title {
  color: #0066ff;
  text-shadow: 0 0 10px rgba(0, 82, 204, 0.3);
}

.history-description {
  font-size: 1rem;
  color: rgba(42, 42, 42, 0.9);
  line-height: 1.8;
  margin: 0;
  transition: all 0.4s ease;
}

.company-profile-section:hover .history-description {
  color: rgba(26, 26, 46, 1);
}

.history-connector {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(0, 82, 204, 0.4);
  line-height: 1;
  padding: 0.5rem 0;
  margin: 0.5rem 0;
  transition: all 0.4s ease;
}

.company-profile-section:hover .history-connector {
  color: rgba(0, 82, 204, 0.7);
  text-shadow: 0 0 10px rgba(0, 82, 204, 0.5);
}

/* Strength Grid */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}


/* Strength Card - index2.html用 */
.strength-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(204, 51, 51, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card {
  border-color: rgba(204, 170, 0, 0.2) !important;
}

/* グロー効果の背景（マウス位置に追従） */
.strength-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    rgba(204, 51, 51, 0.4) 0%,
    rgba(204, 51, 51, 0.2) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card::before {
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    rgba(204, 170, 0, 0.4) 0%,
    rgba(204, 170, 0, 0.2) 40%,
    transparent 70%
  ) !important;
}

/* シャイン効果（光が流れる） */
.strength-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: top 0.6s ease, left 0.6s ease;
  pointer-events: none;
}

.strength-card:hover {
  transform: translateY(-15px) scale(1.02) rotateX(5deg);
  box-shadow: 
    0 25px 80px rgba(204, 51, 51, 0.15),
    0 0 40px rgba(204, 51, 51, 0.08),
    inset 0 0 30px rgba(204, 51, 51, 0.05);
  border-color: #cc3333;
  background: rgba(255, 255, 255, 1);
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card:hover {
  box-shadow: 
    0 25px 80px rgba(204, 170, 0, 0.5),
    0 0 40px rgba(204, 170, 0, 0.3),
    inset 0 0 30px rgba(204, 170, 0, 0.1) !important;
  border-color: #ccaa00 !important;
}

.strength-card:hover::before {
  opacity: 1;
}

.strength-card:hover::after {
  top: 100%;
  left: 100%;
  transition: top 0.6s ease, left 0.6s ease;
}

.strength-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(204, 51, 51, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(204, 51, 51, 0.3);
  position: relative;
  overflow: hidden;
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card .strength-icon-wrapper {
  background: rgba(204, 170, 0, 0.2) !important;
  border-color: rgba(204, 170, 0, 0.3) !important;
}

/* アイコンのパルス効果 */
.strength-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(204, 51, 51, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card .strength-icon-wrapper::before {
  background: rgba(204, 170, 0, 0.4) !important;
}

.strength-card:hover .strength-icon-wrapper {
  background: rgba(204, 51, 51, 0.4);
  transform: scale(1.15) rotate(5deg);
  border-color: #cc3333;
  box-shadow: 
    0 0 30px rgba(204, 51, 51, 0.6),
    inset 0 0 20px rgba(204, 51, 51, 0.2);
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card:hover .strength-icon-wrapper {
  background: rgba(204, 170, 0, 0.4) !important;
  border-color: #ccaa00 !important;
  box-shadow: 
    0 0 30px rgba(204, 170, 0, 0.6),
    inset 0 0 20px rgba(204, 170, 0, 0.2) !important;
}

.strength-card:hover .strength-icon-wrapper::before {
  width: 120px;
  height: 120px;
}

.strength-card .strength-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(204, 51, 51, 0.5));
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card .strength-icon {
  filter: drop-shadow(0 0 5px rgba(204, 170, 0, 0.5)) !important;
}

.strength-card:hover .strength-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(204, 51, 51, 0.8));
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card:hover .strength-icon {
  filter: drop-shadow(0 0 15px rgba(204, 170, 0, 0.8)) !important;
}

.strength-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.strength-card:hover h4 {
  color: #ff6666;
  text-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
  transform: translateY(-2px);
}

/* Educationページの場合は黄色に上書き */
.education-page .strength-card:hover h4 {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(204, 170, 0, 0.5) !important;
}

.strength-card p {
  color: rgba(42, 42, 42, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-align: left;
}

.strength-card:hover p {
  color: rgba(26, 26, 46, 0.95);
  transform: translateY(-2px);
}

/* リップルアニメーション */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Education Page - Yellow Theme */
/* 白背景で読みやすいよう濃いゴールドに */
body:has(.education-page) .education-page .section-label.education-label,
.education-page .section-label.education-label,
.education-page .education-label {
  color: #6b5a1a !important;
  border-color: rgba(107, 90, 26, 0.35) !important;
  background: rgba(204, 170, 0, 0.12) !important;
}

.education-page .section-header .section-title {
  background: linear-gradient(135deg, #e67e22 0%, #ccaa00 50%, #ffd700 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.education-strength-card,
.education-page .strength-card {
  border-color: rgba(204, 170, 0, 0.2) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.education-strength-card::before,
.education-page .strength-card::before {
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    rgba(204, 170, 0, 0.4) 0%,
    rgba(204, 170, 0, 0.2) 40%,
    transparent 70%
  ) !important;
}

.education-strength-card:hover,
.education-page .strength-card:hover {
  border-color: #ccaa00 !important;
  box-shadow: 
    0 25px 80px rgba(204, 170, 0, 0.15),
    0 0 40px rgba(204, 170, 0, 0.08),
    inset 0 0 30px rgba(204, 170, 0, 0.05) !important;
  background: rgba(255, 255, 255, 1) !important;
}

.education-strength-card:hover .strength-icon-wrapper,
.education-page .strength-card:hover .strength-icon-wrapper {
  background: rgba(204, 170, 0, 0.4) !important;
  border-color: #ccaa00 !important;
  box-shadow: 
    0 0 30px rgba(204, 170, 0, 0.6),
    inset 0 0 20px rgba(204, 170, 0, 0.2) !important;
}

.education-strength-card .strength-icon-wrapper,
.education-page .strength-card .strength-icon-wrapper {
  background: rgba(204, 170, 0, 0.2) !important;
  border-color: rgba(204, 170, 0, 0.3) !important;
}

.education-strength-card .strength-icon,
.education-page .strength-card .strength-icon {
  filter: drop-shadow(0 0 5px rgba(204, 170, 0, 0.5)) !important;
}

.education-strength-card:hover .strength-icon,
.education-page .strength-card:hover .strength-icon {
  filter: drop-shadow(0 0 15px rgba(204, 170, 0, 0.8)) !important;
}

.education-strength-card:hover h4,
.education-page .strength-card:hover h4 {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(204, 170, 0, 0.5) !important;
}

.education-page .card {
  border-color: rgba(204, 170, 0, 0.2) !important;
}

.education-page .card:hover {
  border-color: rgba(204, 170, 0, 0.4) !important;
  box-shadow: 0 20px 60px rgba(204, 170, 0, 0.2) !important;
}

/* ホバー無効：CS for ALL・作る試す発表する・リアルワールド・育めるスキル4つ */
.education-page .card.card-no-hover:hover {
  transform: none !important;
  border-color: rgba(204, 170, 0, 0.2) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}
.education-page .card.card-no-hover:hover::before {
  left: -100% !important;
}

.education-page .card::before {
  background: linear-gradient(90deg, transparent, rgba(204, 170, 0, 0.1), transparent) !important;
}

.education-page .card-icon-wrapper {
  background: rgba(204, 170, 0, 0.1) !important;
  border-color: rgba(204, 170, 0, 0.3) !important;
}

.education-page .card-number {
  color: rgba(204, 170, 0, 0.15) !important;
}

.education-page-header h1 {
  background: linear-gradient(135deg, #e67e22 0%, #ccaa00 50%, #ffd700 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.education-page-header .page-lead {
  color: rgba(42, 42, 42, 0.9) !important;
}

/* 白背景用：サブタイトル・リード・ハイライトボックス */
.education-page .education-subtitle {
  color: #1a1a2e !important;
}

.education-page .education-lead {
  color: rgba(42, 42, 42, 0.85) !important;
}

.education-page .education-highlight-box {
  background: rgba(204, 170, 0, 0.08) !important;
  border: 1px solid rgba(204, 170, 0, 0.2);
}

.education-page .education-highlight-box p,
.education-page .education-highlight-box strong {
  color: #2a2a2a !important;
}

.education-page .education-highlight-box--blue {
  border-left: 4px solid #60a5fa !important;
}

.education-page .section-subtitle {
  color: #1a1a2e !important;
}

.education-page .section-content > p {
  color: rgba(42, 42, 42, 0.9) !important;
}

.education-cta-bg {
  background: linear-gradient(135deg, #ccaa00 0%, #ffd700 50%, #ccaa00 100%) !important;
}

.education-cta-bg::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(204, 170, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%) !important;
}

.education-btn-primary {
  background: linear-gradient(135deg, #ccaa00, #ffd700) !important;
  box-shadow: 0 4px 20px rgba(204, 170, 0, 0.3) !important;
}

.education-btn-primary:hover {
  background: linear-gradient(135deg, #ffd700, #ccaa00) !important;
  box-shadow: 0 6px 30px rgba(204, 170, 0, 0.5) !important;
}

.education-btn-secondary {
  background: transparent !important;
  color: #ccaa00 !important;
  border: 2px solid #ccaa00 !important;
}

.education-btn-secondary:hover {
  background: rgba(204, 170, 0, 0.1) !important;
  box-shadow: 0 4px 15px rgba(204, 170, 0, 0.3) !important;
}

/* Global Page - Blue Theme */
body:has(.global-page) .global-page .section-label.global-label,
.global-page .section-label.global-label,
.global-page .global-label {
  color: #0052cc !important;
  border-color: rgba(0, 82, 204, 0.3) !important;
  background: rgba(0, 82, 204, 0.1) !important;
}

.global-page .section-header .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #0052cc 50%, #0066ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Globalページの場合は青色に上書き */
.global-page .strength-card {
  border-color: rgba(0, 82, 204, 0.2) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.global-page .strength-card::before {
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    rgba(0, 82, 204, 0.4) 0%,
    rgba(0, 82, 204, 0.2) 40%,
    transparent 70%
  ) !important;
}

.global-page .strength-card:hover {
  box-shadow: 
    0 25px 80px rgba(0, 82, 204, 0.15),
    0 0 40px rgba(0, 82, 204, 0.08),
    inset 0 0 30px rgba(0, 82, 204, 0.05) !important;
  border-color: #0052cc !important;
  background: rgba(255, 255, 255, 1) !important;
}

.global-page .strength-card .strength-icon-wrapper {
  background: rgba(0, 82, 204, 0.2) !important;
  border-color: rgba(0, 82, 204, 0.3) !important;
}

.global-page .strength-card .strength-icon-wrapper::before {
  background: rgba(0, 82, 204, 0.4) !important;
}

.global-page .strength-card:hover .strength-icon-wrapper {
  background: rgba(0, 82, 204, 0.4) !important;
  border-color: #0052cc !important;
  box-shadow: 
    0 0 30px rgba(0, 82, 204, 0.6),
    inset 0 0 20px rgba(0, 82, 204, 0.2) !important;
}

.global-page .strength-card .strength-icon {
  filter: drop-shadow(0 0 5px rgba(0, 82, 204, 0.5)) !important;
}

.global-page .strength-card:hover .strength-icon {
  filter: drop-shadow(0 0 15px rgba(0, 82, 204, 0.8)) !important;
}

.global-page .strength-card:hover h4 {
  color: #3399ff !important;
  text-shadow: 0 0 10px rgba(0, 82, 204, 0.5) !important;
}

/* 上段3枚が必ず3列でコンテナ全幅を使う（auto-fit の4列化による空列とズレを防ぐ） */
@media (min-width: 769px) {
  .global-page .global-strength-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.global-page .global-strength-grid .global-other-examples-card {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.global-page .global-other-examples-list {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.global-page .global-other-examples-list li {
  color: rgba(42, 42, 42, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 82, 204, 0.08);
}

.global-page .global-other-examples-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.global-page .card {
  border-color: rgba(0, 82, 204, 0.2) !important;
}

.global-page .card:hover {
  border-color: rgba(0, 82, 204, 0.4) !important;
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.2) !important;
}

.global-page .card::before {
  background: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.1), transparent) !important;
}

.global-page .card-icon-wrapper {
  background: rgba(0, 82, 204, 0.1) !important;
  border-color: rgba(0, 82, 204, 0.3) !important;
}

.global-page .card-number {
  color: rgba(0, 82, 204, 0.15) !important;
}

.global-page-header h1 {
  background: linear-gradient(135deg, #ffffff 0%, #0052cc 50%, #0066ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* 中間システムのリード文：Problem セクションの .section-subtitle と同トーン（ライト背景用） */
.global-page .global-system-intro .section-subtitle {
  margin-top: 0;
  margin-bottom: 3rem;
}

/* Global キービジュアル */
.global-kv-section {
  padding: 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
}

.global-kv-image {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.2);
}

.global-kv-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 中間システム図版：キービジュアルと同じ角丸・シャドウ（図の横幅に合わせる） */
.global-system-image {
  max-width: min(100%, 1200px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.2);
}

.global-system-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .global-kv-section {
    padding: 0;
  }
  
  .global-kv-image {
    border-radius: 8px;
  }

  .global-system-image {
    border-radius: 8px;
  }
}

.global-cta-bg {
  background: linear-gradient(135deg, #0052cc 0%, #0066ff 50%, #0052cc 100%) !important;
}

.global-cta-bg::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 82, 204, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.2) 0%, transparent 50%) !important;
}

.global-btn-primary {
  background: linear-gradient(135deg, #0052cc, #0066ff) !important;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3) !important;
}

.global-btn-primary:hover {
  background: linear-gradient(135deg, #0066ff, #0052cc) !important;
  box-shadow: 0 6px 30px rgba(0, 82, 204, 0.5) !important;
}


.section-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

/* Works Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.works-grid-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1400px) {
  .works-grid-four {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .works-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .works-grid-four {
    grid-template-columns: 1fr;
  }
}

.work-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 107, 53, 0.15);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

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

.work-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 70px rgba(255, 107, 53, 0.3),
    0 0 40px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.work-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.9), rgba(250, 250, 250, 0.95));
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
}

.work-card:hover .work-image img {
  transform: scale(1.15) rotate(1deg);
  filter: brightness(1.1) contrast(1.2);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.work-card:hover .work-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 107, 53, 0.1) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.work-label {
  background: rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  color: #ff6b35;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
  transform: translateY(10px);
  opacity: 0.9;
}

.work-card:hover .work-label {
  background: rgba(255, 107, 53, 0.4);
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.work-description {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(255, 107, 53, 0.12);
}

.work-description p {
  color: rgba(42, 42, 42, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

.work-content {
  padding: 2rem;
}

/* 技術スタックセクション */
.tech-stack-section {
  padding: 6rem 0;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.tech-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.tech-icon-item:hover {
  transform: translateY(-5px);
}

.tech-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.tech-icon-item:hover .tech-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.tech-icon-label {
  font-size: 0.85rem;
  color: #333333;
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .tech-icons {
    gap: 2rem;
  }
  
  .tech-icon {
    width: 48px;
    height: 48px;
  }
  
  .tech-icon-label {
    font-size: 0.75rem;
  }
}

.work-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.work-content p {
  color: rgba(42, 42, 42, 0.8);
  line-height: 1.8;
}

.note {
  text-align: center;
  color: rgba(42, 42, 42, 0.6);
  font-size: 0.9rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* News Section / お知らせ */
.news-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
  position: relative;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 107, 53, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0;
  z-index: 0;
  opacity: 0.3;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.news-label {
  color: #ff6b35;
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.1);
}

.news-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-top: 1.5rem;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #e85a2a 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.news-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.news-item:hover::before {
  left: 100%;
}

.news-item:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
  background: rgba(255, 255, 255, 1);
}

.news-date {
  font-size: 0.95rem;
  color: rgba(42, 42, 42, 0.7);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.news-item:hover .news-date {
  color: #ff6b35;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-category {
  display: inline-block;
  font-size: 0.75rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  transition: all 0.3s ease;
}

.news-item:hover .news-category {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.news-title-item {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.news-item:hover .news-title-item {
  color: #ff8c5a;
}

.news-excerpt {
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.75);
  line-height: 1.6;
  margin: 0.5rem 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-item:hover .news-excerpt {
  color: rgba(42, 42, 42, 0.9);
}

.news-more {
  position: relative;
  z-index: 1;
}

.news-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-item:hover .news-link {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transform: scale(1.1);
}

.news-item:hover .news-link svg {
  transform: translate(3px, -3px);
}

@media (max-width: 768px) {
  .news-section {
    padding: 5rem 0;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .news-date {
    min-width: auto;
    font-size: 0.85rem;
  }

  .news-link {
    align-self: flex-end;
    width: 40px;
    height: 40px;
  }

  .news-link svg {
    width: 20px;
    height: 20px;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cc3333 0%, #ccaa00 50%, #0052cc 100%);
  z-index: 0;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(204, 51, 51, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(204, 170, 0, 0.2) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.83rem, 4vw, 2.83rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-lead {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.cta-content .btn.primary {
  background: linear-gradient(135deg, #cc3333, #ccaa00, #0052cc);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(204, 51, 51, 0.3), 0 0 30px rgba(204, 170, 0, 0.2), 0 0 40px rgba(0, 82, 204, 0.2);
  font-weight: 700;
}

.cta-content .btn.primary:hover {
  background: linear-gradient(135deg, #cc4444, #ccbb33, #0066cc);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(204, 51, 51, 0.4), 0 0 40px rgba(204, 170, 0, 0.3), 0 0 50px rgba(0, 82, 204, 0.3);
}

/* Footer */
.site-footer {
  background: #f5f5f5;
  border-top: 1px solid rgba(255, 107, 53, 0.12);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer-links a {
  color: rgba(42, 42, 42, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.footer-links a:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.12);
  color: rgba(42, 42, 42, 0.6);
  font-size: 0.9rem;
}

/* Privacy Policy Section */
.privacy-section {
  padding: 6rem 0;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.privacy-intro p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin: 0;
}

.privacy-item {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.privacy-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.privacy-item-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
}

.privacy-item-title::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, transparent);
}

.privacy-item-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 1rem;
}

.privacy-item-text:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.privacy-list li {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.privacy-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
}

.privacy-link {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #ff8c5a;
  border-bottom-color: rgba(255, 107, 53, 0.6);
  padding-bottom: 2px;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 107, 53, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #ff6b35;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-item-text {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(42, 42, 42, 0.9);
  line-height: 2;
  margin-bottom: 2rem;
}

.contact-btn {
  display: inline-block;
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.contact-btn:hover {
  background: #e85a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.contact-btn.disabled {
  background: rgba(255, 107, 53, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  pointer-events: none;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

.scroll-reveal[data-delay="0"] {
  transition-delay: 0s;
}

.scroll-reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.scroll-reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.scroll-reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

.scroll-reveal[data-delay="400"] {
  transition-delay: 0.4s;
}

.scroll-reveal[data-delay="500"] {
  transition-delay: 0.5s;
}

/* Scroll Target Effect */
.scroll-target {
  position: relative;
}

.scroll-target::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  opacity: 0;
  animation: scrollIndicator 1s ease-out;
}

@keyframes scrollIndicator {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

/* Smooth Scroll Animation */
html {
  scroll-behavior: smooth;
}

/* Parallax Layer */
.parallax-layer {
  will-change: transform;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }


  .service-large-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-large-content.service-large-reverse {
    direction: ltr;
  }

  .service-large-image {
    height: 400px;
  }

}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 1rem 20px;
  }

  .logo-img {
    height: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 100px 0 2rem;
    overflow-y: auto;
    z-index: 1000;
    margin: 0;
  }

  .global-nav.active {
    display: block !important;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-list li {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.12);
  }

  .sub-nav {
    display: none;
    position: static;
    border: none;
    margin: 0;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: none;
    background: rgba(255, 107, 53, 0.05);
  }

  .sub-nav[style*="display: block"] {
    display: block !important;
  }

  .section {
    padding: 5rem 0;
  }

  .page-lead {
    text-align: left;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-number {
    font-size: 4rem;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .footer-links a {
    padding: 0.4rem 0.8rem;
  }

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

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

  .mission-section,
  .vision-section,
  .company-profile-section {
    padding: 6rem 0;
    min-height: auto;
  }

  .mission-title,
  .vision-title,
  .company-profile-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .vision-title {
    text-align: left;
  }

  .vision-title br {
    display: none;
  }

  .company-info {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }

  .company-info dt {
    grid-column: 1;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 82, 204, 0.3);
  }

  .company-info dd {
    grid-column: 1;
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  .company-info dt:nth-of-type(5),
  .company-info dd:nth-of-type(5),
  .company-info dt:nth-of-type(6),
  .company-info dd:nth-of-type(6) {
    grid-column: 1;
  }

  .service-large-number {
    font-size: 6rem;
  }

  .service-large-image {
    height: 300px;
  }

  .privacy-section {
    padding: 4rem 0;
  }

  .privacy-intro {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .privacy-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .privacy-item-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-column {
    gap: 2rem;
  }

  .contact-item {
    padding: 2rem;
  }

  .origin-content {
    padding: 2rem;
  }

  .origin-sai-logo {
    gap: 0.5rem;
  }

  .origin-sai-letter {
    font-size: 2.5rem;
  }

  .origin-sai-subtitle {
    font-size: 0.9rem;
  }

  .origin-meaning {
    gap: 1.5rem;
  }

  .origin-meaning-item {
    padding: 1.5rem;
  }

  .origin-meaning-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .origin-meaning-letter-large {
    font-size: 3rem;
    min-width: auto;
  }

  .origin-meaning-title {
    font-size: 1.2rem;
  }

  .origin-meaning-subtitle {
    font-size: 0.9rem;
  }

  .origin-meaning-text {
    font-size: 0.9rem;
  }

  .origin-japanese-title {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .origin-japanese-item {
    padding: 1rem;
  }

  .origin-japanese-word {
    font-size: 1.1rem;
  }

  .history-timeline {
    padding: 1.5rem 0;
  }

  .history-timeline-line {
    display: none;
  }

  .history-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .history-year {
    min-width: auto;
    text-align: center;
    font-size: 1.5rem;
  }

  .history-content {
    padding-left: 0;
    width: 100%;
  }

  .history-dot {
    left: calc(60px + 1.5px - 6px - 3rem - 3px);
    width: 12px;
    height: 12px;
  }

  .history-text {
    padding: 1.25rem;
  }

  .history-title {
    font-size: 1.1rem;
  }

  .history-description {
    font-size: 0.9rem;
    text-align: left;
  }

  .history-connector {
    font-size: 1.2rem;
    padding: 0.25rem 0;
    margin: 0.25rem 0;
  }
}

