/* ------------------------------
カラーコード
------------------------------ */
:root {
    --white: #FFFEFA;
    --beige: #D5CDBB;
    --brown: #4D4034;
}

/* ------------------------------
全体
------------------------------ */
.news{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 120px;
  padding: 40px;
}
@media (max-width: 768px){
    .news{
        padding: 20px;
    }
}

/* ------------------------------
ニュース一覧
------------------------------ */

.news-list ol{
    list-style: none;
    display: flex;
    flex-direction: column;
}
.news-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
      padding:24px 8px;
}
.news-data{
    display: flex;
    align-items: center;
    gap: 40px;
}
.news-data time{
    font-size: 1.8rem;
    width: 120px;
    position: relative;
    text-align: left;
}
.news-data time::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 0.5px;
    height: 12px;
    background-color: var(--brown);
}
.news-wrapper .news-title{
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
}

@media (max-width: 768px){
.news-data{
    gap: 24px;
}
.news-data time{
    font-size: 1.6rem;
    width: 90px;
}
.news-wrapper .news-title{
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}
}

/* ------------------------------
ニュース詳細
------------------------------ */
.news-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.news-heading .news-title{
    font-size: 2.4rem;
    letter-spacing: 0.15rem;
}
@media (max-width: 768px){
.news-heading .news-title{
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
}
}
