@charset "UTF-8";

a.iv_box {
    transition: 0.3s;
}

a.iv_box:hover {
    opacity: 0.3;
}

.iv_box {
    display: block;
    position: relative;
}

.iv_box>div:nth-of-type(1) {
    width: 100%;
    height: calc(100% - 20px);
    border-radius: 20px 0 20px 0;
    position: absolute;
    bottom: 0;
}

.iv_box>div:nth-of-type(2) {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    top: 50px;
    padding: 0 40px;
    opacity: 20%;
}

.iv_box>div:nth-of-type(3) {
    position: relative;
}

.iv_box>div:nth-of-type(3)>img {
    max-height: 400px;
    object-fit: contain;
}

.iv_box>div:nth-of-type(4) {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    left: 0;
    padding-right: 40px;
}

.iv_box>div:nth-of-type(4)>h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.6;
}

.iv_box>div:nth-of-type(4)>h2 span {
    background: #000;
    padding: 0 20px;
}

.iv_box>div:nth-of-type(4)>ul {
    color: #fff;
}

.iv_box>div:nth-of-type(4)>ul>li:nth-of-type(1) {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.iv_box>div:nth-of-type(4)>ul>li:nth-of-type(2) {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.iv_box>div:nth-of-type(4)>ul>li:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    padding: 0 20px;
}

.iv_filter_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 50px;
}

.iv_filter_btn>li {
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
}

.iv_filter_btn>li:hover,
.iv_filter_btn>li.is_active {
    color: #fff;
    background: #000;
}

.iv_filter_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 5px;
}

.iv_filter_item .iv_box>div:nth-of-type(4) {
    flex-flow: column;
    align-items: flex-start;
    padding: 0;
}

.iv_filter_item .iv_box>div:nth-of-type(4)>h2 {
    order: 2;
}

.iv_filter_item .iv_box>div:nth-of-type(4)>h2 span {
    padding: 0 10px;
}

.iv_filter_item .iv_box>div:nth-of-type(4)>ul {
    margin-left: 10px;
}

.iv_profile {
    background: #eee;
    border-radius: 20px 0 20px 0;
    padding: 40px 30px;
    margin-bottom: 70px;
}

.iv_profile>h2 {
    margin-bottom: 30px;
}

.iv_profile>div {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.iv_profile>div>div:nth-of-type(1)>img {
    border: 2px solid #0027B5;
    border-radius: 100vw;
}

.iv_profile>div>div:nth-of-type(2)>dl {
    width: fit-content;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    margin: 0 0 30px 30px;
}

.iv_profile>div>div:nth-of-type(2)>dl>dt {
    color: #0027B5;
    font-weight: 600;
}

.iv_profile>div>div:nth-of-type(2)>p {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    position: relative;
    padding: 20px;
}

.iv_profile>div>div:nth-of-type(2)>p::before {
    content: "";
    width: 30px;
    height: 30px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    position: absolute;
    left: -20px;
}

.iv_talk {
    display: flex;
    flex-flow: column;
    gap: 70px;
    margin-bottom: 50px;
}

.iv_talk>div>h2 {
    margin-bottom: 40px;
}

.iv_talk>div>p>img {
    max-width: 1000px;
    display: block;
    margin: 50px auto 0 auto;
}

.iv_schedule>h2 {
    margin-bottom: 30px;
}

.iv_schedule {
    background: #eee;
    border-radius: 20px 0 20px 0;
    padding: 40px 30px;
    margin-bottom: 70px;
}

.iv_schedule>ul {
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.iv_schedule>ul>li {
    display: flex;
    flex-flow: column;
    align-items: center;
    background: #fff;
    border-radius: 20px 0 20px 0;
    position: relative;
    padding: 30px;
}

.iv_schedule>ul>li::after {
    content: "";
    width: 10px;
    height: 50px;
    background: #0027B5;
    position: absolute;
    bottom: -50px;
}

.iv_schedule>ul>li:last-of-type::after {
    display: none;
}

.iv_schedule>ul>li>p:nth-of-type(1) {
    font-family: "Inter", sans-serif;
    color: #0027B5;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.iv_schedule>ul>li>p:nth-of-type(2) {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .iv_box>div:nth-of-type(4)>h2 {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .iv_box>div:nth-of-type(3)>img {
        max-height: 300px;
    }

    .iv_box>div:nth-of-type(4) {
        flex-flow: column;
        align-items: flex-start;
        bottom: 10px;
        padding: 0;
    }

    .iv_box>div:nth-of-type(4)>h2 {
        font-size: 20px;
        order: 2;
    }

    .iv_box>div:nth-of-type(4)>h2 span {
        padding: 0 10px;
    }

    .iv_box>div:nth-of-type(4)>ul {
        margin-left: 10px;
    }

    .iv_schedule {
        padding: 40px 20px;
    }

    .iv_schedule>ul>li {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .iv_box>div:nth-of-type(2) {
        top: 30px;
    }

    .iv_box>div:nth-of-type(3)>img {
        max-height: 250px;
    }

    .iv_box>div:nth-of-type(4)>h2 {
        font-size: 16px;
    }

    .iv_schedule>ul>li>p:nth-of-type(2) {
        font-size: 18px;
    }

    .iv_filter_item {
        grid-template-columns: 1fr;
    }

    .iv_profile {
        padding: 40px 20px;
    }

    .iv_profile>div {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .iv_profile>div>div:nth-of-type(1)>img {
        max-width: 200px;
    }

    .iv_profile>div>div:nth-of-type(2)>dl {
        margin: 0 auto 30px auto;
    }

    .iv_profile>div>div:nth-of-type(2)>p::before {
        display: none;
    }
}