@charset "UTF-8";

.closstalk_box {
    display: flex;
    flex-flow: column;
    gap: 30px;
}

a.ct_box {
    transition: 0.3s;
}

a.ct_box:hover {
    opacity: 0.3;
}

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

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

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

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

.ct_box>div:nth-of-type(3)>img {
    max-height: 400px;
    height: 100%;
    object-fit: contain;
    padding: 0 40px;
}

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

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

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

.ct_box>div:nth-of-type(4)>h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    filter: drop-shadow(2px 3px 1px rgba(0, 0, 0, 70%));
}

.ct_member {
    background: #eee;
    border-radius: 20px 0 20px 0;
    padding: 30px;
    margin-bottom: 50px;
}

.ct_member>ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.ct_member>div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 30px;
    margin-bottom: 30px;
}

.ct_member>ul>li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct_member>ul>li>div:nth-of-type(1) {
    flex: 1;
}

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

.ct_member>ul>li>div:nth-of-type(2) {
    display: flex;
    flex: 2;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    padding: 20px;
}

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

.ct_member>ul>li>div:nth-of-type(2)>div {
    display: flex;
    gap: 10px;
}

.ct_member>ul>li>div:nth-of-type(2)>div>h3 {
    font-family: "Inter", sans-serif;
    color: #0027B5;
    font-size: 24px;
    font-weight: 400;
}

.ct_talk {
    margin-bottom: 70px;
}

.ct_talk h2 {
    margin-bottom: 40px;
}

.ct_talk>ul {
    display: flex;
    flex-flow: column;
    gap: 40px;
    margin-bottom: 50px;
}

.ct_talk>ul>li {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
}

.ct_talk>ul>li>div:nth-of-type(1) {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.ct_talk>ul>li>div:nth-of-type(1)>div h3 {
    font-family: "Inter", sans-serif;
    color: #0027B5;
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 1024px) {

    .ct_box>div:nth-of-type(3)>img {
        height: 300px;
        max-height: 100%;
        border-radius: 20px 0 20px 0;
        padding: 0;
    }

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

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

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


    .ct_box>div:nth-of-type(4)>h3 {
        font-size: 20px;
        padding-left: 10px;
    }

    .ct_member {
        padding: 30px 20px;
    }

    .ct_member>ul {
        grid-template-columns: 1fr;
    }

    .ct_member>ul>li>div:nth-of-type(1) {
        max-width: 300px;
    }

}


@media (max-width: 768px) {
    .ct_box>div:nth-of-type(3)>img {
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }

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

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

    .ct_member>ul>li {
        flex-flow: column;
    }

    .ct_member>ul>li>div:nth-of-type(1) {
        max-width: 200px;
    }

    .ct_member>ul>li>div:nth-of-type(2)::before {
        display: none;
    }

    .ct_talk>ul>li {
        grid-template-columns: 1fr;
    }
}