@charset "UTF-8";
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    30% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    30% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/* =====================
  ニュースリリース
 ======================= */
 b, strong {
    font-weight: bolder;
}
.hero {
    background-image: url(../img/news/hero.jpg) no-repeat center/cover;
}

.hero:before {
    display: none;
}

.news_cat_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1px;
    margin-bottom: 3.6rem;
}

.news_cat_list li {
    min-width: 15.6rem;
    margin: -1px 0 0 -1px;
}

.news_cat_list li a {
    border: 1px solid #e6e6e6;
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    padding: 1em;
    text-align: center;
    text-decoration: none;
}

.news_cat_list li a:hover {
    background: #edf5f1;
}

.news_cat_list li.current a {
    background: #00a276 !important;
    border-color: #00a276;
    color: #fff;
}

.news_list {
    border-top: 1px solid #e2e2e2;
    margin-bottom: 4.0rem;
}

.news_list li a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding: 1.6rem 0;
    text-decoration: none;
}

.news_list li a time {
    width: 11%;
    flex-shrink: 0;
}

.news_list li a .cat {
    width: 10%;
    flex-shrink: 0;
    text-align: center;
    background: #051665;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    padding: 0.7rem;
    margin-right: 2.5rem;
}

.news_list li a:hover {
    background: #edf5ed;
    color: #333333;
}

.news_list li a.pdf .tit:after {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/common/ico_pdf.png) no-repeat center/contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.news_title_txt {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1em;
}

.news_title .info {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    padding-bottom: 3.0rem;
    margin-bottom: 6.0rem;
    position: relative;
}

.news_title .info:after {
    content: "";
    width: 15%;
    height: 3px;
    background: #00a276;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.news_title .info time{
    margin-right:16px;
}

.news_title .info .cat {
    background: #DB2764;
    color: #fff;
    font-size: 1.4rem;
/*     line-height: 2.8; */
    font-weight: 700;
    padding: 0.5em;
    margin-left: 2.5rem;
}

.news_article>* {
    margin-bottom: 2em;
    line-height: 1.85;
    letter-spacing: 0.07em;
}

.news_article a {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
}
/* 
.news_article a:before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-style: solid;
    border-width: 2px;
    border-color: #00a276#00a276transparent transparent;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
} */

.news_article h1 {
    border-top: 2px solid #e3e3e3;
    padding: 1em 0 2em;
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.news_article h1:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    background-color: #2ca26a;
    width: 12rem;
    height: 2px;
}
/* 
.news_article h2 {
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding-left: 1em;
    position: relative;
    margin-bottom: 3.2rem;
    display: flex;
}

.news_article h2:before {
    content: "";
    width: 4px;
    height: 100%;
    background: #00a276;
    position: absolute;
    top: 0;
    left: 0;
}

.news_article h2:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #e0e0e0;
    margin-left: 1em;
    margin-top: 0.5em;
}

.news_article h3 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 1.0em;
}
 */
.news_article img.aligncenter {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.news_article img.alignright {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}
.news_article img.alignleft {
    margin-right: auto;
    display: flex;
    justify-content: flex-start;

}


/* タブレット
  ------------------------ */


/* スマホ
  ------------------------ */

@media (max-width: 992px) {
    .hero {
        background-image: url(../img/news/hero_sp.jpg) no-repeat center/cover;
        height: 56.2vw;
    }
    .news_cat_list {
        margin-bottom: 3.0rem;
    }
    .news_cat_list li {
        max-width: calc((100% + 3px) / 3);
    }
    .news_cat_list li a {
        font-size: 1.3rem;
        padding: 1.6rem 1em;
    }
    .news_list {
        margin-bottom: 3.0rem;
    }
    .news_list li a {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .news_list li a time {
        width: auto;
    }
    .news_list li a .cat {
        width: auto;
        margin-right: 0;
        font-size: 1.1rem;
        min-width: 30%;
        padding: 0.5em;
    }
    .news_list li a .tit {
        width: 100%;
        margin-top: 1.0rem;
    }
    .news_title_txt {
        font-size: 2.0rem;
    }
    .news_title .info {
        font-size: 1.4rem;
        padding-bottom: 2.0rem;
        margin-bottom: 4.0rem;
    }
    .news_title .info:after {
        width: 20%;
        height: 2px;
    }
    .news_title .info .cat {
        font-size: 1.3rem;
    }
    .news_article h1 {
        font-size: 1.8rem;
    }
    .news_article h1:before {
        width: 7rem;
    }
    .news_article h2 {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
    .news_article h2:before {
        width: 3px;
    }
    .news_article h2:after {
        margin-left: 1.0rem;
    }
    .news_article h3 {
        font-size: 1.5rem;
        margin-bottom: 1.0rem;
    }
}