* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    padding: 260px 0 0;
    background-image: url('/resources/enatomo_salon/images/subpage/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    position: relative;

    font-family: 'BIZ UDMincho', serif;
}
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('/resources/enatomo_salon/images/subpage/fv.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 120.08px;
    height: 83.67px;
}
.logo img {
    width: 100%;
}
.body__container {
    width: 1326px;
    margin: 0 auto 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1440px) {
    .body__container {
        width: 92.08%;
    }
}

.articles__list-wrap {
    width: 100%;
    background-color: white;
    padding: 40px 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 801px) {
    .articles__list-wrap {
        padding: 40px 20px;
    }
}

.articles__list-wrap--related {
    gap: 20px;
}

h2.articles__list-title {
    font-size: 25px;
    font-weight: 500; 
    margin: 0;
    padding: 0;
    text-align: center;
}
.articles__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 53.333px;
    row-gap: 50px;
}

@media (max-width: 1440px) {
    .articles__list {
        gap: 4.49%;
        row-gap: 50px;
    }
}

@media (max-width: 801px) {
    .articles__list {
        gap: 30px;
        row-gap: 30px;
    }
}

.articles__list-item {
    width: 256.5px;
}

@media (max-width: 1440px) {
    .articles__list-item {
        width: 21.62%;
    }
}

@media (max-width: 801px) {
    .articles__list-item {
        width: calc((100% - 30px) / 2);
    }
}

.articles__list-item-image img {
    width: 100%;
}

.articles__list-item-date {
    margin-top: 8px;
    font-size: 12px;
      font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #545454;
}

.articles__list-item-title {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.articles__list-title-wrap {
    display: flex;
    justify-content: left;
    align-items: center;
    text-decoration: none;
    color: #333;
}
.articles__list-arrow-wrap {
    padding-left: 20px;
}
.articles__list-arrow {
    width: 30px;
}
.newslist__related {
    display: flex;
}

@media (max-width: 801px) {
    .newslist__related {
        flex-direction: column;
    }
}

.newslist__related .articles__list-wrap {
    width: 50%;
}

@media (max-width: 801px) {
    .newslist__related .articles__list-wrap {
        width: 100%;
    }
}

.newslist__related .articles__list-item {
    width: 221.5px;
}

@media (max-width: 1440px) {
    .newslist__related .articles__list-item {
        width: 42.35%;
    }
}

@media (max-width: 801px) {
    .newslist__related .articles__list-item {
        width: calc((100% - 30px) / 2);
    }
}

.articles__list-item-link {
    text-decoration: none;
    color: #333;
}

/* 詳細ページ */

.entry__container {
    background-color: white;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.entry__container h1 {
    text-align: center;
    font-weight: 400;
}

.entry__wrap {
    width: 56.8%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1440px) {
    .entry__wrap {
        width: 753.16px;
    }
}

@media (max-width: 900px) {
    .entry__wrap {
        width: 83.68%;
    }
}

.entry__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entry__date {
    font-family: 'Noto Sans JP', sans-serif;
}

.entry__image {
  text-align: center;
}

.entry__image img {
  width: 100%;
}

.entry__body {
    width: 100%;
    border-bottom: 2px solid gray;
    word-break: break-all;
    padding-bottom: 100px;
    margin-bottom :40px;
}

@media (max-width: 900px) {
    .entry__body {
        padding-bottom: 40px;
    }
}

.entry__footer {
  text-align: center;
}

.entry__back {
    border :1px solid gray;
    border-radius: 100px;
    padding: 8px 40px;
    text-decoration: none;
    color: gray;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

.entry__back::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 12px;
    width: 18px;
    height: 18px;
    background-image: url("/resources/enatomo_salon/images/subpage/arrow.svg");
    background-repeat: no-repeat;
    background-size: 18px 18px;
}