html {
  font-size: 62.5%;
  max-width: 768px;
  margin: auto;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  margin: 0 auto;
  position: relative;
}
.wrap .burger {
  position: sticky;
  float: inline-end;
  z-index: 999;
  width: 100px;
  height: 100px;
  right: 0;
  top: 0;
  margin: 0 0 0 auto;
  background-color: #ff7200;
}
@media screen and (max-width: 768.1px) {
  .wrap .burger {
    width: 50px;
    height: 50px;
  }
}
.wrap .burger .burger_btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}
@media screen and (max-width: 768.1px) {
  .wrap .burger .burger_btn {
    padding: 5px 8px;
  }
}
.wrap .burger .burger_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
  height: 6px;
  background: #fff;
  width: 90%;
}
@media screen and (max-width: 768.1px) {
  .wrap .burger .burger_btn span {
    height: 3px;
  }
}
.wrap .burger .burger_btn span:nth-of-type(2) {
  margin: 10px 0;
}
@media screen and (max-width: 768.1px) {
  .wrap .burger .burger_btn span:nth-of-type(2) {
    margin: 6px 0;
  }
}
.wrap .burger .burger_btn.active span {
  position: absolute;
  width: 70%;
}
.wrap .burger .burger_btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wrap .burger .burger_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.wrap .burger .burger_btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wrap .burger .burger_btn.active {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 999;
}
.wrap #burger_nav {
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 768px;
  visibility: hidden;
  opacity: 0;
  position: fixed;
}
.wrap #burger_nav.active {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  top: 100%;
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 900;
}
.wrap #burger_nav.active > #burger_nav-list {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  max-width: 768px;
  overflow: auto;
  background-color: #fff5af;
  background-image: radial-gradient(#fff8c7 21%, transparent 22.5%), radial-gradient(#fff8c7 21%, transparent 22.5%);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  background-repeat: repeat;
  height: 70vh;
  overflow-y: scroll;
  overflow-x: hidden;
  border-bottom: 4px solid #000;
}
@media screen and (max-width: 768.1px) {
  .wrap #burger_nav.active > #burger_nav-list {
    height: 60vh;
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
  }
}
.wrap #burger_nav.active > #burger_nav-list > ul {
  margin: 0 auto;
  list-style: none;
  padding: 100px 5% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768.1px) {
  .wrap #burger_nav.active > #burger_nav-list > ul {
    padding: 80px 5% 0;
  }
}
.wrap #burger_nav.active > #burger_nav-list > ul li {
  width: 45%;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  padding: 0 0;
}
.wrap #burger_nav.active > #burger_nav-list > ul li:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  border-bottom: 2px solid #000;
}
.wrap #burger_nav.active > #burger_nav-list > ul li a {
  color: #000;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 30px);
  background-image: url("../img/vector/icon_down-arrow.svg");
  background-position: center right;
  background-size: 20px 20px;
  padding: 10px 10px 12px 0;
}

a {
  color: #000;
}
a:hover {
  color: #000;
  cursor: pointer;
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

ul li {
  list-style: none;
}

img {
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  border: none;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
  /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  max-width: 100%;
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

a {
  text-decoration: none;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.w100 {
  width: 100%;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.ml60 {
  margin-left: 60px;
}

.ml70 {
  margin-left: 70px;
}

.ml80 {
  margin-left: 80px;
}

.ml90 {
  margin-left: 90px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mr60 {
  margin-right: 60px;
}

.mr70 {
  margin-right: 70px;
}

.mr80 {
  margin-right: 80px;
}

.mr90 {
  margin-right: 90px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pl10 {
  padding-left: 10px;
}

.pl20 {
  padding-left: 20px;
}

.pl30 {
  padding-left: 30px;
}

.pl40 {
  padding-left: 40px;
}

.pl50 {
  padding-left: 50px;
}

.pl60 {
  padding-left: 60px;
}

.pl70 {
  padding-left: 70px;
}

.pl80 {
  padding-left: 80px;
}

.pl90 {
  padding-left: 90px;
}

.pr10 {
  padding-right: 10px;
}

.pr20 {
  padding-right: 20px;
}

.pr30 {
  padding-right: 30px;
}

.pr40 {
  padding-right: 40px;
}

.pr50 {
  padding-right: 50px;
}

.pr60 {
  padding-right: 60px;
}

.pr70 {
  padding-right: 70px;
}

.pr80 {
  padding-right: 80px;
}

.pr90 {
  padding-right: 90px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

/* # =================================================================
   # layout
   # ================================================================= */
#top header .header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  max-width: 100%;
  height: 100px;
}
@media screen and (max-width: 768.1px) {
  #top header .header_inner {
    height: 50px;
  }
}
#top header .header_inner h1 {
  width: auto;
  height: 100%;
  padding: 2% 0 2% 3%;
}
#top header .header_inner h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#top header .header_inner h1 a img {
  width: 20vw;
  max-width: 143px;
  padding: 0 0;
}
#top header .header_inner h1 a p.h-img {
  width: 20vw;
  max-width: 143px;
}
#top header .header_inner h1 a p.h-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#top header .header_inner h1 a p.h-txt {
  white-space: nowrap;
  padding: 0 0 0 5%;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(18px, 1.8vw, 30px);
}
#top header .header_inner h1 a p.h-txt span {
  display: block;
  font-size: clamp(10px, 1.8vw, 16px);
}
#top .cta {
  padding: 10% 5%;
  background-color: #35a3ff;
  background-image: radial-gradient(#47abff 21%, transparent 22.5%), radial-gradient(#47abff 21%, transparent 22.5%);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  background-repeat: repeat;
  border-top: 5px solid #badfff;
  border-bottom: 5px solid #badfff;
}
@media screen and (max-width: 768px) {
  #top .cta {
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
  }
}
#top .cta h2.visit {
  width: 90%;
  margin: auto;
}
#top .cta .cta-btn {
  margin-top: 10px;
  position: relative;
}
#top .cta .cta-btn:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("../img/vector/icon_pointer.svg");
  background-size: contain;
  right: 0;
  bottom: -20px;
  -webkit-animation: diagonalMove 1s infinite alternate ease-in-out;
          animation: diagonalMove 1s infinite alternate ease-in-out;
}
@media screen and (min-width: 768.1px) {
  #top .cta .cta-btn:after {
    width: 80px;
    height: 80px;
  }
}
#top .contents.other {
  background-color: #eeeeee;
  background-image: radial-gradient(#f3f3f3 21%, transparent 22.5%), radial-gradient(#f3f3f3 21%, transparent 22.5%);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  #top .contents.other {
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
  }
}
#top .contents .relative {
  position: relative;
}
#top .contents .relative .contents-btn {
  width: 90%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
#top .contents .relative .contents-btn:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("../img/vector/icon_pointer.svg");
  background-size: contain;
  right: 0;
  bottom: -20px;
  -webkit-animation: diagonalMove 1s infinite alternate ease-in-out;
          animation: diagonalMove 1s infinite alternate ease-in-out;
}
@media screen and (min-width: 768.1px) {
  #top .contents .relative .contents-btn:after {
    width: 80px;
    height: 80px;
  }
}
#top .contents .relative .contents-btn a img {
  height: auto;
}
#top .contents ul.btnarea {
  width: 90%;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768.1px) {
  #top .contents ul.btnarea {
    margin: 0 auto 60px;
  }
}
#top .contents ul.btnarea li {
  width: 48%;
}
#top .car {
  padding: 0 0 30px;
  margin: 0 0;
  background-color: #eeeeee;
  background-image: radial-gradient(#f3f3f3 21%, transparent 22.5%), radial-gradient(#f3f3f3 21%, transparent 22.5%);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  #top .car {
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
  }
}
#top .car .car-wrap {
  margin-bottom: 80px;
}
#top .car .car-wrap h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 900;
  font-size: clamp(25px, 2.5vw, 50px);
  color: #000;
  padding: 5px;
  background-color: #fff;
  margin: 20px 0;
}
#top .car .car-wrap h3 img.logo {
  width: 50px;
  margin-right: 10px;
}
#top .car .car-wrap .slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top .car .car-wrap .slider .slick-slide {
  height: auto !important;
}
#top .car .car-wrap .slider .box {
  background-color: #fff;
}
#top .car .car-wrap .slider .box.kei {
  border: 5px solid #ff8400;
  padding: 0 0 10px;
  margin: 0 8px;
}
#top .car .car-wrap .slider .box.kei h4 {
  background-color: #ff8400;
}
#top .car .car-wrap .slider .box.kei .maker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 900;
  font-size: clamp(15px, 1.8vw, 30px);
  color: #000;
  padding: 5px;
  background-color: #fff;
  margin: 0;
}
#top .car .car-wrap .slider .box.kei .maker img.logo {
  width: 40px;
  margin-right: 5px;
}
#top .car .car-wrap .slider .box.kei p.grade {
  background-color: #f9d39c;
}
#top .car .car-wrap .slider .box.standard {
  border: 5px solid #35a3ff;
  padding: 0 0 10px;
  margin: 0 8px;
}
#top .car .car-wrap .slider .box.standard h4 {
  background-color: #35a3ff;
}
#top .car .car-wrap .slider .box.standard p.grade {
  background-color: #c2e3ff;
}
#top .car .car-wrap .slider .box.standard h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 900;
  font-size: clamp(15px, 1.8vw, 30px);
  color: #000;
  padding: 5px;
  background-color: #fff;
  margin: 0;
}
#top .car .car-wrap .slider .box.standard h3 img.logo {
  width: 40px;
  margin-right: 5px;
}
#top .car .car-wrap .slider .box h4 {
  text-align: center;
  font-size: clamp(18px, 1.8vw, 36px);
  font-weight: 700;
  color: #fff;
  padding: 5px;
}
#top .car .car-wrap .slider .box p.grade {
  text-align: center;
  font-size: clamp(15px, 1.8vw, 30px);
  color: #000;
  padding: 5px;
  font-weight: 700;
}
#top .car .car-wrap .slider .box .img {
  width: 100%;
  height: 50vw;
  max-height: 400px;
  border-bottom: 3px dashed #ff8400;
}
#top .car .car-wrap .slider .box .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#top .car .car-wrap .slider .box hr {
  width: 90%;
  margin: 10px auto;
  height: 2px;
  background-color: #dedede;
  border: #dedede;
}
#top .car .car-wrap .slider .box dl {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap;
}
#top .car .car-wrap .slider .box dl.monthly {
  font-weight: 700;
  margin: 10px auto;
}
#top .car .car-wrap .slider .box dl.monthly dt {
  font-size: clamp(17px, 1.8vw, 34px);
  text-align: left;
}
#top .car .car-wrap .slider .box dl.monthly dd {
  text-align: right;
  font-size: clamp(15px, 1.8vw, 30px);
}
#top .car .car-wrap .slider .box dl.monthly dd span.monthly-price {
  font-size: clamp(25px, 1.8vw, 50px);
  color: #ff4e00;
}
#top .car .car-wrap .slider .box dl.payment {
  font-size: clamp(14px, 1.8vw, 28px);
}
#top .car .car-wrap .slider .box dl.payment dt {
  font-weight: 500;
  text-align: left;
  min-width: 48%;
}
#top .car .car-wrap .slider .box dl.payment dd {
  font-weight: 700;
  text-align: right;
}
#top #voice {
  margin-top: 50px;
}
#top #faq {
  padding: 0 0 100px;
}
@media screen and (min-width: 768.1px) {
  #top #faq {
    padding: 0 0 120px;
  }
}
#top #faq dl.faq-list {
  width: 90%;
  text-align: left;
  background-color: #fff;
  cursor: pointer;
  margin: 40px auto 0;
}
@media screen and (min-width: 768.1px) {
  #top #faq dl.faq-list {
    margin: 60px auto 0;
  }
}
#top #faq dl.faq-list dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 32px);
  border-bottom: 2px solid #d8d8d8;
  line-height: 1.3;
  padding: 0 30px 10px 0;
}
@media screen and (min-width: 768.1px) {
  #top #faq dl.faq-list dt {
    padding: 0 40px 20px 0;
  }
}
#top #faq dl.faq-list dt p.icon {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/vector/icon_faq-plus.svg");
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768.1px) {
  #top #faq dl.faq-list dt p.icon {
    width: 30px;
    height: 30px;
  }
}
#top #faq dl.faq-list dt.active p.icon {
  background-image: url("../img/vector/icon_faq-minus.svg");
}
#top #faq dl.faq-list dd {
  display: none;
  font-size: clamp(14px, 1.8vw, 28px);
  background-color: #f3f3f3;
  padding: 5%;
  margin-top: 10px;
}
@media screen and (min-width: 768.1px) {
  #top #faq dl.faq-list dd {
    margin-top: 20px;
  }
}
#top #faq dl.faq-list dd.active {
  display: block;
}
#top #shop .shop-list {
  margin-top: 50px;
}
#top #shop .shop-list dl {
  width: 90%;
  margin: 10px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: clamp(14px, 1.8vw, 28px);
}
#top #shop .shop-list dl dt {
  width: 30%;
  font-weight: 700;
}
#top #shop .shop-list dl dd {
  width: 65%;
}
#top #shop .shop-list a.maintenance-btn {
  width: 250px;
  color: #fff;
  background-color: #35a3ff;
  line-height: 3;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 28px);
  display: block;
  border-radius: 40px;
  padding: 0;
  margin: 30px auto;
  position: relative;
}
@media screen and (min-width: 768.1px) {
  #top #shop .shop-list a.maintenance-btn {
    width: 400px;
  }
}
#top #shop .shop-list a.maintenance-btn:after {
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 10px;
  height: 15px;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}
#top #shop .shop-list .map {
  width: 90%;
  margin: auto;
  height: 50vw;
  max-height: 300px;
}
#top #shop .shop-list .map iframe {
  width: 100%;
  height: 100%;
}
#top #contact {
  margin-top: 50px;
  padding: 0 0 50px;
  background: #FFFCEE;
}
#top #contact dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: none;
  width: 90%;
  margin: 30px auto 0;
}
#top #contact dl dt {
  display: block;
  width: 100%;
  font-weight: bold;
  padding: 0;
  font-size: clamp(18px, 1.8vw, 30px);
}
#top #contact dl dt span {
  color: #fff;
  border-radius: 50px;
  padding: 0 15px 1px;
  margin-left: 10px;
  font-size: clamp(14px, 1.8vw, 20px);
}
#top #contact dl dt span.required {
  background-color: #FF0000;
}
#top #contact dl dt span.optional {
  background-color: #39B54A;
}
#top #contact dl dd {
  display: block;
  width: 100%;
  padding: 5px 0 20px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
}
#top #contact dl dd p {
  margin-bottom: 5px;
}
#top #contact dl dd .privacy {
  padding: 5%;
  margin: auto;
  height: 200px;
  background-color: #fff;
  overflow: scroll;
  font-size: 14px;
}
#top #contact dl dd .privacy ol {
  margin-top: 10px;
  list-style: none;
}
#top #contact dl dd .privacy ol li {
  margin-left: 14px;
  text-indent: -14px;
  margin-bottom: 5px;
}
#top #contact .agree-check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top #contact .agree-check label input#f_agree {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
#top #contact .agree-check label span {
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: 700;
}
#top #contact .name-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top #contact .name-field > div {
  width: 100%;
}
#top #contact .name-field > div span {
  font-size: 15px;
  margin-bottom: 3px;
  display: inline-block;
}
#top #contact .form-select {
  margin: 10px 0 0;
}
#top #contact select,
#top #contact input {
  padding: 6px 10px;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 2px solid #808080;
}
@media screen and (max-width: 768px) {
  #top #contact select,
  #top #contact input {
    height: 50px;
  }
}
#top #contact select:focus,
#top #contact input:focus {
  border: 2px solid #808080 !important;
  outline: 0;
}
#top #contact select[type=date],
#top #contact input[type=date] {
  position: relative;
  width: 100%;
  min-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#top #contact select[type=date]::-webkit-date-and-time-value,
#top #contact input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
#top #contact select[type=date]::-webkit-calendar-picker-indicator,
#top #contact input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#top #contact select[type=date]::-webkit-inner-spin-button,
#top #contact input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#top #contact select[type=date]::-webkit-clear-button,
#top #contact input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
#top #contact textarea {
  background-color: #fff;
  border: 2px solid #808080;
  width: 100%;
  height: 250px;
  padding: 6px 10px;
}
@media screen and (max-width: 768px) {
  #top #contact textarea {
    height: 180px;
  }
}
#top #contact select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
#top #contact ::-webkit-input-placeholder {
  color: #ccc;
}
#top #contact ::-moz-placeholder {
  color: #ccc;
}
#top #contact :-ms-input-placeholder {
  color: #ccc;
}
#top #contact ::-ms-input-placeholder {
  color: #ccc;
}
#top #contact ::placeholder {
  color: #ccc;
}
#top #contact p {
  color: #000000;
  font-size: 14px;
}
#top #contact p.note {
  margin: 0 auto;
  padding: 0 0 0;
  position: relative;
}
#top #contact p.note > a {
  text-decoration: underline;
}
#top #contact .btn {
  text-align: center;
  margin: 30px auto 0;
  width: 90%;
  max-width: 400px;
}
#top #contact .btn button {
  width: 90%;
}
#top #contact .head-error {
  color: #b02e37;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: clamp(16px, 1.8vw, 32px);
  text-align: center;
}
#top #contact .error {
  color: #b02e37;
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: bold;
  padding: 3px 0;
  margin-top: 10px;
  display: block;
  width: 100%;
}
#top #contact .agree-field .error {
  text-align: center;
  margin: 5px auto 0;
}

footer {
  border-top: 5px solid #000;
  text-align: center;
  background: #000000;
  padding: 5px 0 80px;
  font-weight: bold;
}
@media screen and (min-width: 768.1px) {
  footer {
    padding: 5px 0 160px;
  }
}
footer.thanks {
  background: #fffcee;
  border-top: none;
}
footer .footer-logo {
  background: #fff;
  text-align: center;
  padding: 20px 0;
}
footer .footer-logo img.logo {
  width: 30%;
  max-width: 150px;
  margin: auto;
}
footer .footer-logo p {
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: 700;
  color: #000000;
}
footer .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: auto;
  font-size: clamp(14px, 1.8vw, 28px);
  padding: 30px 0 10px;
}
footer .footer-menu ul li {
  width: 48%;
  margin-bottom: 20px;
}
footer .footer-menu ul li a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 0 5px;
  border-bottom: 1px solid #fff;
}
footer p.copyright {
  opacity: 0.7;
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 12px;
}
footer p.copyright.thanks {
  opacity: 1;
  color: #000;
  padding: 0 0 30px;
}

#thanks {
  background-color: #fffcee;
  padding: 50px 5%;
  text-align: center;
}
#thanks h2 {
  font-weight: 900;
  font-size: clamp(30px, 8vw, 60px);
  margin-bottom: 40px;
  line-height: 1;
}
#thanks .lead {
  margin-bottom: 40px;
  font-size: clamp(13px, 1.8vw, 26px);
}
#thanks .btn {
  width: 90%;
  margin: auto;
  max-width: 400px;
}

@-webkit-keyframes diagonalMove {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-5px, -2px);
            transform: translate(-5px, -2px);
  }
}

@keyframes diagonalMove {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-5px, -2px);
            transform: translate(-5px, -2px);
  }
}
.floating-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  z-index: 999;
}
.floating-btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.floating-btn ul li {
  width: 50%;
  margin: auto;
  text-align: center;
}
.floating-btn ul li a {
  display: block;
  width: 100%;
}

#confirm {
  max-width: 768px;
  margin: auto;
  overflow: hidden;
}
#confirm .wrap {
  background-color: #fffcee;
}
#confirm header {
  background-color: #fff;
  padding: 0;
}
#confirm header .header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  max-width: 100%;
  height: 100px;
}
@media screen and (max-width: 768.1px) {
  #confirm header .header_inner {
    height: 50px;
  }
}
#confirm header .header_inner h1 {
  width: auto;
  height: 60%;
  padding: 0 0 0 3%;
}
#confirm header .header_inner h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#confirm header .header_inner h1 a img {
  width: 20vw;
  max-width: 143px;
  padding: 0 0;
}
#confirm header .header_inner h1 a p.h-img {
  width: 20vw;
  max-width: 143px;
}
#confirm header .header_inner h1 a p.h-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#confirm header .header_inner h1 a p.h-txt {
  white-space: nowrap;
  padding: 0 0 0 5%;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(18px, 1.8vw, 30px);
}
#confirm header .header_inner h1 a p.h-txt span {
  display: block;
  font-size: clamp(10px, 1.8vw, 16px);
}
#confirm main table.formTable {
  width: 90%;
  margin: 30px auto;
  font-size: 14px;
}
#confirm main table.formTable th {
  width: 30%;
  padding: 2%;
}
@media screen and (max-width: 768.1px) {
  #confirm main table.formTable th {
    width: 40%;
  }
}
#confirm main table.formTable td {
  width: 70%;
  padding: 2%;
}
@media screen and (max-width: 768.1px) {
  #confirm main table.formTable td {
    width: 60%;
  }
}
#confirm main button {
  width: 90%;
  max-width: 400px;
  margin-bottom: 20px;
}
#confirm .error {
  text-align: center;
  margin-top: 20px;
}
#confirm .error h4 {
  margin: 20px auto;
}
#confirm .error p.error_messe {
  color: #b02e37;
  font-weight: bold;
}