/* 表紙 */
body {
  overflow-x: hidden;
}

/* ==== NAVIGATION MENU ==== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 100;
  display: flex;
  justify-content: space-between; /* ← ここを修正 */
  align-items: center;
  background: transparent;
}

.logo {
  height: 20px !important;
  vertical-align: top;
  margin-top: -20px;
  margin-left: -23px;
}

.site-header a { 
display: inline-block;
  }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px; /* ← 間隔も広げて横並びを保つ */
  list-style: none;
  margin: 0; /* ← これでmargin-left:920pxを消す */
  flex-wrap: nowrap; /* ← 折り返し防止 */
  margin-top: -23px;
  margin-right: -15px !important;
}

/* テキストリンクだけにマージン調整 */
.nav-menu li:not(:last-child) a {
  margin-top: 10px; /* ← 調整用。必要に応じて微調整 */
}

.nav-menu ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 18px !important;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

/* テキストリンクだけにアンダーラインつける（画像リンクは除外） */
.nav-menu a:not(.logo-link)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #63a2ff;
  transition: width 0.3s ease;
}

/* テキストリンク：ホバーでズーム＋アンダーライン */
.nav-menu a:hover:not(.logo-link) {
  transform: scale(1.05);
}

.nav-menu a:hover:not(.logo-link)::after {
  width: 100%;
}

.officialsite {
  height: 45px;
  transform: translateY(-8px);
  margin-top: 13px;
  margin-left: 0px;
}




/* ==== ABOUTセクション ==== */
.about {
  margin-top: -5px;
  padding: 100px 40px;
  background-color: #fff;
}

.about-title {
  width: 200px;
}

.about-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
}

/* ==== FIRST VIEW ==== */
.first-view {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.firstview::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 100;
}

.wave-first-view {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100vh;
}

.fv-text {
  position: absolute;
  left: 10%;
  bottom: 20%;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.mask-text {
  display: inline-block;
  background: linear-gradient(90deg, #B8E6FC 50%, #fff 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mask-text br {
  line-height: 1.2;
}

/* ==== アニメーション・表示処理 ==== */
.overlay-wave.finished {
  transform: none !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.firstview,
.overlay-wave,
.slideshow-bg,
.car-icon {
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.overlay-wave {
  animation-fill-mode: forwards;
}

.main-content {
  opacity: 0;
  position: relative;
  z-index: 1;
  transition: opacity 1s ease;
}

.opening-finished .main-content {
  opacity: 1;
}


/* 追従バナー */
.floating-banner {
  width: 140px;
  height: 140px;
  bottom: 20px;
  right: 20px;
  position: fixed;
  z-index: 9999;
  opacity: 1;
}

.banner-circle {      /* ← アイコン∔テキストセット */
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: -20px;
  margin-top: -30px;
}

.banner-main {
  width: 100%;
  height: auto;
  display: block;
}

.circle-icon { /* ← アイコン */
  position: absolute;
  top: 3px;
  left: 57%;
  transform: translateX(-50%);
  width: 155px;
  height: auto;
  z-index: 2;
}

.circle-text { /* ← テキスト */
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 230px;
  animation: rotateText 20s linear infinite;
  transform-origin: center center;
  z-index: 3;
  pointer-events: none;
  transform: translate(-35px, -35px) !important;
}

.circle-text text {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  fill: #002c3e;
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: 2px;
  transform-origin: center center;
  animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
  }
}


.business-hero {
  position: relative;
  overflow: hidden;
  background-image: url("images/business1.svg");
  background-size: cover;
  background-position: center;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-title {
  position: absolute;
  bottom: -90px;               /* お好みで上下位置調整 */
  right: 0;                   /* 右端からはみ出さない */
  padding-right: 20px;        /* 内側の余裕（任意） */
  top: 170px;

 font-size: clamp(280px, 10vw, 580px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.15);
  font-family: 'Helvetica Neue', sans-serif;

  transform: translateX(-100%);
  opacity: 0;
  animation: slideInRight 1.5s ease-out forwards;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* テキスト文章 */
.concept {
  padding: 80px 20px;
  background-color: #fff; /* 必要に応じて薄いグレーなど */
}

.concept__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;       /* ライン分の余白 */
}

.concept__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;               /* ラインの太さ */
  height: 100%;
  background-color: #ccc;   /* ラインの色 */
}

.concept__title {
  font-size: 32px;          /* お好みで調整 */
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 24px;
}

.concept__body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* アニメーション定義 */
@keyframes fadeUpOnLoad {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ページ読み込み時に下から上へふわっと表示 */
.animate-on-load {
  opacity: 0; /* 初期非表示にしておく */
  animation: fadeUpOnLoad 0.9s ease-out forwards;
}


/* レンタカー事業 */
/* 共通リセット */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ① service-hero */
.service-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* ← 230pxはでかすぎるから調整 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.service-hero__image {
  flex: 1;
  text-align: left;
}
.service-hero__title {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 24px;
}
.service-hero__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.service-hero__image {
  flex: 1;
  text-align: right;
}
.service-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 読み込み時アニメーション */
.fade-up-on-load {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.service-hero__content {
  flex: 1;
}


/* １レンタカー事業の特徴 */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #f8f9fa;
  margin-bottom: 80px;
}

.features-heading {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
  color: #001f5c;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}

/* アニメーション */
.animate-fade {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}


/* 01　レンタカー事業 */
.service-hero__label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  color: #007acc;
  font-weight: bold;
}

.service-hero__number {
  display: inline-block;
  font-size: 2.5rem;       /* お好みでサイズ調整 */
  line-height: 1;
}

.service-hero__name {
  font-size: 1rem;
  line-height: 1.4;
}

.service-hero__slash {
  opacity: 0.7;
  margin-left: 4px;
  font-size: 0.9rem;
}


/* CSS：横スクロールトラック */
.services-ticker {
  overflow: hidden;      /* はみ出しを隠す */
  padding: 16px 0;
}

.services-ticker__track {
  display: inline-block; /* 中身の幅まで伸びるように */
  white-space: nowrap;   /* 改行禁止 */
  width: max-content;    /* テキスト幅に合わせる */
  animation: ticker 30s linear infinite;
}

.services-ticker__item {
  display: inline-block;
  margin-right: 4rem;    /* アイテム間の余白 */
  color: rgba(204, 204, 204, 0.3);           /* 薄グレー */
  font-weight: bold;
  font-size: 5rem;
}

/* 幕送りアニメーション：0→-50% */
@keyframes ticker {
  0%   { transform: translateX(0);     }
  100% { transform: translateX(-50%);  }
}


/* 車両卸売事業 */
.service-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.service-hero__image {
  flex: 1;
  text-align: left;
  margin-bottom: 10px;
}
.service-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-hero__content {
  flex: 1;
  text-align: left;
}

.service-hero__label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  color: #007acc;
  font-weight: bold;
}
.service-hero__number {
  font-size: 2.5rem;  /* 数字だけ大きく */
  line-height: 1;
  transform: none;    /* 斜めOFF */
}
.service-hero__name {
  font-size: 1rem;
  line-height: 1.4;
}
.service-hero__slash {
  opacity: 0.7;
  margin-left: 4px;
  font-size: 0.9rem;
}

.service-hero__title {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 32px;
}
.service-hero__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* ②車両卸売事業の特徴 */
.features {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f8f9fa;

}

.features__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #001f5c;
  text-align: center;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features__item {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.features__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: block;
}

.features__item h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: #001f5c;
}

.features__item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}


/* レンタカー＋車両卸売タイレルのアニメーション */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.service-hero {
  padding: 100px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.animated-heading.visible {
  opacity: 1;
  transform: translateY(0);
}


/* 枠を消すために */
.service-hero {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.service-hero__content,
.service-hero__image {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}



/* フッター */
.site-footer {
  position: relative;
  background-color: #0B1E32;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(#0B1E32, #0B1E32);
  background-repeat: repeat;
  background-size: 20px 20px, cover;
  padding: 60px 20px 20px;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-top {
  text-align: center;
  margin-bottom: 40px;
}
.footer-top h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.footer-top p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 40px 0;
}

.footer-logo {
  max-width: 280px;
}
.footer-logo img {
  width: 160px;
  margin-bottom: 10px;
}
.footer-logo p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-icon-group {
  margin-top: 10px;
}
.footer-icon-group a {
  display: inline-block;
  margin-right: 12px; /* アイコン間の余白 */
}
.footer-icon-group img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* 白アイコン */
}

.footer-nav {
  display: flex;
  margin-left: 0px;
  gap: 70px;
}
.footer-nav h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  font-size: 14px;
  margin-bottom: 6px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 130px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease;
}

.footer-nav a:hover {
  border-bottom: 1px solid #fff;
}

/* □ LINEバナーとのスペースを調整したい場合は以下を追加 */
.site-footer {
  margin-top: 40px; /* 必要に応じて調整 */
}



/* line・Instagramアイコン */
.footer-icon-group a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-icon-group a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.sns-icon {
  width: 25px !important;
  height: 25px !important;
}


/* モバイル対応 */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}




/* □ LINEバナーとのスペースを調整したい場合は以下を追加 */
.site-footer {
  margin-top: 40px; /* 必要に応じて調整 */
}

/* line・Instagramアイコン */
.footer-icon-group a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-icon-group a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.sns-icon {
  width: 38px !important;
  height: 38px !important;
}


/* モバイル対応 */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}





/* ========================================================= */
/*    モバイル版・ハンバーガーメニュー・ファーストビュー画像      /* 
/* ========================================================= */
.nav-menu {
  display: flex;
  gap: 20px;
}
.hamburger,
.mobile-nav {
  display: none;
}

/* ===== モバイル表示（768px以下） ===== */
@media screen and (max-width: 768px) {
  html, body {
    font-size: 14px;
    overflow-x: hidden;
  }

  .logo{
    width: 190px;
    margin-top: 10px;
    margin-left: -5px;
   } 

  /* ヘッダー */
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 999;
  }

  /* PC用ナビ非表示 */
  .nav-menu {
    display: none !important;
  }

  /* ハンバーガーアイコン */
  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 22px;
    z-index: 10000;
    cursor: pointer;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { bottom: 0; }

  /* モバイルナビメニュー */
 .mobile-nav {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex !important;
}

  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
  }

  .mobile-nav a {
    display: block;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    width: 100%;
  }

  .mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}




/* --------------------------- */
/* 　モバイル対応・タイトル　　　 */
/* --------------------------- */
/* モバイル用高さ */
@media (max-width: 768px) {
  .business-hero {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    width: 100%;         /* ← 100vwではなく100% */
    height: 30vh;       /* ← 画面いっぱい */
    overflow: hidden;
  }
}

/* businessのサイズ */
@media screen and (max-width: 768px) {
  .business-title {
    position: absolute;
    top: 220px;
    left: 130px;
    font-size: 4.7rem;
    font-weight: 300;
    font-family: 'Helvetica Neue', sans-serif;
    z-index: 10;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2); /* ← 白だけど少し透ける */
    text-shadow: none !important;
  font-family: 'Helvetica Neue', sans-serif;
  }
}

@media screen and (max-width: 768px) {
.floating-banner{
   display: none;
 }
}





/* --------------------------- */
/* 　モバイル対応・フッター　　　 */
/* --------------------------- */
@media screen and (max-width: 768px) {
  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 12px;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
  }

  .footer-nav > div {
    flex: 1;
    min-width: 0;
    margin: 0 4px;
  }

  .footer-nav h3 {
    font-size: 13px;
    margin-bottom: 6px;
    white-space: nowrap;
    text-align: left;
  }

  .footer-nav li {
    font-size: 11px;
    white-space: nowrap;
    margin-bottom: 4px;
    text-align: left;
  }

  .footer-nav a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer-logo {
    text-align: left;
    width: 100%;
    padding-left: 12px;
  }

  .footer-logo img {
    display: block;
    margin-bottom: 8px;
  }

  .footer-logo p {
    margin: 2px 0;
    font-size: 12px;
    text-align: left;
  }

  .footer-icon-group {
    justify-content: flex-start;
    padding-left: 12px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 10px;
    margin-top: 16px;
    padding-bottom: 8px;
  }

  .site-footer {
    font-size: 11px;
  }
}



/* ------------------------------ */
/* 　　モバイル対応・地域の足　　　 */
/* ------------------------------ */
@media screen and (max-width: 768px) {
  .concept__inner {
    padding: 24px 16px;
  }

  .concept__title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .concept__body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
}



/* ------------------------------ */
/* 　モバイル対応・サービス　　 　　 */
/* ------------------------------ */
@media screen and (max-width: 768px) {
  .service-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 24px;
  }

  .service-hero__content {
    width: 100%;
  }

  .service-hero__label {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .service-hero__number {
    font-size: 20px;
    font-weight: bold;
    color: #0071ce;
  }

  .service-hero__name {
    font-size: 14px;
    font-weight: 600;
  }

  .service-hero__slash {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
  }

  .service-hero__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .service-hero__text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .service-hero__image img {
    height: auto;
    border-radius: 8px;
    top: -400px !important;
  }

  .service-hero__image2 img {
    height: auto;
    border-radius: 8px;
    margin-top: -625px !important;
    width: 340px;
    margin-left: 15px;
  }

  .services-ticker {
    margin-top: -70px;
  }
}






/* ---------------------------------------- */
/* 　モバイル対応・レンタカーサービスの特徴　　 */
/* ---------------------------------------- */
















/* モバイル版 */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mobile-nav {
  display: none !important;
}