/* ===========================
   CSS カスタムプロパティ
   =========================== */
:root {
  --color-primary: #004f7a;
  --color-yellow: #ffc400;
  --color-blue-accent: #00a5ff;
  --color-dark: #212121;
  --color-white: #ffffff;
  --color-text: #212121;
  --color-text-light: #666666;
  --font-main: 'Yu Gothic', 'YuGothic', 'Yu Gothic Medium', sans-serif;
  --content-width: 1200px;
}

/* ===========================
   リセット & ベース
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   ボタン
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  width: 151px;
  height: 45px;
  border-radius: 22px;
  font-family: 'Yu Gothic', 'YuGothic', 'Yu Gothic Medium', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
}

.btn-yellow-pill {
  background: var(--color-yellow);
  color: var(--color-white);
  width: 151px;
  height: 45px;
  border-radius: 22px;
  font-family: 'Yu Gothic', 'YuGothic', 'Yu Gothic Medium', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
}

.btn-recruit {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.btn-recruit-img {
  display: block;
  height: 68px;
  width: auto;
}

.service-btn {
  display: inline-block;
  margin-top: 58px;
  cursor: pointer;
  flex-shrink: 0;
}

.service-btn-img {
  display: block;
  height: 50px;
  width: auto;
}

.btn-more {
  background: var(--color-yellow);
  color: var(--color-white);
  width: 400px;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}

/* ===========================
   セクションタイトル共通
   =========================== */
.section-en-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-ja-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

.section-en-title--dark {
  color: var(--color-dark);
}

.section-ja-title--dark {
  color: var(--color-dark);
}

/* ===========================
   ヘッダー
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  height: 100px;
  box-shadow: none;
}

.header-inner {
  width: 100%;
  padding: 23px 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  box-sizing: border-box;
}

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

.header-nav {
  display: flex;
  margin-left: auto;
  margin-right: 48px;
}

.header-nav ul {
  display: flex;
  gap: 24px;
}

.header-nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 4px;
}

.header-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width 0.2s;
}

.header-nav ul li a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-items: center;
}

/* ===========================
   MV（メインビジュアル）
   =========================== */
.mv {
  margin-top: 100px;
  background: var(--color-white);
  height: 742px;
  position: relative;
  overflow: hidden;
}

.mv-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.mv-left {
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  padding-left: 80px;
  padding-top: 164px;
}

.mv-heading {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 40px;
}

.mv-sub {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 23px;
  line-height: 1.5;
}

.mv-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  margin-bottom: 57px;
}

.mv-right {
  position: absolute;
  right: 0;
  top: 27px;
}

.mv-photo {
  display: block;
  height: 635px;
  width: auto;
  object-fit: cover;
}

.mv-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 3;
}

.mv-scroll-circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   SERVICE
   =========================== */
.service {
  background: var(--color-white);
  padding-bottom: 0;
}

.service-header {
  text-align: center;
  padding: 80px 80px 64px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-img {
  height: 387px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: stretch;
}

.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.service-card-overlay {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 40px;
  color: var(--color-white);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  margin-bottom: 40px;
  line-height: 1.2;
}

.service-card-overlay p {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  line-height: 1.5;
}

/* ===========================
   ドライバー大募集
   =========================== */
.recruit {
  position: relative;
  height: 821px;
  overflow: hidden;
}

.recruit-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.recruit-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 20, 0.6);
}

.recruit-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 63px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-heading {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.recruit-body {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.recruit-map {
  flex-shrink: 0;
  padding-left: 109px;
}

.map-img {
  width: 500px;
  height: auto;
  object-fit: contain;
}

.recruit-text {
  color: var(--color-white);
  padding-left: 80px;
}

.recruit-sub {
  font-size: 24px;
  font-weight: 500;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  margin-bottom: 34px;
  opacity: 0.9;
}

.recruit-areas {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.area-row-img {
  display: block;
  height: auto;
  width: auto;
  align-self: flex-start;
}

.area-cities {
  display: none;
}





/* ===========================
   有料職業紹介サービス
   =========================== */
.placement {
  background: linear-gradient(180deg, #fff5d5 0%, #9cdcff 100%);
  padding: 100px 0;
}

.placement-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 80px;
}

.placement-heading {
  text-align: center;
  margin-bottom: 8px;
}

.placement-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.placement-heading p {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-dark);
}

/* 比較カード */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.comparison-img {
  display: block;
  width: 100%;
  height: auto;
}

.comparison-divider {
  text-align: center;
  padding: 60px 0 11px;
}

.comparison-divider h3 {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
}

/* スマホ専用要素はデスクトップで非表示 */
.benefits-subtitle-mobile,
.benefits-cards-mobile {
  display: none;
}

/* いい意味でセクション */
.benefits {
  padding-top: 0;
}

.benefits-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.4;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.benefit-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
  width: 419px;
  height: 196px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.benefit-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

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

/* ===========================
   NEWS
   =========================== */
.news {
  background: var(--color-white);
  padding: 100px 0;
}

.news-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 80px;
}

.news-header {
  text-align: center;
  margin-bottom: 56px;
}

.news-list {
  border-top: 1px solid #e0e0e0;
  margin-bottom: 56px;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.15s;
}

.news-item:hover {
  background: #f9f9f9;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
  border-radius: 4px;
}

.news-item-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.news-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
}

.news-arrow {
  font-size: 16px;
  color: var(--color-dark);
  flex-shrink: 0;
}

.news-more {
  text-align: center;
}

/* ===========================
   CTAセクション（3分割）
   =========================== */
.cta-section {
  display: flex;
  flex-direction: column;
}

.cta-top {
  display: flex;
  height: 235px;
}

.cta-half {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 80px 80px 0 80px;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
}

.cta-half:hover {
  opacity: 0.9;
}

.cta-yellow {
  background: var(--color-yellow);
}

.cta-navy {
  background: var(--color-primary);
}

.cta-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cta-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.cta-circle-yellow {
  background: none;
}

.cta-circle-navy {
  background: none;
}

.cta-circle-dark {
  background: none;
}

.cta-icon-img {
  display: block;
  width: auto;
  height: auto;
}

/* デスクトップではモバイル専用要素を非表示 */
.cta-icon-mobile { display: none; }
.cta-arrow-mobile { display: none; }

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-name {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  color: var(--color-white);
  line-height: 1.2;
}

.cta-desc {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.cta-arrow {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  object-fit: contain;
  flex-shrink: 0;
  z-index: 1;
}

@keyframes arrow-slide {
  0%   { transform: translateY(-50%) translateX(0);    opacity: 1; }
  40%  { transform: translateY(-50%) translateX(20px); opacity: 0; }
  41%  { transform: translateY(-50%) translateX(-20px); opacity: 0; }
  100% { transform: translateY(-50%) translateX(0);    opacity: 1; }
}

.cta-half:hover .cta-arrow,
.cta-bottom:hover .cta-arrow {
  animation: arrow-slide 0.6s ease-in-out 1;
}

.cta-bottom {
  height: 235px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
  cursor: pointer;
}

.cta-bottom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.cta-bottom-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* ===========================
   フッター
   =========================== */
.footer {
  background: var(--color-white);
  border-top: 1px solid #e0e0e0;
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.footer-top {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-logo-area {
  flex-shrink: 0;
  width: 280px;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 30px;
}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.sns-link:hover {
  opacity: 0.75;
}

.sns-icon-img {
  display: block;
  width: auto;
  height: auto;
}

.footer-nav {
  flex: 1;
  display: flex;
  gap: 80px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-col ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

/* ===========================
   ハンバーガーボタン（デスクトップ非表示）
   =========================== */
.hamburger-btn {
  display: none;
}

/* モバイル専用：写真下のドライバー募集ボタン（デスクトップ非表示） */
.mv-recruit-mobile {
  display: none;
}

/* ===========================
   モバイルメニュー
   =========================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mobile-menu-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-white);
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: 1px solid #000;
  font-size: 18px;
  cursor: pointer;
  color: #000;
  width: 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.mobile-menu-logo {
  margin-bottom: 24px;
}

.mobile-menu-logo-img {
  width: 145px;
  height: auto;
}

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 151px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav ul .mm-text-link a {
  font-size: 12px;
  font-weight: 700;
  color: #004F7A;
  font-family: var(--font-main);
  text-align: center;
  display: block;
  width: 151px;
}

.mobile-menu-nav ul .mm-btn-item {
  width: 151px;
}

.mm-btn-outline,
.mm-btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 37px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  text-align: center;
  cursor: pointer;
}

.mm-btn-outline {
  border: 1.5px solid #004F7A;
  color: #004F7A;
  background: #fff;
}

.mm-btn-yellow {
  border: none;
  background: #F5C125;
  color: #004F7A;
}

/* ===========================
   スマートフォン用レスポンシブ（〜768px）
   =========================== */
@media (max-width: 768px) {

  /* ヘッダー */
  .header {
    height: 40px;
  }

  .header-inner {
    padding: 0 15px;
    height: 40px;
  }

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

  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding-right: 15px;
    width: 37px;
    height: 22px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .hamburger-btn span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  .hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* MV */
  .mv {
    margin-top: 20px;
    height: auto;
    overflow: visible;
  }

  .mv-inner {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }

  .mv-left {
    padding: 3em 1em;
    position: static;
    width: 100%;
    box-sizing: border-box;
  }

  .mv-heading {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
  }

  /* デスクトップ版ボタンをモバイルで非表示 */
  .mv-left .btn-recruit {
    display: none;
  }

  /* モバイル専用：写真下のドライバー募集ボタン */
  .mv-recruit-mobile {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }

  .mv-sub {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .mv-label {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .mv-right {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }

  .mv-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .mv-scroll {
    display: none;
  }

  /* SERVICE */
  .service-header {
    padding: 50px 20px 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card-img {
    height: 220px;
  }

  /* 事業内容テキスト色 */
  .service-header .section-ja-title {
    color: #212121;
  }

  .service-card-overlay {
    padding: 45.75px 20px 15px;
  }

  .service-card-overlay h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .service-card-overlay p {
    font-size: 14px;
  }

  /* 詳しく見るボタン（画像非表示→CSSテキストボタン） */
  .service-btn-img {
    display: none;
  }

  .service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 244px;
    height: 30px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    background: #F5C125;
    margin-top: 31px;
    text-decoration: none;
  }

  .service-btn::after {
    content: "詳しく見る";
  }

  /* 車両リース事業のボタン（ネイビー） */
  .service-card:nth-child(2) .service-btn {
    background: #004F7A;
    color: #FFFFFF;
  }

  /* ドライバー大募集 */
  .recruit {
    height: auto;
    overflow: visible;
  }

  .recruit-inner {
    height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .recruit-heading {
    font-size: 22px;
    padding: 0 20px;
  }

  .recruit-body {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
  }

  .recruit-map {
    padding-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .map-img {
    width: 80%;
    max-width: 320px;
  }

  .recruit-text {
    padding-left: 0;
    padding: 0;
    text-align: left;
  }

  .recruit-sub {
    font-size: 14px;
    text-align: left;
    padding-left: 24px;
  }

  .recruit-areas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    gap: 10px;
  }

  .area-item {
    display: flex;
    flex-direction: column;
  }

  .area-row-img {
    display: block;
    width: auto;
    height: auto;
    align-self: flex-start;
  }

  .area-cities {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    padding-left: 48px;
    padding-top: 4px;
    text-align: left;
  }

  /* 有料職業紹介サービス */
  .placement {
    padding: 0;
  }

  .placement-inner {
    padding: 0 20px 32px;
  }

  .placement-heading {
    text-align: center;
    padding-top: 32px;
  }

  .placement-heading h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .placement-heading p {
    font-size: 12px;
    font-weight: 500;
  }

  .comparison {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .comparison-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .comparison picture:first-child .comparison-img {
    width: 100%;
    height: auto;
  }

  .comparison picture:last-child .comparison-img {
    width: 100%;
    height: auto;
  }

  .comparison-divider {
    padding: 24px 0;
  }

  .comparison-divider h3 {
    font-size: 21px;
    font-weight: 700;
  }

  /* Benefits */
  .benefits {
    margin-top: 32px;
  }

  .benefits-heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding-top: 0;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .benefits-subtitle-mobile {
    display: block;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    padding: 24px 0;
    color: var(--color-dark);
    line-height: 1.4;
  }

  .benefits-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
  }

  .benefit-card-img-mobile {
    width: 392px;
    height: 197px;
    display: block;
    object-fit: cover;
  }

  .benefits-grid {
    display: none;
  }

  .benefit-card {
    width: 100%;
    height: auto;
    padding: 20px 16px;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .benefit-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .benefit-icon-img {
    width: 48px;
    height: 48px;
  }

  /* NEWS */
  .news {
    background: none;
    padding: 0;
  }

  .news-inner {
    padding: 0 20px 32px;
  }

  .news-header {
    margin-bottom: 24px;
    text-align: center;
  }

  .news-header .section-en-title {
    color: #004F7A;
    padding-top: 32px;
    font-size: 32px;
  }

  .news-list {
    margin-bottom: 32px;
	padding-left: 0px;  
  }

  .news-more {
    margin-top: 0;
    padding-bottom: 0;
  }

  .btn-more {
    width: 100%;
    max-width: 320px;
  }

  /* CTA */
  .cta-top {
    flex-direction: column;
  }

  /* モバイルではデスクトップアイコン・矢印を非表示、モバイル用を表示 */
  .cta-icon-desktop { display: none; }
  .cta-arrow-desktop { display: none; }
  .cta-icon-mobile { display: block; }
  .cta-arrow-mobile { display: block; }

  .cta-half {
    height: 103px;
    min-height: unset;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
  }

  .cta-content {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
  }

  .cta-circle {
    position: static;
    width: 20px;
    height: 20px;
    margin-left: 24px;
    flex-shrink: 0;
    transform: none;
  }

  .cta-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cta-text {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    gap: 2px;
  }

  .cta-name {
    padding-left: 0;
    padding-top: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
  }

  .cta-desc {
    padding-left: 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
  }

  .cta-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
  }

  /* 採用情報 */
  .cta-bottom {
    height: 107px;
    min-height: unset;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .cta-bottom-content {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .cta-bottom .cta-circle {
    position: static;
    width: 20px;
    height: 20px;
    margin-left: 24px;
    flex-shrink: 0;
    transform: none;
    z-index: auto;
  }

  .cta-bottom .cta-name {
    padding-left: 0;
    padding-top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: left;
  }

  .cta-bottom .cta-desc {
    padding-left: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: left;
  }

  .cta-bottom .cta-arrow {
    z-index: 2;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
  }

  /* フッター */
  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-logo-area {
    width: 100%;
  }

  .footer-logo-img {
    height: 40px;
    margin-bottom: 14px;
  }

  .footer-address {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav-col ul {
    gap: 12px;
  }

  .footer-nav-col ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* セクションタイトル */
  .section-en-title {
    font-size: 28px;
  }

  .section-ja-title {
    font-size: 14px;
  }
}
