/**********************************************/
/**********INFO********************************/
/**********************************************/
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 0 auto 32px;
}

.tab-btn {
  width: 220px;
  text-align: center;
  padding: 12px 50px;
  background-color: #d0d0d0;
  color: #666;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
}

.tab-btn::after {
  content: '▼';
  margin-left: 10px;
  font-size: 0.6rem;
}

.tab-btn.active {
  background-color: var(--Blue);
  color: var(--White);
}

.tab-btn:hover {
  opacity: 0.8;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 共通 */
#info_section .list {
  background-color: var(--White);
}

#info_section .item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--Lightgray);
  text-decoration: none;
  color: inherit;
  transition: background-color .2s;
}

#info_section .item:hover {
  background:#f9f9f9;
  opacity: 1;
}

#info_section .item .title {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
  color: var(--Black);
  text-align: left;
}

#info_section .item:hover .title {
  color: var(--Blue);
}

#info_section .item time {
  font-size: 0.9rem;
  color: var(--Darkgray);
  white-space: nowrap;
}

#info_section .item .cat {
  display: inline-block;
  background-color: var(--LightBlue);
  color: var(--Blue);
  padding: 0 12px 2px;
  font-size: 0.8rem;
  border-radius: 2px;
  margin: 0;
  white-space: nowrap;
}

#info_section .item .meta {
  display:flex; align-items:center; gap:10px;
}

#news .list { 
  padding: 0;
}

#news .item {
  flex-direction: column;
}

#blog .item {
  padding: 8px 0;
}

#blog .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#blog .item .img {
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
}

#blog .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

#blog .item:hover .img img {
  transform: scale(1.05);
}

.pagination .page-numbers{
  display:flex;
  justify-content:center;
  gap:12px;
  list-style:none;
  padding:0;
  margin:40px 0 0;
}
.pagination .page-numbers li{ display:inline-flex; }
.pagination .page-numbers a,
.pagination .page-numbers span{
  display:inline-block;
  padding:6px 10px;
  font-size:.9rem;
  color:#999;
  text-decoration:none;
  border:1px solid #e5e5e5;
  border-radius:3px;
}

.pagination .page-numbers .current{
  color:var(--Blue);
  border-color:var(--Blue);
  font-weight:700;
}

.pagination .page-numbers a:hover{ 
  color:var(--Blue);
  opacity: 1;
}


@media screen and (max-width: 768px) {
  .tab-navigation {
    gap: 24px;
  }
  .tab-btn {
    width: 50%;
    padding: 12px;
  }
  #info_section .item {
    gap: 8px;
  }
  #info_section .item .title {
    font-size: 1rem;
  }
  #blog .item .img {
    width: 150px;
    height: 100px;
  }
  #blog .item .text {
    gap: 8px;
  }
}