{# 詳細ページ #}
.newsPublishDate{
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}
.newsHead1 {
  color: #000;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  position: relative;
  padding-left: 1.7rem;
}
.newsHead1::before {
  content: "";
  position: absolute;
  background: var(--blue, #0F3FA7);
  width: 8px;
  height: 100%;
  left: 0;
}
.newsTags{
  display: flex;
  flex-wrap: wrap; 
  gap: 1rem;
  margin-top: 3.6rem;
}
.newsTag{
  padding: 5px 10px;
  border-radius: 64px;
  border: 1px solid var(--blue, #3C70DE);
  background: var(--white, #FFF);
  color: var(--blue, #0F3FA7);
  text-align: center;
  font-size: 1.6rem;
}
.newsSubTitle{
  color: #000;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 3.2rem;
}
.newsKeyImg{
  width: 100%;
  max-width: 1024px;
  margin: 4rem auto;
}
.newsKeyImg img{
  width: 100%;
}
.newsBackIndex{
  border-radius: 100px;
  border: 2px solid var(--blue, #2765E7);
  background: var(--white, #FFF);
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.newsBackIndex a{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 1.2rem 4rem;
  color: var(--blue, #3C70DE);
  margin-right: 1rem;
}



{# news検索結果 #}
.caseResults {
  display: grid;
  grid-template-columns: repeat(3,1fr);
 gap: 60px 20px;
  border-top: solid 1px #f5f5f5;
  border-bottom: solid 1px #f5f5f5;
  padding: 4rem 0;
}
.caseResult__title{
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}
.caseResult_PublishDate{
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}
.caseResult__products--title{
  color: #000;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
}
.caseResult__tags{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.caseResult__tag{
  padding: 0 0.5rem;
}
.caseResult__tag:last-child{
  border-right: 0;
}
.caseResult__tag a{
  font-size: 1.6rem;
  padding: 0!important;
  line-height: 160%;
}
.caseResult__img{
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.caseResult__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseResult__img__logo{
  display: flex;
    flex-direction: row-reverse;
}
.caseResult__img__logo img{
  width: 9rem;
}


.caseResult {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caseResult__content{
  padding: 0.6rem 0;
}
.caseResult__content a {
  padding: 0.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.caseResult__company{
  color: var(--black, #333);
  margin-bottom: 3rem;
}
.caseResult__title{
  color: var(--black, #333);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}
.caseResult__discription{
  color: var(--black, #333);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  
}

@media (max-width: 768px) {
  .caseResults {
  grid-template-columns: repeat(2,1fr);
  
}
}


@media (max-width: 500px) {
  .caseResults {
  grid-template-columns: repeat(1,1fr);
    gap: 30px 20px;
  padding: 2rem 0;
}
  
  
  .caseResult__title {
    font-size: 1.4rem;
  }
  
  .caseResult__discription {
    font-size: 1.4rem;
  }
  
  .caseResult__tag a {
    font-size: 1.4rem;
}
}


{# no imageのオーバーライド #}

.no-image{
  position: relative;
}

{# result message #}
.search_result_msg{
  margin: 4rem; 
  color: #000;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
}


