html {
  font-size: 10px;
}

#blog-body {
  background: #F6F4F2;
}

#blog.--new {
  width: 100%;
}

/* ===== メインタイトル ===== */
#blog.--new .main-title {
  background: url("../images/new/main-title_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 328px;
}
@media (max-width: 768px) {
  #blog.--new .main-title {
    height: auto;
    padding-block: 10%;
  }
}

#blog.--new .main-title__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#blog.--new .main-title .en {
  display: block;
  color: #5C5C5C;
  font-family: Abel;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  #blog.--new .main-title .en {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  #blog.--new .main-title .en {
    font-size: 2.4rem;
  }
}

#blog.--new .main-title .jp {
  color: #8A7B7F;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

#blog.--new .main-title .jp::before {
  content: "";
  display: block;
  border-radius: 1px;
  background: #E85471;
  width: 4px;
  height: 4px;
}

/* ===== パンくず ===== */
#blog.--new #panlistid {
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 48px;
}

#blog.--new #panlistid ul {
  color: #A19182;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
}

/* ===== カテゴリフィルター ===== */
#blog.--new .cate-list {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  #blog.--new .cate-list {
    margin-bottom: 8%;
  }
}

#blog.--new .cate-list .cate-ttl {
  color: #5C5C5C;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  border-bottom: 1px solid #D3C8BE;
  margin-bottom: 24px;
}

#blog.--new .cate-list__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#blog.--new .cate-list__wrap a {
  background: transparent !important;
  border: 1px solid #D4CBCD;
  color: #5C5C5C !important;
  border-radius: 9999px;
  padding: 8px 16px;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  transition: opacity 0.3s;
}

#blog.--new .cate-list__wrap a:hover {
  opacity: 0.7;
}

#blog.--new .cate-list__wrap a.is-active {
  background: #463A3D !important;
  border-color: #463A3D;
  color: #FFF !important;
  opacity: 1;
}

/* ===== カードグリッド ===== */
#blog.--new .system-list {
  all: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 56px 24px;
}

#blog.--new .system-list__item {
  width: 304px;
  margin: 0;
  padding: 0;
  background: none;
  list-style: none;
  min-height: auto;
  box-shadow: none;
}
@media (max-width: 1024px) {
  #blog.--new .system-list__item {
    width: 48%;
  }
}
@media (max-width: 767px) {
  #blog.--new .system-list__item {
    width: 100%;
  }
}

#blog.--new .system-list__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

#blog.--new .system-list__item a:hover {
  opacity: 0.8;
}

/* サムネイル */
#blog.--new .system-list .system-pic.fit {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}

#blog.--new .system-list .system-pic.fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストボックス */
#blog.--new .system-list .text-box {
  padding: 0;
}

/* カードタイトル */
#blog.--new .system-list .system-ttl-01 {
  display: block;
  margin-bottom: 8px;
  color: #463A3D;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  #blog.--new .system-list .system-ttl-01 {
    font-size: 1.4rem;
  }
}

/* カード日付 */
#blog.--new .system-list .system-day {
  color: #A19182;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* ===== ページネーション ===== */
#blog.--new .page-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-block: 80px 120px;
}
@media (max-width: 767px) {
  #blog.--new .page-list {
    margin-block: 8% 12%;
  }
}

#blog.--new .page-list .page-numbers {
  font-family: Abel;
  font-size: 1.6rem;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0.4;
  background: none !important;
  border: none !important;
  text-decoration: none;
  padding: 0;
  min-width: 24px;
  line-height: 1;
  transition: opacity 0.3s;
}

#blog.--new .page-list .page-numbers:hover {
  opacity: 0.7;
}

#blog.--new .page-list .current.page-numbers {
  opacity: 1;
  font-size: 2rem;
}

#blog.--new .page-list .prev.page-numbers {
  font-size: 0;
  min-width: auto;
  opacity: 0.6;
}
#blog.--new .page-list .prev.page-numbers::before {
  content: "←";
  font-size: 1.6rem;
  font-family: Abel;
}

#blog.--new .page-list .next.page-numbers {
  font-size: 0;
  min-width: auto;
  opacity: 0.6;
}
#blog.--new .page-list .next.page-numbers::after {
  content: "→";
  font-size: 1.6rem;
  font-family: Abel;
}

/* ===== サイドバー（下部配置）===== */
.blog-sidebar {
  margin-block: 0 120px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .blog-sidebar {
    margin-block: 0 12%;
    padding-top: 8%;
  }
}

.blog-sidebar__col {
  display: flex;
  gap: 56px;
}
@media (max-width: 1024px) {
  .blog-sidebar__col {
    flex-direction: column;
    gap: 40px;
  }
}

.blog-sidebar__recent,
.blog-sidebar__archive {
  flex: 1;
}

.blog-sidebar__ttl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.blog-sidebar__ttl .en {
  font-family: Abel;
  font-size: 1.6rem;
  font-weight: 400;
  color: #A19182;
  line-height: 1;
  text-transform: uppercase;
}

.blog-sidebar__ttl .jp {
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-weight: 700;
  color: #5C5C5C;
  line-height: 1;
  letter-spacing: 0.04em;
}

.blog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar__list li {
  border-bottom: 1px solid #EDE8E5;
}

.blog-sidebar__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.blog-sidebar__list li a:hover { opacity: 0.7; }

.blog-sidebar__list .side-day {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 1;
}

.blog-sidebar__list .side-ttl {
  flex: 1;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  color: #463A3D;
  line-height: 1.5;
  min-width: 0;
}

.blog-sidebar__list .side-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #EAE5E0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-sidebar__list .side-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #5C5C5C;
  border-top: 1.5px solid #5C5C5C;
  transform: rotate(45deg) translateX(-1px);
}
