@charset "euc-jp";

/* news.css
お知らせページのみで使用するスタイル

/* 共通
------------------------------------------------ */
.info_list h2 {
    background: none;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #2879c4;
    color: #3b3b3b;
    font-size: 26px;
    padding: 5px 0 20px;
}
.info_list h3 {
    background: none;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #2879c4;
    color: #3b3b3b;
    font-size: 22px;
    padding: 10px 15px;
}
.info_list .tag {
    border-radius: 1px;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    margin: 0 20px 0 0;
    padding: 3px 2px;
    width: 80px;
    text-align: center;
}
.info_list .release { background-color: #5da0dd;}
.info_list .important { background-color: #f03955;}

.info_list strong {
    font-weight: bold;
    color: #FF3033;
}

/* ------------------------------------------------
/* お知らせ一覧
------------------------------------------------ */

/* news_category カテゴリ
------------------------------------------------ */
.news_category {
    overflow: hidden;
    padding: 20px 0 15px;
}
.news_category li {
    background: #f4f4f4;
    border-radius: 2px;
    box-shadow: 1px 1px 1px #c3c2c1;
    box-sizing: border-box;
    float: left;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    width: 19.1%;
    width: calc( calc(100% - 41px) / 5);
    position: relative;
}
.news_category li:last-child {
    margin-right: 0;
}
.news_category li a {
    border: 1px solid #f4f4f4;
    color: #3b3b3b;
    display: block;
    padding: 11px 10px 9px;
    text-align: center;
    text-decoration: none;
    transition: .2s linear;
}
.news_category li a:hover {
    background: #c6def5;
    border: 1px solid #5a9fdf;
    border-radius: 2px;
    box-sizing: border-box;
}
.news_category .select a {
    background: #5da0dd;
    border: 1px solid #5da0dd;
    color: #fff;
}
.news_category .select a:hover {
    background: #5da0dd;
    border: 1px solid #5da0dd;
    color: #fff;
}
/*----- ico_new 通知 -----*/
.news_category li .ico_new {
    background: #f03955;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 20px;
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    right: 8px;
    text-align: center;
    padding: 1px 1px 0 0;
    letter-spacing: -0.3px;
}

/* main お知らせ一覧
------------------------------------------------ */
.info_list .main {
    margin-bottom: 50px;
}
.info_list .main .topic:first-child {
    border-top: 1px solid #e0e0e0;
}
.info_list .main .topic {
    border-bottom: 1px solid #e0e0e0;
}
.info_list .main .topic a {
    display: block;
    color: #3b3b3b;
    overflow: hidden;
    padding: 20px;
    text-decoration: none;
}
.info_list .main .topic a:hover {
    background: #fef5d1;
}
.info_list .main .topic a .detail {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 625px;
    vertical-align: middle;
}
.info_list .main .topic a .date {
    display: inline-block;
    float: right;
    padding: 3px 0 0;
    vertical-align: middle;
}
.info_list .main .topic a .new {
    color: #f03955;
    font-weight: bold;
}

/* pager ページャー　CSS調整
----------------------------------- */
.info_list .pager {
    width: 770px;
    margin: 0 auto 45px;
    border: none;
}
.info_list .pager li a {
    box-sizing: border-box;
    padding: 7px 11px;
    font-size: 17px;
}
.info_list .pager li.select {
    background: #5da0dd;
    color: #fff;
    font-size: 17px;
    padding: 7px 11px;
}
.info_list .pager li.next a,
.info_list .pager li.prev a {
    font-size: 14px;
}
.info_list .pager li.prev {
    margin-right: 15px;
}
.info_list .pager li.next {
    margin-left: 10px;
}

/* ------------------------------------------------
/* お知らせ詳細
------------------------------------------------ */
.info_list .info_detail{
    background: #f2f2f2;
    padding: 10px 10px 15px;
    margin: 30px 0;
}
.info_list .info_detail .title {
    align-items: center;
    background: #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 1px #c3c2c1;
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 20px;
}
.info_list .info_detail .title h3 {
    color: #3b3b3b;
    border: none;
    display: inline-flex;
    font-size: 18px;
    line-height: 1.4;
    padding: 0;
    width: 600px;
}
.info_list .info_detail .title .box {
    float: right;
}
.info_list .info_detail .title .box .tag {
    margin: 0 5px 0 0;
}
.info_list .info_detail .info_text {
    background: #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 1px #c3c2c1;
    line-height: 1.8;
    padding: 20px 20px 25px;
}
.info_list .info_detail .info_text img {
    margin-bottom: 15px;
}
.info_list .info_detail .info_text h2 {
    height: auto;
    padding: 10px 10px;
    margin-bottom: 10px;
    border-top: 3px solid #2879c4;
    border-bottom: 3px solid #2879c4;
    font-size: 18px;
}
.info_list .info_detail .info_text h3 {
    padding: 3px 0 3px 15px;
    margin: 10px 0 10px 0;
    position: relative;
    font-size: 16px;
    border-bottom: none;
}
.info_list .info_detail .info_text h3:before {
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background-color: #2879c4;
    position: absolute;
    left: 0;
    top: 0;
}
.info_list .info_detail .info_text .block_b {
    margin-bottom: 10px;
    background-color: #ebf5fc;
    border: 1px solid #ccecf7;
    border-radius: 5px;
    padding: 10px 20px;
}
.info_list .info_detail .info_text .block_g {
    margin-bottom: 10px;
    background-color: #f5f5f5;
    padding: 10px 20px;
}
.info_list .info_detail .info_text em {
    font-weight: bold;
    font-style: normal;
    background: -moz-linear-gradient(top, rgba(255,255,0,0) 0%, rgba(255,255,0,0) 49%, #ffe27e 80%, #ffe27e 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,0,0) 0%,rgba(255,255,0,0) 49%,#ffe27e 80%,#ffe27e 100%);
    background: linear-gradient(to bottom, rgba(255,255,0,0) 0%,rgba(255,255,0,0) 49%,#ffe27e 80%,#ffe27e 100%);
}
.info_list .info_detail .info_text hr {
    height: 0;
    margin: 10px 0;
    padding: 0;
    border: 0;
    border-top: 2px dotted #c7c7c7;
}
/*----- 自由リンクボタン -----*/
.info_list .getpt a {
    background: #fbc600;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: 1px 1px 2px #a8a8a8;
    color: #010101;
    display: block;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px auto;
    padding: 19px 15px 14px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0 #fcdf72;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    vertical-align: middle;
    width: 460px;
}
.info_list .getpt a:hover {
    background: #fbdb00;
    color: #010101;
}

/*----- 一覧に戻るボタン -----*/
.info_list .btn_back a {
    border: #2882d6 1px solid;
    border-radius: 2px;
    box-sizing: border-box;
    color: #2882d6;
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin: 0 auto;
    padding: 15px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    width: 460px;
}
.info_list .btn_back a:hover {
    background-color: #c6def5;
    border: #5a9fdf 1px solid;
}
.info_list .btn_back a:before,
.info_list .btn_back a:after {
    background: #2882d6;
    border-radius: 4px;
    content: '';
    display: block;
    height: 3px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: 115px;
}
.info_list .btn_back a:before {
    margin-top: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.info_list .btn_back a:after {
    margin-top: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}