/**
* 使用クラス一覧
・download
**/


/*--------------------------------------
/*
 * download
 *
 *---------------------------------------/
/*******
 * PC
 *******/
.download__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 4%;
    row-gap: 2rem;
}
.download__list_item {
    width: 48%;
}
.download__card {
    display: flex;
    align-items: center;
    color: #000;
}
.download__card_img {
    width: 35%;
    z-index: 99;
}
.download__card_text {
    position: relative;
    width: 80%;
    height: 12rem;
    margin-left: -30px;
    padding: 1rem 1rem 2rem 3rem;
    z-index: 1;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 3px 1px rgb(0 0 0 / 30%);
}
.download__category {
    margin-bottom: .5rem;
    text-align: right;
}
.download__category span {
    display: inline-block;
    padding: .1rem .25rem;
    margin-left: 0.5rem;
    background-color: var(--main-color);
    border-radius: 5px;
    font-size: var(--font-05);
    color: #fff;
}
.download__title {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow: hidden;
    text-align: left;
    font-size: var(--font-10);
    font-weight: 500;
    line-height: 1.3;
}
.download__card:hover .download__title {
    color: var(--main-color);
}
.download__date {
    position: absolute;
    bottom: 0.25rem;
    right: 0.5rem;
    padding: 0.25rem;
    text-align: right;
    font-size: var(--font-08);
    color: #999;
}

.download_detail__heading {
    display: flex;
    column-gap: 2rem;
    margin-bottom: 5rem;
}
.download_detail__heading_img {
    flex-basis: 35%;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
}
.download_detail__heading_img ul {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    column-gap: .5rem;
}
.download_detail__heading_img ul li a {
    color: #fff;
    font-size: var(--font-07);
    background-color: var(--main-color);
    border-radius: 5px;
    padding: .2rem .5rem;
    transition: all .2s;
}
.download_detail__heading_img ul li:hover a {
    background-color: #222;
}
.download_detail__heading_detail {
    flex-basis: 65%;
}
.download_detail__heading_detail dl {
    border: 3px solid var(--main-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
}
.download_detail__heading_detail dt {
    padding: 0.5rem 1rem;
    color: var(--main-color);
    font-size: var(--font-14);
    font-weight: 500;
    text-align: center;
    display: block;
    font-family: 'Jun 501', sans-serif;
}
.download_detail__heading_detail_title {
    display: inline-block;
    position: relative;
}
.download_detail__heading_detail_title:before, .download_detail__heading_detail_title:after {
    position: absolute;
    bottom: 0rem;
}
.download_detail__heading_detail_title:before {
    content: "＼";
    left: -1.5rem;
}
.download_detail__heading_detail_title:after {
    content: "／";
    right: -1.5rem;
}
.download_detail__heading_detail dd {
    font-size: var(--font-13);
    margin-bottom: 0.5rem;
}
.download_detail__heading_detail_text  {
    display: inline-block;
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, var(--second-color) 0%) repeat scroll 0 0;
    padding: 0 .3rem;
}

/*******
 * Tablet
 *******/
@media screen and (min-width: 640px) and (max-width: 1079px) {
}


/*******
 * SP
 *******/
@media (max-width: 639px) {
    .download_detail__heading_img, .download_detail__heading_detail {
        flex-basis: 60%;
        margin-bottom: 1rem;
    }
    .download_detail__heading_detail {
        flex-basis: 100%;
    }
    .download_detail__heading {
        flex-wrap: wrap;
    }
    .download__category {
        margin-left: -40%;
    }
}