img{
    height: auto;
}
.site-wrap {
    overflow: hidden;
}
.site-main{

}

.main-img{
    padding-top: 90px;
    width: min(1200px, 95%);
    margin: auto;
}

.main-img img{

}

.lineup{
    padding-bottom: 4vw;
}

.lineup h2{
    font-size: 2.2rem;
    text-align: center;
    margin: 80px auto 40px;
    letter-spacing: .2rem;
}

.lineup section{
    display: flex;
    align-items: center;
    margin-bottom: 4vw;
}

.lineup section:nth-of-type(even){
    flex-direction: row-reverse;
}

.lineup section>img{
    width: 56%;
}

.lineup section:nth-of-type(odd)>img{
    margin-right: 20px;
}

.lineup section:nth-of-type(even)>img{
    margin-left: 20px;
}


.lineup section>div{
    display: flex;
    max-width: 600px;
    flex-direction: column;
    width: initial;
    padding: 20px;
}

.lineup section h3{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0 20px;
}

.lineup section h3 img{
    max-width: 280px;
    width: 60%;
}

.lineup section h3 span{
    font-size: min(3vw, 36px);
    font-weight: bold;
    position: relative;
    bottom: .3vw;
    letter-spacing: .2rem;
}

.lineup section h4{
    font-size: min(2vw, 22px);
}

.lineup section p{
    font-size: min(1.4vw, 18px);
    line-height: 1.6;
    margin: min(2vw, 30px) 0;
}

.lineup section a{
    border: 1px solid #282b3e;
    color: #282b3e;
    padding: 20px 8px;
    background: #fff;
    font-size: min(1.8vw, 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all 0.4s ease;
    letter-spacing: .1rem;
    max-width: 430px;
    position: relative;
}

.lineup section a::after {
    content: "";
    width: 12px;
    height: 19px;
    background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23282b3e"><path d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    margin-left: 10px;
    transition: 0.3s all ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

.lineup section a:hover {
    background: #282b3e;
    color: #fff;
    opacity: 1;
}

.lineup section a:hover::after {
    background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23ffffff"><path d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z"/></svg>');
    transform: translate(10px, -50%);
}

.sp-only{
    display: none;
}

@media (max-width: 820px) {
    .pc-only{
        display: none;
    }

    .lineup h2 {
        font-size: 2rem;
        margin: 50px auto 35px;
    }

    .lineup section {
        flex-direction: column!important;
    }

    .lineup section>img {
        width: 100%;
    }

    .lineup section h3{
        justify-content: center;
    }
    
    .lineup section h3 span{
        font-size: min(32px);
        bottom: 2px;
    }

    .lineup section h4{
        font-size: min(20px);
    }

    .lineup section p{
        font-size: min(16px);
        margin: min(30px) 0;
    }

    .lineup section a{
        font-size: min(18px);
        margin: auto;
        width: min(430px, 100%);
    }


}