@charset "UTF-8";
/* =============================================
   column.scss — コラム一覧 / 個別記事 / カテゴリ
   assets/css/column.css の編集元
   既存CSSを失わないため、まずはCSS互換のSCSSとして管理
   ============================================= */
/* -----------------------------------------
   ページタイトル（.pageTtl）
   ----------------------------------------- */
.lower.column .pageTtl {
  width: 100%;
  padding: 80px 32px;
  font-weight: bold;
  background: var(--clBGP);
}

.lower.column .pageTtl h1,
.lower.column .pageTtl h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1.4;
  font-size: 28px;
}

@media screen and (min-width: 1025px) {
  .lower.column .pageTtl h1,
  .lower.column .pageTtl h2 {
    font-size: 32px;
  }
}
/* -----------------------------------------
   パンくずリスト
   ----------------------------------------- */
.lower.column .breadcrumb-nav {
  padding: 8px 16px;
  overflow-x: auto;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--clBDW);
  border-bottom: 1px solid var(--clBDW);
  line-height: 1.2;
  font-size: 11px;
}

@media screen and (min-width: 640px) {
  .lower.column .breadcrumb-nav {
    font-size: 13px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .breadcrumb-nav {
    font-size: 14px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.lower.column .breadcrumb-nav .breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.lower.column .breadcrumb-nav .breadcrumb-item + .breadcrumb-item {
  margin-left: 0.5em;
}

.lower.column .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  margin-right: 0.5em;
  content: "›";
  color: var(--clP);
}

.lower.column .breadcrumb-nav .breadcrumb-item a {
  color: var(--clP);
  text-decoration: underline;
  font-weight: 400;
}

.lower.column .breadcrumb-nav .breadcrumb-item[aria-current=page] {
  color: var(--clText);
}

/* -----------------------------------------
   共通 : heading01
   ----------------------------------------- */
.lower.column .heading01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 32px;
}

@media screen and (min-width: 1025px) {
  .lower.column .heading01 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
.lower.column .heading01::before {
  display: block;
  font-family: var(--fontAccent, "Noto Serif JP", serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--clP);
  white-space: pre-line;
  margin-bottom: 8px;
}

/* -----------------------------------------
   共通 : info（カテゴリバッジ＋日付）
   ----------------------------------------- */
.lower.column .section-latest-list .info,
.lower.column .section-pickup-list .info,
.lower.column .section-column-category-list .info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lower.column .section-latest-list .info .cat,
.lower.column .section-pickup-list .info .cat,
.lower.column .section-column-category-list .info .cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--clP);
  border: 1px solid var(--clP);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list .info .cat,
  .lower.column .section-pickup-list .info .cat,
  .lower.column .section-column-category-list .info .cat {
    font-size: 11px;
  }
}
.lower.column .section-latest-list .info .date,
.lower.column .section-pickup-list .info .date,
.lower.column .section-column-category-list .info .date {
  display: inline-flex;
  align-items: center;
  color: var(--clTextW);
  font-size: 11px;
  line-height: 1.2;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list .info .date,
  .lower.column .section-pickup-list .info .date,
  .lower.column .section-column-category-list .info .date {
    font-size: 12px;
  }
}
.lower.column .section-latest-list .info .date span,
.lower.column .section-pickup-list .info .date span,
.lower.column .section-column-category-list .info .date span {
  color: var(--clTextW);
  font-weight: bold;
  font-size: inherit;
}

/* archive の info は margin-bottom なし */
.lower.column.column-archive .section-pickup-list .info,
.lower.column.column-archive .section-column-category-list .info {
  margin-bottom: 0;
}

/* -----------------------------------------
   ピックアップ記事セクション
   ----------------------------------------- */
.lower.column .section-pickup-list {
  margin-top: 0;
}

.lower.column .section-pickup-list .heading01::before {
  content: "PICK UP";
}

.lower.column .section-pickup-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 32px 28px;
}

@media screen and (min-width: 640px) {
  .lower.column .section-pickup-list ul {
    gap: 36px 32px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .section-pickup-list ul {
    gap: 40px 32px;
  }
}
.lower.column .section-pickup-list ul li {
  flex: 1 1 100%;
}

@media screen and (min-width: 640px) {
  .lower.column .section-pickup-list ul li {
    flex: 0 1 calc((100% - 64px) / 3);
  }
}
.lower.column .section-pickup-list ul li article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lower.column .section-pickup-list ul li article a {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-pickup-list ul li article a {
    gap: 16px;
  }
}
.lower.column .section-pickup-list ul li article a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.lower.column .section-pickup-list ul li article a .img {
  width: 100%;
}

.lower.column .section-pickup-list ul li article a .img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.lower.column .section-pickup-list ul li article a .txt {
  flex: 1;
}

.lower.column .section-pickup-list ul li article a .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-pickup-list ul li article a .txt h3 {
    font-size: 16px;
  }
}
/* -----------------------------------------
   カテゴリ別セクション
   ----------------------------------------- */
.lower.column .section-column-category-list .column-category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-column-category-list .column-category-header {
    margin-bottom: 32px;
  }
}
.lower.column .section-column-category-list .column-category-header .heading01 {
  width: 100%;
  margin-bottom: 0;
  align-items: center;
  text-align: center;
}

.lower.column .section-column-category-list .column-category-header .heading01::before {
  content: attr(data-label);
}

.lower.column .section-column-category-list .column-category-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-column-category-list .column-category-more {
    margin-top: 32px;
  }
}
.lower.column .section-column-category-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 32px 28px;
}

@media screen and (min-width: 640px) {
  .lower.column .section-column-category-list ul {
    gap: 36px 32px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .section-column-category-list ul {
    gap: 40px 32px;
  }
}
.lower.column .section-column-category-list ul li {
  flex: 1 1 100%;
}

@media screen and (min-width: 640px) {
  .lower.column .section-column-category-list ul li {
    flex: 0 1 calc((100% - 64px) / 3);
  }
}
.lower.column .section-column-category-list ul li a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-column-category-list ul li a {
    gap: 16px;
  }
}
.lower.column .section-column-category-list ul li a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.lower.column .section-column-category-list ul li .img {
  width: 100%;
}

.lower.column .section-column-category-list ul li .img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.lower.column .section-column-category-list ul li .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-column-category-list ul li .txt h3 {
    font-size: 16px;
  }
}
/* 「もっと見る」ボタン */
.lower.column .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border: 1px solid var(--clP);
  border-radius: 50px;
  color: var(--clP);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 1025px) {
  .lower.column .btn-more {
    font-size: 14px;
  }
}
.lower.column .btn-more::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--clP);
  border-right: 2px solid var(--clP);
  transform: rotate(45deg);
  transition: 0.2s;
}

.lower.column .btn-more:hover {
  background-color: var(--clP);
  color: #fff;
}

.lower.column .btn-more:hover::after {
  border-color: #fff;
}

/* archive のセクション間余白 */
.lower.column.column-archive section {
  margin-bottom: 0;
  margin-top: 32px;
}

@media screen and (min-width: 640px) {
  .lower.column.column-archive section {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column.column-archive section {
    margin-top: 72px;
  }
}
.lower.column.column-archive section .sectionInner {
  padding: 0 16px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .lower.column.column-archive section .sectionInner {
    padding: 0 32px 60px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column.column-archive section .sectionInner {
    padding: 0 40px 72px;
  }
}
.lower.column.column-archive section:not(:last-child) .sectionInner {
  border-bottom: 1px solid var(--clBD);
}

/* -----------------------------------------
   カテゴリ別一覧（taxonomy）: カード型グリッド
   ----------------------------------------- */
.lower.column .section-latest-list.section-column-cat-list {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 16px;
}

@media screen and (min-width: 640px) {
  .lower.column .section-latest-list.section-column-cat-list {
    margin-top: 48px;
    padding: 0 32px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list.section-column-cat-list {
    margin-top: 56px;
    padding: 0 40px;
  }
}
.lower.column .section-latest-list.section-column-cat-list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 640px) {
  .lower.column .section-latest-list.section-column-cat-list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list.section-column-cat-list ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
}
.lower.column .section-latest-list.section-column-cat-list ul li a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list.section-column-cat-list ul li a {
    gap: 16px;
  }
}
.lower.column .section-latest-list.section-column-cat-list ul li a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.lower.column .section-latest-list.section-column-cat-list ul li .img {
  width: 100%;
}

.lower.column .section-latest-list.section-column-cat-list ul li .img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.lower.column .section-latest-list.section-column-cat-list ul li .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list.section-column-cat-list ul li .txt h3 {
    font-size: 16px;
  }
}
.lower.column .section-latest-list.section-column-cat-list ul li .txt .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--clTextW);
  font-size: 13px;
  line-height: 1.6;
}

@media screen and (min-width: 1025px) {
  .lower.column .section-latest-list.section-column-cat-list ul li .txt .description {
    font-size: 14px;
  }
}
/* archive-description（タームの説明文） */
.lower.column .archive-description {
  text-align: center;
  padding: 0 16px;
  margin-top: 32px;
  font-size: 15px;
}

@media screen and (min-width: 640px) {
  .lower.column .archive-description {
    padding: 0 32px;
    margin-top: 40px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .archive-description {
    padding: 0 40px;
    margin-top: 48px;
    font-size: 18px;
  }
}
.lower.column .archive-description p {
  margin-bottom: 0;
  color: var(--clP);
}

/* -----------------------------------------
   2カラムレイアウト
   ----------------------------------------- */
.lower.column .layout-2col {
  display: flex;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  gap: 80px;
  padding: 24px 16px 80px;
}

@media screen and (min-width: 640px) {
  .lower.column .layout-2col {
    padding: 48px 32px 80px;
  }
}
@media screen and (min-width: 1025px) {
  .lower.column .layout-2col {
    padding: 56px 40px 80px;
  }
}
@media screen and (max-width: 1024px) {
  .lower.column .layout-2col {
    flex-direction: column;
    gap: 48px;
  }
}
.lower.column .layout-2col .content {
  flex: 9 1 0%;
  min-width: 0;
}

.lower.column .layout-2col .sidebar {
  flex: 4 1 0%;
  min-width: 0;
}

/* -----------------------------------------
   記事ページ（single-column）
   ----------------------------------------- */
.lower.column .page-article h1.post-title {
  margin-bottom: 0.8em;
  color: var(--clP);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.3;
  font-size: 24px;
}

@media screen and (min-width: 1025px) {
  .lower.column .page-article h1.post-title {
    font-size: 28px;
  }
}
/* 記事メタ情報 */
.lower.column .page-article .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  margin-top: 14px;
}

@media screen and (min-width: 1025px) {
  .lower.column .page-article .info {
    margin-bottom: 40px;
    margin-top: 16px;
  }
}
.lower.column .page-article .info .cat {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 50px;
  color: var(--clP);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid var(--clP);
  line-height: 1;
  transition: 0.2s;
}

@media screen and (min-width: 1025px) {
  .lower.column .page-article .info .cat {
    font-size: 11px;
  }
}
.lower.column .page-article .info .cat:hover {
  color: #fff;
  background-color: var(--clP);
}

.lower.column .page-article .info .date {
  display: inline-flex;
  align-items: center;
  color: var(--clTextW);
  font-size: 12px;
  line-height: 1.2;
}

.lower.column .page-article .info .date span {
  color: var(--clTextW);
  font-weight: bold;
  font-size: inherit;
}

/* 執筆者 */
.lower.column .page-article .info .info-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--clText);
}

.lower.column .page-article .info .info-author .author-img,
.lower.column .page-article .info .info-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lower.column .page-article .info .info-author .author-name {
  font-size: 12px;
  font-weight: 600;
}

@media screen and (min-width: 1025px) {
  .lower.column .page-article .info .info-author .author-name {
    font-size: 13px;
  }
}
/* アイキャッチ画像 */
.lower.column .page-article .img-eyecatch {
  margin-bottom: 40px;
}

.lower.column .page-article .img-eyecatch img {
  width: 100%;
  border-radius: 8px;
}

/* -----------------------------------------
   ページネーション（カテゴリ一覧）
   ----------------------------------------- */
.lower.column .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 48px;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1025px) {
  .lower.column .nav-links {
    margin-top: 64px;
  }
}
.lower.column .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--clP);
  text-decoration: none;
  font-weight: 600;
  background: var(--clBGG);
  transition: background 0.2s;
  font-size: 13px;
}

@media screen and (min-width: 1025px) {
  .lower.column .nav-links .page-numbers {
    font-size: 14px;
  }
}
.lower.column .nav-links .page-numbers:hover {
  background: rgba(45, 95, 128, 0.1);
}

.lower.column .nav-links .page-numbers.current {
  color: #fff;
  background: var(--clP);
}

.lower.column .nav-links .page-numbers.dots {
  background: transparent;
  pointer-events: none;
}

/* -----------------------------------------
   サイドバー : 新着記事
   ----------------------------------------- */
.lower.column .popular {
  margin-bottom: 56px;
}

@media screen and (min-width: 1025px) {
  .lower.column .popular {
    margin-bottom: 64px;
  }
}
.lower.column .popular .popular-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

@media screen and (min-width: 1025px) {
  .lower.column .popular .popular-ttl {
    margin-bottom: 32px;
  }
}
.lower.column .popular .popular-ttl::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--clP);
  margin-right: 10px;
  border-radius: 2px;
}

.lower.column .popular .popular-ttl span {
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
}

@media screen and (min-width: 1025px) {
  .lower.column .popular .popular-ttl span {
    font-size: 16px;
  }
}
.lower.column .popular .popular-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lower.column .popular .popular-list .popular-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.lower.column .popular .popular-list .popular-item .popular-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  gap: 10px;
  color: inherit;
}

.lower.column .popular .popular-list .popular-item .popular-link:hover {
  opacity: 0.8;
}

.lower.column .popular .popular-list .popular-item .popular-link .popular-thumb {
  flex: 0 0 96px;
}

.lower.column .popular .popular-list .popular-item .popular-link .popular-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.lower.column .popular .popular-list .popular-item .popular-link .popular-content {
  flex: 1;
}

.lower.column .popular .popular-list .popular-item .popular-link .popular-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

@media screen and (min-width: 1025px) {
  .lower.column .popular .popular-list .popular-item .popular-link .popular-content p {
    font-size: 13px;
  }
}
/* -----------------------------------------
   サイドバー : 記事カテゴリー
   ----------------------------------------- */
.lower.column .category .category-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

@media screen and (min-width: 1025px) {
  .lower.column .category .category-ttl {
    margin-bottom: 32px;
  }
}
.lower.column .category .category-ttl::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--clP);
  margin-right: 10px;
  border-radius: 2px;
}

.lower.column .category .category-ttl span {
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
}

@media screen and (min-width: 1025px) {
  .lower.column .category .category-ttl span {
    font-size: 16px;
  }
}
.lower.column .category .category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lower.column .category .category-list .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 500px;
  font-weight: 600;
  border: 1px solid var(--clP);
  line-height: 1;
  font-size: 11px;
}

@media screen and (min-width: 1025px) {
  .lower.column .category .category-list .category-item {
    font-size: 12px;
  }
}
.lower.column .category .category-list .category-item:not(:last-child) {
  margin-bottom: 8px;
}

.lower.column .category .category-list .category-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  padding: 13px 24px;
  text-decoration: none;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 1025px) {
  .lower.column .category .category-list .category-item a {
    padding: 15px 28px;
  }
}
.lower.column .category .category-list .category-item a:hover {
  text-decoration: none;
  background-color: var(--clP);
  opacity: 1;
}

.lower.column .category .category-list .category-item a:hover .name {
  color: #fff;
}

.lower.column .category .category-list .category-item a:hover .quantity {
  color: var(--clP);
  background-color: #fff;
}

.lower.column .category .category-list .category-item .name {
  display: inline-flex;
  align-items: center;
  color: var(--clP);
  font-weight: 600;
}

.lower.column .category .category-list .category-item .quantity {
  display: inline-block;
  min-width: 2.5em;
  padding: 4px 8px;
  border-radius: 500px;
  color: var(--clP);
  text-align: center;
  font-weight: 600;
  background: var(--clBGP);
  line-height: 1;
}

/* -----------------------------------------
   no-image フォールバック
   ----------------------------------------- */
.lower.column .column-card__noimg {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--clBGG);
  border-radius: 8px;
}

.lower.column .column-card__noimg-sm {
  width: 96px;
  height: 96px;
  background: var(--clBGG);
  border-radius: 4px;
}

/* -----------------------------------------
   空状態
   ----------------------------------------- */
.lower.column .column-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--clTextW);
}

/* -----------------------------------------
   執筆者ブロック（ACF カスタムブロック）
   ----------------------------------------- */
.page-article .author {
  position: relative;
  border-radius: 8px;
  border: 1px solid #d4d4d9;
  padding: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 639px) {
  .page-article .author {
    padding: 20px;
  }
}
.page-article .author .author-label {
  position: absolute;
  top: 0;
  left: 1.5rem;
  padding: 3px 22px;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  background: var(--clP);
  line-height: 1.3;
  transform: translateY(-50%);
  font-size: 11px;
}

@media screen and (min-width: 1025px) {
  .page-article .author .author-label {
    font-size: 12px;
  }
}
.page-article .author .author-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

@media screen and (max-width: 639px) {
  .page-article .author .author-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
.page-article .author .author-inner .author-avatar {
  flex: 0 0 auto;
  margin: 0;
}

.page-article .author .author-inner .author-avatar img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--clBGG);
  -o-object-fit: cover;
     object-fit: cover;
}

.page-article .author .author-inner .author-info {
  flex: 1;
  line-height: 1.5;
}

.page-article .author .author-inner .author-info .author-role {
  font-weight: 700;
  font-size: 11px;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .page-article .author .author-inner .author-info .author-role {
    font-size: 12px;
  }
}
.page-article .author .author-inner .author-info .author-name {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .page-article .author .author-inner .author-info .author-name {
    font-size: 15px;
  }
}
.page-article .author .author-inner .author-info .author-bio {
  margin-top: 8px;
  color: var(--clTextW);
  font-size: 13px;
  line-height: 1.5;
}

@media screen and (max-width: 639px) {
  .page-article .author .author-inner .author-info .author-bio {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .page-article .author .author-inner .author-info .author-bio {
    font-size: 14px;
  }
}
.page-article .author .author-inner .author-info .author-bio p {
  margin-top: 1em;
}

/* -----------------------------------------
   コンテンツ下余白
   ----------------------------------------- */
.lower.column .contents {
  padding-bottom: 36px;
}

@media screen and (min-width: 1025px) {
  .lower.column .contents {
    padding-bottom: 64px;
  }
}
/* -----------------------------------------
   サイドバー 目次（Easy Table of Contents）
   ----------------------------------------- */
.sidebar__toc {
  position: sticky;
  top: 24px;
  max-height: 100vh;
  overflow-y: auto;
  margin-top: 56px;
}

.sidebar__toc #ez-toc-container {
  padding: 20px 24px;
  border: none;
  border-radius: 8px;
  background-color: var(--clBGP);
  box-shadow: none;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .sidebar__toc #ez-toc-container {
    padding: 24px 28px;
  }
}
.sidebar__toc #ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sidebar__toc #ez-toc-container .ez-toc-title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1025px) {
  .sidebar__toc #ez-toc-container .ez-toc-title {
    font-size: 15px;
  }
}
.sidebar__toc #ez-toc-container .ez-toc-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  margin-right: 10px;
  border-radius: 2px;
  background-color: var(--clP);
}

.sidebar__toc #ez-toc-container .ez-toc-title-toggle {
  cursor: pointer;
}

.sidebar__toc #ez-toc-container nav .ez-toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.sidebar__toc #ez-toc-container nav .ez-toc-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
  line-height: 1.5;
  gap: 0.4em;
}

.sidebar__toc #ez-toc-container nav .ez-toc-list li::marker {
  content: none;
}

.sidebar__toc #ez-toc-container nav .ez-toc-list li::before {
  content: none;
}

.sidebar__toc #ez-toc-container nav .ez-toc-list .ez-toc-link {
  width: 100%;
  color: var(--clP);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (min-width: 1025px) {
  .sidebar__toc #ez-toc-container nav .ez-toc-list .ez-toc-link {
    font-size: 13px;
  }
}
.sidebar__toc #ez-toc-container nav .ez-toc-list .ez-toc-link:hover {
  opacity: 0.7;
}/*# sourceMappingURL=column.css.map */