/* SNS QR Widget - LINE + Instagram 左下固定 (PC のみ表示) */
/* 作成: 2026-05-20 */

.sns-qr-widget {
  display: none; /* デフォルト非表示。PC のみ表示する */
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  gap: 20px;
  align-items: flex-end;
  pointer-events: none; /* 子要素 a だけクリックさせる */
}

@media screen and (min-width: 992px) {
  .sns-qr-widget {
    display: flex;
  }
}

.sns-qr-widget a {
  pointer-events: auto;
  display: block;
  background: #ffffff;
  padding: 10px 8px 8px;
  border-radius: 8px;
  border: 3px solid;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  width: 118px;
  box-sizing: border-box;
  line-height: 1;
}

/* Instagram ラベルだけ少し小さく (文字長対策) */
.sns-qr-widget .sns-instagram .sns-label {
  font-size: 11.5px;
}

.sns-qr-widget a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* LINE 緑色 (#06C755) */
.sns-qr-widget .sns-line {
  border-color: #06C755;
}

.sns-qr-widget .sns-line .sns-label {
  color: #06C755;
}

/* Instagram グラデーション (代表色 #E1306C - 紫赤) */
.sns-qr-widget .sns-instagram {
  border-color: #E1306C;
  /* グラデーション枠は border-image でも可 */
  border-image: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4) 1;
  border-style: solid;
  border-width: 3px;
}

.sns-qr-widget .sns-instagram .sns-label {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
}

.sns-qr-widget .sns-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 2px 0;
  letter-spacing: 0.05em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
}

.sns-qr-widget img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
