@charset "UTF-8";
/* html */
/* Safariバージョン10.1~12.0対策 */
* {
  min-height: 0vw;
  min-height: 0;
}

/* グーグルフォントページ読み込み時チラつき回避 */
body.hidden {
  visibility: hidden;
}

.loadingSpinner {
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 2em;
  transform: translate(-50%, -50%);
}

/* html */
html {
  font-family: "Noto Sans JP", sans-serif;
}
html * {
  color: #231815;
}
html body {
  position: relative;
  overflow-x: hidden;
}
html body .wrapper {
  overflow-x: hidden;
}
html body .wrapper__inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
html a {
  transition: 0.3s;
}
html a:hover, html a:active {
  opacity: 0.85;
}
html img {
  width: 100%;
  height: 100%;
}

/* .header */
.header__container {
  display: flex;
  width: 750px;
  max-width: 100%;
  height: clamp(2.8125rem, 0.0218023256rem + 13.9534883721vw, 6.5625rem);
  background-color: #ffffff;
  align-items: center;
  margin-inline: auto;
  justify-content: space-between;
}
.header__logo-nissan {
  display: flex;
  height: 100%;
  padding-top: clamp(0.25rem, 0.0174418605rem + 1.1627906977vw, 0.5625rem);
  padding-left: 6.2%;
  align-items: center;
}
.header__logo-nissan h1 {
  display: flex;
  height: 100%;
  align-items: center;
}
.header__logo-nissan h1 a {
  display: flex;
  width: clamp(2.4375rem, 0.8095930233rem + 8.1395348837vw, 4.625rem);
  aspect-ratio: 74/62;
}
.header__logo-kyoto-nissan {
  display: flex;
  height: 100%;
  padding-right: 8.2%;
  align-items: center;
}
.header__logo-kyoto-nissan h1 {
  display: flex;
  height: 100%;
  align-items: center;
}
.header__logo-kyoto-nissan h1 a {
  display: flex;
  width: clamp(2.875rem, -1.4505813953rem + 21.6279069767vw, 8.6875rem);
  aspect-ratio: 139/33;
}

/* .main-visual */
.main-visual {
  position: relative;
}
.main-visual__img {
  aspect-ratio: 750/851;
}
.main-visual .enter--01 {
  position: absolute;
  width: 100%;
  bottom: 12%;
}
.main-visual .enter--01 .enter__container {
  width: 100%;
}
.main-visual .enter--01 .enter__container a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-visual .enter--01 .enter__container a img {
  width: 58.1333333333%;
  height: auto;
}

/* .enter */
/*
[class^="enter"] {
  .enter__container {
    display: flex;
    justify-content: center;
    a {
      display: flex;
      width: 82.53%;
    }
  }
}
*/
/* .enter-slider */
.enter-slider {
  margin-bottom: 6%;
}
.enter-slider__container {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 752/392;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.enter-slider__container.is-dragging {
  cursor: grabbing;
}
.enter-slider .slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.enter-slider .slideshow .slide {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.enter-slider .slideshow .slide:nth-child(1) {
  background: url("../img/img_enter-slide--01.png") center/cover no-repeat;
}
.enter-slider .slideshow .slide:nth-child(2) {
  background: url("../img/img_enter-slide--02.png") center/cover no-repeat;
}
.enter-slider .slideshow .slide:first-child {
  z-index: 0;
}
.enter-slider .slideshow .slide.is-leaving {
  z-index: 1;
  animation: slide-leave 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.enter-slider .slideshow .slide.is-entering {
  z-index: 2;
  animation: slide-enter 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.enter-slider .slideshow .slide.is-leaving-reverse {
  z-index: 1;
  animation: slide-leave-reverse 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.enter-slider .slideshow .slide.is-entering-reverse {
  z-index: 2;
  animation: slide-enter-reverse 0.8s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.enter-slider .bars {
  display: none;
}

@keyframes slide-leave {
  from {
    transform: scale(1) translateX(0);
    opacity: 1;
  }
  to {
    transform: scale(0.75) translateX(-55%);
    opacity: 0;
  }
}
@keyframes slide-enter {
  from {
    transform: scale(0.7) translateX(60%);
    opacity: 0;
  }
  to {
    transform: scale(1) translateX(0);
    opacity: 1;
  }
}

/* 逆方向（右スワイプ時）アニメーション */
@keyframes slide-leave-reverse {
  from {
    transform: scale(1) translateX(0);
    opacity: 1;
  }
  to {
    transform: scale(0.75) translateX(55%);
    opacity: 0;
  }
}
@keyframes slide-enter-reverse {
  from {
    transform: scale(0.7) translateX(-60%);
    opacity: 0;
  }
  to {
    transform: scale(1) translateX(0);
    opacity: 1;
  }
}
/* .detail */
.detail {
  margin-top: 2%;
}
.detail__container {
  width: 77%;
  border-top: solid 1px #717071;
  border-bottom: solid 1px #717071;
  margin-inline: auto;
}
.detail .accordion {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 1.5% 0 2.5%;
  align-items: center;
}
.detail .accordion__input {
  display: none;
}
.detail .accordion__input:checked + .accordion__label + .accordion__content {
  max-height: 1200px;
}
@media screen and (max-width: 750px) {
  .detail .accordion__input:checked + .accordion__label + .accordion__content {
    max-width: 160vw;
  }
}
.detail .accordion__input:checked + .accordion__label + .accordion__content + .accordion__content {
  max-height: 1225px;
}
@media screen and (max-width: 750px) {
  .detail .accordion__input:checked + .accordion__label + .accordion__content + .accordion__content {
    max-width: 160vw;
  }
}
.detail .accordion__input:not(:checked) + .accordion__label::after {
  position: absolute;
  top: 19%;
  right: -17%;
  bottom: 0;
  display: block;
  width: 6.25%;
  height: 55%;
  margin: auto;
  background-image: url("../img/button_detail--plus.png");
  background-image: image-set(url("../img/button_detail--plus.png") 1x, url("../img/button_detail--plus@2x.png") 2x);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
}
.detail .accordion__input:checked + .accordion__label::after {
  position: absolute;
  top: 20%;
  right: -17%;
  bottom: 0;
  display: block;
  width: 5%;
  height: 33%;
  margin: auto;
  background-image: url("../img/button_detail--minus.png");
  background-image: image-set(url("../img/button_detail--minus.png") 1x, url("../img/button_detail--minus@2x.png") 2x);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
}
.detail .accordion label {
  position: relative;
  overflow-x: visible;
  font-size: clamp(1rem, 0.8139534884rem + 0.9302325581vw, 1.25rem);
  cursor: pointer;
  transform: translateX(-4%);
}
.detail .detail__300000,
.detail .detail__100000 {
  display: none;
  overflow: hidden;
  width: 100%;
  max-height: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 700px) {
  .detail .detail__300000 br,
  .detail .detail__100000 br {
    display: none;
  }
  .detail .detail__300000 *,
  .detail .detail__100000 * {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
.detail .detail__300000 h3,
.detail .detail__100000 h3 {
  position: relative;
  font-size: clamp(1.0625rem, 0.8764534884rem + 0.9302325581vw, 1.3125rem);
  font-weight: 600;
  line-height: 1.64;
  color: #231815;
  letter-spacing: 0.15em;
}
.detail .detail__300000 h3:first-child,
.detail .detail__100000 h3:first-child {
  margin-top: clamp(0.875rem, 0.7354651163rem + 0.6976744186vw, 1.0625rem);
}
.detail .detail__300000 h3:not(:first-child),
.detail .detail__100000 h3:not(:first-child) {
  margin-top: clamp(1.9375rem, 1.5654069767rem + 1.8604651163vw, 2.4375rem);
}
.detail .detail__300000 h3::after,
.detail .detail__100000 h3::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #221714;
  content: "";
}
.detail .detail__300000 .sub-title,
.detail .detail__100000 .sub-title {
  margin-top: clamp(0.3125rem, 0.2194767442rem + 0.4651162791vw, 0.4375rem);
  font-size: clamp(0.875rem, 0.7354651163rem + 0.6976744186vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.39;
  color: #231815;
  letter-spacing: 0.04em;
}
.detail .detail__300000 ol li,
.detail .detail__100000 ol li {
  position: relative;
  margin-top: clamp(0.625rem, 0.4854651163rem + 0.6976744186vw, 0.8125rem);
  padding-left: clamp(1.125rem, 0.9389534884rem + 0.9302325581vw, 1.375rem);
  font-size: clamp(0.875rem, 0.6889534884rem + 0.9302325581vw, 1.125rem);
  font-weight: 500;
  line-height: 1.39;
  color: #231815;
  letter-spacing: 0.04em;
}
.detail .detail__300000 ol li::before,
.detail .detail__100000 ol li::before {
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
}
.detail .detail__300000 ol li:nth-child(1)::before,
.detail .detail__100000 ol li:nth-child(1)::before {
  content: "①";
}
.detail .detail__300000 ol li:nth-child(2)::before,
.detail .detail__100000 ol li:nth-child(2)::before {
  content: "②";
}
.detail .detail__300000 ol li:nth-child(3)::before,
.detail .detail__100000 ol li:nth-child(3)::before {
  content: "③";
}
.detail .detail__300000 ol li .caution-note,
.detail .detail__100000 ol li .caution-note {
  transform: translateX(calc(-1 * clamp(1.375rem, 1.0959302326rem + 1.3953488372vw, 1.75rem)));
}
.detail .detail__300000 .caution-note,
.detail .detail__100000 .caution-note {
  position: relative;
  padding-left: clamp(1.125rem, 0.9389534884rem + 0.9302325581vw, 1.375rem);
  font-size: clamp(0.625rem, 0.5319767442rem + 0.4651162791vw, 0.75rem);
  line-height: 1.58;
  color: #231815;
  letter-spacing: 0.04em;
  transform: translateX(calc(-1 * clamp(0.375rem, 0.2819767442rem + 0.4651162791vw, 0.5rem)));
}
.detail .detail__300000 .caution-note::before,
.detail .detail__100000 .caution-note::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(0.4375rem, 0.3444767442rem + 0.4651162791vw, 0.5625rem);
  display: block;
  margin: auto;
  content: "※";
}
.detail .detail__300000 .red,
.detail .detail__100000 .red {
  color: #e20012;
}
.detail .flow {
  overflow-x: scroll;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}
.detail .flow .scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.detail .flow > p {
  position: relative;
  margin-top: clamp(0.5rem, -0.2906976744rem + 3.9534883721vw, 1.5625rem);
  margin-left: clamp(0rem, -0.3720930233rem + 1.8604651163vw, 0.5rem);
  padding-bottom: 10px;
  padding-left: clamp(1.125rem, 0.9389534884rem + 0.9302325581vw, 1.375rem);
  font-size: clamp(0.625rem, 0.5319767442rem + 0.4651162791vw, 0.75rem);
  line-height: 1.58;
  color: #231815;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transform: translateX(calc(-1 * clamp(0.375rem, 0.2819767442rem + 0.4651162791vw, 0.5rem)));
}
.detail .flow > p::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(0.4375rem, 0.3444767442rem + 0.4651162791vw, 0.5625rem);
  display: block;
  margin: auto;
  content: "※";
}
.detail .flow ul {
  display: flex;
  width: 526px;
  height: 175px;
  margin-top: clamp(0.375rem, 0.0494186047rem + 1.6279069767vw, 0.8125rem);
  border: solid 1px #000000;
  border-radius: 6px;
  margin-inline: auto;
}
.detail .flow ul li {
  display: flex;
  flex-direction: column;
  width: 20%;
  align-items: center;
  justify-content: flex-start;
}
.detail .flow ul li:nth-child(even) {
  background-color: #ebebec;
}
.detail .flow ul li h4 {
  width: 95%;
  margin-top: 5px;
  flex-shrink: 0;
  aspect-ratio: 91/17;
}
.detail .flow ul li h5 {
  display: flex;
  width: 179%;
  justify-content: center;
  aspect-ratio: 181/31;
  flex-shrink: 0;
}
.detail .flow ul li h5 img {
  width: 140%;
}
.detail .flow ul li .flow__icon {
  width: 39.05%;
  flex-shrink: 0;
  aspect-ratio: 41/41;
}
.detail .flow ul li p {
  margin-top: 1%;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
  padding-inline: 2%;
}
.detail .flow ul li p .caution-mark {
  font-size: 7px;
  vertical-align: 2.5px;
}
.detail .flow ul li .flow__caution-note {
  position: relative;
  padding-left: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-size: 8px;
  line-height: 1.625;
  letter-spacing: -0.04em;
}
.detail .flow ul li .flow__caution-note::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(0.125rem, 0.125rem + 0vw, 0.125rem);
  display: block;
  margin: auto;
  content: "※";
}

/* .car-model-slider */
.car-model-slider__title {
  margin-top: 5%;
}
.car-model-slider__title h2 {
  width: 100%;
  max-width: 547px;
  margin-inline: auto;
  text-align: center;
}
.car-model-slider__title h2 img {
  width: 72.9333333333%;
  height: auto;
}
.car-model-slider__content {
  width: 78%;
  margin-top: 4%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 0.3139534884rem + 0.9302325581vw, 0.75rem);
}

/* フリップカード */
.flip-card {
  position: relative;
  flex: 1 1 0;
  max-width: 185px;
  aspect-ratio: 203/204;
  perspective: 600px;
}
.flip-card.is-flipping .flip-panel--anim-top {
  animation: flip-fold-top 0.28s ease-in forwards;
}
.flip-card.is-flipping .flip-panel--anim-bottom {
  animation: flip-fold-bottom 0.28s ease-out 0.28s forwards;
}

.flip-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.flip-panel img {
  display: block;
  width: 100%;
  height: 200%;
  object-fit: cover;
  object-position: top center;
}

.flip-panel--static-top,
.flip-panel--anim-top {
  top: 0;
}

.flip-panel--static-bottom,
.flip-panel--anim-bottom {
  bottom: 0;
}
.flip-panel--static-bottom img,
.flip-panel--anim-bottom img {
  object-position: bottom center;
  transform: translateY(-50%);
}

.flip-panel--static-top {
  z-index: 1;
  opacity: 0;
}

.flip-card.is-flipping .flip-panel--static-top {
  animation: flip-static-top-appear 0.01s ease 0.27s forwards;
}

@keyframes flip-static-top-appear {
  to {
    opacity: 1;
  }
}
.flip-panel--static-bottom {
  z-index: 1;
}
.flip-card.is-flipping .flip-panel--static-bottom {
  animation: flip-static-bottom-hide 0.01s ease 0.27s forwards;
}
@keyframes flip-static-bottom-hide {
  to { opacity: 0; }
}

.flip-panel--anim-top {
  z-index: 3;
  transform-origin: center bottom;
}

.flip-panel--anim-bottom {
  z-index: 2;
  transform-origin: center top;
  transform: rotateX(90deg);
}

@keyframes flip-fold-top {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(-90deg);
  }
}
@keyframes flip-fold-bottom {
  from {
    transform: rotateX(90deg);
  }
  to {
    transform: rotateX(0deg);
  }
}
/* .reserve */
[class^=reserve] .reserve__container {
  display: flex;
  justify-content: center;
}
[class^=reserve] .reserve__container a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.reserve--01 {
  margin-top: 5%;
  margin-bottom: 30px;
}
.reserve--01 a {
  display: flex;
  justify-content: center;
  width: 100%;
}
.reserve--01 a img {
  width: 58.1333333333%;
  height: auto;
}

/* .banner */
.banner__title {
  width: 77%;
  margin-top: 4%;
  padding-top: 2.5%;
  border-top: solid 1px #717071;
  margin-inline: auto;
}
.banner__title h2 {
  width: 57.07%;
  margin-inline: auto;
}
.banner__content {
  display: flex;
  width: 91.73%;
  margin-top: 3%;
  justify-content: center;
  margin-inline: auto;
}
.banner__content a {
  display: block;
  width: 47.67%;
  height: auto;
}

/* .footer */
.footer__container {
  display: flex;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-top: clamp(2.8125rem, 0.2543604651rem + 12.7906976744vw, 6.25rem);
  background-color: #000000;
  aspect-ratio: 750/52;
  justify-content: center;
  align-items: center;
}
.footer__container small {
  display: flex;
  width: 36.8%;
  aspect-ratio: 276/14;
}

/* .reserve */
.enter--fixed {
  position: fixed;
  z-index: 150;
  bottom: 0;
  width: 100%;
  cursor: pointer;
  /* アニメーション設定 */
  transition: transform 0.3s ease;
  transform: translateY(0);
  will-change: transform;
}
.enter--fixed__container {
  display: flex;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  justify-content: center;
}
.enter--fixed__container a {
  width: 100%;
}

/* iOSバウンススクロール対策 */
@supports (-webkit-touch-callout: none) {
  body {
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
  }
}

/*# sourceMappingURL=style.css.map */
