/* ================================
   Contact Page
================================ */
.contact-page .container {
  width: min(calc(100% - (var(--side) * 2)), 1440px);
}

.contact-hero {
  padding-block: clamp(154px, 19vw, 198px) clamp(124px, 16vw, 170px);
}

.contact-hero h1 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(58px, 8.6vw, 130px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: bold;
}

.contact-info {
  padding-bottom: clamp(46px, 6vw, 58px);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: clamp(46px, 6vw, 58px);
  border-bottom: 1px solid #b5b5b5;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 130px;
  padding-inline: clamp(30px, 4vw, 62px);
  border-right: 1px solid #b5b5b5;
}

.contact-info__item:last-child {
  border-right: 0;
}

.contact-info__icon {
  display: grid;
  place-items: center;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: #fafafa;
  color: #000;
}

.contact-info__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-info__text {
  min-width: 0;
}

.contact-info__item h2 {
  margin: 0 0 14px;
  font-family: var(--font-en);
  font-size: clamp(23px, 2.3vw, 24px);
  line-height: 1;
}

.contact-info__item p {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.65;
  letter-spacing: -0.04em;
}

.contact-map {
  padding: 92px 0 150px;
}

.contact-map__frame {
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  background: #eee;
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================
   Tablet / Mobile
================================ */
@media (max-width: 960px) {
  .contact-page .container {
    width: min(calc(100% - (var(--side) * 2)), var(--container));
  }

  .contact-info__grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    border-bottom: 1px solid #b5b5b5;
  }

  .contact-info__item {
    grid-template-columns: 58px 1fr;
    align-items: flex-start;
    gap: 18px;
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #d0d0d0;
  }

  .contact-info__item:last-child {
    border-bottom: 0;
  }

  .contact-info__icon {
    width: 52px;
    height: 52px;
    margin-top: 2px;
  }

  .contact-info__icon img {
    width: 26px;
    height: 26px;
  }

  .contact-info__item h2 {
    margin-bottom: 12px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding-block: 98px 86px;
  }

  .contact-hero h1 {
    font-size: clamp(54px, 15vw, 68px);
  }

  .contact-info {
    padding-bottom: 56px;
  }

  .contact-info__item {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .contact-info__item h2 {
    font-size: 24px;
  }

  .contact-info__item p {
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-map {
    padding: 48px 0 96px;
  }

  .contact-map__frame {
    height: 320px;
  }
}