/* contact.css */

/* メイン画像 */
.contact-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 24px 0 12px;
}
.contact-hero img {
    width: 100%;
    max-width: 400px;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* 見出し＋説明 */
.contact-lead {
    color: #eeeeee;
  text-align: center;
  padding: 8px 20px 48px;
}
.contact-lead h2 {
  margin: 12px 0 10px;
}
.contact-lead p {
  line-height: 1.9;
  margin: 0 auto 16px;
}

/* 丸アイコンボタン */
.contact-channels {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  margin-top: 20px;
  flex-wrap: wrap;
}
.contact-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-btn img {
  width: 42px;
  height: 42px;
}
.contact-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

@media (min-width: 768px) {
  .contact-btn {
    width: 104px;
    height: 104px;
  }
  .contact-btn img {
    width: 48px;
    height: 48px;
  }
}
