@charset "utf-8";
/**
 * author : hong
 * last modified date : 2023-11-29
 */


.report-list {
    width: 100%;
}

.report-list form {
    margin: 0;
    padding: 0;
}

.report-list .board-list {
    border-top: 3px solid #333333;
    border-bottom: 1px solid #444;
}

.report-list .board-list ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list .board-list ul li {
    width: calc(100%/2);
    padding: 40px;
    display: flex;
    border-bottom: 1px solid #d9d9d9;
    box-sizing: border-box;
}

.report-list .board-list ul li .thumb {
  width: 35%;
    height: 100%;
    aspect-ratio: 8/11;
    overflow: hidden;
    position: relative;
}

.report-list .board-list ul li .thumb a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.report-list .board-list ul li .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.report-list .board-list ul li .thumb a .no-img {
    display: block;
    width: 100%;
    height: 0;
    background: #f6f6f6;
    font-size: 0;
    padding-bottom: 139%;
    box-sizing: border-box;
}

.report-list .board-list ul li .ctt {
    width: 65%;
    height: 100%;
    position: relative;
    padding: 0px 40px;
    box-sizing: border-box;
}

.report-list .board-list ul li .ctt .subject {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.report-list .board-list ul li .ctt .desc {
  margin-top: 10px;
  font-size: 1rem;
}

.report-list .board-list ul li .ctt .date {
    font-size: 0.9rem;
    color: #555;
    margin-top: 20px;
}

.report-list .board-list ul li .ctt .download {
    position: absolute;
    bottom: 0;
}

.report-list .board-list ul li .ctt .download a {
    color: #fff;
    display: block;
    width: 100%;
    padding: 10px 30px;
    text-align: center;
    background: #555;
    box-sizing: border-box;
    font-size: 0.9rem;
    text-decoration: none;
}


.report-list .board-list ul li .ctt .download a:before {
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/img/icon/icon_download_wh.png');
    margin-right: 4px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: sub;
    content: '';
    display: inline-block;
}


.report-latest ul {
    display: flex;
    margin-right: -15px !important;
}

.report-latest li {
    list-style: none;
    width: calc(100%/4 - 15px);
    margin-right: 15px;
    position: relative;
}

.report-latest li .thumb .img {
    padding-top: 20vw;
    height: 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.report-latest li .thumb .no-img {
    padding-top: 20vw;
    height: 0;
    background: url(/wp-content/img/default_report.jpg);
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.report-latest li .ctt {
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
}


@media screen and (max-width: 768px) {
    .report-list .board-list ul li {
        width: 100%;
        padding: 30px 0;
    }

    .report-list .board-list ul li .ctt {
        padding: 0px 40px;
    }

    .report-list .board-list ul li .ctt .download {
        position: relative;
        bottom: auto;
        margin-top: 40px;
    }

    .report-latest ul {
        margin-right: 0 !important;
        flex-direction: column;
    }

    .report-latest li {
        width: 100%;
        margin-right: 0;
    }

    .report-latest li + li {
        margin-top: 20px;
    }

    .report-latest li .thumb .no-img,
    .report-latest li .thumb .img {
        padding-top: 100%;
    }
}
