@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　イヤーモデル外アラート用(model-alert.css)ver.1 2025.12.8
--------------------------------------------------------------------------*/
/*----------------------------------
■■■■■過去サイトアラート■■■■■
----------------------------------*/
/* model year alert */
@-webkit-keyframes alertFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes alertFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes alertFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes alertFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#model-year-alert {
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1050;
}

#model-year-alert.active {
  -webkit-animation: alertFadein 0.5s ease-in-out 1 forwards;
          animation: alertFadein 0.5s ease-in-out 1 forwards;
}

#model-year-alert.active.close {
  visibility: visible;
  -webkit-animation: alertFadeOut 0.5s ease-in-out 1 forwards;
          animation: alertFadeOut 0.5s ease-in-out 1 forwards;
}

#model-year-alert .model-year-item {
  width: 600px;
  height: 260px;
  margin: auto;
  padding: 40px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item {
    width: 90%;
    height: 73.3333333333vw;
    padding: 2.6666666667vw;
  }
}
#model-year-alert .model-year-item header {
  font-size: 16px;
  font-weight: bold;
  background-color: none;
}

.model-year-item header span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item header {
    font-size: 3.7333333332vw;
  }
}
#model-year-alert .model-year-item .select-area {
  width: 100%;
  margin: 20px auto 0;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#model-year-alert .model-year-item .select-area button {
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item .select-area button {
    font-size: 3.1999999999vw;
  }
}
#model-year-alert .model-year-item .select-area button.ok-button {
  background: #e9471f;
  color: #fff;
  padding: 14px 16px;
  margin-bottom: 20px;
}

#model-year-alert .model-year-item .select-area button.cancel-button {
  background: #FFF;
  color: #545454;
  padding: 14px 16px;
}

header.bg-none {
  background: rgba(0, 0, 0, 0);
}