@charset "UTF-8";

/* ---------------------------------------------------------
2026.09 Add PICK UP! 個別ページ共通スタイル
----------------------------------------------------------*/
.pl-1em {
  display: block;
  margin-bottom: 1em;
  padding-left: 1em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.font-bold {
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

/* リンク関連 */
.box-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0.2em 1em;
  border: 2px solid currentColor;
  text-decoration: none;
  transition: opacity .2s;
}
.box-link::after {
  font-family: 'Font Awesome 6 Free';
  content: "\f35d";
  font-size: 1rem;
}
.box-link:hover {
  opacity: 0.6;
}

/* リスト（インデント） */
.box-list ul {
  padding-left: 1em;
}

.box-list li {
  text-indent: -1em;
}

/* 横並び */
.p-pickup__grid__content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 40px;
  @media screen and (min-width: 40.001em) {
    grid-template-columns: repeat(2, 570px);
    gap: 60px;
  }
}