body {
    background-color: #f6bbc17a;
}

.contents_wrapper {
    margin: auto;
    width: 70%;
}

.page_title {
    margin: 50px 0;
    display: flex;
    align-items: center;
}

.title_dots {
    width: fit-content;
    display: flex;
    align-items: center;
}

.title_dots div {
    border-radius: 50%;
    background-color: #39b1bb;
    margin-right: 8px;
}

.title_dots div:first-child {
    width: 20px;
    height: 20px;
}

.title_dots div:not(:first-child) {
    width: 10px;
    height: 10px;
}

@media screen and (max-width: 1200px) {
    .title_dots div:nth-child(5) {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .title_dots div:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .title_dots div:nth-child(3) {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .title_dots div:nth-child(2) {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .title_dots div:nth-child(1) {
        display: none;
    }
}

.page_title h1 {
    color: #e5606a;
    font-size: max(2.5vw, 30px);
}

.small_heading {
    display: flex;
    margin: 15px 0 5px;
}

.small_heading h7 {
    color: #e5606a;
}

.small_heading_dots.left div {
    margin-right: 5px;
}

.small_heading_dots.right div {
    margin-left: 5px;
}

.small_heading_dots {
    display: flex;
    align-items: center;
}

.small_heading_dots div {
    border-radius: 50%;
    background-color: #e5606a;
    width: 5px;
    height: 5px;
}

.page_img {
    background-color: #fff;
    border: 10px solid #fff;
    border-radius: 20px;
    margin: 0 auto 50px;
    width: fit-content;
    height: 330px;
}

.page_img img {
    width: 500px;
    height: 330px;
    border-radius: 15px;
    object-fit: cover;
}

@media screen and (max-width: 750px) {
    .page_img {
        height: 200px;
    }

    .page_img img {
        width: 300px;
        height: 200px;
    }
}

.textbox_frame {
    background-color: #e5606a;
    border: 8px solid #e5606a;
    border-radius: 50px;
}

.textbox_interval:not(:last-child) {
    margin-bottom: 45px;
}

.textbox_interval:last-child {
    margin-bottom: 100px;
}

.textbox {
    border-radius: 45px;
    background-color: #fff;
    padding: 40px 7%;
}

.textbox h6 {
    color: #e5606a;
}

.textbox p {
    line-height: 1.6rem;
    letter-spacing: 0.03rem;
}

.meeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.textbox_img {
    width: 450px;
    border-radius: 15px;
}

.meeting div {
    width: 300px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1365px) {
    .meeting {
        flex-direction: column;
        width: fit-content;
        margin: 0 auto;
    }

    .textbox_img {
        margin-bottom: 15px;
    }

    .meeting div {
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 850px) {
    .textbox_img, .meeting div {
        width: 290px;
    }
}

.p_interval {
    margin-top: 10px;
}

.under_only_h6 {
    margin-top: 15px;
}

.thumbnail {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal_content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 50px;
    right: 200px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0 5px;
}

.impact {
    font-weight: 600;
    color: #e5606a;
}