/*------------------------------------------------------------
                           Common
------------------------------------------------------------*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body.jeep {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-image: linear-gradient(180deg, rgb(34, 34, 34) 0%, rgb(106, 106, 106) 74%);
  background-attachment: fixed;
  margin: 0;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
body.jeep a {
  text-decoration: none;
  color: #000000;
  transition: 0.2s;
}
body.jeep a:hover {
  opacity: 0.7;
}
body.jeep h1, body.jeep h2, body.jeep h3, body.jeep h4, body.jeep h5, body.jeep h6, body.jeep p, body.jeep dl, body.jeep dd {
  margin: 0;
}
body.jeep ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.jeep img {
  vertical-align: middle;
  width: 100%;
}

/*------------------------------------------------------------
                           Module
------------------------------------------------------------*/
body.jeep .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #000000;
}
body.jeep .section {
  width: 100%;
}
body.jeep .section .section__inner {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
body.jeep .section .section__head {
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
  margin-bottom: 6%;
}
body.jeep .section .section__head > h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.325;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  body.jeep .section .section__head > h2 {
    font-size: clamp(25px, 5vw, 40px);
  }
}
body.jeep .section .section__head > h2::after {
  content: "";
  position: absolute;
  width: 113%;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -15px;
}
body.jeep .section .section__head--bk > h2 {
  color: #000000;
}
body.jeep .section .section__head--bk > h2::after {
  background-color: #000000;
}
body.jeep .section .section__head--wh > h2 {
  color: #FFFFFF;
}
body.jeep .section .section__head--wh > h2::after {
  background-color: #FFFFFF;
}
body.jeep .pace {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #fff;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-pointer-events: none;
}
body.jeep .pace .pace-progress {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 2000;
  width: 100%;
  height: 2px;
  background: #c00;
}
body.jeep .pace.pace-inactive {
  height: auto;
  opacity: 0;
}

/*------------------------------------------------------------
                           Header
------------------------------------------------------------*/
body.jeep header {
  width: 100%;
  background-color: #b01e2a;
  display: flex;
  align-items: center;
  padding: 3% 0;
}
body.jeep header > a {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1428571429;
  color: #FFFFFF;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  body.jeep header > a {
    font-size: clamp(20px, 5.75vw, 70px);
  }
}
body.jeep header > a > span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7142857143;
  margin-left: 20px;
}
@media screen and (max-width: 800px) {
  body.jeep header > a > span {
    font-size: clamp(20px, 5vw, 40px);
  }
}

/*------------------------------------------------------------
                           Main
------------------------------------------------------------*/
body.jeep .cv {
  padding: 4% 0 7.5%;
}
body.jeep .cv .cv__head {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  margin: 40px 0 28px;
  position: relative;
}
@media screen and (max-width: 800px) {
  body.jeep .cv .cv__head {
    font-size: clamp(20px, 3.75vw, 30px);
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
body.jeep .cv .cv__head::before, body.jeep .cv .cv__head::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 105%;
  background-color: #FFFFFF;
  top: 0;
}
body.jeep .cv .cv__head::before {
  left: 2%;
  transform: rotate(-20deg);
}
body.jeep .cv .cv__head::after {
  right: 2%;
  transform: rotate(20deg);
}
body.jeep .cv .cv__body {
  position: relative;
  margin-top: clamp(20px,5.6vw,20px);
}
body.jeep .cv .cv__body::before {
  content: "";
  position: absolute;
  width: 111.1111111111%;
  height: 240px;
  background-color: #b01b41;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 800px) {
  body.jeep .cv .cv__body::before {
    height: 220px;
  }
}
@media screen and (max-width: 540px) {
  body.jeep .cv .cv__body::before {
    height: 170px;
  }
}
body.jeep .cv .cv__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
}
body.jeep .cv .cv__body > div > div {
  background-color: #FFFFFF;
  width: 31%;
  padding: 15px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.jeep .cv .cv__body > div > div > img {
  max-width: 67px;
  width: 50%;
}
body.jeep .cv .cv__body > div > div > p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}
@media screen and (max-width: 800px) {
  body.jeep .cv .cv__body > div > div > p {
    font-size: clamp(10px, 2.75vw, 22px);
  }
}
body.jeep .cv .cv__body > div > div::after {
  content: "";
  position: absolute;
  border-top: 11px solid #FFFFFF;
  border-right: 10.5px solid transparent;
  border-left: 10.5px solid transparent;
  box-sizing: border-box;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
body.jeep .cv .cv__body .cv__txt {
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  /*padding: 25px 0;*/
  padding-bottom: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  body.jeep .cv .cv__body .cv__txt {
    font-size: clamp(11px, 2.5vw, 20px);
  }
}
body.jeep .cv .cv__btn {
  margin-top: 30px;
  position: relative;
  z-index: 10;
}
body.jeep .slider .slick-dotted.slick-slider {
  margin-bottom: 4%;
}
body.jeep .slider .custom-dots {
  display: flex;
  justify-content: center;
  margin-top: 4%;
}
body.jeep .slider .custom-dots li {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  margin-right: 3%;
  cursor: pointer;
  transition: 0.2s;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  body.jeep .slider .custom-dots li {
    width: 8px;
    height: 8px;
  }
}
body.jeep .slider .custom-dots li.slick-active {
  background-color: #FFFFFF;
}
body.jeep .slider .custom-dots li:hover {
  opacity: 0.7;
}
body.jeep .slider .custom-dots li:last-child {
  margin-right: 0;
}
body.jeep .slider .custom-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
body.jeep .shop {
  background-color: #D1D1D1;
  padding: 3% 0 8%;
}
body.jeep .shop .shop__info {
  margin-bottom: 9%;
}
body.jeep .shop .shop__info dl {
  padding: 24px 0 26px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
body.jeep .shop .shop__info dl + dl {
  border-top: none;
}
body.jeep .shop .shop__info dl dt {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3333333333;
}
@media screen and (max-width: 800px) {
  body.jeep .shop .shop__info dl dt {
    font-size: clamp(15px, 3.75vw, 30px);
  }
}
body.jeep .shop .shop__info dl dd {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 800px) {
  body.jeep .shop .shop__info dl dd {
    font-size: clamp(17px, 7vw, 32px);
  }
}
body.jeep .shop .shop__info dl dd a.shop__tel {
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  body.jeep .shop .shop__info dl dd a.shop__tel {
    pointer-events: auto;
    text-decoration: underline;
  }
}
body.jeep .shop .shop__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 45/26;
}
body.jeep .shop .shop__map .shop__map__btn {
  display: block;
  margin: 0 auto;
  margin-top: 60px;
  margin-top: 8%;
  width: 71%;
}
body.jeep .contact {
  padding: 10% 0 6%;
}
body.jeep .contact .contact__lead {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 800px) {
  body.jeep .contact .contact__lead {
    font-size: clamp(15px, 3.75vw, 30px);
  }
}
body.jeep .contact .contact__menu > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9% 4.5%;
  margin-top: 4.5%;
}
body.jeep .sticky-btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 20px;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
body.jeep .sticky-btn.is-show {
  opacity: 1;
  pointer-events: auto;
}
body.jeep .sticky-btn a {
  display: block;
  margin: 0 auto;
  max-width: 720px;
  width: 90%;
}

/*------------------------------------------------------------
                           Footer
------------------------------------------------------------*/
body.jeep footer {
  padding: 6% 0 28%;
}
body.jeep footer > small {
  display: block;
  text-align: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}
@media screen and (max-width: 800px) {
  body.jeep footer > small {
    font-size: clamp(13px, 2.5vw, 20px);
  }
}