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

Base

* ============================================================= */
* {
  box-sizing: border-box;
}

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

@media screen and (max-width: 960px) {
  html {
    font-size: 1.43229vw;
  }
}

@media screen and (max-width: 560px) {
  html {
    font-size: 1.78571vw;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  letter-spacing: .03em;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: #000;
  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: #000;
  text-decoration: none;
}

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

Loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  transition: all .4s ease-in;

  perspective: 10rem;
}

.l-loader.is-loaded {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.l-loader:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: #c00;
  -webkit-animation: flip-loader 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
          animation: flip-loader 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}

@-webkit-keyframes flip-loader {
  25% {
    transform: rotateX(180deg) rotateY(0);
  }
  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: rotateX(0) rotateY(180deg);
  }
  100% {
    transform: rotateX(0) rotateY(0);
  }
}

@keyframes flip-loader {
  25% {
    transform: rotateX(180deg) rotateY(0);
  }
  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: rotateX(0) rotateY(180deg);
  }
  100% {
    transform: rotateX(0) rotateY(0);
  }
}

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

Wrapper

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

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

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  position: fixed;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 90px;
  background: #fff;
}

@media screen and (max-width: 1366px) {
  .l-header {
    /* 1366px - 960px の間の幅を 90px - 70px の範囲で変化 */
    height: calc(22.70936px + 4.92611vw);
  }
}

@media screen and (max-width: 960px) {
  .l-header {
    height: 70px;
  }
}

/* header logo
=============================== */
.l-header-logo {
  position: relative;
  z-index: 1;
  display: flex;
  width: 23.125em;
  max-width: 25%;
  margin: auto 0;
}

@media screen and (max-width: 960px) {
  .l-header-logo {
    max-width: 45%;
  }
}

@media screen and (max-width: 960px) {
  .l-header-logo {
    max-width: 65%;
  }
}

.l-header-logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  padding: 0 6.75676%;
  transition: opacity .25s;
}

.l-header-logo a img {
  min-width: 0%;
}

.l-header-logo a:hover {
  opacity: .6;
}

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

.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: #c00;
    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 #c00;
  background: #c00;
  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: #c00;
}

.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;
  }
}

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

Footer

* ============================================================= */
/* contact
=============================== */
.l-footer-contact {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-contact__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 30.74671vw;
  max-height: 420px;
  padding: 3.125em 2.5em;
  background: #1f1f1f;
  color: #fff;
}

.l-footer-contact__item:nth-child(2n) {
  background: #c00;
}

@media screen and (max-width: 960px) {
  .l-footer-contact__item {
    width: 100%;
    height: 60.66667vw;
    max-height: 360px;
  }
}

.l-footer-contact__button {
  width: 31.25em;
  max-width: 100%;
  margin-top: 2.5em;
}

/* info
=============================== */
.l-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 1244px;
  height: 6.42857em;
  max-width: 95.4612%;
  margin: 0 auto;
  padding: 1.57143em 0;
  color: #4d4d4d;
  text-align: center;
  font-size: .875em;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .l-footer-info {
    flex-direction: column;
    height: auto;
  }
}

.l-footer-info__profile {
  display: flex;
  align-items: center;
  min-height: 0%;
  margin-right: 2em;
}

@media screen and (max-width: 960px) {
  .l-footer-info__profile {
    display: block;
    margin-right: 0;
  }
}

.l-footer-info__profile > span {
  display: block;
  padding: .57143em 0;
}

.l-footer-info__profile > span + span:before {
  content: "\ff5c";
  margin: 0 .65em;
}

@media screen and (max-width: 960px) {
  .l-footer-info__profile > span + span:before {
    content: none;
  }
}

.l-footer-info__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .57143em 0;
}

@media screen and (max-width: 1364px) and (min-width: 961px) {
  .l-footer-info__copyright {
    padding-right: 4.28571em;
  }
}

/* pagetop
=============================== */
.l-footer-pagetop {
  position: fixed;
  right: 1.25em;
  bottom: 1.25em;
  z-index: 99;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .l-footer-pagetop {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 960px) {
  .l-footer-pagetop {
    font-size: 1.6rem;
  }
}

.l-footer-pagetop-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.125em;
  height: 3.125em;
  padding-top: .25em;
  border: 2px solid;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #c00;
}

.l-footer-pagetop-button:before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: .75em;
  height: .75em;
  border-top: 3px solid;
  border-left: 3px solid;
  transform: rotate(45deg);
}

.l-footer-pagetop-button span {
  display: none;
}

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

Main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  min-height: 0%;
  max-height: 100%;
  padding: 0;
  padding-top: 90px;
}

@media screen and (max-width: 1366px) {
  .l-main {
    /* 1366px - 960px の間の幅を 90px - 70px の範囲で変化 */
    padding-top: calc(22.70936px + 4.92611vw);
  }
}

@media screen and (max-width: 960px) {
  .l-main {
    padding-top: 70px;
  }
}

/* heading
=============================== */
.l-main-heading {
  padding: 4.0625em 0;
  background: #f2f2f2;
}

/* breadcrumbs
=============================== */
.l-main-breadcrumbs {
  width: 1244px;
  max-width: 95.4612%;
  margin: 0 auto;
  padding: 1rem 0;
}

/* main banner
=============================== */
.l-main-banner {
  padding: 2.5em 0;
  background: #f2f2f2;
}

.l-main-banner__inner {
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .l-main-banner__inner {
    width: 550px;
  }
}

.l-main-banner-list {
  display: flex;
  flex-wrap: wrap;
  width: 101.78571%;
  margin: -.89286% -.89286%;
  padding-top: 1px;
}

.l-main-banner-list__item {
  width: 20%;
  padding: .87719% .87719%;
}

@media screen and (max-width: 960px) {
  .l-main-banner-list__item {
    width: 50%;
  }
}

/* main showroom nav
=============================== */
.l-main-showroom-nav {
  padding: 5.85652% 0;
  background: #f2f2f2;
}

.c-section._bg + .l-main-showroom-nav {
  background: #fff;
}

.l-main-showroom-nav__inner {
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto;
}

/* main category nav
=============================== */
.l-main-category-nav {
  padding: 4.39239% 0;
}

.c-section._bg + .l-main-showroom-nav + .l-main-category-nav {
  background: #f2f2f2;
}

.l-main-category-nav__inner {
  width: 1244px;
  max-width: 95.4612%;
  margin: 0 auto;
}

.l-main-category-nav__grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2px);
}

.l-main-category-nav__item {
  width: 33.33333%;
  padding-right: 2px;
}

@media screen and (max-width: 560px) {
  .l-main-category-nav__item {
    width: 100%;
    margin-top: 2px;
  }
}

.l-page[data-category=car] .l-main-category-nav__item[data-banner=car] {
  display: none;
}

.l-page[data-category=showroom] .l-main-category-nav__item[data-banner=campaign],
.l-page[data-category=campaign] .l-main-category-nav__item[data-banner=campaign],
.l-page[data-category=company] .l-main-category-nav__item[data-banner=campaign],
.l-page[data-category=other] .l-main-category-nav__item[data-banner=campaign] {
  display: none;
}

.l-page[data-id=welcome] .l-main-category-nav__item[data-banner=campaign] {
  display: block;
}

.l-page[data-category=maintenance] .l-main-category-nav__item[data-banner=maintenance] {
  display: none;
}

.l-page[data-id=welcome] .l-main-category-nav__item[data-banner=welcome] {
  display: none;
}

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

Grid

* ============================================================= */
/* tile
=============================== */
.c-tile-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-tile-grid__item {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .c-tile-grid[data-col-tablet="1"] .c-tile-grid__item {
    width: 100%;
  }
}

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

Navigation

* ============================================================= */
/* breadcrumbs
=============================== */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: .875em;
}

.c-breadcrumbs > li {
  display: flex;
  align-items: center;
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  padding: .35714em 0;
}

.c-breadcrumbs > li + li:before {
  content: ">";
  margin: 0 1em;
}

.c-breadcrumbs > li a {
  text-decoration: none;
}

.c-breadcrumbs > li a:hover {
  text-decoration: underline;
}

/* button
=============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 5em;
  padding: 1em 4em;
  border: 1px solid #c00;
  border-radius: 3px;
  background: #c00;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: color .3s ease-in-out;
}

.c-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;
}

.c-button:hover {
  color: #c00;
}

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

.c-button > div {
  position: relative;
  z-index: 1;
}

.c-button._bg-black {
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
}

.c-button._bg-black:hover {
  color: #1f1f1f;
}

.c-button._bg-white {
  border: 1px solid #fff;
  background: #fff;
  color: #000;
}

.c-button._bg-white:before {
  background: #000;
}

.c-button._bg-white:hover {
  color: #fff;
}

.c-button._text-key-color {
  color: #c00;
}

.c-button._text-key-color:before {
  background: #c00;
}

.c-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.125em;
  bottom: 0;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: .4375em;
  height: .4375em;
  margin: auto 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

.l-footer-contact .c-button ._default {
  display: block;
}

.l-footer-contact .c-button ._short {
  display: none;
}

@media screen and (max-width: 1120px) {
  .l-footer-contact .c-button {
    padding: 1em 2.5em;
  }
  .l-footer-contact .c-button:after {
    right: 1.5em;
  }
  .l-footer-contact .c-button ._default {
    display: none;
  }
  .l-footer-contact .c-button ._short {
    display: block;
  }
}

/* container */
.c-button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: -1.8rem auto;
  padding-top: 8rem;
}

.c-button-container:first-child {
  padding-top: 0;
}

.c-button-container + .c-button-container {
  padding-top: 1rem;
}

.c-button-container > .c-button {
  margin: 1.8rem;
}

.c-button-container > .c-button:first-child:last-child {
  width: 60rem;
}

/* box nav
=============================== */
@-webkit-keyframes navImageHover {
  0% {
    opacity: .7;
    transform: scaleX(0);
    transform-origin: left top;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left top;
  }
  60% {
    transform: scaleX(1);
    transform-origin: right bottom;
  }
  100% {
    opacity: .7;
    transform: scaleX(0);
    transform-origin: right bottom;
  }
}
@keyframes navImageHover {
  0% {
    opacity: .7;
    transform: scaleX(0);
    transform-origin: left top;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left top;
  }
  60% {
    transform: scaleX(1);
    transform-origin: right bottom;
  }
  100% {
    opacity: .7;
    transform: scaleX(0);
    transform-origin: right bottom;
  }
}

.c-box-nav {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-top: 61.29032%;
  color: #fff;
  text-decoration: none;
}

.c-box-nav[data-col="4"] {
  padding-top: 113.7037%;
}

@media screen and (max-width: 960px) {
  .c-box-nav {
    height: 52.72566vw;
    max-height: 380px;
    padding-top: 0;
  }
}

.c-box-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: 50% 50% no-repeat;
  background-size: cover;
  transition: transform .6s ease;
}

.c-box-nav:hover:before {
  transform: scale(1.1);
}

.c-box-nav._newcar:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_car.jpg);
}

.c-box-nav._usedcar:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_usedcar.jpg);
}

.c-box-nav._maintenance:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_maintenance.jpg);
}

.c-box-nav._campaign:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_campaign.jpg);
}

.c-box-nav._welcome:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_welcome.jpg);
}

.c-box-nav._contact:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_contact.jpg);
}

.c-box-nav._democar:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_democar.jpg);
}

.c-box-nav._staff:before {
  background-image: url(/common-img/hc/pattern_a/bg_nav_staff.jpg);
}

.c-box-nav:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #c00;
  transform: scaleX(0);
}

.c-box-nav:hover:after {
  -webkit-animation: .6s ease forwards navImageHover;
          animation: .6s ease forwards navImageHover;
}

.c-box-nav__text {
  position: absolute;
  right: 0;
  bottom: 10%;
  left: 0;
  z-index: 2;
  width: 87.74194%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .c-box-nav__text {
    bottom: 7.36842%;
  }
}

.c-box-nav__head {
  display: flex;
  align-items: center;
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 1.875em;
}

@media screen and (max-width: 960px) {
  .c-box-nav__head {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 560px) {
  .c-box-nav__head {
    font-size: 1.375em;
  }
}

.c-box-nav__head > i {
  height: 1em;
  margin-right: .33333em;
}

@media screen and (max-width: 560px) {
  .c-box-nav__head > i {
    margin-right: 0;
  }
}

.c-box-nav__head > i img {
  height: 100%;
  max-width: none;
}

.c-box-nav__head > i svg {
  height: 100%;
  max-width: none;
}

.c-box-nav__head > i svg path {
  fill: currentColor;
}

.c-box-nav[data-col="4"] .c-box-nav__head {
  font-size: 1.5em;
}

.c-box-nav__body {
  margin-top: 1em;
}

.c-box-nav__body span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .c-box-nav__body {
    height: 2.72727em;
    line-height: 1.36364;
  }
}

.c-box-nav._type-navigation {
  height: 300px;
  padding-top: 0;
}

@media screen and (max-width: 960px) {
  .c-box-nav._type-navigation {
    height: 40vw;
  }
}

.c-box-nav._type-navigation .c-box-nav__head {
  font-size: 1.5em;
}

@media screen and (max-width: 960px) {
  .c-box-nav._type-navigation .c-box-nav__head {
    font-size: 1.125em;
  }
}

@media screen and (max-width: 560px) {
  .c-box-nav._type-navigation .c-box-nav__head {
    padding-bottom: .75em;
    font-size: 1.75em;
  }
}

.c-box-nav._type-navigation .c-box-nav__body {
  min-height: 3.5em;
}

@media screen and (max-width: 960px) {
  .c-box-nav._type-navigation .c-box-nav__body {
    display: none;
  }
}

/* banner
=============================== */
.c-banner {
  display: block;
  border: 1px solid #ccc;
  transition: opacity .2s;
}

.c-banner:hover {
  opacity: .7;
}

/* detailed banner
=============================== */
.c-detailed-banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.c-detailed-banner:hover {
  opacity: .7;
}

.c-detailed-banner__image {
  width: 50%;
}

.c-detailed-banner__image img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .c-detailed-banner__image {
    order: -1;
    width: 100%;
  }
}

.c-detailed-banner__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 2.67857% 3.57143%;
  font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  .c-detailed-banner__text {
    width: 100%;
    padding: 2.66667em;
  }
}

.c-detailed-banner__head {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.73333em;
}

.c-detailed-banner__body {
  /* -0.5em for line-height offset */
  margin-top: 1.63333em;
  margin-bottom: -.5em;
  line-height: 2;
}

/* tab
=============================== */
.c-tab {
  overflow: hidden;
  margin-bottom: 6.69643%;
}

.c-tab__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: calc(100% + .75em);
  margin: 0 -.375em;
  border-bottom: 2px solid;
}

.c-tab__item {
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 50%;
  margin-bottom: -2px;
  padding: 0 .375em;
}

.c-tab__button {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  min-height: 3.61111em;
  padding: 1em .25em;
  outline: none;
  border: 1px solid #d1d1d1;
  border-bottom-width: 2px;
  border-radius: .5em .5em 0 0;
  background: #efefef;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 1.125em;
  line-height: 1.2;
  cursor: pointer;
  transition: background .25s;
}

.c-tab__button:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: 2;
  display: block;
  width: calc(100% + 4px);
  border-bottom: 2px solid;
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .c-tab__button {
    font-size: .98214em;
  }
}

.c-tab__button span {
  display: block;
  margin-bottom: 1em;
  font-size: .8em;
}

.c-tab__button em {
  font-size: 1.4em;
}

.c-tab__button.is-current {
  border: 2px solid #000;
  background: #fff;
}

.c-tab__button.is-current:after {
  width: 100%;
  border-bottom: 2px solid #fff;
}

/* for tab.js view control */
.js-tab-channel {
  display: none;
}

.js-tab-channel.is-current {
  display: block;
}

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

Section

* ============================================================= */
.c-section {
  margin: 8rem 0;
}

.c-section._bg {
  margin: 0;
  padding: 8.4rem 0;
  background: #f2f2f2;
}

.c-section._no-top-space {
  margin-top: 0;
  padding-top: 0;
}

.c-section._no-bottom-space {
  margin-bottom: 0;
  padding-bottom: 0;
}

.c-section__head {
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto 4.8rem;
}

.c-section__body {
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto;
}

.c-section__body._wide {
  width: 100%;
  max-width: 100%;
}

/* inner section
=============================== */
.c-inner-section + .c-inner-section {
  margin-top: 6rem;
}

.c-inner-section__head {
  margin-bottom: 2.5rem;
}

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

Table

* ============================================================= */
/* scroll container
=============================== */
.c-table-container {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 15px) 0 0/50px 100%, linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fff 15px) right/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) right/20px 100%;
  background-color: #fff;
  background-attachment: local, scroll, local, scroll;
  background-repeat: no-repeat;
}

.c-table-container + .c-table-container {
  margin-top: 5rem;
}

.c-table-container > * {
  min-width: 58em;
}

/* data table
=============================== */
.c-data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1.5rem;
}

.c-data-table th,
.c-data-table td {
  padding: 1em .75em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.c-data-table thead th {
  background: #666;
  color: #fff;
}

.c-data-table thead th em {
  display: block;
  font-size: 1.06667em;
}

.c-data-table thead th em span {
  display: inline;
  padding-left: .5em;
  font-size: .875em;
}

.c-data-table thead th > span {
  display: block;
  margin-top: .25em;
  font-size: .93333em;
}

.c-data-table tbody th {
  background: #f2f2f2;
}

.c-data-table tbody th[rowspan] {
  width: 2.66667em;
  padding: 1.2em .33333em;
  background: #666;
}

.c-data-table tbody th[rowspan] span {
  display: inline-block;
  min-height: 1em;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;

  -webkit-text-orientation: upright;
          text-orientation: upright;
}

.c-data-table tbody td {
  width: 16.66667%;
}

/* profile table
=============================== */
.c-profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}

.c-profile-table th,
.c-profile-table td {
  padding: 1.33333em 0;
  border-bottom: 1px solid #d6d6d6;
}

.c-profile-table th {
  width: 12.33333em;
  padding-right: 1em;
  font-weight: bold;
}

.c-profile-table td {
  width: calc(100% - 12.33333em);
}

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

Text

* ============================================================= */
/* lead
=============================== */
.c-lead {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
}

.c-lead > p {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
}

.c-lead > p em {
  font-weight: bold;
  font-size: 1.33333em;
}

.c-lead > p + p {
  margin-top: 1em;
}

/* notes
=============================== */
.c-notes {
  margin-top: 1.5em;
  font-size: 1.3rem;
}

.c-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-notes > li + li {
  margin-top: .25em;
}

.c-notes > li:before {
  content: "\203b";
}

.c-notes._dot > li:before {
  content: "\30fb";
}

.c-notes._square > li:before {
  content: "\25a0";
}

.c-notes._star > li:before {
  content: "\2605";
}

.c-notes > li._dot:before {
  content: "\30fb";
}

.c-notes > li._square:before {
  content: "\25a0";
}

.c-notes > li._star:before {
  content: "\2605";
}

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

Title

* ============================================================= */
/* page title
=============================== */
.c-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}

.c-page-title__icon {
  margin-bottom: .75em;
  line-height: 1;
}

.c-page-title__icon svg path {
  fill: #c00;
}

.c-page-title__main {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-size: 2.25em;
}

.c-page-title__sub {
  margin-top: 1em;
  padding-top: .03em;
  color: #7e7e7e;
  font-size: .875em;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;
}

/* sub title
=============================== */
.c-sub-title {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 560px) {
  .c-sub-title {
    font-size: 1.125em;
  }
}

.c-sub-title ._en {
  padding-top: .03em;
  white-space: nowrap;
  font-size: 3.75em;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;
}

@media screen and (max-width: 960px) {
  .c-sub-title ._en {
    font-size: 3.125em;
  }
}

.c-sub-title ._ja {
  /* -0.375em for line-height offset */
  margin-top: .375em;
  margin-bottom: -.375em;
  letter-spacing: .1em;
}

.c-sub-title._ta-left {
  text-align: left;
}

@media screen and (max-width: 960px) {
  .c-sub-title._ta-center-tablet {
    text-align: center;
  }
}

.c-sub-title._fs-lg {
  font-size: 1.5em;
}

.c-sub-title._fs-lg ._en {
  font-size: 3.33333em;
}

@media screen and (max-width: 560px) {
  .c-sub-title._fs-lg {
    font-size: 1.25em;
  }
}

.c-sub-title._fs-sm ._en {
  font-size: 2.5em;
}

@media screen and (max-width: 960px) {
  .c-sub-title._fs-sm {
    font-size: 1em;
  }
}

@media screen and (max-width: 960px) {
  .c-sub-title._fs-lg-tablet {
    font-size: 1.5em;
  }
  .c-sub-title._fs-lg-tablet ._en {
    font-size: 3.33333em;
  }
}

@media screen and (max-width: 560px) {
  .c-sub-title._fs-lg-tablet {
    font-size: 1.25em;
  }
}

/* detailed title
=============================== */
.c-detailed-title {
  font-weight: bold;
  font-size: 2rem;
}

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

Blog

* ============================================================= */
.c-blog-container__table {
  width: 100%;
}

.c-blog-container__td > article + article {
  margin-top: 8.5rem;
}

.c-blog-container img {
  display: inline;
}

.c-blog-container .blog__header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2.5em;
  padding: .875em 1.375em;
  border: 1px solid;
}

.c-blog-container .blog__title {
  margin-right: 1.5em;
  font-weight: bold;
}

.c-blog-container .blog__date {
  margin-left: auto;
  font-weight: bold;
}

.c-blog-container .blog__body {
  word-break: break-all;
}

.c-blog-container .blog__body img {
  height: auto;
  max-width: 1120px;
}

@media screen and (max-width: 960px) {
  .c-blog-container .blog__body img {
    max-width: 100%;
  }
}

.c-blog-container .blog__paging {
  margin-top: 8rem;
  text-align: right;
}

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

Calendar

* ============================================================= */
.c-calendar-container {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  font-size: 16px;
  opacity: 0;
  transition: padding .4s ease-in-out, opacity .4s ease-in-out, left .1s linear .4s;
  pointer-events: none;
}

@media screen and (max-width: 1120px) {
  .c-calendar-container {
    /* 1120px - 960px の間の幅を 16px - 13px の範囲で変化 */
    font-size: calc(-5px + 1.875vw);
  }
}

@media screen and (max-width: 960px) {
  .c-calendar-container {
    font-size: 13px;
  }
}

@media screen and (max-width: 560px) {
  .c-calendar-container {
    /* 560px - 320px の間の幅を 15px - 9px の範囲で変化 */
    font-size: calc(1px + 2.5vw);
  }
}

@media screen and (max-width: 320px) {
  .c-calendar-container {
    font-size: 9px;
  }
}

.c-calendar-container.is-visible {
  left: 0;
  padding: 0 0 0;
  opacity: 1;
  transition: padding .4s ease-in-out, opacity .4s ease-in-out;
  pointer-events: auto;
}

.c-calendar-container__inner {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.c-calendar-container__inner > div {
  position: relative;
}

.c-calendar-container__close {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.c-calendar-container__close:before, .c-calendar-container__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 141.42136%;
  height: 2px;
  background: #fff;
}

.c-calendar-container__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.c-calendar-container__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.c-calendar-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}

.c-calendar {
  position: relative;
  display: block;
}

.c-calendar__container {
  display: flex;
}

.c-calendar__container > * {
  margin: 0 1.5em;
}

@media screen and (max-width: 960px) {
  .c-calendar__container > *:last-child {
    display: none;
  }
  .c-calendar._next .c-calendar__container > * {
    display: none;
  }
  .c-calendar._next .c-calendar__container > *:last-child {
    display: block;
  }
}

.c-calendar__arrow {
  display: none;
}

@media screen and (max-width: 960px) {
  .c-calendar__arrow {
    position: absolute;
    top: 3.5em;
    right: 3.5em;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-calendar__arrow > button {
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    margin: auto 0;
    margin: 0 .8rem;
    outline: none;
    border: 0;
    border-bottom: 3px solid;
    background: transparent;
    color: #c00;
    text-decoration: none;
    font-size: 0;
  }
  .c-calendar__arrow > button._prev {
    border-left: 3px solid;
    transform: rotate(45deg);
  }
  .c-calendar__arrow > button._next {
    border-right: 3px solid;
    transform: rotate(-45deg);
  }
  .c-calendar__arrow > button:hover {
    opacity: .7;
    transition: all .3s;
  }
  .c-calendar__arrow > button.is-disabled {
    opacity: .3;
    transition: none;
    pointer-events: none;
  }
}

.c-calendar-notice__item {
  display: inline-block;
  padding: .5em;
}

.c-calendar-notice__item .cal_close04 {
  color: #aaa;
}

.c-calendar-notice__item .cal_close01 {
  color: #c00;
  font-style: normal;
}

.c-calendar-box {
  display: flex;
  flex-direction: column;
  padding: 2em 2em 1.5em;
  background: #fff;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, .2);
}

.c-calendar-box__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 1.11111em;
  font-weight: bold;
  font-size: .9375em;
}

.c-calendar-box__head .cal_month {
  position: relative;
  padding-top: .03em;
  font-size: 3.33333em;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;
}

.c-calendar-box__head .cal_month i {
  position: absolute;
  bottom: 0;
  left: calc(100% + 3em);
  font-style: normal;
  font-size: .3em;
}

.c-calendar-box__head .cal_year {
  margin-left: .5em;
  padding-top: .03em;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;
}

.c-calendar-box__body {
  width: 100%;
  margin-bottom: auto;
}

.c-calendar-box__foot {
  width: 100%;
  margin-top: 1em;
}

.c-calendar-box .cal {
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: regular;
  font-size: .9375em;
  font-family: "Roboto Condensed", sans-serif;
}

.c-calendar-box .cal th {
  padding-bottom: .5em;
}

.c-calendar-box .cal th > div {
  padding: .77778em 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
  line-height: .7;
}

.c-calendar-box .cal td {
  padding: 1px;
  text-align: center;
}

.c-calendar-box .cal td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin: 0 auto;
  padding: .75em;
}

.c-calendar-box .cal td .cal_sat {
  color: #227cbd;
}

.c-calendar-box .cal .cal_sun,
.c-calendar-box .cal .cal_holiday {
  color: #de0000;
}

.c-calendar-box .cal td .cal_close01 {
  background-color: #c00;
  color: #fff;
}

.c-calendar-box .cal td .cal_close04 {
  background-color: #aaa;
  color: #fff;
}

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

Maintenance

* ============================================================= */
/* service
=============================== */
.c-maintenance-service {
  display: flex;
  flex-wrap: wrap;
  width: 103.57143%;
  margin: -1.78571% -1.78571%;
  padding-top: 1px;
}

.c-maintenance-service:not(:first-child) {
  margin-top: 4.375em;
}

.c-maintenance-service__item {
  width: 50%;
  padding: 1.72414% 1.72414%;
}

.c-maintenance-service__item:first-child:last-child {
  margin: 0 auto;
}

.c-maintenance-service-block {
  display: block;
  text-align: center;
  text-decoration: none;
}

.c-maintenance-service-block__lead {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: .825em;
  font-weight: bold;
  font-size: .9375em;
}

.c-maintenance-service-block__lead span {
  display: inline-block;
}

.c-maintenance-service-block__banner {
  border: 4px solid #e5e5e5;
  transition: opacity .2s;
}

.c-maintenance-service-block:hover .c-maintenance-service-block__banner {
  opacity: .7;
}

.c-maintenance-service-block__desc {
  /* -0.375em for line-height offset */
  margin-top: .625em;
  margin-bottom: -.375em;
  font-size: .875em;
}

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

Inspection

* ============================================================= */
/* inspection fig
=============================== */
.c-inspection-fig {
  position: relative;
  max-width: 1080px;
  margin: 0 auto -1.875em;
  padding-top: 3.125em;
  padding-bottom: 1.875em;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.c-inspection-fig__notes {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1em;
}

.c-inspection-fig__notes > li {
  margin: .25em 0;
}

.c-inspection-fig__notes > li:not(:first-child) {
  margin-left: 1.5em;
}

.c-inspection-fig__notes > li > span:after {
  content: "…";
  padding: 0 .25em;
  color: #000;
}

.c-inspection-fig__notes > li._option > span {
  color: #1f1f1f;
}

.c-inspection-fig-image {
  position: relative;
  flex-grow: 0 !important;
}

.c-inspection-fig-image img {
  display: block;
  width: 100%;
  max-width: 532px;
}

.c-inspection-fig-image span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}

.c-inspection-fig-image i {
  position: absolute;
  display: block;
  border-width: 0;
  border-style: solid;
  color: #666;
}

.c-inspection-fig-image i._option {
  color: #666;
}

.c-inspection-fig-image i._option > * {
  color: inherit;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig-image {
    display: none;
  }
}

.c-inspection-fig-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig-box {
    display: block;
    margin-left: 0 !important;
  }
  .c-inspection-fig-box > * {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.c-inspection-fig-box > * {
  flex-grow: 1;
}

.c-inspection-fig-box[data-col="1"] {
  flex-direction: column;
  align-items: stretch;
}

.c-inspection-fig-box[data-col="1"] > * {
  width: 100%;
}

.c-inspection-fig-box[data-col="1"] > *:not(:last-child) {
  margin-bottom: 1.875em;
}

.c-inspection-fig-box[data-col="2"] > * {
  width: 49%;
}

.c-inspection-fig-box[data-col="2"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="3"] > * {
  width: 32%;
}

.c-inspection-fig-box[data-col="3"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="3"] > *[data-flex="2"] {
  width: 66%;
}

.c-inspection-fig-box[data-col="4"] > * {
  width: 23.5%;
}

.c-inspection-fig-box[data-col="4"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="4"] > *[data-flex="2"] {
  width: 49%;
}

.c-inspection-fig-box[data-col="4"] > *[data-flex="3"] {
  width: 74.5%;
}

.c-inspection-fig-notice{
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 0 1.33333em;
  display: flex;
}

.c-inspection-fig-notice__list{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .75em;
  background: #fff;
}

.c-inspection-fig-notice__list li{
  position: relative;
  padding-left: 1.4em;
  line-height: 1.5;
}

.c-inspection-fig-notice__list li:before {
  content: "\25cf";
  position: absolute;
  top: 0;
  left: 0;
  opacity: .2;
}

.c-inspection-fig-notice__list li._option {
  margin-left: 2em;
}

.c-inspection-fig-notice__list li._option:before {
  opacity: .7;
}

/* inspection check
=============================== */
.c-inspection-check {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 1.875em;
}

@media screen and (min-width: 961px) {
  .c-inspection-fig-image + .c-inspection-check {
    margin-bottom: 0;
  }
}

.c-inspection-check__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  margin-bottom: .75em;
  background: #666;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

.c-inspection-check__list {
  text-align: left;
  font-size: 1.4rem;
}

.c-inspection-check__list li {
  position: relative;
  width: 100%;
  margin-top: .5em;
  padding-left: 1.2em;
  line-height: 1.6;
}

.c-inspection-check__list li:hover {
  text-decoration: none;
}

.c-inspection-check__list li:before {
  content: "\25cf";
  position: absolute;
  top: 0;
  left: 0;
  opacity: .2;
}

.c-inspection-check__list li.opt:before {
  opacity: .7;
}

.c-inspection-check__list._2col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.c-inspection-check__list._2col li {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .c-inspection-check__list._2col li {
    width: 100%;
  }
}

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

Showroom

* ============================================================= */
/* list */
.c-showroom-list {
  display: flex;
  flex-wrap: wrap;
  width: 104.46429%;
  margin: -2.23214% -2.23214%;
  padding-top: 1px;
}

@media screen and (max-width: 560px) {
  .c-showroom-list {
    justify-content: center;
  }
}

.c-showroom-list__item {
  width: 50%;
  padding: 2.13675% 2.13675%;
}

.c-showroom-list__item:first-child:last-child {
  margin: 0 auto;
}

@media screen and (max-width: 560px) {
  .c-showroom-list__item {
    width: 85.07937%;
  }
}

.c-showroom-list._type-navigation .c-showroom-list__item {
  width: 33.33333%;
}

@media screen and (max-width: 960px) {
  .c-showroom-list._type-navigation .c-showroom-list__item {
    width: 50%;
  }
}

@media screen and (max-width: 560px) {
  .c-showroom-list._type-navigation .c-showroom-list__item {
    width: 100%;
  }
}

.c-showroom-list._type-navigation .c-showroom-list__item:first-child {
  margin-left: auto;
}

.c-showroom-list._type-navigation .c-showroom-list__item:first-child:last-child {
  margin-right: auto;
}

.c-showroom-list._type-navigation .c-showroom-list__item:nth-child(2):last-child {
  margin-right: auto;
}

/* card */
.c-showroom-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
  text-decoration: none;
}

.c-showroom-card__image {
  position: relative;
  overflow: hidden;
  min-height: 0%;
}

.c-showroom-card__image img {
  transition: transform .6s ease;
}

.c-showroom-card__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #c00;
  transform: scaleX(0);
}

.c-showroom-card:hover .c-showroom-card__image img {
  transform: scale(1.1);
}

.c-showroom-card:hover .c-showroom-card__image:after {
  -webkit-animation: .6s ease forwards navImageHover;
          animation: .6s ease forwards navImageHover;
}

.c-showroom-card__contents {
  padding: 1.875em;
}

.c-showroom-card__contents p {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
}

.c-showroom-card__contents p > span {
  display: inline-block;
  margin-right: 1em;
}

.c-showroom-card__contents p:not(:last-child) {
  margin-bottom: .5em;
}

.c-showroom-card__head {
  margin-bottom: 1.25em;
  padding-bottom: .83333em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
}

.c-showroom-card__foot {
  margin-top: 1.5em;
}

._type-navigation .c-showroom-card {
  font-size: 1.5rem;
}

._type-navigation .c-showroom-card__head {
  font-size: 1.2em;
}

._type-navigation .c-showroom-card__contents {
  padding: 1.33333em 1.33333em 2em;
}

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

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);
}

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