@charset "UTF-8";

/* --------------------------------------------------------------------------

  SNSシェアボタン

-------------------------------------------------------------------------- */

.l-share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.l-share button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  padding: 2px 16px 2px 10px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 4px;
  color: white;
  transition: filter 0.3s ease;
}
@media (max-width: 767px) {
  .l-share {
    justify-content: space-between;
  }
  .l-share button {
    flex: 1 1 45%; 
    box-sizing: border-box;
  }
}
.l-share button.x {
  background-color: #000; /* X黒 */
}
.l-share button.facebook {
  background-color: #3b5998; /* Facebookブルー */
}
.l-share button.line {
  background-color: #00c300; /* LINEグリーン */
}
.l-share button.linkedin {
  background-color: #0077B5; /* LinkedInブルー */
}
.l-share button.copy {
  background-color: #777; /* グレー */
  width: auto;
}
@media (max-width: 767px) {
  .l-share button.copy {
    flex: 1 1 45%;
    box-sizing: border-box;
    width: auto;
  }
}
.l-share button:hover {
  filter: brightness(110%);
}
.l-share button i {
  font-size: 16px;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: white;
  background: transparent; 
}