@charset "UTF-8";
/*
Theme Name: UsedCarShop
Author: ryo
Discription: UsedCarShopのテーマ
Version: 1.0
*/
/*-----------------------
        common
------------------------*/
html {
  font-size: 100%;
  letter-spacing: 0.1em;
}

body {
  font-size: 1rem;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.section-area {
  margin-bottom: 100px;
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .section-area {
    margin-bottom: 50px;
    padding: 0 10px;
  }
}

.section-inner {
  margin: 0 auto 50px auto;
  max-width: 1000px;
}

.section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  .section-title {
    margin-bottom: 15px;
  }
}
.section-title .title-en {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .section-title .title-en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .section-title .title-en {
    font-size: 1.5rem;
  }
}
.section-title .title-ja {
  font-size: 0.875rem;
  font-weight: normal;
}

.section-title-center {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .section-title-center {
    margin-bottom: 15px;
  }
}
.section-title-center .title-en {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .section-title-center .title-en {
    font-size: 2rem;
  }
}
.section-title-center .title-ja {
  font-size: 0.875rem;
  font-weight: normal;
}

.link-btn {
  text-align: center;
}

.link {
  padding: 10px 80px;
  border: 1px solid #b7b7b7;
  position: relative;
  transition: all 0.4s ease;
  font-size: 1.2rem;
  z-index: 5;
  text-decoration: none;
  color: #000;
}
.link:hover {
  color: #fff;
}
.link::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #505050;
  z-index: -1;
}
.link:hover::after {
  transform: scale(1, 1);
}

.fadeIn-left-js {
  opacity: 0;
  transform: translateX(-10%);
  transition: 1s;
}
.fadeIn-left-js.active {
  transform: translateX(0);
  opacity: 1;
}

.fadeIn-right-js {
  opacity: 0;
  transform: translateX(10%);
  transition: 1s;
}
.fadeIn-right-js.active {
  transform: translateX(0);
  opacity: 1;
}

.fadeIn-js {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}
.fadeIn-js.active {
  transform: translateY(0);
  opacity: 1;
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #161616;
  opacity: 0.8;
  z-index: 990;
}
.mask.open {
  display: block;
}

/*----各ページの背景文字----*/
/*---ページネーション----*/
.pnavi {
  text-align: center;
  margin-bottom: 50px;
}
.pnavi .prev,
.pnavi .page-numbers {
  padding: 10px 15px;
  color: #000000;
  margin-right: 10px;
  text-decoration: none;
  border: 1px solid #505050;
  border-radius: 3px;
}
.pnavi .page-numbers.current {
  background-color: #505050;
  color: #fff;
}

/*-----------------------
        header
------------------------*/
.header {
  position: absolute;
  width: 100%;
  z-index: 997;
}
.header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 1040px) {
  .header .header-inner {
    align-items: flex-start;
  }
}
@media screen and (max-width: 700px) {
  .header .header-inner {
    padding: 10px 10px;
  }
}
.header .site-logo {
  color: #fff;
}
@media screen and (max-width: 700px) {
  .header .site-logo {
    font-size: 1.5rem;
  }
}
.header .site-logo a {
  text-decoration: none;
  color: #fff;
}
.header .nav {
  transition: 0.3s;
}
@media screen and (max-width: 1040px) {
  .header .nav {
    background-color: #555555;
    padding: 130px 0;
    position: fixed;
    width: 250px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    transform: translateX(100%);
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header .nav ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1040px) {
  .header .nav ul {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}
.header .nav ul li {
  margin-right: 25px;
  list-style: none;
}
@media screen and (max-width: 1040px) {
  .header .nav ul li {
    margin-right: 0;
    padding: 15px 0;
  }
  .header .nav ul li:first-of-type::before {
    position: fixed;
    content: "MENU";
    text-align: center;
    display: block;
    width: 100%;
    top: 100px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    border-top: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
  }
}
.header .nav ul li:last-of-type {
  margin-bottom: 0;
}
.header .nav ul:last-of-type {
  margin-right: 0;
}
.header .nav ul .nav-link {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  .header .nav ul .nav-link {
    color: #ffffff;
  }
}
.header .nav ul .nav-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s;
}
.header .nav ul .nav-link:hover::before {
  transform: scale(1, 1);
}

.hamburger {
  width: 50px;
  height: 50px;
  z-index: 999;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 5px;
  display: none;
}
@media screen and (max-width: 1040px) {
  .hamburger {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .hamburger {
    width: 40px;
    height: 40px;
  }
}
.hamburger span {
  position: absolute;
  width: 70%;
  height: 3px;
  left: 6px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: ease 0.4s;
  display: inline-block;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
@media screen and (max-width: 700px) {
  .hamburger span:nth-child(1) {
    top: 4px;
  }
}
.hamburger span:nth-child(2) {
  top: 20px;
}
@media screen and (max-width: 700px) {
  .hamburger span:nth-child(2) {
    top: 16px;
  }
}
.hamburger span:nth-child(3) {
  top: 32px;
}
@media screen and (max-width: 700px) {
  .hamburger span:nth-child(3) {
    top: 28px;
  }
}

.js-hamburger.open span:nth-of-type(1) {
  top: 15px;
  left: 9px;
  transform: translateY(6px) rotate(-405deg);
  width: 70%;
}
@media screen and (max-width: 700px) {
  .js-hamburger.open span:nth-of-type(1) {
    top: 9px;
    transform: translateY(7px) rotate(-405deg);
  }
}
.js-hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .js-hamburger.open span:nth-of-type(2) {
    top: 16px;
  }
}
.js-hamburger.open span:nth-of-type(3) {
  top: 27px;
  left: 9px;
  transform: translateY(-6px) rotate(405deg);
  width: 70%;
}
@media screen and (max-width: 700px) {
  .js-hamburger.open span:nth-of-type(3) {
    top: 23px;
    transform: translateY(-7px) rotate(405deg);
  }
}

.top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 50;
}
@media screen and (max-width: 700px) {
  .top-button {
    bottom: 15px;
    right: 15px;
  }
}
.top-button .top-button-link {
  width: 50px;
  height: 50px;
}
.top-button .top-button-link .icon {
  font-size: 4rem;
  color: #6c6c6c;
}
@media screen and (max-width: 700px) {
  .top-button .top-button-link .icon {
    font-size: 2rem;
  }
}
.top-button.scroll {
  visibility: visible;
  opacity: 1;
}

/*-----------------------
        mainvisual
------------------------*/
.mainvisual {
  margin-bottom: 100px;
  z-index: -10;
  height: 100svh;
}
@media screen and (max-width: 700px) {
  .mainvisual {
    margin-bottom: 50px;
  }
}
.mainvisual .section-wrapper .slide-area {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background-color: black;
}
.mainvisual .section-wrapper .slide-img:nth-child(1) .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  list-style: none;
  background-image: url(img/mainvisual1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: slideShow;
          animation: slideShow;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.mainvisual .section-wrapper .slide-img:nth-child(1) .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  filter: brightness(90%);
}
.mainvisual .section-wrapper .slide-img:nth-child(1) .head-text {
  color: #fff;
  position: absolute;
  top: 60%;
  left: 10%;
  font-size: 3rem;
  font-weight: bold;
  z-index: 20;
  opacity: 0;
  -webkit-animation: slideTitle;
          animation: slideTitle;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 950px) {
  .mainvisual .section-wrapper .slide-img:nth-child(1) .head-text {
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .mainvisual .section-wrapper .slide-img:nth-child(1) .head-text {
    font-size: 1.5rem;
  }
}
.mainvisual .section-wrapper .slide-img:nth-child(2) .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  list-style: none;
  background-image: url(img/mainvisual2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: slideShow;
          animation: slideShow;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.mainvisual .section-wrapper .slide-img:nth-child(2) .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  filter: brightness(90%);
}
.mainvisual .section-wrapper .slide-img:nth-child(2) .head-text {
  color: #fff;
  position: absolute;
  top: 60%;
  left: 10%;
  font-size: 3rem;
  font-weight: bold;
  z-index: 20;
  opacity: 0;
  -webkit-animation: slideTitle;
          animation: slideTitle;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 950px) {
  .mainvisual .section-wrapper .slide-img:nth-child(2) .head-text {
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .mainvisual .section-wrapper .slide-img:nth-child(2) .head-text {
    font-size: 1.5rem;
  }
}
.mainvisual .section-wrapper .slide-img:nth-child(3) .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  list-style: none;
  background-image: url(img/mainvisual3.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: slideShow;
          animation: slideShow;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.mainvisual .section-wrapper .slide-img:nth-child(3) .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  filter: brightness(90%);
}
.mainvisual .section-wrapper .slide-img:nth-child(3) .head-text {
  color: #fff;
  position: absolute;
  top: 60%;
  left: 10%;
  font-size: 3rem;
  font-weight: bold;
  z-index: 20;
  opacity: 0;
  -webkit-animation: slideTitle;
          animation: slideTitle;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 950px) {
  .mainvisual .section-wrapper .slide-img:nth-child(3) .head-text {
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .mainvisual .section-wrapper .slide-img:nth-child(3) .head-text {
    font-size: 1.5rem;
  }
}
.mainvisual .section-wrapper .slide-img:nth-child(4) .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  list-style: none;
  background-image: url(img/mainvisual4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: slideShow;
          animation: slideShow;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.mainvisual .section-wrapper .slide-img:nth-child(4) .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  filter: brightness(90%);
}
.mainvisual .section-wrapper .slide-img:nth-child(4) .head-text {
  color: #fff;
  position: absolute;
  top: 60%;
  left: 10%;
  font-size: 3rem;
  font-weight: bold;
  z-index: 20;
  opacity: 0;
  -webkit-animation: slideTitle;
          animation: slideTitle;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 950px) {
  .mainvisual .section-wrapper .slide-img:nth-child(4) .head-text {
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .mainvisual .section-wrapper .slide-img:nth-child(4) .head-text {
    font-size: 1.5rem;
  }
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  23% {
    opacity: 1;
    transform: scale(1.05);
  }
  30% {
    transform: scale(1.05) translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: scale(1.05) translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideShow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  23% {
    opacity: 1;
    transform: scale(1.05);
  }
  30% {
    transform: scale(1.05) translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: scale(1.05) translateY(-100%);
    opacity: 0;
  }
}
@-webkit-keyframes slideTitle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideTitle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*-----------------------
        company
------------------------*/
.company .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 950px) {
  .company .info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
  }
}
.company .info .info-text {
  width: 60%;
}
@media screen and (max-width: 950px) {
  .company .info .info-text {
    width: 100%;
  }
}
.company .info .info-text .text {
  letter-spacing: 0.2em;
  line-height: 1.8rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 950px) {
  .company .info .info-text .text {
    width: 100%;
  }
}
.company .info .info-image {
  width: 40%;
}
@media screen and (max-width: 950px) {
  .company .info .info-image {
    width: 100%;
  }
}

/*-----------------------
        used-car
------------------------*/
.usedcar {
  background-color: #e8e8e8;
  padding-top: 50px;
  padding-bottom: 50px;
}
.usedcar .car-list {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 950px) {
  .usedcar .car-list {
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
  }
}
.usedcar .car-list .list-item {
  list-style: none;
  width: 33.3333333333%;
  border: 1.5px solid #cecece;
  background-color: #fff;
}
@media screen and (max-width: 950px) {
  .usedcar .car-list .list-item {
    width: 100%;
  }
}
.usedcar .car-list .list-item .car-link {
  text-decoration: none;
  color: #000;
}
.usedcar .car-list .list-item .car-link .car-name {
  text-align: center;
  font-size: 1.25rem;
}
.usedcar .car-list .list-item .car-link .car-name .maker-name {
  font-size: 0.625rem;
}
.usedcar .car-list .list-item .car-link .car-name .gread {
  font-size: 0.875rem;
}
.usedcar .car-list .list-item .car-link .car-detail {
  padding: 10px;
}
.usedcar .car-list .list-item .car-link .car-detail .status {
  display: flex;
  flex-wrap: wrap;
}
.usedcar .car-list .list-item .car-link .car-detail .status dt {
  width: 50%;
  border-bottom: 1px solid #cecece;
  margin-bottom: 10px;
}
.usedcar .car-list .list-item .car-link .car-detail .status dd {
  width: 50%;
  border-bottom: 1px solid #cecece;
  margin-bottom: 10px;
}
.usedcar .car-list .list-item .car-link .price {
  padding: 10px;
  text-align: center;
}
.usedcar .car-list .list-item .car-link .price .price-tag {
  font-size: 3rem;
  color: rgb(255, 44, 44);
}
.usedcar .car-list .list-item .car-link .price .price-tag .price-info {
  font-size: 0.875rem;
  color: #000;
}

/*-----------------------
        news
------------------------*/
.news .news-list {
  padding: 10px 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 950px) {
  .news .news-list {
    padding: 10px 0;
  }
}
.news .news-list .news-list-item {
  list-style: none;
  border-top: 1.5px solid #505050;
}
.news .news-list .news-list-item .news-list-item-link {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  text-decoration: none;
  color: #000;
  padding: 25px 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 950px) {
  .news .news-list .news-list-item .news-list-item-link {
    flex-direction: column;
    padding: 15px 0;
  }
}
.news .news-list .news-list-item .news-list-item-link:hover {
  background-color: #e1e1e1;
}
.news .news-list .news-list-item .news-list-item-link .date {
  width: 30%;
}
@media screen and (max-width: 950px) {
  .news .news-list .news-list-item .news-list-item-link .date {
    width: 100%;
  }
}
.news .news-list .news-list-item .news-list-item-link .news-text {
  width: 70%;
}
@media screen and (max-width: 950px) {
  .news .news-list .news-list-item .news-list-item-link .news-text {
    width: 100%;
  }
}
.news .news-list-item:last-of-type {
  border-bottom: 1.5px solid #505050;
}

/*-----------------------
        access
------------------------*/
.access {
  background-color: #e8e8e8;
  padding: 50px 0;
}
.access .section-wrapper .map-area {
  max-width: 100%;
  height: 450px;
  margin-bottom: 30px;
}
.access .section-wrapper .map-area .map {
  width: 100%;
  height: 100%;
}
.access .section-wrapper .access-detail {
  padding: 0 20px;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .access .section-wrapper .access-detail {
    padding: 0 10px;
  }
}
.access .section-wrapper p {
  padding: 5px 0;
}
@media screen and (max-width: 700px) {
  .access .section-wrapper p {
    padding: 0;
  }
}

/*-----------------------
        footer
------------------------*/
.footer {
  background-image: url(img/footer-bg-image.jpg);
  background-position: 50% 60%;
  color: #fff;
  position: relative;
  z-index: 10;
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  filter: brightness(90%);
}
.footer .footer-wrapper {
  padding: 50px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 950px) {
  .footer .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    row-gap: 50px;
  }
}
@media screen and (max-width: 700px) {
  .footer .footer-wrapper {
    padding: 15px 15px;
    row-gap: 20px;
  }
}
.footer .footer-wrapper .footer-logo-area {
  text-align: center;
}
.footer .footer-wrapper .footer-logo-area .footer-logo-link {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .footer .footer-wrapper .footer-logo-area .footer-logo-link {
    margin-bottom: 10px;
  }
}
.footer .footer-wrapper .footer-logo-area .footer-logo-link .footer-sub-logo {
  display: block;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .footer .footer-wrapper .footer-logo-area .footer-logo-link .footer-sub-logo {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 700px) {
  .footer .footer-wrapper .footer-logo-area p {
    font-size: 0.875rem;
  }
}
.footer .footer-wrapper .footer-nav-area {
  width: 420px;
  text-align: right;
}
@media screen and (max-width: 1040px) {
  .footer .footer-wrapper .footer-nav-area {
    width: 260px;
  }
}
@media screen and (max-width: 950px) {
  .footer .footer-wrapper .footer-nav-area {
    width: 80%;
    text-align: center;
  }
}
.footer .footer-wrapper .footer-nav-area .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  text-align: left;
}
@media screen and (max-width: 950px) {
  .footer .footer-wrapper .footer-nav-area .footer-nav-list {
    align-items: center;
    row-gap: 15px;
  }
}
@media screen and (max-width: 420px) {
  .footer .footer-wrapper .footer-nav-area .footer-nav-list {
    row-gap: 5px;
  }
}
.footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item {
  list-style: none;
  margin-right: 10px;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item {
    width: 45%;
  }
}
.footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item .footer-nav-list-link {
  position: relative;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 420px) {
  .footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item .footer-nav-list-link {
    font-size: 0.875rem;
  }
}
.footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item .footer-nav-list-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s;
}
.footer .footer-wrapper .footer-nav-area .footer-nav-list .footer-nav-list-item .footer-nav-list-link:hover::before {
  transform: scale(1, 1);
}
.footer .footer-logo-link {
  color: #fff;
  z-index: 90;
}
.footer .copy {
  text-align: center;
  padding: 20px 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 700px) {
  .footer .copy {
    font-size: 0.625rem;
    padding: 10px;
  }
}

/*-----------------------
        company.php
------------------------*/
/*-------メインビジュアルエリア(各ページ共通)-----*/
.single-page-visual .page-visual.company-page {
  background-image: url(img/company1.jpg);
  background-position: 50% 45%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.company-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.company-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.company-page .page-title {
    font-size: 2rem;
  }
}
.single-page-visual .page-visual.company-page .page-title::before {
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  content: "会社概要";
}

/*-------社長挨拶-----*/
.company-page-message {
  padding: 50px 0;
}
@media screen and (max-width: 1040px) {
  .company-page-message {
    margin-bottom: 50px;
  }
}
.company-page-message .company-page-section-inner {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .company-page-message .company-page-section-inner {
    padding: 0 10px;
  }
}
.company-page-message .company-page-section-inner .president-message-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1040px) {
  .company-page-message .company-page-section-inner .president-message-area {
    flex-direction: column;
    row-gap: 15px;
  }
}
.company-page-message .company-page-section-inner .president-message-area .text-message {
  width: 60%;
}
@media screen and (max-width: 1040px) {
  .company-page-message .company-page-section-inner .president-message-area .text-message {
    width: 100%;
  }
}
.company-page-message .company-page-section-inner .president-message-area .text-message h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .company-page-message .company-page-section-inner .president-message-area .text-message h3 {
    font-size: 1.2rem;
    letter-spacing: 0.001rem;
  }
}
.company-page-message .company-page-section-inner .president-message-area .president-img {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  .company-page-message .company-page-section-inner .president-message-area .president-img {
    width: 80%;
  }
}

/*-------会社概要-----*/
.compnay-page-detail {
  padding: 50px 0;
}
@media screen and (max-width: 1040px) {
  .compnay-page-detail {
    margin-bottom: 50px;
  }
}
.compnay-page-detail .section-wrapper .company-page-section-inner {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .compnay-page-detail .section-wrapper .company-page-section-inner {
    padding: 0 10px;
  }
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #505050;
}
@media screen and (max-width: 700px) {
  .compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info {
    flex-direction: column;
  }
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 20px 10px;
  border-bottom: 1px solid #505050;
  border-right: 1px solid #505050;
  font-weight: bold;
  background-color: #dfdfdf;
}
@media screen and (max-width: 700px) {
  .compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dt {
    width: 100%;
    border-right: none;
  }
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dt:last-of-type {
  border-bottom: none;
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dd {
  width: 75%;
  padding: 20px 10px;
  border-bottom: 1px solid #505050;
}
@media screen and (max-width: 700px) {
  .compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dd {
    width: 100%;
    border-bottom: 2px solid #505050;
  }
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dd:nth-of-type(3) {
  display: flex;
  flex-direction: column;
}
.compnay-page-detail .section-wrapper .company-page-section-inner .compnay-page-info dd:last-of-type {
  border-bottom: none;
}

/*-----------------------
        news-arvhive.php
------------------------*/
/*-------メインビジュアルエリア-----*/
.single-page-visual .page-visual.news-page {
  background-image: url(img/news.jpg);
  background-position: 50% 45%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.news-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.news-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
.single-page-visual .page-visual.news-page .page-title::before {
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  content: "新着情報";
}

/*----新着情報一覧------*/
.news-page-list {
  padding: 30px 0;
}
.news-page-list .section-inner .news-page-content {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .news-page-list .section-inner .news-page-content {
    padding: 0 10px;
  }
}
.news-page-list .section-inner .news-page-content .news-page-content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  text-decoration: none;
  color: #000;
  transition: 0.5S;
}
@media screen and (max-width: 700px) {
  .news-page-list .section-inner .news-page-content .news-page-content-link {
    flex-direction: column-reverse;
  }
}
.news-page-list .section-inner .news-page-content .news-page-content-link:hover {
  opacity: 0.7;
  background-color: #d6d6d6;
}
.news-page-list .section-inner .news-page-content .news-page-content-link .content-thumbnail {
  width: 20%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 700px) {
  .news-page-list .section-inner .news-page-content .news-page-content-link .content-thumbnail {
    width: 80%;
  }
}
.news-page-list .section-inner .news-page-content .news-page-content-link .content-thumbnail .thumbnail-img {
  vertical-align: bottom;
}
.news-page-list .section-inner .news-page-content .news-page-content-link .news-page-title-area {
  width: 80%;
}
@media screen and (max-width: 700px) {
  .news-page-list .section-inner .news-page-content .news-page-content-link .news-page-title-area {
    width: 100%;
  }
}
.news-page-list .section-inner .news-page-content .news-page-content-link .news-page-title-area .news-page-title {
  margin-bottom: 20px;
}
.news-page-list .section-inner .news-page-content .news-page-content-link .news-page-title-area .news-page-info {
  font-size: 0.875rem;
}
.news-page-list .section-inner .border {
  margin: 20px 0;
}
.news-page-list .section-inner .border:last-of-type {
  display: none;
}

/*-----------------------
     single-news.php
------------------------*/
.single-page-news {
  margin-top: 50px;
}
.single-page-news .section-inner {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .single-page-news .section-inner {
    padding: 0 10px;
  }
}
.single-page-news .section-inner .shingle-news-page-content .shingle-news-page-info {
  margin-bottom: 10px;
  font-size: 1.125rem;
}
@media screen and (max-width: 700px) {
  .single-page-news .section-inner .shingle-news-page-content .shingle-news-page-info {
    font-size: 1rem;
  }
}
.single-page-news .section-inner .shingle-news-page-content .shingle-news-page-info .shingle-news-page-date {
  margin: right 15px;
}
.single-page-news .section-inner .shingle-news-page-content .shingle-news-page-info .shingle-news-page-category {
  background-color: #d6d6d6;
  border-radius: 2px;
  padding: 0px 4px;
}
.single-page-news .section-inner .shingle-news-page-content .shingle-page-news-title {
  font-size: 2rem;
  border-bottom: 3px solid rgb(255, 171, 62);
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  .single-page-news .section-inner .shingle-news-page-content .shingle-page-news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.single-page-news .section-inner .shingle-news-page-content .shingle-page-news-textarea {
  line-height: 1.5rem;
}
.single-page-news .section-inner .post__pagination {
  height: 200px;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .single-page-news .section-inner .post__pagination {
    flex-wrap: wrap;
    overflow-wrap: break-word;
    margin-top: 30px;
  }
}
.single-page-news .section-inner .post__pagination .post__pagination__left,
.single-page-news .section-inner .post__pagination .post__pagination__right {
  order: 0;
  text-align: center;
  width: 150px;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 950px) {
  .single-page-news .section-inner .post__pagination .post__pagination__left,
.single-page-news .section-inner .post__pagination .post__pagination__right {
    max-width: 40%;
  }
}
.single-page-news .section-inner .post__pagination .post__pagination__left .prev-link,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link {
  text-decoration: none;
  display: block;
  color: #000;
  transition: 0.3s;
}
.single-page-news .section-inner .post__pagination .post__pagination__left .prev-link:hover,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link:hover,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link:hover,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link:hover {
  background-color: black;
  color: #fff;
}
.single-page-news .section-inner .post__pagination .post__pagination__left .prev-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .prev-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link .post__pagination__right__text {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .single-page-news .section-inner .post__pagination .post__pagination__left .prev-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .prev-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__left .next-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .prev-link .post__pagination__right__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link .post__pagination__left__text,
.single-page-news .section-inner .post__pagination .post__pagination__right .next-link .post__pagination__right__text {
    top: 20px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 950px) {
  .single-news-link-btn {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    order: 1;
  }
}

/*-----------------------
        contact.php
------------------------*/
/*-------メインビジュアルエリア-----*/
.single-page-visual .page-visual.contact-page {
  background-image: url(img/contact.jpg);
  background-position: 50% 45%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.contact-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.contact-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.contact-page .page-title {
    font-size: 2rem;
  }
}
.single-page-visual .page-visual.contact-page .page-title::before {
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  content: "お問い合わせ";
}

/*-------コンタクトフォームエリア-----*/
.single-page-contact {
  padding: 50px 0;
}
.single-page-contact .section-inner {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .single-page-contact .section-inner {
    padding: 0 10px;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
  padding: 5px 0;
}
@media screen and (max-width: 1040px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-list {
    flex-direction: column;
    row-gap: 10px;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-list label {
  width: 25%;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-list label {
    width: 100%;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-list label .required {
  font-size: 0.875rem;
  background-color: #505050;
  color: #fff;
  margin-left: 10px;
  padding: 2px 10px;
  font-weight: normal;
}
.single-page-contact .section-inner .mw_wp_form form .contact-list input {
  width: 60%;
  background-color: #f9f9f9;
  border: 1px solid #bababa;
  padding: 10px;
}
@media screen and (max-width: 1040px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-list input {
    width: 100%;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-list .select-area {
  width: 60%;
  position: relative;
  border: 2px solid #6c6c6c;
}
@media screen and (max-width: 1040px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-list .select-area {
    width: 100%;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-list .select-area::after {
  display: inline-block;
  content: "\e5cf";
  font-family: "Material Symbols Outlined";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  z-index: 5;
}
.single-page-contact .section-inner .mw_wp_form form .contact-list .select-area .select-box {
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #bababa;
  padding: 10px;
}
.single-page-contact .section-inner .mw_wp_form form .contact-list textarea {
  width: 60%;
  background-color: #f9f9f9;
  border: 1px solid #bababa;
  padding: 10px;
}
@media screen and (max-width: 1040px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-list textarea {
    width: 100%;
  }
}
.single-page-contact .section-inner .mw_wp_form form .contact-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 950px) {
  .single-page-contact .section-inner .mw_wp_form form .contact-link-btn {
    flex-direction: column;
    row-gap: 20px;
  }
}

/*-----------------------
        insurance.php
------------------------*/
/*-------メインビジュアルエリア-----*/
.single-page-visual .page-visual.insurance-page {
  background-image: url(img/insurance.jpg);
  background-position: 50% 20%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.insurance-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.insurance-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.insurance-page .page-title {
    font-size: 2rem;
  }
}
.single-page-visual .page-visual.insurance-page .page-title::before {
  content: "保険";
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
}

/*---insurance--*/
.single-page-insurance .about-insurance {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .single-page-insurance .about-insurance {
    text-align: left;
  }
}

.single-page-insurance .section-wrapper .section-inner .section-title .title-en {
  font-size: 2.5rem;
}
@media screen and (max-width: 700px) {
  .single-page-insurance .section-wrapper .section-inner .section-title .title-en {
    font-size: 1.5rem;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-area {
    flex-direction: column;
    row-gap: 20px;
    padding: 0 10px;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-area .insurunce-img {
  width: 40%;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-area .insurunce-img {
    width: 100%;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-area .insurunce-img .img-detail {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-area .insurunce-img .img-detail {
    width: 100%;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-area .insurance-text {
  width: 60%;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-area .insurance-text {
    width: 100%;
  }
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-area.reverse {
    flex-direction: column-reverse;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-list {
    flex-direction: column;
    row-gap: 20px;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-list .insurance-list-item {
  width: 33.3333333333%;
  list-style: none;
}
@media screen and (max-width: 950px) {
  .single-page-insurance .section-wrapper .section-inner .insurance-list .insurance-list-item {
    width: 100%;
  }
}
.single-page-insurance .section-wrapper .section-inner .insurance-list .insurance-list-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: 1px solid #6c6c6c;
  box-shadow: 2px 2px 2px #6c6c6c;
  transition: 0.3s;
}
.single-page-insurance .section-wrapper .section-inner .insurance-list .insurance-list-item-link:hover {
  transform: translate(5px, 5px);
  box-shadow: none;
}

/*-----------------------
    　maintenance.php
------------------------*/
/*--------マスク--------*/
.maintenance-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #313131;
  opacity: 0.8;
  z-index: 998;
}

/*-------メインビジュアルエリア-----*/
.single-page-visual .page-visual.maintenance-page {
  background-image: url(img/maintenance.jpg);
  background-position: 50% 15%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.maintenance-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.maintenance-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.maintenance-page .page-title {
    font-size: 2rem;
  }
}
.single-page-visual .page-visual.maintenance-page .page-title::before {
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  content: "点検";
}

/*-------車検-----*/
.single-page-maintenance {
  margin-bottom: 100px;
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance {
    margin-bottom: 50px;
  }
}
.single-page-maintenance .section-title-center.maintenance {
  padding: 10px 0;
  background-color: #dedede;
  color: #000000;
  margin-bottom: 50px;
}
.single-page-maintenance .section-title-center.maintenance .title-en {
  font-size: 2.5rem;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-title-center.maintenance .title-en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance .section-title-center.maintenance {
    margin-bottom: 20px;
  }
}
.single-page-maintenance .section-inner {
  padding: 0 20px;
}
.single-page-maintenance .section-inner .maintenance-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance .section-inner .maintenance-area {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 30px;
  }
}
.single-page-maintenance .section-inner .maintenance-area .about-maintenance {
  width: 50%;
  line-height: 1.7rem;
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance .section-inner .maintenance-area .about-maintenance {
    width: 100%;
  }
}
.single-page-maintenance .section-inner .maintenance-area .about-maintenance .maintenance-list {
  margin: 20px 0;
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-area .about-maintenance .maintenance-list {
    font-size: 1rem;
  }
}
.single-page-maintenance .section-inner .maintenance-area .about-maintenance .maintenance-list .maintenace-list-item {
  margin-left: 30px;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-area .about-maintenance .maintenance-list .maintenace-list-item {
    margin-left: 15px;
  }
}
.single-page-maintenance .section-inner .maintenance-area .about-maintenance .text-red {
  color: red;
  font-size: 1.5rem;
  font-weight: bold;
}
.single-page-maintenance .section-inner .maintenance-area .maintenance-image {
  width: 50%;
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance .section-inner .maintenance-area .maintenance-image {
    width: 100%;
    text-align: center;
  }
}
.single-page-maintenance .section-inner .price-area .price-title {
  text-align: center;
}
.single-page-maintenance .section-inner .price-area .table-wrapper {
  overflow-x: scroll;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table {
  text-align: center;
  overflow-x: scroll;
  border: 2px solid #b7b7b7;
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table th {
  border: 1px solid #b7b7b7;
  padding: 10px 0;
  min-width: 180px;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table th .text-small {
  font-size: 0.75rem;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table td {
  border: 1px solid #b7b7b7;
  padding: 10px 0;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table td .price-detail {
  background-color: #ff0000;
  color: #ffffff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table td .price-detail:hover {
  opacity: 0.7;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table .car-class {
  width: 160px;
}
.single-page-maintenance .section-inner .price-area .table-wrapper .price-table .car-class {
  background-color: #f2f2f2;
}
.single-page-maintenance .section-inner .price-area .modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 5px;
  z-index: 999;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .price-area .modal-window {
    padding: 15px 20px;
  }
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-title {
  text-align: center;
  margin-bottom: 30px;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-title h2 {
  font-size: 2rem;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .price-area .modal-window .modal-title h2 {
    font-size: 1.25rem;
  }
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-title span {
  font-size: 0.875rem;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents {
  font-size: 0.875rem;
  text-align: center;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 50px;
  width: 430px;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex {
    flex-direction: column;
    row-gap: 10px;
    width: 260px;
  }
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right {
  width: 50%;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right {
    width: 100%;
  }
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price {
  text-align: center;
  border-bottom: 2px solid #ff0e0e;
  margin-bottom: 20px;
  width: 100%;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price-list,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price-list dt,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price-list dt {
  width: 50%;
  text-align: left;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price-list dt:last-of-type,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price-list dt:last-of-type {
  font-weight: bold;
  font-size: 1rem;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price-list dd,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price-list dd {
  letter-spacing: 0.001em;
  width: 50%;
  text-align: right;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-left .modal-price-list dd:last-of-type,
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-flex .modal-right .modal-price-list dd:last-of-type {
  font-weight: bold;
  font-size: 1rem;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-total-price-list {
  width: 350px;
  margin: 0 auto;
  font-weight: bold;
  background-color: #dbdbdb;
  padding: 5px 10px;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-total-price-list {
    flex-direction: column;
    width: 260px;
    padding: 5px 10px;
    font-size: 1rem;
  }
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-total-price-list .total-price-text {
  font-size: 1rem;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-contents .modal-total-price-list .total-price-number {
  font-size: 1.5rem;
  color: #ff0000;
  font-weight: bold;
  letter-spacing: 0.001em;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-close {
  position: fixed;
  top: 5px;
  right: 5px;
  background-color: #000;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-close .modal-close-link {
  display: flex;
  align-items: center;
  color: #fff;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-close .modal-close-link:hover {
  opacity: 0.7;
}
.single-page-maintenance .section-inner .price-area .modal-window .modal-close .modal-close-link .close-icon {
  font-size: 2.5rem;
}
.single-page-maintenance .section-inner .price-area .attention-text {
  font-size: 0.75rem;
}
.single-page-maintenance .section-inner .maintenance-type {
  background-color: #F2F2F2;
  padding: 10px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 1040px) {
  .single-page-maintenance .section-inner .maintenance-type {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-type {
    padding: 5px;
  }
}
.single-page-maintenance .section-inner .maintenance-type .maintenance-type-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-type .maintenance-type-content {
    flex-direction: column;
    padding: 5px 5px;
  }
}
.single-page-maintenance .section-inner .maintenance-type .maintenance-type-content dt {
  width: 40%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #fff;
  padding: 10px 20px;
  border-right: 2px solid #F2F2F2;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-type .maintenance-type-content dt {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #F2F2F2;
  }
}
.single-page-maintenance .section-inner .maintenance-type .maintenance-type-content .maintenance-content .maintenace-content-list {
  padding: 5px;
  font-size: 0.875rem;
}
.single-page-maintenance .section-inner .maintenance-type .maintenance-type-content .maintenance-content .maintenace-content-list .maintenace-content-list-item {
  margin-left: 20px;
}
.single-page-maintenance .section-inner .maintenance-type .maintenance-type-content dd {
  width: 60%;
  background-color: #fff;
  padding: 10px 20px;
}
@media screen and (max-width: 700px) {
  .single-page-maintenance .section-inner .maintenance-type .maintenance-type-content dd {
    width: 100%;
  }
}

/*-----------------------
        usedcar.php
------------------------*/
/*-------メインビジュアルエリア-----*/
.single-page-visual .page-visual.usedcar-page {
  background-image: url(img/mainvisual3.jpg);
  background-position: 50% 80%;
  position: relative;
  width: 100%;
  height: 60svh;
  z-index: -10;
}
.single-page-visual .page-visual.usedcar-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
  filter: brightness(90%);
}
.single-page-visual .page-visual.usedcar-page .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  font-size: 3rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.usedcar-page .page-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .single-page-visual .page-visual.usedcar-page .page-title {
    font-size: 1.7rem;
  }
}
.single-page-visual .page-visual.usedcar-page .page-title::before {
  content: "在庫車";
  position: absolute;
  display: block;
  text-align: center;
  margin: 0 auto;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
}
@media screen and (max-width: 700px) {
  .single-page-visual .page-visual.usedcar-page .page-title::before {
    font-size: 0.875rem;
  }
}

/*-------中古車一覧-----*/
.single-page-usedcar .section-title-center.archive-used-car {
  padding: 10px 0;
  background-color: #dedede;
  color: #000000;
  margin-bottom: 50px;
}
.single-page-usedcar .section-title-center.archive-used-car .title-en {
  font-size: 2.5rem;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .section-title-center.archive-used-car .title-en {
    font-size: 1.8rem;
  }
}
.single-page-usedcar .section-inner {
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .section-inner {
    padding: 0 10px;
  }
}
.single-page-usedcar .section-inner .car-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .section-inner .car-list {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.single-page-usedcar .section-inner .car-list .list-item {
  list-style: none;
  width: calc(33.3333333333% - 30px);
  border: 1.5px solid #cecece;
  background-color: #fff;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .section-inner .car-list .list-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .section-inner .car-list .list-item {
    width: 100%;
  }
}
.single-page-usedcar .section-inner .car-list .list-item .car-link {
  text-decoration: none;
  color: #000;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-image {
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-name {
  text-align: center;
  font-size: 1.25rem;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-name .maker-name {
  font-size: 0.625rem;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-name .gread {
  font-size: 0.875rem;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-detail {
  padding: 10px;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-detail .status {
  display: flex;
  flex-wrap: wrap;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-detail .status dt {
  width: 50%;
  border-bottom: 1px solid #cecece;
  margin-bottom: 10px;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .car-detail .status dd {
  width: 50%;
  border-bottom: 1px solid #cecece;
  margin-bottom: 10px;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .price {
  padding: 10px;
  text-align: center;
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .price .price-tag {
  font-size: 3rem;
  color: rgb(255, 44, 44);
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .section-inner .car-list .list-item .car-link .price .price-tag {
    font-size: 2rem;
  }
}
.single-page-usedcar .section-inner .car-list .list-item .car-link .price .price-tag .price-info {
  font-size: 0.875rem;
  color: #000;
}
.single-page-usedcar .pagination {
  display: block;
  height: 200px;
}

/*-----------------------
    single-usedcar.php
------------------------*/
.single-page-usedcar .section-title-center {
  background-color: #000;
  color: #fff;
}
.single-page-usedcar .single-page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .single-page-section-inner {
    padding: 25px 10px;
  }
}
.single-page-usedcar .single-page-section-inner .main-area-car-name {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .main-area-car-name {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 950px) {
  .single-page-usedcar .single-page-section-inner .main-area-car-name {
    font-size: 1.25rem;
  }
}
.single-page-usedcar .single-page-section-inner .main-area-car-name .single-page-maker {
  margin-right: 30px;
}
.single-page-usedcar .single-page-section-inner .main-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .main-area {
    flex-direction: column;
    row-gap: 10px;
  }
}
.single-page-usedcar .single-page-section-inner .main-area .slick-arrow {
  z-index: 998;
}
.single-page-usedcar .single-page-section-inner .main-area .slick-arrow:hover {
  opacity: 0.5;
}
.single-page-usedcar .single-page-section-inner .main-area .slick-arrow::before {
  display: block;
  color: #000000;
  font-size: 2.5rem;
}
.single-page-usedcar .single-page-section-inner .main-area .laerge-slider-area {
  width: 60%;
  border: 1px solid #000;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .main-area .laerge-slider-area {
    width: 100%;
  }
}
.single-page-usedcar .single-page-section-inner .main-area .laerge-slider-area .main-slide-img {
  width: 100%;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail {
  width: 40%;
  padding: 20px;
  color: #fff;
  background-color: #1b1b1b;
  border-radius: 10px;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail {
    width: 100%;
  }
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .single-page-car-price {
  font-size: 1.2rem;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .single-page-car-price .larege-number {
  font-size: 2rem;
  color: red;
  margin: 0 10px;
}
@media screen and (max-width: 420px) {
  .single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .single-page-car-price .larege-number {
    font-size: 1.5rem;
  }
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .single-page-car-price .ditail-price {
  font-size: 0.8rem;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .car-condition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .car-condition .condition-name {
  width: 40%;
  border: 1px solid #ffffff;
  padding: 5px 10px;
  border-right: none;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .car-condition .condition-data {
  width: 60%;
  border: 1px solid #ffffff;
  padding: 5px 10px;
}
.single-page-usedcar .single-page-section-inner .main-area .single-page-car-detail .attention-text {
  font-size: 0.75rem;
}
.single-page-usedcar .single-page-section-inner .slider-nav {
  height: 100%;
  border: 4px solid #ffffff;
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  .single-page-usedcar .single-page-section-inner .slider-nav {
    margin-bottom: 40px;
  }
}
.single-page-usedcar .single-page-section-inner .slider-nav .slick-arrow {
  z-index: 998;
}
.single-page-usedcar .single-page-section-inner .slider-nav .slick-arrow:hover {
  opacity: 0.5;
}
.single-page-usedcar .single-page-section-inner .slider-nav .slick-arrow::before {
  display: block;
  color: #000000;
  font-size: 1.5rem;
}
.single-page-usedcar .single-page-section-inner .slider-nav .nav-img-list {
  height: 100%;
  width: auto;
}
.single-page-usedcar .single-page-section-inner .slider-nav .nav-img-list img {
  width: 150px;
}
.single-page-usedcar .single-page-section-inner .car-spec {
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  .single-page-usedcar .single-page-section-inner .car-spec {
    margin-bottom: 40px;
  }
}
.single-page-usedcar .single-page-section-inner .car-spec .car-spec-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
  border-radius: 5px;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .car-spec .car-spec-list {
    flex-direction: column;
  }
}
.single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item {
  width: calc(50% - 20px);
  list-style: none;
  display: flex;
  justify-content: left;
  align-items: center;
  border: 1px solid #000;
}
@media screen and (max-width: 1040px) {
  .single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item {
    width: 100%;
  }
}
.single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item .spec-term {
  width: 50%;
  border-right: 1px solid #000000;
  padding: 12px 5px;
  font-weight: bold;
  text-align: center;
  background-color: #e7e7e7;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item .spec-term {
    font-size: 0.8rem;
  }
}
.single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item .spec-data {
  width: 50%;
  padding: 12px 5px;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .single-page-section-inner .car-spec .car-spec-list .car-spec-list-item .spec-data {
    font-size: 0.8rem;
  }
}
.single-page-usedcar .single-page-section-inner .car-equipment .car-equipment-list .car-equipment-list-item {
  display: inline-block;
  background-color: #d8d8d8;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 0 0 10px 10px;
}
@media screen and (max-width: 700px) {
  .single-page-usedcar .single-page-section-inner .car-equipment .car-equipment-list .car-equipment-list-item {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

.car-spce-title,
.car-equipment-title {
  font-size: 1.25rem;
  text-align: center;
}
.car-spce-title h2,
.car-equipment-title h2 {
  font-weight: 400;
}

/*スライダーのボタン*/
.slick-prev {
  left: 0;
  top: 50%;
  transform: translate(0, 50%);
}
.slick-next {
  right: 10px;
  top: 53%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1040px) {
  .slick-next {
    top: 50%;
  }
}
@media screen and (max-width: 700px) {
  .slick-next {
    right: 5px;
    top: 53%;
  }
}
@media screen and (max-width: 420px) {
  .slick-next {
    right: 5px;
    top: 54%;
  }
}

.slick-slide {
  cursor: -webkit-grab;
  cursor: grab;
}

/*-----------------------
        header
------------------------*/
/*-----------------------
        header
------------------------*/
/*# sourceMappingURL=style.css.map */