.news{
    width: 100%;
    position: relative;
    display: flex;
    padding: 192px 256px;
    box-sizing: border-box;
    text-align: left;
    font-size: 13px;
    color: #999;
    font-family: 'Shippori Mincho';
}
.news-inner{
    max-width: 1024px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
}
.news-list{
    max-width: 1024px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-list a{
    width: 100%;
    position: relative;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 48px 0px;
    gap: 48px;
    text-align: left;
    font-size: 13px;
    color: #999;
    font-family: 'Shippori Mincho';
    transition: all .5s;
}
.news-list a:hover{
    opacity: 0.5;
}
.news-list a .news-list-date{
    position: relative;
    font-weight: 800;
    color: #999999;
    font-size: 13px;
    padding-left: 48px;
    letter-spacing: 2.6px;
    font-family: 'Shippori Mincho', Helvetica, sans-serif;
}
.news-list a .news-list-title{
    flex: 1;
    width: 100%;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 30px;
    font-family: 'Shippori Mincho';
    color: #333;
    text-align: left;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-list a:last-child{
    border-bottom: 1px solid #ccc;
}
.news-nav{
    display: flex;
    align-items: center;
    gap: 64px;
}
.news-nav-items{
    display: flex;
    align-items: center;
    gap: 32px;
}
.news-nav-prev{
    position: relative;
    background-color: #fff;
    border: 1px solid #088c63;
    box-sizing: border-box;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    text-align: center;
    font-size: 15px;
    color: #088c63;
    font-family: 'Shippori Mincho';
    position: relative;
    letter-spacing: 0.75px;
    line-height: 15px;
    transition:all .5s;
    flex: auto;
}
.news-nav-prev:hover{
    background-color: #088c63;
    color: #fff;
}
.news-nav-items strong,.news-nav-items a{
    position: relative;
    border-bottom: 1px solid #088c63;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 4px 12px;
    text-align: center;
    font-size: 15px;
    color: #088c63;
    font-family: 'Shippori Mincho';
    transition:all .5s
}
.news-nav-items a:hover{
    border-bottom:1px solid #204f5e;
    color:#204f5e
}
.news-nav-items strong{
    color: #999;
    border-bottom: transparent 1px solid;
}
.news-header{
    width: 100%;
}
.news-header .date{
    text-align: center;
    font-weight: 800;
    color: #999999;
    font-size: 13px;
    letter-spacing: 2.6px;
    font-family: 'Shippori Mincho', Helvetica, sans-serif;
}
.sub-hero__title.horizontal{
    margin-top: 24px;
    width: 100%;
    flex: 1;
    text-align: left;
}
.news article{
    width: 100%;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}
.news article p{
    width: 100%;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 30px;
    font-family: 'Shippori Mincho';
    color: #333;
    text-align: left;
    display: inline-block;
}
.news article figure,.news article figure *{
    max-width: 100%;
}
.news article figure figcaption{
    margin-top: 12px;
}
.news-nav.mb{
    display: none;
}
@media screen and (max-width:768px){
    .news{
        padding: 64px 32px;
    }
    .news-inner{
        gap: 32px;
    }
    .news-list a{
        flex-direction: column;
        padding: 24px;
        align-items: flex-start;
        gap: 8px;
    }
    .news-list a .news-list-date{
        font-size: 11px;
        letter-spacing: 2.2px;
        line-height: 11px;
        padding-left: 0;
    }
    .news-list-title{
        font-size: 14px;
        letter-spacing: 0.7px;
        line-height: 28px;
    }
    .news-nav {
        gap: 16px;
    }
    .news-nav-prev{
        padding: 24px;
        text-align: center;
        font-size: 14px;
    }
    .news-header{
        margin-top: 64px;
    }
    .news .sub-hero__title.horizontal{
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 34px;
        text-align: left;
        align-items: flex-start;
    }
    .sub-hero__title:after{
        margin: auto;
        margin-top: 32px;

    }
    .news article{
        margin-top: 32px;
    }
    .pc{
        display: none;
    }
    .mb{
        display: flex;
    }
}