/****メニュー****/
@media screen and (min-width: 1201px) {

  /* 車検特設サイトのメニュー */
  .globalNavi>ul>li:last-of-type>a {
    background-color: #0A7E96;
    width: 189px;
    display: flex;
    justify-content: center;
  }

  .globalNavi>ul>li:last-of-type>a::before {
    display: block;
    content: '';
    background: url(../images/glonavi-spanner.svg) center / contain no-repeat;
    width: 30px;
    height: 35px;
    margin-right: 7px;
    position: relative;
    z-index: 3;
  }


  .globalNavi>ul>li a:last-of-type:after {
    display: none;
  }


  .globalNavi>ul>li:last-of-type>a span {
    color: #fff;
    font-size: 16px;
    position: relative;
  }
  
  .globalNavi>ul>li:last-of-type>a span::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    bottom: -1px;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }

  .globalNavi>ul>li:last-of-type:hover>a span::after {
    transform: scale(1, 1);
  }
}


@media screen and (max-width: 1200px) {
  .globalNavi>ul>li.strong {
    width: 48.5%;
    display: none;
  }

  .globalNavi>ul>li:nth-last-of-type(3) {
    display: block;
    width: 48.5%;
  }

  .globalNavi>ul>li.strong.sp {
    display: none;
  }

  .globalNavi>ul>li:last-of-type {
    width: 48.5%;
    padding-bottom: 20px;
  }

  .globalNavi>ul>li:last-of-type>a {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding-top: 50px !important;
    padding-bottom: 6px !important;
    width: 100%;
    font-size: 16px;
  }

  .globalNavi>ul>li:last-of-type:before {
    content: '';
    display: block;
    margin: 0 auto 10px;
    width: 60%;
    height: 40px;
    background: url(../images/glonavi-spanner-spgreen.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }

  .globalNavi>ul>li>a.bookingLink:hover {
    -webkit-transform: inherit;
    transform: inherit;
  }

}