a:hover {
    text-decoration: unset;
}

.rnd {
    position: relative;
}

/* fv
***************************************************************/
.fv img {
    width: 100%;
    height: auto;
}

.rnd_sec {
    margin-bottom: 45px;
}

/* アコーディオン
***************************************************************/
.rnd_tab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.rnd_tab li {
    outline: 2px solid rgb(64, 120, 160);
    outline-offset: -7px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .1);
    box-sizing: border-box;
}

.rnd_tab li a {
    display: inline-block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    width: 100%;
    color: rgb(64, 120, 160);
    box-sizing: border-box;
    position: relative;
    height: 68px;
}

.rnd_tab li a span {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.rnd_tab li.active {
    outline: 2px solid #fff;
    background: rgb(64, 120, 160);
}

.rnd_tab li.active a {
    color: #fff;
}

/*エリアの表示非表示と形状*/
.area {
    display: none;
    opacity: 0;
    margin-top: 40px;
}

.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 680px) {
    .rnd_tab {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .rnd_tab li {
        outline-offset: -5px;
    }

    .rnd_tab li a {
        font-size: 14px;
        height: 58px;
    }

    .rnd_tab li.active {
        outline: 2px solid #fff;
        background: rgb(64, 120, 160);
    }

    .rnd_tab li.active a {
        color: #fff;
    }

    /*エリアの表示非表示と形状*/
    .area {
        display: none;
        opacity: 0;
        margin-top: 40px;
    }

}

/* txtWrap1
***************************************************************/

.report p.txt img {
        margin: 15px auto;
        width: 70%;
}
.report p.txt span {
        font-weight: bold;
        color: #C31D1A;
}

.txtWrap1 {}

.txtWrap1 ul {
    display: grid;
    gap: 20px 30px;
}

.txtWrap1 ul li {
    display: block;
    border-bottom: 1px dashed #dddddd;
}

.txtWrap1 ul li img {
    float: left;
    width: 390px;
    height: 215px;
    object-fit: cover;
    box-shadow: 1px 1px 2px 1px #ccc;
    margin: 0px 40px 20px 30px
}

.txtWrap1 ul li img:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.txtWrap1 ul li p {
    font-size: 16px;
}

.txtWrap1 ul li p a {
    font-size: 14px;
    color: #787878;
    padding: 10px 21px;
    border: 1px solid #ddd;
    background-color: #F5F5F5;
}

.txtWrap1 ul li p a:hover {
    font-size: 14px;
    color: #787878;
    padding: 10px 21px;
    border: 1px solid #ddd;
    background-color: #F1F6F9;
}


.txtWrap1 ul li span {
    font-size: 18px;
    margin: 10px 0px 30px;
    display: block;
}

/* モーダル本体 */
.modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
}

.modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, .3);
    cursor: pointer;
}

.modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
}

/* モーダルを閉じるボタン */
.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
}

.modal__close:hover {
    opacity: .6;
}

.modal__close:before,
.modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
}

.modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__image {
    cursor: pointer;
}

.modal__content .modal__image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 680px) {
    .txtWrap1 {}

    .txtWrap1 ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .txtWrap1 ul li {
        border-bottom: unset;
    }

    .txtWrap1 ul li img {
        height: 120px;
        width: 100%;
        margin: 0 0 10px;
    }

    .txtWrap1 ul li p {
        font-size: 12px;
    }

    .txtWrap1 ul li span {
        font-size: 14px;
    }

    .modal__container {
        width: 90vw;
    }

    .modal__close {
        top: 10px;
        right: 10px;
        width: 22px;
        height: 22px;
    }


    .modal__close:before,
    .modal__close:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 1px;
        background: #fff;
        content: '';
    }

}

/* txtWrap2
***************************************************************/
.txtWrap2 {
    text-align: center;
    font-size: 16px;
}

.report {}

.report h3 {
    background: #659AB7;
    ;
    text-align: center;
    color: #fff;
    font-size: 38px;
    padding: 10px 0 5px;
}

.report h3 span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.report p.txt {
    font-size: 16px;
    margin-top: 30px;
    padding: 0 75px;
}

.report figure {
    width: 700px;
    display: block;
    margin: 30px auto 0;
    text-align: center;
}

.report figure img {
    width: 100%;
    height: auto;
}

.report figure figcaption {
    font-size: 14px;
}


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

    .report h3 {
        font-size: 16px;
        padding: 10px 0 5px;
    }

    .report h3 span {
        display: block;
        font-size: 14px;
    }

    .report p.txt {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
        padding: 0 10px;
    }

    .report figure {
        width: 100%;
    }

    .report figure figcaption {
        font-size: 14px;
    }
}

/* txtWrap3
***************************************************************/
.txtWrap3 .rnd_list {
    display: flex;
    flex-flow: column;
    gap: 25px;
}

.txtWrap3 .rnd_list li.rnd_item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    border-bottom: 1px solid #2b2b2b;
    padding-bottom: 25px;
}

.txtWrap3 .rnd_list li.rnd_item:nth-last-of-type(1) {
    border-bottom: unset;
}

.txtWrap3 .rnd_list li.rnd_item img {
    width: 200px;
    height: auto;
}

.txtWrap3 .rnd_list li.rnd_item .txtBox {
    flex: 1;
}

.txtWrap3 .rnd_list li.rnd_item .txtBox h4.tit4 {
    font-size: 18px;
    margin-top: 10px;
}

.txtWrap3 .rnd_list li.rnd_item .txtBox a.link {
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
}

.rnd_description {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    padding: 25px;
    gap: 30px;
    margin: 0 60px 40px;
}

.rnd_description img {
    width: 150px;
    height: auto;
}

.rnd_description .rnd_description_box {}

.rnd_description .rnd_description_box h3 {
    font-size: 16px;
}

.rnd_description .rnd_description_box p {
    font-size: 14px;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .rnd_sec {
        margin-bottom: 100px;
    }

    .txtWrap3 .rnd_list {
        display: flex;
        flex-flow: column;
        gap: 10px;
    }

    .txtWrap3 .rnd_list li.rnd_item {
        gap: 20px;
        padding-bottom: 10px;
    }

    .txtWrap3 .rnd_list li.rnd_item img {
        width: 100px;
    }

    .txtWrap3 .rnd_list li.rnd_item .txtBox {
        flex: 1;
    }

    .txtWrap3 .rnd_list li.rnd_item .txtBox p.txt {
        font-size: 10px;
    }

    .txtWrap3 .rnd_list li.rnd_item .txtBox h4.tit4 {
        font-size: 12px;
        margin-top: 5px;
    }

    .txtWrap3 .rnd_list li.rnd_item .txtBox a.link {
        font-size: 10px;
        margin-top: 5px;
    }

    .rnd_description {
        flex-flow: column;
        padding: 15px;
        gap: 20px;
        margin: 0 10px 30px;
    }

    .rnd_description img {
        width: 130px;
        height: auto;
    }

    .rnd_description .rnd_description_box {}

    .rnd_description .rnd_description_box h3 {
        font-size: 14px;
    }

    .rnd_description .rnd_description_box p {
        font-size: 13px;
        margin-top: 15px;
    }
}

/* txtWrap4
***************************************************************/
.txtWrap4 {
    text-align: center;
    font-size: 16px;
}

@media screen and (min-width: 681px) {}

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


/* add
***************************************************************/
.kon {
    color: #447DA4;
}

.pagination {
    color: #447DA4;
    font-size: 15px;
    text-align: center;
    margin-top: 40px;
}

.katsudou {
    color: #447DA4;
    font-size: 15px;
    text-align: center;
    margin-top: 40px;
}

/*============================
関連資料
============================*/
.documentBox {
    display: flex;
    gap: 40px;
    padding: 0 60px;
    border-bottom: 1px dotted #000;
    padding-bottom: 40px;
}

.documentBox+.documentBox {
    margin-top: 40px;
}

.documentBox img {
    width: 280px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, .2)
}

.documentBox .txtBox {
    flex: 1;
    padding-top: 20px;
}

.documentBox .txtBox h3 {
    font-size: 24px;
    font-weight: bold;
}

.documentBox .txtBox table {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.documentBox .txtBox table tbody {
    display: flex;
    flex-flow: column;
    gap: 20px;
    width: 100%;
}

.documentBox .txtBox table tbody tr {
    display: flex;
    width: 100%;
}

.documentBox .txtBox table tbody tr th {
    width: 60px;
    text-align: right;
}

.documentBox .txtBox table tbody tr td {
    flex: 1;
}

.documentBox .txtBox table tbody tr td a {
    word-break: break-all;
}

@media screen and (max-width: 680px) {
    .documentBox {
        flex-flow: column;
        gap: 20px;
        padding: 0;
        padding-bottom: 30px;
    }

    .documentBox+.documentBox {
        margin-top: 30px;
    }

    .documentBox img {
        width: 60%;
        display: block;
        margin: 0 auto;
    }

    .documentBox .txtBox {
        padding-top: 0;
    }

    .documentBox .txtBox h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .documentBox .txtBox table {
        margin-top: 15px;
    }

    .documentBox .txtBox table tbody {
        gap: 10px;
    }

    .documentBox .txtBox table tbody tr th {
        width: 60px;
        text-align: right;
    }

    .documentBox .txtBox table tbody tr td {
        flex: 1;
    }

    .documentBox .txtBox table tbody tr td a {}

}