@charset "UTF-8";
/* =======================================================
   Variables (カラー＆トーン・パーツ)
   ======================================================= */
:root {
  --color-bg: #fcfbf9;
  --color-text: #4a4a4a;
  --color-paper: #ffffff;
  --color-link: #6c88a4;
  --color-accent: #8b9d83;
  --color-border: #e8e6e1;
  --color-muted: #888888;
  --color-newbadge: #ff7800;
  --color-pickup: #f90000;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-badge: 8px;
  --framework-width: 800px;
  --framework-gutter: 1rem;
  --framework-row-gap: 1rem;
  --aspect-raito-x: 16;
  --aspect-raito-y: 9;
}

/* =======================================================
   Reset & Base
   ======================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}

html {
  overflow-y: auto !important;
}

body {
  overflow-y: visible !important;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
}

blockquote {
  border-left: 4px solid var(--color-accent);
  background-color: rgba(139, 157, 131, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  margin: 1.5rem 0;
  color: var(--color-text);
}

/* =======================================================
   Layout (Framework)
   ======================================================= */
.wrap-contents {
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.framework {
  display: grid;
  grid-template-columns: [full-start] minmax(var(--framework-gutter), 1fr) [normal-start] minmax(0, var(--framework-width)) [normal-end] minmax(var(--framework-gutter), 1fr) [full-end];
  row-gap: var(--framework-row-gap);
}
.framework > * {
  grid-column: normal;
}

.index.framework {
  --framework-width: 1200px;
}

.cropper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(var(--aspect-raito-y) / var(--aspect-raito-x) * 100%);
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.cropper img,
.cropper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cropper {
  /* トランジションを追加 */
}
.cropper img {
  transition: transform 0.3s ease;
}

/* =======================================================
   Components
   ======================================================= */
/* Area Title */
.area-title {
  padding: 1.5rem 0 1rem 0;
  background-color: transparent;
  text-align: center;
}
.area-title .text-heading {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.area-title .index__description {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.index__ad {
  margin: 0 auto;
}

/* Navigations (Categories & Tags) */
.category-nav,
.tag-nav {
  margin: 1rem 0;
  text-align: center;
  width: 100%;
}

.category-title,
.tag-title {
  font-weight: bold;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.category-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.category-item a,
.tag-item a {
  display: inline-block;
  background-color: var(--color-paper);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-badge);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.category-item a:hover,
.category-item.active a {
  background-color: var(--color-bg);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.tag-item a:hover,
.tag-item.active a {
  background-color: var(--color-bg);
  border-color: var(--color-link);
  color: var(--color-link);
}

.clear-btn a {
  background-color: var(--color-muted) !important;
  color: var(--color-paper) !important;
  border-color: var(--color-muted) !important;
}

/* Badges */
.badge-new {
  position: absolute;
  top: 0.5rem !important;
  left: 0.5rem !important;
  background-color: var(--color-newbadge);
  color: var(--color-paper);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-badge);
  z-index: 2;
  line-height: 1;
}

.badge-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem !important;
  margin-top: 0.5rem !important;
}

.clickable-badge {
  display: inline-block !important;
  padding: 0.2rem 0.6rem !important;
  background-color: rgba(139, 157, 131, 0.1) !important;
  color: var(--color-accent) !important;
  border-radius: var(--radius-badge) !important;
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
  transition: all 0.2s !important;
}

.clickable-badge.tag-badge {
  background-color: rgba(108, 136, 164, 0.1) !important;
  color: var(--color-link) !important;
}

/* Pick up Section */
.pickup-container {
  grid-column: 1/-1 !important;
  margin-bottom: 2rem;
  width: 100%;
  background: var(--color-paper);
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pickup-inner {
  max-width: var(--framework-width);
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  fill: var(--color-pickup) !important;
}
.section-label span {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: normal;
}

.pickup-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pickup-card {
  background: var(--color-paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.pickup-card:hover .cropper img {
  transform: scale(1.05);
}
.pickup-card__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pickup-card__title {
  font-weight: bold;
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.5;
}
.pickup-card__date {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.pickup-card--sub {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 1rem 0;
}
.pickup-card--sub:last-child {
  border-bottom: none;
}
.pickup-card--sub .cropper {
  width: 100%;
  border-radius: var(--radius-btn);
}
.pickup-card--sub .pickup-card__content {
  padding: 0;
  min-width: 0;
}
.pickup-card--sub .pickup-card__title {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Article List */
.index__contents .empty-message {
  text-align: center;
  grid-column: 1/-1;
  padding: 3.125rem 0;
  color: var(--color-muted);
}
.index__contents .list-archive {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.index__contents .link-archive {
  display: flex;
  flex-direction: column;
  background: var(--color-paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
}
.index__contents .link-archive__img img {
  transition: transform 0.3s ease;
}
.index__contents .link-archive:hover .link-archive__img img {
  transform: scale(1.05);
}
.index__contents .link-archive__text {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.index__contents .link-archive__text__title {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.index__contents .link-archive__text__date {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: auto;
}

/* Pagination */
.pagination-container {
  padding: 3rem 0;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-paper);
  color: var(--color-text);
  font-size: 0.95rem;
}
.pagination .current {
  background: var(--color-link);
  color: var(--color-paper);
  border-color: var(--color-link);
}

/* Footer */
.footer {
  width: 100%;
  padding: 2.5rem 1rem;
  background-color: var(--color-paper);
  border-top: 1px solid var(--color-border);
}
.footer__breadcrumbs {
  margin-bottom: 2rem;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* =======================================================
   Back to Top Button
   ======================================================= */
.back-to-top {
  position: fixed;
  bottom: 4.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-paper);
  color: var(--color-accent); /* セージグリーンを使用 */
  border: 2px solid var(--color-accent);
  border-radius: 50%; /* 優しい丸型 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* JSでクラスが付与されたらフワッと表示 */
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top {
  /* ホバー時は背景を塗りつぶして色を反転 */
}
.back-to-top:hover {
  background-color: var(--color-accent);
  color: var(--color-paper);
  opacity: 0.9;
}
.back-to-top {
  /* PC表示では少し大きく、余白も広めに */
}
@media screen and (min-width: 768px) {
  .back-to-top {
    bottom: 6.5rem;
    right: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .back-to-top svg {
    width: 28px;
    height: 28px;
  }
}

.list-directory {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-directory a {
  display: block;
  text-align: center;
  color: var(--color-link);
  font-size: 0.95rem;
}

.list-sns-btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.list-sns-btn a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.7;
}
.list-sns-btn a img {
  border-radius: 50%;
}
.list-sns-btn a:hover {
  opacity: 1;
}

.text-copyright {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* =======================================================
   Media Queries (PC向けレイアウト 768px以上)
   ======================================================= */
@media screen and (min-width: 768px) {
  .area-title {
    text-align: left;
  }
  .area-title .text-heading {
    font-size: 1.75rem;
  }
  /* ご指定の通り、左右 1fr:1fr の均等幅へ変更 */
  .pickup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  .pickup-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .pickup-card--main {
    height: 100%;
  }
  /* ご指定の通り、サムネイル画像を 200px へ拡大 */
  .pickup-card--sub {
    grid-template-columns: 200px minmax(0, 1fr);
    padding: 0 0 1rem 0;
  }
  .index__contents .list-archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer .list-directory {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .footer .list-directory li {
    display: flex;
    align-items: center;
  }
  .footer .list-directory li:not(:first-child)::before {
    content: ">";
    margin: 0 0.5rem;
    color: var(--color-muted);
  }
  .footer .list-directory a {
    display: inline-block; /* blockから変更して改行を防ぐ */
  }
}
.common_pc_nav,
.common_sp_nav {
  background-color: #ffffff;
}/*# sourceMappingURL=style_blog_list.css.map */