@charset "utf-8";

/* 20251022 add */
:root {
  --font-size-18: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  --font-size-14: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);

  --px100: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
  --px80: clamp(2.5rem, 1.364rem + 4.85vw, 5rem);
  --px60: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem);
}
/* COMMON */
.inline-block {
  display: inline-block;
}
.pointer-none {
  pointer-events: none;
}
body:not(.home) {
  padding-top: 90px;
}
/* HEADER */
header#header.header-main {
  height: 90px;
  transition: .3s ease;
}
.header-logo {
  padding: 0 20px;
  transition: .3s ease;
}
.header-logo--img {
  line-height: 1;
}
header#header.over {
  height: 65px;
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,.3));

  & .header-logo {
    padding: 0;
    padding-left: 20px;
  }
  & .header-menu__ul-li a {
    padding: 0 20px;
  }
  & .header-menu__ul-li .header-menu__shop {
    padding: 0 20px;
  }
  & a.menu-toggle span:nth-of-type(1) {
    top: 15px;
  }
  & a.menu-toggle span:nth-of-type(2) {
    top: 23px;
  }
  & a.menu-toggle span:nth-of-type(3) {
    top: 31px;
  }
  & a.menu-toggle small {
    top: 35px;
  }
  & a.menu-toggle.open span:nth-of-type(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  & a.menu-toggle.open span:nth-of-type(3) {
    top: 23px;
    transform: rotate(-45deg);
  }
}
.header-main {

  & .header-menu__ul-li:not(:last-of-type):not(:first-of-type):not(:nth-last-child(-n+2)):before {
    content: none;
  }
  & .header-menu__ul-li:not(:last-of-type):not(:first-of-type):not(:nth-last-child(-n+3)):before {
    content: "";
    position: absolute;
    height: 70%;
    width: 0;
    border-left: 2px dotted var(--main-blue);
    left: -1.5px;
    top: 15%;
    transition: .3s ease;
  }
  & .header-menu__ul-li a {
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
  }
  & .header-menu__ul-li--icon {
    width: 100%;
    max-width: 40px;
    height: 100%;
    max-height: 30px;
  }
  & .header-menu__ul-li--icon img {
    width: 100%;
    height: 100%;
  }
  & .header-menu__ul-li--text {
    text-wrap: nowrap;
    letter-spacing: .05em;
  }
  & .header-menu__ul-li--toggle {
    display: none;
  }
  & .header-menu__ul-li .header-menu__shop {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;

    & .header-menu__subList {
      position: absolute;
      top: 65px;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      padding: .5em !important;
      opacity: 0;
      visibility: hidden;
      transition: .3s ease;
    }
    & .header-menu__subItem {
      width: 100%;
      text-align: left;
      text-wrap: nowrap;
    }
    & .header-menu__subItem:not(:last-child) {
      margin-bottom: 5px;
    }
    & .header-menu__subItem a {
      font-size: var(--font-size-14);
      padding: .05em .8em;
    }
  }
  & .header-menu__shop .plus-icon {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 3px;
  }
  & .header-menu__shop .plus-icon::before,
  & .header-menu__shop .plus-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .3s ease;
  }
  & .header-menu__shop .plus-icon::before {
    width: 2px;
    height: 10px;
  }
  & .header-menu__shop .plus-icon::after {
    width: 10px;
    height: 2px;
  }
  & .header-menu__ul-li .header-menu__shop:hover {

    & .header-menu__subList {
      opacity: 1;
      visibility: visible;
    }
    & .plus-icon::before {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }
  }
  & a.menu-toggle {
    background: #fff;
    color: var(--main-blue) !important;
  }
  & a.menu-toggle span {
    background: var(--main-blue);
  }
  & a.menu-toggle small {
    top: 50px;
    transition: .3s ease;
  }
}
#header.header-main .header-menu__ul-li a:hover {
  color: #ccc;
}
#header.header-main .header-menu__ul-li.header-menu--stock a {
  width: 100%;
}
#header.header-main .header-menu__ul-li.header-menu--recruit a {
  color: var(--main-yellow);
  background: var(--main-blue);
}
#header.header-main .header-menu__ul-li.header-menu--stock a:hover {
  color: #fff;
  & img {
    transform: scale(1.1);
  }
}
#header.header-main .header-menu__ul-li.header-menu--recruit a:hover {
  color: var(--main-yellow);
  & img {
    transform: scale(1.1);
  }
}
#header.header-main .header-menu__ul-li.header-menu--stock img,
#header.header-main .header-menu__ul-li.header-menu--recruit img {
  transition: .3s ease;
}
/* FOOTER */
.top-footer__grid {
  grid-template-columns: repeat(2, 1fr);
}
.footer-banners {
  background-image: none;
  padding: 0 20px;
}
.footer-banners__box {
  padding: 0;
}
.footer-bnr-recruit__wrap {
  margin-top: -20px;
}
.footer-bnr-recruit {
  max-width: 1260px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
.footer-bnr-recruit a:hover img {
  transform: scale(1.01);
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,.3));
}
.footer-bnr-recruit a img {
  transition: .3s ease;
}
.top-footer {
  padding-bottom: 0;
}
#footer .wrap {
  padding: 50px 20px 30px 20px;
}
.footer-menu-nav {
  font-weight: bold;
}
.footer-menu-nav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.footer-menu-nav__item {
  text-align: center;
  position: relative;
}
.footer-menu-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-left: 2px dotted var(--main-blue);
}
.footer-menu-nav__item:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  border-right: 2px dotted var(--main-blue);
}
.footer-menu-nav__item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-18);
  margin-bottom: 5px;
}
.footer-menu-nav__item-flex:hover img {
  opacity: 1;
}
.footer-menu-nav__subItem a {
  font-size: var(--font-size-14);
}
.footer-btn {
  margin-bottom: var(--px60);
}
.footer-btn-nav {
  display: grid;
  place-items: center;
}
.footer-btn-nav__flex {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-btn-nav__flex-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-18);
  font-weight: bold;
  padding: 1.2em 3em;
  border-radius: 10px;
}
.footer-btn-nav__flex-link:hover {
  transform: scale(1.02);
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, .3));
}
.footer-btn-nav__flex-link.stock {
  color: #fff !important;
  background: var(--main-red);
}
.footer-btn-nav__flex-link.recruit {
  color: var(--main-yellow) !important;
  background: var(--main-blue);
}
/* FRONTPAGE */
.top-fv {
  height: 55vw;
  margin-top: 90px;
}
.top-fv-slider {
  width: 100%;
  height: 100%;
}
.top-fv-slider__item img {
  width: 100%;
  height: auto;
  display: block;
}
.top-inventory__box {
  background: transparent;
  padding: 0;
  margin: 100px 0;
}
.top-inventory__stocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.top-inventory__stock {
  background: #fff;
  padding: 12px;
  padding-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.3);
}
.top-inventory__stock:not(:last-of-type) {
  padding-bottom: 30px;
  margin-bottom: 0;
  border: none;
}
.top-inventory__stock-flex {
  flex-direction: column;
  justify-content: center;
}
.top-inventory__stock--title {
  font-size: 24px;
}
.top-inventory__stock--img {
  width: 100%;
  border-radius: 10px;
}
.top-inventory__stock--info {
  width: 100%;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-inventory__stock--info-metas {
  margin-top: 5px;
}
.top-inventory__stock--price {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-inventory__stock--price-title {
  line-height: 1;
  font-weight: 600;
}
.top-inventory__stock--price-cont {
  line-height: 1;
  color: var(--main-red);
  font-size: 42px;
  font-weight: 600;
}
.top-inventory__stock--price-cont small {
  font-size: 20px;
}
/* RECRUIT */
.footer-banners.margin-top {
  margin-top: var(--px100);
}

/* RESPONSIVE */
@media screen and (max-width:1200px) {
  .header-main {

    & .header-menu__ul-li {
      display: none;
    }
    & .header-menu__ul-li.header-menu__ul-li.header-menu--stock,
    & .header-menu__ul-li.header-menu__ul-li.header-menu--recruit {
      display: block;
    }
    & .header-menu__ul-li--toggle {
      display: block;
    }
  }
}
@media screen and (max-width:991px) {
  header#header.header-main {
    height: 70px;
    padding-left: 20px;
  }
  .header-main {
    & a.menu-toggle small {
      top: 38px;
    }
    & .header-logo {
      padding: 0;
      max-width: 150px;
    }
    & .header-menu__ul-li--icon {
      max-width: 30px;
      max-height: 20px;
    }
  }
  .top-fv {
    height: 55vw;
    margin-top: 0;
  }
  body:not(.home) {
    padding-top: 70px;
  }
  header#header.over {
    & .header-logo {
      padding: 0;
    }
  }
  .top-footer {
    padding-top: 60px;
  }
  .top-footer__grid {
    max-width: 100%;
  }
  .footer-bnr-recruit__wrap {
    margin-top: 20px;
  }
  .top-footer__grid-item:not(:last-of-type) {
    border-right: none;
    border-bottom: 3px solid #e1e1e1;
  }
  .footer-menu-nav__item-flex {
    font-size: 14px;
    gap: 5px;
  }
  .footer-menu-nav__item-flex img {
    max-width: 30px;
    max-height: 20px;
  }
  .top-topics__grid {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .top-topics__grid-item {
    min-width: 280px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width:767px) {
  .header-main {

    & .header-menu__ul-li.header-menu__ul-li.header-menu--stock,
    & .header-menu__ul-li.header-menu__ul-li.header-menu--recruit {
      display: none;
    }
    & a.menu-toggle small {
      top: 35px;
    }
  }
  header#header.header-main {
    height: 60px;
  }
  body, body.home, body:not(.home) {
    padding-top: 60px;
  }
  header#header.over {
    height: 60px;

    & .header-logo {
      padding: 0;
    }
    & a.menu-toggle span:nth-of-type(1) {
      top: 15px;
    }
    & a.menu-toggle span:nth-of-type(2) {
      top: 23px;
    }
    & a.menu-toggle span:nth-of-type(3) {
      top: 31px;
    }
    & a.menu-toggle small {
      top: 35px;
    }
    & a.menu-toggle.open span:nth-of-type(1) {
      top: 23px;
    }
    & a.menu-toggle.open span:nth-of-type(3) {
      top: 23px;
    }
  }
  .top-footer__grid-item--icon {
    max-width: 80px;
    margin-inline: auto;
  }
  .top-footer__grid-item--title--en {
    font-size: 20px;
  }
  .viewmore a {
    min-width: initial;
    font-size: 14px;
  }
  .viewmore-angle {
    width: 16px;
    height: 16px;
  }
  .footer-btn {
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .footer-btn-nav__flex {
    width: 100%;
    gap: 0;
  }
  .footer-btn-nav__flex-link {
    width: 50%;
    padding: .6em;
    border-radius: 0;
    font-size: 14px;
  }
  .footer-btn-nav__flex-link img {
    max-width: 40px;
    max-height: 30px;
  }
  footer#footer {
    padding-bottom: 30px;
  }
  .top-inventory__box {
    margin: 60px 0;
  }
  .top-inventory__stocks {
    grid-template-columns: repeat(9, 1fr);
    overflow-x: scroll;
  }
  .top-inventory__stock {
    min-width: 245px;
    margin-bottom: 15px;
  }
  .top-inventory__stock:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .top-inventory__stock--title {
    font-size: 18px;
  }
  .top-inventory__stock--equip {
    font-size: 14px;
  }
  .top-inventory__stock--price {
    gap: 10px 15px;
  }
  .top-inventory__stock--price-title {
    font-size: 14px;
  }
  .top-inventory__stock--price-cont {
    font-size: 24px;
  }
  .top-inventory__stock--price-cont small {
    font-size: 18px;
  }
  .top-aboutus--grid {
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    overflow-x: scroll;
  }
  .top-aboutus--grid img {
    min-width: 225px;
    margin-bottom: 10px;
  }
  .top-aboutus--text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .top-service__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    overflow-x: scroll;
  }
  .top-service__grid-item {
    min-width: 300px;
    padding: 20px;
    margin-bottom: 10px;
  }
  .top-service__grid-item--ribbon-text {
    font-size: 16px;
  }
  .top-service__grid-item--title--en {
    font-size: 18px;
  }
  .top-service__grid-item--title--jp {
    font-size: 14px;
  }
  .top-service__grid-item--img {
    max-width: 230px;
    max-height: 200px;
    margin-inline: auto;
  }
  .top-inventory__form--input {
    font-size: 16px;
    padding: 10px 40px 10px 10px !important;
  }
}
@media screen and (max-width: 540px) {
  .top-inventory__box {
    margin: 30px 0;
  }
  .top-inventory__stocks {
    gap: 10px;
  }
  .top-inventory__stock {
    padding: 10px;
  }
  .top-inventory__stock--img {
    margin-bottom: 0;
  }
  .top-inventory__stock--title {
    font-size: 14px;
  }
  .top-inventory__stock--price-title {
    font-size: 12px;
  }
  .top-shop--grid-item--img {
    max-width: 160px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  body, body.home, body:not(.home) {
    padding-top: 50px;
  }
  header#header.header-main {
    height: 50px;
  }
  .header-main {
    & a.menu-toggle span:nth-of-type(1) {
      top: 10px;
    }
    & a.menu-toggle span:nth-of-type(2) {
      top: 16px;
    }
    & a.menu-toggle span:nth-of-type(3) {
      top: 22px;
    }
    & a.menu-toggle.open span:nth-of-type(1) {
      top: 16px;
    }
    & a.menu-toggle.open span:nth-of-type(3) {
      top: 16px;
    }
    & a.menu-toggle small {
      top: 30px;
      font-size: 10px;
    }
  }
  header#header.over {
    & a.menu-toggle span:nth-of-type(1) {
      top: 10px;
    }
    & a.menu-toggle span:nth-of-type(2) {
      top: 16px;
    }
    & a.menu-toggle span:nth-of-type(3) {
      top: 22px;
    }
    & a.menu-toggle.open span:nth-of-type(1) {
      top: 16px;
    }
    & a.menu-toggle.open span:nth-of-type(3) {
      top: 16px;
    }
    & a.menu-toggle small {
      top: 30px;
      font-size: 10px;
    }
  }
  .top-service__grid {
    display: grid;
  }
  .top-service__grid-item--img img {
    max-width: 200px;
  }
  .top-service__grid-item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}


/* 新車市場 松江ASKA店 */
:root {
  --color-slyBlue: #279AFF;
}
.section-header.skyBlue {
  background: var(--color-slyBlue);
}
.section-header.skyBlue .section-header--title {
  color: var(--main-yellow);
}
.section-header.skyBlue .section-header--subtitle {
  color: #fff;
}
.main-shop01 .si-eventsec {
  background: var(--color-slyBlue);
}
.si-eventsec .si-common-posts {
  grid-template-columns: repeat(3, 1fr);
}
.si-common-post--ribbon.si-shop01-event .si-common-post--ribbon-category {
  color: var(--main-blue);
}
.viewmore.yellow.sc_skyBlue a{
	color:var(--color-slyBlue);
}
.viewmore.skyBlue a{
  color: var(--main-yellow);
  background: var(--color-slyBlue);
}
.main-shop01 .si-voicesec {
  background: var(--main-yellow);
}
.main-shop01 .si-voicesec .si-section-img {
  position: relative;
  right: -60px;
}
.section-header.sc_skyBlue .section-header--title {
  color: var(--color-slyBlue);
}
.section-header.sc_skyBlue .section-header--title:before {
  background: var(--color-slyBlue);
}
.top-inventory__box.aska {
  margin: 0;
  margin-bottom: var(--px60);
}
.main-shop01 .si-featuresec {
  background: var(--color-slyBlue);
}
.si-feature__ss-link {
  padding-top: var(--px60);
}
.main-shop01 .si-informationsec {
  background: var(--color-slyBlue);
}
.si-information-box.shop01 .si-information__flex-left {
  border-color: var(--color-slyBlue);
}
.si-information-box.shop01 .si-information__flex-left--tel a {
  color: var(--color-slyBlue);
}
.si-information-box.shop01 .si-information--dl dt {
  background: var(--color-slyBlue);
}
.si-feature__ss-link--img {
  max-width: 900px;
  margin-inline: auto;
  margin-top: var(--px60);
}
.instagram-wrap__flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: var(--px100);
}
.si-bottom--instagram--feed {
  width: 70%;
}
.si-bottom--instagram {
  width: 30%;
  max-width: 330px;
  margin: 18px 0;
}
.si-bottom {
  padding: var(--px100) 0;
}
.si-bottom--shops {
  display: block;
  max-width: 650px;
  margin-inline: auto;
}
.header-logo--shop {

}
.header-logo--shop img {
  max-width: 150px;
}
.header-logo--shop--text {
  font-size: 14px;
}
.header-logo--shop--text small {
  font-size: 14px;
}
.header-logo--shop--text small span {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: var(--main-red);
  padding: .5em .8em;
  line-height: 1;
  margin-right: 5px;
  border-radius: 15px;
}
@media screen and (max-width:1240px) {
  .header-logo--shop--text {
    display: none;
  }
  .si-bottom--shop__flex {
    align-items: center;
  }
  .si-bottom--shop__flex-img {
    max-width: 150px;
    margin-bottom: 0;
  }
  .si-bottom--shop__flex-cont {
    width: calc(100% - 170px);
  }
  .si-bottom--shop {
    padding: 20px;
  }
}
@media screen and (max-width:991px) {
  .header-logo--shop--text {
    display: block;
  }
  .header-logo--shop:not(.shop04) {
    flex-direction: row;
  }
  .header-logo--shop {
    gap: 10px;
  }
  .header-logo--shop--text {
    font-size: 12px;
  }
  .header-logo--shop--text small {
    font-size: 12px;
  }
  .header-logo--shop--text small span {
    font-size: 10px;
  }
  .si-eventsec .si-common-posts {
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .si-eventsec .si-common-post {
    min-width: 280px;
    margin-bottom: 10px;
  }
  .si-eventsec .si-common-post--cont {
    padding: 45px 20px 20px;
  }
  .si-event-during--text {
    font-size: 14px;
  }
  .si-blogsec .si-common-posts {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .si-blogsec .si-common-post {
    min-width: 280px;
    margin-bottom: 10px;
  }
  .instagram-wrap__flex {
    gap: 10px;
  }
  .main-shop01 .si-voicesec .si-section-img {
    position: initial;
  }
}
@media screen and (max-width:767px) {
  .si-bottom--shoplist--title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width:560px) {
  .header-logo--shop--text {
    display: none;
  }
  .si-bottom--shop__flex-img {
    width: 100%;
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 15px;
  }
  .si-bottom--shop__flex-cont {
    width: 100%
  }
}
/* SLIDER */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  transition: .3s ease;
}
/* VOICE SLIDER */
.voiceSwiper {
  margin-bottom: var(--px60);
}
.voiceSwiper .swiper-slide {
  transition: transform 1s ease;
}
.voiceSwiper.swiper-backface-hidden .swiper-slide {
  transform: scale(.8);
  opacity: .9;
}
.voiceSwiper.swiper-backface-hidden .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.si-voice a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 18 / 25;
  object-fit: cover;
}
/* STAFF SLIDER */
@media screen and (max-width:767px) {
  .si-staff-name--main {
    font-size: 18px;
  }
}

/* PAGE SERVICE */
.service-menus {
  max-width: 1080px;
  grid-template-columns: repeat(4, 1fr);
}
.service-menu.n2 .service-menu__ribbon--text,
.service-menu.n2 .service-menu__title {
  color: var(--main-orange);
}
.service-menu.n3 .service-menu__ribbon--text,
.service-menu.n3 .service-menu__title {
  color: var(--main-green);
}
.service-menu.n4 .service-menu__ribbon--text,
.service-menu.n4 .service-menu__title {
  color: var(--main-purple);
}
.section-header.orange {
  background: var(--main-orange);
}
.section-header.orange .section-header--title {
  color: var(--main-yellow);
}
.section-header.orange:before,
.section-header.orange:after {
  background: #8a3e00;
}
.section-orange {
  background: var(--main-orange);
  color: #fff;
}
@media screen and (max-width:991px) {
  .service-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .service-menu:last-of-type {
    border-right: 1px solid var(--main-black);
  }
}
@media screen and (max-width:767px) {
  .service-menu:last-of-type {
    border-right: none;
  }
  .service-menu__ribbon--text {
    font-size: 16px;
    padding: 4px 20px;
  }
  .service-menu__title {
    font-size: 18px;
  }
  .service-menusec {
    padding: 30px 0;
  }
}