body {
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
/********************************************/
.allDiv {
    display: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

#targetTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #3AAFA9;
    margin-top: 30px;
    margin-bottom: 20px;
}

#chatDiv {
    position: absolute;
    display: none;
    z-index: 2;

    width: calc(100% - 40px);
    max-width: 340px;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    isolation: isolate;

    flex-wrap: wrap;
    align-content: center;

    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}

.targetBlock {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;

    width: calc(100% - 40px);
    max-width: 340px;

    background: #E5243B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;

    justify-content: center;
    flex-direction: row;
    height: 140px;
    cursor: pointer;
    z-index: 1;
}

.targetBlock .mainIcon {
    width: 100px;
    height: 100px;
}

.targetBlock .extendIcon {
    width: 16px;
    height: auto;
}

.targetBlock span {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: white;
    width: 122px;
}

#triangleDiv {
    width: 100%;
    height: 20px;
    position: relative;
}

#triangle1 {
    position: absolute;
    left: 50%;
    top : 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #f7f7f7 transparent;
    z-index: 3;
}

#triangle {
    position: absolute;
    top : 10px;
    width: 21px;
    height: 21px;
    border-left: 1px solid #f7f7f7;
    border-top: 1px solid #f7f7f7;
    background-color: #f7f7f7;
    transform: matrix(0.71, 0.69, -0.72, 0.71, 0, 0);
    z-index: 3;
}

#chat {
    line-height: 150%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    color: #717784;
    flex: none;
    flex-grow: 0;

    background-color: #f7f7f7;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #f7f7f7;
    padding: 0 17px 20px 17px;
}

.chatContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 30px 20px 20px 20px;
}

#chat ul {
    margin: 0 0 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-inline-start: 0 !important;
}

#chat li {
    font-style: normal;
    font-weight: 400;
    color: #717784;
    padding: 0;
    text-align: justify;
    margin: 0;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.02em;
}

#chat .bottom a {
    color: #3AAFA9;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.02em;
}

.chatANews, .chatAVideo {
    display: none;
}

/********************************************/
@media only screen and (min-width: 720px) {
    #container {
        width: 720px;
        flex-direction: row;
    }

    .targetBlock {
        justify-content: flex-start;
        flex-direction: column;
        height: 270px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 30px;
    }

    #chat {
        width: 700px;
        margin-left: 10px;
        margin-right: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0 40px 26px 40px;
    }

    .chatContent {
        margin: 40px;
        flex-direction: row;
        gap: 50px;
    }

    #chat li {
        font-size: 16px;
    }

    #chat .bottom {
        position: absolute;
        bottom: 20px;
        right: 30px;
    }

    #chat .bottom a {
        color: #3AAFA9;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0.02em;
    }

    #chatDiv {
        width: 100%;
        max-width: 100%;
    }

    #targetTitle {
        font-size: 36px;
        line-height: 53px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .allDiv {
        margin-bottom: 60px;
    }

    .targetBlock span {
        width: auto;
        margin-top: -20px;
        margin-bottom: 10px;
    }

    .targetBlock .mainIcon {
        width: 130px;
        height: 130px;
    }
}

/********************************************/
@media only screen and (min-width: 1080px) {
    #container {
        width: 1080px;
        flex-direction: row;
    }

    #chat {
        width: 1060px;
    }

    #chat li {
        font-size: 18px;
        line-height: 150%;
    }
}