body {
    margin: 0;
}

/* ↓タイトルバー↓ */
.taitle_bar {
    position: relative;
}

.taitle_bar img {
    width: 100%;
}

/* PC用のスタイル */
@media screen and (min-width: 900px) {
    .title_img_PC {
        display: block; /* MV_text_areaを表示 */
    }

    .title_img_SP {
        display: none; /* mobile_text_areaを非表示 */
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 899px) {
    .title_img_PC {
        display: none; /* MV_text_areaを非表示 */
    }

    .title_img_SP {
        display: block; /* mobile_text_areaを表示 */
    }
}

.title_bar_company {
    position: absolute;
    top: 65%; /* 垂直方向に中央揃え */
    left: 50%; /* 水平方向に中央揃え */
    transform: translate(-50%, -50%); /* 中央に位置調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_en {
    margin-bottom: 5px; /* 適宜マージンを調整 */
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(12px, 0.7vw, 14px);
    letter-spacing: 7px;
    color: #fff;
}

.underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #fff; /* 下線の色 */
}
/* ↑タイトルバー↑ */

/* ↓新着情報↓ */
.news_area {
    display: flex;
    justify-content: space-between;
    margin: 4.2% 22% 6%;
}
    
.news_filter {
    width: fit-content;
    margin: 0;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05rem;
}

.news_filter a {
    text-decoration: none; /* 下線を消す */
    color: #1e1e1e; /* リンクの色を指定する */
    transition: 0.2s;
}

.news_filter a:hover {
    opacity: 0.7;
}

.tag_all {
    color: #b3a07c;
}

.tag_all,.tag_company,.tagrecruit {
    margin-bottom: 40%;
}

.news_list {
    padding: 0;
    margin: 0;
    width: 70%;
}

li {
    list-style: none;
}

.news_list_content {
    border-bottom: solid 1px #b3a07c;
    margin-bottom: 24px;
}

.news_list_content_none {
    border-bottom: none;
    margin-bottom: 24px;
}

.date {
    margin-right: 16px;
    font-family: "Frank Ruhl Libre",serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #1e1e1e;
}

.news_tag {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    color: #fff;
    padding: 4px 12px;
    background-color: #b3a07c;
    white-space: nowrap;
}

.news_list_title {
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(15px, 1vw, 20px);
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 表示する行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* 省略記号を表示 */
}

.news_list_title_none {
    padding-left: 105px;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(15px, 1vw, 20px);
}

.news_list_title a {
    text-decoration: none; /* 下線を消す */
    color: #1e1e1e; /* リンクの色を指定する */
    transition: 0.2s;
}

.news_list_title a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1220px) {
    .news_area {
        flex-direction: column; /* 画面幅が1220px以下の場合、列方向に配置 */
        margin-bottom: 20%;
    }

    .news_filter {
        display: flex;
        justify-content: space-around;
        width: 100%; /* 幅を100%に設定 */
        margin: 10% 0 5%; /* マージンをリセット */
        font-size: 18px;
    }

    .tag_all,.tag_company,.tagrecruit {
        margin-bottom: 0;
    }

    .news_list {
        width: 100%; /* 幅を100%に設定 */
    }

    .news_list_content {
        margin: 0 10% 24px 10%;
    }

    .news_list_content_none {
        margin: 0 10% 24px 10%;
    }

    .news_list_title_none {
        padding-left: 0;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .news_area {
        margin: 0 10% 25% 10%;
    }

    .news_list_content {
        margin: 24px 0 0 0;
    }

    .news_list_content_none {
        margin: 24px 0 0 0;
    }

    .news_list_title_none {
        padding-left: 0;
        text-align: center;
    }
}

/* ↑新着情報↑ */