@charset "UTF-8";
/* ************************************** _
タイトル：about.css
概要：中日本モビリティ about用css
作成：2026.03.10
更新：2026.03.10
_ ************************************** */
/* ************************************** _
タイトル：_about.scss
概要：中日本モビリティ about用
_ ************************************** */
/* ========================================
   下層ヒーロー
======================================== */
.page-hero--about {
  background-image: url("../images/home/top_aboutus_bg.jpg");
}

/* ========================================
   about intro
======================================== */
.about-intro-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  text-align: center;
}

.about-intro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  /* 1.25remから1.1remへ縮小 */
  line-height: 2;
  /* 2に戻す */
  color: var(--text-main);
  font-weight: 500;
  /* 500に戻す */
}

/* Dealer List Styles */
.dealer-list {
  display: flex;
  flex-direction: column;
  /* 縦並びに変更 */
  align-items: center;
  gap: 12px;
  /* 縦の間隔を調整 */
  margin: 30px auto;
  padding: 0;
  list-style: none;
}

.dealer-list li {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  /* 赤からメイン文字色に変更 */
  position: relative;
  padding-left: 1.5rem;
  letter-spacing: 0.02em;
}

.dealer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 1px;
}

/* Intro Dealer Links (Simplified) */
.intro-dealer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.dealer-link-item {
  flex: 1;
  max-width: 320px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dealer-link-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .intro-dealer-links {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
  .dealer-link-item {
    max-width: 100%;
  }
}
/* Network Visual Section */
.network-visual-section {
  padding: 120px 0;
  background-color: #f0f7f4;
  /* Mint green tint */
  position: relative;
  overflow: hidden;
}

.network-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* Gapを広げて高級感を出す */
  align-items: center;
}

.network-map-container {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.map-image {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

/* ========================================
   merits section
======================================== */
.merits-section {
  padding: 120px 0;
  background-color: white;
}

.merits-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.merit-item-card {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.merit-item-card:hover {
  background: white;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.merit-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.merit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-color);
}

.merit-item-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.merit-item-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.network-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.network-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.network-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.point-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.point-number {
  background: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Feature Blocks (from screenshot) */
.feature-block-section {
  padding: 120px 0;
  background-color: white;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.is-reverse {
  flex-direction: row-reverse;
}

.feature-image-side {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  /* 子要素の絶対配置のため追加 */
}

.feature-image-side img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image Slideshow Styles */
.image-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  /* 車両が綺麗に見える比率に設定 */
  background-color: #f5f5f5;
}

.image-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: none;
  /* アニメーションで制御するため */
  animation: imageFadeLoop 20s infinite;
}

.image-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.image-slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.image-slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.image-slideshow img:nth-child(4) {
  animation-delay: 12s;
}

.image-slideshow img:nth-child(5) {
  animation-delay: 16s;
}

@keyframes imageFadeLoop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.feature-content-side {
  flex: 1;
}

.feature-meta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.feature-title-l {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.feature-lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-main);
}

.feature-sub-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sub-point-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.sub-point-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 1024px) {
  .feature-block {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .feature-block.is-reverse {
    flex-direction: column-reverse;
  }
  .feature-image-side,
  .feature-content-side {
    width: 100%;
  }
  .feature-title-l {
    font-size: 1.8rem;
  }
}
/* Closing Section */
.closing-section {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.closing-text {
  max-width: 800px;
  margin: 0 auto;
}

.closing-message {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .network-visual-grid {
    grid-template-columns: 1fr;
  }
  .merits-grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-hero {
    height: 40vh;
  }
  .about-intro-text {
    font-size: 1.1rem;
  }
  .closing-message {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=_maps/about.css.map */
