@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 170%;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 11px;
  }
}

a {
  text-decoration: none;
  color: #222222;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

* {
  box-sizing: border-box;
}

img {
  height: auto;
  max-width: 100%;
}

/*WEBフォント*/
@font-face {
  font-family: "smsfont";
  src: url(../font/smsfont.woff2) format("woff2");
}
.smsfont {
  font-family: "smsfont";
  font-size: 80px;
}

.section {
  padding: 60px 0;
}

/* ナビゲーション*/
@media screen and (min-width: 768px) {
  .header-navi {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
  }
  .header-navi a.header-logo {
    width: 25%;
  }
  .header-navi > ul {
    width: 75%;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }
  .header-navi > ul > li {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
    margin-left: 10px;
  }
  .header-navi > ul > li > a {
    padding: 5px;
    font-weight: bold;
    display: block;
  }
  .header-navi > ul > li > a img.toiawase {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* .navbar 初期状態は右に隠す */
  .header-navi-link {
    position: fixed;
    top: 0;
    right: -300px; /* メニュー幅分だけ右に隠す */
    width: 300px;
    height: 100%;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 30px;
  }
  .header-navi-link li a {
    padding: 10px 10px 10px 15px;
    display: block;
  }
  .header-navi-link li a:not(.toiawase):before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    font-size: 12px;
    margin-right: 5px;
  }
  .header-navi-link li a.toiawase {
    padding-left: 10px;
  }
  .header-navi-link .balloonoya {
    margin-bottom: 20px;
  }
  /* .navbar.show で右からスライドイン */
  .header-navi-link.show {
    right: 0;
  }
  /* プルダウンの初期状態 */
  .balloon-child {
    display: none;
  }
  /* 開いたとき */
  .balloon-child.open {
    display: block;
  }
}
.container {
  padding: 0 20px;
  max-width: 100%;
  width: 1000px;
  margin: 0 auto;
}

.nav_yellow:hover {
  color: #f0b414;
}

.blue,
.blue2 {
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 15px !important;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  color: #fff;
}

.blue {
  background-color: #46d2dc;
}

.blue2 {
  background: #3282c8;
}

/* header */
.header {
  height: 80px;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 5px;
    height: 60px;
  }
  .header .header-logo {
    width: 80%;
    display: block;
  }
}
.header.fixed {
  top: 0;
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.header.change-color {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}

.balloonoya {
  position: relative;
}
@media screen and (min-width: 768px) {
  .balloonoya:hover .balloon-child {
    display: block;
  }
}

.balloon-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .balloon-child {
    position: absolute;
    font-size: 16px;
    background: #fff;
    width: 220px;
    padding: 10px 15px;
    border-radius: 10px;
    top: 50px;
    border: 1px solid #777;
    z-index: 100;
  }
  .balloon-child:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    background: #ffffff;
    border-left: 1px solid #777;
    border-bottom: 1px solid #777;
    transform: rotate(135deg);
    top: -6px;
    content: "";
  }
}
.balloon-child li a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0 5px;
  color: #444444;
}
.balloon-child li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  font-size: 12px;
  margin-right: 5px;
}
.balloon-child li a:hover {
  opacity: 1;
  color: #3282c8;
}
.balloon-child.yellow2_balloon {
  width: 150px;
}

/*レンタカーナビのアコーディオンメニュー*/
.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 5px 0 5px 15px;
  font-size: 16px;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  color: #3282c8;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title:after {
  content: "";
  position: absolute;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 6px;
  height: 6px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: solid 2px #3282c8;
  border-right: solid 2px #3282c8;
  transform: rotate(45deg);
}

.accordion-title.open:after {
  transform: rotate(-45deg);
}

.accordion-content {
  display: none;
  padding-left: 15px;
}

/*採用情報ナビのアコーディオンメニュー*/
.accordion-container2 {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container2 .accordion-title2 {
  display: block;
  position: relative;
  margin: 0;
  padding: 5px 10px 10px 10px;
  font-size: 21px;
  font-weight: 500;
  color: #f0b414;
  cursor: pointer;
}

.accordion-container2 .accordion-title2:hover,
.accordion-container2 .accordion-title2:active,
.accordion-containe2r .content-entry2.open .accordion-title2 {
  color: #fcd13e;
}

.accordion-container2 .accordion-title2:hover i:before,
.accordion-container2 .accordion-title2:hover i2:active,
.accordion-container2 .content-entry2.open i {
  color: white;
}

.accordion-title2 {
  position: relative;
}

.accordion-title2:after {
  content: "";
  position: absolute;
  top: 38%;
  left: -5px;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 9px;
  height: 9px;
  border-top: solid 5px #f0b414;
  border-right: solid 5px #f0b414;
  transform: rotate(45deg);
}

.accordion-title2.open:after {
  transform: rotate(-45deg);
}

.accordion-content2 {
  display: none;
  padding-left: 15px;
}

/*ナビの吹き出し*/
/* bxsliderのCSS */
.bx-wrapper {
  padding-top: 0px !important;
  background-color: #ff5016 !important;
  width: 100% !important;
}

.slider_img {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

/* bxsliderのCSS(レスポンシブ ) */
@media screen and (max-width: 767px) {
  .bx-wrapper {
    padding-top: 0px !important;
    background-color: #fff !important;
    width: 100% !important;
  }
  .slider_img {
    background: #ff5016;
    height: auto;
    margin: auto;
  }
}
/*カーリース&レンタカーバナー*/
.lease_renta_banner {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
}

.top_banner {
  margin: auto;
  display: flex;
  margin-bottom: 70px;
  justify-content: space-between;
}
.top_banner > div {
  width: 49%;
  position: relative;
}

.car_lease h2 {
  color: #46d2dc;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 24px;
}

.car_lease_bnr {
  position: absolute;
  width: 100%;
}

.carleas_btn {
  position: absolute;
  top: 66%;
  left: 2%;
  justify-content: space-between;
  display: flex;
  width: 96%;
}
.carleas_btn > a,
.carleas_btn > div {
  width: 49%;
}

.balloonoya2 {
  position: relative;
}

.balloonoya2:hover .balloon2,
.yellow2_balloonoya:hover .yellow2_balloon,
.recruit_balloonoya:hover .yellow2_balloon {
  display: block;
}

.recruit_balloon {
  width: 155px;
  padding: 16px;
  position: absolute;
  /* 親要素を基準 */
  display: none;
  /* 要素を非表示 */
  padding-left: 10px;
  /* テキストの前後の余白 */
  background-color: #fff;
  /* 背景色（透明度） */
  border-radius: 10px;
  /* 吹き出し全体の幅 */
  margin-top: 10px;
  /* 表示位置 */
  font-size: 18px;
  /* 文字サイズ */
  border: 3px solid #fcd13e;
  text-align: left;
}

.recruit_balloon:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #fcd13e;
  display: block;
  margin-left: 70px;
  /* 吹き出し口の位置調整 */
  top: 62px;
  /* 吹き出し口の縦位置 */
  content: "";
  /* コンテンツの挿入 */
  position: fixed;
  /* 親要素を基準 */
}

.recruit_balloon a {
  color: #f0b414;
  font-size: 21px;
  line-height: 35px;
}

.recruit_balloon a:hover {
  color: #fcd13e;
}

/*レンタカーバナー*/
.renta_car h2 {
  color: #2878be;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 24px;
}

.rentacar_bnr {
  width: 570px;
}

.rentacar_bnr:hover {
  box-shadow: transparent;
  transform: translateY(0.3em);
  transition: all 0.5s;
}

/*カーリース&レンタカーバナー(レスポンシブ)*/
@media screen and (min-width: 768px) {
  .top_banner_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top_banner {
    display: none;
  }
  .top_banner_sp {
    margin: auto;
  }
  .lease_banner {
    margin-bottom: 20px;
  }
  .lease_banner h2 {
    color: #46d2dc;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
  }
  .lease_banner_content h2 {
    color: #fff;
  }
  .lease_banner_content {
    color: #fff;
    font-weight: 900;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .lease_banner_content {
    padding: 20px;
    background-color: #46d2dc;
    border-radius: 5px;
  }
  .lease_banner_content p {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
  }
  .banner_btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: auto;
  }
  .banner_btn2 {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f0b414;
    box-shadow: 2px 2px 0px 0 #b8b8b8;
    border-radius: 100px;
    color: #46d2dc;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: 0.1s;
    margin-bottom: 10px;
  }
  .banner_btn2:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
  .renta_banner {
    width: 100%;
    margin: auto;
    display: block;
    margin-bottom: 40px;
  }
  .renta_banner h2 {
    color: #3282c8 !important;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
  }
  .cartype {
    max-width: 600px;
  }
  .cartype a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000;
  }
  .cartype label {
    display: block;
    margin: 0 0 4px 0;
    padding: 15px;
    line-height: 1;
    color: #fff;
    border-radius: 100px;
    background-color: #f0b414;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
  }
  .cartype input {
    display: none;
  }
  .cartype ul {
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    list-style: none;
  }
  .cartype li {
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 16px;
    text-align: center;
  }
  #menu_bar01:checked ~ #links01 li,
  #menu_bar02:checked ~ #links02 li {
    height: 54px;
    opacity: 1;
  }
}
/* 車アニメーションCSS */
.loop_css {
  position: relative;
  display: flex;
  width: 100vw;
  height: 300px;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
}
.loop_css img {
  width: 2592px !important;
  max-width: 2592px !important;
  height: 150px;
}

/* 1つ目の画像 */
.loop_css img:first-child {
  animation: loop 150s -75s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

/* 2つ目の画像 */
.loop_css img + img {
  animation: loop2 150s linear infinite;
}

.loop_css {
  margin-top: 10px;
  height: 150px;
}

/*アニメーション*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}/*# sourceMappingURL=style-base.css.map */