@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: #212121;
  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: #212121;
  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: #212121;
  text-decoration: none;
}

*[data-intersection="fade"] {
  opacity: 0;
  transition: opacity .6s;
}

*[data-intersection="fade"][data-intersecting="true"] {
  opacity: 1;
}

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

Loader

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

.l-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/logo.png) 50% 50% / 300px auto no-repeat #f9f9f9;
  z-index: 100000;
  transition: all .4s ease-in;
  perspective: 10rem;
}
.l-loader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 
body[data-id="index"] .l-loader {
  z-index:-1;
}

.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  transition: all .6s;
}

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

.l-loader span {
  position: relative;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  -webkit-animation: loader-balls 1s linear infinite;
          animation: loader-balls 1s linear infinite;
}

.l-loader span:before, .l-loader span:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 50%;
  height: 50%;
  border-radius: 50%;
}

.l-loader span:before {
  top: 0;
  left: 0;
  background-color: #f25b52;
  -webkit-animation: loader-balls-before 1s ease-in-out infinite;
          animation: loader-balls-before 1s ease-in-out infinite;
}

.l-loader span:after {
  right: 0;
  bottom: 0;
  background-color: #9c5c52;
  -webkit-animation: loader-balls-after 1s ease-in-out infinite;
          animation: loader-balls-after 1s ease-in-out infinite;
}

@-webkit-keyframes loader-balls {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-balls {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-balls-before {
  0% {
    transform: translate(-5px, -5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-5px, -5px);
  }
}

@keyframes loader-balls-before {
  0% {
    transform: translate(-5px, -5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-5px, -5px);
  }
}

@-webkit-keyframes loader-balls-after {
  0% {
    transform: translate(5px, 5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5px, 5px);
  }
}

@keyframes loader-balls-after {
  0% {
    transform: translate(5px, 5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5px, 5px);
  }
} */

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

Wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  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: 98px;
  padding: 0 3.66032% 0 2.92826%;
  background: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

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

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

/* header logo
=============================== */
.l-header-logo {
  display: flex;
  width: 25%;
  max-width: 380px;
  margin: auto 0;
  padding-right: .625em;
}

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

.l-header-logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  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: 8vw;
  height: 100%;
}

@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: 768px) {
  .l-header-menu__nav {
    /* 768px - 480px の間の幅を 90px - 45px の範囲で変化 */
    padding-top: calc(-30px + 15.625vw);
  }
}

@media screen and (max-width: 480px) {
  .l-header-menu__nav {
    padding-top: 45px;
  }
}

@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: 60px;
    padding-bottom: 86px;
    background: #fff;
    opacity: 0;
    transition: transform .4s, opacity .3s;
    transform: translateY(-100%);
  }
  .l-header-menu__nav:before {
    content: "MENU";
    position: absolute;
    top: 20px;
    left: 0;
    display: block;
    width: 100%;
    padding-top: .03em;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    font-family: Quicksand, sans-serif;
    line-height: .7;
  }
  .l-header-menu.is-open .l-header-menu__nav {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

.l-header-nav__item {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.l-header-nav__item[data-category=reservation] {
  margin-left: 1.125em;
}

.l-header-nav__item[data-category=contact] {
  margin-left: .75em;
}

@media screen and (max-width: 960px) {
  .l-header-nav__item {
    display: block;
    margin: 0 !important;
    border-bottom: 1px solid #bbb;
  }
  .l-header-nav__item[data-category=reservation], .l-header-nav__item[data-category=contact] {
    position: absolute;
    bottom: 0;
    width: 50%;
    padding: 1em;
    border-top: 1px solid #bbb;
    border-bottom: 0;
    background: #fff;
  }
  .l-header-nav__item[data-category=reservation] {
    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%;
  padding: 0 1.125em;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: all .3s;
}

.l-header-nav__handle:before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #9c5c52;
  transition: all .3s;
  transform: scaleX(0);
}

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

@media screen and (min-width: 961px) {
  .l-header-nav__item:hover .l-header-nav__handle {
    background: #f9f9f9;
  }
  .l-header-nav__item:hover .l-header-nav__handle:before {
    transform: scaleX(1);
  }
}

@media screen and (max-width: 960px) {
  .l-header-nav__handle {
    justify-content: flex-start;
    height: auto;
    padding: 1em 1.5em 1em 1em;
    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: #9c5c52;
    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);
  }
}

.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;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
}

@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;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.26667em;
  height: 3.6em;
  border-radius: 1.8em;
  background: #f25b52;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: .9375em;
  line-height: 1;
  cursor: pointer;
  transition: all .3s;
}

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

.l-header-button._contact {
  background: #2b2b2b;
}

.l-header-button:hover {
  opacity: .8;
}

.l-header-button > i {
  display: block;
  margin-right: .5em;
}

.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: 4px;
  border-radius: 2px;
  background: #f25b52;
  transform-origin: center right;
}

.l-header-spnav-trigger > div {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 16px;
  margin: auto 0;
  transition: background .2s;
}

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

.l-header-spnav-trigger > div:before {
  top: -9px;
  width: 22px;
}

.l-header-spnav-trigger > div:after {
  bottom: -9px;
  width: 30px;
}

.l-header-spnav-trigger > div > span {
  display: none;
}

.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, width .2s .2s;
}

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

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

/* header page nav
=============================== */
.l-header-page-nav {
  overflow: hidden;
  width: 1120px;
  max-width: 91.21523vw;
  padding: 3.57143% 5.35714% 4.46429%;
  border-radius: 0px 0px 10px 10px;
  background: #f9f9f9;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .08);
}

@media screen and (max-width: 960px) {
  .l-header-page-nav {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: .875em;
  }
}

.l-header-page-nav__list {
  display: flex;
  flex-wrap: wrap;
  width: 103.2%;
  margin: -1.2% -1.6%;
  padding-top: 1px;
}

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

.l-header-page-nav__item {
  width: 25%;
  padding: 1.17188% 1.55039%;
}

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

.l-header-page-nav a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1em 2em 1em .69231em;
  border-bottom: 2px solid #c8c8c8;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background .2s;
}

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

@media screen and (max-width: 960px) {
  .l-header-page-nav a {
    padding: 1.07143em 2.28571em;
    border-bottom: 0;
    border-radius: 0;
    font-weight: bold;
    font-size: .875em;
  }
}

.l-header-page-nav a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: .69231em;
  display: block;
  box-sizing: border-box;
  width: .6em;
  height: .6em;
  border-top: 2px solid;
  border-right: 2px solid;
  color: #9c5c52;
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 960px) {
  .l-header-page-nav a:after {
    top: 0;
    right: 8px;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto 0;
    border-top: 3px solid;
    border-right: 3px solid;
    transition: transform .4s;
  }
}

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

Footer

* ============================================================= */
.l-footer {
  background: #2b2b2b;
  color: #fff;
}

/* nav
=============================== */
.l-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2em 0;
  font-size: .875em;
  line-height: 1;
}

.l-footer-nav__item {
  padding: .5em 0;
}

.l-footer-nav__item:not(:last-child):after {
  content: "\ff5c";
  margin: 0 .5em;
}

.l-footer-nav__item a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.l-footer-nav__item a:hover {
  color: #9c5c52;
}

/* info
=============================== */
.l-footer-info {
  padding: 1.83333em 0;
  border-top: 1px solid rgba(255, 255, 255, .27);
  text-align: center;
  font-size: .75em;
  line-height: 1;
}

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

.l-footer-info__profile {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.l-footer-info__profile > span {
  display: block;
  padding: .66667em .5em;
}

.l-footer-info__copyright {
  padding: .66667em 0;
}

/* pagetop
=============================== */
.l-footer-pagetop {
  position: fixed;
  right: 0;
  bottom: 3px;
  z-index: 99;
}

.l-footer-pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.125em;
  height: 7.6875em;
  max-width: 50px;
  max-height: 123px;
  border-radius: .625em 0 0 .625em;
  background: #2b2b2b;
  transition: all .3s;
}

.l-footer-pagetop a img,
.l-footer-pagetop a svg {
  width: 34%;
}

.l-footer-pagetop a svg path {
  fill: #fff;
}

.l-footer-pagetop a:hover {
  opacity: .7;
  transform: translateY(-2px);
}

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

Main

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

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

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

/* main heading
=============================== */
.l-main-heading {
  position: relative;
  padding: 5.3125em 0 4.0625em;
  background-color: #323232;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 24px, #2b2b2b 24px, #2b2b2b 48px);
  background-size: auto auto;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .l-main-heading {
    padding: 4.0625em 0 5.625em;
  }
}

/* main banner
=============================== */
.l-main-banner {
  padding: 2.6875em 0;
}

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

.l-main-banner-list__item a {
  display: block;
  overflow: hidden;
  border-radius: .625em;
  box-shadow: 0px 5px 8px 3px rgba(33, 33, 33, .1);
  transition: opacity .2s;
}

.l-main-banner-list__item a img {
  width: 100%;
}

.l-main-banner-list__item a:hover {
  opacity: .7;
}

/* main showroom nav
=============================== */
.l-main-showroom-nav {
  padding: 5.85652% 0;
  border-top: 1px solid #e6e6e6;
  background: url(../img/bg_dot.gif) center center repeat;
}

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

/* main category nav
=============================== */
.l-main-category-nav {
  padding: 5.12445% 0;
  background: #f9f9f9;
}

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

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

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

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

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

.l-main-category-nav .c-box-nav {
  padding-top: 86.11111%;
}

.l-main-category-nav .c-box-nav:after {
  width: 60.88975%;
  padding-top: 60.88975%;
}

.l-main-category-nav .c-box-nav:hover:after {
  transform: rotate(0deg) scale(1.64231);
}

@media screen and (max-width: 560px) {
  .l-main-category-nav .c-box-nav {
    padding-top: 66.66667%;
  }
}

/* box category nav
=============================== */
.l-main-category-nav .c-box-category-nav {
  padding-top: 86.11111%;
}

.c-box-category-nav {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  border-radius: 0.625em;
  box-shadow: 0px 5px 8px 3px rgb(0 0 0 / 5%);
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.c-box-category-nav:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70.71068%;
  height: 0;
  margin: auto;
  padding-top: 70.71068%;
  background: rgba(255, 255, 255, .2);
  transition: transform .5s;
  transform: rotate(45deg);
}

.c-box-category-nav:hover:after {
  transform: rotate(0deg) scale(1.41421);
}

.c-box-category-nav._car {
background-image: url(../img/bg_lineup.jpg);
    background-repeat: no-repeat;
}

.c-box-category-nav._maintenance {
  background-image: url(../img/bg_maintenance.jpg);
  background-repeat: no-repeat;
}

.c-box-category-nav._campaign {
  background-image: url(../img/bg_campaign.jpg);
  background-repeat: no-repeat;
}

.c-box-category-nav._welcome {
  background-image: url(../img/bg_welcome.jpg);
  background-repeat: no-repeat;
}


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

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 {
  position: absolute;
  right: 0;
  bottom: 1.38462em;
  left: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto;
  font-size: .8125em;
}

@media screen and (max-width: 960px) {
  .c-breadcrumbs {
    justify-content: center;
  }
}

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

.c-breadcrumbs > li + li:before {
  content: ">";
  margin: 0 .5em;
  color: #fff;
}

.c-breadcrumbs > li a {
  color: #fff;
  text-decoration: underline;
}

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

/* button
=============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.9em;
  padding: .75em 1em;
  outline: none;
  border-radius: 3.9rem;
  background: #2b2b2b;
  box-shadow: 0px 5px 8px 3px rgba(0, 0, 0, .05);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
  transition: opacity .2s;
}

@media screen and (max-width: 560px) {
  .c-button {
    font-size: 1.6rem;
  }
}

.c-button._fs-sm {
  font-size: 1.6rem;
}

.c-button._more {
  height: 2.78571em;
  padding: 1em 1em .75em 1em;
  font-size: 2.8rem;
  font-family: "Josefin Sans", sans-serif;
  line-height: .7;
}

@media screen and (max-width: 560px) {
  .c-button._more {
    font-size: 2.24rem;
  }
}

.c-button._more:before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: .42857em;
  height: .42857em;
  margin-right: .65em;
  margin-bottom: .45em;
  border-right: 3px solid;
  border-bottom: 3px solid;
  transition: all .3s;
  transform: rotate(45deg);
}

.c-button a {
  color: #fff;
  text-decoration: none;
}

.c-button:hover {
  opacity: .75;
}

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

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

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

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

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

.c-banner img {
  width: 100%;
}

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

/* box nav
=============================== */
.c-box-nav {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  border-radius: .625em;
  box-shadow: 0px 5px 8px 3px rgba(0, 0, 0, .05);
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.c-box-nav__image {
  position: absolute;
  top: 24.11576%;
  left: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37.94212%;
  height: 30.86817%;
  transform: translateX(-50%);
}

.c-box-nav__main {
  position: absolute;
  top: 44.19936%;
  left: 0;
  width: 100%;
  text-shadow: 0px .16667em .33333em rgba(50, 50, 39, .25);
  font-weight: bold;
  font-size: 1.75695vw;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

@media screen and (max-width: 560px) {
  .c-box-nav__main {
    font-size: 3.73333vw;
  }
}

.c-box-nav__sub {
  position: absolute;
  position: absolute;
  bottom: -.07em;
  left: 50%;
  padding-top: .03em;
  white-space: nowrap;
  letter-spacing: -.03em;
  font-weight: bold;
  font-size: 3.3675vw;
  font-family: Quicksand, sans-serif;
  line-height: .7;
  opacity: .5;
  transform: translateX(-50%);
}

@media screen and (max-width: 560px) {
  .c-box-nav__sub {
    font-size: 6.4vw;
  }
}

.c-box-nav:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70.71068%;
  height: 0;
  margin: auto;
  padding-top: 70.71068%;
  background: rgba(255, 255, 255, .2);
  transition: transform .5s;
  transform: rotate(45deg);
}

.c-box-nav:hover:after {
  transform: rotate(0deg) scale(1.41421);
}


.c-box-nav._car {
  background-image: url(../img/bg_lineup.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-box-nav._maintenance {
  background-image: url(../img/bg_maintenance.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-box-nav._campaign {
  background-image: url(../img/bg_campaign.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-box-nav._welcome {
  background-image: url(../img/bg_welcome.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* detailed banner
=============================== */
.c-detailed-banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #c8c8c8;
  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: #212121;
  text-align: center;
  text-decoration: none;
  font-size: 1.125em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
  cursor: pointer;
  transition: background .25s;
}

.c-tab__button:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  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 #212121;
  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: 4.375em 0 8.125em;
}

@media screen and (max-width: 960px) {
  .c-section {
    margin-bottom: 4.375em;
  }
}

.c-section._bg {
  margin: 0;
  padding: 4.375em 0 8.125em;
  background: #f9f9f9;
}

@media screen and (max-width: 960px) {
  .c-section._bg {
    margin-bottom: 0;
    padding-bottom: 4.375em;
  }
}

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

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

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

/* inner section
=============================== */
.c-inner-section + .c-inner-section {
  margin-top: 3.75em;
}

.c-inner-section__head {
  margin-bottom: 1.5625em;
}

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

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 #c8c8c8;
  border-left: 1px solid #c8c8c8;
  font-size: 1.5rem;
}

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

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

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

.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: .875em;
}

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

.c-data-table tbody th[rowspan] {
  width: 2.5em;
  padding: 1.8rem .5rem;
  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__main {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  padding-left: .11em;
  letter-spacing: .11em;
  font-size: 2.875em;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.c-page-title__sub {
  margin-top: 1em;
  padding-top: .03em;
  color: #f25b52;
  font-size: 1.375em;
  font-family: Quicksand, sans-serif;
  line-height: .7;
}

/* sub title
=============================== */
.c-sub-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
}

.c-sub-title._text-white ._en,
.c-sub-title._text-white ._ja {
  color: #fff;
}

.c-sub-title._text-white ._en {
  border-bottom-color: #fff;
}

.c-sub-title._text-black ._en,
.c-sub-title._text-black ._ja {
  color: #212121;
}

.c-sub-title ._en {
  margin-bottom: 1.25em;
  padding: 0 0 .66667em;
  padding-top: .03em;
  border-bottom: 2px dashed #212121;
  color: #f25b52;
  font-family: Quicksand, sans-serif;
  line-height: .7;
}

.c-sub-title ._ja {
  padding-left: .125em;
  letter-spacing: .125em;
  font-size: 1.66667em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
}

.c-sub-title[data-intersection] {
  perspective: 1200px;
}

.c-sub-title[data-intersection] ._en,
.c-sub-title[data-intersection] ._ja {
  transition: transform .3s ease-out;
  transform: rotateY(-90deg);
}

.c-sub-title[data-intersecting="true"] ._en,
.c-sub-title[data-intersecting="true"] ._ja {
  transform: rotateY(0deg);
}

.c-sub-title[data-intersecting="true"] ._ja {
  transition-delay: .2s;
}

/* 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: 4rem;
}

.c-blog-container._frame .c-blog-container__td > article {
  position: relative;
  padding: 1.875em 1.875em 4.375em;
  border-radius: .625em;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .12);
}

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

@media screen and (max-width: 560px) {
  .c-blog-container .blog__header {
    flex-direction: column;
  }
}

.c-blog-container .blog__title {
  margin-right: 1.5em;
  color: #fff;
  letter-spacing: .1em;
  font-weight: medium;
  font-size: 1.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

@media screen and (max-width: 560px) {
  .c-blog-container .blog__title {
    margin-right: 0;
  }
}

.c-blog-container .blog__date {
  margin-left: auto;
  color: #f25b52;
  font-size: 1.7rem;
  font-family: Quicksand, sans-serif;
}

@media screen and (max-width: 560px) {
  .c-blog-container .blog__date {
    margin-left: 0;
  }
}

.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: 4rem;
  text-align: right;
}

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

Calander

* ============================================================= */
/* container */
.c-calendar-container {
  position: relative;
  background: #f5f5f5;
}

.c-calendar-container:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38.28697%;
  height: 100%;
  background: #f25b52;
}

@media screen and (max-width: 960px) {
  .c-calendar-container:before {
    width: 100%;
    height: 40%;
  }
}

.c-calendar-container__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1120px;
  max-width: 91.21523%;
  margin: 0 auto;
  padding: 4.0625em 0;
}

@media screen and (max-width: 960px) {
  .c-calendar-container__inner {
    flex-wrap: wrap;
  }
}

.c-calendar-container__head {
  margin: 0 auto;
  max-width: 42.5%;
}

@media screen and (max-width: 960px) {
  .c-calendar-container__head {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10.18519%;
  }
}

.c-calendar-container__body {
  width: 48.21429%;
  margin-top: .9375em;
  margin-left: 9.28571%;
}

@media screen and (max-width: 960px) {
  .c-calendar-container__body {
    width: 100%;
    margin-left: 0;
  }
}

.c-calendar-container__notes {
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* flex-wrap: wrap; */
  margin-top: 10.18519%;
  padding: 1em 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  /* line-height: 1; */
  line-height: 1.5;
}

.c-calendar-container__notes > p {
  padding: .5em 1em;
}

.c-calendar-container__notes > p > span {
  display: inline-flex;
  align-items: center;
  margin-right: .5em;
}
.c-calendar-container__notes > p > span._close02 {
  display: inline-flex;
  align-items: center;
  margin-right: .5em;
  color: #9c5c52;
}
.c-calendar-container__notes > p > span._close03 {
  display: inline-flex;
  align-items: center;
  margin-right: .5em;
  color: #0078e6;
}
.c-calendar-container__notes > p > span._close04 {
  display: inline-flex;
  align-items: center;
  margin-right: .5em;
  color: #efa753;
}
.c-calendar-container__notes > p > span._close05 {
  display: inline-flex;
  align-items: center;
  margin-right: .5em;
  color: #f25b52;
}

.c-calendar-container__notes > p > span:after {
  content: "";
  color: #212121;
  box-sizing: border-box;
  width: 2.25em;
  height: 1px;
  margin-bottom: 2px;
  margin-left: .5em;
  border-top: 1px solid;
}

.c-calendar-container__control {
  display: flex;
  margin-top: 12.03704%;
}

/* arrow */
.c-calendar-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.7rem;
  height: 4.7rem;
  margin: 0 2px;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: .625em;
  background: #9c5c52;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
  background: #d7d7d7;
  color: #212121;
  pointer-events: none;}

.c-calendar-arrow:hover {
  opacity: .8;
}

.c-calendar-container__control:not([data-current="0"]) .c-calendar-arrow:first-child {
  pointer-events: auto;
  color: #fff;
  background: #9c5c52;
}

.c-calendar-container__control:not([data-current="2"]) .c-calendar-arrow:last-child {
  pointer-events: auto;
  color: #fff;
  background: #9c5c52;
}

.c-calendar-arrow:after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: .9rem;
  height: .9rem;
  border-top: 2px solid;
}

.c-calendar-arrow._prev:after {
  margin-left: .25em;
  border-left: 2px solid;
  transform: rotate(-45deg);
}

.c-calendar-arrow._next:after {
  margin-right: .25em;
  border-right: 2px solid;
  transform: rotate(45deg);
}

/* box */
.c-calendar-box {
  position: relative;
  padding: 3.4375em 2em;
  border-radius: .625em;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .12);
}

.c-calendar-box__head {
  position: absolute;
  top: -.23077em;
  left: .225em;
  display: flex;
  padding-top: .03em;
  font-weight: bold;
  font-style: italic;
  font-size: 4.875em;
  font-family: Quicksand, sans-serif;
  line-height: .7;
}

.c-calendar-box__head > * + * {
  margin-left: .25em;
}

.c-calendar-box .cal {
  width: 100%;
  border-spacing: 0 1em;
  border-collapse: separate;
  table-layout: fixed;
  font-style: italic;
  font-family: Quicksand, sans-serif;
}

.c-calendar-box .cal th {
  padding: 1em 0;
  text-align: center;
  font-size: 1.0625em;
}

.c-calendar-box .cal th > div {
  padding-right: .1em;
  padding-bottom: .1em;
}

.c-calendar-box .cal td {
  text-align: center;
  letter-spacing: .07em;
  font-size: 1.625em;
}

.c-calendar-box .cal td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.76923em;
  height: 1.76923em;
  margin: 0 auto;
  padding-right: .1em;
  padding-bottom: .1em;
  border-radius: 50%;
}

.c-calendar-box .cal .cal_sat {
  color: #24b4ea;
}

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


.c-calendar-box .cal td .cal_close02 {
  background-color: #9c5c52;
  color: #fff;
}

.c-calendar-box .cal td .cal_close03 {
  background-color: #0078e6;
  color: #fff;
}

.c-calendar-box .cal td .cal_close04 {
  background: linear-gradient(90deg, #9c5c52 0%, #9c5c52 50%, #efa753 50%, #efa753 100%);
  color: #fff;
}


.c-calendar-box .cal td .cal_close05 {
  background-color: #f25b52;
  color: #fff;
}


.c-calendar-box .cal td .cal_close01 {
  background-color: #2b2b2b;
  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-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: #212121;
}

.c-inspection-fig__notes > li._option > span {
  color: #9c5c52;
}

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

/* 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._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__item + .c-showroom-list__item {
  margin-top: 2.5em;
}

.c-showroom-list._type-navigation {
  display: flex;
  flex-wrap: wrap;
  width: 101.78571%;
  margin: -2.23214% -.89286%;
  padding-top: 1px;
}

.c-showroom-list._type-navigation .c-showroom-list__item {
  width: 33.33333%;
  margin-top: 0 !important;
  padding: 2.13675% .87719%;
}

@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;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5em;
  border-radius: .625em;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
  text-decoration: none;
  font-weight: medium;
}

.c-showroom-card__image {
  order: 1;
  width: 50.74627%;
  height: 0;
  padding-top: 31.71642%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 560px) {
  .c-showroom-card__image {
    order: -1;
    width: 100%;
    padding-top: 62.71186%;
  }
}

.c-showroom-card__contents {
  width: 49.25373%;
  padding: 2.33209% 3.26493% 2.33209% 1.1194%;
}

@media screen and (max-width: 560px) {
  .c-showroom-card__contents {
    width: 100%;
    margin-top: 1.5em;
  }
}

.c-showroom-card__head {
  margin-bottom: .75em;
  font-weight: bold;
  font-size: 1.75em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
}

.c-showroom-card__body > dl {
  position: relative;
  display: flex;
  align-items: center;
  /* -0.375em for line-height offset */
  margin-top: .625em;
  margin-bottom: -.375em;
  padding: .5em 0;
  border-bottom: 1px solid #dedfda;
}

.c-showroom-card__body > dl:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 4.75em;
  height: 2px;
  border-bottom: 2px solid;
  transition: all .4s;
}

.c-showroom-card__body > dl > dt {
  width: 4.75em;
}

.c-showroom-card__body > dl > dt:after {
  content: "\ff1a";
  margin: 0 .25em;
}

.c-showroom-card__body > dl > dd {
  width: calc(100% - 5em);
  padding-left: 1em;
}

.c-showroom-card__body > dl > dd span {
  display: block;
}

.c-showroom-card__foot {
  width: 94.16667%;
  margin: 2.125em auto 0;
}

._type-navigation .c-showroom-card__image {
  order: -1;
  width: 100%;
  padding-top: 62.71186%;
}

._type-navigation .c-showroom-card__contents {
  width: 100%;
  margin-top: 1.5em;
}

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

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