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

  CSS Reset

-------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Anton&display=swap");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

a {
  color: #0d91d1;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #006dd9;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  padding: 0;
  vertical-align: middle;
  text-align: left;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  border: 0;
  box-sizing: content-box;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  touch-action: manipulation;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading,
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 0.5em;
  padding: 1em 0;
  line-height: 1.3;
  font-size: 1.5em;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 1100px), print {
  .main-heading,
.news-heading {
    margin-bottom: 1.5em;
    font-size: 1.8em;
  }
}
.main-heading:before, .main-heading:after,
.news-heading:before,
.news-heading:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: 70%;
  height: 1px;
  margin: auto;
  background-color: #d90000;
}
.main-heading:before,
.news-heading:before {
  top: -1px;
}
.main-heading:after,
.news-heading:after {
  bottom: -1px;
}

/* 共通見出し（h3相当）*/
.main-subheading {
  margin-bottom: 1rem;
  font-size: 1.3em;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.5em;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}
.main ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0.6em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 100%;
  background: #252525;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

/* 共通リスト（リストマーカー非表示用）*/
ul.list-style-none > li {
  padding-left: 0;
  list-style-type: none;
}
ul.list-style-none > li:before {
  display: none;
}

ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  padding-left: 1em;
}
ul.list-style-note > li:before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.8em 1.4em;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  border-right: 40px solid #006dd9;
  background-color: #000;
}
.link-button span {
  font-weight: 700;
}
.link-button:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e904";
  display: block;
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}
.link-button.secondary {
  padding: 0.6em 2.4em 0.6em 1.2em;
  color: #0d91d1;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.1;
  border-right: none;
  border: 1px solid #0d91d1;
  border-radius: 10em;
  background: none;
}
.link-button.secondary:before {
  right: 1.2em;
  width: auto;
}
/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0d91d1;
}
a.link-button.secondary:hover {
  border-color: #006dd9;
  background-color: #006dd9;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner:after {
  content: "";
  display: table;
  clear: both;
}

/* コンテンツ隙間・間隔用 */
.gutter:not(:last-child) {
  margin-bottom: 5em;
}
.gutter > .inner {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .gutter > .inner {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}
.gutter > .inner .inner {
  overflow: hidden;
}
.gutter .inner:not(:last-child) {
  margin-bottom: 42px;
  margin-bottom: 3rem;
}
.gutter.dmy {
  max-width: none;
}
.gutter.dmy > .inner {
  max-width: none;
  padding: 0;
  line-height: 1;
  text-align: center;
}
.gutter.dmy.wide {
  margin-right: -22%;
  margin-left: -22%;
}
@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -230px;
    margin-left: -230px;
  }
}
.gutter.dmy.wide > .inner {
  max-width: none;
  padding: 0;
  text-align: center;
}
.gutter.dmy.wide > .inner:not(:last-child) {
  margin-bottom: 5em;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -100px;
  margin-bottom: 100px;
  background: rgba(255, 255, 255, 0) url(../img/base/blank.gif);
  z-index: -100;
}
/* サブセクション */
.subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #eee;
}

/* CSS カウンターの利用 | https://developer.mozilla.org/ja/docs/Web/Guide/CSS/Counters */
.css-counter {
  counter-reset: section;
}
.css-counter .counter:before {
  counter-increment: section;
  content: counter(section) ". ";
}

/* 下線マーカー */
.marker {
  background: linear-gradient(rgba(255, 191, 0, 0) 85%, rgb(255, 191, 0) 0%);
}

/* クリック範囲を拡大（テキスト）*/
.widelink {
  display: inline-block;
  position: relative;
  margin: -10px;
  padding: 10px;
}
/* クリック範囲を拡大（カード）*/
.card {
  position: relative;
}
.card a:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

/* 共通お問い合わせ */
.global-contact-item.tel .link-button:before {
  content: "\e901";
}
.global-contact-item.mail .link-button:before {
  content: "\e903";
}
.global-contact .link-button {
  padding: 0 0.7em;
  line-height: 50px;
}
@media screen and (min-width: 1100px), print {
  .global-contact .link-button {
    font-size: 1.4em;
    border-right-width: 50px;
  }
}
.global-contact .link-button:before {
  font-size: 30.8px;
  font-size: 2.2rem;
}
@media screen and (min-width: 1100px), print {
  .global-contact .link-button:before {
    right: -50px;
    width: 50px;
  }
}
.global-contact .tel-link {
  display: block;
}
.global-contact a.tel-link:hover {
  text-decoration: none;
}
.global-contact a.tel-link:hover .link-button {
  color: #fff;
  background-color: #0d91d1;
}
.global-contact .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  position: relative;
  height: 60px;
  padding: 0.7em 1em 0.7em 1em;
  color: #fff;
  font-size: 1.4rem;
  background-color: #d90000;
}
@media screen and (max-width: 1279.98px) {
  .global-contact .contact-link {
    font-size: 1.2rem;
    padding: 0.7em 0.8em 0.7em 0.8em;
  }
}
@media screen and (max-width: 479.98px) {
  .global-contact .contact-link {
    height: 55px;
  }
}
.global-contact .contact-link:hover {
  text-decoration: none;
  border-left-color: #ff8000;
  background-color: #ff5c26;
}
.global-contact .contact-link .br {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .global-contact .contact-link .br {
    display: none;
  }
}
.global-contact .contact-link span {
  font-weight: 700;
  line-height: 1.2;
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * https://icomoon.io/
 */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?4jjems");
  src: url("../fonts/icomoon.eot?4jjems#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?4jjems") format("truetype"), url("../fonts/icomoon.woff?4jjems") format("woff"), url("../fonts/icomoon.svg?4jjems#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-car:before {
  content: "\e900";
}

.icon-tel:before {
  content: "\e901";
}

.icon-home:before {
  content: "\e902";
}

.icon-mail:before {
  content: "\e903";
}

.icon-right:before {
  content: "\e904";
}

.icon-coupon:before {
  content: "\e905";
}

/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Anton" is licensed under the SIL Open Font License 1.1
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * http://mplus-fonts.osdn.jp
 * Copyright (C) 2002-2019 M+ FONTS PROJECT
 */
@font-face {
  font-family: "mplus-fonts";
  src: url("../fonts/mplus-2p-heavy.woff2") format("woff2"), url("../fonts/mplus-2p-heavy.woff") format("woff"), url("../fonts/mplus-2p-heavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.slideout-open {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  padding-bottom: 4em;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    padding-bottom: 0;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header .inner {
  position: static;
  z-index: auto;
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 2em 2em 0;
    background: none;
    z-index: 1001;
  }
  #top .header .inner {
    max-width: 1600px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px), print {
  #top .header .inner {
    padding: 0 2em;
  }
}
.header-logo {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    position: relative;
    max-width: 1100px;
    height: auto;
    margin: auto;
    background: none;
  }
}
#top .header-logo {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
}
@media screen and (min-width: 1100px), print {
  #top .header-logo {
    display: none;
  }
}
.header-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 104px;
  margin: auto;
  padding: 5px 15px;
  background-color: #006dd9;
}
@media screen and (min-width: 1100px), print {
  .header-link {
    display: block;
    top: 25px;
    right: auto;
    left: 25px;
    width: 114.2857142857px;
    margin: 0;
    padding: 0;
    background: none;
  }
}
@media screen and (max-width: 1099.98px) {
  #top .header-link {
    margin-top: -60px;
    transition: margin-top 0.2s;
  }
}
.header-text {
  display: none;
}
.header-contact {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 999;
}
@media screen and (min-width: 1100px), print {
  .header-contact {
    position: absolute;
    top: 280px;
    bottom: auto;
    left: 50%;
    transform: translateX(63%);
    width: 100%;
    margin: auto;
    z-index: auto;
    max-width: 313px;
  }
}
@media screen and (min-width: 1280px), print {
  .header-contact {
    transform: translateX(85%);
    max-width: 307px;
  }
}
@media screen and (min-width: 1100px), print {
  #top .header-contact {
    top: 10px;
    left: auto;
    right: 0;
    transform: translateX(0);
    padding: 0 10px;
    max-width: 270px;
  }
}
@media screen and (min-width: 1280px), print {
  #top .header-contact {
    transform: translateX(0);
    max-width: 327px;
  }
}
.header-contact .global-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1100px), print {
  .header-contact .global-contact {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-contact .global-contact {
    justify-content: center;
  }
}
@media screen and (min-width: 1100px), print {
  #top .header-contact .global-contact {
    max-width: 307px;
  }
}
.header-contact .global-contact-item.contact {
  position: relative;
}
.header-contact .global-contact-item.contact:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 41px;
  z-index: 1;
  background-color: #fff;
}
.header-contact .global-contact-item.contact:first-child .contact-link {
  border-radius: 12px 0 0 12px;
}
@media screen and (max-width: 1099.98px) {
  .header-contact .global-contact-item.contact:first-child .contact-link {
    border-radius: 12px 0 0 0;
  }
}
.header-contact .global-contact-item.contact:last-child .contact-link {
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 1099.98px) {
  .header-contact .global-contact-item.contact:last-child .contact-link {
    border-radius: 0 12px 0 0;
  }
}
/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
  .header.fixed .header-logo {
    display: none;
  }
  .header.fixed .header-contact {
    top: 10px;
  }
}

@media screen and (max-width: 1099.98px) {
  .header.fixed-logo .header-logo, #top .header.fixed-logo .header-logo {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .header.fixed-logo .header-link, #top .header.fixed-logo .header-link {
    margin-top: 0;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    left: -240px;
    width: 250px;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    will-change: transform;
    z-index: 1001;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 270px;
    width: 100%;
    z-index: 1000;
  }
  #top .nav {
    top: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .nav:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 240px;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 1100px), print {
  #top .nav .inner {
    max-width: 1600px;
  }
}
/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 70px 10px 10px;
    opacity: 0;
  }
  .nav-open .main-nav, .slideout-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    max-width: 800px;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
  .main-nav .nav-item:first-child {
    border-top: 1px solid #eee;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    flex-grow: 1;
    position: relative;
  }
  .main-nav .nav-item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 2px;
    height: 60%;
    margin: auto;
    background-color: #eee;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
    position: relative;
    padding: 1em 0 1em 0.3em;
    color: #252525;
    border-bottom: 1px solid #eee;
  }
  .main-nav .nav-link:hover {
    color: #006dd9;
    text-decoration: none;
  }
  .main-nav .nav-link span:last-child:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: -0.2em -1em 0 1em;
    font-size: 0.6em;
    color: #ccc;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80px;
    text-align: center;
    color: #252525;
  }
  .main-nav .nav-link:hover {
    color: #0d91d1;
    text-decoration: none;
  }
  .main-nav .nav-link span {
    display: block;
  }
  .main-nav .nav-link span:after {
    content: "";
    display: block;
    font-size: 0.65em;
    letter-spacing: 0.1em;
    color: #ccc;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav .nav-link span {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav-active .nav-link {
    color: #0d91d1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav-active .nav-link {
    color: #0d91d1;
  }
  .main-nav-active .nav-link span:after {
    color: #0d91d1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home {
    width: 30px;
  }
}
.main-nav .nav-home .nav-link {
  padding-left: 45px;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link {
    padding-left: 0;
    font-size: 0.85em;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link:hover {
    color: #fff;
    background-color: #0d91d1;
  }
}
.main-nav .nav-home .nav-link span:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e902";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 35px;
  font-size: 2.5rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link span:before {
    position: static;
    font-size: 42px;
    font-size: 3rem;
    line-height: 40px;
    transform: none;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link span:after {
    display: none;
  }
}
.main-nav .nav-cars .nav-link span:after {
  content: "CARS";
}
.main-nav .nav-loan .nav-link span:after {
  content: "LOAN";
}
.main-nav .nav-lease .nav-link span:after {
  content: "LEASE";
}
.main-nav .nav-buy .nav-link span:after {
  content: "BUY";
}
.main-nav .nav-maintenance .nav-link span:after {
  content: "MAINTENANCE";
}
.main-nav .nav-access .nav-link span:after {
  content: "ACCESS";
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-contact {
    display: none;
  }
}
/* ドロップダウンナビ */
.sub-nav {
  height: 0;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1099.98px) {
  .sub-nav {
    overflow: hidden;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 50%;
    left: -35%;
    width: 170%;
    margin: 0;
    padding: 0;
    background: #fff;
    transition: 0.2s;
  }
}
.sub-nav-active .sub-nav {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav {
    height: auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
  }
}
.sub-nav ul {
  margin-top: -1px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav ul {
    margin-top: 0;
    padding: 0 10px;
    background-color: #fff;
  }
  .sub-nav ul:after {
    content: "";
    display: table;
    clear: both;
  }
}
.sub-nav li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav li:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px dotted #252525;
  }
}
.sub-nav a {
  display: block;
  position: relative;
  height: 50px;
  border: 1px solid #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 40px;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sub-nav a {
    height: 70px;
    border: none;
    background-size: auto;
  }
}
.sub-nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.sub-nav span {
  display: none;
}
.sub-nav .subnav-cars a {
  background-image: url(../img/menu/cars.png);
}
.sub-nav .subnav-carsensor a {
  background-image: url(../img/base/logo-carsensor.png);
}
.sub-nav .subnav-goonet a {
  background-image: url(../img/base/logo-goonet.png);
}
.sub-nav .subnav-carbase a {
  background-image: url(../img/base/logo-carbase.png);
}

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4em;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  cursor: pointer;
  outline: none;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    width: 100%;
    height: 100%;
    background: none;
  }
}
.sub-nav-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 1em;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:after {
    top: auto;
    right: 0;
    bottom: 8px;
    left: 0;
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover:after {
    border-color: #0d91d1;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover:after {
    border-color: #0d91d1;
  }
}
.sub-nav-active .sub-nav-button:after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav-button:after {
    bottom: -0.5em;
    border-color: #0d91d1;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button:after {
    bottom: 3px;
    border-color: #0d91d1;
  }
}

/* ドロップダウンナビ（ hover + active ）*/
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #0d91d1;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #0d91d1;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .nav-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    outline: none;
    z-index: 1002;
  }
  .nav-open .nav-button, .slideout-open .nav-button {
    background-color: #006dd9;
  }
  .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #0d91d1;
  }
  .nav-open .nav-button-icon, .slideout-open .nav-button-icon {
    background: none;
  }
  .nav-button-icon:before, .nav-button-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #0d91d1;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before, .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    margin-top: 0;
    background-color: #fff;
  }
  .nav-button-icon:before {
    margin-top: -8px;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before {
    transform: rotate(45deg);
  }
  .nav-button-icon:after {
    margin-top: 8px;
  }
  .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    transform: rotate(-45deg);
  }
  .nav-button:after {
    content: "MENU";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    color: #0d91d1;
    font-size: 0.7em;
    font-weight: 800;
    text-align: center;
  }
  .nav-open .nav-button:after, .slideout-open .nav-button:after {
    content: "CLOSE";
    color: #fff;
  }
}

/* ナビゲーション背景 */
.nav-screen {
  display: inline;
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.2s;
}
.nav-open .nav-screen-overlay, .slideout-open .nav-screen-overlay {
  opacity: 0.4;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
  .nav.fixed:before {
    border-bottom: 1px solid #0d91d1;
    background-color: rgba(255, 255, 255, 0.99);
  }
  .nav.fixed .sub-nav ul {
    margin-top: -1px;
    border: 1px solid #0d91d1;
    background-color: rgba(255, 255, 255, 0.99);
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 3em 1em;
  background: #fff;
  z-index: 100;
}
#top .main {
  padding: 0 1em 3em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 3em 2em;
    border-top: 1px solid #eee;
  }
  #top .main {
    padding: 0 2em 3em;
    border-top: none;
  }
}

.main > .inner {
  max-width: none;
}
/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 0 1em;
  background-color: #fff;
  z-index: 100;
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 2em;
  }
}
.footer .inner {
  max-width: none;
}
.footer-head {
  position: relative;
  margin: 0 -1em;
  padding: 2em 1em;
  text-align: center;
  background: url(../img/top/bg3.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .footer-head {
    margin: 0 -2em;
    padding: 1.5em 2em;
    text-align: left;
  }
}
.footer-head .footer-inner {
  color: #000;
}
@media screen and (min-width: 1100px), print {
  .footer-head .footer-inner {
    padding: 3em 0 3em 300px;
  }
}
.footer-body {
  margin: 0 -1em;
  padding: 2.5em 1em;
}
@media screen and (min-width: 768px), print {
  .footer-body {
    padding: 2.5em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-body {
    margin: 0 -2em;
    padding: 3.5em 2em;
  }
}
.footer-foot {
  margin: 0 -1em;
  padding: 2em 1em;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 1100px), print {
  .footer-foot {
    margin: 0 -2em;
    padding: 2em;
  }
}
.footer-inner {
  position: relative;
  max-width: 1100px;
  margin: auto;
}
.footer-description span {
  display: block;
  font-size: 0.8em;
}
@media screen and (min-width: 1100px), print {
  .footer-description span {
    font-size: 1em;
  }
}
.footer-logo {
  position: relative;
  padding: 1em 0;
}
@media screen and (min-width: 1100px), print {
  .footer-logo {
    position: static;
  }
}
.footer-logo:before {
  content: "";
  display: block;
  width: 180px;
  height: 140px;
  margin: 0 auto 0.5em;
  background: #006dd9 url(../img/base/logo.png) center no-repeat;
  background-size: 70%;
}
@media screen and (min-width: 1100px), print {
  .footer-logo:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    margin: auto;
  }
}
.footer-logo span {
  font-size: 1.6em;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .footer-logo span {
    font-size: 2em;
  }
}
.footer-info {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.footer-info dl:not(:last-child) {
  margin-bottom: 0.5em;
}
.footer-info dl:after {
  content: "";
  display: table;
  clear: both;
}
.footer-info dt {
  width: 5em;
  padding: 0.1em 0;
  font-size: 0.8em;
  text-align: center;
  color: #fff;
  border-radius: 10em;
  background-color: #000;
}
@media screen and (min-width: 480px), print {
  .footer-info dt {
    float: left;
    clear: left;
  }
}
.footer-info dd {
  margin-top: 0.25em;
  font-size: 0.9em;
}
@media screen and (min-width: 480px), print {
  .footer-info dd {
    margin-top: 0;
    margin-left: 5.5em;
  }
}
.footer-catch {
  margin-bottom: 1em;
}
@media screen and (min-width: 640px), print {
  .footer-catch {
    margin-bottom: 0;
  }
}
.footer-catch .catch-box {
  display: flex;
  align-items: center;
  padding: 1.2em 0;
}
@media screen and (max-width: 991.98px) {
  .footer-catch .catch-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9em 0;
  }
}
.footer-catch .catch-item {
  font-size: 0.9em;
}
@media screen and (min-width: 1100px), print {
  .footer-catch .catch-item {
    font-size: 1em;
  }
}
.footer-catch .catch1 {
  font-family: "Anton", sans-serif;
}
.footer-catch .catch1 span {
  display: block;
  font-size: 4em;
  line-height: 1;
  color: #555;
}
@media screen and (min-width: 480px), print {
  .footer-catch .catch1 span {
    display: inline;
    font-size: 3em;
  }
}
@media screen and (min-width: 768px), print {
  .footer-catch .catch1 span {
    display: inline;
    font-size: 3em;
  }
}
@media screen and (min-width: 992px), print {
  .footer-catch .catch1 span {
    font-size: 4em;
  }
}
.footer-catch .catch2 {
  font-family: "Anton", sans-serif;
  margin-right: 2em;
}
@media screen and (max-width: 991.98px) {
  .footer-catch .catch2 {
    margin-right: 0;
  }
}
.footer-catch .catch2 span {
  display: block;
  font-size: 1.3em;
  line-height: 1;
  color: #0078f0;
}
.footer-catch .catch3 {
  font-family: "mplus-fonts", sans-serif;
}
@media screen and (max-width: 639.98px) {
  .footer-catch .catch3 {
    margin-top: 0.5em;
  }
}
.footer-catch .catch3 span {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.2;
  color: #555;
}
.footer-catch .catch3 span:first-child {
  padding-right: 0.4em;
}
.footer-contact .global-contact {
  text-align: right;
  display: flex;
  margin-top: 0;
  margin-right: -0.8em;
}
@media screen and (max-width: 1279.98px) {
  .footer-contact .global-contact {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.footer-contact .global-contact .link-button {
  font-size: 1.3em;
}
@media screen and (max-width: 479.98px) {
  .footer-contact .global-contact .link-button {
    font-size: 1.15em;
  }
}
.footer-contact .global-contact-item {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.8em;
  margin-right: 0.8em;
}
@media screen and (max-width: 1279.98px) {
  .footer-contact .global-contact-item {
    width: 100%;
  }
}
@media screen and (min-width: 640px), print {
  .footer-contact .global-contact-item {
    display: block;
  }
}
@media screen and (min-width: 992px), print {
  .footer-contact .global-contact-item {
    display: inline-block;
  }
}
.footer-links {
  margin: 0 -1em;
  text-align: center;
}
.footer-links dt {
  margin-bottom: 1em;
}
@media screen and (min-width: 640px), print {
  .footer-links dt {
    font-size: 1.1em;
  }
}
.footer-links ul {
  margin-bottom: -1em;
}
@media screen and (min-width: 480px), print {
  .footer-links ul {
    display: flex;
    margin-bottom: 0;
    justify-content: center;
  }
}
.footer-links li {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .footer-links li {
    margin-bottom: 0;
  }
}
.footer-links a {
  display: inline-block;
  vertical-align: top;
}
.footer-links .banner a:hover {
  opacity: 0.7;
}
.footer-links .coupon a {
  margin: -0.3em 0 -1em;
  color: #999;
}
.footer-links .coupon a:hover {
  color: #0d91d1;
  text-decoration: none;
}
.footer-links .coupon a:hover:before {
  transform: scale(1.1);
}
.footer-links .coupon a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e905";
  display: block;
  font-size: 84px;
  font-size: 6rem;
  line-height: 1;
}
.footer-links .coupon span {
  display: none;
}
.footer .pagetop {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  overflow: hidden;
  z-index: 100;
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    position: fixed;
    right: 5px;
    bottom: 5px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
}
@media screen and (min-width: 1100px) {
  .footer .pagetop.fixed {
    opacity: 1;
    pointer-events: auto;
  }
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0d91d1;
  transition: 0.3s;
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop a {
    color: #fff;
    border-radius: 0.4em;
    background-color: #0d91d1;
  }
}
.footer .pagetop a:hover {
  color: #006dd9;
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop a:hover {
    color: #fff;
    background-color: #006dd9;
  }
}
.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #0d91d1;
  border-right: 2px solid #0d91d1;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop a:before {
    border-color: #fff;
  }
}
.footer .copy {
  display: block;
  margin: 0 -1em;
  padding: 1.5em 1em;
  color: #999;
  text-align: left;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 480px), print {
  .footer .copy {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .footer .copy {
    height: 60px;
    margin: 0 -2em;
    padding: 0 2em;
  }
}
.footer .copy small {
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1100px), print {
  .footer .copy small {
    font-size: 0.8em;
    line-height: 60px;
  }
}
.footer .copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .footer .copy span {
    display: inline;
  }
}

/* --------------------------------

  スライダー

-------------------------------- */
.mainvisual {
  margin-top: 60px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .mainvisual {
    margin-top: 80px;
  }
}
.mainvisual .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}
@media screen and (min-width: 1100px), print {
  .mainvisual .inner {
    padding-bottom: 0;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}
.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
  padding-bottom: 10em;
}
@media screen and (min-width: 640px), print {
  .slider .inner {
    padding-bottom: 0;
  }
}
.slider-pickup {
  width: 100%;
  padding: 2em;
  background: #00468C;
  z-index: 1100;
}
@media screen and (min-width: 1100px), print {
  .slider-pickup {
    position: absolute;
    top: 2em;
    bottom: 2em;
    max-width: 600px;
    border-radius: 30px 0 0 30px;
    right: 0;
    border: 5px solid #fff;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-pickup {
    padding: 1.3em 1em 1.5em 1em;
  }
}
.slider-pickup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 575.98px) {
  .slider-pickup-header {
    flex-direction: column;
  }
}
.slider-pickup-heading {
  text-align: center;
  margin-top: 2.7em;
}
.slider-pickup-heading .heading1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #FF8000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 479.98px) {
  .slider-pickup-heading .heading1 {
    font-size: 2.4rem;
  }
}
.slider-pickup-heading .heading2 {
  font-size: 1.4rem;
  line-height: 1.2;
  font-feature-settings: "palt";
  color: #fff;
  font-weight: 500;
  margin-top: 0.2em;
}
@media screen and (max-width: 479.98px) {
  .slider-pickup-heading .heading2 {
    font-size: 1.2rem;
  }
}
.slider-pickup-catch {
  margin-left: 2.3em;
}
@media screen and (max-width: 575.98px) {
  .slider-pickup-catch {
    margin-left: 0;
    margin-top: 1em;
    text-align: center;
  }
}
.slider-pickup-catch .catch1 {
  line-height: 1.3;
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  font-feature-settings: "palt";
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.slider-pickup-catch .catch2 {
  line-height: 1.1;
  font-size: 7.4rem;
  letter-spacing: 0.05em;
  color: #FF8000;
  font-family: "Anton", sans-serif;
}
.slider-pickup-catch .catch3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  font-family: "mplus-fonts", sans-serif;
}
.slider-pickup .pickup-main {
  position: relative;
  margin: 0 -2em 0 -2em;
}
@media screen and (max-width: 479.98px) {
  .slider-pickup .pickup-main {
    margin: 0 -1em 0 -1em;
  }
}
.slider-pickup .pickup-main .pickup-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  max-width: 480px;
  margin: auto;
  z-index: 110;
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev,
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next {
  display: block;
  position: absolute;
  top: -13px;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
  cursor: pointer;
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev::before,
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #006DD9;
  border-left: 2px solid #006DD9;
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev {
  left: 5px;
  padding: 9px 8px 9px 10px;
}
@media screen and (max-width: 479.98px) {
  .slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev {
    left: 15px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev {
    left: 5px;
  }
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-prev::before {
  transform: rotate(-45deg);
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next {
  right: 5px;
  padding: 9px 10px 9px 7px;
}
@media screen and (max-width: 479.98px) {
  .slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next {
    right: 15px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next {
    right: 5px;
  }
}
.slider-pickup .pickup-main .pickup-arrow .pickup-arrow-next::before {
  transform: rotate(135deg);
}
.slider-pickup .pickup-main .pickup-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.slider-pickup .pickup-main .pickup-dots ul {
  display: flex;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.slider-pickup .pickup-main .pickup-dots li {
  position: relative;
  width: 10px;
  height: 10px;
  cursor: pointer;
  border-radius: 100%;
}
.slider-pickup .pickup-main .pickup-dots li:not(:last-child) {
  margin-right: 10px;
}
.slider-pickup .pickup-main .pickup-dots li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #FFFFFF;
  border-radius: 100%;
}
.slider-pickup .pickup-main .pickup-dots li.slick-active:before {
  background-color: #FF8000;
}
.slider-pickup .pickup-main .pickup-dots button {
  display: none;
}
.slider-pickup .pickup-slider.slick-slider {
  position: static;
}
.slider-pickup .pickup-slider.slick-slider .pickup-slide {
  max-width: 441px;
  padding: 0 25px;
  width: 100%;
}
@media screen and (max-width: 575.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-slide {
    max-width: 300px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 359.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-slide {
    max-width: 280px;
  }
}
.slider-pickup .pickup-slider.slick-slider .pickup-link {
  display: block;
  background-color: #fff;
  padding: 0.5em 0.5em 0.95em 0.5em;
  transition: all 0.3s ease;
}
.slider-pickup .pickup-slider.slick-slider .pickup-link:hover {
  text-decoration: none;
}
.slider-pickup .pickup-slider.slick-slider .pickup-link:hover .pickup-title {
  text-decoration: none;
}
.slider-pickup .pickup-slider.slick-slider .pickup-link:hover .pickup-img img {
  transform: translate(-50%, -50%) scale(1.05);
}
.slider-pickup .pickup-slider.slick-slider .pickup-title {
  font-size: 2rem;
  line-height: 1.2;
  word-break: break-all;
  word-wrap: break-word;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  text-decoration: underline;
  transition: all 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 0.5em;
}
@media screen and (max-width: 767.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-title {
    font-size: 1.4rem;
  }
}
.slider-pickup .pickup-slider.slick-slider .topics-info {
  padding: 0 0.5em;
}
.slider-pickup .pickup-slider.slick-slider .pickup-img {
  display: block;
  position: relative;
  width: 100%;
  margin: auto;
  background: #000 url(../img/base/logo.png) center no-repeat;
  background-size: 50% auto;
  overflow: hidden;
  margin-bottom: 0.95em;
}
.slider-pickup .pickup-slider.slick-slider .pickup-img:before {
  content: "";
  display: block;
  padding-top: 270px;
}
@media screen and (max-width: 575.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-img:before {
    padding-top: 192px;
  }
}
.slider-pickup .pickup-slider.slick-slider .pickup-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 270px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575.98px) {
  .slider-pickup .pickup-slider.slick-slider .pickup-img img {
    height: 193px;
  }
}
.slider-logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1em 0;
  text-align: center;
  background-color: rgba(0, 120, 240, 0.8);
  z-index: 101;
}
@media screen and (min-width: 640px), print {
  .slider-logo {
    top: 30%;
    background: none;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1100px), print {
  .slider-logo {
    position: static;
    padding: 3em 0;
    background-color: #006dd9;
    transform: none;
  }
}
.slider-logo img {
  width: 40%;
}
@media screen and (min-width: 640px), print {
  .slider-logo img {
    width: 60%;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-logo img {
    width: 80%;
  }
}
.slider-description {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em 0;
  text-align: center;
  background-color: #006dd9;
  z-index: 101;
}
@media screen and (min-width: 640px), print {
  .slider-description {
    bottom: 25%;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-description {
    position: static;
    padding: 1.3em 0;
    background: none;
  }
}
.slider-description .text1 {
  display: block;
  margin-bottom: 0.2em;
  font-size: 1.3em;
  color: #ffbf00;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width: 640px), print {
  .slider-description .text1 {
    font-size: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-description .text1 {
    font-size: 1.7em;
  }
}
.slider-description .text2 {
  display: block;
  font-size: 0.9em;
  color: #fff;
}
@media screen and (min-width: 640px), print {
  .slider-description .text2 {
    font-size: 0.7em;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-description .text2 {
    font-size: 0.9em;
  }
}
.slider-catch {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding: 0 2em;
}
@media screen and (max-width: 359.98px) {
  .slider-catch {
    padding: 0 1em;
  }
}
.slider-catch-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4em 0;
}
@media screen and (max-width: 1099.98px) {
  .slider-catch-inner {
    padding: 2em 0;
  }
}
@media screen and (max-width: 639.98px) {
  .slider-catch-inner {
    padding: 0;
    justify-content: center;
  }
}
.slider-catch .catch-items {
  font-size: 0.5em;
  color: #00468C;
}
@media screen and (min-width: 480px), print {
  .slider-catch .catch-items {
    font-size: 0.7em;
  }
}
@media screen and (min-width: 640px), print {
  .slider-catch .catch-items {
    margin-top: 0;
    font-size: 0.5em;
  }
}
@media screen and (min-width: 768px), print {
  .slider-catch .catch-items {
    font-size: 0.7em;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-catch .catch-items {
    font-size: 1em;
  }
}
.slider-catch .catch-item {
  width: 100%;
}
.slider-catch .catch1 {
  font-family: "Noto Serif JP", sans-serif;
}
.slider-catch .catch1 span {
  font-size: 1.3em;
  color: #fff;
}
.slider-catch .catch2 {
  font-family: "Anton", sans-serif;
}
.slider-catch .catch2 span {
  display: block;
  font-size: 5em;
  line-height: 1;
}
.slider-catch .catch3 {
  padding: 1.2em 0 1em 0;
  font-family: "Anton", sans-serif;
}
@media screen and (max-width: 359.98px) {
  .slider-catch .catch3 {
    padding: 1em 0 0.9em 0;
  }
}
.slider-catch .catch3 span {
  display: block;
  font-size: 1.6em;
  line-height: 1;
  color: #006CD8;
}
.slider-catch .catch4 {
  font-family: "mplus-fonts", sans-serif;
}
.slider-catch .catch4 span {
  display: block;
  font-size: 0.9em;
}
.slider-imgs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.slider-main {
  position: relative;
}
.slider-main:before {
  content: "";
  display: block;
  padding-top: 49%;
}
@media screen and (min-width: 1100px), print {
  .slider-main:before {
    padding-top: 790px;
  }
}
.slider-img {
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 640px), print {
  .slider-img {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.slider-img.mainimg {
  position: relative;
}
.slider-img.mainimg:before {
  content: "";
  display: block;
  padding-top: 98.75%;
}
@media screen and (min-width: 1100px), print {
  .slider-img.mainimg:before {
    padding-top: 790px;
  }
}
.slider-sideimg {
  display: block;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 640px), print {
  .slider-sideimg {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.slider-sideimg:before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media screen and (min-width: 640px), print {
  .slider-sideimg:before {
    display: none;
  }
}
.slider-sideimg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 200%;
  background: url(../img/top/img.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 640px), print {
  .slider-sideimg:after {
    display: none;
  }
}
.slider-sideimg img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 640px), print {
  .slider-sideimg img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    max-width: none;
    width: auto;
    height: 100%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1600px), print {
  .slider-sideimg img {
    width: 100%;
    height: auto;
  }
}
.slider .slick-slider,
.slider .slick-list,
.slider .slick-track {
  height: 100%;
}
.slider .slick-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.slider .slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider .slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1100px), print {
  .slider .slide img {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1600px), print {
  .slider .slide img {
    width: 100%;
    height: auto;
  }
}
.slider-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1600px;
  height: 1px;
  margin: auto;
  z-index: 101;
  display: none;
}
.slider-prev, .slider-next {
  display: block;
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .slider-prev, .slider-next {
    top: -25px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-prev, .slider-next {
    top: -55px;
    width: 110px;
    height: 110px;
  }
}
.slider-prev:before, .slider-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.slider-prev {
  left: 0;
}
.slider-prev:before {
  left: 30%;
  transform: rotate(-45deg);
}
.slider-next {
  right: 0;
}
.slider-next:before {
  right: 30%;
  transform: rotate(135deg);
}
.slider-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
  display: none;
}
.slider-dots ul {
  height: 100%;
  text-align: center;
  overflow: hidden;
}
.slider-dots li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
}
.slider-dots li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  background-color: #006dd9;
}
.slider-dots li.slick-active:before {
  background-color: #0d91d1;
}
.slider-dots button {
  display: none;
}

/* --------------------------------

  上部固定用電話番号ボタン

-------------------------------- */
.tel-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .tel-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
  }
}
.tel-button a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #0d91d1;
  text-align: center;
}
.tel-button a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #006dd9;
}
.tel-button a:after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  font-size: 0.7em;
  font-weight: 800;
}
.tel-button .icon-tel {
  display: block;
  padding-top: 8px;
}
.tel-button .icon-tel:before {
  font-size: 39.2px;
  font-size: 2.8rem;
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  margin-top: 60px;
  padding: 20px;
  background-color: #fff;
  background: url(../img/base/title.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    margin-top: 0;
    margin-bottom: 80px;
    height: 270px;
    padding: 35px 2em;
  }
}
.page-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/base/cover.png);
}
.page-title-inner {
  position: relative;
  max-width: 1100px;
  height: 100%;
  margin: auto;
  line-height: 1.2;
  background-color: #fff;
  z-index: 1;
}
.page-title-inner:before {
  content: "";
  display: block;
  height: 130px;
  background-image: url(../img/pages/cars/bg.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
@media screen and (min-width: 640px), print {
  .page-title-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-inner:before {
    width: 60%;
  }
}
.cars-page .page-title-inner:before {
  background-image: url(../img/pages/cars/bg.jpg);
}
.loan-page .page-title-inner:before {
  background-image: url(../img/pages/loan/bg.jpg);
}
.lease-page .page-title-inner:before {
  background-image: url(../img/pages/lease/bg.jpg);
}
.buy-page .page-title-inner:before {
  background-image: url(../img/pages/buy/bg.jpg);
}
.maintenance-page .page-title-inner:before {
  background-image: url(../img/pages/maintenance/bg.jpg);
}
.access-page .page-title-inner:before {
  background-image: url(../img/pages/access/bg.jpg);
}
.contact-page .page-title-inner:before {
  background-image: url(../img/pages/contact/bg.jpg);
}
.page-title-inner:after {
  content: "";
  display: none;
}
@media screen and (min-width: 640px), print {
  .page-title-inner:after {
    display: block;
    position: absolute;
    top: 0;
    left: 60%;
    width: 110px;
    height: 100%;
    margin-left: -110px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 50.5%) no-repeat top left/100% 100%;
  }
}
.page-title-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1em;
  font-size: 100%;
}
@media screen and (min-width: 640px), print {
  .page-title-name {
    padding: 3em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-name {
    padding: 0 2em;
  }
}
.page-title-name .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 1.5em;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 640px), print {
  .page-title-name .title {
    font-size: 1.7em;
    text-align: right;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-name .title {
    font-size: 2.2em;
  }
}
.page-title-name .title:after {
  content: attr(data-subtitle);
  display: block;
  padding: 0.1em 0.1em 0 0;
  font-size: 0.5em;
  color: #ccc;
}

/* --------------------------------

  フォーム部品

-------------------------------- */
/* 送信完了画面見出し */
.form-heading {
  margin-bottom: 2rem;
  font-size: 1.3em;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .form-heading {
    font-size: 1.5em;
  }
}

/* フォーム部品：入力必須マーク */
.form-icon {
  display: block;
  float: left;
  width: 47px;
  margin: 0.15em 0 0 0.2em;
  line-height: 2em;
  font-size: 0.85em;
  color: #fff;
  border-radius: 10em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .form-icon {
    font-size: 0.75em;
    line-height: 2.2em;
  }
}
.form-icon-required {
  background-color: #FF0000;
}
.form-icon-required::before {
  content: "必須";
}
.form-icon-free {
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .form-icon-free {
    background-color: #999;
  }
}
.form-icon-free::before {
  content: "任意";
}

/* フォーム用説明文 */
.form-description {
  overflow: hidden;
}
.form-description-text {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .form-description-text {
    float: left;
    width: 100%;
    margin-top: 1.2em;
    margin-right: -400px;
    padding-right: 430px;
    text-align: left;
  }
}
.form-description-text .required {
  color: #ff0000;
  font-weight: bold;
}
.form-description-ssl {
  max-width: 400px;
  margin: 0 auto 2em;
  border: 5px solid #eee;
  border-radius: 10px;
  padding: 1em;
}
@media screen and (min-width: 640px), print {
  .form-description-ssl {
    padding: 0.5em 1.5em;
  }
}
@media screen and (min-width: 768px), print {
  .form-description-ssl {
    float: right;
  }
}
.form-description-ssl-text {
  position: relative;
  font-size: 0.8em;
  padding-left: 80px;
}
@media screen and (min-width: 640px), print {
  .form-description-ssl-text {
    font-size: 0.9em;
  }
}
.form-description-ssl-text:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/pages/contact/icon-key.png) center no-repeat;
  background-size: contain;
  width: 58px;
  height: 94px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.form-description-ssl-text .lead {
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .form-description-ssl-text .lead {
    font-size: 1.4em;
  }
}
.form-description-ssl-text .lead span {
  font-weight: bold;
  color: #1b97d3;
}

/* フォーム用テーブル */
.form-table {
  display: block;
  line-height: 1.5;
  overflow: hidden;
}
.form-table tbody {
  display: block;
  margin: 0;
  padding: 0;
}
.form-table tr {
  display: table;
  width: 100%;
  padding: 0.5em 0;
  border-bottom: 1px dotted #000;
}
@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.form-table tr:first-child {
  border-top: 1px dotted #000;
}
@media screen and (max-width: 767.98px) {
  .form-table tr:first-child {
    border-top: none;
  }
}
.form-table th {
  vertical-align: middle;
  width: 225px;
  padding: 0.5em 0 0.5em 0.5em;
}
@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0.5em 0;
  }
}
.form-table th.style1 {
  background-color: #ffefbf;
}
.form-table th.style2 {
  background-color: #ffd9b3;
}
.form-table th.style3 {
  background-color: #ffc58a;
}
.form-table th.style4 {
  background-color: #ff9673;
}
.form-table th.style5 {
  background-color: #ff9999;
}
.form-table th.style6 {
  background-color: #CFBFFF;
}
.form-table td {
  vertical-align: middle;
  padding: 0.5em 1em;
}
@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0;
  }
}

/* お名前 */
/* お名前（フリガナ） */
/* その他連絡先 */
/* その他連絡先 （フリガナ） */
/* 居住年数 */
/* 借入金額 */
.form-area-name .form-item,
.form-area-years .form-item,
.form-area-borrowing .form-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
@media screen and (max-width: 767.98px) {
  .form-area-name .form-item,
.form-area-years .form-item,
.form-area-borrowing .form-item {
    display: block;
  }
}
.form-area-name .form-text,
.form-area-years .form-text,
.form-area-borrowing .form-text {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em;
}

/* 住所 */
/* お勤め先住所 */
/* その他連絡先 住所 */
.form-area-add .form-textarea {
  height: 2.6em;
  min-height: 2.6em;
  padding: 0.5em 0.5em 0;
}
.form-area-add .form-item {
  display: table;
  width: 100%;
}
.form-area-add .form-item:not(:last-child) {
  margin-bottom: 0.5em;
}
.form-area-add .form-item dt,
.form-area-add .form-item dd {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 767.98px) {
  .form-area-add .form-item dt,
.form-area-add .form-item dd {
    display: block;
  }
}
.form-area-add .form-item dt {
  width: 10em;
  padding-right: 0.5em;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .form-area-add .form-item dt {
    width: 100%;
    padding: 0;
    text-align: left;
  }
}

/* 性別 */
/* お住まい */
.form-area-gender .form-item,
.form-area-house .form-item {
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em;
}
@media screen and (max-width: 767.98px) {
  .form-area-gender .form-item,
.form-area-house .form-item {
    display: block;
  }
}

/* 生年月日 */
.form-area-birthday .form-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
.form-area-birthday .form-text {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em 0.2em 0 0.2em;
}
.form-area-birthday .select-wrap {
  vertical-align: middle;
}
@media screen and (max-width: 479.98px) {
  .form-area-birthday .form-year {
    display: block;
    margin-bottom: 0.5em;
  }
}
.form-area-birthday .form-year .form-short {
  width: 140px;
}
.form-area-birthday .form-month .form-short,
.form-area-birthday .form-day .form-short {
  width: 80px;
}

/* 家族構成 */
.form-area-family .form-item {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.5em;
}
@media screen and (max-width: 767.98px) {
  .form-area-family .form-item {
    display: block;
  }
}
.form-area-family dl.form-item dt,
.form-area-family dl.form-item dd {
  display: table-cell;
  vertical-align: middle;
}
.form-area-family dl.form-item dt {
  width: 4em;
  padding-right: 0.5em;
}
.form-area-family .form-text {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em;
}
.form-area-family .form-short {
  width: 140px;
}

/* 媒体 */
.form-area-media .form-item {
  display: inline-block;
  vertical-align: middle;
  padding: 0.5em;
}
.form-area-media .form-text {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em;
}
.form-area-media dl {
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em;
}
.form-area-media dl dt,
.form-area-media dl dd {
  display: table-cell;
  vertical-align: middle;
}
.form-area-media dl dt {
  width: 6em;
  padding-right: 0.5em;
}

/* お問い合わせの内容 */
.form-area-message .form-textarea {
  resize: vertical;
  vertical-align: bottom;
  height: 15em;
  min-height: 5em;
  padding: 0.5em 0.5em 0;
}

/* フォーム部品：入力欄 */
.form-short,
.form-middle,
.form-long {
  height: 2.6em;
  padding: 0 0.5em;
  color: #252525;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  border: 1px solid #ccc;
  background-color: #eee;
}
.form-short:focus,
.form-middle:focus,
.form-long:focus {
  border-color: #eee;
  background-color: #fff;
}

.form-short {
  width: 160px;
}

.form-middle {
  width: 65%;
}

.form-long {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .form-short,
.form-middle,
.form-long {
    width: 100%;
  }
}
/* フォーム部品：入力必須マーク */
.form-title {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0.5em;
  line-height: 1.2;
}

/* フォーム部品：セレクト */
.select-wrap {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  white-space: nowrap;
  border-radius: 0;
  overflow: hidden;
}
.select-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  width: 2em;
  height: 2em;
  background: #fff url(../img/base/select.png) center no-repeat;
  background-size: 40px auto;
  z-index: 1;
}
.select-wrap.form-short, .select-wrap.form-middle, .select-wrap.form-long {
  padding: 0;
  border: none;
}
.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 40px;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrap select:focus {
  background: none;
}
.select-wrap select:-ms-expand {
  display: none;
  visibility: hidden;
}
.select-wrap select:-moz-focusring {
  background: none transparent;
}
.select-wrap option {
  background: none transparent;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}
.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  cursor: pointer;
}
.form-box + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #eee;
}
.form-box + label:after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
.form-box:checked + label {
  color: #006dd9;
}
.form-box:checked + label:before {
  border-color: #006dd9;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label:before {
  border-radius: 100%;
}
.form-box-radio + label:after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #eee;
  border-radius: 100%;
  opacity: 1;
}
.form-box-radio:checked + label:after {
  background-color: #006dd9;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label:before {
  border-radius: 0;
}
.form-box-check + label:after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #006dd9;
  border-bottom: 3px solid #006dd9;
  opacity: 0;
  transform: rotate(-45deg);
}
.form-box-check:checked + label:after {
  opacity: 1;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  vertical-align: top;
  height: 10em;
  min-height: 4em;
  resize: vertical;
}

/* フォーム部品：エラーメッセージ */
.checkbox-error-message .validate-error:not(:first-child) {
  display: none !important;
}

input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block;
  padding-top: 0.3em;
  font-size: 0.85em;
  color: #c00;
  background-color: #fff;
}
/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 1em;
  text-align: center;
}

.form-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.8em 1.4em;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.3;
  text-align: left;
  border: none;
  border-right: 40px solid #11a2e8;
  background: #0d91d1;
  box-shadow: none;
  cursor: pointer;
}
.form-button:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e904";
  display: block;
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}
.form-button-send:hover {
  background: #006dd9;
}
.form-button-back {
  border-color: #ccc;
  background: #999;
}
.form-button-back:hover {
  background: #ddd;
}
.form-button-add {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0.5em 0 0.5em 1.5em;
  padding: 0.5em 1em 0.5em 2em;
  background: #fff;
  color: #0d91d1;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 0.8em;
  line-height: 1.1;
  border: 2px solid #0d91d1;
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .form-button-add {
    margin-left: 0.5em;
  }
}
.form-button-add:hover {
  border-color: #fff;
  background: #0d91d1;
  color: #fff;
}
.form-button-add:hover:before {
  border-color: #fff;
}
.form-button-add:before {
  position: absolute;
  display: block;
  content: "";
  border-top: 1px solid #0d91d1;
  border-right: 1px solid #0d91d1;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 5px;
  transform: rotate(45deg) translateY(-50%);
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
body {
    width: 1100px;
    background: none;
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  position: relative;
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-header {
  position: relative;
  padding: 4em 0 2em;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .section-header {
    padding: 5em 0 3em;
  }
}
.section-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 18%;
  right: 0;
  left: 0;
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid #ccc;
}
@media screen and (min-width: 1100px), print {
  .section-header:before {
    width: 200px;
    height: 200px;
  }
}
.section-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 65%);
}
.section-heading {
  position: relative;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.1;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .section-heading {
    font-size: 1.9em;
  }
}
.section-heading span {
  color: #0d91d1;
  font-weight: 700;
}
.section-heading:before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 0.5em;
  padding-top: 0.5em;
  color: #555;
  font-size: 0.45em;
  font-weight: 300;
}

/* 最新入庫車情報 */
.chromeauto-cars-section {
  padding: 0 0 3em;
}
.chromeauto-cars-section .inner {
  max-width: none;
}
.chromeauto-cars-main {
  height: 20em;
  overflow: hidden;
}
.chromeauto-cars-side .more {
  margin-top: 0;
}

/* 定額リースプラン・自社ローン（共通レイアウト用）*/
.chromeauto-plan-section {
  padding: 0;
}
.chromeauto-plan-section .inner {
  max-width: 1600px;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-plan-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    height: 520px;
  }
}
@media screen and (min-width: 1100px), print {
  .chromeauto-plan-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.chromeauto-plan-item.lease {
  padding: 1em;
  background: url(../img/top/bg1.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .chromeauto-plan-item.lease {
    padding: 2.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .chromeauto-plan-item.loan {
    padding: 2.4em 0 0 3.4em;
    background: url(../img/top/bg2.jpg) left no-repeat;
  }
}
.chromeauto-plan-inner {
  max-width: 480px;
  margin: auto;
}
@media screen and (min-width: 1100px), print {
  .lease .chromeauto-plan-inner {
    max-width: 510px;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .loan .chromeauto-plan-inner {
    max-width: 380px;
    margin: 0;
  }
}

/* 定額リースプラン */
.chromeauto-lease {
  height: 100%;
  padding: 2em 1em 1.5em;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 1100px), print {
  .chromeauto-lease {
    padding: 1em;
    background-color: #fff;
  }
}
.chromeauto-lease-head {
  margin: 0 0 1em;
  text-align: center;
}
.chromeauto-lease-body {
  margin-bottom: 1.5em;
}
.chromeauto-lease-foot .more {
  margin: 0;
}
.chromeauto-lease-foot .link-button.secondary {
  color: #468c00;
  border-color: #468c00;
}
.chromeauto-lease-foot .link-button.secondary:hover {
  color: #fff;
  border-color: #468c00;
  background-color: #468c00;
}
.chromeauto-lease-heading {
  color: #468c00;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.1;
}
@media screen and (min-width: 640px), print {
  .chromeauto-lease-heading {
    font-size: 1.9em;
  }
}
@media screen and (min-width: 1100px), print {
  .chromeauto-lease-heading {
    font-size: 2.7em;
  }
}
.chromeauto-lease-heading span {
  font-weight: 700;
  font-size: 1.5em;
}
.chromeauto-lease-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 1em -2px -2px 0;
}
.chromeauto-lease-features .features-item {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 2px 2px 0;
}
@media screen and (min-width: 480px), print {
  .chromeauto-lease-features .features-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.chromeauto-lease-features .features-item span {
  display: block;
  padding: 0.8em 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: #468c00;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-lease-features .features-item span {
    padding: 0.5em 0;
    font-size: 1.3em;
  }
}
.chromeauto-lease-plans {
  border-top: 1px dotted #000;
}
.chromeauto-lease-plans dl {
  position: relative;
  padding: 1em 0.5em;
  border-bottom: 1px dotted #000;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-lease-plans dl {
    padding: 0.5em 1em;
  }
}
.chromeauto-lease-plans dt {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  width: 3.4em;
  height: 3.4em;
  margin: auto;
  line-height: 3.4em;
  border-radius: 10em;
  background-color: #000;
}
.chromeauto-lease-plans dt span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.chromeauto-lease-plans dd {
  line-height: 1;
  font-weight: 700;
  text-align: right;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-lease-plans dd {
    font-size: 1.5em;
  }
}
.chromeauto-lease-plans .price {
  font-size: 2.4em;
  font-weight: 700;
}
.chromeauto-lease-plans .yen {
  font-weight: 700;
}
.chromeauto-lease-plans .day .price,
.chromeauto-lease-plans .day .yen {
  color: #ff5c26;
}
.chromeauto-lease-plans .month .price,
.chromeauto-lease-plans .month .yen {
  color: #ff8000;
}

/* 自社ローン */
.chromeauto-loan {
  position: relative;
}
.chromeauto-loan-head {
  padding: 1.5em 0;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-head {
    margin-right: -1em;
    padding: 2em 0 0;
    text-align: left;
  }
}
.chromeauto-loan-body {
  position: relative;
  padding: 5em 2em 3em;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-body {
    margin-bottom: 3.5em;
    padding: 2.2em 2.5em 0;
  }
}
.chromeauto-loan-body:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/bg2.jpg) top no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-body:before {
    display: none;
  }
}
.chromeauto-loan-foot {
  padding: 1.5em 0;
  border-bottom: 2px solid #eee;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-foot {
    padding: 0;
    border-bottom: none;
  }
}
.chromeauto-loan-foot .more {
  margin: 0;
}
.chromeauto-loan-heading {
  font-size: 100%;
}
.chromeauto-loan-heading .heading {
  display: block;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-heading .heading {
    font-size: 1.3em;
  }
}
.chromeauto-loan-heading .heading span {
  font-weight: 700;
}
.chromeauto-loan-features {
  display: block;
  position: absolute;
  top: 1em;
  left: 1em;
  width: 6em;
  height: 6em;
  border-radius: 100%;
  background-color: #0d91d1;
  transform: rotate(-15deg);
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-features {
    top: 0;
    right: -2em;
    left: auto;
    transform: rotate(15deg);
  }
}
.chromeauto-loan-features .features {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.chromeauto-loan-features .features span {
  display: block;
  font-size: 1.1em;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.chromeauto-loan-description {
  position: relative;
  text-align: center;
}
.chromeauto-loan-description .price {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 0.85em;
  margin-bottom: 1em;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-description .price {
    font-size: 1em;
  }
}
.chromeauto-loan-description .price:before {
  content: "";
  display: none;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-description .price:before {
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 70px;
    height: 36px;
    margin: auto;
    background: url(../img/base/logo-small.jpg) center no-repeat;
    background-size: cover;
  }
}
.chromeauto-loan-description .text1 {
  display: block;
  line-height: 1.1;
  font-size: 2.8em;
  font-weight: 700;
}
.chromeauto-loan-description .text2 {
  display: block;
  line-height: 1.1;
  font-size: 1.4em;
  font-weight: 700;
}
.chromeauto-loan-description .zero {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 -0.15em;
  font-size: 2.2em;
  font-weight: 700;
  color: #ffbf00;
}
.chromeauto-loan-description .yen {
  font-weight: 700;
  color: #ffbf00;
}
.chromeauto-loan-description .loan {
  display: block;
  padding: 0.5em 0;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.4em;
  text-align: center;
  background-color: #ffbf00;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-loan-description .loan {
    font-size: 1.8em;
  }
}

/* 周辺マップ */
.chromeauto-map-section {
  position: relative;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-map-section {
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .chromeauto-map-section .inner {
    max-width: 550px;
    margin-right: 0;
    padding-right: 10px;
  }
}
.chromeauto-map .gmap-area:before {
  padding-top: 413px;
}

/* フェア・特典情報 */
.chromeauto-fair-section {
  position: relative;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-fair-section {
    position: relative;
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
}
.chromeauto-fair-section .inner {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-fair-section .inner {
    max-width: 550px;
    margin-left: 0;
    padding-left: 10px;
  }
}

/* 更新情報 */
.chromeauto-topics-section {
  padding: 3em 1em;
  background: url("../img/top/topics-bg.jpg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-topics-section {
    padding: 5em 2em;
  }
}
.chromeauto-topics-section .inner {
  max-width: 1426px;
}
.chromeauto-topics-section .section-header {
  padding: 0 0 2em 0;
}
@media screen and (min-width: 1100px), print {
  .chromeauto-topics-section .section-header {
    padding: 0 0 3em 0;
  }
}
.chromeauto-topics-section .section-header::before, .chromeauto-topics-section .section-header::after {
  display: none;
}
.chromeauto-topics-section .section-heading {
  position: relative;
  padding-top: 1em;
}
.chromeauto-topics-section .section-heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 150px;
  height: 47px;
  background: url("../img/base/ring-icon.png") no-repeat center/cover;
}
.chromeauto-topics-main {
  height: 350px;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (max-width: 1099.98px) {
  .chromeauto-topics-main {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}
.news-area .inner {
  max-width: 1600px;
  padding: 0;
  line-height: 1.5;
}
.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 1em;
}
.news-area-section .inner {
  max-width: 1100px;
}
.news-link {
  display: block;
  padding: 1em 0;
  border-bottom: 1px dotted #eee;
}
.news-date {
  display: inline-block;
  vertical-align: top;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #000;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #eee;
}
.news-description {
  margin: 2em 0;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .news-description {
    margin: 0 0 3em;
  }
  .news-description p {
    font-size: 1.1em;
  }
}
/* お知らせ一覧（サムネイル・スライダー）*/
.news-img-list:not(.news-slider) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -10px -2em 0;
}
@media screen and (min-width: 1100px), print {
  .news-img-list:not(.news-slider) {
    margin: 0 -2em -3em 0;
  }
}
.news-img-list:not(.news-slider) .news-topics {
  flex-basis: 50%;
  max-width: 50%;
  padding: 0 10px 2em 0;
}
@media screen and (min-width: 480px), print {
  .news-img-list:not(.news-slider) .news-topics {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px), print {
  .news-img-list:not(.news-slider) .news-topics {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1100px), print {
  .news-img-list:not(.news-slider) .news-topics {
    padding: 0 2em 3em 0;
  }
}
@media screen and (min-width: 1600px), print {
  .news-img-list:not(.news-slider) .news-topics {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
.news-img-list.news-slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.news-img-list.news-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.news-img-list.news-slider .news-topics {
  width: 280px;
  padding: 0 10px;
}
@media screen and (min-width: 1100px), print {
  .news-img-list.news-slider .news-topics {
    width: 300px;
    padding: 0 15px;
  }
}
.news-img-list .news-link {
  position: relative;
  height: 100%;
  padding: 70% 0 0;
  color: #252525;
  text-align: center;
  line-height: 1.5;
  border: none;
}
.news-img-list .news-link:hover {
  color: #0d91d1;
  text-decoration: none;
}
.news-img-list .news-link:hover .news-date {
  color: #0d91d1;
}
.news-img-list .news-date {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
  padding: 1em 0.5em 0.5em;
  font-size: 0.8em;
  color: #252525;
  border-bottom: 2px solid #eee;
  background: none;
}
.news-img-list .news-title {
  font-size: 0.9em;
}
.news-img-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #000 url(../img/base/logo.png) center no-repeat;
  background-size: 50% auto;
  overflow: hidden;
}
.news-img-list .news-img:before {
  content: "";
  display: block;
  padding-top: 71.4%;
}
.news-img-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 120%;
  max-height: 120%;
  transform: translate(-50%, -50%);
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 640px;
  margin: auto;
  z-index: 100;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .news-arrow {
    top: -4.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .news-arrow {
    max-width: 800px;
    top: -6em;
  }
}
.news-arrow-prev, .news-arrow-next {
  display: block;
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #0d91d1;
  cursor: pointer;
}
.news-arrow-prev:hover, .news-arrow-next:hover {
  background-color: #006dd9;
}
.news-arrow-prev:before, .news-arrow-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 30%;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev:before, .news-arrow-next:before {
    border-width: 2px;
  }
}
.news-arrow-prev {
  left: 15px;
}
.news-arrow-prev:before {
  left: 10%;
  transform: rotate(-45deg);
}
.news-arrow-next {
  right: 15px;
}
.news-arrow-next:before {
  right: 10%;
  transform: rotate(135deg);
}

/* WordPress お知らせ詳細用 */
.news-pagers {
  position: relative;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px dotted #eee;
  overflow: hidden;
}

.news-pager {
  width: 70px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}
@media screen and (min-width: 480px), print {
  .news-pager {
    width: 80px;
  }
}
.news-pager a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
  background-color: #0d91d1;
  transition: 0.2s;
}
.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #006dd9;
}
.news-pager a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.news-pager-prev {
  position: absolute;
  top: 2em;
  right: 0;
  left: -190px;
}
@media screen and (min-width: 480px), print {
  .news-pager-prev {
    left: -240px;
  }
}
.news-pager-prev a {
  padding-left: 10px;
}
.news-pager-prev a:before {
  display: none;
}
.news-pager-prev a:after {
  left: -40px;
  transform: rotate(135deg);
}
.news-pager-next {
  position: absolute;
  top: 2em;
  right: -190px;
  left: 0;
}
@media screen and (min-width: 480px), print {
  .news-pager-next {
    right: -240px;
  }
}
.news-pager-next a {
  padding-right: 10px;
}
.news-pager-next a:before {
  display: none;
}
.news-pager-next a:after {
  right: -40px;
  transform: rotate(-45deg);
}
.news-pager-back {
  width: 90px;
  font-size: 13px;
}
@media screen and (min-width: 480px), print {
  .news-pager-back {
    width: 120px;
  }
}
.news-pager-back a:before, .news-pager-back a:after {
  display: none;
}

.topics-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -5px 0;
}
.topics-item {
  width: calc(50% - 16px);
  margin: 0 1em 5px 0;
}
@media screen and (max-width: 1099.98px) {
  .topics-item {
    width: 100%;
    margin: 0 0.5em 5px 0;
  }
}
@media screen and (max-width: 479.98px) {
  .topics-item {
    margin: 0 0 5px 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .topics-item:nth-child(2n) {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
@media screen and (max-width: 1099.98px) {
  .topics-item:nth-child(2n+1) {
    background-color: rgba(232, 240, 244, 0.95);
  }
}
@media screen and (min-width: 1100px), print {
  .topics-item:nth-child(n+1):nth-child(-n+2), .topics-item:nth-child(n+5):nth-child(-n+6), .topics-item:nth-child(n+9):nth-child(-n+10) {
    background-color: rgba(232, 240, 244, 0.95);
  }
}
@media screen and (min-width: 1100px), print {
  .topics-item:nth-child(n+3):nth-child(-n+4), .topics-item:nth-child(n+7):nth-child(-n+8), .topics-item:nth-child(n+11):nth-child(-n+12) {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.topics-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 1.3em 150px 1.3em 1.2em;
  color: #006DD9;
  min-height: 100px;
  max-height: 100px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 479.98px) {
  .topics-link {
    padding: 0 110px 0 0.8em;
    min-height: 72px;
    max-height: 72px;
  }
}
.topics-link:hover {
  text-decoration: none;
}
.topics-link:hover .topics-title {
  text-decoration: none;
}
.topics-info {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.topics-cat {
  display: inline-block;
  padding: 0.27em 0.8em;
  border-radius: 5px;
  color: #fff;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-right: 0.8em;
}
@media screen and (max-width: 767.98px) {
  .topics-cat {
    font-size: 1.3rem;
    padding: 0.25em 0.6em;
  }
}
@media screen and (max-width: 359.98px) {
  .topics-cat {
    font-size: 1.2rem;
  }
}
.topics-cat span {
  display: inline-block;
  font-weight: 500;
}
.topics-cat.pickup-icon-orange {
  background-color: #FF8000;
}
.topics-cat.pickup-icon-red {
  background-color: #D90000;
}
.topics-cat.pickup-icon-blue {
  background-color: #006DD9;
}
.topics-date {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .topics-date {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 359.98px) {
  .topics-date {
    font-size: 1.2rem;
    letter-spacing: inherit;
  }
}
.topics-title {
  font-size: 2rem;
  line-height: 1.2;
  word-break: break-all;
  word-wrap: break-word;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  text-decoration: underline;
  transition: all 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .topics-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 479.98px) {
  .topics-title {
    font-size: 1.4rem;
  }
}
.topics-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 140px;
  margin: auto;
  background: #000 url(../img/base/logo.png) center no-repeat;
  background-size: 50% auto;
  overflow: hidden;
}
@media screen and (max-width: 479.98px) {
  .topics-img {
    max-width: 100px;
  }
}
.topics-img:before {
  content: "";
  display: block;
  padding-top: 100px;
}
@media screen and (max-width: 479.98px) {
  .topics-img:before {
    max-width: 71px;
  }
}
.topics-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100% !important;
  max-width: 140px;
  max-height: 100px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 479.98px) {
  .topics-img img {
    max-width: 101px;
    max-height: 72px;
  }
}

/* --------------------------------

  idxx　在庫車情報

-------------------------------- */
/* 注釈 */
/* --------------------------------

  id02　自社ローン

-------------------------------- */
/* 導入部 */
@media screen and (min-width: 1100px), print {
  .loan-intro {
    position: relative;
  }
}
.loan-intro-section.gutter {
  margin-bottom: 2em;
}
.loan-intro-foot {
  position: relative;
  display: block;
  background: url(../img/pages/loan/bg1.jpg) top left no-repeat;
  background-size: contain;
  max-width: 280px;
  height: 211px;
  margin: 0 auto;
}
@media screen and (min-width: 480px), print {
  .loan-intro-foot {
    max-width: 360px;
    height: 272px;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-foot {
    max-width: 480px;
    height: 362px;
  }
}
@media screen and (min-width: 768px), print {
  .loan-intro-foot {
    max-width: 640px;
    height: 483px;
  }
}
@media screen and (min-width: 1100px), print {
  .loan-intro-foot {
    position: static;
    max-width: 1100px;
    height: 830px;
  }
}
.loan-intro-heading {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 1.2em;
}
@media screen and (min-width: 480px), print {
  .loan-intro-heading {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 768px), print {
  .loan-intro-heading {
    font-size: 2.5em;
  }
}
.loan-intro-heading span {
  font-weight: bold;
  text-align: center;
}
.loan-intro-heading .heading1 {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 5px 1rem;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 992px), print {
  .loan-intro-heading .heading1 {
    flex-basis: 60%;
    max-width: 60%;
  }
}
.loan-intro-heading .heading2 {
  background-color: #D5ECF2;
  margin: 0;
  padding: 5px 1rem;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 992px), print {
  .loan-intro-heading .heading2 {
    flex-basis: 40%;
    max-width: 40%;
  }
}
.loan-intro-list {
  display: table;
  margin: 1em auto;
}
@media screen and (min-width: 1100px), print {
  .loan-intro-list {
    position: absolute;
    display: block;
    top: 120px;
    left: 80px;
    margin: 0;
    padding: 0;
  }
}
.loan-intro-list ul.list-style-none li {
  position: relative;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 20px 10px 45px;
  border-bottom: 1px dotted #252525;
}
@media screen and (min-width: 480px), print {
  .loan-intro-list ul.list-style-none li {
    font-size: 1.3em;
    padding: 15px 20px 15px 65px;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-list ul.list-style-none li {
    font-size: 1.6em;
  }
}
.loan-intro-list ul.list-style-none li:first-child {
  border-top: 1px dotted #252525;
}
.loan-intro-list ul.list-style-none li:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-check-yellow.png) center no-repeat;
  background-size: contain;
  width: 25px;
  height: 21px;
  top: 13px;
  left: 10px;
}
@media screen and (min-width: 480px), print {
  .loan-intro-list ul.list-style-none li:after {
    width: 40px;
    height: 34px;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-list ul.list-style-none li:after {
    top: 15px;
    left: 20px;
  }
}
.loan-intro-list ul.list-style-none li span {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #ffbf00 90%);
}
.loan-intro-lead {
  display: table;
  margin: 0 auto 2em;
}
@media screen and (min-width: 1100px), print {
  .loan-intro-lead {
    position: absolute;
    display: block;
    top: 350px;
    left: 100px;
    margin: 0;
  }
}
.loan-intro-lead p {
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  background-color: #ffbf00;
  padding: 5px;
}
@media screen and (min-width: 480px), print {
  .loan-intro-lead p {
    font-size: 1.3em;
    padding: 10px;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-lead p {
    font-size: 1.6em;
  }
}
.loan-intro-features {
  position: absolute;
  display: block;
  top: -10px;
  left: -10px;
}
@media screen and (min-width: 768px), print {
  .loan-intro-features {
    top: 25px;
    left: 25px;
  }
}
@media screen and (min-width: 1100px), print {
  .loan-intro-features {
    top: 440px;
    left: 550px;
  }
}
.loan-intro-features .features {
  background-color: #0d91d1;
  border-radius: 50%;
  color: #fff;
  width: 90px;
  height: 90px;
  text-align: center;
  padding: 1em 0;
  transform: rotate(15deg);
}
@media screen and (min-width: 640px), print {
  .loan-intro-features .features {
    width: 110px;
    height: 110px;
    padding: 1.5em 0;
  }
}
.loan-intro-features span {
  display: block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .loan-intro-features span {
    font-size: 1.2em;
  }
}
.loan-intro-message {
  position: absolute;
  display: block;
  bottom: 1em;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 480px), print {
  .loan-intro-message {
    bottom: 1.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .loan-intro-message {
    top: 485px;
    bottom: auto;
    left: 165px;
    right: auto;
    margin: 0;
  }
}
.loan-intro-message .message {
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
@media screen and (min-width: 640px), print {
  .loan-intro-message .message {
    margin-bottom: 2rem;
  }
}
.loan-intro-message .message1 {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .loan-intro-message .message1 {
    font-size: 2em;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-message .message1 {
    font-size: 3em;
  }
}
.loan-intro-message .message1 span {
  font-weight: bold;
  color: #ffbf00;
}
.loan-intro-message .message1 em {
  font-size: 2em;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .loan-intro-message .message1 em {
    font-size: 2.5em;
  }
}
.loan-intro-message .message2 {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .loan-intro-message .message2 {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-message .message2 {
    font-size: 1.8em;
  }
}
.loan-intro-message .caption {
  display: table;
  margin: 0 auto;
  font-weight: bold;
  background-color: #ddd;
  border-radius: 30px;
  padding: 5px 1em;
  font-size: 0.7em;
}
@media screen and (min-width: 480px), print {
  .loan-intro-message .caption {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 640px), print {
  .loan-intro-message .caption {
    font-size: 1.2em;
  }
}

/* 特徴 */
.loan-features {
  overflow: hidden;
}
.loan-features-main {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .loan-features-main {
    position: relative;
    float: left;
    width: 100%;
    margin: 0 -220px 0 0;
    padding-right: 250px;
  }
}
.loan-features-side {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .loan-features-side {
    position: absolute;
    display: block;
    bottom: -2em;
    right: 0;
  }
}
.loan-features-inner {
  border: 5px solid #eee;
  padding: 1em;
}
@media screen and (min-width: 640px), print {
  .loan-features-inner {
    padding: 1.5em;
  }
}
.loan-features-list dt {
  position: relative;
  margin-left: 50px;
  font-size: 1em;
  font-weight: bold;
  color: #0d91d1;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 640px), print {
  .loan-features-list dt {
    font-size: 1.3em;
    margin-left: 60px;
  }
}
@media screen and (min-width: 768px), print {
  .loan-features-list dt {
    font-size: 1.7em;
    margin-left: 100px;
  }
}
.loan-features-list dt:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-arrow-blue.png) center no-repeat;
  background-size: contain;
  width: 40px;
  height: 30px;
  top: 0;
  left: -50px;
}
@media screen and (min-width: 640px), print {
  .loan-features-list dt:before {
    width: 50px;
    height: 37px;
    left: -60px;
  }
}
@media screen and (min-width: 768px), print {
  .loan-features-list dt:before {
    width: 84px;
    height: 62px;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
  }
}
.loan-features-list dt:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #eee;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.loan-features-list dd {
  font-size: 0.9em;
}
@media screen and (min-width: 640px), print {
  .loan-features-list dd {
    font-size: 1em;
    padding-left: 60px;
  }
}
@media screen and (min-width: 768px), print {
  .loan-features-list dd {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1100px), print {
  .loan-features-list dd {
    padding: 0 50px 0 100px;
  }
}
.loan-features-list dd:first-of-type {
  margin-bottom: 3em;
}
.loan-features-link {
  margin-top: 1.5em;
  text-align: center;
}
.loan-features-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.7em 1em 0.7em 0.7em;
  color: #fff;
  border-radius: 0.4em;
  background-color: #d90000;
  border-left: 70px solid #b70100;
}
.loan-features-link-button:hover {
  text-decoration: none;
  color: #fff;
  border-left-color: #ff8000;
  background-color: #ff5c26;
}
.loan-features-link-button:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  display: block;
  position: absolute;
  top: 50%;
  left: -66px;
  width: 70px;
  font-size: 70px;
  font-size: 5rem;
  text-align: center;
  line-height: 1;
  transform: translateY(-50%);
}
.loan-features-link-button span {
  display: block;
  font-weight: 700;
  font-size: 1em;
}
@media screen and (min-width: 640px), print {
  .loan-features-link-button span {
    display: inline;
    font-size: 1.2em;
  }
}
.loan-features-link-button span:first-child {
  margin-right: 0;
}
@media screen and (min-width: 640px), print {
  .loan-features-link-button span:first-child {
    margin-right: 0.5em;
  }
}

/* 現金・クレジット・オートローンのお支払いも可能です */
.loan-payment-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -2em -3em 0;
}
.loan-payment-item {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 2em 3em 0;
}
@media screen and (min-width: 1100px), print {
  .loan-payment-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.loan-payment-heading {
  position: relative;
  font-size: 1.1em;
  font-weight: bold;
  color: #d90000;
  margin-bottom: 1.5rem;
  padding-left: 55px;
}
@media screen and (min-width: 640px), print {
  .loan-payment-heading {
    font-size: 1.3em;
    margin-bottom: 3rem;
    padding-left: 70px;
  }
}
.loan-payment-heading:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-arrow-red.png) center no-repeat;
  background-size: contain;
  width: 45px;
  height: 33px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 640px), print {
  .loan-payment-heading:before {
    width: 60px;
    height: 44px;
  }
}
.loan-payment-text {
  font-size: 0.9em;
  padding-left: 0;
}
@media screen and (min-width: 640px), print {
  .loan-payment-text {
    font-size: 1em;
    padding-left: 1.5em;
  }
}
.loan-payment-text strong {
  font-weight: bold;
  color: #d90000;
}
.loan-payment-text span {
  font-size: 0.8em;
}
.loan-payment-banner {
  max-width: 350px;
  margin: 1em auto 0 0;
}
.loan-payment-banner ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.loan-payment-banner li {
  flex-basis: 20%;
  max-width: 20%;
}
.loan-payment-contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 1em -1em -2em 0;
}
.loan-payment-content {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 2em 0;
}
@media screen and (min-width: 640px), print {
  .loan-payment-content {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.loan-payment-content p {
  position: relative;
  padding-top: 15px;
  text-align: center;
}
.loan-payment-content p:before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.loan-payment-content p strong {
  font-weight: bold;
  color: #d90000;
}
.loan-payment-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 0 -5px 0;
}
.loan-payment-list li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0 5px 0;
}
.loan-payment-list div {
  border: 3px solid #eee;
  border-radius: 10px;
  font-size: 1em;
  text-align: center;
  padding: 5px 0;
}
@media screen and (min-width: 640px), print {
  .loan-payment-list div {
    font-size: 1.1em;
  }
}

/* --------------------------------

  id03　定額カーリース

-------------------------------- */
/* 導入部 */
.lease-intro-head {
  margin-bottom: 3em;
}
.lease-intro-head-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}
.lease-intro-head-item {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .lease-intro-head-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.lease-intro-body {
  position: relative;
  margin-bottom: 3em;
}
.lease-intro-body:before {
  position: absolute;
  display: block;
  content: "";
  background-color: #bce69d;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.lease-intro-lead {
  display: inline-block;
  background-color: #468c00;
  border-radius: 30px;
  color: #fff;
  padding: 5px 1em;
  font-size: 1em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 640px), print {
  .lease-intro-lead {
    font-size: 1.1em;
  }
}
.lease-intro-lead span {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .lease-intro-lead span {
    display: inline;
  }
}
.lease-intro-price p {
  display: inline-block;
  vertical-align: baseline;
}
.lease-intro-price .price {
  position: relative;
  font-size: 3.5em;
  font-weight: bold;
  color: #ff5c26;
  line-height: 1;
  padding-left: 45px;
}
@media screen and (min-width: 480px), print {
  .lease-intro-price .price {
    font-size: 5.5em;
    padding-left: 70px;
  }
}
@media screen and (min-width: 640px), print {
  .lease-intro-price .price {
    font-size: 6.5em;
    padding-left: 85px;
  }
}
.lease-intro-price .price:before {
  position: absolute;
  display: block;
  content: "1日";
  background-color: #ff5c26;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.5rem;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 480px), print {
  .lease-intro-price .price:before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 640px), print {
  .lease-intro-price .price:before {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 3rem;
  }
}
.lease-intro-price .text {
  text-align: left;
}
.lease-intro-price .text span {
  display: block;
}
.lease-intro-price .text1 {
  background-color: #eee;
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 0.7em;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .lease-intro-price .text1 {
    font-size: 0.8em;
  }
}
.lease-intro-price .text2 {
  font-size: 1.8em;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .lease-intro-price .text2 {
    font-size: 2.5em;
  }
}
.lease-intro-price .text2 em {
  color: #ff5c26;
  font-weight: bold;
}
.lease-intro-heading .heading {
  display: inline-block;
  vertical-align: middle;
}
.lease-intro-heading .heading1 {
  font-size: 3em;
  font-weight: bold;
  color: #468c00;
  line-height: 1;
}
@media screen and (min-width: 480px), print {
  .lease-intro-heading .heading1 {
    font-size: 4em;
  }
}
@media screen and (min-width: 640px), print {
  .lease-intro-heading .heading1 {
    font-size: 5.8em;
  }
}
.lease-intro-heading .heading2 {
  line-height: 1;
}
.lease-intro-heading .heading2 span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #326400;
}
@media screen and (min-width: 480px), print {
  .lease-intro-heading .heading2 span {
    font-size: 2em;
  }
}
@media screen and (min-width: 640px), print {
  .lease-intro-heading .heading2 span {
    font-size: 2.6em;
  }
}
.lease-intro-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 -1px -1px 0;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .lease-intro-features {
    max-width: 402px;
    margin: 0 auto -1px;
  }
}
@media screen and (min-width: 992px), print {
  .lease-intro-features {
    max-width: none;
    margin: 0;
    display: block;
  }
}
.lease-intro-features li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1px 1px 0;
}
@media screen and (min-width: 480px), print {
  .lease-intro-features li {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .lease-intro-features li {
    flex-basis: 100%;
    max-width: 100%;
    display: inline-block;
  }
}
.lease-intro-features div {
  width: 200px;
  margin: 0 auto;
  background-color: #326400;
  color: #fff;
  font-size: 1em;
  padding: 5px 0;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .lease-intro-features div {
    font-size: 1.1em;
  }
}

/* そのカーライフプラン、一度見直してみませんか？ */
.lease-review-main {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .lease-review-main {
    float: left;
    width: 100%;
    margin: 0 -400px 0 0;
    padding-right: 420px;
  }
}
@media screen and (min-width: 1200px), print {
  .lease-review-main {
    margin-right: -422px;
    padding-right: 440px;
  }
}
.lease-review-side {
  max-width: 422px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px), print {
  .lease-review-side {
    float: right;
    width: 400px;
    margin: 0;
  }
}
@media screen and (min-width: 1200px), print {
  .lease-review-side {
    width: 422px;
  }
}
.lease-review-head {
  margin-bottom: 1em;
}
.lease-review-heading {
  position: relative;
  font-size: 1.1em;
  padding-left: 70px;
  color: #468c00;
  margin-bottom: 1rem;
}
@media screen and (min-width: 480px), print {
  .lease-review-heading {
    font-size: 1.3em;
    padding-left: 80px;
  }
}
@media screen and (min-width: 1200px), print {
  .lease-review-heading {
    font-size: 1.4em;
    padding-left: 85px;
  }
}
.lease-review-heading span {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .lease-review-heading span {
    display: inline;
  }
}
.lease-review-heading:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-arrow-green.png) center no-repeat;
  background-size: contain;
  width: 60px;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 480px), print {
  .lease-review-heading:before {
    width: 70px;
    height: 51px;
  }
}
@media screen and (min-width: 1200px), print {
  .lease-review-heading:before {
    width: 80px;
    height: 59px;
  }
}
.lease-review-caption {
  padding-left: 0;
}
@media screen and (min-width: 480px), print {
  .lease-review-caption {
    padding-left: 80px;
  }
}
@media screen and (min-width: 1200px), print {
  .lease-review-caption {
    padding-left: 90px;
  }
}
.lease-review-caption span {
  font-size: 0.9em;
  display: block;
}
.lease-review-list.list-style-none li {
  position: relative;
  font-size: 1em;
  font-weight: bold;
  padding: 10px 0 10px 40px;
  border-bottom: 1px dotted #252525;
}
@media screen and (min-width: 480px), print {
  .lease-review-list.list-style-none li {
    font-size: 1.3em;
    padding: 15px 0 15px 55px;
  }
}
@media screen and (min-width: 640px), print {
  .lease-review-list.list-style-none li {
    font-size: 1.6em;
    padding-left: 70px;
  }
}
.lease-review-list.list-style-none li:first-child {
  border-top: 1px dotted #252525;
}
.lease-review-list.list-style-none li:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-check-green.png) center no-repeat;
  background-size: contain;
  width: 25px;
  height: 21px;
  top: 13px;
  left: 10px;
}
@media screen and (min-width: 480px), print {
  .lease-review-list.list-style-none li:after {
    width: 40px;
    height: 34px;
  }
}
@media screen and (min-width: 640px), print {
  .lease-review-list.list-style-none li:after {
    top: 15px;
    left: 20px;
  }
}
.lease-review-list.list-style-none li span {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #bce69d 90%);
}

/* クロムオートの定額リースプラン */
.lease-plan {
  border: 5px solid #bce69d;
  padding: 1em;
}
@media screen and (min-width: 480px), print {
  .lease-plan {
    padding: 1.5em;
  }
}
.lease-plan-head {
  margin-bottom: 1em;
}
.lease-plan-body {
  margin-bottom: 1em;
}
@media screen and (min-width: 640px), print {
  .lease-plan-foot dl dt {
    float: left;
    clear: left;
    width: 10em;
  }
}
.lease-plan-foot dl dd {
  padding-left: 1em;
}
@media screen and (min-width: 640px), print {
  .lease-plan-foot dl dd {
    padding-left: 10em;
  }
}
.lease-plan-foot dl dd span {
  font-size: 0.9em;
  display: block;
}
@media screen and (min-width: 768px), print {
  .lease-plan-foot dl dd span {
    display: inline;
  }
}
.lease-plan-heading {
  font-size: 1.2em;
  font-weight: bold;
  color: #468c00;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .lease-plan-heading {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 768px), print {
  .lease-plan-heading {
    font-size: 2.4em;
  }
}
.lease-plan-list.list-style-none {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}
.lease-plan-list.list-style-none li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 992px), print {
  .lease-plan-list.list-style-none li {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.lease-plan-list.list-style-none div {
  position: relative;
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  text-align: right;
  font-size: 1.2em;
  font-weight: bold;
  padding: 5px 1rem;
}
@media screen and (min-width: 480px), print {
  .lease-plan-list.list-style-none div {
    font-size: 1.7em;
    padding: 0 1.5rem;
  }
}
.lease-plan-list.list-style-none div:before {
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 480px), print {
  .lease-plan-list.list-style-none div:before {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 2rem;
    left: 1.5rem;
  }
}
.lease-plan-list.list-style-none div.day:before {
  content: "1日";
  background-color: #ff5c26;
}
.lease-plan-list.list-style-none div.month:before {
  content: "月額";
  background-color: #ff8000;
}
.lease-plan-list.list-style-none span {
  line-height: 1.4;
  font-weight: bold;
}
.lease-plan-list.list-style-none span.day {
  color: #ff5c26;
}
.lease-plan-list.list-style-none span.month {
  color: #ff8000;
}
.lease-plan-list.list-style-none em {
  font-weight: bold;
  font-size: 1.8em;
}
@media screen and (min-width: 480px), print {
  .lease-plan-list.list-style-none em {
    font-size: 2.2em;
  }
}

.contact-lease-intro {
  align-items: flex-end;
}

/* --------------------------------

  id04　高価買取

-------------------------------- */
/* 導入部 */
.buy-intro {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .buy-intro:before {
    position: absolute;
    display: block;
    content: "";
    background: url(../img/pages/buy/bg1.png) center no-repeat;
    background-size: contain;
    width: 609px;
    height: 626px;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
.buy-intro-section .inner {
  max-width: 1280px;
}
.buy-intro-main {
  position: relative;
  display: table;
  margin: 0 auto;
  z-index: 1001;
}
@media screen and (min-width: 1100px), print {
  .buy-intro-main {
    display: block;
    margin: 0;
  }
}
.buy-intro-side {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .buy-intro-side {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .buy-intro-head {
    max-width: 530px;
  }
}
.buy-intro-heading {
  margin-bottom: 1.5em;
  line-height: 1.2;
  text-align: center;
}
.buy-intro-heading .heading1 {
  display: block;
  font-size: 2.8em;
  font-weight: bold;
  color: #ff8000;
}
@media screen and (min-width: 480px), print {
  .buy-intro-heading .heading1 {
    font-size: 4.3em;
  }
}
@media screen and (min-width: 768px), print {
  .buy-intro-heading .heading1 {
    font-size: 5.5em;
  }
}
.buy-intro-heading .heading2 {
  font-size: 1.8em;
  display: block;
}
@media screen and (min-width: 480px), print {
  .buy-intro-heading .heading2 {
    font-size: 3.5em;
  }
}
@media screen and (min-width: 768px), print {
  .buy-intro-heading .heading2 {
    font-size: 4.8em;
  }
}
.buy-intro-heading .heading2 em {
  display: inline-block;
  background-color: #ffefbf;
  border: 5px solid #ff8000;
  width: 60px;
  height: 60px;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .buy-intro-heading .heading2 em {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 768px), print {
  .buy-intro-heading .heading2 em {
    width: 140px;
    height: 140px;
  }
}
.buy-intro-heading .heading2 em:not(:last-child) {
  margin-right: 5px;
}
.buy-intro-body {
  display: table;
  margin: 0 auto 3em;
}
@media screen and (min-width: 768px), print {
  .buy-intro-body {
    display: block;
    margin: 0 0 3em;
  }
}
.buy-intro-body-inner {
  position: relative;
  display: inline-block;
  background-color: rgba(255, 128, 0, 0.9);
  padding: 5px 1em;
  transform: rotate(-5deg);
}
.buy-intro-body p {
  font-size: 1.4em;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .buy-intro-body p {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 1100px), print {
  .buy-intro-foot {
    max-width: 370px;
  }
}
@media screen and (min-width: 1200px), print {
  .buy-intro-foot {
    max-width: 470px;
  }
}
.buy-intro-foot .lead {
  font-size: 1.2em;
  font-weight: bold;
  color: #ff8000;
}
@media screen and (min-width: 480px), print {
  .buy-intro-foot .lead {
    font-size: 1.5em;
  }
}

/* 買取対象の車両 */
.buy-target-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -2em -2em 0;
}
.buy-target-item {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 2em 2em 0;
}
@media screen and (min-width: 640px), print {
  .buy-target-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .buy-target-item {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.buy-target-inner {
  max-width: 250px;
  margin: 0 auto;
}
.buy-target-image {
  text-align: center;
  margin-bottom: 2em;
}
.buy-target-content {
  position: relative;
  border: 1px solid #eee;
  padding: 2em 1em 1em;
}
.buy-target-content ul, .buy-target-content p {
  font-size: 0.8em;
}
.buy-target-heading {
  position: absolute;
  display: inline-block;
  top: -1em;
  left: 0;
  right: 0;
  width: 80%;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  background-color: #ff5c26;
  color: #fff;
}

/* 買取の流れ */
.buy-flow {
  position: relative;
}
.buy-flow:before, .buy-flow:after {
  position: absolute;
  display: block;
  content: "";
}
@media screen and (min-width: 768px), print {
  .buy-flow:before {
    background: url(../img/pages/buy/bg2.png) center no-repeat;
    background-size: contain;
    width: 200px;
    height: 201px;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 992px), print {
  .buy-flow:before {
    width: 375px;
    height: 377px;
  }
}
@media screen and (min-width: 768px), print {
  .buy-flow:after {
    background: url(../img/pages/buy/bg3.png) center no-repeat;
    background-size: contain;
    width: 200px;
    height: 201px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 992px), print {
  .buy-flow:after {
    width: 375px;
    height: 377px;
  }
}
.buy-flow-list {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .buy-flow-list {
    margin: 0;
  }
}
.buy-flow-list:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (min-width: 640px), print {
  .buy-flow-list:not(:last-child) {
    margin-bottom: 3em;
  }
}
.buy-flow-list:first-child {
  left: 0;
}
@media screen and (min-width: 992px), print {
  .buy-flow-list:first-child {
    left: 50px;
  }
}
.buy-flow-list:nth-child(2) {
  left: 0;
}
@media screen and (min-width: 768px), print {
  .buy-flow-list:nth-child(2) {
    left: 50px;
  }
}
@media screen and (min-width: 992px), print {
  .buy-flow-list:nth-child(2) {
    left: 150px;
  }
}
.buy-flow-list:nth-child(3) {
  left: 0;
}
@media screen and (min-width: 768px), print {
  .buy-flow-list:nth-child(3) {
    left: 100px;
  }
}
@media screen and (min-width: 992px), print {
  .buy-flow-list:nth-child(3) {
    left: 250px;
  }
}
.buy-flow-list:last-child {
  left: 0;
}
@media screen and (min-width: 768px), print {
  .buy-flow-list:last-child {
    left: 150px;
  }
}
@media screen and (min-width: 992px), print {
  .buy-flow-list:last-child {
    left: 350px;
  }
}
.buy-flow-list dt {
  background-color: #ff9326;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
@media screen and (min-width: 480px), print {
  .buy-flow-list dt {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 768px), print {
  .buy-flow-list dt {
    font-size: 1.5em;
  }
}
.buy-flow-list dd p {
  text-align: center;
}
.buy-flow-list dd ol {
  color: #ff9326;
  margin-top: 1em;
  padding-left: 2em;
}
.buy-flow-list dd ol li {
  font-size: 1.1em;
  font-weight: bold;
}

/* 査定に必要な書類 */
.buy-document-head {
  margin-bottom: 1.5em;
}
.buy-document-head p {
  text-align: center;
}
.buy-document-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}
.buy-document-item {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 992px), print {
  .buy-document-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.buy-document-inner {
  border: 5px solid #ddd;
  padding: 1em;
  min-height: auto;
}
@media screen and (min-width: 992px), print {
  .buy-document-inner {
    min-height: 20em;
  }
}
@media screen and (min-width: 1100px), print {
  .buy-document-inner {
    min-height: 17em;
  }
}
.buy-document-heading {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px dotted #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.buy-document-heading.heading1 {
  color: #ff5c26;
}
.buy-document-heading.heading2 {
  color: #b22d00;
}
.buy-document-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -5px -5px 0;
  padding-bottom: 1em;
}
.buy-document-list li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 5px 5px 0;
}
@media screen and (min-width: 480px), print {
  .buy-document-list li {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .buy-document-list li {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.buy-document-list div {
  background-color: #e5aecb;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
}
.buy-document-note {
  font-size: 0.8em;
}
.buy-document-note li {
  font-weight: bold;
}

/* --------------------------------

  id05　保証・車検・整備

-------------------------------- */
/* 導入部 */
.maintenance-intro-main {
  margin-bottom: 2em;
}
@media screen and (min-width: 1100px), print {
  .maintenance-intro-main {
    float: left;
    width: 100%;
    margin: 0 -422px 0 0;
    padding-right: 440px;
  }
}
.maintenance-intro-side {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .maintenance-intro-side {
    float: right;
    width: 422px;
  }
}
.maintenance-intro-side ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-items: center;
  margin: 0 -1em -1em 0;
}
.maintenance-intro-side li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 768px), print {
  .maintenance-intro-side li {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .maintenance-intro-side li {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.maintenance-intro-head {
  margin-bottom: 2em;
}
.maintenance-intro-heading {
  font-family: "Noto Serif JP", sans-serif;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.maintenance-intro-heading .heading1 {
  display: block;
  font-size: 1.2em;
}
@media screen and (min-width: 480px), print {
  .maintenance-intro-heading .heading1 {
    font-size: 1.9em;
  }
}
@media screen and (min-width: 768px), print {
  .maintenance-intro-heading .heading1 {
    font-size: 2.4em;
  }
}
.maintenance-intro-heading .heading2 {
  display: block;
  font-size: 0.9em;
}
@media screen and (min-width: 480px), print {
  .maintenance-intro-heading .heading2 {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 768px), print {
  .maintenance-intro-heading .heading2 {
    font-size: 1.8em;
  }
}
.maintenance-intro-heading .heading2 span {
  color: #d90000;
}
.maintenance-intro-caption {
  background-color: #d90000;
  color: #fff;
  font-size: 1em;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .maintenance-intro-caption {
    font-size: 1.2em;
  }
}
.maintenance-intro-caption span {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .maintenance-intro-caption span {
    display: inline;
  }
}
.maintenance-intro-list dt {
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  color: #d90000;
  margin-bottom: 1rem;
  padding-left: 50px;
}
@media screen and (min-width: 640px), print {
  .maintenance-intro-list dt {
    font-size: 1.6em;
    padding-left: 70px;
  }
}
.maintenance-intro-list dt:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-arrow-red.png) center no-repeat;
  background-size: contain;
  width: 40px;
  height: 29px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 640px), print {
  .maintenance-intro-list dt:before {
    width: 60px;
    height: 44px;
  }
}
.maintenance-intro-list dd {
  padding-left: 1.5em;
}
.maintenance-intro-list dd:not(:last-child) {
  margin-bottom: 2em;
}
.maintenance-intro-list dd span {
  color: #ff8000;
  font-weight: bold;
}

/* 現金・クレジットでのお支払いが可能です */
.maintenance-credit-text {
  margin-bottom: 1em;
}
.maintenance-credit-banner {
  max-width: 350px;
  margin: 0 auto 0 0;
}
.maintenance-credit-banner ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.maintenance-credit-banner li {
  flex-basis: 20%;
  max-width: 20%;
}

/* --------------------------------

  id06　アクセス

-------------------------------- */
/* アクセス */
.access-left {
  max-width: 300px;
  margin: 0 auto 1em;
}
@media screen and (min-width: 768px), print {
  .access-left {
    float: left;
    margin: 0;
  }
}
@media screen and (min-width: 768px), print {
  .access-right {
    float: right;
    width: 100%;
    margin-left: -300px;
    padding-left: 350px;
  }
}
.access-heading {
  text-align: center;
  margin-bottom: 0.5em;
}
.access-list {
  font-size: 0.9em;
  margin-bottom: 1em;
}
.access-list ul {
  display: table;
  margin: 0 auto;
}
.access-image {
  text-align: center;
  margin-bottom: 1em;
}
.access-links ul.list-style-none {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.access-links li {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.access-links a:hover {
  opacity: 0.7;
}
.access-catch {
  margin-bottom: 1em;
}
.access-catch .catch-item {
  text-align: center;
}
.access-catch .catch1 {
  padding: 0.5em 0;
  font-family: "Anton", sans-serif;
}
.access-catch .catch1 span {
  display: block;
  font-size: 1em;
  line-height: 1;
  color: #0078f0;
}
.access-catch .catch2 {
  font-family: "mplus-fonts", sans-serif;
}
.access-catch .catch2 span {
  display: block;
  font-size: 0.8em;
  line-height: 1.2;
  color: #555;
}
.access-detail {
  display: table;
  margin: 0 auto 3em;
}
@media screen and (min-width: 768px), print {
  .access-detail {
    display: block;
    margin: 0 0 3em;
  }
}
.access-detail dl {
  line-height: 1.6;
}
.access-detail dl dt {
  float: left;
  clear: left;
  font-size: 0.9em;
  font-weight: bold;
  width: 7em;
  text-align: center;
  background-color: #000;
  border-radius: 30px;
  color: #fff;
}
.access-detail dl dd {
  margin: 5px 0;
  padding-left: 7em;
}
.access-gmap iframe {
  margin-bottom: 1em;
}
.access-button {
  text-align: right;
}
.access-button .link-button {
  background-color: #0d91d1;
  border-right-color: #11a2e8;
}
.access-button .link-button:hover {
  background-color: #006dd9;
}

/* --------------------------------

  id07　自社分割ローンのお申込み

-------------------------------- */
/* 導入部 */
.contact-intro-main {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .contact-intro-main {
    float: left;
    width: 100%;
    margin: 0 -250px 0 0;
    padding-right: 270px;
  }
}
.contact-intro-side {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .contact-intro-side {
    float: right;
    display: block;
    width: 250px;
  }
}
.contact-intro-head {
  display: table;
  margin: 0 auto 1em;
}
@media screen and (min-width: 768px), print {
  .contact-intro-head {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 0 2em;
  }
}
.contact-intro-heading {
  line-height: 1.1;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .contact-intro-heading {
    text-align: left;
    margin: 0;
    padding: 0 1em 0 0;
  }
}
.contact-intro-heading .heading1 {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .contact-intro-heading .heading1 {
    font-size: 2em;
  }
}
@media screen and (min-width: 992px), print {
  .contact-intro-heading .heading1 {
    font-size: 2.2em;
  }
}
.contact-intro-heading .heading1 span {
  font-weight: bold;
  color: #ffbf00;
}
.contact-intro-heading .heading1 em {
  font-weight: bold;
  font-size: 2em;
  letter-spacing: -10px;
}
.contact-intro-heading .heading2 {
  display: block;
  font-size: 0.9em;
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .contact-intro-heading .heading2 {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 992px), print {
  .contact-intro-heading .heading2 {
    font-size: 1.2em;
  }
}
.contact-intro-caption {
  display: table;
  margin: 0 auto;
  background-color: #ffbf00;
  padding: 1em;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  .contact-intro-caption {
    display: block;
    margin: 0;
  }
}
.contact-intro-caption span {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (min-width: 640px), print {
  .contact-intro-caption span {
    font-size: 1.5em;
  }
}
.contact-intro-body {
  overflow: hidden;
}
.contact-intro-body-left {
  display: table;
  margin: 0 auto 1em;
}
@media screen and (min-width: 768px), print {
  .contact-intro-body-left {
    float: left;
    width: 150px;
  }
}
@media screen and (min-width: 768px), print {
  .contact-intro-body-right {
    float: right;
    width: 100%;
    margin-left: -150px;
    padding-left: 170px;
  }
}
.contact-intro-body-item {
  background-color: #0d91d1;
  border-radius: 50%;
  color: #fff;
  width: 120px;
  height: 120px;
  text-align: center;
  padding: 1.5em 0;
  transform: rotate(10deg);
}
@media screen and (min-width: 640px), print {
  .contact-intro-body-item {
    width: 150px;
    height: 150px;
    padding: 2em 0;
  }
}
.contact-intro-body-item span {
  font-size: 1.4em;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .contact-intro-body-item span {
    font-size: 1.7em;
  }
}
.contact-intro-body-list.list-style-none li {
  position: relative;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 0 10px 45px;
  border-bottom: 1px dotted #252525;
}
@media screen and (min-width: 480px), print {
  .contact-intro-body-list.list-style-none li {
    font-size: 1.3em;
    padding: 15px 0 15px 65px;
  }
}
@media screen and (min-width: 640px), print {
  .contact-intro-body-list.list-style-none li {
    font-size: 1.6em;
  }
}
.contact-intro-body-list.list-style-none li:first-child {
  border-top: 1px dotted #252525;
}
.contact-intro-body-list.list-style-none li:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/icon-check-yellow.png) center no-repeat;
  background-size: contain;
  width: 25px;
  height: 21px;
  top: 13px;
  left: 10px;
}
@media screen and (min-width: 480px), print {
  .contact-intro-body-list.list-style-none li:after {
    width: 40px;
    height: 34px;
  }
}
@media screen and (min-width: 640px), print {
  .contact-intro-body-list.list-style-none li:after {
    top: 15px;
    left: 20px;
  }
}
.contact-intro-body-list.list-style-none li span {
  font-weight: bold;
  background: linear-gradient(transparent 90%, #ffbf00 90%);
}

/* クロムオート自社ローンの申し込みフォーム */
/* 個人情報の取り扱いについて */
.contact-privacy {
  height: 30em;
  padding: 1em;
  font-size: 0.9em;
  border: 1px solid #eee;
  background-color: #fff;
  overflow-y: scroll;
}
.contact-privacy-section .inner {
  line-height: 1.5;
}
@media screen and (min-width: 640px), print {
  .contact-privacy {
    height: 20em;
  }
}
@media screen and (min-width: 768px), print {
  .contact-privacy {
    font-size: 1em;
  }
}
.contact-privacy h3 {
  margin: 2em 0 0.5em;
  padding: 0 0 0.3em;
  font-size: 1.2em;
  line-height: 1.3;
  color: #006dd9;
  border-bottom: 1px dotted #ccc;
}
@media screen and (min-width: 768px), print {
  .contact-privacy h3 {
    font-size: 1.4em;
  }
}
.contact-privacy dl {
  margin-top: 1em;
}

.contact-lease-intro-heading {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
  color: #fff;
  display: block;
  max-width: 791px;
  margin: 0 auto 1em;
  border-radius: 10em;
  padding: 0.95em 0.8em;
  background-color: #468C00;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .contact-lease-intro-heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-lease-intro-heading {
    font-size: 1.6rem;
  }
}
.contact-lease-intro-heading span {
  color: #FFAD93;
  font-weight: 700;
}

.contact-form-intro-heading {
  font-size: 2.6rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 1099.98px) {
  .contact-form-intro-heading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-form-intro-heading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-form-intro-heading {
    font-size: 1.6rem;
    margin-bottom: 2em;
  }
}

/* --------------------------------

  修正・追加用

-------------------------------- */