@charset "UTF-8";

/* ---------------------------------------------------------------------------
   links.css
   出所: 旧 WPCode スニペット525「リンク」の $css（heredoc）。
   内容は変更していない。
   --------------------------------------------------------------------------- */

/* ===== ACFリンクボタン共通 ===== */
.jc-links{
  display: grid;
  gap: 14px;
  align-items: start;
}

/* 1カラム（PC/SPとも） */
.jc-links--one{
  grid-template-columns: 1fr;
}

/* 4カラム（PC=4 / SP=2） */
.jc-links--four{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767px){
  .jc-links--four{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ボタン（ピル型） */
.jc-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none !important;
  background: #79c6e9;
  color: #ffffff !important;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
  transition: transform .15s ease, filter .15s ease;
}

.jc-btn:hover{
  transform: translateY(-1px);
  filter: brightness(.96);
}

/* 先頭の丸ドット */
.jc-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}

/* テキスト */
.jc-text{
  display: block;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
