/* news.css */
section{
    /* background-color: #F6F6F6; */
}

.news-page{
    padding: 208px 100px 75px 100px;
    /* background: #F6F6F6; */
    max-width: 1440px;
    margin: auto;
}

.news-page__container{
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: var(--contents-max-width);
	margin: auto;
    /* padding-top: 100px; */
    color: #1A1A1A;
}

.news-page__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-page__header-title{
    font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 36px;
    line-height: 80px;
}

.news-page__header-category-date{
    display: flex;
    gap: 10px;
    align-items: center;
}

.news-page__header-category a{
    pointer-events: none;
    color: inherit;
}
.news-page__header-date{
    font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 22px;
    line-height: 46px;
    letter-spacing: 0.05em;
}

.news-page__image img{
    width: 100%;
}

.news-page__body{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-page__body p{
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.news-page__body h2{
    font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 24px;
    line-height: 43.2px;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 15px;
}

.news-page__body h2::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 44px;
    background-color: #0B49AD;
}

.news-page__body h3{
    font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 20px;
    line-height: 43.2px;
    letter-spacing: 0.05em;
}

.news-page__body a{
    color: #0B49AD;
    text-decoration-line: underline; 
}

.news-page__footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-page__footer a{
    color: inherit;
}

.news-page__go-to-list{
    font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    padding-left: 17px;
}

.news-page__go-to-list::before{
    content: "";
    background: url('../assets/img/back-arrow.png') no-repeat center center;
    background-size: contain;
    width: 7px; /* 画像の幅 */
    height: 13px; /* 画像の高さ */
    position: absolute;
    left: 0px; /* ボタンの右端からの位置 */
    top: 50%;
    transform: translateY(-50%);
}

.page__home-button {
    padding: 5px 40px;
}

.dummy{
    width: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .news-page{
        padding: 30px;
    }
    
  }
  
  @media (max-width: 767px) {
    .news-page{
        padding: 10px;
        padding-bottom: 50px;
    }
    .news-page__header-date {
        font-size: clamp(14px, 4vw, 20px);
        line-height: 2.0em;
        letter-spacing: 0.05em;
    }
    .news-page__container {
        display: flex;
        gap: 30px;
        padding-top: 100px;

    }

    .news-page__go-to-list {
        font-size: 12px;
    }
    .page__home-button {
        font-size: 10px;
        line-height: 2.285em;
        border-radius: 30px;
        padding: 5px 20px;
    }

    .dummy{
        width: 105px;
    }

    .news-page__header-title {
        font-size: 28px;
        line-height: 1.8;
    }
  }