.news_wrap {
    max-width: 1335px;
    width: 100%;
    margin: 110px auto 0;
    border-radius: 20px;
    box-shadow: 6px 6px 10px rgba(138, 163, 212, 0.6);
    padding: 75px 0 110px;
    background-color: white;
}

.news_wrap h2 {
    font-size: 35px;
    line-height: 1;
    text-align: center;
    color: #007260;
}

.news_wrap .news_list {
    max-width: 990px;
    width: 90%;
    margin: 70px auto 0;
}

.news_wrap .news_list a {
    display: block;
    width: 100%;
    padding: 10px 40px 10px 5px;
    position: relative;
    /* border-bottom: dotted 2px #007260; */
    transition: all 0.3s;
}
.news_wrap .news_list a + a {
    margin-top: 30px;
}

.news_wrap .news_list a::after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 1px;
    background-color: #007260;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.6s ease;
}

.news_wrap .news_list a:hover::after {
    width: 100%;
}

.news_wrap .news_list a .ul {
    width: 100%;
    display: flex;
    gap: 7px;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news_wrap .news_list a .ul .dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #007260;
}

.news_wrap .news_list a .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news_wrap .news_list a .info .genre {
    padding: 0 10px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: white;
    background-color: #ed81a5;
}

.news_wrap .news_list a .info .date {
    font-size: 16px;
    line-height: 1;
}

.news_wrap .news_list a .ttl {
    font-size: 17px;
    line-height: 26px;
    margin-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news_wrap .news_list a .arrow {
    width: 10px;
    position: absolute;
    bottom: 15px;
    right: 17px;
    transition: all 0.6s;
}
.news_wrap .news_list a:hover .arrow {
    right: 5px;
}

/* 背景ここから */
.main_bg{
  position: relative;
  overflow: hidden;
}

.main_bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/sc_bg01.png);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.main_bg > *{
  position: relative;
  z-index: 1;
}

body.page-special-archive .main_bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

body.page-special-archive .main_bg::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: url(/img/sc_bg01.png); 
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

.news_wrap {
  position: relative;
  background-color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.news_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(138, 163, 212, 0.32) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.news_wrap > * {
  position: relative;
  z-index: 1;
}

/* 既存の白背景をグラデーションに置換 */
.page_head .head_block::before {
  background-color: rgba(255, 255, 255, 0.65);
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(138, 163, 212, 0.32) 100%
  );
}

/* ボタン追加 */
.special_wrap .list_btn {
    width: 350px;
    height: 80px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 6px 6px 7px rgba(138, 163, 212, 0.5);
    overflow: hidden;
    transition: all 0.3s;
    background-color: #f1f5f9;
    padding-left: 0px;
    margin: 80px auto 0;
}
.special_wrap .list_btn:hover {
    box-shadow: none;
}

.special_wrap .list_btn p {
    font-size: 22px;
    line-height: 25px;
    color: #007260;
}

.special_wrap .list_btn .arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    transition: all 0.3s;
}
.special_wrap .list_btn:hover .arrow {
    right: 5px;
}

.special_wrap .list_btn .arrow::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    mix-blend-mode: multiply;
    position: absolute;
    top: 5px;
    left: 5px;
    filter: blur(2px);
}

.special_wrap .list_btn .arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* 経営相談 */
.news_wrap .news_list a .info .genre.genre-consulting {
    background-color: #4a6fdc;
}

/* 経営ミニ情報 */
.news_wrap .news_list a .info .genre.genre-mini {
    background-color: #e67e22;
}

@media screen and (max-width: 700px) {
    .news_wrap {
        margin-top: 55px;
        padding: 50px 0 75px;
    }

    .news_wrap h2 {
        font-size: 26px;
    }

    .news_wrap .news_list {
        margin-top: 35px;
        padding: 0 15px;
    }

    .news_wrap .news_list a {
        padding: 20px 0;
    }

    .news_wrap .news_list a + a {
        margin-top: 0;
    }

    .news_wrap .news_list a .info {
        justify-content: space-between;
    }

    .news_wrap .news_list a .info .genre {
        font-size: 10px;
    }

    .news_wrap .news_list a .info .date {
        color: #808080;
        font-size: 12px;
    }

    .news_wrap .news_list a .arrow {
        display: none;
    }

    .news_wrap .list_btn {
        margin: 30px auto 0;
    }

    /* ボタン追加 */
    .special_wrap .list_btn {
        width: 320px;
        height: 55px;
        border-radius: 27.5px;
        justify-content: center;
        padding-left: 0;
        margin-top: 40px;
    }

    .special_wrap .list_btn .arrow {
        width: 42px;
        height: 42px;
        right: 12px;
    }

    .special_wrap .list_btn p {
        font-size: 16px;
    }

}
