@charset "UTF-8";
/* =============================================================

Custom Properties

* ============================================================= */
:root {
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --header-height: 65px;
  --inner-width: 800;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(15px + var(--slope-1px) * 10);
  /* family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: Lato, sans-serif;
  --base-border-radius: 10px;
}

/* =============================================================

Base

* ============================================================= */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #ccc;
  color: #000;
  letter-spacing: .03em;
  font-size: 1.6rem;
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

/* img[src$=".svg"] {
  opacity: 0;
} */

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

a.js-tel._inactive {
  color: inherit;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

*[data-toggle-id] {
  display: none;
}

*[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateY(20px);
}

*[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateY(0);
}

*.js-itrsec-right[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

*.js-itrsec-left[data-intersection] {
  opacity: 0;
  transition: all .4s ease-out;
  transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting="true"] {
  opacity: 1;
  transition: all .4s ease-out .2s;
  transform: translateX(0);
}

/* =============================================================

l-wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  max-width: var(--inner-width-px);
  margin: 0 auto;
  padding: 0;
  background: #fff;
  box-shadow: 0 0 10px 3px rgba(99, 99, 99, .2);
}

/* =============================================================

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  margin: 0 auto;
  padding-inline: 25px;
  background: #fff;
}

.l-header__logo {
  position: relative;
  z-index: 1;
  display: flex;
  width: 259px;
  max-width: 60%;
  margin: auto 0;
}

.l-header__logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  max-width: 100%;
  transition: opacity .25s;
}

.l-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (hover: hover) {
  .l-header__logo a:hover {
    opacity: .6;
  }
}

@media screen and (max-width: 560px) {
  .l-header__logo a{
    height: 28px;
  }
}

/* header menu
=============================== */
.l-header-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: stretch;
}

.l-header-menu a {
  text-decoration: none;
}

.l-header-menu__spnav {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  max-width: 5.625em;
}

@media screen and (max-width: 960px) {
  .l-header-menu__spnav {
    display: block;
  }
}

.l-header-menu__nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-header-menu__nav {
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    padding-top: 70px;
    padding-bottom: 70px;
    opacity: 0;
    transition: transform .4s, opacity .3s;
    transform: translateX(100%);
  }
  .l-header-menu.is-open .l-header-menu__nav {
    opacity: 1;
    transform: translateX(0);
  }
}

/* header nav
=============================== */
.l-header-nav {
  display: flex;
  font-size: 16px;
}

@media screen and (max-width: 1366px) {
  .l-header-nav {
    /* 1366px - 960px の間の幅を 16px - 13px の範囲で変化 */
    font-size: calc(5.9064px + .73892vw);
  }
}

@media screen and (max-width: 960px) {
  .l-header-nav {
    font-size: 13px;
  }
}

@media screen and (max-width: 960px) {
  .l-header-nav {
    display: block;
    flex-grow: 1;
    overflow-y: auto;
    width: 100%;
    height: calc(100% - 70px*2);
    margin: 0 auto;
    padding: 5.33333% 8%;
    border-top: 2px solid #ddd;
    background: #fff;
    font-size: 16px;
  }
}

.l-header-nav__item {
  position: relative;
  flex-grow: 1;
  margin-left: 2.375em;
}

.l-header-nav__item:first-child, .l-header-nav__item:last-child {
  margin-left: 0;
}

@media screen and (max-width: 960px) {
  .l-header-nav__item {
    margin: 0;
    border-bottom: 1px solid #bbb;
  }
  .l-header-nav__item[data-category=calendar], .l-header-nav__item[data-category=contact] {
    position: absolute;
    bottom: 0;
    width: 50%;
    border-bottom: 0;
  }
  .l-header-nav__item[data-category=calendar] {
    left: 0;
  }
  .l-header-nav__item[data-category=contact] {
    right: 0;
  }
}

.l-header-nav__handle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: all .3s;
}

@media screen and (max-width: 960px) {
  .l-header-nav__handle {
    justify-content: flex-start;
    height: auto;
    padding: 1em 1.5em 1em .5em;
    font-weight: 550;
  }
  .l-header-nav__handle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    margin: auto 0;
    border-top: 3px solid;
    border-right: 3px solid;
    color: #e53232;
    transition: transform .4s;
    transform: rotate(45deg);
  }
  .l-header-nav__handle:not(:last-child):after {
    right: 5px;
    transform: rotate(135deg);
  }
  .l-header-nav__handle:not(:last-child).is-open:after {
    transform: rotate(-45deg);
  }
}

@media screen and (min-width: 961px) {
  .l-header-nav__item:hover .l-header-nav__handle {
    opacity: .6;
  }
}

.l-header-nav__drawer {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out;
  transform: translateX(-50%) scaleY(0);
  transform-origin: 0 0;
}

@media screen and (max-width: 960px) {
  .l-header-nav__drawer {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transition: none;
    transform: none;
  }
}

@media screen and (min-width: 961px) {
  .l-header-nav__item:hover .l-header-nav__drawer {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

/* header button
=============================== */
.l-header-button {
  position: relative;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.57143em;
  height: 100%;
  border: 1px solid #e53232;
  background: #e53232;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: .875em;
  line-height: 1;
  cursor: pointer;
  transition: color .3s ease-in-out;
}

@media screen and (max-width: 960px) {
  .l-header-button {
    width: 100%;
    padding: 1em;
  }
}

.l-header-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all .3s ease-in-out;
  transform: scaleX(0);
  transform-origin: 0 0;
}

.l-header-button:hover {
  color: #e53232;
}

.l-header-button:hover:before {
  opacity: 1;
  transform: scaleX(1);
}

.l-header-button._contact {
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
}

.l-header-button._contact:hover {
  color: #1f1f1f;
}

.l-header-button > * {
  position: relative;
  z-index: 1;
}

.l-header-button > i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.42857em;
  height: 1.42857em;
  margin-bottom: .57143em;
}

.l-header-button > i svg path {
  fill: currentColor;
}

/* header spnav trigger
=============================== */
.l-header-spnav-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 960px) {
  .l-header-spnav-trigger.is-open {
    transition: color .2s .2s;
  }
}

.l-header-spnav-trigger > div,
.l-header-spnav-trigger > div:before,
.l-header-spnav-trigger > div:after {
  position: absolute;
  display: block;
  height: 2px;
  background: #000;
}

.l-header-spnav-trigger > div {
  top: 0;
  right: 0;
  bottom: 1.2em;
  left: 0;
  z-index: 1;
  width: 2.5em;
  margin: auto;
  font-size: 10px;
  transition: background .2s;
}

.l-header-spnav-trigger > div:before, .l-header-spnav-trigger > div:after {
  content: "";
  left: 0;
  width: 100%;
  transition: top .2s .2s, bottom .2s .2s, transform .2s, background .2s;
}

.l-header-spnav-trigger > div:before {
  top: -.7em;
}

.l-header-spnav-trigger > div:after {
  bottom: -.7em;
}

.l-header-spnav-trigger > div > span {
  position: absolute;
  bottom: -2.4em;
  left: 50%;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  transform: translateX(-50%);
}

.l-header-spnav-trigger.is-open > div {
  background: transparent;
  transition: background .2s .2s;
}

.l-header-spnav-trigger.is-open > div:before, .l-header-spnav-trigger.is-open > div:after {
  transition: top .2s, bottom .2s, transform .2s .2s, background .2s .2s;
}

.l-header-spnav-trigger.is-open > div:before {
  top: 0;
  transform: rotate(45deg);
}

.l-header-spnav-trigger.is-open > div:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* header page nav
=============================== */
.l-header-page-nav {
  width: 14em;
  padding-top: 1.5em;
}

.l-header-nav__item[data-category=maintenance] .l-header-page-nav {
  width: 34em;
}

.l-header-page-nav:before, .l-header-page-nav:after {
  content: "";
  position: absolute;
  top: calc(1.5em - .4375em);
  right: 0;
  left: 0;
  display: block;
  width: .875em;
  height: .875em;
  margin: 0 auto;
  transform: rotate(45deg);
}

@media screen and (max-width: 960px) {
  .l-header-page-nav:before, .l-header-page-nav:after {
    content: none;
  }
}

.l-header-page-nav:before {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
}

.l-header-page-nav:after {
  z-index: 1;
  background: #fff;
}

@media screen and (max-width: 960px) {
  .l-header-page-nav {
    width: 100% !important;
    padding-top: 0;
    font-size: .875em;
  }
}

.l-header-page-nav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 1.42857em 1.57143em;
  padding: 1.2em;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
}

@media screen and (max-width: 960px) {
  .l-header-page-nav__list {
    display: block;
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.l-header-page-nav__item {
  width: 100%;
}

.l-header-nav__item[data-category=maintenance] .l-header-page-nav__item {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .l-header-page-nav__item {
    width: 100% !important;
    border-top: 1px solid #bbb;
  }
}

.l-header-page-nav a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: .675em 1em;
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s;
}

@media screen and (max-width: 960px) {
  .l-header-page-nav a {
    padding: 1.07143em 2.28571em;
    border-radius: 0;
    font-weight: 500;
  }
  .l-header-page-nav a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    display: block;
    box-sizing: border-box;
    width: 7px;
    height: 7px;
    margin: auto 0;
    border-top: 2px solid;
    border-right: 2px solid;
    color: #666;
    transition: transform .4s;
    transform: rotate(45deg);
  }
}

@media screen and (min-width: 961px) {
  .l-header-page-nav a:hover {
    background: #f2f2f2;
  }
}

/* =============================================================

main

* ============================================================= */
/* l-main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  min-height: 0%;
  max-height: 100%;
  padding: 0;
  background-image: url("../img/newcar-bg.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: contain;
}

/* =============================================================

Footer

* ============================================================= */
/* l-footer
============================== */
.l-footer {
  padding: 1.5em var(--inner-padding);
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: calc(10px + var(--slope-1px) * 2);
  line-height: 1.5;
}

/* =============================================================

Sticky

* ============================================================= */
/* l-sticky-nav
============================== */
.l-sticky-nav {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(15px + var(--slope-1px) * 15);
  width: 100%;
  padding: calc(10px + var(--slope-1px) * 10) var(--inner-padding);
  background: #fff;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.l-sticky-nav.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* l-sticky-button-container
============================== */
.l-sticky-button-container {
  display: flex;
  align-items: center;
  gap: calc(10px + var(--slope-1px) * 10);
  margin: 0 auto;
}

/* l-sticky-button
============================== */
.l-sticky-button {
  display: block;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .l-sticky-button:hover {
    opacity: .7;
  }
}

/* l-sticky-toggle-button
============================== */
.l-sticky-toggle-button {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 6);
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-sticky-toggle-button:hover {
  opacity: .7;
}

.l-sticky-toggle-button__icon {
  position: relative;
  display: block;
  width: calc(23.5px + var(--slope-1px) * 23.5);
  height: calc(1.5px + var(--slope-1px) * 1.5);
  margin: var(--margin) 0;
  border-radius: 3px;
  background: #000;
  transition: all .4s;

  --margin: calc(6.5px + var(--slope-1px) * 6.5);
}

body.is-menu-open .l-sticky-toggle-button__icon {
  background: transparent;
}

.l-sticky-toggle-button__icon:before, .l-sticky-toggle-button__icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #000;
  transition: translate .2s .2s, rotate .2s;
}

body.is-menu-open .l-sticky-toggle-button__icon:before, body.is-menu-open .l-sticky-toggle-button__icon:after {
  transition: translate .2s, rotate .2s .2s;
}

.l-sticky-toggle-button__icon:before {
  translate: 0px calc(var(--margin) * -1);
}

body.is-menu-open .l-sticky-toggle-button__icon:before {
  translate: 0px 0px;
  rotate: 45deg;
}

.l-sticky-toggle-button__icon:after {
  translate: 0px var(--margin);
}

body.is-menu-open .l-sticky-toggle-button__icon:after {
  translate: 0px 0px;
  rotate: -45deg;
}

.l-sticky-toggle-button__text {
  font-weight: 700;
  font-size: calc(9px + var(--slope-1px) * 9);
  font-family: var(--en-font-family);
  line-height: 1;
}

/* l-sticky-toggle-menu
============================== */
.l-sticky-toggle-menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all .3s;
  pointer-events: none;

  overscroll-behavior-y: none;
}

body.is-menu-open .l-sticky-toggle-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-sticky-toggle-menu[data-toggle-type=fade] {
  left: 0;
  max-width: 800px;
  margin: 0 auto;
}

.l-sticky-toggle-menu[data-toggle-type=right] {
  width: 0;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .2);
}

body.is-menu-open .l-sticky-toggle-menu[data-toggle-type=right] {
  width: 400px;
}

/* l-sticky-area
============================== */
.l-sticky-area {
  position: sticky;
  bottom: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.l-sticky-area.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* l-sticky-body
============================== */
.l-sticky-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem var(--inner-padding) 1rem;
  background-image: url(../img/bg-follow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 540px) {
  .l-sticky-body {
    padding: 1rem var(--inner-padding) 0.8rem;
  }
}

/* l-sticky-foot
============================== */
.l-sticky-foot {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem var(--inner-padding);
  background: #fff;
}
@media screen and (max-width: 540px) {
  .l-sticky-foot {
    padding: .5rem var(--inner-padding);
    line-height: 1.3;
  }
}

.l-sticky-foot__text {
  width: 100%;
  color: #cc0000;
  font-size: clamp(10px, 6.471px + 0.941vw, 14px);
  font-weight: 500;
  text-align-last: justify;
}
@media screen and (max-width: 800px) {
  .l-sticky-foot__text {
    width: auto;
    text-align-last: auto;
    text-align: justify;
  }
}

/* l-sticky-btn
============================== */
.l-sticky-btn__wrapper {
  z-index: 2;
  display: block;
}

.l-sticky-btn {
  transition: all .2s ease;
  transition: opacity .2s;
}

@media (hover: hover) {
  .l-sticky-btn:hover {
    opacity: .7;
  }
}

/* =============================================================

Modal

* ============================================================= */
/* l-modal
=============================== */
.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100005;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .75);
}

.l-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--inner-padding);
}

.l-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}

.l-modal__modal__contents-wrapper {
  position: relative;
  width: 700px;
  max-width: 100%;
  max-height: 95vh;
}

.l-modal__contents {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  width: 700px;
  max-width: 100%;
  max-height: 95vh;
  border-radius: var(--base-border-radius);
  border-radius: var(--base-border-radius);
  background-color: #fff;
  padding-bottom: 25px;
}

.p-modal01 .l-modal__contents {
  background-image: radial-gradient(circle, #fffbca 2.5px, transparent 2.5px), radial-gradient(circle, #fffbca 2.5px, transparent 2.5px);
  background-position: 0 0, 7.5px 15px;
  background-size: 15px 30px;
}

.l-modal__contents._short {
  width: 800px;
}

.l-modal__close {
  position: absolute;
  top: 0;
  right: clamp(-20px, -6.62px + -1.18vw, -15px);
  width: clamp(36px, 9.26px + 5.65vw, 60px);
  outline: none;
  border: 0;
  border-radius: 0;
  background: none;
  z-index: 10;
  transition: all .2s ease;
  transition: opacity .2s;
}
@media (hover: hover) {
  .l-modal__close:hover {
    opacity: .7;
    cursor: pointer;
  }
}



/* .l-modal__close span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  font-size: 18px;
} */

/* .l-modal__close span:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
} */

/* .l-modal__close:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
} */

/* c-button
============================== */
.c-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .c-button:hover {
    opacity: .7;
  }
}

/* c-shadow-button
============================== */
.c-shadow-button {
  display: block;
}

.c-shadow-button._round {
  border-radius: 33px;
}

.c-shadow-button._radius {
  border-radius: 5px;
}

.c-shadow-button._down {
  margin-bottom: 5px;
  box-shadow: 0px 5px 0px 0px #000;
}

.c-shadow-button._down img {
  transition: transform .2s ease-out;
}

@media (hover: hover) {
  .c-shadow-button._down:hover img {
    transform: translateY(5px);
  }
}

.c-shadow-button._down-right {
  margin-bottom: 4px;
  box-shadow: 4px 4px 0px 0px #000;
}

.c-shadow-button._down-right img {
  transition: transform .2s ease-out;
}

@media (hover: hover) {
  .c-shadow-button._down-right:hover img {
    transform: translate(4px, 4px);
  }
}


/* c-movie
============================== */
.c-movie__contents {
  aspect-ratio: 16 / 9;
}
.c-movie__contents video,
.c-movie__contents iframe {
  width: 100%;
  height: 100%;
}

/* c-section
============================== */
.c-section {
  margin: 40px 0;
  padding: 0 var(--inner-padding);
}

.c-section__head {
  margin-bottom: 30px;
}

.c-section__inner {
  padding: 0 var(--inner-padding);
}

/* c-image-block
============================== */
.c-image-block {
  max-width: 700px;
  margin: 0 auto;
}

.c-image-block:not(:first-child) {
  margin-top: 30px;
}

.c-image-block__foot {
  width: 90%;
  max-width: calc(350px + var(--inner-padding) * 2);
  margin: 20px auto 0;
  padding: 0 var(--inner-padding);
}

/* c-toggle-block
============================== */
.c-toggle-block {
  padding: 0 var(--inner-padding);
}

.c-toggle-block:not(:first-child) {
  margin-top: 50px;
}

.c-toggle-block__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(12px + var(--slope-1px) * 4);
  margin-bottom: 1em;
  text-align: center;
  font-weight: 500;
  font-size: calc(15px + var(--slope-1px) * 5);
}

.c-toggle-block__lead:before, .c-toggle-block__lead:after {
  content: "";
  display: block;
  width: 2px;
  height: calc(18px + var(--slope-1px) * 6);
  border-radius: 3px;
  background: currentColor;
}

.c-toggle-block__lead:before {
  transform: rotate(-33deg);
}

.c-toggle-block__lead:after {
  transform: rotate(33deg);
}

.c-toggle-block__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .3em 2em;
  outline: none;
  border: calc(1.5px + var(--slope-1px) * .5) solid;
  border-radius: 5px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: calc(18px + var(--slope-1px) * 6);
  cursor: pointer;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (hover: hover) {
  .c-toggle-block__button:hover {
    opacity: .7;
  }
}

.c-toggle-block__button:before, .c-toggle-block__button:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(12px + var(--slope-1px) * 4);
  bottom: 0;
  width: calc(12px + var(--slope-1px) * 4);
  height: 2px;
  margin: auto 0;
  background: currentColor;
  transition: transform .3s;
}

.c-toggle-block__button:not(.is-open):after {
  transform: rotate(90deg);
}

.c-toggle-block__contents {
  display: none;
  overflow: hidden;
  margin-top: 25px;
  border-radius: 10px;
}
.c-toggle-block__contents.u-bg-gray > .c-notes {
  background: transparent;
}

/* c-toggle-note
============================== */
.c-toggle-note{
  margin-top: 50px;
}
.c-toggle-note .c-toggle-block__button{
  width: 80%;
  max-width: 270px;
  margin-inline: auto;
  font-size: calc(14px + var(--slope-1px) * 4);
  border: 1px solid;
  padding: .6em;
}
.c-toggle-note .c-toggle-block__button:before,
.c-toggle-note .c-toggle-block__button:after{
  height: 1px;
}

/* c-notes
============================== */
.c-notes {
  padding: 25px;
  background: #fff;
  text-align: justify;
  text-justify: auto;
}

/* .c-notes:not(:first-child) {
  margin-top: 25px;
} */

.c-notes p + p{
  margin-top: 10px;
}

.c-notes__normal {
  font-size: calc(8px + var(--slope-1px) * 2);
  line-height: 1.5;
}

.c-notes__important {
  font-weight: bold;
  font-size: calc(11px + var(--slope-1px) * 3);
  line-height: 1.42857;
}

.c-notes__kei {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .25em;
  border: 1px solid;
  background: #e9f6fe;
  text-align: center;
  text-align: center;
  font-weight: 500;
  font-size: calc(12px + var(--slope-1px) * 2);
}

@media screen and (min-width: 961px) {
  .c-notes__kei {
    letter-spacing: .5em;
  }
}

.c-notes__kei:not(:first-child) {
  margin-top: 12px;
}


/* c-more-block
============================== */
.c-more-block-wrapper:not(:first-child) {
  margin-top: 50px;
}

.c-more-block {
  position: relative;
  overflow: hidden;
  height: calc(230px + var(--slope-1px) * 170);
  margin: 0 var(--inner-padding);
  transition: all .3s ease-out;
}

.c-more-block.is-open {
  height: var(--open-height);
}

.c-more-block__contents {
  padding-bottom: calc(56.25px + var(--slope-1px) * 18.75);
}

.c-more-block__button {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  padding: calc(22.5px + var(--slope-1px) * 7.5);
  outline: none;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 500;
  font-size: calc(18.75px + var(--slope-1px) * 6.25);
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-more-block__button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(180px + var(--slope-1px) * 60);
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, .86) 50%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block.is-open .c-more-block__button {
  background: #fff;
}

.c-more-block.is-open .c-more-block__button:after {
  display: none;
}

.c-more-block__button span {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  line-height: 1;
  transition: all .3s ease-out;
}

.c-more-block__button span:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
}

.c-more-block__button span._close {
  display: none;
}

.c-more-block__button span._close:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="M280-440h400v-80H280v80ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>');
}

@media (hover: hover) {
  .c-more-block__button:hover span {
    opacity: .7;
  }
}

.c-more-block.is-open .c-more-block__button span._open {
  display: none;
}

.c-more-block.is-open .c-more-block__button span._close {
  display: flex;
}

/* c-tab
============================== */
.c-tab__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--column), 1fr);
  gap: 4px;

  --column: 3;
}

.c-tab__item {
  display: flex;
  align-items: flex-end;
}

.c-tab__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  height: calc(30px + var(--slope-1px) * 30);
  outline: none;
  border: 0;
  border-radius: 5px 5px 0 0;
  background: #b5b5b6;
  color: #636363;
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 12);
  transition: opacity .3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (hover: hover) {
  .c-tab__button:hover {
    opacity: .7;
  }
}

.c-tab__button.is-current {
  height: calc(37.5px + var(--slope-1px) * 37.5);
  background: #000;
  color: #fff;
  pointer-events: none;
}

.c-tab__button.is-current:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: calc(7.5px + var(--slope-1px) * 7.5);
  height: calc(6.5px + var(--slope-1px) * 6.5);
  margin: 0 auto;
  background: inherit;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.c-tab__contents {
  display: none;
  padding: var(--inner-padding);
  background: #fff;
}

.c-tab__contents.is-current {
  display: block;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}

.slick-slider.slick-initialized {
  max-height: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.slick-vertical .slick-track {
  display: block;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
}

.slick-slide a {
  outline: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  outline: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

/* Arrows */
.slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: calc(22.96875px + var(--slope-1px) * 26.03125);
  height: calc(51.5625px + var(--slope-1px) * 58.4375);
  margin: auto 0;
  padding: 0;
  outline: none;
  outline: none;
  border: 0;
  border-radius: 0;
  color: currentColor;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (hover: hover) {
  .slick-arrow:hover {
    opacity: .7;
  }
}

.slick-arrow.slick-prev {
  left: 0;
  background: url(../img/slide-arrow-left.png) 50% 50%/contain no-repeat;
}

.slick-arrow.slick-next {
  right: 0;
  background: url(../img/slide-arrow-right.png) 50% 50%/contain no-repeat;
}

/* Dots */
.slick-slider.slick-dotted {
  margin-bottom: 65px;
}

.slick-dots {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
}

.slick-dots > li {
  display: block;
  opacity: 1;
}

.slick-dots > li button {
  position: relative;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  width: 15px;
  height: 15px;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 100%;
  background: #000;
  font-size: 0;
  opacity: .5;
  opacity: .25;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.slick-dots > li.slick-active button {
  opacity: 1;
}

/* thumbs */
.slick-thumbs {
  display: flex;
  width: calc(100% + 4px);
  margin-top: 12px;
  margin-right: -4px;
}

.slick-thumbs > li {
  min-width: 0%;
  max-width: 50%;
  padding-right: 4px;
}

/* ============================================================

mainvisual

============================================================ */
/* p-mainvisual
============================== */
.p-mainvisual {
  position: relative;
}

.p-mainvisual img {
  margin-inline: auto;
}

.p-mainvisual-title {
  position: absolute;
  top: 5em;
  right: 0;
  left: 0;
  margin-inline: auto;
}

.p-mainvisual-copy {
  position: absolute;
  bottom: 17.5em;
}

.p-mainvisual-cars__item:nth-child(1) {
    position: absolute;
  bottom: 13em;
  left: 1em;
}

.p-mainvisual-cars__item:nth-child(2) {
  position: absolute;
  bottom: 13em;
  right: 20em;
}

.p-mainvisual-cars__item:nth-child(3) {
  position: absolute;
  bottom: 13em;
  right: 0;
}

@media screen and (max-width: 560px) {
  .p-mainvisual-title {
    width: 50%;
    top: 3em;
  }
  .p-mainvisual-copy {
    width: 30%;
    bottom: 8.5em;
  }
  .p-mainvisual-cars__item:nth-child(1) {
    width: 33%;
    bottom: 6em;
    left: .5em;
  }
  .p-mainvisual-cars__item:nth-child(2) {
    right: 9em;
    width: 38%;
    bottom: 6em;
}
  .p-mainvisual-cars__item:nth-child(3) {
    width: 50%;
    bottom: 6em;
  }
}

/* animation
============================== */
.slidein-left {
  opacity: 0;
  animation: slideIn-left 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn-left {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.slidein-right {
  opacity: 0;
  animation: slideIn-right .6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn-right {
  0% {
    transform: translate(-180px, 60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.popup {
  opacity: 0;
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
 
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

/* time */
.time01 {
  animation-delay: 0.3s;
}
.time02 {
  animation-delay: 0.6s;
}
.time03 {
  animation-delay: 1.1s;
}
.time04 {
  animation-delay: 1.4s;
}
.time05 {
  animation-delay: 1.7s;
}

/* ============================================================

campaign

============================================================ */
/* p-campaign
============================== */
.p-campaign {
  margin-top: clamp(-220px, 35px + -28.24vw, -100px);
  margin-bottom: 20px;
}

.p-campaign__inner {
  display: flex;
  justify-content: center;
}

/* ============================================================

modalarea

============================================================ */
/* p-modalarea
============================== */
.p-modalarea {
  background-image: url("../img/modal-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-modalarea-body {
    width: 100%;
    height: 100%;
    padding: 0 var(--inner-padding);
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    padding-bottom: clamp(25px, -19.12px + 11.76vw, 75px);
}

/* ============================================================

modal

============================================================ */
/* p-modal
============================== */
.p-modal-notes {
  padding-inline: 25px;
  margin-top: 15px;
}

.p-modal-notes__normal {
  font-size: calc(8px + var(--slope-1px) * 2);
  line-height: 1.5;
}

.p-modal01-shoplist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 10px;
}
@media screen and (max-width: 540px) {
  .p-modal01-shoplist {
    padding: 15px 5px;
  }
}

.p-modal01-shoplist__column {
  padding-inline: 15px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}
.p-modal01-shoplist__column:not(:last-child) {
  border-right: 1px solid #9c9c9c;
}
@media screen and (max-width: 540px) {
  .p-modal01-shoplist__column {
    padding-inline: 5px;
  }
}

.p-modal01-shoplist__title {
  padding-bottom: 0.5rem;
}

.p-modal01-shoplist__box:not(:nth-of-type(2)) {
  padding-top: 30px;
}
@media screen and (max-width: 540px) {
.p-modal01-shoplist__box:not(:nth-of-type(2)) {
  padding-top: 15px;
}
}

.p-modal01-shoplist__pref {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.8rem 0.5rem;
  width: 100%;
  word-break: auto-phrase;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .p-modal01-shoplist__pref {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
}
.p-modal01-shoplist__pref._kyoto {
  background: #a665aa;
}
.p-modal01-shoplist__pref._hyogo {
  background: #60b6b3;
}
.p-modal01-shoplist__pref._osaka {
  background: #6481c5;
}
.p-modal01-shoplist__pref._nara {
  background: #50b072;
}
.p-modal01-shoplist__pref._wakayama {
  background: #f88c75;
}

.p-shoplist-item {
  display: flex;
  justify-content: space-between;
  padding-block: 0.8rem;
  border-bottom: 1px solid #9c9c9c;
}
@media screen and (max-width: 768px) {
  .p-shoplist-item {
    flex-direction: column;
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .p-shoplist-item {
    padding: 0.5rem;
  }
}

.p-shoplist-item > span:first-child {
  font-size: 1.2rem;
  width: 40%;
}
@media screen and (max-width: 540px) {
  .p-shoplist-item > span:first-child {
    width: 100%;
  }
}

.p-shoplist-item > span:last-child {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  gap: 3px;
}

.p-modal03-list {
  padding: 10px 10px 0;
}

.p-modal03-list__item {
  margin-bottom: clamp(-15px, -14.89px + 2.35vw, -5px);
}

.p-modal04-adf {
  padding: 25px;
  border-radius: 10px;
}
@media screen and (max-width: 540px) {
  .p-modal04-adf {
    padding: 15px;
  }
}

.p-modal04-adf__inner {
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .p-modal04-adf__inner {
    padding: 15px;
  }
}

.p-modal04 .c-toggle-block__contents {
  margin-top: 5px;
}
.p-modal04 .c-toggle-block__contents > .c-notes {
  padding: 15px;
}

.p-modal04-note {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  padding-top: 30px;
}
@media screen and (max-width: 540px) {
  .p-modal04-note {
    padding-top: 15px;
  }
}

.p-modal04-note__item {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.p-modal04-note__item span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-modal04-note__item span:first-child {
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  padding: 6px;
  min-width: 75px;
  height: fit-content;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-modal04-note__item span:first-child {
    font-size: 11px;
  }
}

.p-modal04-note__item span:last-child {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
.p-modal04-note__item span:last-child {
  font-size: 12px;
}
}

/* ============================================================

CV

============================================================ */
/* p-cv-section
============================== */
.p-cv-section {
  padding: 30px var(--inner-padding);
  background: #616161;
  color: #fff;
  text-align: center;
}

.p-cv-section__head {
  margin-bottom: calc(22.5px + var(--slope-1px) * 7.5);
  padding: 0 var(--inner-padding);
}

.p-cv-section__body {
  margin-bottom: 10px;
  padding: 0 var(--inner-padding);
}

.p-cv-section__lead {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: .5em;
  margin: 0 auto;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 6);
  line-height: 1.5;
}

.p-cv-section__lead br {
  display: none;
}

@media screen and (max-width: 960px) {
  .p-cv-section__lead br {
    display: block;
  }
}

.p-cv-section__lead:before, .p-cv-section__lead:after {
  content: "";
  display: block;
  width: calc(2.25px + var(--slope-1px) * .75);
  height: calc(22.5px + var(--slope-1px) * 7.5);
  border-radius: 3px;
  background: #fff;
}

.p-cv-section__lead:before {
  transform: rotate(-33deg);
}

.p-cv-section__lead:after {
  transform: rotate(33deg);
}

.p-cv-section__text {
  margin-top: .5em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: calc(13.5px + var(--slope-1px) * 4.5);
  line-height: 1.5;
}

.p-cv-section__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

/* p-cv-button
============================== */
.p-cv-button {
  display: block;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .p-cv-button:hover {
    opacity: .7;
  }
}

/* ============================================================

newcar

============================================================ */
/* p-newcar
============================== */
.p-newcar {
  margin: 40px auto;
}

.p-newcar__head {
  margin-bottom: 33px;
  padding: 0 var(--inner-padding);
}

.p-newcar-nav__item {
  width: clamp(133px, -48.68px + 56.24vw, 372px);
}

/* p-newcar-nav-grid
============================== */
.p-newcar-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 7px;
  margin-bottom: calc(30px + var(--slope-1px) * 25);
  padding: 0 var(--inner-padding);
}

.p-newcar-nav-grid > * {
  width: calc((100% - 21px) / 4);
}

@media screen and (max-width: 560px) {
  .p-newcar-nav-grid > * {
    width: calc((100% - 14px) / 3);
  }
}

/* p-newcar-nav
============================== */
.p-newcar-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(14px + var(--slope-1px) * 4);
  line-height: 1;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .p-newcar-nav:hover {
    opacity: .7;
  }
}

.p-newcar-nav img {
  max-width: 100%;
}

.p-newcar-nav span {
  position: relative;
  display: block;
  margin-top: .5em;
  padding-right: 21px;
}

.p-newcar-nav span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 15px;
  height: 15px;
  margin: auto 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
}

/* p-newcar-slider
============================== */
.p-newcar-slider {
  position: relative;
}

.p-newcar-slider__item {
  padding: var(--inner-padding);
  margin-inline: calc(15px + var(--slope-1px)* 10);
  background: #fff;
}

.p-newcar-slider__arrow {
  top: calc(79.6875px + var(--slope-1px) * 90.3125);
  margin: 0;
}

.p-newcar-slider__sub {
  margin-top: 20px;
}

.p-newcar-slider__button {
  max-width: 600px;
  margin: 20px auto 0;
}

.p-newcar-caution.c-toggle-note {
  margin-top: 0;
  padding: 20px;
}
@media screen and (max-width: 540px) {
  .p-newcar-caution.c-toggle-note {
    margin-top: 0;
    padding: 15px;
  }
}

.p-newcar-caution__adf {
  padding: 25px 25px 0;
}
@media screen and (max-width: 540px) {
  .p-newcar-caution__adf {
    padding: 15px 15px 0;
  }
}

.p-newcar-caution__wrapper {
  border-radius: 10px;
  overflow: hidden;
}

/* p-newcar-toggle
============================== */
.p-newcar-toggle__head {
  position: relative;
  display: block;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .p-newcar-toggle__head:hover {
    opacity: .7;
  }
}

.p-newcar-toggle__head:before, .p-newcar-toggle__head:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: block;
  width: 18px;
  height: 3px;
  margin: auto 0;
  background: #fff;
  transition: transform .3s;
}

.p-newcar-toggle__head:not(.is-open):after {
  transform: rotate(90deg);
}

.p-newcar-toggle__body {
  display: none;
  margin-top: 11px;
  padding: 1em;
  border-radius: 5px;
  background: #f2f2f2;
  font-size: 13px;
  line-height: 1.53846;
}

.p-newcar-toggle__body > p {
  text-align: justify;
  text-justify: auto;
}

.p-newcar-toggle__body > p + p {
  margin-top: 1em;
}

/* ============================================================

usedcar

============================================================ */
/* p-usedcar
============================== */
.p-usedcar {
  margin: 40px 0;
  padding: 0 var(--inner-padding);
}

.p-usedcar__head {
  margin-bottom: calc(28px + var(--slope-1px) * 25);
}

.p-usedcar__body {
  padding: 0 var(--inner-padding);
}

@media screen and (max-width: 560px) {
  .p-usedcar__body {
    padding: 0;
  }
}

.p-usedcar-caution.c-toggle-note {
  margin-top: 0;
}

/* p-usedcar-slider
============================== */
.p-usedcar-slider {
  padding: 0;
}

.p-usedcar-slider__arrow.slick-prev {
  left: calc(var(--inner-padding) * -2);
}

.p-usedcar-slider__arrow.slick-next {
  right: calc(var(--inner-padding) * -2);
}

@media screen and (max-width: 560px) {
  .p-usedcar-slider__arrow.slick-prev {
    left: calc(var(--inner-padding) * -1);
  }
  .p-usedcar-slider__arrow.slick-next {
    right: calc(var(--inner-padding) * -1);
  }
}

/* p-usedcar-nav
============================== */
.p-usedcar-nav {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: calc(100% - var(--inner-padding) * 2);
  margin: 0 auto;
  border-radius: calc(6px + var(--slope-1px) * 4);
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .p-usedcar-nav:hover {
    opacity: .7;
  }
}

.p-usedcar-nav__image {
  width: 100%;
  aspect-ratio: 650 / 400;
  overflow: hidden;
}

.p-usedcar-nav__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-usedcar-nav__contents {
  flex-grow: 1;
  padding: calc(12px + var(--slope-1px) * 18);
}

.p-usedcar-nav__head {
  margin-bottom: 21px;
  padding-bottom: .3em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 12);
  line-height: 1.5;
}

.p-usedcar-nav__data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-usedcar-nav__data dl {
  display: flex;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 15);
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 8);
  min-width: calc(100% / 2 - 5px);
}

.p-usedcar-nav__data dt {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 5.5em;
  background: #666;
  color: #fff;
}

.p-usedcar-nav__price {
  margin-top: calc(18px + var(--slope-1px) * 12);
}

.p-usedcar-nav__price dl {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: calc(9px + var(--slope-1px) * 6);
  font-weight: bold;
  font-size: calc(15px + var(--slope-1px) * 10);
  line-height: 1;
}

.p-usedcar-nav__price dd {
  color: #c00;
  font-size: calc(24px + var(--slope-1px) * 16);
  font-family: var(--en-font-family);
}

.p-usedcar-nav__price dd em {
  font-size: 2em;
}

.p-usedcar-nav__price dd span {
  font-size: .75em;
  font-family: var(--base-font-family);
}

.p-usedcar-nav__foot {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  height: calc(34.2px + var(--slope-1px) * 22.8);
  padding-top: calc(7.8px + var(--slope-1px) * 5.2);
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: calc(13.8px + var(--slope-1px) * 9.2);
  line-height: 1;
}

.p-usedcar-nav__foot em {
  font-size: calc(16.8px + var(--slope-1px) * 11.2);
}

.p-usedcar-nav__foot:after {
  content: "";
  display: block;
  width: calc(12.6px + var(--slope-1px) * 8.4);
  height: calc(12.6px + var(--slope-1px) * 8.4);
  margin-left: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  transform: rotate(-90deg);
}

@media screen and (max-width: 560px) {
  .p-usedcar-nav {
    width: calc(100% - var(--inner-padding)* 1);
  }
  .p-usedcar-nav__data dt {
    height: 1.75em;
  }
}

/* p-usedcar-button
============================== */
.p-usedcar-button {
  max-width: 590px;
  margin: 20px auto 0;
  padding: 0 var(--inner-padding);
}


/* p-usedcar-notes
============================== */
.p-usedcar-notes {
  margin: 30px var(--inner-padding) 0;
  padding: 1.2em;
  background: #fff;
  text-align: center;
  font-size: calc(9px + var(--slope-1px) * 5);
}


/* p-usedcar-hot
============================== */
.p-usedcar-hot {
  margin-top: 30px;
}

/* ============================================================

showroom

============================================================ */
/* p-showroom-list
============================== */
.p-showroom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);

  --gap: calc(10px + var(--slope-1px) * 10);
}

.p-showroom-list__item {
  width: calc(100% / 3 - var(--gap));
}

@media screen and (max-width: 960px) {
  .p-showroom-list__item {
    width: calc(100% / 2 - var(--gap));
  }
}

/* p-showroom-nav
============================== */
.p-showroom-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
}

@media (hover: hover) {
  .p-showroom-nav:hover {
    opacity: .7;
  }
}

.p-showroom-nav__head {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 230 / 100;
}

.p-showroom-nav__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-showroom-nav__body {
  flex-grow: 1;
  padding: 10px;
}

.p-showroom-nav__name {
  padding-bottom: .5em;
  border-bottom: 1px solid #c9c9c9;
  text-align: center;
  font-size: calc(16px + var(--slope-1px) * 2);
}

.p-showroom-nav__address {
  margin-top: .5em;
  font-size: calc(13px + var(--slope-1px) * 1);
}

.p-showroom-nav__foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  height: 2.14286em;
  background: #000;
  color: #fff;
  font-size: calc(13px + var(--slope-1px) * 1);
}

.p-showroom-nav__foot:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  transform: rotate(-90deg);
}

/* ============================================================= *

nearby

* ============================================================= */
/* p-nearby-search
============================== */
.p-nearby-search {
  color: var(--base-color);
}

.p-nearby-search__form {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 600px;
  height: 45px;
  max-width: 100%;
  margin: 0 auto;
}

.p-nearby-search__input {
  flex-grow: 1;
  overflow: hidden;
}

.p-nearby-search__input input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: .5em 40px .5em 1em;
  border: 0;
  border-radius: 5px;
  background: var(--bg-color);
  background: #fff;
  resize: none;
}

.p-nearby-search__button {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 21px;
  height: 21px;
  margin: auto 0;
}

.p-nearby-search__button button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  outline: none;
  border: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>') 50% 50%/contain no-repeat;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transition: all .2s ease-out;
}

@media (hover: hover) {
  .p-nearby-search__button button:hover {
    filter: brightness(1.2);
  }
}

.p-nearby-search__gps {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 15px auto 0;
}

@media screen and (max-width: 960px) {
  .p-nearby-search__gps {
    display: flex;
  }
}

.p-nearby-search__gps button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  width: 100%;
  height: 48px;
  outline: none;
  border: 0;
  border-radius: 5px;
  background: #c00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.p-nearby-search__gps button:before {
  content: "";
  display: block;
  width: 13px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" class="bi bi-geo-alt-fill" viewBox="0 0 16 16"><path d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/></svg>') 50% 50%/contain no-repeat;
}

.p-nearby-search__notes {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1em;
  text-align: center;
  font-size: calc(11px + var(--slope-1px) * 2);
}

@media screen and (min-width: 961px) {
  .p-nearby-search__notes {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

/* p-nearby-list
=============================== */
.p-nearby-list__result {
  display: none;
  margin-top: 2em;
}

.p-nearby-list__foot {
  display: none;
  margin-top: calc(20px + var(--slope-1px) * 10);
}

.p-nearby-list__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  width: 100%;
  min-height: 3em;
  max-width: calc(295px + var(--slope-1px) * 55);
  margin: 0 auto;
  padding: 1em calc(30px + var(--slope-1px) * 20);
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
  color: var(--base-color);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  transition: all .2s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (hover: hover) {
  .p-nearby-list__button:hover {
    filter: brightness(.9);
  }
}

.p-nearby-list__button:after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
}

.p-nearby-list__loading {
  display: block;
  width: 100%;
  padding: 1em;
  text-align: center;
}

.p-nearby-list__loading:before {
  content: "\691C\7D22\4E2D...";
}

/* p-nearby-item
============================== */
.p-nearby-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: calc(10px + var(--slope-1px) * 6);
  border-radius: 5px;
  background: #fff;
  color: #000;
}

.p-nearby-item:not(:last-child) {
  margin-bottom: calc(10px + var(--slope-1px) * 10);
}

.p-nearby-item__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .85em 1em;
  padding: calc(10px + var(--slope-1px) * 10);
  border-radius: 5px;
  background: #f7f7f7;
  text-decoration: none;
  line-height: 1;
  transition: all .2s ease-out;
}

@media screen and (max-width: 960px) {
  .p-nearby-item__head {
    flex-wrap: wrap;
  }
}

.p-nearby-item__rank {
  border-radius: 50%;
  font-weight: 500;
  font-style: normal;
  font-size: calc(18px + var(--slope-1px) * 8);
}

.p-nearby-item__name {
  margin-right: auto;
  color: #c00;
  text-decoration: underline;
  font-weight: bold;
}

.p-nearby-item:hover .p-nearby-item__name {
  text-decoration: none;
}

.p-nearby-item__name em {
  font-size: calc(16px + var(--slope-1px) * 4);
}

.p-nearby-item__distance {
  font-size: calc(13px + var(--slope-1px) * 1);
}

@media screen and (max-width: 960px) {
  .p-nearby-item__distance {
    width: 100%;
    text-align: right;
  }
}

.p-nearby-item__distance:after {
  content: 'km';
}

.p-nearby-item__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: calc(15px + var(--slope-1px) * 5) calc(10px + var(--slope-1px) * 4) 3px;
}

.p-nearby-item__profile {
  display: grid;
}

@media screen and (min-width: 961px) {
  .p-nearby-item__profile {
    grid-template-columns: 1fr auto;
    gap: 0 1em;
  }
}

.p-nearby-item__hour {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 1.625;
}

@media screen and (min-width: 961px) {
  .p-nearby-item__hour {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
}

.p-nearby-item__close {
  display: flex;
  flex-grow: 1;
  gap: 10px;
  font-size: 14px;
  line-height: 1.78571;
}

@media screen and (min-width: 961px) {
  .p-nearby-item__close {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
}

.p-nearby-item__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  color: #c00;
  text-decoration: none;
  font-weight: 500;
  font-size: calc(20px + var(--slope-1px) * 8);
  pointer-events: none;
}

@media screen and (min-width: 961px) {
  .p-nearby-item__tel {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

@media screen and (max-width: 960px) {
  .p-nearby-item__tel {
    justify-content: flex-start;
    pointer-events: auto;
  }
}

.p-nearby-item__tel:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23c00" class="bi bi-telephone-forward-fill" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511zm10.761.135a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L14.293 4H9.5a.5.5 0 0 1 0-1h4.793l-1.647-1.646a.5.5 0 0 1 0-.708z"/></svg>') 50% 50%/contain no-repeat;
}

.p-nearby-item__contact {
  display: flex;
  justify-content: center;
  margin-top: calc(18px + var(--slope-1px) * 6);
}

.p-nearby-item__contact._newcar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;

  place-items: center;
}

@media screen and (max-width: 960px) {
  .p-nearby-item__contact._newcar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .p-nearby-item__contact._newcar {
    grid-template-columns: 100%;
  }
}

.p-nearby-item__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  max-width: 350px;
  border: 1px solid;
  border-radius: 5px;
  text-decoration: none;
  font-size: calc(14px + var(--slope-1px) * 2);
  transition: all .2s;
}

@media (hover: hover) {
  .p-nearby-item__button:hover {
    background: #000;
    color: #fff;
  }
}

.p-nearby-item__button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

/* ============================================================= *

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-tablet-block {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-tablet-inline-block {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-inline-block {
    display: inline-block !important;
  }
}

.u-tablet-flex {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 960px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
}

.u-mobile-inline-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-inline-block {
    display: inline-block !important;
  }
}

.u-mobile-flex {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 560px) {
  .u-mobile-none {
    display: none !important;
  }
}

/* text align
====================================== */
.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

/* display
====================================== */
.u-d-block {
  display: block !important;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

/* position
====================================== */
.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

/* clear
====================================== */
.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

/* other
====================================== */
.u-strong {
  font-weight: bold !important;
}

.u-pointer {
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.u-color-honda {
  color: #cc0000 !important;
}

.u-color-ciao {
  color: #0068b6 !important;
}

.u-color-mamoru {
  color: #8fc31f !important;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

.u-border{
  position: relative;  
}

.u-border:after{
  content:"";
  display:block;
  width:91%;
  height:1px;
  background-color: #ccc;
  position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.u-bg-gray {
  background: #f3f3f3;
}

.u-bg-red {
  background: #ea545e;
}

.u-bg-green {
  background: #72af2d;
}

.u-bg-blue {
  background: #036eb8;
}

/* animationn
====================================== */
.u-no-transition {
  transition: none !important;
}
