@charset "utf-8";
@import "anime.css";

/*
------------
download.css
------------
*/
/* page_container */
#page_container {
    background: #F5F5F7;
    padding: 0 0 150px 0;
}
@media only screen and (max-width: 768px) {
    #page_container {
        padding: 0 0 80px 0;
    }
}
/* tit_area */
#tit_area {
    background-image: url(../../images/content/download/titBg.webp);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    #tit_area {
        background-image: url(../../images/content/download/titBgSP.webp);
    }
}
/* download_nav */
nav#download_nav {
    width: calc(100vw * 1200 / 1500);
    max-width: 1200px;
    margin: 125px auto 0 auto;
}
nav#download_nav ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px 32px;
    font-feature-settings: "palt";
}
nav#download_nav ul li {
    width: calc((100% / 4) - (100vw * 32 / 1500));
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.5;
}
nav#download_nav ul li a {
    display: block;
    color: #304751;
    border: 1px solid #304751;
    border-radius: 10px;
    padding: 13px 0;
    transition: all .3s ease;
}
nav#download_nav ul li a:hover {
    background: #304751;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    nav#download_nav {
        width: 90vw;
        max-width: 90vw;
        margin: 50px auto 0 auto;
    }
    nav#download_nav ul {
        justify-content: space-between;
        gap: 10px 0;
    }
    nav#download_nav ul li {
        width: calc((100% / 2) - 8px);
        font-size: 1.4rem;
    }
    nav#download_nav ul li a {
        padding: 10px 0;
    }
}
/* download_list */
#download_list {
    margin: 125px 0 0 0;
}
#download_list .inner {
    width: calc(100vw * 1200 / 1500);
    max-width: 1200px;
    margin: 0 auto;
    font-feature-settings: "palt";
}
#download_list .inner h3 {
    display: block;
    font-size: 3.8rem;
    font-weight: 600;
    color: #304751;
    letter-spacing: 0.1em;
    position: relative;
}
#download_list .inner h3.sedond {
    margin: 125px 0 0 0;
}
#download_list .inner h3::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #BAC1C5;
    position: absolute;
    bottom: -20px;
    left: 0;
}
#download_list .inner h3::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #304751;
    position: absolute;
    bottom: -21px;
    left: 0;
}
#download_list .inner .list {
    margin: 65px 0 0 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
    gap: calc(100vw * 48 / 1500);
}
#download_list .inner .list article {
    width: calc(100% / 3 - (100vw * 32 / 1500));
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
@media only screen and (min-width: 1500px) {
    #download_list .inner .list {
        gap: 48px 48px;
    }
    #download_list .inner .list article {
        width: calc(100% / 3 - 32px);
    }
}
#download_list .inner .list article figure {
    width: 100%;
    height: calc(100vw * 240 / 1500);
    max-height: 240px;
    background: #BAC1C5;
    display: flex;
    justify-content: center;
    align-items: center;
}
#download_list .inner .list article figure img {
    width: auto;
    height: calc(100vw * 176 / 1500);
    max-height: 176px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
}
#download_list .inner .list article dl {
    padding: 35px 25px;
}
#download_list .inner .list article dl dt {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.3;
}
#download_list .inner .list article dl dd {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 15px 0 0 0;
}
#download_list .inner .list article p {
    padding: 0 25px 30px 25px;
    margin: auto 0 0 0;
    text-align: center;
}
#download_list .inner .list article p a {
    display: block;
    color: #fff;
    background: #304751;
    border: 1px solid #304751;
    border-radius: 300px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 20px 0;
    transition: all .3s ease;
}
#download_list .inner .list article p a:hover {
    background: #fff;
    color: #304751;
}
@media only screen and (max-width: 768px) {
    #download_list {
        margin: 80px 0 0 0;
    }
    #download_list .inner {
        width: 90vw;
        max-width: 90vw;
    }
    #download_list .inner h3 {
        font-size: 3.2rem;
    }
    #download_list .inner h3.sedond {
        margin: 80px 0 0 0;
    }
    #download_list .inner .list {
        margin: 50px 0 0 0;
        display: block;
    }
    #download_list .inner .list article {
        width: 100%;
        display: block;
    }
    #download_list .inner .list article:not(:first-child) {
        margin: 30px 0 0 0;
    }
    #download_list .inner .list article figure {
        height: calc(100vw * 218 / 375);
        max-height: 218px;
    }
    #download_list .inner .list article figure img {
        height: calc(100vw * 160 / 375);
        max-height: 160px;
    }
    #download_list .inner .list article dl {
        padding: 30px 20px;
    }
    #download_list .inner .list article p {
        padding: 0 20px 30px 20px;
        margin: 0;
    }
    #download_list .inner .list article p a {
        display: inline-block;
        padding: 15px 50px;
    }
}