@charset "UTF-8";

/*-----------------------------------------------
　お知らせページ関連
------------------------------------------------*/
:root {
    /* Color */
    --primary-color:   #0457af;
    --secondary-color: #689acf;
}

.report-title {
    font-weight: 300;
    font-size: 2.6rem;
    text-align: center;
    color: var(--primary-color);
}
.report_container {
    font-size: 1.4rem;
    padding-top: 60px;
    padding-bottom: 60px;
}
.report_inner {
    width: 68.75%;
    margin: auto;
}
.report-item,
.report-detail-item {
    -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 4rem;
}
.report-no-article-message {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
}
.report-no-article-block {
    -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 4rem;
}
.report-item__head-date,
.report-detail-item__head-date {
    font-family: Montserrat;
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
    font-size: 1.6rem;
    color: var(--secondary-color);
}
.report-detail-item__head-date {
    margin-top: 50px;
}
.report-item__head-date {
    display: block;
}
.report-item__head-title,
.report-detail-item__head-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #322d3c;
    line-height: 1.4;
    padding-bottom: 0.25em;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right,  #1464c8 0%,#1464c8 15%,#d6e1eb 15%,#d6e1eb 100%) 1;
}
.report-item__body,
.report-detail-item__body {
    margin-top: 40px;
}
.report-item__body-text,
.report-detail-item__body-text {
    line-height: 1.8em;
}
.report-item__foot,
.report-detail-item__foot {
    margin-top: 50px;
}
.report_link.position-left {
    text-align: left;
}
.report_link.position-right {
    text-align: right;
}
.report_link a {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}
.report_link.position-left a::before,
.report_link.position-right a::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
}
.report_link.position-left a {
    padding-left: 14px;
}
.report_link.position-right a {
    padding-right: 14px;
}
.report_link.position-right a::after {
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}
.report_link.position-left a::before {
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}
* i {
    font-style: italic!important;
}
* b {
    font-weight: bold;
}
.report-detail-item__body-text ol {
    counter-reset: li_count;
}
.report-detail-item__body-text ul li,
.report-detail-item__body-text ol li {
    padding-left: 1em;
    position: relative;
}
.report-detail-item__body-text ul li::before,
.report-detail-item__body-text ol li::before {
    position: absolute;
    left: 0;
}
.report-detail-item__body-text ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 0.75em;
}
.report-detail-item__body-text ol li::before {
    font-size: 110%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    counter-increment: li_count;
    content: counter(li_count)".";
    margin-right: 0.5em;
    color: var(--primary-color);
}
.report-item__body-upfile,
.report-detail-item__body-upfile {
    margin-top: 20px;
    margin-bottom: 40px;
}
.report-item__body-upfile img,
.report-detail-item__body-upfile img {
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
    border: 10px solid #fff;
}

@media screen and (max-width: 1024px) {
    .report_inner {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .report_inner {
        width: 90%;
    }
}

@media screen and (min-width: 769px) {
    .report_container {
        font-size: 1.6rem;
    }
    .report-item__head-title,
    .report-detail-item__head-title {
        font-size: 2.2rem;
    }
    .report-title {
        font-size: 3.2rem;
    }
    .report-item__head-date,
    .report-detail-item__head-date {
        font-size: 2rem;
    }
    .report-item__body-upfile img,
    .report-detail-item__body-upfile img {
        border: 15px solid #fff;
    }
}

@media screen and (min-width: 1025px) {
    .report_container {
        padding-top: 100px;
    }
    .report-item__head-title,
    .report-detail-item__head-title {
        font-size: 2.8rem;
    }
    .report-title {
        font-size: 4rem;
    }
    .report-item__body-upfile img,
    .report-detail-item__body-upfile img {
        border: 20px solid #fff;
    }
}

.report-list {
    margin-top: 50px;
    margin-bottom: 50px;
}
.report-list__item {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    flex-wrap: wrap;
}
.report-list__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.report-list__item-date {
    font-family: Montserrat;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--secondary-color);
    display: block;
    width: 6.5em;
}
.report-list__item-title {
    display: block;
    width: calc(100% - 7.5em);
}
.report-list__item-title a {
    display: inline-block;
    color: #322d3c;
    font-weight: 500;
    /*border-bottom: 1px solid #322d3c;*/
}
.newMark {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: #c00;
    font-size: 1.4rem;
    padding: 0.1em 0.75em;
    margin-right: 0.5em;
}

@media screen and (max-width: 768px) {
    .report-list__item .report-list__item-date,
    .report-list__item .report-list__item-title {
        display: block;
    }
    .report-list__item .report-list__item-date {
        margin-bottom: 0.5em;
    }
}

@media screen and (min-width: 769px) {
    .report-list {
        margin-top: 80px;
    }
}

.pager {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.pager a {
    margin:0 5px;
    padding: 10px 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    font-family: Montserrat;
    font-weight: bold;
    text-transform: uppercase;
}
.pager a.current {
    color: #fff;
    background-color: var(--primary-color);
}
.pager a:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
.pager a.current:hover {
    color: var(--primary-color);
    background-color: transparent;
}

@media screen and (min-width: 768px) {
    .pager {
        margin-top: 60px;
      }
}
