@charset "utf-8";

/* mapArea
---------------------------------------------- */
.mapArea {
  padding-block: clamp(80px, 5.09rem + 7.77vw, 200px);
}

.mapArea__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: clamp(24px, 1.33rem + 1.39vw, 40px);
  letter-spacing: 0.15em;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
}
.mapArea__title::before,
.mapArea__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background-color: #40210f;
}

.mapContents {
  max-width: 1100px;
  margin-inline: auto;
}

.carNav {
  gap: 20px calc(40 / 1100 * 100%);
  width: 90vw;
  max-width: 100%;
  margin-top: 40px;
  margin-inline: auto;
}

.carNav__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  width: 310px;
  background-color: rgb(176 161 125 / .6);
  padding: 20px;
  text-align: center;
}
.carNav__title .text {
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.carNav__text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.carNav__address {
  gap: .5em;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  border-top: 1px solid #40210f;
  border-bottom: 1px solid #40210f;
  margin-top: 10px;
  padding-block: 4px 6px;
}
.carNav__address .em {
  font-size: 155.55%;
  font-weight: 500;
}

.carNav__caption {
  margin-top: 1.5em;
}
.carNav__caption > li {
  padding-left: 1em;
  text-indent: -1em;
}

.support {
  margin-top: 80px;
}
.supportList > li {
  display: flex;
  align-items: flex-start;
  gap: .5em;
  font-size: clamp(15px, 1.3rem + 0.26vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2;
}
.supportList > li::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 5px;
  aspect-ratio: 1;
  background-color: #2d2d2d;
  border-radius: 50%;
  margin-top: 0.9em;
}

.mapButtonBox {
  gap: 20px calc(60 / 1100 * 100%);
  margin-top: 80px;
}

.mapButton {
  width: 100%;
  max-width: 370px;
}

.btn--google {
  background-color: var(--color-brown);
}
.btn--print {
  background-color: transparent;
  border: 1px solid #666;
  color: #666;
  transition: .4s;
}

.mapButton__btn .btn__icon {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
}

.locationMap {
  max-width: 1000px;
  margin-top: 140px;
  margin-inline: auto;
}

.locationMap__img {
  margin-top: 50px;
}

@media (hover: hover) and (pointer: fine) {
  .btn--print:hover {
    background-color: #fff;
  }
}

@media screen and (max-width: 960px) {
  .carNav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(320 / 375 * 100%);
    max-width: 560px;
  }

  .carNav__title {
    width: 100%;
  }
  .carNav__title .text {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.6;
    text-align: center;
  }

  .carNav__address {
    gap: 0;
    font-size: 15px;
    margin-top: 15px;
    padding-block: .7em .8em;
  }
  .carNav__address .em {
    font-size: 133.333%;
  }

  .carNav__caption {
    margin-top: 1em;
  }

}

@media screen and (max-width: 768px) {
  .carNav {
    max-width: 320px;
    margin-top: 30px;
  }

  .supportList > li::before {
    width: 4px;
  }

  .mapButtonBox {
    margin-top: 50px;
  }

  .mapButton {
    max-width: 280px;
  }

  .mapButton__btn .btn__icon {
    right: 8%;
  }

  .locationMap {
    margin-top: 90px;
  }

  .locationMap__img {
    margin-top: 25px;
  }
}