@charset "UTF-8";
/*!
Theme Name: kmg-mm06
Author: m-media.co.jp
Author URI: m-media.co.jp/
Description: 20250909　TOPページ修正とsassの修正
Version: 1.2
*/
/*　フォントサイズの指定　10pxから40pxまで */
.font10 {
  font-size: 10, 10rem;
}

.font11 {
  font-size: 11, 10rem;
}

.font12 {
  font-size: 12, 10rem;
}

.font13 {
  font-size: 13, 10rem;
}

.font14 {
  font-size: 14, 10rem;
}

.font15 {
  font-size: 15, 10rem;
}

.font16 {
  font-size: 16, 10rem;
}

.font17 {
  font-size: 17, 10rem;
}

.font18 {
  font-size: 18, 10rem;
}

.font19 {
  font-size: 19, 10rem;
}

.font20 {
  font-size: 20, 10rem;
}

.font21 {
  font-size: 21, 10rem;
}

.font22 {
  font-size: 22, 10rem;
}

.font23 {
  font-size: 23, 10rem;
}

.font24 {
  font-size: 24, 10rem;
}

.font25 {
  font-size: 25, 10rem;
}

.font26 {
  font-size: 26, 10rem;
}

.font27 {
  font-size: 27, 10rem;
}

.font28 {
  font-size: 28, 10rem;
}

.font29 {
  font-size: 29, 10rem;
}

.font30 {
  font-size: 30, 10rem;
}

.font31 {
  font-size: 31, 10rem;
}

.font32 {
  font-size: 32, 10rem;
}

.font33 {
  font-size: 33, 10rem;
}

.font34 {
  font-size: 34, 10rem;
}

.font35 {
  font-size: 35, 10rem;
}

.font36 {
  font-size: 36, 10rem;
}

.font37 {
  font-size: 37, 10rem;
}

.font38 {
  font-size: 38, 10rem;
}

.font39 {
  font-size: 39, 10rem;
}

.font40 {
  font-size: 40, 10rem;
}

/* マージンとpaddingの設定 0から10pxずつ　50pxまで */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

/*ブレイクポイントの設定(scss)*/
/*フォントなど共通事項の設定 20210417追加*/
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #222;
  font-size: 1.6rem;
  /*文字詰めの設置 20210417追加*/
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 480px) {
  body { /*20210417追加*/
    font-size: 1.3rem;
  }
}

/*　文字詰めの設定 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, body {
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
  }
}
/* 文字詰の解除 */
.kintou {
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

/* 禁則処理 */
p {
  line-break: normal;
  line-break: strict;
}

/*横スクロール禁止*/
.overflow {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/*スクロールしたらふわっと表示*/
#nav1.scroll-fade {
  display: none;
}

#nav1.scroll-fade.blockIn {
  display: initial;
}

.scroll-fade {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.scroll-fade.blockIn {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover img {
  opacity: 0.6;
}

a {
  text-decoration: none;
  color: #222;
}

a:active,
a:visited {
  color: #222;
}

a:hover {
  color: #666;
}

.container {
  margin: 0 auto;
}
@media (min-width: 481px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 89.58vw;
  }
}

/*ｐｃとｓｐで表示を変えるときに使用*/
@media (min-width: 481px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/*各種色の設定*/
.red {
  color: #d90213;
}

.r-icon {
  color: #ca0e02;
}

.wht {
  color: #ffffff;
}

.bk {
  color: #222222;
}

/*見出しの設定*/
.module {
  margin: 0 0 43.32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .module {
    margin: 0;
  }
}
.module__title {
  font-size: 39.96px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 480px) {
  .module__title {
    font-size: 4.79vw;
  }
}
.module__title:after {
  content: "";
  display: block;
  width: 97px;
  height: 4.9px;
  background: #d90213;
  margin-top: 25.9px;
  position: absolute;
  top: 142%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 480px) {
  .module__title:after {
    width: 8.08vw;
    height: 0.93vw;
    margin-top: 3.93vw;
    width: 11.88vw;
  }
}
.module p {
  font-size: 18px;
  margin-top: 6.6px;
}
@media (max-width: 480px) {
  .module p {
    font-size: 1.2rem;
    margin-top: 1.25vw;
  }
}

/*------------------------------------------------
WordPress画像の配置
------------------------------------------------*/
.single {
  /* 画像配置 左 */
  /* 画像配置 中央 */
  /* 画像配置 右 */
}
.single img.alignleft {
  text-align: left;
}
.single img.aligncenter {
  display: block;
  margin: 1px auto;
}
.single img.alignright {
  display: block;
  margin: 1px 1px 1px auto;
}

/* 配置 */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

/*------------------------------------------------
ヘッダーのcssここから

--------------------------------------------------*/
.home main {
  background: url("images/calendar/bg-calendar.png") right bottom 360px no-repeat;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .home main {
    background: none;
  }
}
@media (max-width: 480px) {
  .home main {
    padding-top: 110px;
  }
}

.header {
  width: 100%;
  /* height: 6.5vw; */
  background-color: #ffffff;
  position: fixed;
  /* display: flex;
  flex-direction: column; */
  z-index: 1000;
  /*下の段のロゴとメニュー▼*/
}
@media (max-width: 480px) {
  .header {
    height: 19.79vw;
  }
}
.header__menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .header__menu-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100vw;
    overflow: hidden;
    background: #222;
  }
}
.header__menu-nav-item {
  /* height: 3.33vw; */
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* &:before {
    font-family: "Font Awesome 5 Pro";
    color: base.$wht;
    font-size: 1.6rem;
    margin-right:8px;

    @include base.respond(phone) {
      position: absolute;
      font-size:2.4rem;
    }
  } */
}
.header__menu-nav-item .fas {
  margin-right: 6px;
}
@media (max-width: 480px) {
  .header__menu-nav-item span {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__menu-nav-item {
    height: 8.33vw;
    font-size: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__menu-nav .grey {
  background-color: #f0edea;
  padding: 0.5em 1em;
}
.header__menu-nav .red-1,
.header__menu-nav .red-2 {
  background-color: #d90213;
}
.header__menu-nav .red-1 a,
.header__menu-nav .red-2 a {
  color: #ffffff;
}
.header__menu-nav .red-1 {
  padding: 0.5em 1em;
}
.header__menu-nav .red-1 .fas {
  margin-right: 4px;
}
@media (max-width: 480px) {
  .header__menu-nav .red-1 .fas {
    font-size: 2.1rem;
  }
}
@media (max-width: 480px) {
  .header__menu-nav .red-1 {
    padding: 0.5em;
    -ms-flex-preferred-size: 26%;
        flex-basis: 26%;
  }
}
.header__menu-nav .red-2 {
  padding: 0.5em 1em;
  border-left: 1px solid #ffffff;
}
.header__menu-nav .red-2 img {
  width: 16px;
  margin-right: 6px;
}
@media (max-width: 480px) {
  .header__menu-nav .red-2 img {
    width: 26px;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .header__menu-nav .red-2 {
    padding: 0.5em;
    width: 28.54vw;
    -ms-flex-preferred-size: 26%;
        flex-basis: 26%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__menu-nav .yellow {
  padding: 0.5em 1em;
  background: gold;
}
@media (max-width: 480px) {
  .header__menu-nav .yellow {
    -ms-flex-preferred-size: 26%;
        flex-basis: 26%;
  }
}
.header__menu-nav .yellow a {
  color: #444;
}
@media (max-width: 480px) {
  .header__menu-nav .yellow .fas {
    font-size: 2.6rem;
  }
}
.header__menu-nav .bk {
  padding: 0.5em 0;
  /* width: 22.92vw; */
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #222222;
}
.header__menu-nav .bk a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu-nav .bk a .hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  top: -0.2vw;
  right: 0;
  width: 5.36vw;
  height: 5.36vw;
  cursor: pointer;
  text-align: center;
}
.header__menu-nav .bk a .hamburger span {
  display: block;
  position: absolute;
  width: 3.96vw;
  height: 0.42vw;
  left: 0;
  background: #ffffff;
  border-radius: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__menu-nav .bk a .hamburger span:nth-child(1) {
  top: 3.04vw;
}
.header__menu-nav .bk a .hamburger span:nth-child(2) {
  top: 4.09vw;
}
.header__menu-nav .bk a .hamburger span:nth-child(3) {
  top: 5.13vw;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* margin-top: 0.87vw; */
  width: 100%;
  min-height: 70px;
  /*hoverのためのスタイル*/
  /*高さ調節のためのスタイル*/
}
.header__inner > a {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
@media (max-width: 768px) {
  .header__inner > a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.header__inner > nav {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 481px) {
  .header__inner > nav {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.header__inner-logo {
  max-width: 110px;
  margin-left: 20px;
  /* margin-left: 1.92vw; */
}
@media (max-width: 768px) {
  .header__inner-logo {
    /* width: 78.33vw; */
    margin: auto;
    max-width: 110px;
  }
}
@media (max-width: 480px) {
  .header__inner-logo {
    padding: 10px 0;
  }
}
@media (min-width: 767px) {
  .header__inner-logo {
    /* display: none; */
    position: absolute;
    top: 6px;
    left: 0;
  }
}
.header__inner-logo-wrapper {
  background: #fff;
}
.header__inner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.45vw;
}
.header__inner-list li:first-child {
  padding-left: 1.58vw;
  padding-right: 1.58vw;
}
.header__inner-item {
  padding-top: 1vw;
  height: 4.33vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__inner-item .drop {
  width: 100vw;
  /*height: 65px;*/
  text-align: left;
  position: absolute;
  top: 8.5vw;
  left: 0;
  padding: 25px 0;
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.header__inner-item .drop > li {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
.header__inner-item .drop > li.container {
  max-width: 1000px;
}
.header__inner-item .drop .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-item .drop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header__inner-item .drop ul li {
  line-height: 2;
  font-size: 1.3rem;
}
.header__inner-item .drop li {
  padding: 0;
}
.header__inner-item .drop li:not(:last-child) {
  margin-right: 2em;
}
.header__inner-item .drop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  /*font-size: 1.25vw;*/
}
.header__inner-item .drop p {
  margin-right: 0.38vw;
}
.header__inner-item .drop img {
  width: 0.4vw;
}
.header__inner-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*font-size: 1.25vw;*/
}
.header__inner-link .text {
  padding: 0 20px;
  border-left: 1px solid #bfbfbf;
  font-size: 1.4rem;
}
@media (max-width: 1100px) {
  .header__inner-link .text {
    padding: 0 5px;
  }
}
.header__inner-link img {
  width: 0.54vw;
  margin-top: 0.62vw;
  padding-bottom: 0.83vw;
}
.header__inner-item:hover {
  background-color: #333333;
}
.header__inner-item:hover .header__inner-link {
  color: #ffffff;
}
.header__inner-item:hover .header__inner-link img {
  opacity: 0;
}
.header__inner-item:hover .header__inner-link .text {
  border-color: #333333;
}
.header__inner .clear {
  opacity: 0;
}

/*======================================================
グローバルナビ再設定
======================================================*/
/* PCの時はナビが横並び・上部固定 */
.g-nav {
  width: 100%;
}
@media (max-width: 480px) {
  .g-nav {
    display: none;
  }
}
.g-nav > li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 1px solid #ccc;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 16.6666666667%;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .g-nav > li {
    font-size: 1.2rem;
  }
}
.g-nav > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 6px 0;
}
.g-nav > li a:link, .g-nav > li a:visited, .g-nav > li a:hover {
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.g-nav > li a:hover {
  color: #fff;
  background-color: #444;
}

.navi.fixed .g-nav {
  margin-bottom: 0;
}

.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.9);
}

.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* 2階層目設定 */
.g-nav a:hover {
  color: #fff;
  background-color: #d3d3d3;
}
.g-nav > li {
  display: table-cell;
}
.g-nav > li.toggle:hover .seco-menu {
  max-height: 9999px;
  opacity: 1;
  z-index: 100;
  padding: 20px 200px;
}
.g-nav > li > a {
  display: block;
  /* padding: 25.5px 1em 15.5px; */
  padding: 16px 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.g-nav > li .seco-menu {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
  background-color: #444;
  padding: 0 30px;
}

.menu_inner {
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu_inner li {
  margin: 0.5em 0 1.2em 0;
  -ms-flex-preferred-size: 22%;
  flex-basis: 30%;
  text-align: left;
}

.seco-menu a {
  color: #fff;
  padding: 10px;
}

.menu_inner li {
  position: relative;
  margin-left: 20px;
}
.menu_inner li a:hover {
  color: #d90213;
  /* background: #222; */
}
.menu_inner li a::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f138";
  font-weight: bold;
  font-weight: 900;
  margin-right: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  margin-right: 10px;
  color: #fff;
}

#breadcrumb {
  margin: 0 auto 30px;
  max-width: 1000px;
  width: 100%;
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#breadcrumb ul li {
  padding: 0 10px 0 0;
}
#breadcrumb ul li:not(:last-child)::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  margin-left: 10px;
}

/* 右サイドナビの位置と動き */
#nav1 {
  font-size: 100%;
  font-weight: bold;
  list-style: none;
  position: fixed;
  top: 50%;
  right: -170px;
  margin: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
}
#nav1 li {
  font-size: 1.3rem;
  display: block;
  /* 最初のメニューは左上に角丸適用 */
  /* 最後のメニューは左下に角丸適用 */
}
#nav1 li:first-of-type a:hover {
  border-radius: 8px 0 0 0;
}
#nav1 li:last-of-type a:hover {
  border-radius: 0 0 0 8px;
}
#nav1 li:not(li:last-of-type) {
  border-bottom: 1px solid #fff;
}
#nav1 li a {
  text-decoration: none;
  display: block;
  background-repeat: no-repeat;
  /* height:64px; */
  padding: 10px 0 10px 20px;
  color: #fff;
}
#nav1 li a:hover {
  background: #d90213;
  /* border-radius: 8px; */
}
#nav1 li a .fas, #nav1 li a .fad {
  font-size: 2.4rem;
  width: 32px;
}

.nav-text {
  margin-left: 20px;
}

/*------------------------------------------------
ヒーローイメージのcssここから

--------------------------------------------------*/
main {
  overflow: hidden;
}

.hero {
  width: 100%;
}

.menu__nav {
  position: fixed;
  right: -2px;
  top: 55%;
  z-index: 1000;
  opacity: 0.8;
}
@media (min-width: 481px) and (max-width: 769px) {
  .menu__nav {
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .menu__nav {
    bottom: 0;
    right: 0;
    top: auto;
    z-index: 100;
    width: 100vw;
    height: 19.52vw;
    background-color: #222222;
  }
}

.menu__right {
  padding: 0;
  background-color: #222222;
  width: 207px;
  border: 1px solid #707070;
  border-radius: 5px;
}
@media (max-width: 480px) {
  .menu__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 89.58vw;
    margin: 0 auto;
    height: 18.02vw;
    border-radius: 0px;
    border: none;
  }
}
.menu__right-list {
  line-height: 1.4;
  padding: 0.7em 2em 0.7em 0.6em;
  border-bottom: 2px solid white;
  list-style-type: none !important;
  font-weight: 600;
  height: 46px;
  position: relative;
}
@media (max-width: 480px) {
  .menu__right-list {
    border-bottom: none;
    padding: 0;
    width: 17.92vw;
    height: 19.52vw;
    border-right: 1px solid #ffffff;
  }
  .menu__right-list:first-child {
    border-left: 1px solid #ffffff;
  }
}
.menu__right-list:last-of-type {
  border-bottom: none;
}
@media (min-width: 481px) {
  .menu__right-list:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 17%;
    right: 8%;
    color: #ffffff;
    font-size: 1.3rem; /* 20210417修正 */
    margin-bottom: 0.2em;
  }
}
.menu__right-list a {
  color: #ffffff;
  font-size: 0.75em;
}
@media (max-width: 480px) {
  .menu__right-list a {
    font-size: 2.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 18.02vw;
  }
}
.menu__right-list a .size {
  font-size: 4.4vw;
}
@media (max-width: 480px) {
  .menu__right-list a p {
    margin-top: 2.25vw;
  }
}
@media (max-width: 480px) {
  .menu__right .contact {
    padding-top: 1.5vw;
  }
  .menu__right .contact p {
    text-align: center;
  }
}
@media (min-width: 481px) {
  .menu__right .map:after {
    content: "\f3c5";
  }
  .menu__right .new:after {
    content: "\f1b9";
  }
  .menu__right .old:after {
    content: "\f85b";
  }
  .menu__right .check:after {
    content: "\f6e3";
  }
  .menu__right .contact:after {
    content: "\f3cd";
  }
}

/* .slick-dots {
  bottom: -50px;
  @include respond(phone) {
           bottom: -22px; 
          }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
} */
/*----------------------------------------
メインイメージ部分
----------------------------------------*/
/* スマホの時は左右の矢印を消す */
@media (max-width: 480px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* スライドのレイアウト */
.swiper-wrapper {
  max-width: 2000px;
}

.main-image .swiper-container {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .main-image .swiper-container {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .main-image .swiper-container {
    margin-top: 0;
    padding-bottom: 0;
  }
}

.slide-image {
  width: 100%;
}

.slide-text {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
  opacity: 0;
  position: absolute;
  z-index: 10;
}

/* アウトランダー特設サイトへの誘導ボタン */
.slide-text-phev {
  border: 1px solid #fff;
  margin-bottom: 20px;
}
.slide-text-phev a {
  color: #fff;
  padding: 10px 0;
  display: block;
}
.slide-text-phev a:hover {
  color: #222;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.slide-text-phev02 {
  position: relative;
}

.slide-text-phev-shop {
  position: absolute;
  right: -20px;
  bottom: -10px;
  display: none;
}
@media (max-width: 480px) {
  .slide-text-phev-shop {
    right: -40px;
    bottom: 10px;
  }
}

.slide-text-phev02:hover ~ .slide-text-phev-shop {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  display: inherit;
  background: #ff0;
  cursor: pointer;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-weight: bold;
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .slide-text-phev02:hover ~ .slide-text-phev-shop {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    line-height: 70px;
  }
}

.slide-text06-sp {
  padding: 0 10px;
  background: #222;
}
.slide-text06-sp .slide-text-phev {
  font-size: 1.2rem;
}

/* アウトランダー特設サイトへの誘導ボタンここまで */
.slide-text01 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  width: 40vw;
  max-width: 700px;
}
@media (max-width: 480px) {
  .slide-text01 {
    width: 70vw;
  }
}

.slide-text02 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  width: 30vw;
  max-width: 520px;
}
@media (max-width: 480px) {
  .slide-text02 {
    width: 40vw;
    left: 10px;
  }
}
.slide-text02 .slide-text06 {
  max-width: 650px;
  left: 8%;
}
@media (max-width: 600px) {
  .slide-text02 .slide-text06 {
    top: 60%;
  }
}

.slide-text03 {
  left: 10%;
  bottom: 20px;
  left: 30px;
  max-width: 340px;
  width: 40vw;
}
@media (min-width: 1400px) {
  .slide-text03 {
    left: 100px;
    bottom: 50px;
  }
}
@media (max-width: 480px) {
  .slide-text03 {
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.slide-text04 {
  bottom: 40px;
  left: 80px;
  width: 26%;
}
@media (max-width: 700px) {
  .slide-text04 {
    bottom: 20px;
    left: 40px;
  }
}
@media (max-width: 480px) {
  .slide-text04 {
    width: 50%;
    bottom: 10px;
    left: 10px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev a,
.swiper-button-next a {
  color: #fff;
}

/*　スライドテキストの動き　*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.swiper-slide-active p {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*------------------------------------------------
新型コロナウィルス対策
--------------------------------------------------*/
.btn-covid {
  max-width: 1000px;
  text-align: center;
  margin: 40px auto 0;
}

.btn-covid p, .btn-covid a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  padding: 0;
  width: 100%;
  margin-bottom: 6px;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-covid p.btn-blue, .btn-covid a.btn-blue {
  background: #0fcad1;
}

.btn-covid p.btn-green, .btn-covid a.btn-green {
  background: #29b992;
}

.btn-covid p.btn-dark-blue, .btn-covid a.btn-dark-blue {
  background: #005580;
}

@media (max-width: 767px) {
  .btn-later-suzuki, .btn-later-mitsubishi {
    height: 80px;
    font-size: 1.5vw;
  }
}
.btn-covid {
  display: grid;
  padding: 20px;
}
@media (min-width: 678px) {
  .btn-covid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  }
}

/*------------------------------------------------
TOP特別なお知らせ（背景赤、幅100%のボタン）
--------------------------------------------------*/
.btn-special-info {
  background: #00cef7;
  display: block;
}
.btn-special-info a {
  color: #fff;
  padding: 10px 0;
  font-weight: bold;
  display: block;
  font-size: 2rem;
}
.btn-special-info a:hover {
  background: #6fd9ee;
}

/*------------------------------------------------
メニュー欄のcssここから
--------------------------------------------------*/
.menu {
  padding: 3vw 0 4.58vw 0;
}
@media (max-width: 768px) {
  .menu {
    padding: 4.58vw 0 6.29vw 0;
  }
}
@media (max-width: 480px) {
  .menu .container {
    width: 93.58vw;
  }
}
.menu .menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.menu .menu__inner-list {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
}
@media (max-width: 768px) {
  .menu .menu__inner-list {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.menu .menu__inner-list p {
  margin-bottom: 0;
}
.menu .menu__inner-list .link {
  width: 100%;
  height: 210px;
  border: solid 1px #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*それぞれの画像の大きさと調節*/
}
@media (max-width: 768px) {
  .menu .menu__inner-list .link {
    width: 98%;
    margin: 2%;
  }
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link {
    width: 98%;
    height: 16.67vw;
    margin: 2%;
  }
}
.menu .menu__inner-list .link .map {
  width: 51px;
  margin-top: 34.8px;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .map {
    width: 4.78vw;
    margin-top: 2.9vw;
  }
}
.menu .menu__inner-list .link .tool {
  width: 84px;
  margin-top: 28px;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .tool {
    width: 7.92vw;
    margin-top: 2.33vw;
  }
}
.menu .menu__inner-list .link .car {
  width: 116px;
  margin-top: 48px;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .car {
    width: 10.96vw;
    margin-top: 4vw;
  }
}
.menu .menu__inner-list .link .carseven {
  width: 154px;
  margin-top: 60px;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .carseven {
    width: 14.57vw;
    margin-top: 5vw;
  }
}
.menu .menu__inner-list .link .txt {
  font-size: 12px;
  width: 100%;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #222222;
  margin-top: auto;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .txt {
    font-size: 1.2rem;
    width: 100%;
    height: 3.4vw;
    padding: 10px 0;
  }
}
.menu .menu__inner-list .link .big {
  font-size: 15px;
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .big {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .menu .menu__inner-list .link .small {
    -webkit-transform: scale(0.6);
    -webkit-transform-origin: bottom;
    font-size: 1.2rem;
    width: 170%;
    height: 8.8vw;
  }
}
.menu__bn {
  margin-top: 41px;
}
@media (max-width: 480px) {
  .menu__bn {
    margin-top: 3.13vw;
  }
}

/*------------------------------------------------
YouTube
--------------------------------------------------*/
.youtube-box {
  max-width: 600px;
  margin: 20px auto;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 10px auto;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.youtube-entry {
  text-align: center;
}

/*------------------------------------------------
infoのcssここから

--------------------------------------------------*/
.info {
  padding: 61px 0 63px 0;
  background-color: #f0edea;
}
@media (max-width: 480px) {
  .info {
    padding: 3.33vw 0 7.92vw 0;
  }
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 81px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*個別の調整*/
}
@media (max-width: 480px) {
  .info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8.93vw;
  }
}
.info__inner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  height: 317px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .info__inner-list {
    width: 100%;
    height: 98.51vw;
  }
  .info__inner-list:not(:last-child) {
    margin-bottom: 6.63vw;
  }
}
.info__inner-list .photo {
  /* max-width: 220px; */
}
@media (max-width: 480px) {
  .info__inner-list .photo {
    width: 100%;
    text-align: center;
  }
}
.info__inner-list .dt {
  font-size: 1.3rem;
  color: #809100;
}
@media (max-width: 480px) {
  .info__inner-list .dt {
    font-size: 1.3rem;
    margin-top: 3.33vw;
  }
}
.info__inner-list .txt {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .info__inner-list .txt {
    font-size: 1.4rem;
    margin-top: 3.96vw;
  }
}
.info__inner-list .dt, .info__inner-list .txt {
  margin-top: 12.6px;
}
@media (max-width: 480px) {
  .info__inner-list .dt, .info__inner-list .txt {
    margin-top: 3.05vw;
  }
}
.info__inner-list .place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.info__inner-list .place img {
  /* width: 27.1px; */
  width: 19.3px;
}
@media (max-width: 480px) {
  .info__inner-list .place img {
    width: 11.04vw;
  }
}
.info__inner-list .place p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 8.2px;
}
@media (max-width: 480px) {
  .info__inner-list .place p {
    font-size: 3.13vw;
    margin-left: 2.85vw;
  }
}
.info__inner .car .place img, .info__inner .tyre .place img {
  width: 19.3px;
}
@media (max-width: 480px) {
  .info__inner .car .place img, .info__inner .tyre .place img {
    width: 7.85vw;
  }
}
.info__inner .car .place p, .info__inner .tyre .place p {
  font-size: 1.3rem;
  margin-left: 5.8px;
}
@media (max-width: 480px) {
  .info__inner .car .place p, .info__inner .tyre .place p {
    font-size: 1.2rem;
    margin-left: 2.5vw;
  }
}
.info__inner .car-70 .place p {
  font-size: 1.2rem;
  margin-left: 5.8px;
}
@media (max-width: 480px) {
  .info__inner .car-70 .place p {
    font-size: 1.2rem;
    margin-left: 2.58vw;
  }
}
.info__btn {
  font-size: 12px;
  margin: 52px auto 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 142px;
  padding: 10px 20px;
  background-color: #121212;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .info__btn {
    width: 33.96vw;
    font-size: 2.92vw;
    padding: 1.35vw 3.4vw 1.35vw 3.92vw;
    margin: 10.33vw auto 7.92vw auto;
  }
}
.info__btn .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}
.info__btn .arrow-right {
  width: 12px;
  margin-left: 5px;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .info__btn .arrow-right {
    width: 2.7vw;
    margin-left: 3.46vw;
  }
}

.btn-top-information {
  margin: 80px auto 20px;
}

.e-info {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  background: #fff;
  margin: 40px auto 20px;
}

/*------------------------------------------------
snsのcssここから

--------------------------------------------------*/
.sns {
  padding: 50px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 481px) {
  .sns {
    background: url(images/sns/bg-sns.jpg) no-repeat center bottom 50px;
  }
}
.sns .module__title::after {
  top: 74%;
}

.sns__inner {
  margin-top: 40px;
}

.top-sns-wrapper {
  max-width: 1000px;
  margin: auto;
}
.top-sns-wrapper > div {
  max-width: 310px;
  padding: 30px;
  margin: auto;
}
.top-sns-wrapper > div a {
  display: block;
}

.module-top-sns {
  position: relative;
  z-index: 1;
}
.module-top-sns-facebook02 {
  background: #222;
}
.module-top-sns::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.module-top-sns02::before {
  background: #222;
  color: #fff;
}

.btn-sns {
  color: #fff;
  font-size: 1.2rem;
}
.btn-sns p {
  border-radius: 20px;
  background: #222;
  padding: 4px 10px;
  display: block;
  color: #fff;
}
.btn-sns p a {
  color: #fff;
}

/* @include base.respond(phone) {
           padding: 5.42vw 0 11vw 0; 
          }



  &__inner {
    margin-top: 33.2px;
    display: flex;
    flex-direction: column;
    align-items: center;

    @include base.respond(phone) {
      margin-top: 9.97vw;
    }

    &-link{
      transition: all .3s;
      &:hover {
        opacity: 0.6;
      }
    }


    & img {
      width: 600px;


      @include base.respond(phone) {
        width: 89.79vw;
      }
    }

    & p {
      font-size: 14px;
      font-weight: 600;
      margin-top: 27px;

      @include base.respond(phone) {
        font-size: 2.92vw;
        width: 60.83vw;
        margin-top: 3.05vw;
        line-height: 1.714;
      }
    }
  }
}
 */
/*　hover時にQRコード表示　*/
.sns-logo {
  /*   a::before {
      opacity: 0;
      transition: 0.5s;
      content: "";
      position: absolute;
      border: 7px solid transparent;
      border-top: 14px solid #cd0276;
      bottom:12px;
      left:calc(50% - 7px);
      margin-top: -3px;
      visibility: hidden;
      pointer-events: none;
    } */
}
.sns-logo span {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  color: #333;
  padding: 5px;
  max-width: 500px;
  top: -50px;
  left: -100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  word-wrap: break-word;
  border-radius: 5px;
  visibility: hidden;
  pointer-events: none;
  -webkit-box-shadow: 4px 4px 4px 4px rgba(51, 51, 51, 0.5);
          box-shadow: 4px 4px 4px 4px rgba(51, 51, 51, 0.5);
}
@media (max-width: 480px) {
  .sns-logo span {
    left: 0;
    top: 0;
  }
}
.sns-logo .qr-insta {
  border: 6px solid #f2f2f2;
}
.sns-logo .qr-facebook {
  border: 6px solid #f2f2f2;
}
.sns-logo a:hover:before {
  opacity: 1;
  visibility: visible;
}
.sns-logo a:hover img {
  opacity: 1;
}
.sns-logo a:hover span {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------------------
workのcssここから

--------------------------------------------------*/
.work {
  padding: 60px 0 80px 0;
  background-color: #f0edea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .work {
    background-color: #ffffff;
    padding: 1.68vw 0;
  }
}
.work .module__title:after {
  top: 82%;
}
@media (max-width: 480px) {
  .work .module__title:after {
    top: 62%;
  }
}
.work__inner {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .work__inner {
    margin-top: 4.67vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.work__inner-list {
  padding: 5px;
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  /* @include base.respond(phone) {
    &:first-child {
      margin-top: 4.01vw;
    }
    &:not(:last-child) {
      margin-bottom: 5.21vw;
    }
  } */
}
@media (max-width: 600px) {
  .work__inner-list {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
  }
}
@media (max-width: 480px) {
  .work__inner-list {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.work__inner img {
  /* width: 240px; */
  width: 300px;
}
@media (max-width: 480px) {
  .work__inner img {
    width: 89.58vw;
  }
}

/*------------------------------------------------
sportsのcssここから

--------------------------------------------------*/
.home .sports {
  padding: 70px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .home .sports {
    padding: 7.25vw 0 3.96vw 0;
    background-color: #f2f2f2;
  }
}
.home .sports .module__title:after {
  top: 143%;
}
.home .sports__inner {
  margin-top: 23.6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .home .sports__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8.97vw;
  }
}
.home .sports__inner-list:not(:first-child) {
  margin-left: 76px;
}
@media (max-width: 480px) {
  .home .sports__inner-list:not(:first-child) {
    margin-left: 0;
    margin-top: 3.54vw;
  }
}
.home .sports__inner-list img {
  width: 402px;
}
@media (max-width: 480px) {
  .home .sports__inner-list img {
    width: 90.42vw;
  }
}
.home .sports__inner .link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .sports__inner .link:hover {
  opacity: 0.6;
}

/*------------------------------------------------
calendarのcssここから

--------------------------------------------------*/
.calendar-wrapper {
  background-color: #f2f2f2;
  width: 100%;
}

.calender {
  padding: 3.5vw 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) {
  .calender {
    background-image: unset;
    padding: 3.5vw 0 0 0;
  }
}
.calender .module__title:after {
  top: 143%;
}
@media (max-width: 768px) {
  .calender .container {
    margin-top: 7.17vw;
    width: 100vw;
  }
}
.calender__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .calender__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.calender__inner-box {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25.7px 22px 10px 22px;
  background-color: #f2f2f2;
  margin-top: 31.8px;
}
@media (max-width: 768px) {
  .calender__inner-box {
    width: 100vw;
    margin-top: 2.5vw;
    padding: 2.14vw 1.83vw 0.83vw 1.83vw;
  }
}
.calender__inner-box .sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /*スズキアイコンのサイズ調整*/
}
.calender__inner-box .sub-ttl img {
  width: 33px;
}
@media (max-width: 768px) {
  .calender__inner-box .sub-ttl img {
    width: 6.86vw;
  }
}
.calender__inner-box .sub-ttl p {
  font-size: 18px;
  font-weight: 600;
  color: #d90213;
  margin-left: 22px;
}
@media (max-width: 768px) {
  .calender__inner-box .sub-ttl p {
    font-size: 3.75vw;
    margin-left: 1.83vw;
  }
}
.calender__inner-box .sub-ttl .size {
  width: auto;
  height: 35.5px;
}
@media (max-width: 480px) {
  .calender__inner-box .sub-ttl .size {
    height: 6.85vw;
  }
}
.calender__inner-box .workday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
@media (max-width: 480px) {
  .calender__inner-box .workday {
    margin-top: 4.25vw;
  }
}
.calender__inner-box .workday img {
  width: 206px;
}
@media (max-width: 480px) {
  .calender__inner-box .workday img {
    width: 42.92vw;
  }
}
.calender__inner-box .workday img:not(:first-child) {
  margin-left: 23px;
}
@media (max-width: 480px) {
  .calender__inner-box .workday img:not(:first-child) {
    margin-left: 4.72vw;
  }
}
.calender__inner-box .time {
  font-size: 11px;
  margin-top: 14.4px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 480px) {
  .calender__inner-box .time {
    font-size: 2.29vw;
    margin-top: 3.13vw;
    margin-left: 3vw;
    margin-bottom: 2.08vw;
  }
}

/* カレンダープラグインレイアウト修正 */
.xo-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.xo-month-wrap {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 1%;
}

.month-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #555;
}

.xo-event-calendar table.xo-month .month-event-title {
  padding: 3px;
}

/*------------------------------------------------
footerのcssここから

--------------------------------------------------*/
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 65px;
  background-color: #222222;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__nav-item:not(:first-child) {
  margin-left: 3.85vw;
}
.footer__nav-item a {
  color: #ffffff;
}
.footer__menu {
  background-color: #f0edea;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38.3px 0 33px 0;
  /* &-list1 {
    width: 160.8px;
  } */
  /* &-list2 {
    width: 98px;
    margin-right: 91px;
  } */
  /* &-list3 {
    width: 220.8px;
    margin-right: 61.6px;
  } */
}
.footer__menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.footer__menu-list1, .footer__menu-list2, .footer__menu-list3 {
  font-size: 11px;
  font-weight: 600;
  padding-right: 1%;
}
@media (max-width: 768px) {
  .footer__menu-list1, .footer__menu-list2, .footer__menu-list3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer__menu-list1 li:not(:first-child), .footer__menu-list2 li:not(:first-child), .footer__menu-list3 li:not(:first-child) {
  margin-top: 7.4px;
}
.footer__menu-info {
  /* width: 293px; */
  font-weight: 600;
  border-left: 1px solid #707070;
  padding-left: 40.6px;
}
.footer__menu-info-ttl {
  font-size: 14px;
}
.footer__menu-info-txt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.769;
  margin-top: 9px;
}
.footer__menu-info .google {
  margin-top: 9px;
}
.footer__menu-info .google__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__menu-info .google__link p:not(:first-child) {
  margin-left: 7.6px;
}
.footer__menu-info .google__link .map {
  width: 17.4px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.footer__menu-info .google__link .logo {
  width: 66px;
  -ms-flex-item-align: center;
      align-self: center;
}
.footer__menu-info .google__link .txt {
  -ms-flex-item-align: center;
      align-self: center;
}
.footer__menu-info-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 9.4px;
}
.footer__menu-info-sns .icon {
  font-size: 25px;
}
.footer__menu-info-sns .icon:not(:first-child) {
  margin-left: 16.6px;
}
.footer__menu .copy-r {
  margin-top: 32.6px;
  font-size: 11px;
}
.footer .menu__nav {
  position: unset;
  border-bottom: 1px solid #ffffff;
  opacity: 1;
}
@media (max-width: 480px) {
  .footer .menu__nav {
    position: fixed;
    bottom: 0;
    border-top: 1px solid #fff;
  }
}
.footer__end {
  padding: 7.19vw 0 2.08vw 0;
  background-color: #222222;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
}
@media (max-width: 480px) {
  .footer__end {
    padding: 4vw 0 24vw 0;
  }
}
.footer__end .ttl {
  font-size: 2.92vw;
}
.footer__end .footer__menu-info-sns {
  margin-top: 2.29vw;
}
.footer__end .icon {
  font-size: 5.29vw;
}
.footer__end .copy-r {
  font-size: 2.29vw;
  margin-top: 2.02vw;
}

/*  ページトップへ戻る  */
#pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 3rem;
  background: rgba(51, 51, 51, 0.7);
  width: 60px;
}

#pageTop i {
  padding-top: 6px;
}

#pageTop a {
  display: block;
  z-index: 999;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*------------------------------------------------
ドロワーのcssここから

--------------------------------------------------*/
@media (max-width: 480px) {
  .open {
    /* スマホナビオープン時に「MENU」のテキストの色を変えて見えないようにする */
  }
  .open .global-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .open .g-nav li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  .open .g-nav li a {
    padding-left: 10px;
  }
  .open .g-nav li ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .open .g-nav li.toggle .seco-menu {
    padding: 20px;
  }
  .open .header__menu-nav-item span.hamburger-text {
    color: #222;
  }
  .header__menu-nav-item span.hamburger-text {
    display: block;
  }
  .open .header__menu-nav .bk {
    right: 0;
  }
  .open #nav-toggle {
    position: fixed;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open .global-nav {
    background-color: #A6A6A7;
    bottom: 0;
    display: block;
    overflow: scroll;
    position: fixed;
    right: 0;
    top: 0;
    transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 70%;
    z-index: 990;
  }
  .open .global-nav {
    background-color: #A6A6A7;
    bottom: 0;
    display: block !important;
    overflow: scroll;
    position: fixed;
    right: 0;
    /*top: 0;*/
    top: 8.33vw !important;
    transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 70%;
    z-index: 990;
  }
  .open .global-list {
    height: 100vh;
    padding: 0;
    text-align: center;
    width: 100%;
    display: block !important;
    position: relative;
  }
  .open .global-list > li {
    border-bottom: 1px dashed black;
    display: block;
    height: auto;
  }
  .open .global-list .header__inner-link {
    font-size: 14px;
    line-height: 2rem;
  }
  .open .global-list .header__inner-link .text {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }
  .open .global-list .header__inner-item .drop li:not(:last-child) {
    border-bottom: 1px dashed white;
  }
  .open .global-list > li > a {
    padding: 0;
  }
  .open .global-list > li > a > img,
  .open .global-list > li ul > li > a > img {
    display: none !important;
  }
  .open .global-list > li:hover ul {
    display: none;
  }
  .open .global-list li ul {
    display: block !important;
    position: relative;
    text-align: center;
    padding: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
  }
  .open .global-list li ul * {
    display: block !important;
    position: relative;
    text-align: center;
    padding: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 2rem;
  }
  .open .header__inner-item .drop .container {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*------------------------------------------------
下層ページのcssここから
--------------------------------------------------*/
p, li, dt, dd, a {
  line-height: 1.5em;
}

/* 下層ページではメイン上にマージン */
main:not(.home main) {
  /* margin-top:6.5vw; */
}
@media (max-width: 480px) {
  main:not(.home main) {
    padding: 40px 0;
  }
}

@media (max-width: 999px) {
  section:not(.home section),
  article:not(.home section) {
    padding: 0 1%;
  }
}

/* ページヘッダータイトル 202105追加のページタイトル部分 */
.page-head-title {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 84px;
}
@media (max-width: 768px) {
  .page-head-title {
    margin-top: 120px;
  }
}
@media (max-width: 480px) {
  .page-head-title {
    margin-top: 40px;
  }
}

.page-head-title-img img {
  width: 100%;
}

.page-head-title-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
  /* font-family: 'Noto Serif', serif; */
  font-weight: bold;
  color: #fff;
}
@media (max-width: 480px) {
  .page-head-title-text {
    left: 10px;
  }
}
.page-head-title-text p {
  font-size: 3.3rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  .page-head-title-text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .page-head-title-text p {
    font-size: 1.6rem;
  }
}
.page-head-title-text p::first-letter {
  font-size: 4.6rem;
}
@media (max-width: 480px) {
  .page-head-title-text p::first-letter {
    font-size: 2rem;
  }
}
.page-head-title-text p span {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .page-head-title-text p span {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .page-head-title-text p span {
    font-size: 1.1rem;
  }
}

/* ページタイトル */
:not(.home .module) .module__title {
  font-size: 3rem;
}
:not(.home .module) p.module__title-jp {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  :not(.home .module) p.module__title-jp {
    font-size: 1.2rem;
    padding-bottom: 2em;
  }
}

/* 主にh3などで使うタイトル 色は別指定 */
.page-sub-title {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
}

/* セクションのタイトル */
.section-title-large, .section-title-short {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  font-size: 2.3rem;
  margin-bottom: 40px;
}

.section-title-short {
  text-align: center;
}
.section-title-short:before {
  content: "";
  position: absolute;
  top: 55%;
  display: inline-block;
  width: 40px;
  height: 6px;
  background-color: #ca0e02;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.section-title-short:before {
  left: -5px;
}
.section-title-short:after {
  right: 0;
}

.section-title-large {
  border-bottom: 2px solid #ca0e02;
  padding-bottom: 10px;
  width: 100%;
}
.section-title-large:before {
  content: "";
  position: absolute;
  top: 40%;
  display: inline-block;
  width: 40px;
  height: 6px;
  background-color: #ca0e02;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  left: -5px;
}
.section-title-large:after {
  right: 0;
}

/* ボタンの形 */
.page-btn a {
  text-align: center;
  display: inline-block;
  padding: 6px 40px;
  border-radius: 40px;
  border: 1px solid #d90213;
  background: #d90213;
  color: #fff;
}
.page-btn a:after {
  content: "\f138";
  font-family: "Font Awesome 5 Pro";
  margin-left: 10px;
  font-weight: 400;
}
.page-btn a:hover {
  background: #ccc;
}

/* 動くボタン　*/
.btn {
  display: block;
  text-decoration: none;
  position: relative;
  /*  border: 1px solid #5bc8ac; */
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  /*  width: 240px;
      height: 48px;
      line-height: 48px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background: #fff;
  font-size: 20px;
}
.btn span {
  width: 100%;
  height: 100%;
  /* color: #5bc8ac; */
  z-index: 10;
}
.btn span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  /* background: #5bc8ac; */
  border-radius: 40px;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn span:hover {
  color: #fff;
}
.btn span:hover:before {
  width: 100%;
}

/* ボタンに矢印をつける */
.btn-arrow span:after {
  content: "\f138";
  font-family: "Font Awesome 5 Pro";
  margin-left: 10px;
  font-weight: 400;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ボタンの色を背景赤に */
.btn-red {
  background: #d90213;
  border: 1px solid #d90213;
}
.btn-red span {
  color: #ffffff;
}
.btn-red span:before {
  background: #f2f2f2;
}
.btn-red span:hover {
  color: #d90213;
  border-radius: 40px;
}

/* ボタンの色を背景黒に */
.btn-black {
  background: #222222;
  border: 1px solid #222222;
}
.btn-black span {
  color: #ffffff;
}
.btn-black span:before {
  background: #f2f2f2;
}
.btn-black span:hover {
  color: #222222;
  /* background: base.$gray-dark; */
  /* border:1px solid base.$red; */
  border-radius: 40px;
}

/* ボタンの色を背景白ボーダー赤に */
.btn-red-solid {
  background: #ffffff;
  border: 1px solid #d90213;
}
.btn-red-solid span {
  color: #d90213;
}
.btn-red-solid span:before {
  background: #d90213;
}
.btn-red-solid span:hover {
  color: #ffffff;
  border-radius: 40px;
}

/* ボタンの色を背景白ボーダー黒に */
.btn-black-solid {
  background: #ffffff;
  border: 1px solid #222222;
}
.btn-black-solid span {
  color: #222222;
}
.btn-black-solid span:before {
  background: #222222;
}
.btn-black-solid span:hover {
  color: #ffffff;
  border-radius: 40px;
}

/* ボタンのサイズ */
.btn-large {
  width: 240px;
  height: 48px;
  line-height: 46px;
}

.btn-small {
  width: 160px;
  height: 40px;
  line-height: 38px;
  font-size: 1.6rem;
}

/* 幅を1000pxに強制したい場合 */
.w1000 {
  max-width: 1000px !important;
  margin: 0 auto;
  padding: 20px 2%;
}

/* テーブル */
table {
  width: 100%;
  margin: auto;
}
table th, table td {
  border-style: solid;
  padding: 8px;
}
table th {
  text-align: left;
}

/*clearfix*/
.cf:after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 480px) {
  #breadcrumb {
    display: none;
  }
}

/*================================================
70周年記念車css
================================================*/
/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#eclipse:checked ~ #eclipse_content, #mirage:checked ~ #mirage_content, #hustler:checked ~ #hustler_content, #mirage:checked ~ #mirage_content, #d2:checked ~ #d2_content, #d2cus:checked ~ #d2cus_content, #spacia:checked ~ #spacia_content, #spaciacus:checked ~ #spaciacus_content, #spaciagear:checked ~ #spaciagear_content, #eclipse:checked ~ #eclipse_content, #rvr:checked ~ #rvr_content, #solio:checked ~ #solio_content, #ekwagonM:checked ~ #ekwagonM_content, #ekwagonG:checked ~ #ekwagonG_content, #ekspace:checked ~ #ekspace_content, #ekcross:checked ~ #ekcross_content, #ekcrospa:checked ~ #ekcrospa_content {
  display: block;
}

/*.anniversary .module {
	background-image: url("images/anniversary/70th_icon.jpg");
	background-repeat: no-repeat;
	background-position: 250px 0px;
    padding: 30px 0px 12px 0px;
}*/
.page-aniver-70th {
  width: 385px;
  margin-left: auto;
  margin-right: auto;
}
.page-aniver-70th div:first-child {
  padding-right: 12px;
}
.page-aniver-70th div:nth-child(2) {
  padding-top: 25px;
}

.anniversary .content {
  position: relative;
}

.mitsubishi {
  position: absolute;
  top: -5px;
  left: 0;
}

.suzuki {
  position: absolute;
  top: 215px;
  left: 0;
}

.page-aniver-menu {
  float: left;
  margin-right: 2%;
  width: 28%;
  text-align: center;
  background-color: #ed9721;
  color: #fff;
  padding: 18px 0px 20px;
  cursor: pointer;
  letter-spacing: 1px;
}

.anniversary input:checked + .page-aniver-menu {
  background-color: #cc0229;
}

label.ml10 {
  margin-left: 12%;
}

.page-aniver-main {
  border-top: 1px #ccc solid;
}

#ekspace_content .page-aniver-main div:first-child {
  width: 57%;
}
#ekspace_content .page-aniver-main div:nth-child(2) {
  width: 43%;
}

.page-aniver-title01a {
  color: #d90213;
  text-align: center;
  padding: 10px 0 14px;
  border-top: 1px #d90213 solid;
  border-bottom: 1px #d90213 solid;
  letter-spacing: 1px;
}

.page-aniver-title01b {
  color: #222;
  text-align: center;
  padding: 10px 0 14px;
  border-top: 1px #222 solid;
  border-bottom: 1px #222 solid;
  letter-spacing: 1px;
}

.page-aniver-box01 li {
  border: 10px #cc0229 solid;
  padding: 20px 20px 20px 80px;
  -ms-flex-preferred-size: 490px;
      flex-basis: 490px;
  margin-right: 20px;
  position: relative;
}

.page-aniver-no {
  position: absolute;
  top: -10px;
  left: -10px;
}

.page-aniver-title02 {
  padding-left: 50px;
}

.page-aniver-txtbox01 {
  width: 190px;
  margin-right: 14px;
}

.page-aniver-txtbox02b {
  width: 260px;
  margin-right: 20px;
}

.page-aniver-btn {
  background-color: #cc0229;
  text-align: center;
  margin-bottom: 75px;
}
.page-aniver-btn a {
  color: #fff;
  display: inline-block;
  padding: 15px 0;
  width: 100%;
  letter-spacing: 1px;
}
.page-aniver-btn a::after {
  content: "";
  background-image: url("images/anniversary/arrow_icon.jpg");
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-top: 3px;
}

.page-aniver-box02 {
  border: 10px #cc0229 solid;
  padding: 35px 20px 20px 80px;
  position: relative;
}

.page-aniver-box02b {
  border: 10px #cc0229 solid;
  padding: 35px 30px 20px 120px;
  position: relative;
}

.page-aniver-txtbox02a {
  width: 250px;
  margin-left: 20px;
}

.page-aniver-box03 {
  width: 870px;
  margin-right: auto;
  margin-left: auto;
}
.page-aniver-box03 li {
  width: 260px;
  margin-right: 45px;
}

.page-aniver-txtbox03 {
  margin-right: 25px;
  width: 525px;
}

.page-aniver-txtbox04 {
  margin-right: 30px;
  width: 350px;
}

.page-aniver-title02b {
  padding: 20px 0 0 0;
  margin-right: 30px;
  font-weight: bold;
}

.page-aniver-box04a {
  border: 10px #d90213 solid;
  padding: 25px 50px 25px 50px;
}

.page-aniver-title03a {
  color: #fff;
  text-align: center;
  padding: 10px 0 3px 0;
  background-color: #d90213;
  letter-spacing: 1px;
}

.page-aniver-box05a {
  -ms-flex-preferred-size: 47.5%;
      flex-basis: 47.5%;
  margin-right: 5%;
}

.page-aniver-text02 {
  -ms-flex-preferred-size: 220px;
      flex-basis: 220px;
  margin-left: 20px;
}

.page-aniver-box04b {
  border: 10px #ed9721 solid;
  padding: 25px 50px 25px 50px;
}

.page-aniver-title03b {
  color: #fff;
  text-align: center;
  padding: 10px 0 3px 0;
  background-color: #ed9721;
  letter-spacing: 1px;
}

.page-aniver-box05b {
  margin-right: 4%;
  -ms-flex-preferred-size: 58%;
      flex-basis: 58%;
}

.page-aniver-box05c {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
}

/* .page-aniver-text03 {} */
.page-aniver-text04 {
  width: 260px;
}

.page-aniver-box06 {
  width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.page-aniver-box06 li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-right: 4%;
}

.page-aniver-led01 {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-right: 4%;
}

.page-aniver-redbg {
  background-color: #cc0229;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 4%;
}

.page-aniver-led02 {
  -ms-flex-preferred-size: 28%;
      flex-basis: 28%;
  margin-right: 3%;
}

.page-aniver-txtbox05 {
  background-color: #ededed;
  padding: 12px 30px;
  width: 686px;
}
.page-aniver-txtbox05 p:first-child {
  padding-right: 30px;
  border-right: #5e5e5e solid 1px;
  margin-right: 30px;
}

.page-other-title03 {
  color: #fff;
  background-color: #ed9721;
  padding: 5px;
}

.page-aniver-txtbox06a {
  -ms-flex-preferred-size: 58%;
      flex-basis: 58%;
  margin-right: 2%;
}

.page-aniver-txtbox06b {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.page-aniver-box07a li {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  margin-right: 5%;
}

.page-aniver-txtbox07 {
  width: 430px;
  margin-right: 20px;
}

.page-aniver-box08 li {
  -ms-flex-preferred-size: 27.5%;
      flex-basis: 27.5%;
  margin-right: 9%;
}

.page-aniver-txtbox08 {
  background-color: #ededed;
  padding: 15px 80px;
}

.page-aniver-box09a {
  width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.page-aniver-box09b li {
  -ms-flex-preferred-size: 28%;
      flex-basis: 28%;
  margin-right: 3%;
}
.page-aniver-box09b li:first-child {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
  margin-right: 3%;
}

.page-aniver-main div:nth-child(2) {
  padding-top: 2.5%;
}

.page-aniver-text01 {
  margin-top: 10px;
}

.aniMinTxt {
  padding: 7px 0px 11px;
  line-height: 1.3;
}
.aniMinTxt span {
  font-size: 1.2rem;
}

@media (max-width: 1000px) {
  .page-aniver-txtbox06a {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    margin-right: 3%;
  }
  .page-aniver-txtbox06b {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
  }
}
@media (max-width: 900px) {
  .page-aniver-box03 {
    width: 100%;
  }
  .page-aniver-box03 li {
    width: 30%;
    margin-right: 5%;
  }
}
@media (max-width: 800px) {
  .anniversary .flex {
    display: block;
  }
  .page-aniver-main {
    text-align: center;
  }
  .page-aniver-box01 li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    padding: 20px 20px 20px 90px;
  }
  .page-aniver-no img {
    width: 80%;
  }
  .page-aniver-title02 {
    padding-left: 0;
  }
  .page-aniver-box06 {
    width: 100%;
  }
  .page-aniver-box06 li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
  .page-aniver-box06 li div {
    text-align: center;
  }
  .page-aniver-box06 li:first-child p:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .mitsubishi {
    top: -6px;
    width: 70px;
  }
  .suzuki {
    top: 221px;
    width: 70px;
  }
  .page-aniver-box04a, .page-aniver-box04b {
    padding: 25px 15px 25px 15px;
  }
  .page-aniver-box02b {
    padding: 20px 20px 20px 90px;
  }
  .page-aniver-led01 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
  .flex .page-aniver-led01:first-child {
    margin-bottom: 25px;
  }
  .page-aniver-txtbox01 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-aniver-box01 li:first-child {
    margin-bottom: 20px;
  }
  .page-aniver-title02b {
    padding: 0;
    margin-right: 0;
    font-weight: bold;
  }
  .page-aniver-txtbox02a {
    width: 100%;
    margin-left: 0;
  }
  .page-aniver-txtbox03 {
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-aniver-box09a {
    width: 100%;
  }
  .page-aniver-txtbox06a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
  .page-aniver-txtbox06b {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-aniver-text01 {
    text-align: left;
  }
}
@media (max-width: 700px) {
  .page-aniver-menu {
    font-size: 1.6rem;
  }
  .page-aniver-text02 {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .mitsubishi {
    width: 80px;
    margin: 10px auto 10px;
    position: unset;
  }
  .suzuki {
    width: 80px;
    margin: 0 auto 10px;
    position: unset;
    clear: both;
  }
  .page-aniver-menu {
    width: 49%;
  }
  label.mr0 {
    margin-right: 2% !important;
  }
  label.mr0-600 {
    margin-right: 0 !important;
  }
  label.ml10 {
    margin-left: 0 !important;
  }
  label.mb30sp {
    margin-bottom: 10px !important;
  }
  .anniversary .flex03 {
    display: block;
  }
  #ekspace_content .page-aniver-main div:first-child, #ekspace_content .page-aniver-main div:nth-child(2) {
    width: 100%;
  }
  .page-aniver-main div:nth-child(2) {
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  .page-aniver-no img {
    width: 60%;
  }
  .page-aniver-title02 {
    padding-left: 0px;
  }
  .page-aniver-box01 li {
    padding: 25px 15px 20px 15px;
  }
  .page-aniver-70th {
    width: 300px;
  }
  .page-aniver-70th div:first-child {
    width: 130px;
  }
  .page-aniver-70th div:nth-child(2) {
    padding-top: 0px;
  }
  .page-aniver-text02 {
    margin-left: 0;
    margin-top: 15px;
  }
  .anniversary .flex02 {
    display: block;
  }
  body.anniversary main {
    padding-bottom: 0;
  }
  .flex02 .page-aniver-box05a:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .center500 {
    text-align: center;
  }
  .page-aniver-box05b {
    margin-right: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 25px;
  }
  .page-aniver-box05c {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-aniver-text04 {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-aniver-btn {
    margin-bottom: 40px;
  }
  .page-aniver-title03a, .page-aniver-title03b {
    padding: 12px 5px 5px 5px;
    font-size: 2rem;
    line-height: 1.3em;
  }
  .page-aniver-box02b {
    padding: 25px 15px 20px 15px;
  }
  .page-aniver-box07a {
    margin-bottom: 0 !important;
  }
  .page-aniver-box07a li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-aniver-box07a li div {
    text-align: center;
  }
  .pl40 {
    padding-left: 40px;
  }
  .page-aniver-txtbox02b {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-aniver-txtbox02b p {
    margin-bottom: 0 !important;
  }
  .page-aniver-txtbox04 {
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-aniver-box03 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-aniver-box03 li:last-child {
    margin-bottom: 0;
  }
  .page-aniver-title01b {
    font-size: 2rem;
    line-height: 1.3em;
  }
  .page-aniver-text01 {
    text-align: left;
  }
  .page-aniver-box09b li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-aniver-box09b li:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-aniver-box09b li:last-child {
    margin-bottom: 0;
  }
  .left500 {
    text-align: left;
  }
  .page-aniver-menu {
    font-size: 1.5rem;
  }
  .page-aniver-text01, .page-aniver-text05 {
    font-size: 1.1rem;
  }
  .page-aniver-text01 {
    margin-top: 0;
  }
}
/*================================================
車を探すページcss
================================================*/
/*------------------------------------------------
共通項目
------------------------------------------------*/
/* flexboxの並べ替え */
.order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.car {
  /*================================================
  第二階層
  ================================================*/
  /* 三菱の車はこちらからボタン */
  /* 70周年記念車はこちらからボタン */
  /*================================================
  第３階層
  ================================================*/
  /*　テキストがサイドから表示される jQueryあり*/
  /* 左右からスライドのレイアウト */
  /* スマホの時に画像の下の隙間を埋める */
  /*　タブ　*/
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
  /* タブ内タイトル */
  /*---------------------------------
  検索ボックス
  ---------------------------------*/
  /*---------------------------------
  検索結果
  ---------------------------------*/
  /* タイトル */
  /* お問い合わせボタン */
  /*---------------------------------
  中古車情報
  ---------------------------------*/
  /* 中古車一覧カード */
}
.car .bn-anniversary-all {
  background: url(images/car/bg-anniversary-all.jpg) no-repeat;
  text-align: center;
  padding: 10px 0 50px;
}
.car .bn-anniversary-mitsubishi {
  background: url(images/car/bg-anniversary-mitsubishi.jpg) no-repeat;
  text-align: center;
  padding: 20px 0 40px;
  margin-bottom: 50px;
}
.car .bn-anniversary-suzuki {
  background: url(images/car/bg-anniversary-suzuki.jpg) no-repeat;
  text-align: center;
  padding: 20px 0 40px;
  margin-bottom: 50px;
}
.car .btn-lineup {
  margin: 20px 0;
}
.car .bn-anniversary {
  position: relative;
}
.car .btn-anniversary {
  position: absolute;
  bottom: 80px;
  right: 10%;
}
@media (max-width: 480px) {
  .car .btn-anniversary {
    bottom: 20px;
    left: 0;
    right: 0;
  }
}
.car .loading-anime {
  overflow: hidden;
  position: relative;
}
.car .img-wrap.loading-anime:before {
  -webkit-animation: loading-anime 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: loading-anime 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: rgb(255, 255, 255);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@-webkit-keyframes loading-anime {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loading-anime {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.car .img-wrap2.loading-anime:before {
  -webkit-animation: loading-anime2 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: loading-anime2 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@-webkit-keyframes loading-anime2 {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes loading-anime2 {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.car .img-wrap3.loading-anime:before {
  -webkit-animation: loading-anime3 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: loading-anime3 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@-webkit-keyframes loading-anime3 {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loading-anime3 {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.car .car-info-wrapper {
  position: relative;
}
.car .car-info-wrapper .car-info-text {
  left: 45%;
  background: rgba(242, 242, 242, 0.9);
  z-index: 2;
  padding: 40px 60px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
@media (min-width: 481px) {
  .car .car-info-wrapper .car-info-text {
    z-index: 2;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%; /* 要素の幅指定 */
    position: absolute;
    left: 45%;
    width: 55%;
    padding: 40px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .car .car-info-wrapper .car-info-text {
    width: 100%;
    position: static;
  }
}
.car .car-info-wrapper .car-info-text2 {
  left: inherit;
  right: 45%;
}
.car .car-info-wrapper {
  position: relative;
}
.car .car-info-wrapper2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.car .car-info-image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
@media (max-width: 768px) {
  .car .car-info-image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (min-width: 1200px) {
  .car .car-info-text {
    padding: 80px 60px;
  }
}
.car .bt-link-wh a {
  margin: 30px 0 30px auto;
}
.car .car-info-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.car .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.car .tab-label {
  /* max-width:1000px; */
  /* margin: auto; */
  color: 333;
  background: #fff;
  margin-right: 5px;
  padding: 14px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 328.3333333333px;
  text-align: center;
  border: 1px solid #333;
}
@media (max-width: 999px) {
  .car .tab-label {
    width: 25%;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .car .tab-label {
    width: 25%;
    margin-right: 0;
  }
}
.car .tab-label:hover {
  background: #d90213;
  color: #fff;
}
.car .tab-content {
  width: 100%;
  display: none;
}
.car .tab-switch:checked + .tab-label {
  background: #333;
  color: #fff;
}
.car .tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
.car .tab-switch {
  display: none;
}
.car .search-tab-title {
  margin: 20px auto;
  text-align: center;
  max-width: 360px;
}
.car .search-wrapper {
  margin-bottom: 30px;
}
.car .title-search-box {
  position: relative;
  padding: 20px 0;
  background: #333;
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
}
.car .title-search-box:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #333;
  width: 0;
  height: 0;
}
.car .section-title-car-search {
  padding-left: 30px;
}
.car .section-title-car-search::before {
  width: 30px;
}
.car .card-search-wrapper {
  padding: 10px;
  /* カードの高さを揃える */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.car .card-search-img {
  min-height: 150px;
  margin-bottom: 10px;
}
.car .card-search-type {
  text-align: center;
  font-size: 0.9em;
  padding: 3px 0;
  background-color: wheat;
}
.car .card-search-name a:hover {
  color: #D90114;
}
.car .card_search-price {
  text-align: right;
  color: #666;
  font-size: 0.8em;
}
.car .card-search {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.car .card-search-online-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.car .btn-card-search a {
  color: #fff;
  padding: 2px;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.car .btn-card-search-online {
  background: #333;
  margin-bottom: 6px;
  margin-top: auto;
}
.car .btn-card-search-online a:hover {
  background: #555;
}
.car .btn-card-search-accessory {
  background: #d90213;
}
.car .btn-card-search-accessory a:hover {
  background: #ff3243;
}
.car .bt-contact {
  padding: 20px;
}
.car .title-used-item {
  text-align: center;
  color: #d90213;
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: bold;
}
.car .title-used-item img {
  vertical-align: middle;
  margin-right: 6px;
}
.car .card-search-used {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  padding: 1%;
}
@media (max-width: 768px) {
  .car .card-search-used {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media (max-width: 480px) {
  .car .card-search-used {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.car .btn-card-search-used {
  border-radius: 20px;
}
.car .card-search-used-name {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}
.car #searchbox {
  font-size: 1em;
}
.car #searchbox label {
  display: table;
  margin: 0 0 2px;
}
.car #searchbox select {
  font-size: 1.1em;
}
.car #searchbox .searchbox-title {
  font-size: 1.1em;
  font-weight: bold;
  background-color: #d90213;
  padding: 5px;
  color: #fff;
  margin-bottom: 10px;
}
.car #searchbox #searchbox-submit {
  -webkit-box-shadow: inset 0px 1px 0px 0px #cf866c;
          box-shadow: inset 0px 1px 0px 0px #cf866c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #d0451b), to(#bc3315));
  background: linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
  background-color: #d0451b;
  border-radius: 3px;
  border: 1px solid #942911;
  display: table;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #854629;
  margin: 20px auto 0;
  font-size: 1.2em;
}
.car #searchbox #searchbox-submit:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #bc3315), to(#d0451b));
  background: linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
  background-color: #bc3315;
}
.car #searchbox #searchbox-reset {
  -webkit-box-shadow: inset 0px 1px 0px 0px #97c4fe;
          box-shadow: inset 0px 1px 0px 0px #97c4fe;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #3d94f6), to(#1e62d0));
  background: linear-gradient(to bottom, #3d94f6 5%, #1e62d0 100%);
  background-color: #3d94f6;
  border: 1px solid #337fed;
  border-radius: 3px;
  display: table;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #1570cd;
  margin: 20px auto 0 20px;
  font-size: 1.2em;
}
.car #searchbox #searchbox-reset:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #1e62d0), to(#3d94f6));
  background: linear-gradient(to bottom, #1e62d0 5%, #3d94f6 100%);
  background-color: #1e62d0;
}

/*================================================
会社概要ページcss
================================================*/
/*-----------------------------------------------
　mixin
----------------------------------------------- */
/*-----------------------------------------------
共通項目
----------------------------------------------- */
/* 全てのスタイルにcompanyクラスをつける */
.company {
  /*-----------------------------------------------
  見出し
  ----------------------------------------------- */
  /*-----------------------------------------------
  カード設定
  ----------------------------------------------- */
  /*-----------------------------------------------
  会社情報ページ
  ----------------------------------------------- */
  /*-----------------------------------------------
  組織図
  ----------------------------------------------- */
  /*-----------------------------------------------
  会長メッセージ
  ----------------------------------------------- */
  /*-----------------------------------------------
  事業所長メッセージ
  ----------------------------------------------- */
  /*-----------------------------------------------
  アクセス
  ----------------------------------------------- */
  /*-----------------------------------------------
  お店を探す
  ----------------------------------------------- */
  /*-----------------------------------------------
  沿革
  ----------------------------------------------- */
  /*-----------------------------------------------
  スポーツページ
  ----------------------------------------------- */
}
.company .w800 {
  max-width: 800px;
  margin: auto;
}
.company .w600 {
  max-width: 600px;
  margin: auto;
}
.company section {
  margin-bottom: 40px;
}
.company img {
  vertical-align: bottom;
}
.company p {
  margin-bottom: 0.5rem;
}
.company table th, .company table td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1.4rem;
}
.company .page-sub-title {
  background: #21B4C8;
}
.company .page-sub-title p {
  color: #fff;
}
.company .page-sub-title-small {
  padding: 10px 6px 10px 1em;
  background: -webkit-gradient(linear, right top, left top, from(rgb(65, 65, 65)), to(#000));
  background: linear-gradient(to left, rgb(65, 65, 65), #000);
  text-align: left;
  font-size: 1.6rem;
}
.company .card-box-wrapper {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1%;
}
@media (max-width: 768px) {
  .company .card-box-wrapper {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media (max-width: 480px) {
  .company .card-box-wrapper {
    -ms-flex-preferred-size: 98%;
        flex-basis: 98%;
  }
}
.company .card-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.company .card-box .section-title-short {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.company .card-box-img {
  width: 100%;
  overflow: hidden;
}
.company .card-box-img a img {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.company .card-box-img a img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.company .card-box-text {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.company .card-box-text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.company .card-box-text-bg {
  background: #f2f2f2;
}
.company .card-box .section-title-short::before {
  width: 26px;
  height: 5px;
  top: 40%;
  left: 5px;
}
.company .card-box-list li {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.company .card-box-list li::before {
  font-family: "Font Awesome 5 Pro";
  margin-right: 6px;
  content: "\f0da";
  font-weight: 700;
  color: #ca0e02;
}
.company .outline-ta {
  margin-bottom: 40px;
}
.company .outline-ta th {
  background: #f2f2f2;
  width: 20%;
}
.company .outline-ta .ta-comment {
  font-size: 1.2rem;
  margin-left: 10px;
}
.company .section-title-outline {
  font-size: 1.8rem;
}
.company .section-title-large.section-title-outline::before {
  width: 34px;
}
.company .company-logo {
  max-width: 130px;
  margin: 20px auto;
}
.company .org-first {
  background: #f2f2f2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}
.company .org-second {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  margin-left: 30px;
}
.company .org-logo-mitsubishi {
  font-size: 2rem;
  color: #d90213;
  font-weight: bold;
  margin-bottom: 10px;
}
.company .org-logo-suzuki {
  color: #0c74b9;
}
.company .org-logo-sky {
  color: #0060B0;
}
.company .org-logo-sky img {
  vertical-align: middle;
}
.company .org-company-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.company .org-company {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
@media (max-width: 480px) {
  .company .org-company {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
.company .org-company {
  background: #d90213;
  color: #fff;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
}
.company .org-company::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 0;
  border-top: 1px solid #666;
}
.company .org-company-suzuki {
  background: #21B4C8;
}
.company .org-shop {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  padding-left: 20px;
}
@media (max-width: 480px) {
  .company .org-shop {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}
.company .org-shiten-name {
  color: #d90213;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.company .org-shiten-name::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 0;
  border-top: 1px solid #d90213;
}
.company .org-siten-name-mitsubishi {
  background: #0c74b9;
}
.company .org-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .company .org-shop-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company .org-shop-list li {
  font-size: 1.4rem;
  /* margin-right:50px; */
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  margin-bottom: 1.2em;
}
.company .org-shop-list li::before {
  content: "●";
  margin-right: 0.5em;
  color: #ccc;
}
@media (max-width: 480px) {
  .company .org-shop-list li {
    margin-right: 0;
  }
}
.company .org-shop-list-large li {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.company .org-company-sky {
  background: #0260b0;
}
@media (min-width: 481px) {
  .company .message {
    background: url(images/company/message/bg-message.jpg) no-repeat right bottom;
  }
}
.company .message-wrapper {
  position: relative;
}
.company .message-image {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
}
@media (max-width: 768px) {
  .company .message-image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.company .message-sign {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  position: absolute;
  right: 50px;
  top: 70px;
  /* img{
      max-width:400px;
  } */
}
@media (max-width: 768px) {
  .company .message-sign {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    position: static;
  }
}
.company .message-text {
  max-width: 800px;
  margin: 30px auto;
}
@media (max-width: 480px) {
  .company .message-text {
    margin: 20px;
  }
}
.company .message-text p {
  line-height: 2em;
}
.company .greeting main {
  background: url(images/company/greeting/bg-greeting.jpg) right bottom no-repeat fixed;
}
.company .media-greeting {
  margin-bottom: 60px;
}
.company .greeting-image {
  text-align: center;
}
.company .greeting-image div {
  padding: 0 30px 30px 30px;
}
.company .greeting-image dl dt {
  font-size: 1.3rem;
}
.company .greeting-image dl dd {
  font-size: 1.8rem;
}
.company .greeting-image img {
  max-width: 260px;
  margin: auto;
}
.company .greeting-text {
  border: 1px solid #f2f2f2;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}
@media (max-width: 480px) {
  .company .greeting-text {
    padding: 10px;
  }
}
.company .greeting-text {
  -webkit-box-shadow: 4px 4px 4px 4px rgba(204, 204, 204, 0.4);
          box-shadow: 4px 4px 4px 4px rgba(204, 204, 204, 0.4);
}
.company .greeting-text p {
  line-height: 2.2em;
}
.company .card-box .section-title-access {
  font-size: 1.4rem;
  text-align: left;
  font-weight: bold;
  text-align: left;
}
.company .access-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  position: relative;
  color: #ca0e02;
}
.company .access-title::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ca0e02;
  bottom: -10px;
  width: 55px;
}
.company .access-card .card-box {
  margin-bottom: 20px;
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  padding: 1%;
}
@media (max-width: 480px) {
  .company .access-card .card-box {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.company .access-card-wrapper .card-box li:first-of-type {
  font-size: 1.3rem;
}
.company .access-post {
  font-size: 1.1rem;
}
.company .access-phone {
  font-weight: bold;
  font-size: 1.8rem;
}
.company .access-phone::before {
  font-family: "Font Awesome 5 Pro";
  margin-right: 6px;
  content: "\f879";
}
.company .access-shop-map a {
  background: #ca0e02;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 1.1rem;
  color: #fff;
}
.company .access-shop-map a:before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Pro";
  margin-right: 6px;
  font-size: 1.3rem;
}
.company .title-shop-search {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0E62AD;
}
.company .title-shop-search::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Pro";
  margin-right: 6px;
  margin-right: 20px;
}
.company .bt-shop-wrapper {
  max-width: 600px;
  margin: auto;
}
.company .bt-shop-wrapper img {
  width: 80%;
}
.company .timeline {
  width: 100%;
  max-width: 1000px;
  margin: 28px auto;
  border: 1px solid #ccc;
}
.company .timeline-list {
  padding: 40px 0;
}
.company .timeline-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.5;
  font-size: 16px;
}
.company .timeline-list-item .date {
  width: 20%;
  padding: 0 0 0 20px;
  color: #888888;
  font-weight: bold;
}
@media (max-width: 480px) {
  .company .timeline-list-item .date {
    width: 100%;
  }
}
.company .timeline-list-item .content {
  position: relative;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  padding: 0 20px 60px 30px;
  border-left: 1px solid #aaaaaa;
}
@media (max-width: 480px) {
  .company .timeline-list-item .content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    border: none;
    padding-left: 45px;
  }
}
.company .timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
}
@media (max-width: 480px) {
  .company .timeline-list-item .content::before {
    left: 20px;
    top: 5px;
  }
}
.company .timeline-list-item .content::before {
  width: 20px;
  height: 20px;
  background-color: #00c2bc;
  border-radius: 10px;
}
.company .section-title-sports {
  background: #21B4C8;
  padding: 12px 0;
  margin-bottom: 2em;
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
}
.company .section-title-sports .fas {
  margin-right: 10px;
}
.company .sports-photo-football > div:first-of-type {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
@media (max-width: 768px) {
  .company .sports-photo-football > div:first-of-type {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.company .sports-photo-football > div:last-of-type {
  -ms-flex-preferred-size: 28%;
      flex-basis: 28%;
  margin-left: 2%;
}
@media (max-width: 768px) {
  .company .sports-photo-football > div:last-of-type {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-left: 0;
  }
}
.company .btn-small.btn-sports {
  height: 34px;
  line-height: 32px;
  width: 200px;
}
.company .sports-info {
  line-height: 2;
}
.company .sports-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin: 30px auto;
}
.company .sports-sns > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  text-align: center;
  font-size: 2.4rem;
}
.company .sports-sns > div a {
  color: #fff;
  display: block;
  padding: 10px;
}
.company .sports-sns .sports-sns-tw {
  background: #1D9BF0;
  color: #fff;
}
.company .sports-sns .sports-sns-tw a:hover {
  background: #2eacff;
}
.company .sports-sns .sports-sns-insta {
  background: #DA014E;
  color: #fff;
}
.company .sports-sns .sports-sns-insta a:hover {
  background: #ff0059;
}
.company .sports-sns .sports-sns-youtube {
  background: #fff;
  border: 1px solid #FF0000;
}
.company .sports-sns .sports-sns-youtube img {
  vertical-align: middle;
}
.company .sports-sns .sports-sns-youtube a:hover {
  background: #f2f2f2;
}

/*================================================
お問い合わせページcss
================================================*/
h3.section-title-border {
  color: #d90213;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ca0e02;
  padding: 10px;
  font-size: 2rem;
}

.btn-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  font-size: 16px;
}

.btn-contact {
  margin: 10px;
  display: block;
  text-decoration: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background: #d90213;
}
.btn-contact span {
  width: 100%;
  height: 100%;
  z-index: 10;
}
.btn-contact span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn-contact span:hover {
  color: #d90213;
}
.btn-contact span:hover:before {
  width: 100%;
}

/* 見出し：吹き出し ピンク */
h4.coment-red {
  position: relative;
  padding: 16px 10px 18px 10px;
  background-color: #ffeae8;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #e70012;
  text-align: center;
  font-weight: bold;
}
h4.coment-red span {
  margin: 0 5px;
}

h4.coment-red::after {
  position: absolute;
  top: 100%;
  left: 10%;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #ffeae8;
}

/* 見出し：吹き出し グレー */
h4.coment-gray {
  position: relative;
  padding: 16px 10px 18px 10px;
  background-color: #eaeaea;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}

h4.coment-gray::after {
  position: absolute;
  top: 100%;
  left: 10%;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #eaeaea;
}

h5.contact {
  border-bottom: 1px dashed #313131;
  margin-bottom: 10px;
  padding: 10px;
}

h5.contact-contbox {
  border-bottom: 1px dashed #313131;
  margin-bottom: 10px;
  padding: 10px;
}
h5.contact-contbox .time {
  font-weight: bold;
  margin-right: 10px;
}

.contact-telbox {
  margin-bottom: 10px;
}
.contact-telbox .tbl-telbox th {
  background: #f3f2f0;
  border: solid 1px #ccc;
  color: #222;
  padding: 10px;
  width: 36%;
}
.contact-telbox .tbl-telbox td {
  background-image: url(images/contact/ftellogo.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  border: solid 1px #ccc;
  padding: 10px;
  padding-left: 4.6rem;
}
@media screen and (max-width: 640px) {
  .contact-telbox .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .contact-telbox .tbl-r0telbox2 th,
  .contact-telbox .tbl-telbox td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

.telbtn img {
  display: block;
  text-align: center;
  margin: 10px auto;
}

.contact-cate .catebox {
  background: #333;
  color: #fff;
  margin: 6px;
  padding: 4px;
  font-size: 12px;
}

/* ------------------------------ */
/*Contact Form 7カスタマイズ*/
.tbl-inquiry {
  margin-bottom: 20px;
}

/* スマホ */
@media (max-width: 500px) {
  .inquiry th,
  .inquiry td {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
    border-bottom: 1px solid #d7d7d7 !important;
  }
  /* 必須・任意のサイズ調整 */
  .inquiry .haveto,
  .inquiry .any {
    font-size: 10px;
  }
}
/*見出し欄*/
.inquiry th {
  vertical-align: middle;
  line-height: 1.8;
  text-align: left;
  font-size: 1.5rem;
  color: #444;
  padding: 10px;
  padding-right: 5px;
  width: 36%;
  background: #eaeaea;
  border-top: solid 1px #bcbcbc;
  border-bottom: solid 1px #bcbcbc;
  font-weight: bold;
}

/*通常欄*/
.inquiry td {
  font-size: 13px;
  border-top: solid 1px #bcbcbc;
  border-bottom: solid 1px #bcbcbc;
  padding: 12px;
  line-height: 1.5;
}
.inquiry td p.item {
  background: #f3f2f0;
  font-weight: bold;
  padding: 4px 6px;
  margin-bottom: 6px;
}
.inquiry td textarea {
  border: 1px solid #ccc;
  width: 100%;
}

/* 横の行とテーブル全体
.entry-content .inquiry tr,
.entry-content table {
	//border: solid 1px #d7d7d7;
}
 */
/*必須の調整*/
.haveto {
  font-size: 10.6px;
  padding: 1px 4px;
  background: #d90213;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}

/*任意の調整*/
.any {
  font-size: 11px;
  padding: 1px 4px;
  background: #555555;
  color: #fff;
  border-radius: 2px;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}

input {
  padding: 6px;
}

/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}

/*送信ボタンのデザイン変更*/
#formbtn {
  display: block;
  padding: 1em 0;
  margin-top: 30px;
  width: 100%;
  background: #ffaa56;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 2px;
  border: none;
}

/*送信ボタンマウスホバー時*/
#formbtn:hover {
  background: #fff;
  color: #ffaa56;
}

/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}

.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

/* 必須赤色表示 */
.wpcf7 .required {
  color: #f00;
}

.wpcf7 .required {
  color: #ff0000;
}

.wpcf7 form.sent .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 2em;
  background: #e0f4fa;
  border: none;
  color: #5a5a5a;
}

/* ------------------------------ */
.policy-box {
  height: 200px;
  overflow: scroll;
  padding: 20px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.policy-box h4 {
  font-weight: bolder;
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

.policy-check {
  padding: 10px;
  font-weight: bold;
  background: #ffe9eb;
  text-align: center;
  margin: 0 auto;
  color: #d90213;
}

/* 
.policy-submit{
	padding:12px;
	text-align: center;
	font-weight:bold;
	background: #d90213;
	color: #fff;
	margin: 10px auto;
	width: 300px;
	height: 48px;
	line-height: 46px;
	border-radius: 4px;
} */
.policy-submit {
  text-align: center;
}

.wpcf7 .wpcf7-submit {
  text-align: center;
  font-weight: bold;
  background: #d90213;
  color: #fff;
  margin: 10px auto;
  width: 300px;
  line-height: 46px;
  border-radius: 4px;
}

input {
  padding: 6px;
  background: none;
  border: 1px solid #ccc;
  font-size: 16px;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.7;
  background: #828282;
}

/* マージンなど */
.mr6 {
  margin-right: 6px;
}

.mr10 {
  margin-right: 10px;
}

/* フレックス中央 */
.fl-midle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* フレックス中央 */
.fl-justify-spb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*================================================
404ページcss
================================================*/
/* 404ページ */
.txt404 img {
  max-width: 90px;
  margin-bottom: 20px;
}

.page404 {
  background-image: url(images/404/bg.gif);
  background-repeat: repeat-x;
  padding: 30px;
}
.page404 img {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

/*================================================
その他ページcss
================================================*/
/*共通*/
.cf:after {
  content: "";
  display: block;
  clear: both;
}

.cf {
  zoom: 1;
  overflow: hidden;
}

.cb {
  clear: both;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.white {
  color: #fff;
}

.flex,
.flex02,
.flex03,
.flex04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bold {
  font-weight: bold;
}

.page-other-menu01 li {
  float: left;
  margin-right: 2%;
  width: 31.8%;
  text-align: center;
  border: 1px solid #e60011;
}

.page-other-menu01 li:last-child {
  margin-right: 0;
}

.page-other-menu01 li a {
  color: #e60011;
  display: inline-block;
  width: 100%;
  padding: 15px 10px 15px;
  line-height: 1.3em;
}

.page-other-arrow01 {
  display: inline-block;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #e60011 transparent transparent transparent;
  margin-top: 6px;
}

.page-sub-title-other {
  background-color: #21b4c8;
  text-align: center;
  color: #fff;
  padding: 14px 15px 16px;
}

.pcOnly900 {
  display: inline-block;
}

.pcOnly800 {
  display: inline-block;
}

.pcOnly500 {
  display: block;
}

.spOnly500 {
  display: none;
}

#anchor-title01,
#anchor-title02,
#anchor-title03,
#anchor-title04,
#anchor-title05 {
  padding-top: 90px;
  margin-top: -90px;
}

@media (max-width: 900px) {
  .pcOnly900 {
    display: none;
  }
}
@media (max-width: 800px) {
  .page-other-menu01 li {
    float: none;
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-other-menu01 li:last-child {
    margin-bottom: 0;
  }
  .pcOnly800 {
    display: none;
  }
}
@media (max-width: 500px) {
  .pcOnly500 {
    display: none;
  }
  .spOnly500 {
    display: block;
  }
}
@media (max-width: 480px) {
  .page-sub-title-other {
    font-size: 1.8rem;
    margin-top: 25px;
  }
  .page-other-menu01 li a {
    font-size: 1.8rem;
  }
  .page-other-menu01 li {
    margin-bottom: 15px;
  }
  #anchor-title01,
  #anchor-title02,
  #anchor-title03,
  #anchor-title04,
  #anchor-title05 {
    padding-top: 24%;
    margin-top: -24%;
  }
}
/*共通*/
/*KMGホールディングス*/
.page-other-cont01 {
  width: 650px;
  margin: 0 auto;
  padding-left: 35px;
}

.page-other-table01 {
  border: 1px solid #cbcbcb;
}

.page-other-table01 th {
  background-color: #f0f0f0;
  border-bottom: 1px solid #cbcbcb;
  padding: 15px 20px;
  width: 38%;
}

.page-other-table01 td {
  border-bottom: 1px solid #cbcbcb;
  padding: 15px 20px;
}

.page-other-table01 tr:last-child th {
  border-bottom: none;
}

.page-other-table01 tr:last-child td {
  border-bottom: none;
}

.page-other-title01 {
  font-weight: bold;
  background-color: #efefef;
  padding: 8px 12px;
}

.page-other-pdficon {
  background-image: url("images/other/other_pdf_icon.png");
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: 0 -2px;
  padding-left: 30px;
}

@media (max-width: 800px) {
  .page-other-cont01 {
    width: 100%;
    padding-left: 0;
  }
  .page-other-table01 td {
    vertical-align: middle;
  }
}
@media (max-width: 480px) {
  .page-other-table01 {
    font-size: 1.3rem;
  }
  .page-other-table01 th {
    padding: 10px 10px;
    width: 36%;
  }
  .page-other-table01 td {
    padding: 10px 10px;
  }
}
/*KMGホールディングス*/
/*カーセブン*/
.page-other-menu02 li {
  float: left;
  margin-right: 2%;
  width: 18.2%;
  text-align: center;
  border: 1px solid #e60011;
}

.page-other-menu02 li:last-child {
  margin-right: 0;
}

.page-other-menu02 li a {
  color: #e60011;
  display: inline-block;
  width: 100%;
  padding: 16px 0 14px;
  line-height: 1em;
}

.page-other-title02 {
  background-color: #e60011;
  text-align: center;
  color: #fff;
  padding: 12px 0 15px;
}

.page-other-box01 div:first-child {
  margin-right: 37px;
}

.page-other-box01 div:nth-child(2) {
  width: 650px;
}

.page-other-box01 div:nth-child(2) p {
  font-weight: bold;
}

.page-other-box01 div:nth-child(2) table {
  border-top: 1px solid #cbcbcb;
}

.page-other-box01 div:nth-child(2) table th {
  background-color: #f0f0f0;
  border-bottom: 1px solid #cbcbcb;
  padding: 24px 20px;
  width: 20%;
  text-align: center;
  vertical-align: middle;
}

.page-other-box01 div:nth-child(2) table td {
  border-bottom: 1px solid #cbcbcb;
  padding: 24px 30px;
  vertical-align: middle;
}

@media (max-width: 1000px) {
  .page-other-box01 div:first-child {
    margin-right: 3%;
    width: 32%;
  }
  .page-other-box01 div:nth-child(2) {
    width: 65%;
  }
  .page-other-box01 div:nth-child(2) table th {
    padding: 15px 20px;
  }
  .page-other-box01 div:nth-child(2) table td {
    padding: 15px 20px;
  }
}
@media (max-width: 800px) {
  .page-other-box01 div:first-child {
    width: 40%;
  }
  .page-other-box01 div:nth-child(2) {
    width: 57%;
  }
  .page-other-box01 div:nth-child(2) table th {
    padding: 10px 10px;
    width: 30%;
  }
  .page-other-box01 div:nth-child(2) table td {
    padding: 10px 10px;
  }
}
@media (max-width: 600px) {
  .page-other-menu02 li {
    float: none;
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-other-menu01 li:last-child {
    margin-bottom: 0;
  }
  .page-other-box01 div:first-child {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-bottom: 15px;
  }
  .page-other-box01 div:nth-child(2) {
    width: 100%;
  }
  .page-other-box01 div:nth-child(2) p {
    text-align: center;
    font-size: 1.6rem;
  }
  .page-other-title02 {
    font-size: 2rem;
  }
  .seven .flex {
    display: block;
  }
}
/*カーセブン*/
/*デジタルサイネージ*/
.page-other-box02 div div:first-child {
  margin-right: 30px;
}

.page-other-box02 div div:nth-child(2) {
  width: 580px;
}

.page-other-box02 div div:nth-child(2) p:first-child {
  font-weight: bold;
}

.page-other-box02 div div:nth-child(2) table {
  border-top: 1px solid #cbcbcb;
}

.page-other-box02 div div:nth-child(2) table th {
  background-color: #f0f0f0;
  border-bottom: 1px solid #cbcbcb;
  padding: 18.5px 20px;
  width: 20%;
  text-align: center;
}

.page-other-box02 div div:nth-child(2) table td {
  border-bottom: 1px solid #cbcbcb;
  padding: 15px 30px;
}

.page-other-btn01 {
  background-color: #e60011;
}

.page-other-btn01 a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 7px 0 4px;
}

.page-other-btn01 a::before {
  content: "";
  background-image: url("images/other/other_pdf_icon.png");
  background-repeat: no-repeat;
  background-position: -2px -2px;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  display: inline-block;
}

.page-other-btn02 {
  background-color: #1f7246;
}

.page-other-btn02 a {
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 7px 0 4px;
}

.page-other-btn02 a::before {
  content: "";
  background-image: url("images/other/signage_img03.jpg");
  background-repeat: no-repeat;
  background-position: -2px -2px;
  vertical-align: middle;
  width: 23px;
  height: 25px;
  display: inline-block;
}

.page-other-step01 div div:first-child {
  background-color: #21b4c8;
}

.page-other-step01 div div:nth-child(2) {
  width: 82%;
  border-top: 1px #cccccc solid;
  border-right: 1px #cccccc solid;
  border-bottom: 1px #cccccc solid;
  padding: 20px;
  height: 140px;
}

.page-other-step01 div:first-child .page-other-text01 {
  float: left;
}

.page-other-text01 span {
  font-weight: bold;
}

.page-other-text01 span:nth-child(2) {
  color: #e60011;
}

.page-other-step01 div ul {
  float: right;
}

.page-other-step01 div ul .page-other-btn01a:first-child {
  margin-bottom: 10px;
}

.page-other-btn01a a {
  padding-left: 20px;
  padding-right: 20px;
}

.page-other-step01 .page-other-arrow02 {
  display: inline-block;
  border-style: solid;
  border-width: 28px 70px 0 70px;
  border-color: #e5e5e5 transparent transparent transparent;
}

.page-other-box03 {
  border: 1px #cccccc solid;
}

.page-other-box03 li:first-child {
  border-bottom: 1px #cccccc solid;
}

.page-other-box03 li p {
  padding: 20px 40px;
}

.page-other-box03 li p:first-child {
  text-align: center;
  background-color: #fcebec;
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 180px;
}

.page-other-box03 li p:nth-child(2) {
  width: 820px;
}

.page-other-btn01b {
  width: 270px;
}

@media (max-width: 1000px) {
  .page-other-box03 li p:first-child {
    width: 20%;
  }
  .page-other-box03 li p:nth-child(2) {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .page-other-box02 div div:nth-child(2) {
    width: 500px;
  }
  .page-other-box02 div div:nth-child(2) table th {
    padding: 10px 10px;
    width: 25%;
    vertical-align: middle;
  }
  .page-other-box02 div div:nth-child(2) table td {
    padding: 10px 10px;
    vertical-align: middle;
  }
  .page-other-step01 div div:nth-child(2) {
    height: auto;
  }
  .page-other-step01 div:first-child .page-other-text01 {
    float: none;
  }
  .page-other-step01 div ul {
    float: none;
    margin-top: 15px;
  }
  .page-other-step01 div:first-child div:first-child img {
    padding-top: 20%;
  }
}
@media (max-width: 700px) {
  .page-other-box03 li p {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .page-other-box02 div div:first-child {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-bottom: 15px;
  }
  .page-other-box02 div div:nth-child(2) {
    width: 100%;
  }
  .page-other-box02 div div:nth-child(2) p:first-child {
    text-align: center;
    font-size: 1.6rem;
  }
  .digital .page-other-box02 .flex,
  .digital .page-other-box03 .flex {
    display: block;
  }
  .page-other-box03 li p:first-child {
    width: 100%;
    padding: 8px 15px;
  }
  .page-other-box03 li p:nth-child(2) {
    width: 100%;
  }
  .page-other-step01 div div:nth-child(2) {
    width: 140%;
    padding: 15px;
  }
  .page-other-step01 div div:first-child img {
    padding-top: 20%;
  }
  .page-other-step01 div:first-child div:first-child img {
    padding-top: 30%;
  }
  .page-other-step01 .page-other-arrow02 {
    border-width: 18px 50px 0 50px;
  }
}
/*デジタルサイネージ*/
/*プライバシーポリシー*/
.page-other-box04 {
  border: 1px #cccccc solid;
  padding: 20px 25px;
  width: 460px;
}

.page-other-table02 {
  width: 650px;
}

@media (max-width: 700px) {
  .page-other-box04 {
    width: 100%;
    padding: 20px 20px;
  }
  .page-other-table02 {
    width: 100%;
  }
}
/*プライバシーポリシー*/
/*フリーダイヤル*/
.page-other-box06 div:nth-child(2) {
  margin-left: 40px;
  padding-top: 50px;
}

.page-other-box06 div:nth-child(2) p:first-child {
  color: #e60011;
  font-weight: bold;
}

.page-other-free li {
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  padding: 20px 30px;
  float: left;
  width: 48%;
  margin-right: 4%;
}

.page-other-free li:nth-child(even) {
  margin-right: 0;
}

.page-other-text02a {
  border-right: 1px solid #c9c9c9;
  padding: 13px 30px 5px 0;
  margin-right: 30px;
  text-align: center;
}

.page-other-text02b {
  background-image: url("images/other/freedial_img02.jpg");
  background-repeat: no-repeat;
  padding: 8px 0 8px 60px;
  background-position: 0px 15px;
}

.page-other-free .page-other-free02 {
  padding-right: 20px;
  padding-left: 20px;
}

.page-other-free02 .page-other-text02a {
  padding-right: 20px;
}

.page-other-free .page-other-free03 {
  padding-right: 25px;
  padding-left: 25px;
}

.page-other-free03 .page-other-text02a {
  padding-right: 25px;
  line-height: 1;
  padding-top: 7px;
}

.page-other-free li div {
  line-height: 0;
}

@media (max-width: 900px) {
  .page-other-free li {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .page-other-box06 div:nth-child(2) {
    margin-left: 30px;
    padding-top: 20px;
  }
  .page-other-box06 div:nth-child(2) p:first-child {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  .freecall .page-other-box06 {
    display: block;
  }
  .page-other-box06 div:first-child {
    text-align: center;
  }
  .page-other-box06 div:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .page-other-free li {
    padding: 15px 0 15px 12px;
  }
  .page-other-free .page-other-free02 {
    padding-right: 0;
    padding-left: 0;
  }
  .page-other-free .page-other-free03 {
    padding-right: 0;
    padding-left: 3px;
  }
  .page-other-text02a {
    padding: 45px 20px 5px 0;
    margin-right: 20px;
    font-size: 1.8rem;
  }
  .page-other-free02 .page-other-text02a {
    padding: 45px 14px 5px 0;
    margin-right: 15px;
    font-size: 1.8rem;
  }
  .page-other-free03 .page-other-text02a {
    padding: 38px 10px 5px 0;
    margin-right: 15px;
    font-size: 1.8rem;
  }
  .page-other-text02b {
    font-size: 2.6rem;
    padding: 0px 0 0px 48px;
    background-position: 0px 9px;
    background-size: 40px auto;
  }
  .page-other-tel {
    background-color: #e60011;
    margin-top: 5px;
  }
  .page-other-tel a {
    padding: 10px;
    width: 100%;
    display: inline-block;
  }
  .page-other-tel a:hover {
    color: #fff;
  }
}
@media (max-width: 360px) {
  .page-other-text02a {
    margin-right: 0;
    border: none;
  }
  .page-other-free02 .page-other-text02a {
    margin-right: 0;
  }
  .page-other-free03 .page-other-text02a {
    margin-right: 0;
  }
}
/*フリーダイヤル*/
/*特商法*/
.page-other-box05 {
  border: 1px #cccccc solid;
  padding: 20px 25px;
  width: 320px;
}

@media (max-width: 700px) {
  .page-other-box05 {
    padding: 20px 20px;
    width: 100%;
    text-align: center;
  }
}
/*特商法*/
/*関連リンク*/
.page-other-link li {
  background-color: #F4F2F0;
  padding-right: 10px;
}

.page-other-link li a {
  display: inline-block;
  padding: 8px 2%;
  width: 100%;
  background-image: url("images/other/link_img01.jpg");
  background-repeat: no-repeat;
  background-position: right 12px;
}

@media (max-width: 500px) {
  .page-other-link li a {
    background-position: right 10px;
  }
}
/*関連リンク*/
/*残債調査*/
.page-other-box07 p {
  float: left;
}

.page-other-box07 p:first-child {
  margin-right: 20px;
  padding: 7px 0 4px;
  font-weight: bold;
}

.page-other-box07 p:nth-child(3) {
  margin-left: 15px;
}

.page-other-box07 .page-other-btn01 a {
  width: auto;
  padding: 7px 10px 4px;
}

.page-other-number li {
  float: left;
  width: 49%;
  border: 1px #E3E1DF solid;
  position: relative;
}

.page-other-icon01 {
  line-height: 0;
  position: absolute;
  top: -1px;
  left: -1px;
}

.page-other-number li:nth-child(odd) {
  margin-right: 2%;
}

.page-other-number li div {
  padding: 25px 60px;
  border: 10px #F6F4F2 solid;
}

@media (max-width: 1000px) {
  .page-other-number li div {
    padding: 20px 20px;
  }
}
@media (max-width: 900px) {
  .page-other-number li {
    float: none;
    width: 100%;
  }
  .page-other-number li:nth-child(odd) {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .page-other-box07 p {
    float: none;
  }
  .page-other-box07 p:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-other-box07 p:nth-child(3) {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* WHILL */
.page-sub-title-other-wil {
  background-color: #0075b8;
  text-align: center;
  color: #fff;
  padding: 14px 15px 16px;
}

.willogo {
  margin: 30px auto;
  max-width: 160px;
  width: 100%;
}

.willogo2 {
  margin: 20px;
  max-width: 140px;
  width: 100%;
  text-align: left;
}

.willbox {
  padding: 10px 30px;
}

.willbox02 {
  padding: 30px 0;
}
.willbox02 h4 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
}

h4.whill {
  color: #0075c2;
  font-size: 1.7rem;
  text-align: left;
}

.will-01-Bulue {
  background: #ebf9ff;
  text-align: center;
  margin-top: 50px;
}
.will-01-Bulue img {
  margin-bottom: 20px;
  margin-top: -20px;
}
.will-01-Bulue h4 {
  color: #0075c2;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.willbox02smaii {
  margin-bottom: 20px;
}
.willbox02smaii p {
  font-size: 1.4rem;
}
.willbox02smaii img {
  max-width: 400px;
  width: 100%;
}

.willbox03 {
  padding: 20px;
  border: 2px #0075c2 solid;
}

h4.willbox03 {
  background: #0075c2;
  padding: 20px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.3;
}

.w700box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.w700box img {
  max-width: 400px;
  width: 100%;
}

.willbox05 h5 {
  font-weight: bold;
  color: #333;
  font-size: 1.8rem;
  margin: 20px 0;
}
.willbox05 img {
  max-width: 400px;
  width: 100%;
}

/*================================================
点検・整備ページ
================================================*/
/*　共通項目 */
/* ページヘッダータイトル 202105追加のページタイトル部分 */
.page-head-title {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.page-head-title-img img {
  width: 100%;
}

p {
  margin-bottom: 0.5rem;
}

.yellow {
  color: #fdf18a;
}

.lightblue {
  color: #448aca;
}

.orange {
  color: #e67f00;
}

.green {
  color: #428861;
}

.vermilion {
  color: #f1655f;
}

.ceruleanblue {
  color: #1f8bb6;
}

.lightred {
  color: #ff0000;
}

.page-sub-title {
  background: #448aca;
}
.page-sub-title p {
  color: #fff;
}

.page-sub-titleBlk {
  background: #383838;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
}
.page-sub-titleBlk p {
  color: #fff;
}

/*　カード設定 */
.card-box {
  margin-bottom: 1rem;
}

.card-box-text {
  padding: 20px;
  min-height: 190px;
}

.card-box-bg {
  background: #f2f2f2;
}

.card-box .section-title-short {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* セクションのタイトル */
.module__section-title-ser {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  font-size: 2rem;
  margin-bottom: 10px;
}

.module__section-title-ser:before {
  left: 10px;
  content: "";
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 30px;
  height: 6px;
  background-color: #ca0e02;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

/* トップイメージ背景＆文字 */
.service-topImage {
  background-image: url(images/service/inspection/bg-img.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 10px;
  margin-bottom: 20px;
}
.service-topImage h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 20px;
  line-height: 1.6;
}
.service-topImage .whiteLine {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #fff));
  background: linear-gradient(transparent 40%, #fff 0%);
}

.YellowLine {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, rgb(255, 244, 150)));
  background: linear-gradient(transparent 50%, rgb(255, 244, 150) 0%);
}

.service-txtbox {
  padding: 30px 0;
}
.service-txtbox p {
  margin-bottom: 20px;
}

.service-sub-titleRed {
  background: #ca0e02;
  width: 100%;
  padding: 10px 20px;
}
.service-sub-titleRed p {
  color: #fff;
  font-size: 2rem;
}

.service-sub-titleBlackG {
  width: 100%;
  padding: 10px 20px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,444444+100 */
  background: rgb(0, 0, 0);
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgb(68, 68, 68)));
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(68, 68, 68) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#444444", GradientType=1);
  /* IE6-9 */
}
.service-sub-titleBlackG p {
  color: #fff;
  font-size: 2rem;
}

/* inspection ボックス＆ボタン */
.service-btnBox {
  padding: 10px;
  background: #f6f6f6;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.service-btnBox .btn {
  margin-top: 5px;
  margin-bottom: 5px;
}
.service-btnBox .btn-small {
  width: 100%;
  max-width: 260px;
  line-height: 38px;
  font-size: 1.16rem;
}

.btn-arrow span::after {
  content: "\f138";
  font-family: "Font Awesome 5 Pro";
  margin-left: 5px;
  font-weight: 400;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* inspection　ボックス */
.service-inspection-box {
  padding: 30px 20px;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  margin-bottom: 50px;
}
.service-inspection-box .total {
  background: #fdf18a;
  color: #333;
  font-weight: bold;
  width: 100%;
  padding: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title-large {
  color: #d90213;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-title-mente {
  border-bottom: 2px solid #f1585a;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #f1585a;
}
.section-title-mente .txt {
  color: #222;
  margin-left: 10px;
}

.section-title-oil {
  border-bottom: 2px solid #ffc400;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #ffc400;
}
.section-title-oil .txt {
  color: #222;
  margin-left: 10px;
}

.section-title-cycle {
  border-bottom: 2px solid #00bda3;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #00bda3;
}
.section-title-cycle .txt {
  color: #222;
  margin-left: 10px;
}

/* inspection　テーブル */
.inspection-tbl {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  width: 100%;
}
.inspection-tbl tr {
  width: 100%;
}
.inspection-tbl th {
  background: #559fd6;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.inspection-tbl th.syaken {
  background: #64abb5;
}
.inspection-tbl td {
  border-bottom: solid 1px #ccc;
  padding: 10px;
  width: 230px;
}
.inspection-tbl td.price {
  text-align: right;
}

.service-ic-plus p {
  display: block;
  margin: 10px;
}

.service-ic-plus img {
  max-width: 40px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 5px;
}

.service-cal {
  text-align: center;
  font-size: 1.4rem;
}
.service-cal .kihon {
  color: #fff;
  background: #559fd6;
  padding: 10px 5px;
  border-radius: 4px;
}
.service-cal .syaken {
  color: #fff;
  background: #64abb5;
  padding: 10px 5px;
  border-radius: 4px;
}
.service-cal .addtotal {
  color: #333;
  background: #fdf18a;
  padding: 10px;
  border-radius: 4px;
}
.service-cal img {
  width: 40px;
}

.btn-file {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8em;
}
.btn-file h5 {
  font-weight: bold;
  font-size: 1.8rem;
}
.btn-file a.oiltxtlink {
  color: #3498db;
  font-weight: bold;
  padding: 0 0.3em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-file a.oiltxtlink:hover {
  color: #fff;
  text-decoration: none;
  background-color: #2e7bcc;
}

.service-tbl-insp02 {
  border: 1px solid #ccc;
}
.service-tbl-insp02 th {
  border: 1px solid #ccc;
  background: #e9efe9;
}
.service-tbl-insp02 td {
  border: 1px solid #ccc;
}

/* 安心　テーブル */
.service-tbl-safe {
  border: 1px solid #ccc;
}
.service-tbl-safe th {
  border: 1px solid #ccc;
  background: #e9efe9;
}
.service-tbl-safe td {
  border: 1px solid #ccc;
}

/* 安心　テーブル 02 */
table.service-table-safe01 {
  width: 100%;
  border-right: #ccc solid 1px;
  border-collapse: collapse;
}
table.service-table-safe01 thead th {
  background: #e9efe9;
  color: #222;
  padding: 10px 15px;
  border-right: #fff solid 1px;
  border-bottom: #fff solid 1px;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
  vertical-align: top;
}
table.service-table-safe01 thead th:last-child {
  border-right: #ccc solid 1px;
}
table.service-table-safe01 tbody th {
  background: #e9efe9;
  color: #222;
  padding: 10px 15px;
  border-bottom: #fff solid 1px;
  border-top: #ccc 1px solid;
  border-left: #ccc solid 1px;
  vertical-align: top;
}
table.service-table-safe01 tbody tr:last-child th {
  border-bottom: #ccc solid 1px;
}
table.service-table-safe01 tbody td {
  background: #fff;
  padding: 10px 15px;
  border-left: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
  vertical-align: top;
  text-align: center;
}

/* オイル　テーブル 01 */
table.service-table-oil01 {
  width: 100%;
  border-right: #ccc solid 1px;
  border-collapse: collapse;
}
table.service-table-oil01 thead th {
  background: #e9efe9;
  color: #222;
  padding: 10px 15px;
  border-right: #fff solid 1px;
  border-bottom: #fff solid 1px;
  border-top: #ccc solid 1px;
  border-left: #ccc solid 1px;
  vertical-align: middle;
}
table.service-table-oil01 .green {
  background: #428861;
  color: #fff;
}
table.service-table-oil01 .vermilion {
  background: #f1655f;
  color: #fff;
}
table.service-table-oil01 .cerulean {
  background: #1f8bb6;
  color: #fff;
}
table.service-table-oil01 thead th:last-child {
  border-right: #ccc solid 1px;
}
table.service-table-oil01 tbody th {
  background: #f3f3f3;
  color: #222;
  padding: 10px 15px;
  border-bottom: #ccc solid 1px;
  border-top: #ccc 1px solid;
  border-left: #ccc solid 1px;
  vertical-align: middle;
}
table.service-table-oil01 tbody tr:last-child th {
  border-bottom: #ccc solid 1px;
}
table.service-table-oil01 tbody td {
  background: #fff;
  padding: 6px 10px;
  border-left: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
  vertical-align: top;
  vertical-align: middle;
}

.safe-box-red {
  border: 10px solid #fcf0ef;
  padding: 20px;
}

.safe-box-default {
  padding: 20px;
}

/* ----------------------------
 交換・キズ直し〜（メンテナンス） 
---------------------------- */
/* トップイメージ背景＆文字 */
.service-mainte-top {
  background-color: #f97173;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.service-mainte-top h5 {
  color: #fff;
  margin-left: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}

.mainte-txt-sub {
  font-size: 1.2rem;
}

.servise-mainteBox {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.servise-mainteBox h5 {
  color: #fff;
  background: #0068b7;
  padding: 12px;
  text-align: center;
}
.servise-mainteBox img {
  padding: 10px;
  margin: 0 auto;
  text-align: center;
}

.servise-mainteBox-in {
  padding: 20px;
}
.servise-mainteBox-in .priceBox {
  padding: 5px 0;
  color: #ff1744;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  margin-bottom: 10px;
}
.servise-mainteBox-in .timeBox {
  color: #ff1744;
  font-weight: bold;
  text-align: right;
}
.servise-mainteBox-in .timeBoxin {
  background: #fff100;
  text-align: right;
  padding: 2px 5px;
}

/* ----------------------------
オイルキープ
---------------------------- */
/* トップイメージ背景＆文字 */
.service-oil-top {
  background-color: #ffe012;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.service-oil-top h5 {
  color: #222;
  margin-left: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}

.servise-oil-Box {
  background: #ffe012;
  margin-bottom: 50px;
}
.servise-oil-Box h5 {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 10px;
}

.servise-oil-txtBox {
  background: #fffbe4;
  border: 1px solid #fff193;
  padding: 20px 20px;
}
.servise-oil-txtBox p {
  font-weight: bold;
}

h4.service-oil {
  position: relative;
  padding: 20px 10px 22px 10px;
  background-color: #eaeaea;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}

h4.service-oil::after {
  position: absolute;
  top: 100%;
  left: 45%;
  content: "";
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 15px solid #eaeaea;
}

h4.service-oilgreen {
  position: relative;
  padding: 12px 10px 15px 10px;
  background-color: #19a758;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
}

h4.service-oilgreen::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #19a758;
}

h4.service-oilvermil {
  position: relative;
  padding: 12px 10px 15px 10px;
  background-color: #f18b87;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
}

h4.service-oilvermil::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #f18b87;
}

h4.service-oilceru {
  position: relative;
  padding: 12px 10px 15px 10px;
  background-color: #6ba7bf;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
}

h4.service-oilceru::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #6ba7bf;
}

/* オイル　テーブル 02 */
table.service-table-oil02 {
  width: 100%;
  border-right: #ccc solid 1px;
  border-collapse: collapse;
}
table.service-table-oil02 tbody th {
  background: #434343;
  color: #fff;
  padding: 10px 15px;
  border-bottom: #ccc solid 1px;
  border-top: #ccc 1px solid;
  border-left: #ccc solid 1px;
  vertical-align: middle;
}
table.service-table-oil02 tbody tr:last-child th {
  border-bottom: #ccc solid 1px;
}
table.service-table-oil02 tbody td {
  background: #fff;
  padding: 10px;
  border: #ccc solid 1px;
  vertical-align: middle;
}

/* ----------------------------
オイルキープ　追加
---------------------------- */
h5.oil-kikaku {
  padding: 1.8rem;
  background: #d80514;
  color: #fff;
  margin-bottom: 12px;
}

h5.oil-kikakuGray {
  padding: 1.8rem;
  background: #eaeaea;
  color: #222;
  margin-bottom: 12px;
  text-align: center;
}

.kikaku-cont {
  margin-bottom: 60px;
}

.oilkikaku-boxgray {
  background: #f7f7f7;
  padding: 30px 20px;
  text-align: center;
}

.servise-oilkikaku-Box {
  background: #fffbe4;
  border: 1px solid #fff193;
  margin-bottom: 50px;
  padding: 10px;
}
.servise-oilkikaku-Box h5 {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.servise-oilkikaku-Box img {
  max-width: 100px;
}

.servise-oilkikaku-txtBox {
  padding: 20px 20px;
  text-align: left;
}

/* ----------------------------
メンテナンスサイクル
---------------------------- */
/* トップイメージ背景＆文字 */
.service-cycle-top {
  background-color: #00bda3;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.service-cycle-top h5 {
  color: #fff;
  margin-left: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}

h4.service-oil-y {
  position: relative;
  padding: 20px 10px 22px 10px;
  background-color: #ffd740;
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}

h4.service-oil-y::after {
  position: absolute;
  top: 100%;
  left: 45%;
  content: "";
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 15px solid #ffd740;
}

.service-cycleBox {
  border: 2px solid #ccc;
}

/* サイクル　テーブル 01 */
table.service-table-cycle01 {
  width: 100%;
  border-right: #ccc solid 1px;
  border-collapse: collapse;
  vertical-align: middle;
}
table.service-table-cycle01 tbody tr {
  border: #ccc solid 1px;
  vertical-align: middle;
}
table.service-table-cycle01 tbody th {
  background: #434343;
  color: #fff;
  border-bottom: #ccc solid 1px;
  border-top: #ccc 1px solid;
  border-left: #ccc solid 1px;
  vertical-align: middle;
  width: 20%;
}
table.service-table-cycle01 tbody th .tenken {
  text-align: bold;
  text-align: center;
}
table.service-table-cycle01 tbody tr:last-child th {
  border-bottom: #ccc solid 1px;
}
table.service-table-cycle01 tbody td {
  background: #fff;
  vertical-align: middle;
  width: 40%;
  border: none;
}
table.service-table-cycle01 tbody td img {
  padding: 2px;
  max-height: 60px;
}

.service-tbl-cycle02 {
  border: 1px solid #ccc;
  vertical-align: middle;
}
.service-tbl-cycle02 th {
  border: 1px solid #ccc;
  width: 60px;
}
.service-tbl-cycle02 th img {
  padding: 2px;
  max-width: 40px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.service-tbl-cycle02 td {
  border: 1px solid #ccc;
  vertical-align: middle;
}

.year-bg {
  background: #ffcdd2;
  margin-left: 12px;
  padding: 2px;
}

/* リコール情報 */
.service-cont-link {
  padding-right: 0;
  padding-left: 0;
  padding: 0;
}
.service-cont-link img {
  border: 1px solid #ccc;
}
.service-cont-link img a:hover {
  opacity: 0.9;
}

/* おすすめ商品 */
.btn-recm {
  margin-bottom: 10px;
  text-align: center;
}

/* プレミアムインテリアコーティング */
.page-sub-title p {
  line-height: 1;
}

.pcoat-topImage h5 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

.pCoat-point {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.pCoat-point img {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}
.pCoat-point p {
  padding: 8px;
  text-align: left;
}

.pCoat-point-box {
  padding: 20px;
  background: #eeeeee;
  margin-bottom: 10px;
  border: 5px solid #fff;
}
.pCoat-point-box h6 {
  text-align: center;
  color: #40220f;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 16px 0;
}
.pCoat-point-box p {
  font-size: 1.5rem;
}

h4.section-title-border {
  color: #d90213;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ca0e02;
  padding: 10px;
  font-size: 2rem;
}

h5.logoM {
  background-image: url(images/service/coat-interior/logo-mitsubishi.jpg);
  background-repeat: no-repeat;
  margin: 20px 0;
}
h5.logoM p {
  font-size: 2rem;
  margin-left: 46px;
  font-weight: bold;
}

h5.logoS {
  background-image: url(images/service/coat-interior/logo-suzuki.jpg);
  background-repeat: no-repeat;
  margin: 20px 0;
}
h5.logoS p {
  font-size: 2rem;
  margin-left: 46px;
  font-weight: bold;
}

.precoat-top {
  background-image: url(images/service/coat-interior/precoat-bg.jpg);
  background-size: cover;
  background-position: bottom center;
  padding: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.precoat-top img {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

h4.service-precoat-Gra {
  position: relative;
  padding: 10px 10px 12px 10px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7ab2df+0,1565c0+100 */
  background: rgb(122, 178, 223);
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(122, 178, 223)), to(rgb(21, 101, 192)));
  background: linear-gradient(to bottom, rgb(122, 178, 223) 0%, rgb(21, 101, 192) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7ab2df", endColorstr="#1565c0", GradientType=0);
  /* IE6-9 */
  border-radius: 3px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

h4.service-precoat-Gra::after {
  position: absolute;
  top: 100%;
  left: 45%;
  content: "";
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 15px solid #1565C0;
}

h6.title-precoat-box {
  text-align: center;
  color: #222;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 16px 0;
}

.service-precoat-why {
  background: #f8f8f8;
  padding: 30px 20px;
  margin-bottom: 50px;
}
.service-precoat-why p.fab {
  font-weight: bold;
  color: #205193;
}
.service-precoat-why p.le {
  font-weight: bold;
  color: #6a3906;
}

h5.precoat-fab {
  text-align: center;
  padding: 1.3rem 3rem;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background: #0d4faa;
  margin-bottom: 10px;
}

.pre-examplebox-fab {
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  border: 2px solid #fff;
}
.pre-examplebox-fab h6.precoat-fab {
  padding: 1.8rem;
  background: #26436c;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
.pre-examplebox-fab .precoat-fab2 {
  color: #0d4faa;
  margin: 10px 0;
  font-weight: bold;
}

.pre-examplebox img {
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  display: block;
}

h5.precoat-le {
  text-align: center;
  padding: 1.3rem 3rem;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background: #da7c2d;
  margin-bottom: 10px;
}

.pre-examplebox-le {
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  border: 2px solid #fff;
}
.pre-examplebox-le h6.precoat-le {
  padding: 1.8rem;
  background: #944f15;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
.pre-examplebox-le .precoat-le2 {
  color: #d80c18;
  margin: 10px 0;
  font-weight: bold;
}

/* ボディコーティング */
.topyear h3 img {
  display: block;
  text-align: center;
  margin: 20px auto;
  max-width: 400px;
}

.year-lbox img {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.year-rbox {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 20px;
  z-index: 100;
}
.year-rbox img {
  max-width: 250px;
  margin: 0 auto;
}

.bg-wash {
  background-image: url(images/service/coat-body/bg-ugc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-attachment: fixed;
}

.bg-gray {
  background: #f6f6f6;
  padding: 50px 20px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.title-bodycoat {
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #0e7fcd;
}
.title-bodycoat .txt {
  color: #222;
  margin-left: 10px;
}

.bodycoat-wash h5 img {
  width: 100%;
  max-width: 450px;
}

.bodycoat-point h3 img {
  width: 100%;
  max-width: 500px;
}

.pointBox img {
  width: 100%;
  max-width: 200px;
}

.bodycoat-warranty img {
  max-width: 100%;
}
.bodycoat-warranty h5 img {
  width: 100%;
  max-width: 500px;
}
.bodycoat-warranty h6 {
  font-weight: bold;
  margin: 2rem 1.6rem;
}
.bodycoat-warranty i {
  margin-right: 1.2rem;
}

h3.sl {
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 45px;
  color: #304ea3;
  font-weight: bold;
  font-size: 2.2rem;
  margin: 2rem 10px;
}

h3.sl:before,
h3.sl:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #304ea3;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

h3.sl:before {
  left: 0;
}

h3.sl:after {
  right: 0;
}

/* ボディコーティング ページ内移動ボタン テキスト */
.btn-maintext {
  font-size: 1.6rem;
  margin: 6px 0;
}
@media screen and (min-width: 481px) {
  .btn-maintext {
    font-size: 1.7rem;
  }
}

.btn-subtext {
  font-size: 1.26rem;
  font-weight: normal !important;
  display: block;
  /*効く*/
  line-height: 1.6;
}

.btn-subtext:hover {
  color: #fff;
}

/* ボディコーティング ページ内移動ボタン　赤 */
a.btn-bc-red {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
  margin: 10px auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #d90213;
  border-radius: 50px;
  color: #333;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a.btn-bc-red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(217, 2, 19);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

a.btn-bc-red:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.btn-bc-red:hover {
  color: #fff;
}

/* ボディコーティング ページ内移動ボタン01　青 */
a.btn-bc-01 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
  margin: 10px auto;
  padding: 1rem 2rem;
  font-weight: bold;
  border: 2px solid #1555A2;
  border-radius: 50px;
  color: #1555A2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a.btn-bc-01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(21, 85, 162);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

a.btn-bc-01:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.btn-bc-01:hover {
  color: #fff;
}

/* ボディコーティング ページ内移動ボタン02 黄土色 */
a.btn-bc-02 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
  margin: 10px auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #A37E39;
  border-radius: 50px;
  color: #A37E39;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a.btn-bc-02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(163, 126, 57);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

a.btn-bc-02:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a.btn-bc-02:hover {
  color: #fff;
}

/* ボディコーティング プレミア */
.bg-pre01 {
  background-image: url(images/service/coat-body/pr/pr-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 50px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.bg-pre01car {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 40%;
}

.body-pre-logo img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}

.bg-pre-black {
  background: rgba(0, 0, 0, 0.7);
  padding: 50px 10px;
  max-width: 600px;
}

.bg-pre-black p {
  color: #fff;
}

.bg-pre-black h3 {
  color: #fff;
  font-size: 22px;
  padding: 10px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.btn-font14 {
  font-size: 14px;
}

.btn-red span a:hover {
  color: #d90213 !important;
  border-radius: 40px;
}

.bg-pre02 {
  background-image: url(images/service/coat-body/pr/bg-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  background-color: #15284a;
  padding: 50px 10px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-attachment: fixed;
}

.pre-container-line {
  padding: 40px 10px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid #e5c569;
}

.pre-container-line p {
  color: #fff;
}

.pre-container-line h3 {
  color: #000;
  font-size: 20px;
  padding: 10px;
  background-color: #e5c569;
  font-weight: bold;
  margin-bottom: 10px;
}

.pre-container-line img {
  max-width: 400px;
  width: 100%;
}

.bg-bluegray {
  background: #465b7e;
  padding: 50px 20px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.title-bodycoat-pr {
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #dcb724;
}

.title-bodycoat-pr .txt {
  color: #fff;
  margin-left: 10px;
}

/* spサイズ */
@media screen and (max-width: 768px) {
  .page-sub-title {
    font-size: 2rem;
    padding: 16px 0;
  }
  .page-sub-titleBlk {
    font-size: 1.8rem;
    padding: 16px 0;
  }
  .service-topImage {
    padding: 50px 10px;
  }
  .service-topImage h4 {
    font-size: 1.6rem;
  }
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .inspection-tbl th,
  .inspection-tbl td {
    width: 100%;
  }
  .service-cal {
    text-align: center;
    font-size: 1rem !important;
  }
  .addIcon {
    margin-top: 4px;
  }
  /* table */
  table.service-table-safe01 thead {
    display: none;
  }
  table.service-table-safe01 tbody th {
    display: block;
    text-align: center;
    font-weight: bold;
  }
  table.service-table-safe01 tbody td {
    display: block;
    text-align: left;
  }
  table.service-table-safe01 tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
  }
  table.service-table-safe01 tbody td p {
    padding-left: 15em;
  }
  /* オイルキープ table */
  table.service-table-oil01 thead {
    display: none;
  }
  table.service-table-oil01 tbody th {
    display: block;
    text-align: center;
    font-weight: bold;
  }
  table.service-table-oil01 tbody th .green {
    background: #428861;
    color: #fff;
  }
  table.service-table-oil01 tbody th .vermilion {
    background: #f1655f;
    color: #fff;
  }
  table.service-table-oil01 tbody th .cerulean {
    background: #699cb1 !important;
    color: #fff;
  }
  table.service-table-oil01 tbody td {
    display: block;
    text-align: left;
  }
  table.service-table-oil01 tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
  }
  table.service-table-oil01 tbody td p {
    padding-left: 14em;
  }
  table.service-table-oil02 th {
    display: block;
    text-align: center;
  }
  table.service-table-oil02 td {
    display: block;
    text-align: left;
    padding: 6px;
  }
  /* サイクル */
  table.service-table-cycle01 th {
    display: block;
    text-align: center;
    width: 100%;
  }
  table.service-table-cycle01 td {
    display: block;
    text-align: left;
    padding: 6px;
    width: 100%;
  }
  table.service-table-cycle01 tbody th {
    width: 100%;
  }
  table.service-table-cycle01 tbody td {
    width: 100%;
  }
}
/* pcサイズ */
@media screen and (min-width: 481px) {
  .service-mainte-top {
    background-color: #f97173;
    padding: 40px 40px;
    margin-bottom: 20px;
  }
  .service-mainte-top h5 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    margin-left: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .mainte-txt-sub {
    font-size: 1.7rem;
  }
  .service-oil-top {
    padding: 40px 40px;
    margin-bottom: 20px;
  }
  .service-oil-top h5 {
    font-size: 2.4rem;
    margin-left: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .servise-oil-Box h5 {
    font-size: 1.7rem;
  }
  /* inspection ボックス＆ボタン */
  .service-btnBox {
    padding: 10px;
    background: #f6f6f6;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .service-btnBox .btn {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .service-btnBox .btn-small {
    font-size: 1.6rem;
  }
  .section-title-mente {
    font-size: 1.4em;
  }
  .section-title-oil {
    font-size: 1.4em;
  }
  .section-title-cycle {
    font-size: 1.4em;
  }
  h4.service-oil {
    font-size: 1.8rem;
  }
  h4.service-oil::after {
    position: absolute;
    top: 100%;
    left: 48%;
    content: "";
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: 15px solid #eaeaea;
  }
  h4.service-oil-y .strong {
    font-size: 1.9rem;
  }
  h4.service-oil-y::after {
    position: absolute;
    top: 100%;
    left: 48%;
    content: "";
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: 15px solid #ffd740;
  }
  /* メンテナンスサイクル */
  .service-cycle-top {
    padding: 40px 40px;
    margin-bottom: 20px;
  }
  .service-cycle-top h5 {
    font-size: 2.4rem;
    margin-left: 20px;
    line-height: 1.5;
    text-align: center;
  }
  /* プレミアムインテリアコーティング */
  .pcoat-topImage h5 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .pCoat-point-box h6 {
    font-size: 1.8rem;
  }
  h4.service-precoat-Gra {
    margin-bottom: 30px;
    font-size: 1.9rem;
    line-height: 1.5;
    padding: 20px 10px 22px 10px;
  }
  h4.service-precoat-Gra::after {
    left: 48%;
  }
  h5.precoat-fab {
    margin-bottom: 0;
  }
  .service-precoat-why {
    padding: 50px 20px;
  }
  /* ボディコーティング */
  .year-lbox img {
    display: inline;
    width: 100%;
    max-width: 500px;
    z-index: 100;
    padding: 20px;
  }
  .year-rbox {
    z-index: 100;
    max-width: 570px;
  }
  .absolute {
    position: absolute;
    right: 0;
    bottom: -10px;
  }
  .relative {
    position: relative;
  }
  .title-bodycoat {
    font-size: 1.4em;
  }
}
.bg-white {
  background: #fff;
  padding: 50px 10px;
  max-width: 1000px;
  margin: 0 auto;
}

/* フレックス中央 */
.fl-midle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* フレックス中央 */
.fl-justify-spb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* マージン追加 */
.p10 {
  padding: 10px;
}

/*================================================
お店を探すページ
================================================*/
.shops {
  /* お知らせ */
  /*  single-post.php */
}
.shops .page-sub-title {
  background: #30a725;
  padding: 5px;
  font-size: 1.25em;
}
.shops .page-sub-title.bg-black {
  background-color: #222;
  font-size: 1.3em;
  text-align: left;
}
.shops .page-sub-title p {
  color: #fff;
}
.shops .page-sub-title p img.logo {
  vertical-align: middle;
  height: 50px;
}
.shops .shop_anchor {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.shops .shop_anchor p {
  width: 33.3333333333%;
  max-width: 250px;
  float: left;
  margin: 0;
}
.shops .module__page-btn a {
  font-size: 1.5em;
  background-color: #30a725;
  color: #fff;
  margin-right: 2em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .module__page-btn a:last-child {
  margin-right: 0;
}
.shops .module__page-btn a:hover {
  background-color: #f00;
}
.shops h3.section-title-large {
  line-height: 1.3em;
}
.shops h4.section-title-large {
  color: #30a725;
  border-bottom: 1px solid #30a725;
  padding: 10px 0 10px 15px;
  font-size: 1.2em;
}
.shops h4.section-title-large::before {
  background: transparent;
}
.shops h5.section-title-large {
  color: #30a725;
  font-size: 1.3em;
  margin-bottom: 20px;
}
.shops h6.section-title {
  color: #30a725;
  text-align: left;
  font-size: 1.2em;
}
.shops .car_list {
  margin-bottom: 20px;
}
.shops .car_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.shops .car_list ul::before {
  height: 0;
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
}
@media (min-width: 1025px) {
  .shops .car_list ul::before {
    width: calc(25% - 10px);
  }
}
@media (max-width: 1024px) {
  .shops .car_list ul::before {
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 800px) {
  .shops .car_list ul::before {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .shops .car_list ul::before {
    width: calc(100% - 20px);
  }
}
.shops .car_list ul::after {
  display: block;
  height: 0;
  content: "";
}
@media (min-width: 1025px) {
  .shops .car_list ul::after {
    width: calc(25% - 10px);
  }
}
@media (max-width: 1024px) {
  .shops .car_list ul::after {
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 800px) {
  .shops .car_list ul::after {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .shops .car_list ul::after {
    width: calc(100% - 20px);
  }
}
.shops .car_list li {
  font-size: 1em;
  list-style: none;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .shops .car_list li {
    width: calc(25% - 10px);
  }
}
@media (max-width: 1024px) {
  .shops .car_list li {
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 800px) {
  .shops .car_list li {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .shops .car_list li {
    width: calc(100% - 20px);
  }
}
.shops .car_list li img {
  display: block;
  margin: 0 auto 5px;
}
.shops .car_list li a {
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
}
.shops .car_list li a:hover {
  text-decoration: underline;
  text-decoration-color: #222;
}
.shops .shopinfo {
  margin: 50px 0;
}
@media (min-width: 801px) {
  .shops .shopinfo .left-side {
    width: calc(55% - 10px);
    float: left;
  }
}
@media (max-width: 800px) {
  .shops .shopinfo .left-side {
    max-width: 600px;
    margin: 0 auto 20px;
  }
}
.shops .shopinfo .left-side dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  margin-bottom: 10px;
}
.shops .shopinfo .left-side dt {
  width: 130px;
  text-align: right;
  color: #30a725;
  padding: 10px;
}
.shops .shopinfo .left-side dd {
  padding: 10px 0 10px 10px;
}
@media (min-width: 801px) {
  .shops .shopinfo .right-side {
    width: calc(45% - 10px);
    float: right;
  }
}
@media (max-width: 800px) {
  .shops .shopinfo .right-side {
    max-width: 600px;
    margin: 0 auto;
  }
}
.shops .shopinfo .shop-googlemap,
.shops .shopinfo .shop-googlemap #map {
  width: 100%;
  height: 350px;
}
.shops .search-form-box {
  max-width: 600px;
  width: calc(100% - 20px);
  padding: 0.5em;
  border: 1px solid #aaa;
  margin: 0 auto 2em;
}
.shops .search-form-box label {
  margin-bottom: 15px;
  display: table;
}
.shops .search-form-box form > div > ul > li:first-child {
  padding: 0.5em;
  float: left;
}
@media (min-width: 641px) {
  .shops .search-form-box form > div > ul > li:first-child {
    width: calc(45% - 20px);
  }
}
@media screen and (max-width: 640px) {
  .shops .search-form-box form > div > ul > li:first-child {
    width: calc(50% - 20px);
  }
}
.shops .search-form-box form > div > ul > li:first-child p {
  font-size: 1.05em;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
}
.shops .search-form-box form > div > ul > li:nth-child(2) {
  padding: 0.5em;
  float: left;
}
.shops .search-form-box form > div > ul > li:nth-child(2) ul.children {
  margin: 0 0 0 30px;
  line-height: 0.5em;
  padding: 0;
}
.shops .search-form-box form > div > ul > li:nth-child(2) ul.children li {
  padding: 0;
  margin: 0;
  line-height: 0.5em;
}
@media screen and (min-width: 641px) {
  .shops .search-form-box form > div > ul > li:nth-child(2) {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 640px) {
  .shops .search-form-box form > div > ul > li:nth-child(2) {
    width: calc(50% - 20px);
  }
}
.shops .search-form-box form > div > ul > li:nth-child(2) p {
  font-size: 1.05em;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
}
.shops .search-form-box form > div > ul > li:nth-child(2) label {
  margin-right: 10px;
  float: left;
}
.shops .search-form-box form > div > ul > li:nth-child(3) {
  padding: 0 0.5em 0.5em 0;
  width: 100%;
  float: none;
  display: table;
}
.shops .search-form-box form > div > ul > li:nth-child(3) input {
  width: 100px;
  display: block;
  padding: 5px;
  font-size: 1.03em;
  margin: 0 0 0 auto;
}
.shops .shopimage img {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}
.shops .btn-googlemap {
  display: table;
  padding: 10px;
  margin: 0 0 0 auto;
  color: #fff;
  background: #30a725;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .btn-googlemap:hover {
  background: green;
}
.shops .btn-googlemap_sm {
  display: table;
  font-size: 0.9em;
  padding: 3px 10px;
  margin: 10px 0 0 auto;
  color: #fff;
  background: #c00;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .btn-googlemap_sm:hover {
  background: red;
}
.shops .tokucho-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.shops .tokucho-box ul li {
  width: calc(12.5% - 5px);
  padding: 3px;
}
.shops .tokucho-box ul li.tokucho-on {
  background-color: #c20505;
}
.shops .tokucho-box ul li.tokucho-off {
  background-color: #aaa;
}
.shops .tokucho-box ul li img {
  width: 100%;
}
.shops .news-box .msgbox {
  margin: 0 20px 30px;
  padding: 25px 25px 10px;
  background-color: #fefefe;
  border: 3px solid #ccc;
  border-radius: 15px;
}
.shops .news-box .msgbox p, .shops .news-box .msgbox li, .shops .news-box .msgbox dt, .shops .news-box .msgbox dd, .shops .news-box .msgbox a {
  line-height: 1.75;
}
.shops .news-box .msgbox p, .shops .news-box .msgbox dl {
  margin-bottom: 15px;
}
.shops .news-box .msgbox dd {
  margin-left: 20px;
}
.shops .news-box .msgbox strong {
  font-weight: bold;
}
@media (max-width: 800px) {
  .shops .news-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .shops .news-box ul::after {
    display: block;
    height: 0;
    width: calc(33% - 10px);
    content: "";
  }
}
@media (max-width: 800px) and (max-width: 640px) {
  .shops .news-box ul::after {
    width: calc(50% - 10px);
  }
}
@media (min-width: 801px) {
  .shops .news-box ul li {
    width: calc(20% - 10px);
    margin: 0 10px 0 0;
    float: left;
  }
  .shops .news-box ul li:last-child {
    margin: 0;
  }
}
@media (max-width: 800px) {
  .shops .news-box ul li {
    width: calc(33% - 10px);
    margin: 0;
    float: none;
  }
}
@media (max-width: 640px) {
  .shops .news-box ul li {
    width: calc(50% - 10px);
    margin: 0;
    float: none;
  }
}
.shops .news-box ul li .img-box img {
  width: 100%;
  height: auto;
}
.shops .single.newsbox {
  width: calc(100% - 280px);
  float: left;
}
@media (max-width: 800px) {
  .shops .single.newsbox {
    width: calc(100% - 190px);
    float: left;
  }
}
@media (max-width: 640px) {
  .shops .single.newsbox {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.shops .category.news-list-box, .shops .category.topics-list-box {
  width: 100%;
  float: none;
}
.shops .category.news-list-box ul, .shops .category.topics-list-box ul {
  display: block;
  min-height: 500px;
}
.shops .category.news-list-box ul li, .shops .category.topics-list-box ul li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
}
.shops .category.news-list-box ul li a, .shops .category.topics-list-box ul li a {
  color: #30a725;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .category.news-list-box ul li a:hover, .shops .category.topics-list-box ul li a:hover {
  color: #c20505;
  text-decoration-color: transparent;
}
.shops .category.news-list-box {
  width: calc(100% - 280px);
  float: left;
}
.shops .category.news-list-box .date-box {
  text-align: center;
  width: 100px;
  float: left;
  background-color: #ccc;
  color: #222;
}
.shops .category.news-list-box .title-box {
  width: calc(100% - 110px);
  float: right;
}
@media (max-width: 800px) {
  .shops .category.news-list-box {
    width: calc(100% - 190px);
    float: left;
  }
}
@media (max-width: 640px) {
  .shops .category.news-list-box {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.shops .category.news-list-box.full {
  width: 100%;
}
.shops .category.topics-list-box .date-box {
  margin-top: 3px;
  text-align: center;
  width: 100px;
  float: left;
  background-color: #ccc;
  color: #222;
}
.shops .category.topics-list-box .shop-box {
  width: 250px;
  float: left;
  margin-left: 10px;
}
.shops .category.topics-list-box .shop-box span {
  display: table;
  margin-top: 3px;
  font-size: 0.8em;
  float: left;
}
.shops .category.topics-list-box .shop-box img {
  float: left;
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 3px;
}
@media (min-width: 641px) {
  .shops .category.topics-list-box .title-box {
    width: calc(100% - 370px);
    float: right;
    margin-top: 3px;
  }
}
@media (max-width: 640px) {
  .shops .category.topics-list-box .shop-box {
    width: auto;
  }
  .shops .category.topics-list-box .title-box {
    width: calc(100% - 20px);
    float: right;
    margin-top: 3px;
  }
}
.shops .single.shopinfobox, .shops .category.shopinfobox {
  width: 250px;
  float: right;
}
@media (max-width: 800px) {
  .shops .single.shopinfobox, .shops .category.shopinfobox {
    width: 170px;
    float: right;
  }
}
@media (max-width: 640px) {
  .shops .single.shopinfobox, .shops .category.shopinfobox {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.shops .single.shopinfobox .shop-thumbnail-box, .shops .category.shopinfobox .shop-thumbnail-box {
  margin-bottom: 10px;
}
.shops .single.shopinfobox .shop-thumbnail-box img, .shops .category.shopinfobox .shop-thumbnail-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.shops .single.shopinfobox .backnumber-box, .shops .category.shopinfobox .backnumber-box {
  font-size: 0.9em;
  line-height: 1.2;
}
.shops .single.shopinfobox .backnumber-box li, .shops .category.shopinfobox .backnumber-box li {
  margin-bottom: 5px;
}
.shops .single.shopinfobox .shop-name-box, .shops .single.shopinfobox .shop-address-box, .shops .category.shopinfobox .shop-name-box, .shops .category.shopinfobox .shop-address-box {
  font-size: 0.9em;
  line-height: 1.2;
  margin-bottom: 5px;
}
.shops .single .datebox, .shops .category .datebox {
  text-align: right;
  margin-bottom: 30px;
  font-size: 0.9em;
}
.shops .single h3.page-sub-title, .shops .category h3.page-sub-title {
  color: #fff;
  padding-bottom: 8px;
}
.shops .btn-zaiko a {
  display: table;
  padding: 5px 10px;
  text-align: center;
  margin: 0 auto;
  background-color: #30a725;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .btn-zaiko a:hover {
  background: green;
}
.shops .search-wrapper {
  margin-bottom: 30px;
}
.shops .title-search-box {
  position: relative;
  padding: 20px 0;
  background: #333;
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
}
.shops .title-search-box:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #333;
  width: 0;
  height: 0;
}
.shops #searchbox {
  font-size: 1em;
}
@media (min-width: 841px) {
  .shops #searchbox label {
    display: table;
    float: left;
    width: 50%;
    margin-bottom: 10px;
  }
}
@media (max-width: 840px) {
  .shops #searchbox label {
    display: table;
    float: none;
    margin-bottom: 5px;
  }
}
.shops #searchbox .searchbox-title {
  font-size: 1.1em;
  font-weight: bold;
  background-color: #30a725;
  padding: 5px;
  color: #fff;
  margin-bottom: 10px;
}
.shops #searchbox .leftside {
  float: left;
  width: 49%;
}
.shops #searchbox .rightside {
  float: right;
  width: 49%;
}
.shops #searchbox #searchbox-submit {
  -webkit-box-shadow: inset 0px 1px 0px 0px #cf866c;
          box-shadow: inset 0px 1px 0px 0px #cf866c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #d0451b), to(#bc3315));
  background: linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
  background-color: #d0451b;
  border-radius: 3px;
  border: 1px solid #942911;
  display: table;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #854629;
  margin: 20px 20px 0 auto;
  font-size: 1.2em;
}
.shops #searchbox #searchbox-submit:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #bc3315), to(#d0451b));
  background: linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
  background-color: #bc3315;
}
.shops #searchbox #searchbox-reset {
  -webkit-box-shadow: inset 0px 1px 0px 0px #97c4fe;
          box-shadow: inset 0px 1px 0px 0px #97c4fe;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #3d94f6), to(#1e62d0));
  background: linear-gradient(to bottom, #3d94f6 5%, #1e62d0 100%);
  background-color: #3d94f6;
  border: 1px solid #337fed;
  border-radius: 3px;
  display: table;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #1570cd;
  margin: 20px auto 0 20px;
  font-size: 1.2em;
}
.shops #searchbox #searchbox-reset:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #1e62d0), to(#3d94f6));
  background: linear-gradient(to bottom, #1e62d0 5%, #3d94f6 100%);
  background-color: #1e62d0;
}
.shops .wp-pagenavi {
  margin: 30px 0 0;
  text-align: center;
  line-height: 1;
}
.shops .wp-pagenavi .pages {
  padding: 3px 5px;
  background-color: #ccc;
  margin-right: 10px;
}
.shops .wp-pagenavi .current {
  padding: 3px 5px;
  background-color: #c20505;
  color: #fff;
}
.shops .wp-pagenavi a {
  padding: 3px 5px;
  background: transparent;
  color: #c20505;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .wp-pagenavi a:hover {
  text-decoration-color: transparent;
}
.shops .single.newsbox .content p, .shops .single.newsbox .content li, .shops .single.newsbox .content dt, .shops .single.newsbox .content dd, .shops .single.newsbox .content a {
  line-height: 1.75;
}
.shops .single.newsbox .content img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
.shops .single.newsbox .content img.alignright {
  float: left;
  margin: 0 0 10px 10px;
}
.shops .single.newsbox .content img.aligncenter {
  display: block;
  margin: 0 auto 10px;
}
.shops .single.newsbox .content strong {
  font-weight: bold;
}
.shops .single.newsbox .content a {
  color: #30a725;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shops .single.newsbox .content a:hover {
  text-decoration-color: transparent;
}
.shops .single.newsbox .content ul, .shops .single.newsbox .content ol {
  margin: 10px 0 10px 20px;
}
.shops .single.newsbox .content ul li {
  list-style: disc outside;
}
.shops .single.newsbox .content ol li {
  list-style: decimal outside;
}

/*================================================
サイトマップcss
================================================*//*# sourceMappingURL=style.css.map */