
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Oswald:wght@700&display=swap');
html,body {
    margin: 0;
    font-family:'Noto Sans JP', sans-serif;
}
.news_box{
    overflow: hidden;
}
.news_box form:not(:first-child) {
    border-top: 1px solid var(--gray2);
}
.news_box form {
    position: relative;
}
.news_box form:first-child .news {
    padding-top:0
}
.news_box form:last-child .news {
    padding-bottom:0
}
.news_box > form:nth-last-child(2){
    display: none;
}
.news_box > a{
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    line-height: 1.5;
    background-image: linear-gradient(var(--green), var(--green));
    background-size: 100% 2px;
    background-position: center bottom;
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding-bottom: 2px;
    font-size: 16px;
    font-size: 1.6rem;
    display: inline;
    position: relative;
    margin: 16px 11px 0 0;
    float: right;
}
.news_box > a:nth-of-type(2) {
  float: left;
}
.news_box > a::after{
    content: "";
    display: inline-block;
    width: 11px;
    height: 15px;
    background: var(--green);
    mask-image: url(/assets/img/common/icon/icon_arrow.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    transition: 0.3s;
    position: absolute;
    top: calc(50% - 7px);
    right: -11px;
}
    .news_box > a:hover::after{
    animation: arrowAnimationRight 0.6s ease-out;
}
.news {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 16px;
    padding: 8px;
    gap: 24px
}
html.is-sp .news {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 21px
}
html.is-sp .news:after {
    position: absolute;
    right: 0;
    top: 50%
}
.news:after {
    content: "";
    width: 12px;
    height: 7px;
    background: #09A569;
    mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%229%22%20viewBox%3D%220%200%2014%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0.707092%200.707108L6.70709%206.70711L12.7071%200.707108%22%20stroke%3D%22white%22%20stroke-width%3D%222%22/%3E%3C/svg%3E);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: rotate(-90deg);
}
.title {
    flex: 1
}
.title > img {
    display: none;
}
    .title a {
    color: #333333;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.title a:hover {
    opacity: 0.7;
}
