@charset "UTF-8";

/* FTSマガジン記事読み込み用CSS */
#section-column-feed {
    margin: 8rem auto 5rem;
    max-width: 1180px;
    display: block;
}
#section-column-feed .column-title {
    text-align: left;
    font-size: 30px;
    color: var(--color-standard);
}
#section-column-feed .column-title img {
    width: 250px;
    margin: 0 10px .5rem;
}
#section-column-feed .btn {
    display: flex;
    justify-content: flex-end;
    margin: 20px 10px 0;
}
#section-column-feed .btn a {
    display: flex;
    padding: 0 10px 0.08em 10px;
    min-height: 40px;
    background-color: var(--color-standard);
    border: 1px solid var(--color-standard);
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
#section-column-feed .btn a:hover {
    background-color: #fff;
    color: var(--color-standard);
}
#section-column-feed .feed-list article figure {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#section-column-feed .feed-list article figure:before {
    content:"";
    display: block;
    padding-top: 54%;
}
#section-column-feed .feed-list article figure img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#section-column-feed .feed-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px; /* 横の間隔 */
    row-gap: 20px; /* 縦の間隔 */
}
#section-column-feed .feed-list article {
    /*width: 25%;*/
    /*margin: 0 10px;*/
    background: #fff;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(14,98,197,0.2);
    overflow: hidden;
}
#section-column-feed .feed-list article > a {
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 0;*/
    width: 100%;
    height: 100%;
    /*z-index: 2;*/
}
#section-column-feed .feed-list article .feed-info {
    padding: 15px;
}
#section-column-feed .feed-list article .feed-info h3 {
    font-size: 1.6rem;
    font-weight: bold;
    min-height: 45px;
    padding-bottom: 5px;
}
#section-column-feed .feed-list article .feed-info p {
    padding-bottom: 5px;
    font-size: 1.1rem;
    min-height: 45px;
}

@media only screen and (max-width: 768px) {
    #section-column-feed {
        padding: 0 15px;
        max-width: 460px;
    }
    #section-column-feed .feed-list {
        display: block;
    }
    #section-column-feed .column-title {
        width: 100%;
        margin-bottom: 1.5rem;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(14,98,197,0.2);
        text-align: center;
        font-size: 2.4rem;
    }
    #section-column-feed .column-title img {
        width: 250px;
        margin: 0 auto .5rem;
    }
    #section-column-feed .btn {
        justify-content: center;
    }
    #section-column-feed .feed-list article {
        width: 100%;
        margin: 0 0 3rem;
        background: #fff;
        position: relative;
    }
    #section-column-feed .feed-list article > a {
        /*position: absolute;*/
        /*left: 0;*/
        /*top: 0;*/
        width: 100%;
        height: 100%;
        /*z-index: 2;*/
    }
    #section-column-feed .feed-list article .feed-info {
        padding: 1rem;
    }
    #section-column-feed .feed-list article .feed-info h3 {
        font-size: 1.6rem;
        font-weight: bold;
        min-height: 45px;
        padding-bottom: .8rem;
    }
    #section-column-feed .feed-list article .feed-info p {
        padding-bottom: .8rem;
        font-size: 1.4rem;
        line-height: 1.3;
        min-height: 45px;
    }
}