

/* ===== パンくず ===== */
.breadcrumb {
  padding: 15px 0;
  font-size: .875rem;
  line-height: 1;
  font-weight: normal;
}

/* ===== 全体レイアウト ===== */
.l_inner {
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 70px;
}
.l_flex {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.archive-contents {
  flex: 1;
}
.archive-sidebar {
  width: 270px;
  flex-shrink: 0;
}

/* ===== 記事グリッド ===== */
.blog-grid .grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .blog-grid .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .blog-grid .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===== 記事カード ===== */
.archive-item {
  background: #fff;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.archive-item a {
  display: block;
  color: inherit;
}

.archive-thumb {
  position: relative;
  width: 100%;
}
.archive-thumb img {
  width: 100%;
  display: block;
  height: auto;
}

/* カテゴリラベル */
.archive-labels{
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.archive-label {
  position: static;
  background: #fff;
  color: #382A25;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: normal;
  padding: 2px 7px 3px;
  text-transform: uppercase;
  border: 1px solid #382A25;
  display: inline-block;
  width: fit-content;
}

.archive-info {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.archive-date {
  font-size: 0.875rem;
  line-height: 1;
  color: #000000;
  margin-bottom: 6px;
}
.archive-title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: .25rem 0;
  flex-shrink: 0;
}
.archive-excerpt {
  font-size: 0.75rem;
  color: #999999;
  line-height: 1.37;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== ページネーション ===== */
.archive-pagination{
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 13px;
}
.nav-links .page-numbers{
  padding: 8px 12px;
  background: #EEE2CF;
  color: #382A25;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
}
.nav-links .page-numbers.current{
  background: #382A25;
  color: #fff;
}
.nav-links .next.page-numbers{
  background: #fff;
}

.widget_search .search-submit {
  background-color: #382A25;
}


/* カテゴリーリスト */
.cat-list{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.cat-item{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.cat-list li::before{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background-color: #FFFD90;
}
.cat-item a{
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: normal;
}
.widget_img{
  padding-bottom: 17px;
}
.widget_info_item{
  padding-bottom: 17px;
  border-bottom: 1px solid #382A25;
}
.widget_info_container address,
.widget_info_container .open_info{
  font-size: 14px;
  line-height: 1.7;
  font-style: normal;
}
/* 人気記事ランキング */
.widget_popular{
  padding-top: 50px;
  padding-bottom: 40px;
}
.widget_popular .popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.widget_popular .popular-list li {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #cccccc;
  width: 100%;
}
.widget_popular .popular-list img {
  width: 100%;
  max-width: 100px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  position: relative;
  z-index: 0;
}
.widget_popular .popular-list li a{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.widget_popular .popular-list .pop-title {
  font-size: 0.875rem;
  line-height: 1.37;
  letter-spacing: 0.04em;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.widget_info_btn{
  width: 100%;
  display: block;
  background: #382A25;
  text-align: center;
  margin: 26px auto 0;

}
.widget_info_btn a{
  color: #fff;
  display: block;
  width: 100%;
  max-width: 270px;
  padding: 7px 30px 12px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2;
  transition: opacity .3s ease-in-out;
}
.widget_info_btn a:hover{
  opacity: 0.8;
}
.search_text{
  display: block;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
  padding-bottom: 75px;
}

@media(max-width:1280px){
  .l_flex{
    gap: 50px;
  }
  .archive-sidebar{
    width: 180px;
  }
  .widget_search .search-field{
    padding: 10px 4px;
    width: 100%;
  }
  .widget_search .search-submit img{
    width: 15px;
    height: 15px;
  }
}
@media(max-width:1024px){
  .archive-sidebar {
    width: 100%;
  }
  .l_flex{
    flex-direction: column;
  }
  .widget-title{
    padding-bottom: 12px;
  }
  .widget_container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media(max-width:768px){
  .archive-thumb{
    max-width: 100%;
  }
  .archive-thumb img{
    max-height: 100%;
    aspect-ratio: 3 / 2;
  }
}
@media(max-width:600px){
  .archive-item a{
    flex-direction: column;
    gap: 12px;
  }
  .archive-date{
    margin-top: 7px;
    margin-bottom: 12px;
  }
  .archive-excerpt{
    padding-top: 10px;
  }
  .l_inner{
    padding-bottom: 35px;
    gap: 0;
  }
  .widget_container{
    flex-direction: column;
    align-items: center;
  }
}
