@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/*--------------------- ヘッダー固定用  ---------------------*/
#fixed-header {
  background: #000;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 1;
  transition: all 0.3s ease 0s;
  transform: translateY(-260px);
  z-index: 100;
}

#inner-header {
  width: 100%;
  height: 80px;
}

.bg_w {
  width: 100%;
  background-color: #FFFFFF;
}

@media screen and (max-width: 640px) {
  #fixed-header, #inner-header {
    display: none;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  nav.globalMenuSp ul {
    background: #FFFFFF;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #CCCCCC;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
  }
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }
  /* 最後はラインを描かない */
  /* このクラスを、jQueryで付与・削除する */
  .navToggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    right: 10px;
    top: 10px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 201;
    background: #3256a4;
    border-radius: 50%;
    background-color: rgba(28, 68, 154, 0.9);
    text-align: center;
  }
  .navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 25px;
    border-bottom: solid 2px #eee;
    transition: 0.35s ease-in-out;
    left: 10px;
  }
  .navToggle span:nth-child(1) {
    top: 12px;
  }
  .navToggle span:nth-child(2) {
    top: 21px;
  }
  .navToggle span:nth-child(3) {
    top: 30px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 8px;
    font-weight: bold;
    top: 30px;
  }
  .navToggle.active span:nth-child(1) {
    top: 21px;
    left: 10px;
    transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(45deg);
  }
  /* 最初のspanをマイナス45度に */
  /* 2番目と3番目のspanを45度に */
}
/*--------------------- PC版表示CSS  ---------------------*/
#pc {
  display: block !important;
}

#tab, #sp {
  display: none !important;
}

.inner {
  width: 100%;
  margin: 0 auto;
}

.sub_logo {
  width: 100%;
  margin: 0 auto;
  background-image: url(../01_img/sub/menu_bg01.jpg);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 100%;
}

.box01 {
  width: 1280px;
  margin: 0 auto;
}
.box01 .item01 {
  float: left;
  width: 50%;
}
.box01 .item01 img {
  width: 100%;
}
.box01 .item02 {
  float: left;
  width: 50%;
}
.box01 .item02 .left {
  float: left;
  width: 56.25%;
}
.box01 .item02 .right {
  float: left;
  width: 43.75%;
}
.box01 img {
  width: 100%;
}

.menu01 {
  width: 910px;
  margin: 0 auto 0 auto;
}
.menu01 img {
  width: 100%;
}
.menu01 .item01, .menu01 .item02 {
  width: 20%;
  text-align: center;
  float: left;
}

.sub_main_img {
  width: 1280px;
  margin: 0 auto 0 auto;
}
.sub_main_img img {
  width: 100%;
}

.box04 {
  width: 800px;
  margin: 0 auto;
  padding: 0 0 0 0;
}
.box04 img {
  width: 100%;
}
.box04 a:hover {
  opacity: 0.5;
}
.box04 .item01 {
  width: 100%;
  padding: 70px 0 110px 0;
}
.box04 .item01 .left {
  width: 60.5%;
  float: left;
}
.box04 .item01 .right {
  width: 39.5%;
  float: left;
}

.box05 {
  width: 800px;
  margin: 0 auto;
  padding: 0 0 0 0;
}
.box05 img {
  width: 100%;
}
.box05 .item01 {
  width: 100%;
  padding: 0 0 50px 0;
}
.box05 .item01 .left, .box05 .item01 .right {
  width: 50%;
  float: left;
}
.box05 .item01 .left a:hover, .box05 .item01 .right a:hover {
  opacity: 0.5;
}

.googlemap {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.foot {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 65px 0 0 0;
  background-image: url(../01_img/sub/menu_bg01.jpg);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 100%;
}
.foot img {
  width: 13%;
}
.foot .foot_copy {
  color: #FFFFFF;
  font-size: 12px;
  padding: 175px 0 30px 0;
}

/*--------------------- ページトップへ戻るボタン  ---------------------*/
#pagetop {
  text-align: right;
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  z-index: 10;
}
#pagetop img {
  width: 60%;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  #pc, #tab {
    display: none !important;
  }
  #sp {
    display: block !important;
  }
  .inner {
    width: 100%;
    margin: 0 auto;
  }
  .box01 {
    width: 100%;
    margin: 0 auto;
  }
  .box01 .item01 {
    float: left;
    width: 100%;
    background-image: url(../01_img/top/sp/bg01.jpg);
    background-repeat: repeat-y;
    background-position: left top;
    background-size: 100%;
  }
  .box01 .item02 {
    float: left;
    width: 100%;
  }
  .box01 img {
    width: 100%;
  }
  .menu01 {
    width: 100%;
    background-color: #1a284f;
  }
  .menu01 .item01 {
    width: 20%;
    text-align: center;
    float: left;
    border: 0px;
  }
  .menu01 .item02, .menu01 .item03 {
    width: 50%;
    text-align: center;
    float: left;
    border: 0px;
  }
  .sub_main_img {
    width: 100%;
    margin: 0 auto 0 auto;
  }
  .sub_main_img img {
    width: 100%;
  }
  .box04 {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 0;
  }
  .box04 img {
    width: 100%;
  }
  .box04 .item01 {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 auto 0 auto;
  }
  .box04 .item01 .left {
    width: 60.5%;
    float: left;
  }
  .box04 .item01 .right {
    width: 39.5%;
    float: left;
  }
  .box05 {
    float: left;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 0;
  }
  .box05 img {
    width: 100%;
  }
  .box05 .item01 {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 0;
  }
  .box05 .item01 .left {
    width: 100%;
    padding: 0 0 0 0;
  }
  .box05 .item01 .right {
    width: 100%;
  }
  .googlemap {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  .foot {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0;
    padding: 13% 0 0 0;
    background-image: url(../01_img/top/foot_bg01.jpg);
    background-repeat: repeat-y;
    background-position: left top;
    background-size: 100%;
  }
  .foot img {
    width: 50%;
  }
  .foot .foot_copy {
    color: #FFFFFF;
    font-size: 10px;
    padding: 13% 0 3% 0;
  }
  /*--------------------- ページトップへ戻るボタン  ---------------------*/
  #pagetop {
    text-align: right;
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 10;
  }
  #pagetop img {
    width: 40%;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 車両整備ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#mainte {
  width: 100%;
  padding: 30px 0 0 0;
}
#mainte img a:hover {
  opacity: 0.5;
}
#mainte .title {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#mainte .title img {
  width: 100%;
}
#mainte .title .text {
  font-size: 18px;
  font-weight: 400;
  color: #1a274e;
  padding: 3% 0 2% 0;
}
#mainte .mainte_box01 {
  width: 1280px;
  margin: 0 auto 0 auto;
  padding: 45px 0 45px 0;
  background-color: #f0f0ef;
}
#mainte .item01 {
  width: 880px;
  margin: 0 auto 60px auto;
}
#mainte .item01 .left {
  width: 555px;
  height: 310px;
  margin: 0 65px 0 0;
  padding: 0;
  float: left;
}
#mainte .item01 .left .po {
  width: 280px;
  position: relative;
}
#mainte .item01 .left .unit01 {
  width: 280px;
  margin: 0 15px 0 0;
  padding: 0;
  float: left;
}
#mainte .item01 .left .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item01 .left .unit01 .title img {
  width: 100%;
}
#mainte .item01 .left .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item01 .left .unit01 .img img {
  width: 260px;
}
#mainte .item01 .left .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item01 .left .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item01 .left .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#mainte .item01 .left .po02 {
  width: 260px;
  padding: 71px 0 0 0;
  position: relative;
}
#mainte .item01 .left .unit02 {
  width: 260px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  float: left;
  text-align: right;
}
#mainte .item01 .left .unit02 .img img {
  width: 260px;
}
#mainte .item01 .left .unit02 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item01 .left .unit02 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 8px 0 0 0;
}
#mainte .item01 .right {
  width: 260px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#mainte .item01 .right .po {
  width: 260px;
  position: relative;
}
#mainte .item01 .right .unit01 {
  width: 260px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#mainte .item01 .right .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item01 .right .unit01 .title img {
  width: 100%;
}
#mainte .item01 .right .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item01 .right .unit01 .img img {
  width: 260px;
}
#mainte .item01 .right .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item01 .right .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item01 .right .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#mainte .item01 .right02 .po {
  width: 260px;
  position: relative;
}
#mainte .item01 .right02 .unit01 {
  width: 260px;
  margin: 0 50px 0 0;
  padding: 0;
  float: left;
}
#mainte .item01 .right02 .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item01 .right02 .unit01 .title img {
  width: 100%;
}
#mainte .item01 .right02 .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item01 .right02 .unit01 .img img {
  width: 260px;
}
#mainte .item01 .right02 .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item01 .right02 .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item01 .right02 .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#mainte .item02 {
  width: 880px;
  margin: 0 auto 40px auto;
}
#mainte .item02 .left {
  width: 555px;
  height: 310px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#mainte .item02 .left .po {
  width: 280px;
  position: relative;
}
#mainte .item02 .left .unit01 {
  width: 280px;
  margin: 0 15px 0 0;
  padding: 0;
  float: left;
}
#mainte .item02 .left .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item02 .left .unit01 .title img {
  width: 100%;
}
#mainte .item02 .left .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item02 .left .unit01 .img img {
  width: 260px;
}
#mainte .item02 .left .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item02 .left .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item02 .left .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#mainte .item02 .left .po02 {
  width: 260px;
  padding: 71px 0 0 0;
  position: relative;
}
#mainte .item02 .left .unit02 {
  width: 260px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  float: left;
  text-align: right;
}
#mainte .item02 .left .unit02 .img img {
  width: 260px;
}
#mainte .item02 .left .unit02 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item02 .left .unit02 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 8px 0 0 0;
}
#mainte .item02 .right {
  width: 260px;
  margin: 0 65px 0 0;
  padding: 0;
  float: left;
}
#mainte .item02 .right .po {
  width: 260px;
  position: relative;
}
#mainte .item02 .right .unit01 {
  width: 260px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#mainte .item02 .right .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item02 .right .unit01 .title img {
  width: 100%;
}
#mainte .item02 .right .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item02 .right .unit01 .img img {
  width: 260px;
}
#mainte .item02 .right .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item02 .right .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item02 .right .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#mainte .item02 .right02 .po {
  width: 260px;
  position: relative;
}
#mainte .item02 .right02 .unit01 {
  width: 260px;
  margin: 0 50px 0 0;
  padding: 0;
  float: left;
}
#mainte .item02 .right02 .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#mainte .item02 .right02 .unit01 .title img {
  width: 100%;
}
#mainte .item02 .right02 .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#mainte .item02 .right02 .unit01 .img img {
  width: 260px;
}
#mainte .item02 .right02 .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 20px;
  top: 223px;
  width: 230px;
}
#mainte .item02 .right02 .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 13px;
  line-height: 160%;
  padding: 0 0 15px 0;
}
#mainte .item02 .right02 .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}

#category01 {
  width: 100%;
  height: 310px;
}

#category02 {
  width: 540px;
  margin: 0 auto 0 auto;
  padding: 40px 0 0 0;
}
#category02 .text01 {
  color: #1a274e;
  font-size: 20px;
  padding: 0 0 10px 0;
}
#category02 .text02 {
  color: #1a274e;
  font-size: 12px;
  line-height: 160%;
}

#mainte .sp {
  width: 100%;
  height: 50px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #mainte {
    width: 100%;
    padding: 0 0 0 0;
  }
  #mainte img, #mainte .spimg01 {
    width: 100%;
  }
  #mainte .sptext01 {
    color: #1a274e;
    width: 90%;
    margin: 0 auto 5% auto;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
  }
  #mainte .spbox01 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 10% 0 10% 0;
  }
  #mainte .spbox01 img {
    width: 100%;
  }
  #mainte .spbox01 .item01 {
    width: 70%;
    margin: 0 auto 0 auto;
  }
  #mainte .spbox02 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 10% 0 0 0;
  }
  #mainte .spbox02 img {
    width: 100%;
  }
  #mainte .spbox02 .item01 {
    width: 70%;
    margin: 0 auto 0 auto;
  }
  #mainte .spbox03 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 0 0 8% 0;
  }
  #mainte .spbox03 img {
    width: 90%;
  }
  #mainte .spbox03 .item01 {
    width: 87%;
    margin: 0 auto 0 auto;
  }
  #mainte .spbox03 .item01 .left {
    width: 25%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
  }
  #mainte .spbox03 .item01 .right {
    width: 75%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
  }
  #mainte .spbox03 .item01 .right .text01 {
    color: #1a274e;
    font-size: 16px;
    padding: 5% 0 2% 0;
  }
  #mainte .spbox03 .item01 .right .text02 {
    color: #1a274e;
    font-size: 10px;
    line-height: 140%;
    padding: 0 0 0 0;
  }
  #mainte .sp {
    width: 100%;
    height: 10%;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 車両販売ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#sales {
  width: 100%;
  padding: 30px 0 0 0;
}
#sales img {
  width: 100%;
}
#sales a:hover {
  opacity: 0.5;
}
#sales .title {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#sales .title img {
  width: 100%;
}
#sales .title .text {
  font-size: 18px;
  font-weight: 400;
  color: #1a274e;
  padding: 3% 0 2% 0;
}
#sales .title02 {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
  padding: 30px 0 0 0;
}
#sales .title02 img {
  width: 100%;
}
#sales .title02 .text {
  font-size: 18px;
  font-weight: 400;
  color: #1a274e;
  padding: 3% 0 2% 0;
}
#sales .spimg01 {
  width: 1280px;
  margin: 0 auto 0 auto;
}
#sales .spimg02 {
  width: 950px;
  margin: 0 auto 0 auto;
}
#sales .spimg02 .text01 {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 160%;
  padding: 40px 0 40px 0;
  background-color: #1c449a;
  text-align: center;
}
#sales .spimg02 .text02 {
  color: #1a274e;
  font-size: 18px;
  line-height: 160%;
  padding: 40px 0 40px 0;
  background-color: #efeeec;
  text-align: center;
}
#sales .bt_box {
  width: 100%;
  position: relative;
}
#sales .bt_box .bt_item01 {
  width: 57%;
  position: absolute;
  top: 190px;
  left: 184px;
}
#sales .bt_box .bt_item02 {
  width: 57%;
  position: absolute;
  top: 51px;
  left: 184px;
}
#sales .bt_box .bt_item03 {
  width: 57%;
  position: absolute;
  top: 233px;
  left: 184px;
}
#sales .sp {
  width: 100%;
  height: 50px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #sales {
    width: 100%;
    padding: 0 0 0 0;
  }
  #sales img, #sales .spimg01 {
    width: 100%;
  }
  #sales .sptext01 {
    color: #1a274e;
    width: 90%;
    margin: 0 auto 5% auto;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
  }
  #sales .spbox01 {
    width: 100%;
  }
  #sales .spbox01 img, #sales .spbox01 .item01 {
    width: 100%;
  }
  #sales .spbox01 .item02 {
    width: 100%;
    background-color: #efeeec;
    padding: 0 0 8% 0;
  }
  #sales .spbox01 .item02 .text01 {
    color: #FFFFFF;
    width: 100%;
    padding: 5% 0 5% 0;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    background-color: #1c449a;
  }
  #sales .spbox01 .item02 .text02 {
    color: #1a274e;
    width: 100%;
    padding: 5% 0 5% 0;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
  }
  #sales .bt_box {
    display: none;
  }
  #sales .bt_box .bt_item01 {
    display: none;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 特装車ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#equipped {
  width: 100%;
  padding: 30px 0 0 0;
}
#equipped img a:hover {
  opacity: 0.5;
}
#equipped .title {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#equipped .title img {
  width: 100%;
}
#equipped .title .text {
  font-size: 18px;
  font-weight: 400;
  color: #1a274e;
  padding: 3% 0 2% 0;
}
#equipped .mainte_box01 {
  width: 1280px;
  margin: 0 auto 0 auto;
  padding: 45px 0 45px 0;
  background-color: #f0f0ef;
}
#equipped .item01 {
  width: 900px;
  margin: 0 auto 0 auto;
}
#equipped .item01 .left {
  width: 100%;
  height: 380px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#equipped .item01 .left .po {
  width: 435px;
  position: relative;
}
#equipped .item01 .left .unit01 {
  width: 435px;
  margin: 0 45px 0 0;
  padding: 0;
  float: left;
}
#equipped .item01 .left .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#equipped .item01 .left .unit01 .title img {
  width: 100%;
}
#equipped .item01 .left .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#equipped .item01 .left .unit01 .img img {
  width: 420px;
}
#equipped .item01 .left .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 45px;
  top: 302px;
  width: 360px;
}
#equipped .item01 .left .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 15px;
  line-height: 160%;
  padding: 0 0 0 0;
}
#equipped .item01 .left .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#equipped .item01 .left .unit02 {
  width: 420px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#equipped .item01 .left .unit02 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#equipped .item01 .left .unit02 .title img {
  width: 100%;
}
#equipped .item01 .left .unit02 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#equipped .item01 .left .unit02 .img img {
  width: 420px;
}
#equipped .item01 .left .unit02 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 45px;
  top: 302px;
  width: 360px;
}
#equipped .item01 .left .unit02 .text_box .text01 {
  color: #1a274e;
  font-size: 15px;
  line-height: 160%;
  padding: 0 0 0 0;
}
#equipped .item01 .left .unit02 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#equipped .item02 {
  width: 900px;
  margin: 0 auto 0 auto;
}
#equipped .item02 .left {
  width: 100%;
  height: 335px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#equipped .item02 .left .po {
  width: 435px;
  position: relative;
}
#equipped .item02 .left .unit01 {
  width: 435px;
  margin: 0 45px 0 0;
  padding: 0;
  float: left;
}
#equipped .item02 .left .unit01 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#equipped .item02 .left .unit01 .title img {
  width: 100%;
}
#equipped .item02 .left .unit01 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#equipped .item02 .left .unit01 .img img {
  width: 420px;
}
#equipped .item02 .left .unit01 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 45px;
  top: 302px;
  width: 360px;
}
#equipped .item02 .left .unit01 .text_box .text01 {
  color: #1a274e;
  font-size: 15px;
  line-height: 160%;
  padding: 0 0 0 0;
}
#equipped .item02 .left .unit01 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#equipped .item02 .left .unit02 {
  width: 420px;
  margin: 0 0 0 0;
  padding: 0;
  float: left;
}
#equipped .item02 .left .unit02 .title {
  width: 100%;
  text-align: left;
  padding: 0 0 8px 0;
}
#equipped .item02 .left .unit02 .title img {
  width: 100%;
}
#equipped .item02 .left .unit02 .title .text {
  font-size: 21px;
  line-height: 100%;
  font-weight: 600;
  padding: 12px 0 0 10px;
}
#equipped .item02 .left .unit02 .img img {
  width: 420px;
}
#equipped .item02 .left .unit02 .text_box {
  margin: 0;
  padding: 15px;
  background-color: #FFFFFF;
  position: absolute;
  left: 45px;
  top: 302px;
  width: 360px;
}
#equipped .item02 .left .unit02 .text_box .text01 {
  color: #1a274e;
  font-size: 15px;
  line-height: 160%;
  padding: 0 0 0 0;
}
#equipped .item02 .left .unit02 .text_box .text02 {
  color: #040000;
  font-size: 24px;
  line-height: 160%;
  padding: 0 0 0 0;
  font-weight: 400;
}
#equipped .sp {
  width: 100%;
  height: 50px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #equipped {
    width: 100%;
    padding: 0 0 0 0;
  }
  #equipped img, #equipped .spimg01 {
    width: 100%;
  }
  #equipped .sptext01 {
    color: #1a274e;
    width: 90%;
    margin: 0 auto 5% auto;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
  }
  #equipped .spbox01 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 10% 0 10% 0;
  }
  #equipped .spbox01 img {
    width: 100%;
  }
  #equipped .spbox01 .item01 {
    width: 85%;
    margin: 0 auto 0 auto;
  }
  #equipped .spbox02 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 10% 0 0 0;
  }
  #equipped .spbox02 img {
    width: 100%;
  }
  #equipped .spbox02 .item01 {
    width: 70%;
    margin: 0 auto 0 auto;
  }
  #equipped .spbox03 {
    width: 100%;
    background-color: #f0f0ef;
    padding: 0 0 8% 0;
  }
  #equipped .spbox03 img {
    width: 90%;
  }
  #equipped .spbox03 .item01 {
    width: 87%;
    margin: 0 auto 0 auto;
  }
  #equipped .spbox03 .item01 .left {
    width: 25%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
  }
  #equipped .spbox03 .item01 .right {
    width: 75%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
  }
  #equipped .spbox03 .item01 .right .text01 {
    color: #1a274e;
    font-size: 16px;
    padding: 5% 0 2% 0;
  }
  #equipped .spbox03 .item01 .right .text02 {
    color: #1a274e;
    font-size: 10px;
    line-height: 140%;
    padding: 0 0 0 0;
  }
  #equipped .sp {
    width: 100%;
    height: 10%;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 保険ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#insurance {
  width: 100%;
  padding: 30px 0 0 0;
}
#insurance img {
  width: 100%;
}
#insurance a:hover {
  opacity: 0.5;
}
#insurance .title {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#insurance .title img {
  width: 100%;
}
#insurance .title .text {
  font-size: 24px;
  line-height: 160%;
  font-weight: 600;
  color: #212121;
  padding: 3% 0 4% 0;
}
#insurance .title .img {
  width: 100%;
}
#insurance .item01 {
  color: #FFFFFF;
  width: 100%;
  background-color: #1b397b;
  padding: 38px 0 38px 0;
}
#insurance .item01 .text01 {
  width: 790px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
  margin: 0 auto 30px auto;
}
#insurance .item01 .text02 {
  width: 790px;
  height: 90px;
  margin: 0 auto 0 auto;
  position: relative;
}
#insurance .item01 .text02 .left {
  font-size: 16px;
  line-height: 180%;
  position: absolute;
  text-align: left;
  left: 25px;
}
#insurance .item01 .text02 .center {
  font-size: 16px;
  line-height: 180%;
  position: absolute;
  text-align: left !important;
  left: 278px;
}
#insurance .item01 .text02 .right {
  font-size: 16px;
  line-height: 180%;
  position: absolute;
  text-align: left;
  left: 635px;
}
#insurance .item02 {
  color: #FFFFFF;
  width: 846px;
  background-color: #f0f0f0;
  margin: 50px auto 0 auto;
}
#insurance .item02 .text01 {
  color: #212121;
  font-size: 16px;
  line-height: 160%;
  padding: 30px 0 0 40px;
}
#insurance .sp {
  width: 100%;
  height: 60px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #insurance {
    width: 100%;
    padding: 0 0 0 0;
  }
  #insurance img, #insurance .spimg01 {
    width: 100%;
  }
  #insurance .sptext01 {
    color: #212121;
    width: 100%;
    padding: 10% 0 8% 0;
    font-size: 18px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
  }
  #insurance .spbox01 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #insurance .spbox01 img {
    width: 100%;
  }
  #insurance .sptext02 {
    color: #FFFFFF;
    width: 100%;
    padding: 8% 0 8% 0;
    font-size: 24px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
    background-color: #1b397b;
  }
  #insurance .sptext03 {
    color: #FFFFFF;
    width: 70%;
    padding: 4% 0 0 0;
    margin: 0 auto 0 auto;
    font-size: 18px;
    line-height: 200%;
    font-weight: 600;
    text-align: left;
    background-color: #1b397b;
  }
  #insurance .sptext04 {
    color: #212121;
    width: 90%;
    padding: 5% 5% 5% 5%;
    font-size: 14px;
    line-height: 160%;
    font-weight: 400;
    text-align: left;
    background-color: #f0f0f0;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 会社案内ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#corporate {
  width: 1280px;
  padding: 30px 0 0 0;
  margin: 0 auto 0 auto;
}
#corporate img {
  width: 100%;
}
#corporate a:hover {
  opacity: 0.5;
}
#corporate .item01 {
  width: 100%;
  color: #111c3a;
  font-size: 34px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 6px;
  padding: 40px 0 40px 0;
  text-align: center;
}
#corporate .item02 {
  width: 840px;
  color: #212121;
  font-size: 16px;
  line-height: 200%;
  font-weight: 400;
  margin: 0 auto 0 auto;
  padding: 0 0 90px 0;
  text-align: left;
}
#corporate .item03 {
  width: 100%;
  color: #111c3a;
  font-size: 34px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 6px;
  padding: 40px 0 30px 0;
  text-align: center;
}
#corporate .item04 {
  width: 950px;
  color: #212121;
  font-size: 16px;
  line-height: 200%;
  font-weight: 400;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  text-align: left;
}
#corporate .item05 {
  width: 100%;
  color: #111c3a;
  font-size: 34px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 6px;
  padding: 140px 0 30px 0;
  text-align: center;
}
#corporate .item06 {
  width: 950px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 200%;
  font-weight: 400;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  text-align: left;
  background-color: #116ca9;
}
#corporate .item06 .text01 {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 160%;
  text-align: left;
  margin: 0;
  padding: 40px 50px 0 45px;
}
#corporate .item06 .text02 {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  margin: 0;
  padding: 10px 0 10px 0;
}
#corporate .item06 .img01 {
  width: 100%;
}
#corporate hr {
  margin: 0;
  border-top: 1px solid #9ea4b2;
}
#corporate .unit01 {
  margin: 0;
  padding: 5px 0 5px 0;
}
#corporate .unit01 .text01 {
  font-size: 16px;
  line-height: 160%;
  text-align: right;
  margin: 0;
  padding: 10px 48px 10px 0;
}
#corporate .unit01 .text02 {
  font-size: 16px;
  line-height: 160%;
  text-align: left;
  margin: 0;
  padding: 10px 0 10px 48px;
  border-left: 5px solid #5c84a9;
}
#corporate .sp {
  width: 100%;
  height: 60px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #corporate {
    width: 100%;
    padding: 0 0 0 0;
  }
  #corporate img {
    width: 100%;
  }
  #corporate .sptext01 {
    color: #111c3a;
    width: 100%;
    padding: 10% 0 6% 0;
    font-size: 30px;
    line-height: 180%;
    font-weight: 600;
    letter-spacing: 6px;
    text-align: center;
  }
  #corporate .sptext02 {
    color: #212121;
    width: 90%;
    padding: 0 5% 4% 5%;
    font-size: 16px;
    line-height: 180%;
    font-weight: 400;
    text-align: left;
  }
  #corporate .sptext03 {
    color: #FFFFFF;
    width: 95%;
    padding: 2% 0 2% 5%;
    margin: 0 0 0 0;
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    text-align: left;
    background-color: #5c84a9;
  }
  #corporate .sptext04 {
    color: #212121;
    width: 90%;
    padding: 4% 5% 7% 5%;
    margin: 0 0 0 0;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    text-align: left;
  }
  #corporate .sptext05 {
    color: #FFFFFF;
    width: 95%;
    padding: 2% 0 2% 5%;
    margin: 0 0 0 0;
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    text-align: left;
    background-color: #9ac7d4;
  }
  #corporate .sptext06 {
    color: #212121;
    width: 90%;
    padding: 4% 5% 7% 5%;
    margin: 0 0 0 0;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    text-align: left;
  }
  #corporate .sptext07 {
    color: #FFFFFF;
    width: 90%;
    padding: 4% 5% 7% 5%;
    margin: 0 0 0 0;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    text-align: left;
    background-color: #116ca9;
  }
  #corporate .sptext08 {
    color: #FFFFFF;
    width: 100%;
    padding: 2% 0 2% 0;
    margin: 0 0 0 0;
    font-size: 11px;
    line-height: 100%;
    font-weight: 400;
    text-align: center;
    background-color: #116ca9;
  }
  #corporate .img01 {
    width: 100%;
    padding: 0 0 0 0;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ 求人情報ページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#recruit {
  width: 100%;
  padding: 30px 0 0 0;
}
#recruit img {
  width: 100%;
}
#recruit a:hover {
  opacity: 0.5;
}
#recruit .title {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#recruit .title img {
  width: 100%;
}
#recruit .title .text {
  font-size: 24px;
  line-height: 160%;
  font-weight: 600;
  color: #212121;
  padding: 3% 0 5% 0;
}
#recruit .title .img {
  width: 100%;
}
#recruit .title02 {
  width: 1280px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#recruit .title02 img {
  width: 100%;
}
#recruit .title02 .text {
  font-size: 24px;
  line-height: 160%;
  font-weight: 600;
  color: #212121;
  padding: 2% 0 2% 0;
}
#recruit .item01 {
  width: 750px;
  margin: 0 auto 0 auto;
}
#recruit .item01 .unit01 {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 25px 0;
  border-bottom: 2px solid #f2f3f5;
}
#recruit .item01 .unit01 .text01 {
  font-size: 18px;
  line-height: 160%;
}
#recruit .item01 .unit01 .text02 {
  font-size: 14px;
  line-height: 160%;
}
#recruit .item01 .unit02 {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 25px 0;
}
#recruit .item01 .unit02 .text01 {
  font-size: 18px;
  line-height: 160%;
}
#recruit .item01 .unit02 .text02 {
  font-size: 14px;
  line-height: 160%;
}
#recruit .item02 {
  width: 1017px;
  margin: 0 auto 0 auto;
}
#recruit .item02 .img {
  width: 33%;
  float: left;
}
#recruit .sp {
  width: 100%;
  height: 60px;
}
#recruit .linkwrap {
  width: 600px;
  max-width: 60%;
  font-size: 28px;
  margin: 0 auto;
  padding: 1em 3em;
  text-align: center;
  background: #f0f0f0;
  border-radius: 7px;
}
#recruit .linkwrap p {
  padding-top: 1em;
}
#recruit .linkwrap .link {
  display: flex;
  justify-content: space-between;
}
#recruit .linkwrap .link a {
  display: block;
  width: 100%;
  margin: 0.5em;
  background: #fff;
  border-radius: 7px;
  text-decoration: none;
}
#recruit .linkwrap .link a strong {
  font-size: 28px;
  display: block;
  padding: 2em 0 0.5em;
  color: #1b397b;
}
#recruit .linkwrap .link a span {
  font-size: 16px;
  display: block;
  padding: 1em 0;
  color: #231815;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #recruit {
    width: 100%;
    padding: 0 0 0 0;
  }
  #recruit img, #recruit .spimg01 {
    width: 100%;
  }
  #recruit .sptext01 {
    color: #212121;
    width: 100%;
    padding: 10% 0 8% 0;
    font-size: 18px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
  }
  #recruit .sptext02 {
    color: #212121;
    width: 100%;
    padding: 0 0 4% 0;
    font-size: 18px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
  }
  #recruit .img {
    width: 100%;
  }
  #recruit .spbox01 {
    width: 95%;
    padding: 0 0 5% 5%;
    margin: 0 0 4% 0;
    border-bottom: 1px solid #ebedf0;
  }
  #recruit .spbox01 .text01 {
    font-size: 20px;
    line-height: 160%;
    padding: 0 0 2% 0;
    margin: 0;
  }
  #recruit .spbox01 .text02 {
    font-size: 14px;
    line-height: 160%;
    padding: 0 0 0 5%;
    margin: 0;
  }
  #recruit .spbox01 img {
    width: 100%;
  }
  #recruit .spbox02 {
    width: 95%;
    padding: 0 0 5% 5%;
    margin: 0 0 4% 0;
  }
  #recruit .spbox02 .text01 {
    font-size: 20px;
    line-height: 160%;
    padding: 0 0 2% 0;
    margin: 0;
  }
  #recruit .spbox02 .text02 {
    font-size: 14px;
    line-height: 160%;
    padding: 0 0 0 5%;
    margin: 0;
  }
  #recruit .spbox02 img {
    width: 100%;
  }
  #recruit .linkwrap {
    max-width: 90%;
    padding: 1em 0;
  }
  #recruit .linkwrap .link {
    flex-direction: column;
  }
  #recruit .linkwrap .link a {
    width: 90%;
    margin: 0.5em auto;
  }
  #recruit .linkwrap .link a strong {
    font-size: 22px;
  }
  #recruit .linkwrap .link a span {
    font-size: 14px;
  }
}
/* +++++++++++++++++++++++++++++++ */
/* +++ お問合せページ +++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++ */
.sub_main_img {
  width: 1280px;
  padding: 0 0 0 0;
}

#contact {
  width: 100%;
  padding: 30px 0 0 0;
}
#contact img {
  width: 100%;
}
#contact a:hover {
  opacity: 0.5;
}
#contact .item01 {
  width: 100%;
  color: #111c3a;
  font-size: 34px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 6px;
  padding: 90px 0 40px 0;
  text-align: center;
}
#contact .text01 {
  font-size: 18px;
  font-weight: 400;
  color: #1a274e;
  padding: 0 0 2% 0;
  text-align: center;
}
#contact .box01 {
  width: 883px;
  margin: 0 auto 0 auto;
}
#contact .box01 .text01 {
  font-size: 18px;
  font-weight: 400;
  color: #212121;
  padding: 1% 0 12% 0;
  text-align: center;
}
#contact .box01 .text02 {
  font-size: 24px;
  font-weight: 400;
  color: #212121;
  padding: 0 0 4% 0;
  text-align: center;
}
#contact .box01 .text03 {
  font-size: 28px;
  font-weight: 400;
  color: #212121;
  padding: 0 0 4% 0;
  text-align: center;
}
#contact .box01 .text04 {
  font-size: 17px;
  font-weight: 400;
  color: #212121;
  padding: 3% 0 2% 0;
  text-align: left;
  line-height: 200%;
  width: 85%;
  margin: 0 auto 0 auto;
}
#contact .box01 .unit01 {
  width: 100%;
  margin: 0 0 60px 0;
}
#contact .box01 .unit01 .title01 {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  text-align: left;
  width: 263px;
  float: left;
  border-right: 1px solid #FFFFFF;
  padding: 15px;
  margin: 0 0 0 0;
  background-color: #1b3778;
}
#contact .box01 .unit01 .title02 {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  text-align: left;
  width: 264px;
  float: left;
  padding: 15px;
  margin: 0 0 0 0;
  background-color: #1b3778;
}
#contact .box01 .unit01 .title03 {
  color: #212121;
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  text-align: left;
  width: 263px;
  float: left;
  border-right: 1px solid #FFFFFF;
  padding: 15px;
  margin: 0 0 0 0;
  background-color: #e0e0e0;
}
#contact .box01 .unit01 .title04 {
  color: #212121;
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  text-align: left;
  width: 264px;
  float: left;
  padding: 15px;
  margin: 0 0 0 0;
  background-color: #e0e0e0;
}
#contact .box01 .unit02 {
  width: 600px;
  margin: 0 auto 90px auto;
}
#contact .box01 .unit02 .check_text01 {
  color: #2f40a5;
  width: 96%;
  padding: 2%;
  background-color: #f1f1f1;
  line-height: 160%;
}
#contact .box01 .unit02 .check_text02 {
  color: #FFFFFF;
  width: 96%;
  padding: 2%;
  background-color: #FF0000;
  line-height: 160%;
}
#contact .box01 input.hoge {
  width: 80%;
  padding: 10px;
}
#contact .box01 input.hoge2 {
  width: 100%;
  padding: 10px;
}

textarea {
  resize: vertical;
  width: 100%;
  border-color: #bfbfbf;
}

#contact .box01 .unit03 {
  font-size: 15px;
  line-height: 160%;
  text-align: center;
}
#contact .box01 .unit03 .bt01 {
  width: 292px;
  margin: 0 auto 0 auto;
}
#contact .box01 .unit04 {
  width: 606px;
  margin: 0 auto 90px auto;
  font-size: 15px;
  line-height: 160%;
  text-align: center;
}
#contact .box01 .unit04 .bt01 {
  width: 292px;
  margin: 0 auto 0 auto;
}
#contact .sp {
  width: 100%;
  height: 60px;
}

/*--------------------- スマホ版表示CSS  ---------------------*/
@media screen and (max-width: 640px) {
  .sub_main_img {
    width: 100%;
    padding: 0 0 0 0;
  }
  #contact {
    width: 100%;
    padding: 0 0 0 0;
  }
  #contact img {
    width: 100%;
  }
  #contact .sptext01 {
    color: #111c3a;
    width: 100%;
    padding: 10% 0 2% 0;
    font-size: 30px;
    line-height: 180%;
    font-weight: 600;
    letter-spacing: 6px;
    text-align: center;
  }
  #contact .sptext02 {
    color: #212121;
    width: 100%;
    padding: 0 0 6% 0;
    font-size: 17px;
    line-height: 180%;
    font-weight: 400;
    text-align: center;
  }
  #contact .sptext03 {
    color: #212121;
    width: 100%;
    padding: 0 0 11% 0;
    font-size: 15px;
    line-height: 180%;
    font-weight: 400;
    text-align: center;
  }
  #contact .sptext04 {
    color: #212121;
    width: 100%;
    padding: 20% 0 3% 0;
    font-size: 20px;
    line-height: 180%;
    font-weight: 400;
    text-align: center;
  }
  #contact .sptext05 {
    color: #212121;
    width: 94%;
    padding: 0 3% 11% 3%;
    font-size: 15px;
    line-height: 180%;
    font-weight: 400;
    text-align: left;
  }
  #contact .sptext06 {
    color: #212121;
    width: 100%;
    padding: 0 0 8% 0;
    font-size: 16px;
    line-height: 180%;
    font-weight: 600;
    text-align: center;
  }
  #contact .sptext07 {
    color: #212121;
    width: 100%;
    padding: 2% 0 6% 0;
    font-size: 24px;
    line-height: 180%;
    font-weight: 400;
    text-align: center;
  }
  #contact .sptext08 {
    color: #212121;
    width: 94%;
    padding: 0 3% 0 3%;
    font-size: 15px;
    line-height: 180%;
    font-weight: 400;
    text-align: left;
  }
  #contact .spbox02 {
    width: 90%;
    padding: 0;
    margin: 0 auto 4% auto;
  }
  #contact .spbox02 .check_text01 {
    color: #2f40a5;
    width: 96%;
    padding: 2%;
    background-color: #f1f1f1;
    line-height: 160%;
  }
  #contact .spbox02 .check_text02 {
    color: #FFFFFF;
    width: 96%;
    padding: 2%;
    background-color: #FF0000;
    line-height: 160%;
  }
  input.hoge {
    width: 96%;
    padding: 2%;
  }
  textarea {
    resize: vertical;
    width: 100%;
    border-color: #bfbfbf;
  }
  button {
    width: 100%;
  }
  button.input {
    background: url("../01_img/contact/sp/07.jpg") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    background-size: contain;
    padding-top: 13%;
  }
  button.input2 {
    background: url("../01_img/contact/sp/08.jpg") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    background-size: contain;
    padding-top: 30%;
  }
  button.input3 {
    background: url("../01_img/contact/sp/09.jpg") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    background-size: contain;
    padding-top: 30%;
  }
  button.input4 {
    background: url("../01_img/contact/sp/10.jpg") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    background-size: contain;
    padding-top: 30%;
  }
}
/* footer navi */
.foot_nav {
  text-align: center;
  padding-top: 20px;
}
.foot_nav a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
}
.foot_nav a::before {
  content: ">";
  padding-right: 5px;
}
.foot_nav a:hover {
  opacity: 0.7;
}


/*-----202603追加-----*/
.foot_nav_re {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin-top: 30px;
}
.foot_nav_re a {
    color: inherit;
    text-decoration: none;
}
.foot_nav_re a:hover {
    opacity: 0.6;
}
.foot_nav_re .link {
    font-size: 15px;
    color: #fff;
    line-height: 1em;
    font-weight: bold;
}
.foot_nav_re span {
    margin-right: 3px;
    color: #6885c3;
}