/*
アーカイブページ 上部の検索
*/

.c_series_box {
  padding: 2rem 1.5rem 0rem;
  text-align: center;
  margin: 1rem 0 4rem;
  border-radius: 10px;
}

.c_series_dl {
  display: flex;
  align-items: baseline;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #fff;
  font-weight: 600;
}
.c_series_dl:last-of-type {
  border-bottom: none;
}  

.c_dl_title {
  font-weight: 500;
  position: relative;
  padding: 0px 10px 0 25px;
  min-width: 30%;
  text-align: left;
  margin: 0;
}

.c_dl_title::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url('/wp-content/themes/techo-web/images/renewal/techo_series/search icon.webp') no-repeat;
  background-size: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}

/*
ラジオボタン
*/

.c_search {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.u_hidden_radio {
  display: none;
}

.c_search_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .9rem;
}

.c_search_text {
  display: inline-block;
  padding: 3px 15px;       
  background-color: #fff;  
  border: 1px solid #adadad;
  border-radius: 20px;    
  cursor: pointer;
  transition: all 0.3s; 
}

/* ホバーとチェック時の挙動を少し強化 */
.c_search_text:hover {
  background-color: #f0f8ff; 
  border-color: #007bff;
}

.u_hidden_radio:checked + .c_search_text {
  border-color: #00008b;
  background-color: #00008b;
  color: #fff;
}


/*
項目、冊子
*/

.c_series {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: anchor-center;
  max-width: 850px;
  gap: 10px;
  flex-direction: row;
  }

.c_series_title {
  font-weight: 600;
  font-size: 1.2rem;
  padding: .5rem 1rem;
}

.c_series_cont {
  width: 49%;
  border: 1px solid #adadad;
  border-radius: 10px;
  margin: 5px 0;
}

.c_series_info {
  padding: 0 1rem;
  display: flex;
  margin-bottom: 1rem;
}

.c_series_info img{
  width: auto;
  max-width: 100px; 
  max-height: 140px;
  object-fit: contain;
}

.c_info_right {
  margin: 0rem 0rem .5rem 1rem;
  width: 65%;
}

.c_Button_more {
  display: block;
  border-radius: 0 0 10px 10px;
  position: relative;
  text-align: center;
  border-top: 1px solid #adadad;
  background: #daecf0;
  padding: 10px;
  font-weight: 600;
}

.c_Button_more:after {
  content: "";
  width: 25px;
  height: 20px;
  background: url('/wp-content/themes/techo-web/images/renewal/top/arrow.webp') no-repeat 5px 0;
  background-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* 垂直中央揃え */
}

.c_Button_more a:hover {
  filter: brightness(1.10); 
  transition: all 0.3s;
}

/*
分類
*/
.c_series_info span{
  display: inline-block;
  border-radius: 5px;
  margin: 0 5px 5px 0;
}
.c_series_blue {
  background: #379fff;
  color: #fff;
  padding:2px 4px;
}

.c_series_darkblue{
  background: #00008b;
  color: #fff;
  padding:2px 4px;
}

.c_series_white{
  color: #00008b;
  border: 1px solid #00008b;
  font-size: .85rem;
  padding: 2px 4px;
}

@media (max-width: 768px) {
  .c_series_dl {
  display: block;
}
.c_series_box {
  padding: 1rem 1rem 0;
  margin-bottom: 0;
}
.c_dl_title{
  margin-bottom: 1rem;
}

.c_series {
  display: block;
}

.c_series_cont {
  width: auto;
  margin-bottom: 20px;
}
.c_series_info span {
  font-size: .9rem;
}


}