.post {
  padding: 40px 27.5px 80px;
}

.post__title {
  font-size: clamp(20px, 6.4vw, 24px);
  line-height: 1.33;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 2px;
  text-align: center;
}

.post__title:not(:first-child) {
  margin: 80px auto 40px;
}

.post__image {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 213;
  background-color: #d9d9d9;
  border-radius: 16px;
  margin: 16px auto;
  max-width: 450px;
}

.post__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 5.34vw, 20px);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.post__text {
  font-size: 16px;
  /* line-height: 2; */
  line-height: 1.5;
}

.post__info {
  width: 100%;
  margin: 0 auto;
}

.post__info-row {
  border-bottom: 1px solid #c2c2c2;
}

.post__info-label {
  min-width: 86px;
  padding: 16px 16px 16px 0;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 2;
}

.post__info-value {
  padding: 16px 0;
  word-break: break-all;
  font-size: 16px;
  line-height: 24px;
}

.post__info-row:first-child .post__info-label,
.post__info-row:first-child .post__info-value {
  padding-top: 0;
}

.post__map {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 320 / 180;
  border-radius: 32px;
  overflow: hidden;
  background-color: #d9d9d9;
  margin: 0 auto 16px;
}

.post__map iframe {
  width: 100%;
  height: 100%;
}

.post__nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 32px auto 0;
  position: relative;
  max-width: 1032px;
}

.post__nav-button {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 29px;
  border: 1px solid #000;
  border-radius: 4px;
  margin: 0;
  background-color: #fff;
  padding: 3px 7px;
  font-size: 14px;
}

.post__nav-button span {
  position: relative;
  color: #000;
}

.post__nav-button--prev:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/heroicons-outline_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.post__nav-button--next {
  margin-left: auto;
}

.post__nav-button--next:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/heroicons-outline_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.post__nav-button--next::after {
  transform: scaleX(-1);
}

.post__nav-button--back {
  position: absolute;
  top: 75px;
  width: 100%;
}

@media (min-width: 768px) {
  .post {
    padding: 120px 27.5px;
  }

  .post__title {
    font-size: 28px;
    line-height: 40px;
  }

  .post__wrapper {
    display: flex;
    max-width: 1032px;
    margin: 64px auto 0;
    gap: clamp(30px, calc(89px + 50vw - 500px), 89px);
    align-items: center;
  }

  .post__content {
    max-width: 352px;
  }

  .post__image {
    display: block;
    width: auto;
    flex: 1;
    aspect-ratio: 591 / 394;
    background-color: #d9d9d9;
    border-radius: 16px;
    margin: 0;
    max-width: 591px;
  }

  .post__subtitle {
    font-size: 24px;
    line-height: 36px;
    text-align: left;
  }

  .post__title:not(:first-child) {
    margin: 120px auto 64px;
  }

  .post__info {
    width: 100%;
    max-width: 856px;
    margin: 0 auto;
  }

  .post__info-label {
    width: 151px;
    min-width: 151px;
    max-width: 151px;
    padding: 30px 24px 30px 0;
  }

  .post__info-value {
    padding: 30px 0;
    line-height: 2;
  }

  .post__map {
    width: 100%;
    max-width: 857px;
    aspect-ratio: 857 / 482;
    border-radius: 64px;
    overflow: hidden;
    background-color: #d9d9d9;
    margin: 0 auto 24px;
  }

  .post__text {
    max-width: 680px;
    margin: 0 auto;
  }

  .post__nav {
    margin-top: 64px;
  }
}