@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gideon+Roman&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
  min-height: 100vh;
}

html, body {
  height: 100%;
  width: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
  margin: auto;
}

b {
  font-weight: 700;
}

input[type=submit], input[type=text],
input[type=email], input[type=button], input[type=password] {
  appearance: none;
}

/*------------------------------
	base
------------------------------*/
a {
  color: #fff;
  text-decoration: none;
}

.mb0 {
  margin: 0 0 0 0;
}

.mb5 {
  margin: 0 0 5px 0;
}

.mb10 {
  margin: 0 0 10px 0;
}

.mb15 {
  margin: 0 0 15px 0;
}

.mb20 {
  margin: 0 0 20px 0;
}

.mb30 {
  margin: 0 0 30px 0;
}

.mb40 {
  margin: 0 0 40px 0;
}

.mb50 {
  margin: 0 0 50px 0;
}

.mb60 {
  margin: 0 0 60px 0;
}

.mb70 {
  margin: 0 0 70px 0;
}

.mb80 {
  margin: 0 0 80px 0;
}

.mb90 {
  margin: 0 0 90px 0;
}

.mb100 {
  margin: 0 0 100px 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0a0504;
  background: #fff;
}

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

p {
  margin: 0 0 10px;
}

br.pc {
  display: none;
}

/*------------------------------
	header
------------------------------*/
header {
  width: 100%;
  background: #18202d;
  box-sizing: border-box;
  position: relative;
}
header h1 {
  width: 130px;
  padding: 15px 0 15px 10px;
}
header .button {
  background: #18202d;
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
header .btn-r {
  width: 100%;
  margin: 2px 0 0;
}
header .btn-r a {
  display: block;
  height: 44px;
  padding: 6px 0 4px;
  box-sizing: border-box;
}
header .btn-r a:hover {
  color: #fff;
}
header .btn-line {
  display: block;
  width: 100%;
  color: #fff;
  background: #06c755;
  padding: 12px 0 10px;
  font-weight: 700;
  font-size: 1.8rem;
  height: 44px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
header .btn-line:hover {
  background: #4ed586;
  color: #fff;
}
header .line {
  text-align: center;
}
header .line h3 {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 30px;
}
header .line img {
  width: 125px;
}

#gnav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #18202d;
  transition: all 0.3s;
}
#gnav ul {
  display: none;
  position: absolute;
  z-index: 8;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
#gnav li {
  list-style: none;
  text-align: center;
}
#gnav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#gnav li a:hover {
  color: #b9dcff;
}

.lang {
  position: absolute;
  top: 17px;
  right: 66px;
  background: #fff;
}
.lang a {
  display: inline-block;
  color: #0a0504;
  font-weight: 700;
  text-decoration: underline;
  padding: 2px 12px 4px;
}
.lang a:hover {
  cursor: pointer;
}
.lang em {
  color: #ba1b21;
  text-decoration: underline;
}

#gnav.panelactive {
  opacity: 1;
  z-index: 8;
}
#gnav.panelactive ul {
  display: block;
}
#gnav.panelactive #gnav-list { /*ナビゲーションの縦スクロール*/
  position: fixed;
  z-index: 8;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.openbtn {
  position: fixed;
  z-index: 9;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #18202d;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
}

/*------------------------------
	modal
------------------------------*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明のグレー */
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9;
}
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  font-size: 3.5rem;
  color: #fff;
  cursor: pointer;
}

.modal-content {
  background: #fff;
  padding: 30px 10px;
  border-radius: 20px;
  position: relative;
  top: 50px;
}
.modal-content li {
  margin: 0 0 20px;
}

/*------------------------------
	footer
------------------------------*/
footer {
  color: #fff;
  font-size: 2rem;
  background: #18202d;
  padding: 0 0 60px;
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0 30px;
}
footer .inner ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
}
footer p {
  width: 168px;
  margin: 0 auto 50px;
}
footer span {
  display: block;
  background: #0a0504;
  text-align: center;
  padding: 5px;
}

/*------------------------------
	top
------------------------------*/
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 12px 40px;
}

.center {
  text-align: center;
}

.top {
  text-align: center;
  margin: 0 auto 40px;
}

.bg01 {
  background: #ececec;
  padding-top: 40px;
}

.title01 {
  text-align: center;
  margin: 0 0 40px;
}
.title01 span {
  display: block;
  color: #18202d;
  font-family: "Gideon Roman", serif;
  font-weight: 700;
  font-size: 2.6rem;
}

.difference {
  text-align: center;
  margin: 20px 0 0;
}
.difference dt {
  color: #fff;
  padding: 16px 0;
}
.difference dd {
  padding: 16px 0;
}
.difference .jag {
  margin: 0 0 20px;
}
.difference .jag dt {
  background: #18202d;
}
.difference .jag dd {
  border-left: 1px solid #18202d;
  border-right: 1px solid #18202d;
  border-bottom: 1px solid #18202d;
}
.difference .local dt {
  background: #4b4c4e;
}
.difference .local dd {
  border-left: 1px solid #4b4c4e;
  border-right: 1px solid #4b4c4e;
  border-bottom: 1px solid #4b4c4e;
}

.service-point ul {
  display: grid;
  gap: 15px;
}
.service-point li {
  border: 2px solid #0a0504;
  padding: 14px 20px;
}
.service-point li img {
  width: 60px;
  display: block;
  margin: 0 auto 20px;
}
.service-point li p {
  margin: 0;
}
.service-point li .title {
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px;
}

.service-list {
  display: grid;
  grid-template-rows: 1fr 0.5fr 1fr;
  grid-template-columns: 50% 50%;
  color: #fff;
}
.service-list .box01-text {
  grid-row: 1/2;
  grid-column: 1/3;
  background: #18202d;
  padding: 14px 30px;
}
.service-list .box01-photo {
  grid-row: 2/3;
  grid-column: 1/2;
  margin: 0;
}
.service-list .box02-text {
  grid-row: 3/4;
  grid-column: 1/3;
  background: #4b4c4e;
  padding: 14px 30px;
}
.service-list .box02-photo {
  grid-row: 2/3;
  grid-column: 2/3;
  margin: 0;
}
.service-list .title {
  font-weight: 700;
  font-size: 2rem;
}

.arrow {
  margin: 0;
  text-align: right;
}
.arrow a {
  padding: 0 0 0 20px;
  position: relative;
  text-decoration: underline;
}
.arrow a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -4px;
}
.arrow a:hover {
  text-decoration: none;
}

.slider01 {
  position: relative;
  margin: 0 auto 40px;
}
.slider01 p {
  background: #fff;
  margin: 0 auto;
  padding: 10px 20px;
  max-width: 80%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  font-size: 1.4rem;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 20px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  background-color: #cbe2fa;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.pagination-dot.active {
  background-color: #18202d;
}

.btn-r {
  text-align: center;
  font-weight: 700;
  margin: 0 auto 40px;
  width: 80%;
}
.btn-r a {
  color: #fff;
  background: #ba1b21;
  display: block;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}
.btn-r a:hover {
  background: #cc5d61;
}

.faq-list {
  margin: 0 0 60px;
}

.acd {
  margin: 0 0 20px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.acd dt {
  padding: 8px 40px 8px 20px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  position: relative;
  background: #18202d;
  color: #fff;
  border-radius: 6px;
}
.acd dt::before {
  content: "Q";
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.acd dt.watch {
  border-radius: 6px 6px 0 0;
}
.acd dt:hover {
  cursor: pointer;
}
.acd dt::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}
.acd dd {
  display: none;
  padding: 16px 30px 8px 45px;
  border-radius: 0 0 6px 6px;
  background: #fefefe;
  position: relative;
  font-size: 1.6rem;
}
.acd dd::before {
  content: "A";
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 20px;
  font-weight: 700;
  font-size: 2rem;
  color: #18202d;
}

.btn-w {
  text-align: center;
  font-weight: 700;
  margin: 0 auto 40px;
  width: 80%;
}
.btn-w a {
  color: #0a0504;
  display: block;
  padding: 12px;
  border-radius: 6px;
  border: 3px solid #18202d;
}

.voice {
  background: #fff;
  border: 2px solid #18202d;
  padding: 25px 10px;
  margin: 0 0 20px;
}
.voice li:first-child {
  text-align: center;
  margin: 0 auto 10px;
}
.voice p {
  text-align: right;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 2px dashed #18202d;
}

.insta {
  padding: 0 0 40px;
  margin: 0 0 40px;
}

.company-logo {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.company-logo .logo {
  width: 215px;
  display: block;
  margin: 0 auto 5px;
}

.map {
  margin: 0 0 40px;
}
.map iframe {
  width: 100%;
  height: 250px;
}

.address {
  margin: 0 0 40px;
}
.address dt {
  font-weight: 700;
}
.address dd {
  margin: 0 0 25px;
}

.shop {
  text-align: center;
  margin: 0 0 60px;
}
.shop li {
  margin: 0 0 32px;
}
.shop li a {
  color: #0a0504;
}
.shop li a:hover {
  opacity: 0.8;
}

.pt {
  padding-top: 32px;
}

/*------------------------------
	rental
------------------------------*/
.visual {
  position: relative;
  height: 272px;
}
.visual picture {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 100%;
}
.visual h1 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.visual .list {
  position: absolute;
  top: 155px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  display: grid;
  gap: 10px;
  width: 85%;
}
.visual .list li {
  background: #fff;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  border-radius: 5px;
  box-sizing: border-box;
}
.visual .message {
  position: absolute;
  top: 130px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 85%;
  background: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border-radius: 5px;
  box-sizing: border-box;
}
.visual .icon {
  position: absolute;
  bottom: -10%;
  right: 4px;
  width: 90px;
  margin: 0;
}

.bg02 {
  background: #18202d;
  padding: 40px 10px;
  color: #fff;
  margin: 0 0 32px;
}
.bg02 .title01 span {
  color: #fff;
}

.title02 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.point {
  padding: 20px 15px;
  background: #fff;
  color: #0a0504;
}
.point li {
  margin: 0 0 32px;
}
.point li:last-child {
  margin: 0;
}
.point .photo {
  margin: 0 0 24px;
}
.point .text {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 16px;
}
.point .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ba1b21;
  margin: 0 0 8px;
}

.read {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.rental-box {
  margin: 32px auto 0;
  border: 4px solid #0a0504;
  border-radius: 10px 10px;
}
.rental-box dt {
  text-align: center;
  color: #fff;
  background: #18202d;
  padding: 8px;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 6px 6px 0 0;
}
.rental-box dd {
  padding: 8px;
}

.bg03 {
  background: #d9bd9f;
  padding: 10px;
}

.flow {
  background: #fff;
  padding: 40px 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.title03 {
  color: #fff;
  padding: 8px;
  background: #18202d;
  margin: 0 0 32px;
  font-size: 1.8rem;
  font-weight: 700;
}

.title04 {
  text-align: center;
  margin: 0 auto 24px;
  padding: 0 55px;
  position: relative;
  display: table;
}
.title04::before, .title04::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background: #000;
}
.title04::before {
  left: 0;
}
.title04::after {
  right: 0;
}

.price-box {
  margin: 0 0 32px;
}

.table01 {
  width: 100%;
  text-align: center;
  font-weight: 700;
  border: 1px solid #18202d;
}
.table01 th {
  background: #ececec;
  border-top: 1px solid #18202d;
  border-right: 1px solid #18202d;
  padding: 8px;
}
.table01 td {
  border-top: 1px solid #18202d;
  padding: 8px;
}

.table02 {
  text-align: center;
  font-weight: 700;
  width: 100%;
  margin: 0 0 32px;
}
.table02 th {
  color: #fff;
  background: #18202d;
  padding: 8px 10px;
}
.table02 th:nth-child(2) {
  width: 20%;
  background: #5d6167;
}
.table02 th:first-child {
  border-radius: 14px 0 0 0;
}
.table02 th:last-child {
  border-radius: 0 14px 0 0;
}
.table02 td {
  padding: 8px 10px;
  vertical-align: middle;
  border: 1px solid #18202d;
  background: #fff;
}

.bg04 {
  background: #f5f5f5;
  padding-top: 40px;
}

/*------------------------------
	maintenance
------------------------------*/
.read {
  margin-top: 32px;
}

.table03 {
  width: 100%;
  margin: 0 0 32px;
  border: 1px solid #18202d;
}
.table03 tr {
  border-bottom: 1px solid #18202d;
}
.table03 tr:nth-child(even) {
  background: #ececec;
}
.table03 th {
  padding: 8px 10px;
  text-align: left;
  border-right: 1px solid #18202d;
}
.table03 td {
  padding: 8px 10px;
}

/*------------------------------
	buy
------------------------------*/
.step {
  margin: 0 0 60px;
}
.step li {
  background: #fff;
  padding: 16px;
  margin: 0 0 24px;
}
.step .num {
  font-size: 3.6rem;
}
.step .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.buy .num {
  color: #d9bd9f;
}

/*------------------------------
	sell
------------------------------*/
.sell .num {
  color: #ba1b21;
}

.bg05 {
  background: #fbfbfb;
  padding-top: 40px;
}

.car-list ul {
  display: grid;
  gap: 20px;
}
.car-list li {
  padding: 16px;
  color: #000;
  background: #fff;
}
.car-list .price {
  font-size: 2rem;
}

/*------------------------------
	faq
------------------------------*/
.black-title {
  text-align: center;
  color: #fff;
  background: #0a0504;
  font-weight: 700;
  font-size: 2rem;
  padding: 8px;
}

.title05 {
  font-weight: 700;
  border-left: 6px solid #d9bd9f;
  margin: 0 0 32px;
  padding: 0 0 0 16px;
}

.faq .nav {
  text-align: center;
  margin: 0 0 48px;
}
.faq .nav li.title {
  background: #d9bd9f;
  color: #fff;
  padding: 10px;
  border: 0;
}
.faq .nav li {
  font-weight: 700;
  border-right: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.faq .nav a {
  display: block;
  padding: 10px;
  color: #0a0504;
}
.faq .nav a.current {
  color: #ba1b21;
}
.faq .nav a:hover {
  color: #ba1b21;
}

/*------------------------------
	contact
------------------------------*/
.box-w {
  background: #fff;
  padding: 32px;
  margin: 0 0 32px;
}

.contact dt {
  color: #18202d;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 40px;
}
.contact dt img {
  width: 60px;
  margin: 0 auto 16px;
}
.contact dt span {
  display: block;
}
.contact dd ul {
  display: grid;
  justify-content: center;
}
.contact dd li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.contact dd li a {
  color: #0a0504;
}
.contact dd li a:hover {
  cursor: none;
}
.contact .btn-line {
  margin: 0 auto 16px;
  text-align: center;
  font-weight: 700;
  width: 200px;
}
.contact .btn-line a {
  display: block;
  background: #06c755;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}

form h3 {
  text-align: center;
  color: #18202d;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 32px;
}
form dt {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: left;
}
form dt span {
  display: block;
  color: #fff;
  border-radius: 3px;
  padding: 2px;
  margin: 0 0 10px;
  width: 32px;
  text-align: center;
  font-size: 1.2rem;
}
form dt .any {
  background: #bcbcbc;
}
form dt .required {
  background: #ba1b21;
}
form dd {
  text-align: left;
  border-bottom: 1px solid #a7a7a7;
  margin: 0 0 16px;
  padding: 0 0 16px;
}
form input {
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
}
form textarea {
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  width: 100% !important;
  height: 120px !important;
  padding: 4px;
  box-sizing: border-box;
}
form input[type=radio] {
  width: auto;
}
form button[type=submit] {
  display: block;
  width: 100%;
  background: #ba1b21;
  color: #fff;
  font-size: 2rem;
  padding: 14px;
  border-radius: 6px;
  border: 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}

#mfp_overlay_inner h4 {
  color: #18202d;
  margin: 0 auto 24px;
}

#mfp_button_send {
  background: #ba1b21;
  font-size: 1.6rem;
  text-shadow: none;
  color: #fff;
}

#mfp_button_cancel {
  background: #d9d9d9;
  font-size: 1.6rem;
  text-shadow: none;
}

/*------------------------------
	store
------------------------------*/
.four {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.possession {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px auto 70px;
}
.possession dl {
  border-radius: 6px;
  text-align: center;
  background: #f3f3f3;
}
.possession dl dt {
  border-radius: 6px 6px 0 0;
  padding: 8px 0;
  background: #d9d9d9;
}
.possession dl dd {
  border-radius: 0 0 6px 6px;
  padding: 25px 0 5px;
}
.possession dl dd img {
  width: 60px;
}
.possession dl dd.track img {
  width: 120px;
}
.possession dl.on {
  background: #d9bd9f;
}
.possession dl.on dt {
  background: #18202d;
  color: #fff;
}

.grid-2to3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
  }
  br.sp {
    display: none;
  }
  br.pc {
    display: block;
  }
  /*------------------------------
  	footer
  ------------------------------*/
  footer .inner {
    padding: 44px 30px;
    display: grid;
    grid-template-columns: 247px 1fr;
    gap: 60px;
    align-items: center;
  }
  footer .inner ul {
    overflow: hidden;
    display: block;
    gap: 0;
    width: auto;
  }
  footer .inner li {
    float: left;
    margin: 20px 40px 20px 0;
  }
  footer p {
    width: auto;
    margin: 0;
  }
  /*------------------------------
  	top
  ------------------------------*/
  section {
    padding: 0px 10px 70px;
  }
  .top {
    margin: 0 auto 55px;
  }
  .bg01 {
    padding-top: 70px;
  }
  .title01 {
    margin: 0 0 60px;
  }
  .title01 span {
    font-size: 4rem;
  }
  .service-point ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .service-point li {
    padding: 24px 30px;
  }
  .service-point li img {
    width: 120px;
    margin: 0 auto 30px;
  }
  .service-point li .title {
    font-size: 2.5rem;
    margin: 0 0 20px;
  }
  .service {
    background: #18202d;
  }
  .service-list {
    margin: 0 auto;
    max-width: 1000px;
    display: grid;
    grid-template-rows: auto;
    align-items: center;
  }
  .service-list .box01-text {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .service-list .box01-photo {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .service-list .box02-text {
    grid-row: 2/3;
    grid-column: 1/2;
    background: none;
  }
  .service-list .box02-photo {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .slider01 p {
    margin: 0 0 10px;
    padding: 10px 20px;
    border-radius: 0 30px 0 0;
    position: absolute;
    bottom: 0;
    border-radius: 0 30px 0 0;
    min-width: 300px;
    font-size: 2rem;
  }
  .carousel {
    position: relative;
    margin: 50px auto;
    overflow: hidden;
  }
  .carousel-button {
    width: 46px;
  }
  .btn-r {
    width: 520px;
  }
  .acd dt {
    padding: 20px 45px 20px 20px;
    grid-template-columns: 25px 1fr;
  }
  .acd dd {
    padding: 20px 20px 25px 50px;
  }
  .btn-w {
    width: 520px;
  }
  .voice {
    padding: 25px 20px;
    margin: 0 0 50px;
  }
  .voice ul {
    display: grid;
    grid-template-columns: 268px 1fr;
    gap: 40px;
    font-size: 1.6rem;
  }
  .voice li:first-child {
    margin: 0;
  }
  .voice p {
    margin: 30px 0 0;
  }
  .banner {
    max-width: 800px;
    margin: 0 auto 0px;
    text-align: center;
  }
  .insta {
    padding: 0 0 70px;
    margin: 0 0 70px;
  }
  .company-logo {
    margin: 0 auto 40px;
    font-size: 3.2rem;
  }
  .company-logo .logo {
    width: 247px;
  }
  .map {
    margin: 0 0 70px;
  }
  .map iframe {
    height: 350px;
  }
  .address {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 25px 95px;
  }
  .address dd {
    margin: 0;
  }
  .shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shop li {
    width: calc(33.3333333333% - 50px);
    margin: 0 50px 50px 0;
  }
  .shop li:nth-child(3n) {
    margin: 0 0 50px;
  }
  .shop li:last-child {
    margin: 0 0 50px;
  }
  .pt {
    padding-top: 70px;
  }
  /*------------------------------
  	rental
  ------------------------------*/
  .visual {
    height: 500px;
    text-align: center;
    background: #18202d;
  }
  .visual picture {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%); /* Safari用 */
    transform: translate(-50%, -50%);
    width: 100%;
    overflow: hidden;
  }
  .visual picture img {
    object-fit: cover;
    height: 500px;
  }
  .visual h1 {
    font-size: 3.2rem;
    top: 18%;
  }
  .visual .list {
    top: 55%;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 1000px;
    width: 90%;
  }
  .visual .list li {
    font-size: 2.6rem;
    width: 100%;
    padding: 16px;
    margin: 0;
  }
  .visual .message {
    top: 55%;
    max-width: 1000px;
    width: 90%;
  }
  .visual .icon {
    bottom: -15%;
    right: 10px;
    width: 18vw;
  }
  .bg02 {
    padding: 64px 0px;
    margin: 0 0 64px;
  }
  .title02 {
    font-size: 3.2rem;
    margin: 0 auto 48px;
  }
  .point {
    padding: 50px 30px;
  }
  .point li {
    margin: 0 0 48px;
    font-size: 2rem;
    display: grid;
    grid-template-columns: 235px 1fr;
    gap: 32px;
  }
  .point li:last-child {
    margin: 0;
  }
  .point .photo {
    margin: 0;
  }
  .point .text {
    grid-template-columns: 100px 1fr;
    gap: 32px;
  }
  .point .title {
    font-size: 3.2rem;
  }
  .rental-box {
    margin: 64px auto 0;
  }
  .rental-box dt {
    font-size: 2rem;
  }
  .rental-box dd {
    padding: 24px 32px;
  }
  .bg03 {
    padding: 74px 5%;
  }
  .flow {
    padding: 40px 32px;
  }
  .title03 {
    font-size: 2rem;
  }
  .title04 {
    margin: 0 auto 32px;
    padding: 0 165px;
  }
  .title04::before, .title04::after {
    width: 150px;
  }
  .price-box {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    margin: 0 0 64px;
  }
  .table02 {
    margin: 0 0 64px;
  }
  .bg04, .bg05 {
    padding-top: 70px;
  }
  /*------------------------------
  	maintenance
  ------------------------------*/
  .read {
    margin-top: 64px;
    font-size: 2.6rem;
  }
  .rental .read {
    font-size: 2rem;
  }
  .table03 {
    margin: 0 0 64px;
  }
  .table03 th {
    padding: 16px 20px;
  }
  .table03 td {
    padding: 16px 20px;
  }
  /*------------------------------
  	buy
  ------------------------------*/
  .step {
    margin: 0 0 90px;
  }
  .step li {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 48px;
    margin: 0 0 50px;
  }
  .step .num {
    font-size: 4.8rem;
    font-weight: 700;
    margin: 0 0 16px;
  }
  .step .title {
    font-size: 2.6rem;
    margin: 0 0 16px;
  }
  /*------------------------------
  	sell
  ------------------------------*/
  .car-list ul {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .car-list li {
    padding: 24px;
  }
  .car-list .price {
    font-size: 3rem;
  }
  /*------------------------------
  	faq
  ------------------------------*/
  .black-title {
    font-size: 2.6rem;
    padding: 16px;
  }
  .faq {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
  }
  .faq .nav {
    margin: 0;
  }
  .faq .nav li.title {
    padding: 24px;
  }
  .faq .nav a {
    padding: 24px;
  }
  /*------------------------------
  	contact
  ------------------------------*/
  .box-w {
    padding: 64px;
    margin: 0 0 64px;
  }
  .contact {
    display: flex;
    justify-content: space-between;
  }
  .contact dt {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: center;
    margin: 0;
  }
  .contact dt img {
    margin: 0;
  }
  .contact dt span {
    display: inline-block;
  }
  .contact .btn-line {
    display: inline-block;
    margin: 0 5px;
  }
  .contact .btn-r {
    width: 300px;
    margin: 0;
  }
  form dl {
    display: grid;
    grid-template-columns: 240px 1fr;
    margin: 0 0 40px;
  }
  form dt {
    border-bottom: 1px solid #a7a7a7;
    padding: 32px 0;
  }
  form dd {
    margin: 0;
    padding: 32px 0;
  }
  form dd ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px 32px;
  }
  form button[type=submit] {
    width: 520px;
    margin: 0 auto;
  }
  /*------------------------------
  	company
  ------------------------------*/
  .dl-info {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
  .dl-info dt {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #18202d;
  }
  .dl-info dd {
    margin: 0;
    padding: 8px 0;
  }
  /*------------------------------
  	store
  ------------------------------*/
  .four {
    gap: 22px;
  }
  .possession {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
  .title06 {
    font-size: 2rem;
  }
  .grid-2to3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 50px;
  }
}
@media screen and (min-width: 1024px) {
  /*------------------------------
  	footer
  ------------------------------*/
  footer .inner {
    padding: 44px 0;
    gap: 190px;
  }
  /*------------------------------
  	top
  ------------------------------*/
  section {
    padding: 0px 0 70px;
  }
  .difference {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0 0px;
  }
  .difference dt {
    padding: 25px 0;
  }
  .difference dd {
    padding: 35px 0;
  }
  .difference .jag {
    margin: 0;
  }
  .service-point li {
    padding: 24px 65px;
  }
  .service-point li .title {
    font-size: 3rem;
  }
  /*------------------------------
  	rental
  ------------------------------*/
  .visual {
    height: 400px;
  }
  .visual picture img {
    height: 400px;
  }
  .visual h1 {
    top: 18%;
  }
  .visual .list {
    top: 55%;
    gap: 30px 100px;
  }
  .visual .icon {
    bottom: -30%;
    width: 15vw;
  }
  .point {
    padding: 50px 60px;
  }
  /*------------------------------
  	faq
  ------------------------------*/
  .faq {
    grid-template-columns: 200px 1fr;
    gap: 48px;
  }
}
@media screen and (min-width: 1540px) {
  /*------------------------------
  	header
  ------------------------------*/
  header {
    padding: 10px;
  }
  header h1 {
    width: 104px;
    padding: 15px 0 15px 10px;
  }
  header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .button {
    display: flex;
    gap: 0;
    position: absolute;
    top: 20px;
    bottom: auto;
    left: auto;
    right: 160px;
    width: auto;
    padding: 0;
  }
  header .button > li {
    margin: 0 20px 0 0;
  }
  header .btn-r {
    width: 200px;
  }
  header .btn-r a {
    display: block;
    padding: 4px 12px 5px;
  }
  header .btn-line {
    width: 200px;
    margin: 0;
    font-size: 2rem;
  }
  header .line h3 {
    font-size: 3.2rem;
  }
  header .line img {
    width: auto;
  }
  #gnav {
    position: static;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: auto;
    background: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 580px 0 0;
  }
  #gnav #gnav-list {
    display: flex;
    align-items: center;
  }
  #gnav ul {
    display: block;
    position: static;
    z-index: 1;
    transform: none;
    line-height: 0.9;
    width: auto;
  }
  #gnav li {
    display: inline-block;
    border-bottom: 0;
    margin: 0 30px 0 0;
  }
  #gnav li a {
    padding: 0px;
  }
  #gnav li a::before {
    content: none;
  }
  .lang {
    width: auto;
    padding: 0 12px;
    top: 22px;
    right: 25px;
  }
  .lang a {
    display: inline-block;
  }
  #gnav.panelactive {
    opacity: 1;
    z-index: 8;
  }
  #gnav.panelactive ul {
    display: block;
  }
  #gnav.panelactive #gnav-list { /*ナビゲーションの縦スクロール*/
    position: fixed;
    z-index: 8;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .openbtn {
    display: none;
  }
  /*------------------------------
  	modal
  ------------------------------*/
  .modal-body {
    padding: 40px 10px 30px;
    max-width: none;
    width: 60%;
  }
  .modal-body ol {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
  .modal-body li {
    margin: 0;
  }
  .modal-close {
    top: 30px;
    right: 10px;
  }
  /*------------------------------
  	rental
  ------------------------------*/
  .visual {
    height: auto;
  }
  .visual picture {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    overflow: auto;
  }
  .visual picture img {
    object-fit: contain;
    height: auto;
  }
  .visual .list li {
    font-size: 3.2rem;
  }
  .visual .message {
    font-size: 3.2rem;
  }
  .visual .icon {
    bottom: -40%;
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
    margin: 0 0 32px;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}