/* ニュースリスト・詳細ページ */

/* パンくずリスト */
.breadcrumb {
    padding: 10px 0;
    margin-top: 30px;
}
.breadcrumb .inner {
    display: flex;
    align-items: center;
        font-size: 14px;
}
.breadcrumb a {
    color: #F87A11;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: #F87A11;
    text-decoration: underline;
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #333;
}
.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.uij-logo-under-top a {
    max-width: 230px;
    display: block;
    width: 30%;
}
.uij-logo-under-top a h1{
  margin: 0;
}
.news-list{
    margin-bottom: 100px;
}
.news-list-info {
    width: 90px;
}
.news-list-title{
    width: calc(100% - 40px - 90px);
}
h2.other-main-title {
    margin-top: 80px;
}
@media screen and (max-width: 750px) {
    
    .uij-logo-under-top a {
        max-width: 230px;
        width: 40%;
    }
    .news-list-info {
        width: 100%;
    }
    .news-list-title{
        width: 100%;
    }

    h2.other-main-title {
        margin-top: 40px;
    }
    
    /* モバイル用パンくずリスト */
    .breadcrumb {
        padding: 8px 0;
        margin-top: 15px;
    }
    .breadcrumb .inner {
        font-size: 13px;
    }
    .breadcrumb-separator {
        margin: 0 6px;
    }
}

/* ニュース詳細 */
.news-detail {
    margin-bottom: 100px;
    margin-top: 40px;
}
.news-detail .news-detail-info{
    margin-bottom: 20px;
}
span.news-detail-date {
    font-size: 1.8rem;
    font-size: clamp(1.3rem, 1.41vw, 1.8rem);
    font-weight: bold;
    color: #F87A11;
}
.news-detail-title {
    font-size: 2.2rem;
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    font-weight: normal;
    margin: 0 0 40px;
    line-height: 1.8;
}
.news-detail-content p {
    font-size: 1.6rem;
    font-size: clamp(1.2rem, 1.25vw, 1.6rem);
    margin: 0 0 30px;
    line-height: 1.8;
}
.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-back-btn {
    text-align: center;
    margin-top: 45px;
  }
  
    .btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #999999;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-size: clamp(1.2rem, 1.09vw, 1.4rem);
    font-weight: bold;
    padding: 12px 30px 12px 50px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    position: relative;

  }
  .btn-back::after {
    content: '';
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: 10px;
  }
  
  .btn-back::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #999999;
    border-right: 2px solid #999999;
    z-index: 2;
  }
  @media screen and (max-width: 750px) {
    span.news-detail-date{
        font-size: 1.8rem;
        font-size: clamp(1.3rem, 4.8vw, 1.8rem);
    }
    .news-detail-title {
        font-size: 1.8rem;
        line-height: 1.4;
        font-size: clamp(1.3rem, 4.8vw, 1.8rem);
    }
    .news-detail-content p {
        font-size: 1.4rem;
        font-size: clamp(1.2rem, 3.73vw, 1.6rem);
        margin-bottom: 15px;
    }
    .news-detail-content p:last-child {
        margin-bottom: 0;
    }

}