@charset "utf-8";

.hero_box {
    background: url(/common/images/expart/index/hero.jpg) no-repeat center center / cover;
}

.expart_name {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px 50px;
}

.expart_name>div>h2 {
    margin-bottom: 10px;
}

.expart_name>div:nth-of-type(1)>p:nth-of-type(1) {
    margin-bottom: 10px;
}

.expart_name>div:nth-of-type(1)>p:nth-of-type(2) {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.expart_name>div:nth-of-type(2)>p {
    display: block;
    width: 100%;
    position: relative;
}

.expart_name>div:nth-of-type(2)>p::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.expart_name>div:nth-of-type(2)>p>img {
    width: 100%;
    height: 100%;
    border-radius: 100vw;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}



@media (max-width:1024px) {}

@media (max-width:768px) {
    .expart_name {
        grid-template-columns: 1fr;
    }
}