﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@100;200;300;400;500;600;700&display=swap');

.ef {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    padding: 8px 0 8px 8px;
}
.ef:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    right: 0;
    transition: 0.6s;
}
.ef.animated:before {
    left: 101%;
}
.ef.ef-wh:before {
    background-color: #fff;
}
.ef.ef-bk:before {
    background-color: #000;
}
.ef-wrap {
    opacity: 0;
    transition: 0.8s;
}
.animated .ef-wrap {
    opacity: 1;
}

.ef.ef-bk {
    padding: 8px 0;
}


.library {
    background-color: #F4F5F7;
}
.library-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
    box-sizing: border-box;
}
.library-ttl {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.library-txt {
    margin-bottom: 70px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #999999;
}

.library-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
.library-list-item {
    position: relative;
    width: 48.5%;
    margin-bottom: 3%;
    margin-right: 3%;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    background-color: #FFF;
    list-style-type: none;
}

.library-list-item > img {
  width: 100%;
}

.library-list-item:nth-child(2n) {
    margin-right: 0;
}
.library-list-details {
    position: relative;
    padding: 35px 55px;
    box-sizing: border-box;
}
.library-list-ttl {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}
.library-list-txt {
    padding-bottom: 90px;
    font-size: 14px;
}
.library-list-btn {
    position: absolute;
    bottom: 35px;
    right: 0;
    left: 0;
    display: block;
    width: 72%;
    max-width: 332px;
    margin: auto;
    padding: 15px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    color: #FFF;
    background-color: #000;
    text-decoration: none;
}
.icon-download {
    position: relative;
}
.icon-download:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -15px;
    background-image: url(/cms/sc/img/event/scr2021/common/icon_download.png);
    background-size: cover;
    width: 12px;
    height: 15px;
}

.bnr {
    margin-bottom: 75px;
}

.to-page-btn {
    display: block;
    width: 100%;
    max-width: 240px;
    height: 48px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    line-height: 48px;
    color: #000;
    border: 1px solid #000;
}
.to-page-btn:hover {
    opacity: 1;
    color: #FFF;
    background-color: #000;
}

@media screen and (max-width:768px) {
    .library-wrapper {
        padding: 10% 6%;
    }
    .library-ttl {
        margin-bottom: 2%;
        font-size: 21px;
    }
    .library-txt {
        margin-bottom: 10%;
        font-size: 14px;
    }
    .library-list-item {
        width: 100%;
        margin-bottom: 6%;
        margin-right: 0;
        padding-bottom: 10%;
    }
    .library-list-details {
        padding: 1% 6% 10% 6%;
    }
    .library-list-ttl {
        margin-bottom: 4%;
        font-size: 16px;
    }
    .library-list-txt {
        padding-bottom: 0;
    }
    .library-list-btn {
        position: static;
    }
    
        .bnr {
        margin-bottom: 16%;
    }
    
    .to-page-btn {
        height: 38px;
        font-size: 14px;
        line-height: 38px;
    }
}
