@charset "UTF-8";

/* お知らせトップ */

.news_content01 {
    padding-top: 80px;
}

.news_content01 .inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    margin: auto;
}

.news_content01 .bg {
    position: absolute;
    left: -80px;
    top: 80px;
    z-index: -1;
    width: 172px;
}


.news_wrap {
    background: #fff;
    padding: 60px 8.3% 80px;
}

.news_index li {
    border-bottom: 1px solid #CCCCCC;
}

.news_index li a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    padding: 25px 12% 25px 0;
}


.news_index li a .icon {
    position: absolute;
    right: 2%;
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: block;
    border: 1px solid #246BA1;
    transition: .5s;
    overflow: hidden;
}

.news_index li a .icon::before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 7.5px);
    top: calc(50% - 7.5px);
    transition: .5s;
}

.news_index li a .icon::after {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(../../assets/img/common/ico_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 7.5px);
    top: calc(50% - 7.5px);
    transition: .5s;
}

.news_index li a:hover {
    color: #246BA1;
}

.news_index li a:hover .icon {
    background: #fff;
}

.news_index li a:hover .icon::before {
    left: calc(150% - 7.5px);
}

.news_index li a:hover .icon::after {
    left: calc(50% - 7.5px);
}

.news_index li a .image {
    width: 22%;
    height: 130px;
    transition: .5s;
}
.news_index li a .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news_index li a:hover .image {
    opacity: .7;
}

.news_index li a .txt {
    width: 75%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news_index li a .txt .date {
    color: #246BA1;
    font-size: 16px;
    line-height: 30px;
    margin-right: 20px;
}

.news_index li a .txt .date::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #246BA1;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 5px;
}

.news_index li a .txt .cat {
    color: #246BA1;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #246BA1;
    border-radius: 16px;
    padding: 0 1em;
}

.news_index li a .txt .title {
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    margin-top: 20px;
}
.news_index li a .txt .excerpt {
    font-size: 16px;
    font-weight: bold;
    padding-top: 20px;
}

@media only screen and (max-width:768px) {

    .news_content01 {
        padding: 18vw 5vw 0;
    }

    .news_content01 .inner {
        max-width: 100%;
        padding: 0;
    }

    .news_content01 .bg {
        left: -10vw;
        top: -13vw;
        width: 23vw;
    }

    .news_wrap {
        padding: 10vw 5vw;
    }

    .news_index li a {
        display: block;
        padding: 5vw 0;
    }

    .news_index li a .icon {
        width: 5vw;
        height: 5vw;
        right: 2vw;
        top: calc(50% + 2.5vw);
    }

    .news_index li a .icon::before {
        width: 2vw;
        height: 2vw;
        left: calc(50% - 1vw);
        top: calc(50% - 1vw);
    }

    .news_index li a .icon::after {
        width: 2vw;
        height: 2vw;
        left: calc(-50% - 1vw);
        top: calc(50% - 1vw);
    }

    .news_index li a:hover .icon::before {
        left: calc(150% - 1vw);
    }

    .news_index li a:hover .icon::after {
        left: calc(50% - 1vw);
    }

    .news_index li a .image {
        width: 100%;
    }

    .news_index li a .txt {
        width: 100%;
        position: relative;
        padding-top: 4vw;
        padding-right: 10vw;
    }

    .news_index li a .txt .date {
        color: #246BA1;
        font-size: 3.7vw;
        line-height: 4.8vw;
        margin-right: 4vw;
    }

    .news_index li a .txt .date::before {
        width: 1.6vw;
        height: 1.6vw;
        margin-right: 2vw;
    }

    .news_index li a .txt .cat {
        font-size: 2.7vw;
        line-height: 4.8vw;
        border-radius: 2.4vw;
    }

    .news_index li a .txt .excerpt {
        font-size: 3.7vw;
        padding-top: 4vw;
    }

}



/* ページネーション */

.page_navi {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.page_navi a,
.page_navi span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #246BA1;
    font-size: 16px;
    background: #F6F6F6;
    margin: auto 5px;
    text-decoration: none;
    border-radius: 8px;
}

.page_navi a:hover,
.page_navi span:hover,
.page_navi span.current {
    color: #fff;
    background: #246BA1;
}


@media only screen and (max-width:768px) {

    .page_navi {
        padding-top: 10vw;
    }

    .page_navi a,
    .page_navi span {
        width: 10vw;
        height: 10vw;
        font-size: 3.7vw;
        margin: auto 1vw;
        border-radius: 1vw;
    }


}

/* お知らせ詳細 */

#newsSingle h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin: 60px auto 40px;
}

#newsSingle h2::after {
    content: '';
    width: 60px;
    height: 6px;
    background: #246BA1;
    display: block;
    position: absolute;
    left: calc(50% - 30px);
    bottom: 0;
}

#newsSingle h3 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #707070;
}

#newsSingle h3::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #246BA1;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

#newsSingle h4 {
    color: #246BA1;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

#newsSingle h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

#newsSingle h6 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

#newsSingle p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6em;
}

#newsSingle .large {
    font-size: 20px;
}

#newsSingle .small {
    font-size: 14px;
}

#newsSingle .x-small {
    font-size: 12px;
}

#newsSingle p strong {
    font-weight: 600;
}

#newsSingle p a {
    color: #246BA1;
    text-decoration: underline;
}

#newsSingle p a:hover {
    text-decoration: none;
}

#newsSingle img {
    margin: auto;
}

#newsSingle img.size-medium {
    width: 75%;
}

#newsSingle .alignnone {
    clear: both;
    display: block;
}

#newsSingle .aligncenter {
    clear: both;
    display: block;
    margin: 30px auto;
}

#newsSingle .alignleft {
    clear: both;
    display: block;
    margin: 30px auto 30px 0;
}

#newsSingle .alignright {
    clear: both;
    display: block;
    margin: 30px 0 30px auto;
}

#newsSingle ul {
    margin: 30px auto;
}

#newsSingle ul li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0 10px 30px;
}

#newsSingle ul li::before {
    content: '●';
    color: #29ABE2;
    font-size: 30%;
    position: absolute;
    top: 11px;
    left: 15px;
}

#newsSingle ol {
    counter-reset: li;
    margin: 30px auto;
}

#newsSingle ol li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding: 20px 0 20px 50px;
    border-bottom: 1px solid #ccc;
}

#newsSingle ol li:before {
    width: 24px;
    text-align: center;
    border-radius: 50%;
    background: #246BA1;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 15px;
    counter-increment: li;
    content: counter(li);
}

#newsSingle blockquote {
    padding: 30px 50px;
    background: #f0f8fc;
}

#newsSingle blockquote h3 {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: auto;
    text-align: left;
}

#newsSingle blockquote p {
    margin-top: 10px;
    margin-bottom: auto;
    font-size: 12px;
    line-height: 1.2em;
}

#newsSingle blockquote cite a {
    margin-top: 10px;
    margin-bottom: auto;
    font-size: 12px;
    line-height: 1.2em;
    color: #246BA1;
    text-decoration: underline;
}

#newsSingle blockquote cite a:hover {
    text-decoration: none;
}

#newsSingle table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin: 30px auto;
}

#newsSingle table th,
#newsSingle table td {
    border: 1px solid #ccc;
    padding: .5em;
}

#newsSingle table th {
    background: #eee;
}

#newsSingle table thead th {
    text-align: center;
    vertical-align: middle;
}

#newsSingle table tbody th {
    width: 30%;
    text-align: center;
    vertical-align: middle;
}

#newsSingle table tbody td {
    text-align: left;
    vertical-align: top;
}


#newsSingle .btn_back {
    width: 360px;
    margin: 80px auto auto;
}

#newsSingle .btn_back a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 20px;
    background: #F6F6F6;
    height: 40px;
}

#newsSingle .btn_back a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid #246BA1;
    transition: .5s;
}

#newsSingle .btn_back a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#newsSingle .btn_back a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#newsSingle .btn_back a:hover {
    color: #fff;
    background: #246BA1;
}

#newsSingle .btn_back a:hover .icon {
    background: #fff;
}

#newsSingle .btn_back a:hover .icon::before {
    left: calc(150% - 8px);
}

#newsSingle .btn_back a:hover .icon::after {
    left: calc(50% - 8px);
}

#newsSingle .single_head {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

#newsSingle .single_head h1 {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#newsSingle .single_head .date {
    color: #246BA1;
    font-size: 16px;
    line-height: 30px;
    margin-right: 20px;
}

#newsSingle .single_head .date::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #246BA1;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 5px;
}

#newsSingle .single_head .cat {
    color: #246BA1;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #246BA1;
    border-radius: 16px;
    padding: 0 1em;
}

#newsSingle .single_thumbnail {
    width: 100%;
    max-width: 800px;
    margin: auto auto 80px;
}


@media only screen and (max-width:767px) {

    #newsSingle h2 {
        font-size: 4.1vw;
        padding-bottom: 3vw;
        margin: 8vw auto;
    }

    #newsSingle h2::after {
        width: 8vw;
        height: 3px;
        left: calc(50% - 4vw);
    }

    #newsSingle h3 {
        font-size: 4vw;
        padding-bottom: 2vw;
        margin-bottom: 4vw;
    }

    #newsSingle h3::before {
        width: 1.6vw;
        height: 1.6vw;
        margin-right: 1.6vw;
    }

    #newsSingle h4 {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    #newsSingle h5 {
        font-size: 3.73vw;
        margin-bottom: 3vw;
    }

    #newsSingle h6 {
        font-size: 3.2vw;
        margin-bottom: 3vw;
    }

    #newsSingle p {
        margin-bottom: 5vw;
        font-size: 3.73vw;
    }

    #newsSingle .large {
        font-size: 4vw;
    }

    #newsSingle .small {
        font-size: 3.2vw;
    }

    #newsSingle .x-small {
        font-size: 2.8vw;
    }

    #newsSingle img.size-medium {
        width: 100%;
    }

    #newsSingle .aligncenter {
        margin: 4vw auto;
    }

    #newsSingle .alignleft {
        margin: 4vw auto 4vw 0;
    }

    #newsSingle .alignright {
        margin: 4vw 0 4vw auto;
    }

    #newsSingle ul {
        margin: 4vw auto;
    }

    #newsSingle ul li {
        font-size: 3.73vw;
        line-height: 5.6vw;
        padding: 1.6vw 0 1.6vw 6vw;
    }

    #newsSingle ul li::before {
        top: 2vw;
        left: 3vw;
    }

    #newsSingle ol {
        margin: 4vw auto;
    }

    #newsSingle ol li {
        font-size: 3.73vw;
        line-height: 5.6vw;
        padding: 5vw 0 5vw 11vw;
    }

    #newsSingle ol li:before {
        width: 5.6vw;
        top: 5vw;
        left: 3vw;
    }

    #newsSingle blockquote {
        padding: 4vw 6vw;
    }

    #newsSingle blockquote h3 {
        font-size: 3.73vw;
        padding-bottom: 2vw;
    }

    #newsSingle blockquote p {
        margin-top: 2vw;
        font-size: 3vw;
    }

    #newsSingle blockquote cite a {
        margin-top: 2vw;
        font-size: 3vw;
    }

    #newsSingle table {
        font-size: 3.2vw;
        margin: 4vw auto;
    }


    #newsSingle .btn_back {
        width: 96%;
    }

    #newsSingle .btn_back a {
        font-size: 4vw;
        padding: 4vw;
        height: auto;
    }

    #newsSingle .btn_back a .icon {
        width: 6.4vw;
        height: 6.4vw;
    }

    #newsSingle .btn_back a .icon::before {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #newsSingle .btn_back a .icon::after {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(-50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #newsSingle .btn_back a:hover .icon::before {
        left: calc(150% - 1.6vw);
    }

    #newsSingle .btn_back a:hover .icon::after {
        left: calc(50% - 1.6vw);
    }

    #footer .footer_contact .flex .box .tel {
        width: 84%;
    }

    #footer .footer_contact .flex .box .tel a {
        font-size: 4.4vw;
        padding: 3vw;
        height: auto;
        pointer-events: all;
    }

    #footer .footer_contact .flex .box .tel a .icon {
        width: 4.4vw;
        height: 4.4vw;
        margin-right: 1vw;
    }

    #newsSingle .single_head {
        padding-bottom: 6vw;
        margin-bottom: 8vw;
    }

    #newsSingle .single_head h1 {
        font-size: 4.7vw;
        margin-bottom: 4vw;
    }

    #newsSingle .single_head .date {
        font-size: 3.7vw;
        line-height: 4.8vw;
        margin-right: 3vw;
    }

    #newsSingle .single_head .date::before {
        width: 1.2vw;
        height: 1.2vw;
        margin-right: 1vw;
    }

    #newsSingle .single_head .cat {
        font-size: 2.7vw;
        line-height: 4.8vw;
        border-radius: 4.8vw;
    }

    #newsSingle .single_thumbnail {
        max-width: 100%;
        margin: auto auto 10vw;
    }
}