.trend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
    align-content: start; /* グリッドを上揃えにする */
}

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




.trend-card {
    background-color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.trend-card__link {
    display: block;
    width: 100%;
    position: relative;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .trend-card__link {
      margin-right: 3%;
      width: 37%;
    }
  }
  @media (max-width: 600px) {
    .project-grid.type-feature .trend-card__link {
      width: 30%;
    }
  }

  .trend-card__link__btn-play{
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    margin: auto;
    width:60px;
  }
  .trend-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    /* border-radius: 6px; */
    display: block;
  }
  
  .trend-card img::before {
    content: "";
    display: block;
    padding-top: 66.67%; /* アスペクト比 3:2 */
  }
  .trend-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .project-card__title {
    flex-grow: 1;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .project-card__title {
      flex-grow:initial;
    }
  }
  .trend-card__title-link {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    flex-grow: 1;
    margin-bottom: 15px;
    line-height: 1.7;
  }

  .trend-card__stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
  }
  @media (max-width: 1120px) {
    .trend-card__stats {
      flex-wrap:wrap;
    }
  }  
  @media (max-width: 768px) {
    .trend-card__stats {
      display: none;
    }
  }

  .trend-card__location {
    margin-bottom: 10px;
  }

  .trend-card__location-text {
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .trend-card__location-text:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  /*  */

.trend-dl {
    display: flex;
    align-items: flex-start;
    padding-top: 3%;
    padding-bottom: 3%;
    border-bottom:1px dotted #ccc;
    transition: all 0.6s;
}
.trend-dl:hover {
    background-color: #f5f5f5;
}
.trend-dl dt {
    width: 20%;
    margin-right: 3%;
}
.trend-dl dd {
    width: 73%;
    flex-grow: 1; /* コンテンツ部分を伸縮可能に */
}
.trend-dl__image {
    width: 100%;
    object-fit: cover;
    border-radius:5px;
}
.trend-cards .trend-dl__image {
  border-radius:0;
}
.trend-dl__title{
    font-size: clamp(18px, 2vw, 22px);
    font-weight:bold;
    margin-bottom: 5px;
}
.trend-dl__content{
    font-size: clamp(14px, 2vw, 16px);
}
.trend-dl__link {
    width: 100%;
    display:flex;
    width:100%;
}
.trend-dl__location {
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px);
    
    margin-right: 10px;
    background-color: #f0f0f0;
    padding: 4px 1em;
    border-radius: 3px;
    display: inline-block;
    cursor: default;
    margin-bottom: 3%;
}


/* list形式 */
.news-dl {
  display: flex;
  align-items: flex-start;
  padding-top: 3%;
  padding-bottom: 3%;
  border-bottom:1px dotted #ccc;
  transition: all 0.6s;
}
.news-dl:hover {
  background-color: #f5f5f5;
}
.news-dl dt {
  width: 20%;
  margin-right: 3%;
}
.news-dl dd {
  width: 73%;
  flex-grow: 1; /* コンテンツ部分を伸縮可能に */
}
.news-dl__image {
  width: 100%;
  object-fit: cover;
  border-radius:5px;
}
.news-dl__title{
  font-size: clamp(18px, 2vw, 22px);
  font-weight:bold;
  margin-bottom: 5px;
  line-height: 1.6;
}
.news-dl__content{
  font-size: clamp(14px, 2vw, 16px);
}
.news-dl__link {
  width: 100%;
  display:flex;
  width:100%;
}
.news-dl__location {
  font-weight: bold;
  font-size: 12px;
  margin-right: 10px;
  background-color: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  cursor: default;
}

.interviewer-profile {
  margin: 24px 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #ddd;
  padding: 5% 5% 5% 5%;
  border-radius: 8px;
  background-color: #fafafa;
}




.interviewer-profile__image {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.interviewer-profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interviewer-profile__text {
    text-align: left;
    flex-grow: 1;
}

.interviewer-profile__name {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-bottom: 8px;
}

.interviewer-profile__detail {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
}

.interviewer-profile-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .interviewer-profile {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    
    .interviewer-profile__text {
        text-align: center;
    }
}

.featured-project-header__text ul {
    background: #fff;
    padding: 20px;
    margin: 30px 0 0 0;
    border-radius: 10px;
}

.trend-features {
    background: #fff;
    padding: 20px;
    margin: 30px 0 0 0;
    border-radius: 10px;
}

.pagination-container {
    text-align: center;
}

.pagination {
    justify-content: center;
}

.trend-filter {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trend-filter__inner {
    display: flex;
    gap: 20px;
}

.trend-filter__group {
    flex: 1;
}

.trend-filter__label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.trend-filter__input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.trend-filter__input:focus {
    outline: none;
    border-color: var(--colorLightBase);
}


.dn-project-title{
  color: #fff;
  font-weight: bold;
  background: var(--colorLightBase);
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 20px 20px;
  text-align: center;
  background: var(--colorGold);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

