@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
html {
 width:100%;
 max-width: 100%;
overflow-x: hidden !important;
scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  
  overflow: hidden; 
}
.gsc-webResult.gsc-result {
  margin: 0;
  padding: 20px 0;
}

.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  font-size: 16px;
  font-size: 1.2rem!important;
  font-weight: bold;
}

.gs-result .gs-title, .gs-result .gs-title  {
  color: #00c;
  text-decoration: none;
  margin: 2em 0 1em;
  padding: 0 0 0.2em;
  color: #037;
  font-size: 1.2rem;
}

.gs-webResult div.gs-visibleUrl-long {
  display: block;
  margin: 0 0 1em;
  font-size: 1rem;
}
.gsc-wrapper .gsc-adBlock {
  display: none!important;
}
.gsc-adBlock {
  display: none !important;
}
.gsc-orderby-container {
  display: none !important;
}
p {
  letter-spacing: 1px;
 
}
table.gsc-search-box td.gsc-input {
  padding-right: 0px!important; 
}
.gsc-search-button-v2 {
  padding: 6px 20px!important;
}
.gsc-search-button-v2 svg {
  fill: #FFFFFF;
  width: 16px;
  height: 16px;
}


.w100 {font-weight: 100;}
.w200 {font-weight: 200;}
.w300 {font-weight: 300;}
.w400 {font-weight: 400;}
.w500 {font-weight: 500;}
.w700 {font-weight: 700;}
.w900 {font-weight: 900;}
html {
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}
a:hover {
  color:#FFF135;
  }
img{width:100%;}
 
/*共通*/
.m_top_90 {
  margin-top: 90px!important;
}
.m_bottom_90 {
  margin-bottom: 90px!important;
}
.m_bottom_180 {
  margin-bottom: 90px!important;
}
.p_top_90 {
  padding-top: 90px!important;
}
.p_bottom_90 {
  padding-bottom: 90px!important;
}
.p_bottom_180 {
  padding-bottom: 180px!important;
}
.blue {
  color: #003377;
}
.white {
  color: #fff;
}
.inner {
  max-width: 1000px;
  margin: auto;
}
ul {
  padding: 0;
  list-style: none;
}
a {
  color: #ffffff;
  text-decoration: none;
}

.h1_txt {
  display: block;
  line-height: 200%;
  width: 325px;
 }
 h1 {
  font-size: 1.4rem;
 }
 h2 {
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.16);
  margin-bottom: 60px;
  line-height: 100%;
 }
 h2 span {
  font-size: 14px;

 }
/*ロゴの大きさを調整*/
#logo img {
  max-width:100%;
}
 
nav{
 width: 100%;
 height: 100px;
align-items: center;
 position: relative;
 background: #003377;
 color: #fff;
}
 
.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding: 0 1em;
}
 
/*ナビゲーション部分*/
 
.menu ul li a {
display:block;
  padding: 1.5em;
border-bottom: 1px dotted #CCC;
  color:#fff;
  text-decoration:none;
  text-align: left;
}
 
.menu ul li a:hover {
color:#FFF135;
}
 
.menu{
 
  text-align:center;
  background-color:rgba(255,255,255,0.5);
  transition: 0.5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
 
/*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
 
}
 
/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
 background: #003377d4;
 padding-bottom: 2vw;
 position: fixed;
 top: 0px;
 right: 0;
 width: 100%;
 z-index: 9;
  height: 100%;
 
}
 
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 20;
  right:10px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 40px;
    border-bottom: solid 4px #FFF135;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
 .sp {
  display: none;
 }
 .br-pc {
  display: none;
}
.br-sp {
  display: block;
}
/*ロゴの大きさを調整*/
#logo img {
  width:100%;
}	
a[href^="tel:"] {
  pointer-events: none!important;
}
	
nav{
 display: flex;
}
.nav_2 {
  padding: 1rem;
    display: flex;
    flex-wrap: wrap;
  text-align: center;
  justify-content: center!important;
  align-items: center!important;
  background: #003377;
    color: #fff;
    font-size: 1vw;
}
.nav_2 li {
  border-right: solid 1px #fff;
}
.nav_2 li a {
  padding: 0 2.5em;
  border-bottom: none;
}
.navbar {
  position: fixed;
  top: 90px;
  width: 100%;
  z-index: 100;
  font-weight:bold;
  
}

.Toggle{
 display: none;
}
.menu{
width: 100%;
font-size:0.9em;
background-color: transparent;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.menu ul{
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}
.menu ul li:first-of-type {
  border-right: solid 1px #fff;
}
.menu ul li a{
  padding: 0 2.5em;
 border-bottom: none;
}
.menu ul li a:hover{
background-color:transparent;
}

/*-----------------検索窓ー----------*/
.search-container {
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  align-items: center;
  font-size: 16px;
}
.search-container p {
  padding-right: 1rem;
}


.search-container input[type="text"] {
  width: 125px;
  padding: 5px;
  border: none;
  background-color: #ffffff;
  font-size: 16px;
}

.search-container button[type="submit"] {
  background-color: #003377;
  color: white;
  border: none;
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
}

.search-container button[type="submit"]:hover {
  background-color: #0049a8;
}
}

/* TOPページナビ
----------------------------------------------- */

@media (min-width: 768px) {
    body.is-top header nav{
      background: transparent;
      float:left;
      right:0;
      z-index: 999;
      width: auto;
    }
    body.is-top header .navbar {
      top:30px;
      right:0;
    }
    body.is-top header .nav_2 {
      background: transparent;
      float: right;
      justify-content: flex-end !important;
    }
    body.is-top header .nav_2 li {
      border-right: none;
    }

    body.is-top .h1_txt{
        margin-left: 10px;
    }

    body.is-top header .nav_2 li a {
        padding: 0 1em;
    }
    
    body.is-top header .nav_2.is-open {
        background-color: #003377;
        top: 0;
        float: none;
        justify-content: center !important;
    }
    body.is-top header .nav_2.is-open li{
        border-right: 1px solid #fff;
    }
}

/*-----------------メインビジュアルー----------*/
.main-visual {
  /* background-image: url(../img/main_v.jpg); */
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 5vw;
  text-shadow: 2px 2px 2px #333;
  height: 49.9166667vw;
  z-index: -2;
}

.main-visual-movie{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left:0;
    z-index:5;
}
.main-visual video{
    width:100%;
    height: auto;
}
@media (max-width: 767px) {
    body.is-top .main-visual {
        height: 60.916667vw;
    }
    body.is-top .main-visual video{
        width:auto;
        height: 100%;
    }
}

.req_main_v {
  background-image: url(../img/luxury/main_cate.jpg);
}
.req_main_v_2 {
  background-image: url(../img/accident/main_cate.jpg);
}
.req_main_v_3 {
  background-image: url(../img/special/main_cate.jpg);
}

.main-visual p {
  position: absolute;
  top: 53%;
  left: 32%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: 4vw;
}
.slider {
  position: relative;
  height: 49.9166667vw;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


/*--------------------------------------------輸送可能車両ー---------------------------------------------*/
.vehicle_wrap {
  padding-top: 30px;
}

.vehicle_wrap ul {
  display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 15px;
grid-row-gap: 15px;
font-weight: 300;

  
}
.vehicle_wrap ul li {
  position: relative;
  display: inline-block;
}
.vehicle_wrap ul li img {
  display: block;
}
.vehicle_wrap ul li figcaption {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  text-align: left;
  line-height: 90%;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.16);
}
.vehicle_wrap ul .topic figcaption {
  font-size: 40px;
  position: absolute;
  top: 40px;
  left: 40px;
}
.vehicle_wrap ul .topic figcaption span { 
  font-size: 24px;
}
.vehicle_wrap ul li figcaption p {
  margin-bottom: 10px;
}
.vehicle_wrap ul li figcaption span {
  font-size: 16px;
  letter-spacing: 1px;
}
.vehicle_wrap ul li:nth-of-type(3) figcaption p { 
  margin-bottom: 8px;
}
.vehicle_wrap ul .topic{
  grid-area: 1 / 1 / 3 / 3;
}
.con_2 {
  grid-area: 1 / 3 / 2 / 4;
}
.con_3 {
  grid-area: 2 / 3 / 3 / 4;
}
.con_4 {
  grid-area: 3 / 1 / 4 / 2;
}
.con_5 {
  grid-area: 3 / 2 / 4 / 3;
}
.con_6 {
  grid-area: 3 / 3 / 4 / 4;
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  color: #fff;
  border-radius: 0;
  background: #000;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 180%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-90%) translateY(-85%) rotate(155deg);
  transform: translateX(-90%) translateY(-85%) rotate(155deg);
  background: rgba(0,51,119,0.7);
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-20%) translateY(-30%) rotate(45deg);
  transform: translateX(-20%) translateY(-30%) rotate(45deg);
}
.more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #003377;
  border: solid 1px #003377;
  color: #fff;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 5px;
  font-size: 11px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.16);
  transition: .5s;
  -webkit-transition: .5s; /* Chrome、Safari用 */
  -moz-transition: .5s; /* Firefox用 */
  -o-transition: .5s; /* Opera用 */
}
.more_big {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #003377;
  border: solid 1px #003377;
  color: #fff;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 11px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.16);
  transition: .5s;
  -webkit-transition: .5s; /* Chrome、Safari用 */
  -moz-transition: .5s; /* Firefox用 */
  -o-transition: .5s; /* Opera用 */
}
.vehicle_wrap ul a:hover .more_big {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #00347700;
  border: solid 1px #fff;
  color: #fff;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 5px;
}
.vehicle_wrap ul a:hover .more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #00347700;
  border: solid 1px #fff;
  color: #fff;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 5px;
}

.yazirusi {
  display: flex;
} 
.yazirusi::after {
  content: '';
  width: 50px;
  height: 8px;
  margin-left: 20px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
  margin-top: 3px;
}


/*--------------------------------------------当社の強み---------------------------------------------*/
.stren_wrap {
  position: relative;
  color: #5C5C5C;
  background-image: url(../img/stren/track.png);
  background-repeat: no-repeat;
  background-position: 100% 8%;
  padding-top: 90px!important;
}
.stren_wrap:before {
    content: '';
    position: absolute;
    top: 0px;
    width: 0px;
    height: 0;
    border-style: solid;
    border-width: 33vw 76vw 0 0;
    border-color: #E7F3FB transparent transparent transparent;
    z-index: -1;
}
.net_wrap {
  margin-bottom: 230px;
  
}
.stren_wrap p {
  padding-top: 25px;
  line-height: 210%;
}
.stren_wrap h3 {
  font-size: 2rem;
}
.stren_wrap h4 {
  color: #003377;
  font-size: 28px;
  background:linear-gradient(transparent 70%, #FFF135 70%);
  padding-bottom: 10px;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.16);
  width: 90%;
}
.stren_wrap h4 span {
  font-size: 3.5vw;
  margin-right: 20px;
  letter-spacing: 2px;
}
.stren_wrap ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 90px;
}
.stren_wrap ul li:nth-of-type(3) {
  margin-bottom: 0px;
}
.stren_wrap ul li:nth-child(2) img {
  margin-left: 2vw;
}
.stren_wrap ul img {
  width: 100%;
  height:auto;
  box-shadow: 6px 6px 6px rgba(0,0,0,0.16);
}
.stren_wrap .text {
  position: relative;
  padding-left: 2vw;
  padding-top: 2vw;
  width: 100%;
}
.stren_wrap ul li:nth-of-type(odd) .text:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 7vw solid #E7F3FB;  /* 三角を白にする */ 
  border-left: 18vw solid transparent;
  z-index: -1;
}
.stren_wrap ul li:nth-of-type(even) .text:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #E7F3FB;  /* 三角を白にする */ 
  border-right: 18vw solid transparent;
  z-index: -1;
}




/*--------------------------------------------実績一覧---------------------------------------------*/
.ach_wrap {
  background: #003377;
}
.ach_wrap ul {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.ach_wrap ul li {
  width: 32%;
  color: #ffffff;
}
.ach_wrap ul li .img_box  {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}
.ach_wrap ul li .img_box img {
  transition:0.5s all;
}
.ach_wrap ul li .img_box img:hover{
  transform: scale(1.1); /* 拡大 */
}
.ach_wrap h3 {
  font-size: 24px;
  padding-left: 0.1rem;
}
.ach_wrap h3{
  position: relative;
  display: flex;
  align-items: center; /* 垂直中心 */
}
.ach_wrap .text {
 position: relative;
}
.ach_wrap .text .triangle {
  position: absolute;
  top: -70px;
  left: -55px;
}


.ach_wrap h3:before {
  border-top: 2px solid;
  content: "";
  width: 1.5em; /* 線の長さ */
  margin-right: 1em;
}



.ach_wrap p {
  margin-top: 20px;
  margin-left: 2.5vw;
  line-height: 160%;
}
.ach_wrap .text {
  margin-top: 70px;
}


#wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.youtube_mv {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 57.25%;
}
.youtube_mv iframe,
.youtube_mv a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*--------------------------------------------対応エリア---------------------------------------------*/

.luxury_wrap .area_wrap {
  background-image: url(../img/area/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.event_wrap .area_wrap {
  background-image: url(../img/area/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.immobile_wrap .area_wrap {
  background-image: url(../img/area/bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.special_wrap .area_wrap {
  background-image: url(../img/area/bg4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.area_wrap {
   background-image: url(../img/area/bg.jpg);
   background-size: cover;
   background-repeat: no-repeat;
}
.area_wrap h3 {
  font-size: 2rem;
  color: #FFF135;
  line-height: 140%;
}
.area_wrap h3 span {
  font-size: 1.5rem;
  color: red;
}
.area_wrap img {
  width: 50%;
}
.area_wrap p {
  padding-top: 40px;
  color: #fff;
  font-size: 1vw;
  line-height: 160%;
  padding-bottom: 40px;
}
.area_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.area_box .text {
  width: 60%;
}
#tell_banner .btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}


#tell_banner a.btn--contact :hover {
  color: #fff;
}

#tell_banner a.btn--tel {
  display: block;
  margin-top: 15px;
  padding: 1rem 0;
  color: #fff;
  background: #094;
  -webkit-box-shadow: 0 5px 0 #008039;
  box-shadow: 0 5px 0 #008039;
}


#tell_banner a.btn--tel .number {
  display: inline-block;
  margin: 10px auto;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #094;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 2rem;
}

/*-----------------フッター----------*/
.top_footer {
  background-image: url(../img/top_f.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
}
.top_footer h2 {
  text-align: left;
  text-shadow: none;
  font-size: 2rem;
  margin-bottom: 40px;
}
.car_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 align-items: center;
}
.car_detail li {
  width: 16%;
  border-left: 10px solid #003377;
  background: #fff;
  margin-bottom:10px;
  font-size: 14px;
}
.car_detail::after{
  content:"";
  display: block;
  width:18%;
}
.car_detail li a {
  color: #003377;
  display: block;
  padding: 1vw 0;
  padding-left: 10px;
  pointer-events: none;
}
.car_detail li a:hover {
  color: #fff;
  background: #003377;
  display: block;
  padding: 1vw 0;
  padding-left: 10px;
}
.middle_footer {
  background: #003377;
}
.f_menu {
  max-width: 1000px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.f_menu li {
  width: 25%;
}
.f_menu li:last-of-type {
  border-right: 2px solid #fff;
}

.f_menu li a {
  display: block;
  line-height: 120%;
  font-size: 14px;
  padding: 35px 0;
  height: 80px;
  border-left: 2px solid #fff;
  font-weight: 700;

}
.f_menu li:nth-of-type(3) a {
  padding: 20px 0;
}
.f_menu li:nth-of-type(4) a {
  padding: 30px 0;
}
.f_menu li a:hover {
  background: #ffffff;
  color: #003377;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer {
  font-size: 1vw;
  background: #edf9ff;
}

.footer__navi-heading {
  font-weight: 600;
  padding-bottom: 24px;
  font-size: 1.2rem;
  border-left: 10px solid #003377;
    padding: 5px 0;
    padding-left: 10px;
    margin-bottom: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.footer__logo h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.footer__logo p {
  font-size: 16px;
}
.footer__logo img {
    max-width: 100%;
    width: 25%;
    padding-right: 15px;
}
.f_txt {
  width: 200px;
}
.footer__navi {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  font-weight: 700;
}
.footer__navi li {
  margin-bottom: 0.8rem;
  border: 2px solid #003377;
  background: #fff;
  color: #003377;
  width: 48%;
  margin-right: 10px;
}
.footer__navi li:last-of-type {
  margin-right: 0px;
}
.footer__navi li a {
  display: block;
  padding: 15px 10px;

}
.footer__navi li a:hover {
  background: #003377;
  color: #ffffff;
}

.site_map {
  width: 50%;
  margin-top: 40px;
}
footer .copyright {
  text-align: center;
  background: #003377;
  color: #fff;
  padding: 17px 0;
  font-size: 14px;
}
.bottom_footer {
  background-image: url(../img/bottom_f.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 140px;

}
.button a {
  display: inline-block;
  font-size: 16px;
  color: #003377;
  position: relative;
  font-weight: bold;
}
.button a::before {
  background-color: #003377;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 15px;
  height: 2px;
  margin-top: 0px;
  content: "";
}
.button a:hover::before {
  background-color: #fff;
}

.button a:hover::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}


.bottom_footer a:hover .button {
 color: #E7F3FB;
}
.button a::after {
  position: absolute;
  top: 44%;
    right: 13px;
    width: 8px;
    height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #003377;
  border-right: 2px solid #003377;
  content: "";
  display: inline-block;
  vertical-align: middle;
}
  .md-flex {
    display: flex;
    margin-bottom: 60px;
  }

  .md-justify-between {
    justify-content: space-between;
  }
  .md-justify-between a {
    color: #003377;
  }
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
  p {
    letter-spacing: 0.5px;
}
  .inner {
    padding: 0 20px;
  }
  .p_top_90 {
    padding-top: 60px!important;
}
.m_bottom_90 {
  margin-bottom: 60px!important;
}
.p_bottom_90 {
  padding-bottom: 60px!important;
}
.p_bottom_180 {
  padding-bottom: 40px!important;
}
  .h1_txt {
    display: block;
    line-height: 180%;
    width: 100%;
    font-size: 3.5vw;
}
h1 {
  font-size: 5vw;
}
.drawer {
  height: 90px;
  padding: 0;
}
nav {
  z-index: 999999;
}
.main-visual {
  height: 90.916667vw;
}
.main-visual p {
  position: absolute;
  top: 50%;
  left: 55%;
  font-size: 7vw;
  line-height: 120%;
  width: 100%;
}
.slider {
  position: relative;
  height: 90.916667vw;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}
h2 {
  font-size: 6.5vw;
  text-align: center;
  line-height: 150%;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.16);
  margin-bottom: 30px;
  line-height: 110%;
}
.more_big {
  position: absolute;
    right: 10px;
    bottom: 10px;
    background: #003377;
    border: solid 1px #003377;
    color: #fff;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 5px;
    font-size: 11px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.16);
    transition: .5s;
    -webkit-transition: .5s;
}
.vehicle_wrap {
  padding-top: 20px;
}
.vehicle_wrap ul .topic figcaption {
  position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5.2vw;
    text-align: left;
    line-height: 100%;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.16);
}
.vehicle_wrap ul li figcaption {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5.2vw;
  text-align: left;
  line-height: 100%;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.16);
}
.vehicle_wrap ul li:nth-of-type(3) figcaption p { 
  margin-bottom: 5px;
}
.vehicle_wrap ul .topic figcaption span {
  font-size: 3.8vw;
}
.vehicle_wrap ul li figcaption span {
  font-size: 3.8vw;
  letter-spacing: 1px;
}
.vehicle_wrap ul li {
  margin-bottom: 20px;
}
.stren_wrap {
  padding-top: 40px!important;
}
.stren_wrap h3 {
  font-size: 5vw;
  text-align: center;
}
.stren_wrap p {
  padding-top: 20px;
  line-height: 160%;
}
.stren_wrap {
  position: relative;
  color: #5C5C5C;
  background-image: url(../img/stren/track.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 15%;
}
.stren_wrap ul li {
  margin-bottom: 80px;
}
.stren_wrap ul li  {
  flex-direction: column;
}
.stren_wrap ul li:nth-child(even) {
flex-direction: column-reverse;
}
.stren_wrap .text {
  padding-top: 5vw;
  padding-left: 0;

}
.stren_wrap h4 {
  font-size: 6.5vw;
  width: 100%;
}
.stren_wrap h4 span {
  font-size: 9vw;
}
.stren_wrap ul li:nth-of-type(odd) .text:before {
  border-bottom: 15vw solid #E7F3FB;
  border-left: 50vw solid transparent;
  z-index: -1;
  bottom: -30px;
}
.stren_wrap ul li:nth-of-type(even) .text:before {
  border-bottom: 15vw solid #E7F3FB;
  border-right: 50vw solid transparent;
  z-index: -1;
  bottom: -30px;

}
.ach_wrap ul {
  display: block;
}
.ach_wrap ul li {
  width: 100%;
  margin-bottom: 40px;
}
.ach_wrap h3 {
  font-size: 5vw;
  padding-left: 0.1rem;
}

.ach_wrap .text {
  margin-top: 30px;
}
.area_box {
  display: block;
}
.area_wrap {
  background-position: center;
}
.area_wrap img {
  width: 100%;
}
.area_box .text {
  width: 100%;
  margin-top: 20px;
}
.area_wrap h3 {
  font-size: 5.5vw;
  text-align: center;
}
.area_wrap h3 span {
  font-size: 4vw;
  color: red;
}
.area_wrap p {
  padding-top: 20px;
  font-size: 4vw;
  line-height: 160%;
}
#tell_banner a.btn--tel .number {
  font-size: 1.5rem;
}
.car_detail li {
  width: 48%;
  border-left: 5px solid #003377;
  background: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
  padding: 15px 0;
}
.f_menu {
  flex-wrap: wrap;
  font-size: 4vw;
}
.f_menu li {
  width: 50%;
}
.f_menu li a {
  border: 1px solid;
}
.f_menu li:last-of-type {
  border-right: none;
}
.f_menu li .special-link {
  padding: 20px 0;
}
.md-flex {
  display: block;
}
.footer__logo img {
  max-width: 100%;
  width: 20%;
}
.footer__logo h3 {
  font-size: 5.5vw;
  margin-bottom: 5px;
}
.footer__logo p {
  font-size: 4vw;
}
.footer__navi-heading {
  font-weight: 600;
  padding-bottom: 24px;
  font-size: 4vw;
}
.grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md-flex {
  margin-bottom: 40px;
}
.footer__navi li {
  margin-bottom: 1rem;
  font-size: 4vw;
}
footer .copyright {
  padding: 20px 0;
  font-size: 12px;
}

  /*-----------------検索窓ー----------*/
  .search-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    align-items: center;
    font-size: 16px;
   
  }
  .search-container p {
    padding-right: 1rem;
  }
  .search-container form {
    display: flex;
    align-items: center;
      font-size: 16px;
  }
  
  .search-container input[type="text"] {
    width: 200px;
    padding: 12px;
    border: none;
    background-color: #ffffff;
    font-size: 16px;
  }
  
  .search-container button[type="submit"] {
    background-color: #003377;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .search-container button[type="submit"]:hover {
    background-color: #0049a8;
  }
  .gsc-search-button-v2 {
    padding: 10px 20px!important;
}
  .vehicle_wrap ul {
    display: block;
  }
  .top_footer h2 {
    font-size: 1.5rem;
}
.site_map {
  width: 100%;
}
.footer__navi-heading {
  font-weight: 600;
  padding-bottom: 0px;
  }
  .footer__navi {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__navi li {
    width: 48%;
    margin-right: 5px;
    margin-bottom: 0.5rem;
}
.footer__navi li:nth-of-type(2) {
   margin-right: 0px;
}
.footer__navi li a {
  display: block;
  padding: 20px 10px;
  font-size: 12px;
}
.button a::after {
  top: 45%;
}
.top_footer {
  background-image: url(../img/top_f.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40% 0%;
}
.bottom_footer {
  background-image: url(../img/bottom_f.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 10%;
  padding-top: 60px;
  padding-bottom: 60px;
}
}
.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 1.2em;
  box-sizing: border-box;
  z-index: 100;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: .5em 1.5em;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    width: 100%;
    line-height: 160%;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}

/* 高級車：動画プレイヤー
----------------------------------------------- */
.movie_wrap{
    
}

.movie_popup{
    
}
.movie_popup img{
    width:100%;
    height: auto;
}
.movie_popup_open{
    padding: 0 !important;
    border: none;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}
.movie_popup_open:hover{
    opacity:0.7;
}
.movie_popup_open::before{
    display: block;
    content: "";
    width:50px;
    height: 50px;
    background-image: url("../movie/icn_play.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    z-index: 3;
}

.movie_popup_modal{
    display: none;
    position: fixed;
    width:100vw;
    height: 100vh;
    top:0;
    left:0;
    background-color: rgba(0,0,0,0.7);
    z-index:9999999;
}
.movie_popup_modal movie,
.movie_popup_modal iframe{
    aspect-ratio: 16 / 9;
      width: 80%;
      height: auto;
    position: absolute;
    margin: auto;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}
.movie_popup_modal_close{
    background-color:transparent;
    border: none;
    position: absolute;
    top: 50px;
    right: 50px;
    width:50px;
    height: 50px;
    cursor: pointer;
}

.movie_list{
    margin-top: 50px;
}
.movie_list ul{
    display: flex;
    flex-wrap: wrap;
}
.movie_list ul li{
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px;
}
.movie_list ul li:nth-child(2n){
    margin-right: 0;
}
.movie_list_ttl{
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color:#003377;
}

@media (max-width: 767px) {
    .movie_popup_modal_close{
        top: 10px;
        right: 10px;
    }
    .movie_list ul{
        display: block;
    }
    .movie_list ul li{
        width: 100%;
        margin-right: 0;
    }
}
