﻿.sns {
  padding: 50px 0 30px;
}

.sns-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: var(--gold-light);
  font-size: 28px;
  letter-spacing: 0.14em;
  margin-bottom: 30px;
}

.sns-title::before,
.sns-title::after {
  content: "";
  width: min(320px, 22vw);
  height: 1px;
  background: rgba(181, 138, 75, 0.45);
}

.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sns-card {
  min-height: 84px;
  padding: 18px 36px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.sns-card > span {
  flex-shrink: 0;
}

.sns-card.line {
  background: linear-gradient(100deg, #23893e, #56a94b);
}

.sns-card.instagram {
  background: linear-gradient(100deg, #5c4aa5, #b93670 54%, #e7a046);
}

.sns-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.sns-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: #23893e;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}

.instagram .sns-icon {
  background: transparent;
  border-radius: 0;
  color: #fff;
}

.sns-card h3 {
  font-size: 24px;
  letter-spacing: 0.13em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sns-card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  opacity: 0.92;
}

@media (max-width: 720px) {
  .sns-title {
    font-size: 21px;
    gap: 16px;
  }

  .sns-grid {
    grid-template-columns: 1fr;
  }

  .sns-title::before,
  .sns-title::after {
    width: 36px;
  }

  .sns-card {
    padding: 18px 22px;
  }

  .sns-left {
    gap: 14px;
  }

  .sns-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sns-title {
    font-size: 19px;
    letter-spacing: 0.06em;
  }

  .sns-card {
    padding: 16px;
  }

  .sns-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    font-size: 13px;
  }

  .sns-card h3 {
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .sns-card p {
    font-size: 13px;
  }
}

