@charset "UTF-8";
.showroom-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .showroom-hero {
    height: auto;
    min-height: unset;
  }
}
.showroom-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  .showroom-hero__inner {
    padding: 0;
  }
}
.showroom-hero__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .showroom-hero__header {
    margin-bottom: 20px;
  }
}
.showroom-hero__label {
  font-family: "Jacques Francois", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .showroom-hero__label {
    font-size: 1.8rem;
  }
}
.showroom-hero__title {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.6em;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .showroom-hero__title {
    font-size: 1.4rem;
  }
}
.showroom-hero__reserve-btn {
  display: inline-block;
  background-color: #706f6b;
  color: #fff;
  font-family: "Nunito", "Noto Sans JP", "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 17px 30px;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.showroom-hero__reserve-btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .showroom-hero__reserve-btn {
    font-size: 1.2rem;
    padding: 14px 24px;
  }
}
.showroom-hero__scrolltext {
  position: absolute;
  bottom: 50px;
  right: 50px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
}
.showroom-hero__scrolltext::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -10px;
  width: 1px;
  height: 50px;
  background: #eee;
  -webkit-animation: scrollLine 2.5s ease-in-out infinite;
          animation: scrollLine 2.5s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes scrollLine {
  0% {
    height: 0;
    bottom: -10px;
    opacity: 0;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -60px;
    opacity: 0;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    bottom: -10px;
    opacity: 0;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -60px;
    opacity: 0;
  }
}
@media only screen and (max-width: 991px) {
  .showroom-hero__scrolltext {
    display: none;
  }
}

.showroom-slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .showroom-slider {
    max-width: 100%;
  }
}
.showroom-slider__main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  border-radius: 4px;
  min-height: 300px;
}
@media only screen and (max-width: 991px) {
  .showroom-slider__main {
    min-height: 220px;
  }
}
.showroom-slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.showroom-slider__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 100%;
}
.showroom-slider__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.showroom-slider__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 37px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 2;
}
.showroom-slider__btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  margin: auto;
}
.showroom-slider__btn:hover {
  background: rgba(255, 255, 255, 0.8);
}
.showroom-slider__btn--prev {
  left: 10px;
}
.showroom-slider__btn--prev::before {
  -webkit-transform: rotate(-135deg) translate(-3px, 0px);
          transform: rotate(-135deg) translate(-3px, 0px);
}
.showroom-slider__btn--next {
  right: 10px;
}
.showroom-slider__btn--next::before {
  -webkit-transform: rotate(45deg) translate(-2px, 2px);
          transform: rotate(45deg) translate(-2px, 2px);
}
.showroom-slider__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
@media only screen and (max-width: 991px) {
  .showroom-slider__thumbs {
    gap: 4px;
  }
}
.showroom-slider__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 55px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 2px solid transparent;
  border-color: #fff;
}
.showroom-slider__thumb.active {
  opacity: 0.5;
}
.showroom-slider__thumb:hover {
  opacity: 0.8;
}
.showroom-slider__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 991px) {
  .showroom-slider__thumb {
    height: 40px;
  }
}

.showroom-info {
  background-color: #fff;
  border-top: 1px solid #ededed;
  padding: 80px 0 0;
}
@media only screen and (max-width: 991px) {
  .showroom-info {
    padding: 50px 0 0;
  }
}
.showroom-info__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
@media only screen and (max-width: 991px) {
  .showroom-info__inner {
    padding: 0 20px;
  }
}
.showroom-info__heading {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .showroom-info__heading {
    font-size: 1.6rem;
    padding-bottom: 0;
  }
}
.showroom-info__desc {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.5;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .showroom-info__desc {
    line-height: 2.2;
    width: 100%;
  }
}
.showroom-info__note {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  color: #000;
}

.showroom-access {
  background-color: #fff;
  padding: 80px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 991px) {
  .showroom-access {
    grid-template-columns: 1fr;
    padding: 50px 0 0;
  }
}
.showroom-access__header {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .showroom-access__header {
    margin-bottom: 30px;
  }
}
.showroom-access__label {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: #000;
  margin-bottom: 8px;
}
.showroom-access__title {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #000;
}
.showroom-access__row {
  padding: 20px 0;
}
.showroom-access__term {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #000;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ededed;
}
.showroom-access__detail {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  color: #000;
}
.showroom-access__address-link {
  display: block;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  line-height: 1.8;
  margin-bottom: 4px;
}
.showroom-access__address-link:hover {
  opacity: 0.7;
}
.showroom-access__map-link {
  display: inline-block;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  text-decoration: underline;
  margin-bottom: 12px;
}
.showroom-access__map-link:hover {
  opacity: 0.7;
}
.showroom-access__note {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  color: #000;
}
.showroom-access__tel-label {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  margin-right: 8px;
}
.showroom-access__tel {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
}
.showroom-access__tel:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  .showroom-access__tel {
    font-size: 2.2rem;
  }
}
.showroom-access__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding: 20px 0;
}
.showroom-access__hours .showroom-access__row {
  border: none;
  padding: 0;
}
.showroom-access__notice {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  line-height: 2;
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .showroom-access__map {
    margin-top: 30px;
  }
}
.showroom-access__iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .showroom-access__iframe {
    min-height: 300px;
  }
}

.showroom-ctabtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 20px;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .showroom-ctabtn {
    padding: 50px 20px;
  }
}
.showroom-ctabtn .showroom-hero__reserve-btn {
  padding: 17px 60px;
}
@media only screen and (max-width: 991px) {
  .showroom-ctabtn .showroom-hero__reserve-btn {
    padding: 14px 30px;
    width: 100%;
    text-align: center;
  }
}

.showroom-cards {
  background-color: #9e9d96;
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .showroom-cards {
    padding: 40px 0;
  }
}
.showroom-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .showroom-cards__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
}

.showroom-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #9e9d96;
  padding: 40px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .showroom-card {
    padding: 30px 20px;
  }
}
.showroom-card__title {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .showroom-card__title {
    font-size: 1.8rem;
  }
}
.showroom-card__address {
  margin-bottom: 20px;
}
.showroom-card__address-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #fff;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.18rem;
  font-weight: 200;
  text-decoration: none;
  line-height: 1.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.showroom-card__address-link:hover {
  opacity: 0.7;
}
.showroom-card__ext-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 1px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.showroom-card__ext-icon::before {
  content: "↗";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 8px;
  color: #fff;
}
.showroom-card__hours {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 2.2;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .showroom-card__hours {
    font-size: 1.1rem;
    line-height: 2;
  }
}
.showroom-card__tel-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  margin-bottom: 30px;
}
.showroom-card__tel-label {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
}
.showroom-card__tel {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.6rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.showroom-card__tel:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  .showroom-card__tel {
    font-size: 2.2rem;
  }
}
.showroom-card__reserve {
  display: inline-block;
  color: #fff;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.showroom-card__reserve:hover {
  background: rgba(255, 255, 255, 0.1);
}

.showroom-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .showroom-cta {
    padding: 40px 20px;
  }
}
.showroom-cta__btn {
  display: inline-block;
  background-color: #706f6b;
  color: #fff;
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 17px 50px;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.showroom-cta__btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .showroom-cta__btn {
    font-size: 1.2rem;
    padding: 14px 30px;
  }
}

.showroom-contact {
  background-color: #fff;
  border-top: 1px solid #ededed;
  padding: 60px 0 80px;
}
@media only screen and (max-width: 991px) {
  .showroom-contact {
    padding: 40px 0 60px;
  }
}
.showroom-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
@media only screen and (max-width: 991px) {
  .showroom-contact__inner {
    padding: 0 20px;
  }
}
.showroom-contact__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .showroom-contact__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}
.showroom-contact__heading {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.83rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .showroom-contact__heading {
    font-size: 1.6rem;
  }
}
.showroom-contact__text p {
  font-family: "ryo-text-plusn", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #000;
  line-height: 2;
}