/*****************************
  case archive select
*****************************/
.select_case{
text-align: center;
margin-bottom: 50px;
}

.select-wrap {
 position: relative;
}
.select-wrap::before,
.select-wrap::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.select-wrap::before {
  display: inline-block;
  right: 0;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #070707;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
.select-wrap select {
  width: 100%;
  max-width: 300px;
  appearance: none;
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: none;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 1em;
  cursor: pointer;
}
.select-wrap select:focus {
  outline: 2px solid #070707;
}

/*****************************
  archive 
*****************************/
.top_flex_3col{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    word-break : break-all;
}
.top_flex_3col li{
width: 100%;
margin-bottom: 20px;
}

.case_list_item{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
background: #eee;
transition: 1s;
    box-sizing: border-box;
    word-break : break-all;
}
.case_list_item:hover{
/* background: #faf3dd; */
background: #e0e0e0;
transition: 1s;
}

.thumb__img img{
  width: 150px;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 1 /1;
}

.case_list_item .thumb__img{
    width: 150px;
    padding: 10px;
    box-sizing: border-box;
    word-break : break-all;
}

.case_list_item .thumb__img a img{
transition: 0.5s;
}
.case_list_item .thumb__img a:hover img{
transition: 0.5s;
opacity: 0.5;
}

.case_list_item .case_block{
width: calc(100% - 150px);
padding: 10px;
box-sizing: border-box;
word-break : break-all;
}

.thumb__time{
    font-size: 14px;
    color: #333;
}
.case_block .cat{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
}
.case_block .cat a{
color: #d70d18;
font-weight: bold;
transition: 0.5s;
}
.case_block .cat a:hover{
color: #d7500d;
transition: 0.5s;
}

.case_block a{
color: #181818;
transition: 0.5s;
}
.case_block a:hover{
color: #d70d18;
transition: 0.5s;
}
.thumb__title{
    margin-top: 10px;
    margin-bottom: 10px;
}