@charset "utf-8";


/*========================================
  news release
========================================*/
#newsRelease header {
        display:flex;
        justify-content:space-between;
        align-items: center;
}
#newsRelease h2 {
    font-size: 2.4rem;
}
@media screen and (max-width:768px) {
    #newsRelease {
        padding: 0 20px;
    }
    #newsRelease h2 {
        text-align: left;
    }
}
@media screen and (max-width:480px) {
    #newsRelease header {
        display:inline-block;
    }
    #newsRelease h2 {
        padding: 0 0 10px 0;
    }
    #newsRelease header > a {
        display:inline-block;
    }
}
#newsRelease .actSet { margin: 0; }
#newsRelease .actSet li { margin: 0;}
#newsRelease .selectBox::before {
    display: none;
}
#newsRelease .selectBox::after {
        top: 18px;
}
#newsRelease .selectBox select {
        padding: 9px 32px 9px 10px;
}



/* news - list */
.newsList {
    margin-top: 32px;
}
.newsList li {
    border-bottom: 1px solid #EBECEC;
}
.newsList li a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 16px 0;
    color: #353E43;
}
.newsList li a::after {
    content: "";
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background: url("../../../cmn/img/icon_btn_wdg.svg#gy") no-repeat center center;
    background-size: 12px 12px;
}
.newsList li a:hover {
    opacity: 1;
    background-color: #EBECEC;
}
.newsList li time {
    width: 100px;
    font-size: 1.4rem;
    color: #868B8E;
}
.newsList li .cat {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    border: 1px solid #00A6C2;
    white-space: nowrap;
    text-align: center;
    font-size: 1.2rem;
    color: #00A6C2;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.newsList li p {
    flex: 1;
    padding: 0 48px 0 32px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media screen and (max-width:768px) {
    .newsList li a {
        flex-flow: row wrap;
        justify-content: flex-start;
    }
    .newsList li p {
        flex: auto;
        width: 100%;
        margin-top: 16px;
        padding-left: 0;
        overflow: visible;
        white-space: normal;
        text-overflow: clip;
    }

}
@media screen and (max-width:480px) {
}


/**/
.pager {
        margin:40px 0 0;
        display:flex;
        justify-content:center;
        align-items:center;
}
.pager li {
        margin:0 .6em;
}
.pager a {
        display:block;
        color:#868B8E;
}
.pager li.current a {
    color: #00A6C2;
}

.pager li.prev,
.pager li.next {
    width: 12px;
    height: 12px;
    background: url("../../../cmn/img/icon_btn_wdg.svg#gy") no-repeat center center;
    background-size: auto;
}
.pager li.prev {
        margin:0 1.3em 0 0;
    transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0) skewY(0);
}
.pager li.next {
        margin:0 0 0 1.3em;
}


/*========================================
  news - detail
========================================*/
#newsDetail {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px 0;
    font-size: 1.6rem;
}

.newsHead time {
    margin-bottom: 8px;
    color: #868B8E;
}
.newsHead .newsTitle {
    font-size: 2.4rem;
}
.newsHead .newsCategory {
    display: inline-block;
    width: 100px;
    height: 30px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #00A6C2;
    white-space: nowrap;
    text-align: center;
    line-height: 1.25;
    font-size: 1.2rem;
    color: #00A6C2;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.newsBody {
    margin: 32px 0 56px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.newsBody > *:first-child {
    margin-top: 0;
}
.newsBody > *:last-child {
    margin-bottom: 0;
}
.newsBody p {
    line-height: 2.25;
    margin: 1em 0;
    
}

.newsBody img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* back button */
.newsReleaseBackBtn {
        border-top: 1px solid #EBECEC;
        padding: 56px 0;
}
.newsReleaseBackBtn li {
    margin: 0;
}
.newsReleaseBackBtn li *[class*="btn-"] {
    padding: 14px 32px;
}