﻿#Info .Top {
    background-image: url(../../_Image/news/news.jpg);
}

body {
    background-color: #f3f3f3;
}

#Info h2 {
    margin: 80px auto 40px auto;
    width: 100%;
    text-align: center;
    color: #123456;
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
}

#Info .List.Container {
    width: 1280px;
}

#Info .List {
    margin: 0 auto 100px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px 20px;
}

#Info .List .Item:focus {
    outline: none;
}

#Info .List .Item:nth-child(1) {
    width: 100%;
}

#Info .List .Item.Future {
    width: calc(50% - 10px);
}

#Info .List .Item.Past {
    width: calc(33% - 10px);
}

#Info .List .Item .ImgWapper {
    margin: 0 0 1em 0;
    width: 100%;
    aspect-ratio: 16/9;
    /* background-color: #e9eaef; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 5px;
    -webkit-transition: background-size 150ms linear;
    -moz-transition: background-size 150 linear;
    -o-transition: background-size 150 linear;
    -ms-transition: background-size 150ms linear;
    transition: background-size 150ms linear;
}

#Info .List .Item:hover .ImgWapper {
    transition: all .2s;
    background-size: 105%;
}

#Info .List .Item .Date {
    color: #777;
    font-size: 14px;
    font-weight: 500;
}

#Info .List .Item .Title h3 {
    font-size: 24px;
    font-weight: 700;
    margin: .3em 0;
    color: #2a2b2c;
}

#Info .List .Item .Title p {
    margin: .2em 0;
    color: #333d47;
    font-size: 16px;
    line-height: 1.5em;
}

#Info .SocialList {
    padding: 60px 0 150px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    background-color: #fff;
}

#Info .SocialList h2 {
    width: 100%;
}

#Info .SocialList .SocialItem {
    padding: calc(180px - 2.5em) 0 0 0;
    width: 320px;
    aspect-ratio: 16/9;
    text-align: center;
    color: #777;
    box-shadow: inset 0 0 20px #dfdfdf;
    background-color: #e9eaef;
    background-image: url(../../_Image/logo_ig.svg);
    background-position: center calc(50% - 1em);
    background-repeat: no-repeat;
    background-size: 33%;
    border-radius: 20px;
    transition: all .2s;
}

#Info .SocialList .SocialItem:nth-child(2) {
    background-image: url(../../_Image/logo_yt.svg);
}

#Info .SocialList .SocialItem:hover {
    background-color: #d2d3d8;
    color: #000;
}

@media screen and (max-width:1439px) {
    #Info .List.Container {
        padding: 0 100px;
        width: clamp(50px, 100%, 1280px);
    }
}

@media screen and (max-width:1249px) {
    #Info .List .Item.Past {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width:1023px) {
    #Info .List.Container {
        padding: 0 50px;
    }
}

@media screen and (max-width:767px) {
    #Info .Top {
        background-position: right center;
    }

    #Info h2 {
        margin: 1em auto .5em auto;
    }

    #Info .List.Container {
        padding: 0 9.4vw;
    }

    #Info .List {
        gap: 20vw;
    }

    #Info .List .Item.Future,
    #Info .List .Item.Past {
        width: 100%;
    }

    #Info .SocialList {
        padding: 9.3vw 9.3vw 18vw 9.3vw;
        gap: 15px;
    }

    #Info .SocialList .SocialItem {
        padding: calc(27% - .75em) 0 0 0;
        width: 50%;
        aspect-ratio: 4/3;
    }
}