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

Base

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

img {
  opacity: 0;
}

img[src] {
  opacity: 1;
}

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

  text-underline-position: under;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

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

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

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

#googleAnalyticsImageObj {
  position: absolute;
  bottom: 0;
  left: 0;
}

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

@media screen and (max-width: 768px) {
  .l-wrapper {
    min-width: 0;
  }
}

/* data intersection
=============================== */
*[data-intersection] {
  opacity: 0;
  transition: opacity .4s ease-out, transform .4s ease-out;
  transform: translateY(25px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

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

Header

* ============================================================= */
.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  min-width: 1120px;
}

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

.l-header:after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
}

.l-header__inner {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 90px;
  min-width: 1120px;
  background: #151515;
}

@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 70px;
    min-width: 0;
  }
}

/* header logo
=============================== */
.l-header-logo {
  z-index: 1;
  display: flex;
  width: 17.73333em;
  height: 100%;
  margin: auto 0;
}

.l-header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 9.3985%;
  transition: opacity .25s;
}

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

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

/* 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__nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

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

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

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

/* header nav
=============================== */
.l-header-nav {
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-header-nav {
    display: block;
    flex-grow: 1;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 1.6em 1.2em;
  }
}

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

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

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

@media screen and (max-width: 768px) {
  .l-header-nav__item {
    display: block;
    margin: 0 !important;
  }
  .l-header-nav__item + .l-header-nav__item {
    border-top: 1px solid #fff;
  }
  .l-header-nav__item[data-category=reservation], .l-header-nav__item[data-category=contact] {
    border-top: 0;
  }
  .l-header-nav__item[data-category=reservation] {
    padding-top: 1.5em;
  }
  .l-header-nav__item[data-category=contact] {
    padding-top: .75em;
  }
}

.l-header-nav__handle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1.33333em;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
  cursor: pointer;
  transition: opacity .25s ease-out;
}

@media screen and (max-width: 768px) {
  .l-header-nav__handle {
    display: block;
    color: #fff;
    text-align: left;
    font-size: 1.2em;
  }
}

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

.l-header-nav__handle > *._en {
  display: none;
  margin-bottom: -.5em;
  letter-spacing: .1em;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}

@media screen and (max-width: 768px) {
  .l-header-nav__handle > *._en {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .l-header-nav__handle {
    justify-content: flex-start;
    height: auto;
    padding: 1em 2.5vw;
    font-weight: 550;
  }
  .l-header-nav__handle:before, .l-header-nav__handle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    display: block;
    width: 2em;
    height: 1px;
    margin: auto 0;
    margin: auto 0;
    background: #fff;
    transition: transform .4s;
  }
  .l-header-nav__handle:after {
    transform: rotate(90deg);
  }
  .l-header-nav__handle.is-open:after {
    transform: rotate(0deg);
  }
}

.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: 768px) {
  .l-header-nav__drawer {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transition: none;
    transform: none;
  }
}

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

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

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

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

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

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

.l-header-page-nav:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% - 1.5em);
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border: .66667em solid transparent;
  border-bottom-color: rgba(152, 8, 8, .8);
}

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

.l-header-page-nav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 1.2em;
  border-radius: 5px;
  background: rgba(152, 8, 8, .8);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
}

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

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

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

@media screen and (max-width: 768px) {
  .l-header-page-nav__item {
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, .5);
  }
}

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

@media screen and (max-width: 768px) {
  .l-header-page-nav a {
    padding: 1em 1em 1em 2.5vw;
    border-radius: 0;
  }
  .l-header-page-nav a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 2px;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 6px;
    height: 9px;
    margin: auto 0;
    background: url(../img/arrow.png) center center no-repeat;
    background-size: contain;
  }
}

@media screen and (min-width: 769px) {
  .l-header-page-nav a:hover {
    background: rgba(255, 255, 255, .2);
  }
}

/* header button
=============================== */
.l-header-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.46154em;
  height: 100%;
  background: #980808;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: .86667em;
  line-height: 1.38462;
  cursor: pointer;
  transition: all .3s ease-out;
}

@media screen and (max-width: 768px) {
  .l-header-button {
    flex-direction: row;
    width: 100%;
    padding: 1em;
    font-size: 1.06667em;
  }
  .l-header-button br {
    display: none;
  }
}

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

.l-header-button > i {
  display: block;
  margin-bottom: .66667em;
}

@media screen and (max-width: 768px) {
  .l-header-button > i {
    margin-right: .66667em;
    margin-bottom: 0;
  }
}

/* header hamburger
=============================== */
.l-header-hamburger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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

.l-header-hamburger > div {
  top: 1.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 53.33333%;
  margin: auto;
  transition: background .2s;
}

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

.l-header-hamburger > div:before {
  top: -9px;
}

.l-header-hamburger > div:after {
  bottom: -9px;
}

.l-header-hamburger > div > span {
  position: absolute;
  bottom: calc(100% + 1.5em);
  left: 0;
  width: 100%;
  padding-left: .1em;
  letter-spacing: .1em;
  font-weight: 550;
  font-size: 1rem;
  font-family: Roboto, sans-serif;
}

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

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

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

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

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

  footer

* ============================================================= */
.l-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 0;
}

.l-footer__body {
  position: relative;
  padding: calc(35px + 2.69231%) 0;
}

@media screen and (max-width: 768px) {
  .l-footer__body {
    padding: calc(15px + 1.15385%) 0;
  }
}

.l-footer__foot {
  padding: calc(16px + 1.23077%) 0;
  border-top: 1px solid #494949;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer__foot {
    border-top: 0;
    background: #2b2b2b;
  }
}

/* footer logo
=============================== */
.l-footer-logo {
  width: 120px;
  margin: 0 auto 2.6rem;
}

.l-footer-logo a {
  display: block;
  transition: opacity .3s ease-out;
}

.l-footer-logo a:hover {
  opacity: .8;
}

/* footer info
=============================== */
.l-footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .l-footer-info {
    display: block;
  }
}

.l-footer-info > p {
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-footer-info > p {
    display: block;
  }
}

.l-footer-info > p + p:before {
  content: "\FF0F";
}

@media screen and (max-width: 768px) {
  .l-footer-info > p + p:before {
    content: none;
  }
}

.l-footer-info > p > span {
  display: block;
}

.l-footer-info > p > span + span:before {
  content: "\FF0F";
}

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

/* footer copyright
=============================== */
.l-footer-copyright {
  display: block;
  /* -0.5em for line-height offset */
  margin-top: .75em;
  margin-bottom: -.5em;
}

/* pagetop
=============================== */
.l-footer-pagetop {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  transition: opacity .2s ease-out;
  pointer-events: none;
}

.l-footer-pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.l-footer-pagetop.is-static a {
  position: static;
}

.l-footer-pagetop a {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  width: 6rem;
  height: 6rem;
  background: rgba(152, 8, 8, .7);
  font-size: 0;
  transition: opacity .3s ease-out;
}

.l-footer-pagetop a:hover {
  opacity: .7;
}

.l-footer-pagetop a:after {
  content: "";
  position: absolute;
  top: .53rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

/* footer sitemap
=============================== */
.l-footer-sitemap {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap {
    flex-direction: column;
    width: 95%;
  }
}

.l-footer-sitemap__col {
  width: 21%;
  padding: 2%;
}

.l-footer-sitemap__col:first-child {
  width: 37%;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap__col {
    width: 100% !important;
    padding: 0;
  }
  .l-footer-sitemap__col + .l-footer-sitemap__col {
    border-top: 1px solid;
  }
}

.l-footer-sitemap-box + .l-footer-sitemap-box {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap-box + .l-footer-sitemap-box {
    margin-top: 0;
    border-top: 1px solid;
  }
}

.l-footer-sitemap-box__body {
  display: none;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .l-footer-sitemap-box__body {
    display: flex !important;
    overflow: visible;
  }
}

.l-footer-sitemap-box__body a {
  text-decoration: none;
}

.l-footer-sitemap-box__body a:hover {
  text-decoration: underline;
}

.l-footer-sitemap-toggle {
  position: relative;
  overflow: visible;
  outline: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap-toggle {
    width: 100%;
    padding: 2em 2.5vw;
    font-size: 1.2em;
    pointer-events: auto;
  }
  .l-footer-sitemap-toggle:before, .l-footer-sitemap-toggle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 2.5vw;
    bottom: 0;
    display: block;
    width: 2em;
    height: 1px;
    margin: auto 0;
    background: #fff;
  }
  .l-footer-sitemap-toggle:after {
    transition: transform .3s ease-out;
    transform: rotate(90deg);
  }
  .l-footer-sitemap-toggle.is-open:after {
    transform: rotate(0deg);
  }
}

/*.l-footer-sitemap-toggle > * {
   -0.5em for line-height offset
  margin-top: -.5em;
  margin-bottom: -.5em;
} */

.l-footer-sitemap-toggle > *._en {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}

.l-footer-sitemap-toggle > *._ja {
  display: none;
  margin-top: .4em;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap-toggle > *{
    margin-top: -.5em;
    margin-bottom: -.5em
  }
  .l-footer-sitemap-toggle > *._ja {
    display: block;
  }
}

.l-footer-sitemap-pages {
  flex-grow: 1;
  padding-top: 1.84615em;
  font-size: .86667em;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap-pages {
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5vw 3em;
    font-size: 1em;
  }
  .l-footer-sitemap-pages:first-child:not(:last-child), .l-footer-sitemap-pages:last-child:not(:first-child) {
    float: left;
    width: 50%;
  }
}

.l-footer-sitemap-pages > li {
  /* -0.30769em for line-height offset */
  margin-top: -.30769em;
  margin-bottom: -.30769em;
  line-height: 1.61538;
}

.l-footer-sitemap-pages > li:not(:last-child) {
  margin-bottom: 1.69231em;
}

@media screen and (max-width: 768px) {
  .l-footer-sitemap-pages > li {
    margin: 0 !important;
  }
  .l-footer-sitemap-pages > li a {
    position: relative;
    display: block;
    padding: 1.25em 1em 1.25em 0;
    border-top: 1px solid rgba(255, 255, 255, .5);
  }
  .l-footer-sitemap-pages > li a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 2px;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 6px;
    height: 9px;
    margin: auto 0;
    background: url(../img/arrow.png) center center no-repeat;
    background-size: contain;
  }
}

.l-footer-sitemap-pages > li._sub {
  margin-top: -1.07692em;
}

.l-footer-sitemap-pages > li._sub a:before {
  content: "-";
  display: inline-block;
  padding: 0 .3em;
}

.l-footer-sitemap-box[data-category="showroom"] .l-footer-sitemap-pages > li:not(._sub) + ._sub {
  margin-top: -.30769em;
}

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

  main

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

.l-main__head {
  padding: calc(15px + 1.15385%) 0 calc(12.5px + .96154%);
  border-bottom: 1px solid #494949;
  background: #2b2b2b;
}

/* main
=============================== */
.l-main-nav {
  padding: calc(36.5px + 2.80769%) 0;
  background: #980808;
}

.l-main-nav__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.l-main-nav__list {
  width: 89.09091%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-main-nav__list {
    width: 100%;
  }
}

.l-main-nav__list path {
  fill: currentColor;
}

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

Modal

* ============================================================= */
.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 1120px;
  opacity: 0;
  transition: visibility .3s ease-out, opacity .3s ease-out;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .l-modal {
    min-width: 0;
  }
}

.l-modal.is-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-modal__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  transition: transform .3s ease-out;
  transform: translateY(20px);
}

.l-modal.is-show .l-modal__inner {
  transform: translateY(0px);
}

.l-modal__close {
  position: absolute;
  bottom: calc(100% - 6px);
  left: calc(100% + 34px);
}

@media screen and (max-width: 1160px) {
  .l-modal__close {
    left: calc(100% + 6px);
  }
}

@media screen and (max-width: 768px) {
  .l-modal__close {
    right: -10px;
    bottom: calc(100% + 10px);
    left: auto;
  }
}

.l-modal-image.is-show ~ .l-modal__close {
  top: -2.8rem;
  right: -2.8rem;
  bottom: auto !important;
  left: auto !important;
}

.l-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .75);
  font-size: 0;
}

/* image
=============================== */
.l-modal-image {
  display: none;
  max-width: 90vw;
}

.l-modal-image.is-show {
  display: block;
}

.l-modal-image__inner {
  overflow-y: auto;
  max-height: 90vh;
}

/* nav
=============================== */
.l-modal-nav {
  display: none;
  max-width: 90vw;
  margin: -5px;
}

.l-modal-nav.is-show {
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-modal-nav {
    flex-direction: column;
  }
}

.l-modal-nav__item {
  padding: 5px;
}

/* link
=============================== */
.l-modal-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47.5rem;
  height: 44rem;
  max-width: 100%;
  border: 2px solid #fff;
  background: 50% 50% no-repeat #980808;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.8;
  transition: all .3s ease-out;
}

@media screen and (max-width: 768px) {
  .l-modal-link {
    height: 12.5em;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 560px) {
  .l-modal-link {
    font-size: 2rem;
  }
}

.l-modal-link:hover {
  opacity: .8;
  transform: translateY(-3px);
}

.l-modal-link._ibaraki {
  background-image: url(../img/bg_nav_ibaraki.png);
  background-size: 64.1189% auto;
}

@media screen and (max-width: 768px) {
  .l-modal-link._ibaraki {
    background-size: auto 87.04545%;
  }
}

.l-modal-link._fukushima {
  background-image: url(../img/bg_nav_fukushima.png);
  background-size: 71.33758% auto;
}

@media screen and (max-width: 768px) {
  .l-modal-link._fukushima {
    background-size: auto 60.90909%;
  }
}

.l-modal-link em {
  font-size: 1.28571em;
}

/* close
=============================== */
.l-modal-close {
  display: block;
  width: 5.6rem;
  height: 5.6rem;
  outline: none;
  border: 0;
  border-radius: 50%;
  background: #999;
  font-size: 0;
  cursor: pointer;
  transition: opacity .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-modal-close:hover {
  opacity: .7;
}

.l-modal-close:before, .l-modal-close:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 2px;
  margin: auto;
  background: #fff;
}

.l-modal-close:before {
  transform: rotate(45deg);
}

.l-modal-close:after {
  transform: rotate(-45deg);
}

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

loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  transition: opacity .3s ease-out;
}

body.is-loaded .l-loader {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.l-loader:before {
  content: "Loading";
  margin-bottom: .5em;
  color: rgba(255, 255, 255, .5);
  font-family: Roboto, sans-serif;
}

.l-loader > i,
.l-loader > i:before,
.l-loader > i:after {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 6px solid transparent;
  border-radius: 50%;
}

.l-loader > i {
  position: relative;
  border-top-color: #980808;
  -webkit-animation: loader-spinner-animate 1s linear infinite;
          animation: loader-spinner-animate 1s linear infinite;
}

.l-loader > i:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  border-left-color: #fff;
  transform: rotateZ(-30deg);
}

.l-loader > i:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  border-right-color: rgba(255, 255, 255, .5);
  transform: rotateZ(30deg);
}

@-webkit-keyframes loader-spinner-animate {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    opacity: .7;
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}

@keyframes loader-spinner-animate {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    opacity: .7;
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}

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

contact

* ============================================================= */
.l-contact {
  padding: calc(45px + 3.46154%) 0;
  background: url(../img/bg_contact.jpg) 50% 0 no-repeat #434140;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .l-contact {
    background-image: url(../img/bg_contact_mobile.jpg);
    background-size: contain;
  }
}

.l-contact__head {
  margin-bottom: calc(29px + 2.23077%);
}

.l-contact__list {
  display: flex;
  flex-wrap: wrap;
  width: 792px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-contact__list {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.l-contact__item {
  width: 50%;
  padding: 9px 8px;
}

@media screen and (max-width: 768px) {
  .l-contact__item {
    width: 100%;
    padding: 0;
  }
  .l-contact__item + .l-contact__item {
    margin-top: calc(10px + 1.48148%);
  }
}

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

breadcrumbs

* ============================================================= */
.c-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
  font-size: .86667em;
}

.c-breadcrumbs > li:not(:last-child) {
  margin-right: 1em;
}

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

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

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

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

title

* ============================================================= */
/* main title
=========================== */
.c-main-title {
  display: flex;
  flex-direction: column;
  padding: 3.84615em 1rem;
}

@media screen and (max-width: 768px) {
  .c-main-title {
    padding-right: 0;
    padding-left: 0;
  }
}

.c-main-title > * {
  display: block;
}

.c-main-title > *._ja {
  /* -0.125em for line-height offset */
  margin-top: -.125em;
  margin-bottom: -.125em;
  letter-spacing: .15em;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.25;
}

.c-main-title > *._ja > span {
  display: inline-block;
}

.c-main-title > *._en {
  order: 2;
  /* -0.5em for line-height offset */
  margin-top: .25em;
  margin-bottom: -.5em;
  color: #ff1e1e;
  letter-spacing: .1em;
  font-size: 1.8rem;
  font-family: Roboto, sans-serif;
}

/* sub title
=========================== */
.c-sub-title {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
  text-align: center;
  letter-spacing: .1em;
  font-weight: bold;
  font-size: 2.8rem;
  font-family: "Midashi Go MB31", sans-serif;
}

/* desc title
=========================== */
.c-desc-title {
  display: flex;
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
  font-weight: bold;
  font-size: 2.4rem;
}

.c-desc-title:before {
  content: "";
  position: relative;
  top: 1em;
  display: block;
  flex-shrink: 0;
  width: 1.75em;
  height: 1px;
  margin-right: .4em;
  background: currentColor;
}

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

section

* ============================================================= */
/*
_bg = 背景色あり
_closer = sectionの上下を狭める
_spacer = sectionの上下を広げる
_tab-bg = 中にタブがありtabの下側のみ背景があるsection（店舗一覧ほか）
*/
.c-section {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin: calc(50px + 3.84615%) auto calc(65px + 5%);
}

.c-section__head {
  width: 89.09091%;
  margin: 0 auto calc(30px + 2.30769%);
}

@media screen and (max-width: 768px) {
  .c-section__head {
    width: 100%;
  }
}

.c-section__body {
  width: 89.09091%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-section__body {
    width: 100%;
  }
}

.c-section__wide {
  position: relative;
  left: 50%;
  width: 112.2449%;
  transform: translateX(-50%);
}

.c-section__wide:not(:last-child) {
  margin-top: 3.2em;
}

@media screen and (max-width: 768px) {
  .c-section__wide {
    width: 100%;
  }
}

/* section title
=========================== */
.c-section-title {
  display: flex;
  flex-direction: column;
}

.c-section-title:not(:last-child) {
  margin-bottom: 3em;
}

.c-section-title > * {
  display: block;
  letter-spacing: .1em;
}

.c-section-title > *._ja {
  /* -0.125em for line-height offset */
  margin-top: -.125em;
  margin-bottom: -.125em;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.25;
}

.c-section-title > *._en {
  /* -0.5em for line-height offset */
  margin-top: .83333em;
  margin-bottom: -.5em;
  color: rgba(255, 30, 30, .7);
  font-size: 1.8rem;
  font-family: Roboto, sans-serif;
}

/* section lead
=========================== */
.c-section-lead {
  /* -0.4em for line-height offset */
  margin-top: -.4em;
  margin-bottom: -.4em;
  font-size: 1.33333em;
  line-height: 1.8;
}

.c-section-lead:not(:first-child) {
  margin-top: 1em;
}

.c-section-lead:not(:last-child) {
  margin-bottom: 2.9em;
}

.c-section-lead em {
  color: #ff1e1e;
}

.c-section-lead span {
  display: inline-block;
}

/* section sub lead
=========================== */
.c-section-sub-lead {
  /* -0.27778em for line-height offset */
  margin-top: -.27778em;
  margin-bottom: .94444em;
  color: #980808;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.55556;
}

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

/* section text
=========================== */
.c-section-text {
  /* -0.4em for line-height offset */
  margin-top: -.4em;
  margin-bottom: -.4em;
  line-height: 1.8;
}

.c-section-text._center {
  text-align: center;
}

.c-section-text:not(:first-child) {
  margin-top: 2.66667em;
}

.c-section-text:not(:last-child) {
  margin-bottom: 2em;
}

.c-section-text span {
  display: inline-block;
}

.c-section-text a {
  color: #ff1e1e;
}

.c-section-text em {
  color: #ff1e1e;
  font-weight: bold;
}

/* inner
=========================== */
.c-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* inner section
=========================== */
.c-inner-section:not(:first-child) {
  margin-top: calc(40px + 3.07692%);
}

.c-inner-section__head {
  margin-bottom: calc(20px + 1.53846%);
}

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

grid

* ============================================================= */
.c-grid {
  display: flex;
  flex-wrap: wrap;
  width: 102.18182%;
  margin: -1.09091% -1.09091%;
  padding-top: 1px;
}

.c-grid._closer {
  display: flex;
  flex-wrap: wrap;
  width: 101.27273%;
  margin: -.63636% -.63636%;
  padding-top: 1px;
}

.c-grid._center {
  justify-content: center;
}

.c-grid__item {
  width: 50%;
  padding: 1.06762% 1.06762%;
}

.c-grid._closer .c-grid__item {
  padding: .62837% .62837%;
}

.c-grid__item._x1 {
  width: 100%;
}

.c-grid__item._x3 {
  width: 33.33333%;
}

.c-grid__item._x4 {
  width: 25%;
}

.c-grid__item._x5 {
  width: 20%;
}

@media screen and (max-width: 2118.51852px) {
  .c-grid__item._inner-x3 {
    width: 33.33333%;
  }
}

@media screen and (max-width: 768px) {
  .c-grid__item._tablet-x2 {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .c-grid__item._tablet-x1 {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .c-grid__item._mobile-x1 {
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .c-grid__item._mobile-s-x1 {
    width: 100%;
  }
}

/* tile grid
=========================== */
.c-tile-grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 4px);
  margin: -2px;
}

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

.c-tile-grid__item._x1 {
  width: 100%;
}

@media screen and (max-width: 560px) {
  .c-tile-grid__item {
    width: 100%;
  }
}

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

navigation

* ============================================================= */
/* button
=========================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 350px;
  height: 8rem;
  max-width: 100%;
  outline: none;
  border: 0;
  border-radius: 3px;
  background: #980808;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.33333em;
  line-height: 1.2;
  transition: all .3s;
  transition: all .3s ease-out;
}

@media screen and (max-width: 768px) {
  .c-button {
    width: 100%;
  }
}

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

.c-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.22222em;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 6px;
  height: 9px;
  margin: auto 0;
  background: url(../img/arrow.png) center center no-repeat;
  background-size: contain;
}

.c-button._ghost {
  border: 1px solid;
  background: transparent;
}

.c-button._ghost:hover {
  background: #980808;
  opacity: 1;
}

.c-button._seethrough {
  background: rgba(255, 255, 255, .25);
}

.c-button._seethrough:hover {
  background: rgba(255, 255, 255, .15);
  opacity: 1;
}

.c-button._contact {
  width: 100%;
  font-size: 1.06667em;
}

.c-button._page-foot {
  width: 47rem;
  font-weight: normal;
  font-size: 1.8rem;
}

/* block */
.c-button-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -12px;
}

.c-button-block__item {
  padding: 12px;
}

@media screen and (max-width: 768px) {
  .c-button-block__item {
    max-width: 94%;
  }
}

/* holder */
.c-button-holder {
  display: flex;
  justify-content: center;
  margin-top: calc(50px + 3.84615%);
}

/* icon button
=========================== */
.c-icon-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  padding-left: 2.5rem;
  border-radius: 4px;
  background: #fff;
  color: #980808;
  text-decoration: none;
  font-size: 1.8rem;
  transition: opacity .3s ease-out;
}

.c-icon-button:hover {
  opacity: .7;
}

.c-icon-button > i {
  position: absolute;
  top: 50%;
  left: 8.74126%;
  max-width: 12.5%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-icon-button > i {
    left: 2.5rem;
  }
}

.c-icon-button > i svg[data-src*="democar.svg"] {
  width: 2em;
  height: 2em;
}

.c-icon-button > i svg[data-src*="maintenance.svg"] {
  width: 1.88889em;
  height: 1.88889em;
}

.c-icon-button > i svg[data-src*="showroom.svg"] {
  width: 2.16667em;
  height: 2em;
}

.c-icon-button > i svg[data-src*="campaign.svg"] {
  width: 2.2em;
  height: 1.7em;
}

.c-icon-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

/* tab
=========================== */
.c-tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  border-bottom: 2px solid #980808;
}

.c-tab__item {
  display: flex;
  align-items: stretch;
  width: 404px;
  max-width: 50%;
  padding: 0 6px;
}

.c-tab__item._x3 {
  width: 33.33333%;
}

.c-tab__button {
  position: relative;
  bottom: -2px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  padding: 1.25em 0;
  outline: none;
  border: 2px solid #980808;
  border-radius: 8px 8px 0 0;
  background: #980808;
  color: #fff;
  text-align: left;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  cursor: pointer;
}

.c-tab__button > i {
  display: block;
  margin-right: .75em;
}

.c-tab__button > i svg {
  display: block;
}

.c-tab__button > i svg path {
  fill: #fff;
}

.c-tab__button > i._list {
  width: .83333em;
  height: .83333em;
}

.c-tab__button > i._car {
  width: 1.25em;
  height: .95833em;
}

.c-tab__button.is-current {
  bottom: -3px;
  border: 0;
  background: #fff;
  color: #202020;
}

.c-tab__button.is-current:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

.c-tab__button.is-current > i svg path {
  fill: #fff;
}

.c-tab__button > * > span {
  display: inline-block;
}

.js-tab-channel {
  display: none;
}

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

/* banner
=========================== */
.c-banner {
  display: inline-block;
  transition: all .25s;
}

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

.c-banner img {
  display: block;
}

/* card
=========================== */
.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3.2em 0 4.66667em;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .05);
  text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .c-card {
    /* 1120px - 960px の間の幅を 16px - 14px の範囲で変化 */
    font-size: calc(2px + 1.25vw);
  }
}

@media screen and (max-width: 768px) {
  .c-card {
    flex-direction: row;
    padding: 5.7971%;
  }
}

@media screen and (max-width: 560px) {
  .c-card {
    padding: 5.7971% 4.34783%;
  }
}

@media screen and (max-width: 560px) {
  .c-card {
    /* 560px - 320px の間の幅を 16px - 12px の範囲で変化 */
    font-size: calc(6.66667px + 1.66667vw);
  }
}

@media screen and (max-width: 320px) {
  .c-card {
    font-size: 12px;
  }
}

.c-card:after {
  content: "";
  position: absolute;
  right: 1.06667em;
  bottom: 1.06667em;
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/arrow_green.png) center center no-repeat;
  background-size: contain;
}

.c-card__image {
  overflow: hidden;
  max-width: 144px;
  border-radius: 50%;
  transition: all .3s ease-out;
}

.c-card:hover .c-card__image {
  opacity: .8;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .c-card__image {
    flex-shrink: 0;
    width: 25%;
    min-width: 65px;
  }
}

.c-card__block {
  max-width: 100%;
  padding-top: 1.46667em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-card__block {
    padding-top: 0;
    padding-left: 5.07246%;
    text-align: left;
  }
}

@media screen and (max-width: 560px) {
  .c-card__block {
    padding-left: 2.89855%;
  }
}

.c-card__head {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
  color: #980808;
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.46667em;
}

.c-card__body {
  /* -0.5em for line-height offset */
  margin-top: .96667em;
  margin-bottom: -.5em;
  color: #826d4d;
}

.c-card__body span {
  display: inline-block;
}

/* image card
=========================== */
.c-icon-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  border-radius: 3px;
  background: #980808;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 2.1rem;
  transition: opacity .3s ease-out;
}

@media screen and (max-width: 768px) {
  .c-icon-card {
    height: 8rem;
    padding-top: 0;
  }
}

.c-icon-card:hover {
  opacity: .7;
}

.c-icon-card__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16% 0 29%;
}

@media screen and (max-width: 768px) {
  .c-icon-card__inner {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1em;
  }
}

.c-icon-card__inner:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .71429em;
  left: 0;
  z-index: 1;
  display: block;
  width: 7px;
  height: 12px;
  margin: 0 auto;
  background: url(../img/arrow.png) center center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .c-icon-card__inner:after {
    top: 0;
    right: 1em;
    bottom: 0;
    left: auto;
    margin: auto 0;
    transform: rotate(0);
  }
}

.c-icon-card__text {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
}

.c-icon-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 54.54545%;
  margin-top: 1.52381em;
}

@media screen and (max-width: 768px) {
  .c-icon-card__icon {
    width: 11.11111%;
    max-width: 4.5rem;
    margin-top: 0;
    margin-right: 2.14286em;
  }
}

.c-icon-card__icon img {
  min-width: 0%;
  min-height: 0%;
}

@media screen and (max-width: 768px) {
  .c-icon-card__icon img[src*="welcome.svg"] {
    max-width: 70%;
  }
}

/* blog card
=========================== */
.c-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  text-decoration: none;
}

@media screen and (min-width: 560px) and (max-width: 768px) {
  .c-blog-card {
    /* 1120px - 960px の間の幅を 18px - 14px の範囲で変化 */
    font-size: calc(8.4px + 1vw);
  }
}

@media screen and (max-width: 768px) {
  .c-blog-card {
    /* 768px - 320px の間の幅を 16px - 12px の範囲で変化 */
    font-size: calc(9.14286px + .89286vw);
  }
}

@media screen and (max-width: 320px) {
  .c-blog-card {
    font-size: 12px;
  }
}

.c-blog-card__image {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 50%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .4s ease-out;
}

@media screen and (max-width: 768px) {
  .c-blog-card__image {
    padding-top: 66.66667%;
  }
}

.c-blog-card:hover .c-blog-card__image {
  transform: scale(1.05);
}

.c-blog-card__block {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2.66667em 2.13333em 2.13333em;
  background: #fff;
}

.c-blog-card._bg .c-blog-card__block {
  background: #f7f3ed;
}

.c-blog-card__shop {
  position: absolute;
  top: 0;
  left: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.66667em;
  padding: 0 .5em;
  border-radius: 5px;
  background: #fab565;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  transform: translateY(-50%);
}

.c-blog-card__shop:before {
  content: "";
  display: block;
  width: .93333em;
  height: 1.33333em;
  margin-right: .5em;
  background: url(../img/icon/location.png) 50% 50% no-repeat;
  background-size: contain;
}

.c-blog-card__title {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
  color: #980808;
  font-weight: bold;
  font-size: 1.6em;
}

.c-blog-card__text {
  /* -0.5em for line-height offset */
  margin-top: 1.25em;
  margin-bottom: 1.875em;
}

.c-blog-card__date {
  margin-top: auto;
  font-size: .93333em;
}

/* description card
=============================== */
.c-description-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  text-decoration: none;
}

.c-description-card__head {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.c-description-card__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 2118.51852px) {
  .c-description-card__inner {
    /* 2118.51852px - 768px の間の幅を 16px - 14px の範囲で変化 */
    font-size: calc(12.86266px + .14809vw);
  }
}

@media screen and (max-width: 768px) {
  .c-description-card__inner {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .c-grid__item._mobile-x1 .c-description-card__inner {
    /* 768px - 560px の間の幅を 16px - 11px の範囲で変化 */
    font-size: calc(-2.46154px + 2.40385vw);
  }
}

@media screen and (max-width: 560px) {
  .c-grid__item._mobile-x1 .c-description-card__inner {
    font-size: 11px;
  }
}

@media screen and (max-width: 560px) {
  .c-grid__item._mobile-x1 .c-description-card__inner {
    /* 560px - 320px の間の幅を 15px - 12px の範囲で変化 */
    font-size: calc(8px + 1.25vw);
  }
}

@media screen and (max-width: 320px) {
  .c-grid__item._mobile-x1 .c-description-card__inner {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .c-grid__item._mobile-s-x1 .c-description-card__inner {
    /* 768px - 415px の間の幅を 16px - 10px の範囲で変化 */
    font-size: calc(2.94618px + 1.69972vw);
  }
}

@media screen and (max-width: 415px) {
  .c-grid__item._mobile-s-x1 .c-description-card__inner {
    font-size: 10px;
  }
}

@media screen and (max-width: 414px) {
  .c-grid__item._mobile-s-x1 .c-description-card__inner {
    font-size: 1.3rem;
  }
}

.c-description-card__logo {
  position: absolute;
  top: 2.2409%;
  right: 2.2409%;
  z-index: 1;
  width: 27.45098%;
}

.c-description-card__image {
  width: 100%;
  transition: transform .4s ease-out;
}

.c-description-card__image img {
  width: 100%;
}

.c-description-card:hover .c-description-card__image {
  transform: scale(1.05);
}

.c-description-card__icon {
  max-width: 4.4em;
  margin-bottom: 1.2em;
}

.c-description-card__title {
  text-align: center;
}

.c-description-card__title:not(:last-child) {
  margin-bottom: .5em;
}

.c-description-card__title > *._en {
  font-size: 1em;
  font-family: Roboto, sans-serif;
}

.c-description-card__title > *._ja {
  font-size: 2em;
  line-height: 1.4;
}

.c-description-card__title > *._ja i {
  display: block;
  font-style: normal;
  font-size: .66667em;
}

.c-description-card__title > *._ja span {
  display: inline-block;
}

.c-description-card__body {
  position: relative;
  flex-grow: 1;
  padding: 1.06667em 1.46667em 3.2em;
  background: #f7f3ed;
}

.c-section._bg .c-description-card__body {
  background: #fff;
}

.c-description-card__body:after {
  content: "";
  position: absolute;
  right: 1.06667em;
  bottom: 1.06667em;
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/arrow_green.png) center center no-repeat;
  background-size: contain;
}

/* line nav
=========================== */
.c-line-nav-list__item + .c-line-nav-list__item {
  margin-top: 1.5em;
}

.c-line-nav {
  display: inline-block;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid;
  color: #980808;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 2;
}

@media screen and (max-width: 560px) {
  .c-line-nav {
    /* 560px - 320px の間の幅を 20px - 14px の範囲で変化 */
    font-size: calc(6px + 2.5vw);
  }
}

@media screen and (max-width: 320px) {
  .c-line-nav {
    font-size: 14px;
  }
}

.c-line-nav > i {
  margin-right: .75em;
}

.c-line-nav:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background: url(../img/arrow_green.png) center center no-repeat;
  background-size: contain;
}

/* testdrive banner
=========================== */
.c-testdrive-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .c-testdrive-banner {
    /* 768px - 560px の間の幅を 16px - 10px の範囲で変化 */
    font-size: calc(-6.15385px + 2.88462vw);
  }
}

@media screen and (max-width: 560px) {
  .c-testdrive-banner {
    font-size: 10px;
  }
}

a.c-testdrive-banner {
  border: 2px solid #980808;
}

@media screen and (max-width: 560px) {
  .c-testdrive-banner img._desktop {
    display: none;
  }
}

.c-testdrive-banner img._mobile {
  display: none;
}

@media screen and (max-width: 560px) {
  .c-testdrive-banner img._mobile {
    display: block;
  }
}

.c-testdrive-banner__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.c-testdrive-banner__text {
  width: 41.09091%;
  min-height: 0%;
  margin: 0 auto;
}

@media screen and (max-width: 560px) {
  .c-testdrive-banner__text {
    width: 61.65192%;
  }
}

.c-testdrive-banner__button {
  width: 440px;
  max-width: 40%;
  margin-top: 1.6em;
}

@media screen and (max-width: 560px) {
  .c-testdrive-banner__button {
    max-width: 57.52212%;
    font-size: 2.66667vw;
  }
}

/* desc block
=========================== */
.c-desc-block:not(:first-child) {
  margin-top: 8rem;
}

.c-desc-block__head {
  margin-bottom: 2.2rem;
  padding: 1em;
  background: #494949;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

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

notes

* ============================================================= */
.c-notes {
  font-size: 1em;
}

.c-notes:not(:first-child) {
  margin-top: 1.4em;
}

.c-notes:not(:last-child) {
  margin-bottom: 3em;
}

.c-notes + .c-notes {
  margin-top: -2.19231em;
}

.c-notes__item {
  padding-left: 1em;
  text-indent: -1em;
}

.c-notes__item:not(:last-child) {
  margin-bottom: .25em;
}

.c-notes__item:before {
  content: "\203b";
}

.c-notes__item._circle:before {
  content: "\25cf";
}

.c-notes__item._none {
  padding-left: 0;
  text-indent: 0;
}

.c-notes__item._none:before {
  content: none;
}

.c-notes__item._em {
  color: #980808;
}

.c-notes__item._lg {
  font-size: 1.33333em;
}

.c-notes__item._num {
  padding-left: 2em;
  text-indent: -2em;
}

/* course notes
=========================== */
.c-course-notes {
  font-weight: bold;
}

.c-course-notes:not(:first-child) {
  margin-top: 1.4em;
}

.c-course-notes__item {
  display: flex;
}

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

.c-course-notes__item + .c-course-notes__item {
  margin-top: 5px;
}

.c-course-notes__item > i {
  flex-shrink: 0;
  font-style: normal;
}

.c-course-notes__item > i:after {
  content: "\FF1A";
  padding: 0 .25em;
}

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

table

* ============================================================= */
/* table wrapper
=========================== */
.c-table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.c-table-wrapper > * {
  min-width: 40em;
}

/* profile table
=========================== */
.c-profile-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #535353;
  line-height: 1.8;
}

.c-profile-table th,
.c-profile-table td {
  padding: 2em 0;
  border-bottom: 1px solid #535353;
  vertical-align: top;
}

.c-profile-table th {
  width: 16em;
  padding-right: 3.33333em;
  padding-left: 3.33333em;
  font-weight: bold;
}

.c-profile-table._ownership th {
  width: 18.66667em;
}

@media screen and (max-width: 560px) {
  .c-profile-table._ownership th {
    width: auto;
  }
}

@media screen and (max-width: 560px) {
  .c-profile-table {
    display: block;
  }
  .c-profile-table tbody,
  .c-profile-table tr,
  .c-profile-table td {
    display: block;
  }
  .c-profile-table tr {
    border-bottom: 1px solid #535353;
  }
  .c-profile-table th {
    display: inline-block;
    width: auto;
    margin-top: 2em;
    margin-bottom: -.5em;
    padding: .25em 1em;
    border-bottom: 0;
    background: #980808;
    color: #fff;
  }
  .c-profile-table td {
    width: 100%;
    border-bottom: 0;
  }
}

/* price table
=========================== */
.c-price-table {
  width: 100%;
  border: 1px solid #fff;
  border-spacing: 1px;
  border-collapse: separate;
  background: #fff;
}

.c-price-table + .c-price-table {
  margin-top: 24px;
}

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

.c-price-table._fixed {
  table-layout: fixed;
}

.c-price-table th,
.c-price-table td {
  padding: .75em;
  background: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 1.75;
}

.c-price-table th small,
.c-price-table td small {
  display: block;
  font-size: .875em;
}

.c-price-table th .tax-in,
.c-price-table td .tax-in {
  display: block;
  font-size: .75em;
}

.c-price-table._checklist th,
.c-price-table._checklist td {
  padding: .5em;
}

.c-price-table th {
  background: #f7f3ed;
  font-weight: bold;
}

.c-price-table thead tr:first-child th {
  border-top: 0;
  background: #980808;
  color: #fff;
}

.c-price-table thead tr:not(:first-child) td {
  background: #f7f3ed;
  font-weight: normal;
}

.c-price-table thead th,
.c-price-table thead td {
  font-weight: bold;
}

.c-price-table tbody tr:first-child th,
.c-price-table tbody tr:first-child td {
  border-top: 1px solid #fff;
}

.c-price-table tbody tr._total th,
.c-price-table tbody tr._total td {
  border-top: 1px solid #fff;
}

.c-price-table tbody tr._total:not(:last-child) th,
.c-price-table tbody tr._total:not(:last-child) td {
  border-bottom: 1px solid #fff;
}

.c-price-table tbody tr._total td {
  color: #980808;
  font-weight: bold;
}

.c-price-table tbody th,
.c-price-table tbody td {
  height: 4.8em;
}

.c-price-table tbody th small,
.c-price-table tbody td small {
  display: block;
  font-size: .88889em;
}

.c-price-table tbody th sup,
.c-price-table tbody td sup {
  vertical-align: super;
  font-size: 88%;
}

.c-price-table tbody th[rowspan] {
  border-top: 1px solid #fff;
}

.c-price-table tbody th[rowspan] ~ td {
  border-top: 1px solid #fff;
}

/* course table
=========================== */
.c-course-table {
  width: 100%;
  border: 2px solid #fff;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.c-course-table th,
.c-course-table td {
  height: 6.53333em;
  padding: .75em .5em;
  border-top: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
}

.c-course-table th:not(:last-child),
.c-course-table td:not(:last-child) {
  border-right: 1px solid #fff;
}

.c-course-table th small,
.c-course-table td small {
  display: block;
  font-size: .875em;
}

.c-course-table th {
  border-top: 2px solid #fff;
  background: #980808;
  color: #fff;
}

.c-course-table sup {
  font-size: .93333em;
}

.c-course-table tbody th small,
.c-course-table tbody td small {
  display: block;
}

.c-course-table tbody th sup,
.c-course-table tbody td sup {
  vertical-align: super;
  font-size: 88%;
}

.c-course-table tbody th {
  font-weight: bold;
}

.c-course-table tbody th span {
  display: block;
  font-weight: normal;
}

.c-course-table tbody td span {
  display: inline-block;
}

.c-course-table tbody td ul > li {
  display: inline-block;
}

.c-course-table tbody td ul > li:not(:last-child):after {
  content: "/";
}

/* desc table
=========================== */
.c-desc-table {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background: #707070;
}

.c-desc-table._fixed {
  table-layout: fixed;
}

.c-desc-table + .c-desc-table {
  margin-top: 2.2rem;
}

.c-desc-table th {
  min-width: 25rem;
  padding: 2.13333em 1em;
  background: #980808;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.c-desc-table td {
  padding: 2.13333em 3.6em;
  background: #fff;
  color: #202020;
}

@media screen and (max-width: 560px) {
  .c-desc-table td {
    padding: 2.13333em 1em;
  }
}

.c-desc-table._mobile-block {
  display: block;
  background: transparent;
}

.c-desc-table._mobile-block thead,
.c-desc-table._mobile-block tbody,
.c-desc-table._mobile-block tr {
  display: block;
}

.c-desc-table._mobile-block tr + tr {
  margin-top: .5em;
}

.c-desc-table._mobile-block th {
  display: block;
  padding: 1em 1.5em;
}

.c-desc-table._mobile-block td {
  display: block;
  padding: 2.13333em 1.5em;
}

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

blog components

* ============================================================= */
.c-blog {
  word-break: break-all;
  line-height: 1.8;
}

.c-blog__inner {
  width: 980px;
}

@media screen and (max-width: 768px) {
  .c-blog__inner {
    width: 90vw;
  }
}

.c-blog article {
  width: 100%;
  max-width: 980px !important;
  padding: 1.33333em 1.26667em 4em;
  background: #fff;
  color: #202020;
}

.c-blog article + article {
  margin-top: 4em;
}

@media screen and (max-width: 768px) {
  .c-blog article {
    width: 90vw;
  }
}

.c-blog table {
  width: 100%;
}

.c-blog img {
  max-width: 942px !important;
}

@media screen and (max-width: 768px) {
  .c-blog img {
    max-width: 100% !important;
  }
}

.c-blog__control {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  margin-bottom: calc(30px + 2.30769%);
  text-align: center;
}

.c-blog__control br {
  display: none;
}

.c-blog__control form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.c-blog__control form > span {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  font-size: 1em !important;
}

.c-blog__control form select {
  position: relative;
  display: block;
  flex-grow: 1;
  height: 6rem;
  padding: .5em 1em;
  border: 1px solid #980808;
  border: 1px solid #e0dad1;
  border-radius: 5px;
  background: #fff;
  vertical-align: middle;
}

.c-blog__control form select option:first-child {
  color: #e0dad1;
}

.c-blog__control form input {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 6rem;
  max-width: 120px;
  margin-left: .5em;
  padding: .5em 2em;
  outline: none;
  border: 0;
  border-radius: 5px;
  background: #980808;
  color: #fff;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-blog__control form input[type="submit"] {
  cursor: pointer;
}

.c-blog__control form input[type="submit"]:hover {
  opacity: .8;
}

.c-blog .hakusyu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: .5em;
  text-align: right;
  font-size: 1.3rem;
}

.c-blog .hakusyu.font10 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.c-blog .hakusyu > p {
  display: block;
  margin-bottom: 1.5em;
  font-size: 16px;
}

.c-blog .hakusyu > button {
  display: block;
  padding: .5em 2em;
  border: 1px solid #202020;
  background: transparent;
  color: #202020;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all .3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-blog .hakusyu > button:hover {
  background: #202020;
  color: #fff;
}

.c-blog > table > tbody > tr > td > div[align="left"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(20px + 2.04082%);
}

.c-section._bg .c-blog > table > tbody > tr > td > div[align="left"] {
  background: #ebe1d3;
}

@media screen and (max-width: 768px) {
  .c-blog > table > tbody > tr > td > div[align="left"] {
    flex-wrap: wrap;
  }
}

.c-blog > table > tbody > tr > td > div[align="left"] a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin: 3px;
  padding: 1em .8em;
  border: 2px solid #fff;
  text-align: center;
  text-decoration: none !important;
  font-size: 1em;
  transition: all .3s;

  align-self: stretch;
}

@media screen and (max-width: 768px) {
  .c-blog > table > tbody > tr > td > div[align="left"] a {
    width: 30%;
  }
}

@media screen and (max-width: 560px) {
  .c-blog > table > tbody > tr > td > div[align="left"] a {
    width: 46%;
  }
}

.c-blog > table > tbody > tr > td > div[align="left"] a:hover {
  background: #fff;
  color: #202020;
}

.c-blog .infobbs_page {
  margin: 1.5em 0;
  font-size: 1em;
}

.c-blog .infobbs_page font {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.c-blog .infobbs_page a {
  font-size: inherit !important;
}

.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
  padding: 1em 1.5em;
  background: #1c1c1c;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.blog__date {
  margin-left: auto;
  padding-left: 1em;
  white-space: nowrap;
}

.blog__body {
  padding: 1rem;
  word-break: break-all;
}

.blog__body table {
  width: 100%;
}

.blog__body img {
  display: inline;
}

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

Calendar

* ============================================================= */
/* calendar
=========================== */
.c-calendar {
  position: relative;
  width: 100%;
  padding-top: 1em;
  font-family: "Josefin Sans", sans-serif;
}

.c-calendar__head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2.66667em;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: .6;
}

.c-calendar__head .cal_month {
  font-size: 2em;
}

.c-calendar__head .cal_year:before {
  content: "/";
  margin: 0 .25em;
}

.c-calendar__body {
  font-size: 2.1rem;
}

.c-calendar table {
  width: 100%;
  table-layout: fixed;
}

.c-calendar table .cal_sat {
  color: #2aacd1;
}

.c-calendar table .cal_holiday,
.c-calendar table .cal_sun {
  color: #ff1e1e;
}

.c-calendar table th {
  padding-bottom: 1.25em;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  line-height: .6;
}

.c-calendar table td {
  position: relative;
  padding: 7px;
  vertical-align: middle;
  text-align: center;
}

.c-calendar table td:before {
  content: "";
  position: static;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.c-calendar table td > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  max-width: 60px;
  max-height: 60px;
  margin: auto;
}

.c-calendar table td .cal_close01 {
  color: #202020;
}

.c-calendar table td .cal_close01:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 0;
  margin: auto;
  padding-top: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.c-calendar__foot {
  margin-top: 1.5em;
}

.c-calendar__prev {
  position: absolute;
  top: 0;
  left: 0;
}

.c-calendar__next {
  position: absolute;
  top: 0;
  right: 0;
}

.c-calendar-arrow {
  position: relative;
  display: block;
  width: 5rem;
  height: 5rem;
  outline: none;
  border: 0;
  border-radius: 50%;
  background: #494949;
  font-size: 0;
  cursor: pointer;
  transition: opacity .2s ease-out;
}

.c-calendar-arrow.is-hide {
  display: none;
}

.c-calendar-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  right: .4rem;
  bottom: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.c-calendar__prev .c-calendar-arrow:after {
  right: 0;
  left: .4rem;
  transform: rotate(-135deg);
}

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

.c-calendar-notes {
  font-size: 1.8rem;
}

.c-calendar-notes .cal_close01 {
  color: rgba(255, 255, 255, .5);
}

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

inspection components

* ============================================================= */
/* lead
=============================== */
.c-inspection-lead {
  margin-top: -1em;
  margin-bottom: -.375em;
  color: #980808;
  font-size: 1.6em;
}

@media screen and (max-width: 768px) {
  .c-inspection-lead {
    font-size: 1.33333em;
  }
}

@media screen and (max-width: 560px) {
  .c-inspection-lead {
    font-size: 1.2em;
  }
}

/* needs
=============================== */
.c-inspection-needs {
  margin-bottom: 2.66667em;
  padding: 2.66667em calc(20px + 1.53846%);
  border-radius: .5em;
  background: #f7f3ed;
}

.c-inspection-needs:not(:first-child) {
  margin-top: 2.66667em;
}

.c-inspection-needs__head {
  margin-top: -.375em;
  margin-bottom: 1.4rem;
  font-size: 2em;
}

@media screen and (max-width: 768px) {
  .c-inspection-needs__head {
    font-size: 1.6em;
  }
}

.c-inspection-needs__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2em);
  margin: -.5em -1em;
  font-weight: medium;
}

.c-inspection-needs__list > li {
  display: flex;
  align-items: flex-start;
  padding: .5em 1em;
}

.c-inspection-needs__list > li:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  margin-top: .3125em;
  margin-right: .5em;
  background: url(../img/icon/g_checkbox.png) 50% 50% no-repeat;
  background-size: contain;
}

/* outline
=============================== */
.c-inspection-outline:not(:first-child) {
  margin-top: 2em;
}

.c-inspection-outline__head {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: .27778em;
  font-weight: bold;
  font-size: 1.2em;
}

.c-inspection-outline__head:before {
  content: "\25cf";
}

.c-inspection-outline__body {
  /* -0.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: -.5em;
}

.c-inspection-outline__body ul li:before {
  content: "\30fb";
}

/* fig
=============================== */
.c-inspection-fig {
  position: relative;
}

.c-inspection-fig__foot {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .c-inspection-fig__foot {
    justify-content: flex-start;
  }
}

.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: "\FF1A";
  padding: 0 .25em;
}

.c-inspection-fig-image {
  position: relative;
  display: flex;
  align-items: center;

  align-self: stretch;
}

.c-inspection-fig-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

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

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

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

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

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

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

@media screen and (max-width: 768px) {
  .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: 30px;
}

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

/* check
=============================== */
.c-inspection-check {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 1.66667em;
  padding: 1.2em;
  border: 2px solid #980808;
  border-radius: 5px;
  background: #fff;
}

.c-inspection-check::after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0;
}

.c-inspection-check__head {
  margin-bottom: .75em;
  padding-bottom: .75em;
  border-bottom: 1px solid;
  color: #980808;
  text-align: center;
  font-weight: 500;
  font-size: 1.33333em;
  line-height: 1;
}

.c-inspection-check__list {
  text-align: left;
}

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

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

.c-inspection-check__list li:before {
  content: "";
  position: absolute;
  top: calc(.8em - 2px);
  left: calc(.5em - 2px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.c-inspection-check__list li._option:before {
  top: .45em;
  left: .15em;
  width: .7em;
  height: .7em;
  border-radius: 0;
}

.c-inspection-check__list._x2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.c-inspection-check__list._x2 li {
  width: 48%;
}

.c-inspection-check__list._x2 li._x1 {
  width: 100%;
}

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

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

Maintenance

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

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

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

.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.5em for line-height offset */
  margin-top: -.5em;
  margin-bottom: .7em;
  font-weight: bold;
  font-size: 1em;
}

.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: 1.125em;
  margin-bottom: -.375em;
  letter-spacing: .03em;
  font-size: .93333em;
  line-height: 1.75;
}

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

Inspection

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

@media screen and (max-width: 768px) {
  .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: #fff;
}

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

.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: 768px) {
  .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: 768px) {
  .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: 2em;
}

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

@media screen and (min-width: 769px) {
  .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: 768px) {
  .c-inspection-check__list._2col li {
    width: 100%;
  }
}

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

showroom components

* ============================================================= */
.gmapOpen {
  color: #202020;
}

.gmapOpen__inner {
  padding: .75em;
}

.gmapOpen__name {
  margin-bottom: 8px;
  color: #980808;
  font-weight: bold;
  font-size: 1.2em;
}

.gmapOpen__name span {
  display: inline-block;
}

.gmapOpen__name span:not(:last-child) {
  margin-right: .5em;
}

.gmapOpen__address span {
  display: inline-block;
}

.gmapOpen__address span:not(:last-child) {
  margin-right: .5em;
}

.gmapOpen__address span:first-child {
  display: none;
}

.gmapOpen__link {
  margin-top: 8px;
}

.gmapOpen__link a {
  display: inline-block;
  color: #980808;
}

/* map
=============================== */
.c-showroom-map {
  position: relative;
  left: 50%;
  width: 84.61538vw;
  height: 630px;
  min-width: 947.69231px;
  max-width: 1100px;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .c-showroom-map {
    width: 100%;
    height: 500px;
    min-width: 0;
  }
}

/* showroom list
=============================== */
.c-showroom-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 15px);
  margin: -15px -7.5px;
}

.c-showroom-list__item {
  width: 33.33333%;
  padding: 15px 7.5px;
}

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

/* showroom card
=============================== */
.c-showroom-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #202020;
  text-decoration: none;
  transition: all .4s ease-out;
}

.c-showroom-card__image {
  overflow: hidden;
  background: #1c1c1c;
}

.c-showroom-card__image img {
  transition: all .4s ease-out;
}

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

.c-showroom-card__main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 0%;
  padding: 2.53333em 8.5%;
  font-size: 1.5rem;
}

.c-showroom-card__head {
  display: flex;
  width: 100%;
  min-height: 0%;
  /* -0.2em for line-height offset */
  margin-top: -.2em;
  margin-bottom: 1.05em;
  color: #980808;
  font-weight: bold;
  font-size: 1.33333em;
  line-height: 1.4;
}

.c-showroom-card__body > p {
  /* -0.16667em for line-height offset */
  margin-top: -.16667em;
  margin-bottom: -.16667em;
  line-height: 1.33333;
}

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

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

slider

* ============================================================= */
.c-slider {
  width: 100%;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .c-slider {
    padding: 0 10px;
  }
}

.c-slider__inner {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: all .4s ease-out 2s;
}

body.is-loaded .c-slider__inner {
  opacity: 1;
}

.c-slider-list a {
  display: block;
  transition: opacity .2s ease-out;
}

.c-slider-list a:hover {
  opacity: .8;
}

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

Utility

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

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

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

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

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

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

@media screen and (max-width: 768px) {
  .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);
}
