@charset "UTF-8";
/* SCSS Document */
/*------------------------------------------------------------

common

------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold; }
body {
  font-family: Roboto, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  counter-reset: item; }

.loaded {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
a {
  text-decoration: none; }

.flex {
  display: flex; }

.left {
  width: 30%; }

.right {
  width: 70%; }

.wht {
  color: #fff; }

.bold {
  font-weight: bold; }

#page_top {
  display: none;
  position: fixed; }
  @media screen and (max-width: 480px) {
    #page_top {
      display: block;
      background: #000080;
      opacity: 0.6;
      right: 10px;
      bottom: 10px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      z-index: 99; } }
  #page_top a {
    text-decoration: none; }
    @media screen and (max-width: 480px) {
      #page_top a {
        position: relative;
        display: block;
        width: 60px;
        height: 60px;
        border-radius: 50%; } }
  #page_top a::after {
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center; }
    @media screen and (max-width: 480px) {
      #page_top a::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: '\f102';
        font-size: 25px;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%); } }

/********************
loading effects
********************/
.loadingAnim {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center; }
  .loadingAnim::before {
    line-height: 1;
    position: fixed;
    z-index: 99998;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    content: ' ';
    transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition-delay: .1s;
    background: linear-gradient(-45deg, #9999FF 0%, #000066 100%);
    background: -webkit-linear-gradient(-45deg, #9999FF 0%, #000066 100%);
    top: 0; }
  .loadingAnim::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: block;
    content: "";
    background: url(../img/load.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 162px;
    z-index: 99998; }
    @media screen and (max-width: 480px) {
      .loadingAnim::after {
        width: 100px;
        height: 81px; } }

.loaded .loadingAnim::before {
  opacity: 0; }

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 250px;
  height: 1.25em;
  margin: auto;
  transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0s;
  text-align: center; }
  .loadingAnim_line::after {
    position: absolute;
    z-index: 99999;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    margin: auto auto auto 0;
    content: ' ';
    -webkit-animation: loadingAnim 1s ease-in-out .1s infinite normal backwards;
    animation: loadingAnim 1s ease-in-out .1s infinite normal backwards;
    opacity: .5;
    background: #fff;
    will-change: transform, width; }
  .loadingAnim_line::before {
    /* font-family: 'Poppins', sans-serif;*/
    font-size: 1.25em;
    font-weight: bold;
    font-style: normal;
    line-height: 1;
    display: block;
    content: 'LOADING...';
    -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
    animation: loadingAnim_text 1s ease .1s infinite alternate both;
    letter-spacing: .1em;
    color: #fff;
    will-change: opacity; }

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0; }
  .loaded .loadingAnim_line::after {
    -webkit-animation: none;
    animation: none; }
  .loaded .loadingAnim_line::before {
    -webkit-animation: none;
    animation: none;
    content: ''; }

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim {
  0% {
    width: 0; }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%); } }
@keyframes loadingAnim {
  0% {
    width: 0; }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%); } }
@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166; }
  50% {
    color: #333; }
  100% {
    opacity: .5;
    color: #fff; } }
@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166; }
  50% {
    color: #333; }
  100% {
    opacity: .5;
    color: #fff; } }
@keyframes show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
svg {
  display: block;
  vertical-align: bottom; }

.top-image {
  position: relative;
  height: 100vh;
  background: #f5f5f5; }
  @media screen and (max-width: 480px) {
    .top-image {
      height: 50vh; } }

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }
  @media screen and (max-width: 480px) {
    .logo {
      width: 100%; } }

.logo-image {
  max-width: 600px; }
  @media screen and (max-width: 480px) {
    .logo-image {
      max-width: 300px;
      margin: 0 auto; } }
  .logo-image img {
    width: 100%; }

.nav {
  position: fixed;
  width: 100%;
  /*display: flex;
  justify-content: flex-end;*/
  padding: 10px;
  box-sizing: border-box;
  z-index: 99;
  transition: .3s; }
  @media screen and (max-width: 1024px) {
    .nav {
      display: none; } }

.gnav {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  margin: 0 auto; }
  .gnav li {
    padding: 0 10px;
    box-sizing: border-box; }
  .gnav li a {
    display: inline-block;
    position: relative;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
    transition: .3s; }
  .gnav li a::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFCC00 15%, #FFFFCC, #CC9900 100%, #FFCC00);
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
  .gnav li a:hover::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible; }

.bgColor {
  background: rgba(0, 0, 102, 0.8);
  transition: .3s; }

.bgColor ul.gnav li a {
  padding: 0 5px;
  color: #fff;
  transition: .3s;
  text-shadow: none; }

.top-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px;
  opacity: 0; }
  .top-logo a::after {
    content: none !important; }
  .top-logo img {
    width: 100%; }

.top-logo.logoShow {
  opacity: 1 !important; }

/*.top-scroll {

	a {
		position: absolute;
		bottom: 20px;
		left: 50%;
		z-index: 2;
		color: #fff;
		display: inline-block;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		text-decoration: none;
		padding-top: 60px;
		transition: .3s;

		span {
			position: absolute;
			top: 0;
			left: 50%;
			width: 46px;
			height: 46px;
			margin-left: -23px;
			border: 2px solid #fff;
			border-radius: 100%;
			box-sizing: border-box;
			transition: .3s;

			&::after {
				position: absolute;
				top: 50%;
				left: 50%;
				content: '';
				width: 16px;
				height: 16px;
				margin: -12px 0 0 -8px;
				border-left: 1px solid #fff;
				border-bottom: 1px solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
				box-sizing: border-box;
			}
		}




		&:hover {
			text-shadow: 0 0 5px #fff;
			transition: .3s;
		}

		&:hover span {
			box-shadow: 0 0 10px #fff;
			transition: .3s;
		}

	}

	@include tab {
		display: none;
	}

}*/
.top-scroll {
  position: absolute;
  bottom: 20px;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2; }
  @media screen and (max-width: 1024px) {
    .top-scroll {
      display: none; } }

.top-scroll__btn, a.top-scroll__btn, button.top-scroll__btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: 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.05em;
  color: #212529;
  border-radius: 0.5rem; }

.btn-engine-start {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  background: -webkit-linear-gradient(300deg, #fff 0%, #fff 30%, #ddd 44%, #a5a5a5 52%, black 100%);
  background: linear-gradient(120deg, #fff 0%, #fff 30%, #ddd 44%, #a5a5a5 52%, black 100%);
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3); }
  .btn-engine-start::before {
    position: absolute;
    top: 7.5px;
    left: 7.5px;
    display: block;
    width: 115px;
    height: 115px;
    content: "";
    border-radius: 50%;
    background: #515151;
    background: -webkit-linear-gradient(-45deg, #515151 0%, #515151 19%, #ededed 50%, #fff 77%, #fff 100%);
    background: -webkit-linear-gradient(300deg, #515151 0%, #515151 19%, #ededed 50%, #fff 77%, #fff 100%);
    background: linear-gradient(120deg, #515151 0%, #515151 19%, #ededed 50%, #fff 77%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#515151', endColorstr='#ffffff', GradientType=1); }

.btn-engine-start:hover a.btn-engine-start-in:before {
  /*top: 20px;*/
  background: #ff6347;
  -webkit-box-shadow: 1px 1px 3px rgba(255, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(255, 0, 0, 0.5);
  transition: .3s; }

.btn-engine-start:hover a.btn-engine-start-in {
  /*padding: 1px 0 0;*/
  color: #ff6347;
  -webkit-box-shadow: 1px 1px 3px rgba(255, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(255, 0, 0, 0.5);
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.3), 0 0 6px rgba(255, 0, 0, 0.3);
  border: solid 1px #ff6347; }

a.btn-engine-start-in {
  /*line-height: 100px;*/
  position: absolute;
  top: 15px;
  left: 14px;
  width: 100px;
  height: 100px;
  padding: 0;
  color: #dcdcdc;
  border-radius: 50%;
  background: #b5b5b5;
  background: -webkit-linear-gradient(-45deg, #b5b5b5 0%, #0d0d0d 46%, #010101 50%, #0a0a0a 69%, #1b1b1b 100%);
  background: -webkit-linear-gradient(315deg, #b5b5b5 0%, #0d0d0d 46%, #010101 50%, #0a0a0a 69%, #1b1b1b 100%);
  background: linear-gradient(135deg, #b5b5b5 0%, #0d0d0d 46%, #010101 50%, #0a0a0a 69%, #1b1b1b 100%);
  -webkit-box-shadow: inset 0 2px 2px #fff, 0 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 2px #fff, 0 2px 4px rgba(0, 0, 0, 0.5);
  border: solid 1px #ccc; }
  a.btn-engine-start-in::before {
    position: absolute;
    top: 18px;
    left: calc(50% - 13px);
    width: 26px;
    height: 8px;
    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: green;
    background: #555; }

.scroll-txt {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }

#contents {
  width: 100%;
  /*padding: 100px 0;*/ }

.ttl-area {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px auto;
  padding: 30px 0; }

h2.subttl {
  position: relative;
  font-size: 2em;
  text-align: center;
  /*&::before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background:#ccc;
  }
  
   span {
    position: relative;
  letter-spacing: 0.05em;
    padding: 0 .5em;
    background: #fff;
  }*/ }
  @media screen and (max-width: 480px) {
    h2.subttl {
      font-size: 1.5em; } }

.enttl {
  font-family: 'PT Serif', serif;
  display: block;
  color: #ccc;
  padding-top: 15px;
  font-size: 1.3em;
  text-align: center;
  letter-spacing: 0.05em; }
  @media screen and (max-width: 480px) {
    .enttl {
      font-size: 1em; } }

.welcomebg {
  padding: 100px 0;
  position: relative;
  background: #000066;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .welcomebg {
      padding: 50px 10px;
      box-sizing: border-box; } }
  .welcomebg::before {
    position: absolute;
    content: "";
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 800px;
    height: 700px;
    background: url("../img/sub-top.png");
    background-size: cover; }
    @media screen and (max-width: 480px) {
      .welcomebg::before {
        width: 300px;
        height: 260px; } }

.welcome-area {
  width: 100%;
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
  color: #f5f5f5; }
  .welcome-area h2 {
    font-family: 'PT Serif', serif;
    font-style: italic;
    font-size: 2.5em;
    letter-spacing: 0.05em;
    padding: 5px 0;
    text-shadow: 8px 0 0 #000066; }
    @media screen and (max-width: 480px) {
      .welcome-area h2 {
        font-size: 1.5em;
        line-height: 1.5em; } }
  .welcome-area p {
    font-size: 1.2em;
    line-height: 1.8em;
    margin-bottom: 10px; }
    @media screen and (max-width: 480px) {
      .welcome-area p {
        font-size: 1em; } }

.topbg1 {
  /*background-image: linear-gradient(-10deg,#fff 50%, #f5f5f5 50%);*/
  padding-top: 100px;
  padding-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .topbg1 {
      padding-top: 50px;
      padding-bottom: 50px; } }

.topbg2 {
  /*background-image: linear-gradient(-10deg,#f5f5f5 50%, #fff 50%);*/
  padding-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .topbg2 {
      padding-bottom: 50px; } }

.topbg3 {
  /*background-image: linear-gradient(-10deg,#fff 50%, #f5f5f5 50%);*/
  padding-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .topbg3 {
      padding-bottom: 50px; } }

.topbg4 {
  /*background-image: linear-gradient(-10deg,#f5f5f5 50%, #fff 50%);*/
  padding-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .topbg4 {
      padding-bottom: 0; } }

.contents-box {
  position: relative;
  width: 100%;
  /*max-width: 1280px;*/
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  /*margin-bottom: 100px;*/ }
  @media screen and (max-width: 1024px) {
    .contents-box {
      height: auto; } }
  .contents-box::after {
    position: absolute;
    content: "";
    width: 100%;
    /*max-width: 1280px;*/
    height: 500px;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../img/box-bg.png), gray;
    background-size: 800px;
    background-position: left top;
    background-repeat: no-repeat; }
    @media screen and (max-width: 1024px) {
      .contents-box::after {
        height: 800px; } }
    @media screen and (max-width: 480px) {
      .contents-box::after {
        height: 100%; } }

.map-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 0 auto;
  overflow: hidden; }

.text-flex {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 5; }
  @media screen and (max-width: 480px) {
    .text-flex {
      padding: 10px; } }

.text-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .text-box {
      margin-bottom: 10px; } }

.boxInner {
  display: flex;
  width: inherit;
  height: inherit;
  background: #333333;
  opacity: 0; }
  @media screen and (max-width: 1024px) {
    .boxInner {
      flex-wrap: wrap; } }

.isPlay {
  animation-name: play;
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important; }

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .4s;
  animation-delay: .4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff; }

.map-box .isPlay:before {
  background: #f5f5f5; }

.text-box .boxInner {
  background: none; }

.text-box .isPlay:before {
  background: #fff; }

@keyframes play {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(0); } }
@keyframes maskOut {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(100%); } }
.imageInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 500px; }
  @media screen and (max-width: 1024px) {
    .imageInner {
      width: 100%;
      height: 400px; } }
  @media screen and (max-width: 480px) {
    .imageInner {
      height: 300px; } }
  .imageInner img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media screen and (max-width: 480px) {
      .imageInner img {
        height: 300px; } }

.textInner {
  position: relative;
  width: 50%;
  height: 100%;
  background: #333333;
  padding: 30px;
  color: #fff;
  line-height: 1.8em;
  box-sizing: border-box; }
  @media screen and (max-width: 1024px) {
    .textInner {
      width: 100%;
      height: 400px; } }
  @media screen and (max-width: 480px) {
    .textInner {
      padding: 20px;
      height: auto; } }
  .textInner h3 {
    display: inline-block;
    font-size: 1.2em;
    border-bottom: solid 1px #fff;
    margin-bottom: 10px; }
    @media screen and (max-width: 480px) {
      .textInner h3 {
        font-size: 1.1em;
        margin-bottom: 20px; } }

.link-button {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  text-align: center;
  box-sizing: border-box; }
  .link-button a {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px;
    border-radius: 10px;
    background: #A30002;
    transition: .3s; }
  .link-button a:hover {
    background: #ff4500; }
  @media screen and (max-width: 480px) {
    .link-button {
      margin-top: 100px;
      position: relative; } }

.used-car-txt {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 50px auto;
  text-align: center; }
  .used-car-txt p {
    position: relative;
    font-size: 1.5em;
    line-height: 1.6em; }
    @media screen and (max-width: 480px) {
      .used-car-txt p {
        font-size: 1.2em; } }
    .used-car-txt p::before {
      position: absolute;
      top: calc(50% - 1px);
      left: 0;
      width: 100%;
      height: 2px;
      content: '';
      background: #4682b4; }
    .used-car-txt p span {
      position: relative;
      padding: 0 1em;
      background: #fff; }
      @media screen and (max-width: 480px) {
        .used-car-txt p span {
          display: inline-block;
          padding: 0 .3em; } }

.used-car-flex {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.used-car-box {
  width: 48%;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  transition: .3s; }
  .used-car-box:hover {
    box-shadow: none;
    transition: .3s;
    opacity: .6; }
  .used-car-box img {
    width: 100%; }

.address {
  padding: 20px;
  text-align: center; }

.address-l {
  font-size: 1.2em;
  margin-left: 10px;
  font-weight: bold; }

footer {
  border-top: 3px solid #CC9900;
  border-image: linear-gradient(to right, #FFCC00 15%, #FFFFCC, #CC9900 100%, #FFCC00);
  border-image-slice: 1;
  background: #000066;
  padding: 100px 0 20px 0;
  color: #fff;
  text-align: center; }
  footer br {
    display: none; }
    @media screen and (max-width: 480px) {
      footer br {
        display: block; } }

.policy-link a {
  display: inline-block;
  color: #fff;
  border-bottom: solid 1px #fff;
  margin-bottom: 10px; }

.copyright {
  font-size: .9em;
  padding: 10px 0; }

/*------------------------------------------------------------

下層ページ

------------------------------------------------------------*/
.sub-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px; }
  .sub-logo a::after {
    content: none !important; }
  .sub-logo img {
    width: 100%; }

.sub-image {
  position: relative;
  height: 50vh;
  overflow: hidden;
  /*	&::before{
  		position: absolute;
  		content: "";
  		right: -100px;
  		top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
  	width:  800px;
  	height: 700px;
  	background: url("../img/sub-top.png");
  	background-size: cover;
  		
  		
  		@include sp {
  		width:  300px;
  		height: 260px;
  	}
  		
  	}*/ }
  @media screen and (max-width: 480px) {
    .sub-image {
      height: 35vh; } }

.company-bg {
  background: url("../img/company-bg.png"), #000066;
  background-size: cover; }

.car-bg {
  background: url("../img/car-bg.png"), #000066;
  background-size: cover; }

.shop-bg {
  background: url("../img/shop-bg.png"), #000066;
  background-size: cover; }

.contact-bg {
  background: url("../img/contact-bg.png"), #000066;
  background-position: center center;
  background-size: cover; }

.sub-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }
  .sub-top h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px #808080; }
    @media screen and (max-width: 480px) {
      .sub-top h2 {
        font-size: 1.5em; } }
    .sub-top h2 span {
      font-family: 'PT Serif', serif;
      display: block;
      color: #dcdcdc;
      padding-top: 15px;
      font-size: .6em;
      letter-spacing: 0.05em;
      text-align: center; }

.sub-logo-sp {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sub-logo-sp {
      display: block;
      position: absolute;
      left: 20px;
      top: 20px; } }
  @media screen and (max-width: 480px) {
    .sub-logo-sp {
      left: 10px;
      top: 10px; }
      .sub-logo-sp img {
        max-width: 150px; } }

h3.subpage-ttl {
  width: 100%;
  max-width: 1280px;
  font-size: 2em;
  font-weight: bold;
  position: relative;
  padding: 0 65px;
  margin: 30px auto;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 3px; }
  @media screen and (max-width: 1024px) {
    h3.subpage-ttl {
      font-size: 1.3em; } }
  @media screen and (max-width: 480px) {
    h3.subpage-ttl {
      padding: 5px 0; } }
  h3.subpage-ttl::before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background: #4682b4; }
  h3.subpage-ttl span {
    position: relative;
    padding: 0 1em;
    background: #fff; }

/*------------------------------------------------------------

会社概要

------------------------------------------------------------*/
.company-tbl {
  width: 100%;
  max-width: 900px;
  margin: 100px auto;
  border-top: solid 1px #ccc;
  line-height: 1.5em; }
  .company-tbl tr {
    border-bottom: solid 1px #ccc; }
    @media screen and (max-width: 480px) {
      .company-tbl tr {
        display: flex;
        flex-wrap: wrap; } }
  .company-tbl th {
    padding: 20px 10px;
    color: #fff;
    font-weight: bold;
    background: #000066;
    vertical-align: middle;
    width: 300px;
    box-sizing: border-box; }
    @media screen and (max-width: 480px) {
      .company-tbl th {
        width: 100%; } }
  .company-tbl td {
    padding: 20px; }
    @media screen and (max-width: 480px) {
      .company-tbl td {
        width: 100%; } }
    .company-tbl td ul li {
      list-style-type: disc;
      list-style-position: inside; }

/*------------------------------------------------------------

中古車情報

------------------------------------------------------------*/
.usedcar-top {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "sans-serif";
  position: relative;
  padding: 100px 0;
  background: url("../img/slide_01.jpg");
  background-attachment: fixed;
  background-size: cover; }
  @media screen and (max-width: 480px) {
    .usedcar-top {
      padding: 50px 10px;
      box-sizing: border-box; } }
  .usedcar-top::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/vegas_bg05.png"), rgba(0, 0, 0, 0.5); }

.usedcar-top-txt {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  z-index: 3; }
  .usedcar-top-txt h2 {
    display: inline-block;
    font-size: 2.5em;
    font-weight: bold;
    border-bottom: solid 1px #fff;
    padding: 5px 10px;
    margin-bottom: 40px; }
    @media screen and (max-width: 480px) {
      .usedcar-top-txt h2 {
        font-size: 1.5em; } }
  .usedcar-top-txt p {
    line-height: 1.6em;
    margin-bottom: 10px; }
    @media screen and (max-width: 480px) {
      .usedcar-top-txt p {
        text-align: left; } }

/*.car-stock {
	font-family: Roboto, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	box-sizing: border-box;
	margin-top: 50px;

	a {
		display: inline-block;
		color: #fff!important;
		font-size: 1.5em;
		text-shadow: 1px 1px 3px #666666;
		font-weight: bold;
		border: 2px solid #f5f5dc;
		padding: 20px 40px;
		background-image: linear-gradient(45deg, #FFCC00 15%,#FFFFCC, #CC9900 100%,#FFCC00);
		background-size: 200% auto;
		-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
		box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
		transition: .3s;
		
			@include sp {
		font-size: 1.2em;
	}
	}
	

	a:hover {
		background-position: right center;
	}


}
*/
.car-stock {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0 auto; }
  @media screen and (max-width: 480px) {
    .car-stock {
      display: none; } }
  .car-stock img {
    width: 100%; }
    .car-stock img:hover {
      opacity: .8;
      transition: .3s; }

.car-stock-sp {
  display: none; }
  @media screen and (max-width: 480px) {
    .car-stock-sp {
      display: block;
      width: 100%;
      margin-top: 50px; } }
  .car-stock-sp img {
    width: 100%; }
    .car-stock-sp img:hover {
      opacity: .8;
      transition: .3s; }

/*.swiper-container{
	position: relative;
}
.swiper-container::after{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:url(../img/vegas_bg05.png),rgba(192,192,192,0.5);
	z-index: 2;
	
}
.swiper-wrapper{

}
.swiper-slide{
	display: flex;
	overflow: hidden;
}

.swiper-slide img {
	height: 90vh!important;
	width: 100%;
	object-fit: cover!important;
}

.swiper-button-prev,.swiper-button-next {
    display: none!important;
}*/
.swiper-container {
  position: relative; }

.swiper-container::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png), rgba(192, 192, 192, 0.5);
  z-index: 2; }

.swiper-slide img {
  width: 100%;
  object-fit: cover !important; }

/*------------------------------------------------------------

店舗紹介

------------------------------------------------------------*/
.shop-image-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0; }
  @media screen and (max-width: 480px) {
    .shop-image-area {
      padding: 0 10px;
      box-sizing: border-box; } }

.shop-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.shop-image {
  position: relative;
  width: 49%;
  overflow: hidden;
  margin-bottom: 20px; }
  @media screen and (max-width: 480px) {
    .shop-image {
      width: 100%; } }
  .shop-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover; }
  .shop-image::before {
    content: "";
    display: block;
    padding-top: 65%; }

@media screen and (max-width: 480px) {
  .map {
    aspect-ratio: 16/9; } }
@media screen and (max-width: 480px) {
  .map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; } }

.zoom-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .zoom-area {
      padding: 0 10px;
      box-sizing: border-box; } }

.shopttl {
  position: relative;
  font-size: 2em;
  text-align: center;
  padding: 50px 0;
  z-index: 2; }
  @media screen and (max-width: 480px) {
    .shopttl {
      font-size: 1.3em;
      line-height: 1.5em;
      text-align: left; } }
  .shopttl::after {
    position: absolute;
    content: "";
    bottom: 40px;
    left: 0;
    background: #87ceeb;
    width: 100%;
    height: 5px;
    z-index: -1; }

.zoom-txt {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px; }
  @media screen and (max-width: 480px) {
    .zoom-txt {
      padding: 0; } }

.zoom-txt p {
  line-height: 1.5em; }

.zoom-image {
  text-align: center; }

.zoom-image img {
  width: 100%;
  max-width: 800px; }

.zoomlist li {
  padding: 10px 0; }

.zoomlist h4 {
  font-weight: bold;
  font-size: 1.2em;
  color: #696969;
  border-bottom: dotted 1px #ccc;
  padding-bottom: 5px; }
  @media screen and (max-width: 480px) {
    .zoomlist h4 {
      font-size: 1em;
      line-height: 1.5em; } }

.download {
  padding: 20px;
  box-sizing: border-box; }

.download a {
  padding: 10px;
  font-weight: bold;
  font-size: 1.2em;
  color: #4682b4;
  text-decoration: underline; }
  @media screen and (max-width: 480px) {
    .download a {
      display: inline-block; } }

/*------------------------------------------------------------

お問い合わせ

------------------------------------------------------------*/
.contact-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0; }
  @media screen and (max-width: 480px) {
    .contact-area {
      padding: 50px 10px;
      box-sizing: border-box; } }

.input-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box; }

th.re_item {
  width: 300px; }

.contact {
  width: 100%;
  background: #fff;
  box-sizing: border-box; }
  .contact tr {
    display: flex;
    padding: 20px 0; }
    @media screen and (max-width: 1024px) {
      .contact tr {
        flex-wrap: wrap; } }
  .contact tr:nth-of-type(odd) {
    background: #F6F7F9; }
  .contact th {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold; }
    @media screen and (max-width: 1024px) {
      .contact th {
        justify-content: flex-start; } }
  @media screen and (max-width: 1024px) {
    .contact th.re_item {
      width: 100%; } }
  .contact td {
    padding: 10px; }
  .contact input {
    margin: 5px 0; }

.policy-area {
  padding: 30px;
  border: solid 1px #f5f5f5;
  font-size: 14px;
  box-sizing: border-box; }

.note {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 1.8em; }

.policy {
  padding: 10px 0;
  font-weight: bold;
  box-sizing: border-box; }

.thanks {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto; }
  .thanks h3 {
    font-size: 1.8em;
    padding: 5px;
    border-bottom: solid 1px #ccc;
    margin-bottom: 20px; }
    @media screen and (max-width: 480px) {
      .thanks h3 {
        font-size: 1.3em; } }

.thanks-txt {
  padding: 10px;
  line-height: 1.8em; }
  @media screen and (max-width: 480px) {
    .thanks-txt {
      box-sizing: border-box; } }

.contact-tel {
  padding: 50px 0;
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .contact-tel {
      margin-bottom: 50px; } }
  .contact-tel p {
    font-size: 1.2em; }
    @media screen and (max-width: 480px) {
      .contact-tel p {
        font-size: 1em; } }

.tel-number {
  font-size: 2em !important;
  font-weight: bold;
  color: #4682b4;
  padding: 20px; }
  @media screen and (max-width: 480px) {
    .tel-number {
      font-size: 1.5em !important; } }

/*------------------------------------------------------------

スマホナビ

------------------------------------------------------------*/
.sp-logo {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sp-logo {
      display: block;
      padding: 20px; } }

nav.globalMenuSp {
  display: none; }
  @media screen and (max-width: 1024px) {
    nav.globalMenuSp {
      display: block;
      position: fixed;
      z-index: 100;
      top: 0;
      left: 0;
      /*background: #fff;*/
      color: #000;
      text-align: center;
      transform: translateY(-100%);
      transition: all 0.6s;
      width: 100%;
      height: 100%; }
      nav.globalMenuSp ul {
        background: #000066;
        /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
        background-size: cover;
        margin: 0 auto;
        padding: 50px 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box; }
        nav.globalMenuSp ul li {
          font-size: 1.1em;
          list-style-type: none;
          padding: 0;
          width: 100%;
          /*border-bottom: 1px dotted #fff;*/ }
          nav.globalMenuSp ul li:last-child {
            padding-bottom: 0;
            border-bottom: none; }
          nav.globalMenuSp ul li a {
            display: block;
            color: #fff;
            /*text-shadow: 1px 1px 0 #ccc;*/
            font-weight: bold;
            padding: 1em 0;
            font-size: 1.1em;
            border-bottom: dotted 1px #ccc; }
            nav.globalMenuSp ul li a:hover {
              background: rgba(245, 245, 245, 0.8); }
      nav.globalMenuSp.nav_active {
        transform: translateY(0%); } }

@media screen and (max-width: 1024px) {
  p.psp {
    padding: 1em 0; } }

.navToggle {
  display: none; }
  @media screen and (max-width: 1024px) {
    .navToggle {
      display: block;
      position: fixed;
      right: 5px;
      top: 5px;
      width: 60px;
      height: 60px;
      cursor: pointer;
      z-index: 101;
      text-align: center;
      border-radius: 5px; }
      .navToggle span {
        display: block;
        position: absolute;
        width: 47px;
        border-bottom: solid 4px #fff;
        box-shadow: 1px 1px 1px #aaaaaa;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px; }
        .navToggle span:nth-child(1) {
          top: 9px; }
        .navToggle span:nth-child(2) {
          top: 23px; }
        .navToggle span:nth-child(3) {
          top: 37px; }
        .navToggle span:nth-child(4) {
          border: none;
          color: #fff;
          text-shadow: 1px 1px 1px #aaaaaa;
          box-shadow: none;
          font-size: 11px;
          font-weight: bold;
          top: 45px; }
      .navToggle.nav_active span {
        box-shadow: none;
        text-shadow: none; }
        .navToggle.nav_active span:nth-child(1) {
          top: 22px;
          left: 6px;
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
          top: 22px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          transform: rotate(45deg); } }
