/*phone*/


/*tags*/
body {
    background-color: #e4e4e4;
}


/*main*/
.contents {
    width: 95%;
    margin-inline: auto;
    background-color: white;
    padding-bottom: 3vh;
    box-shadow: 2px 2px 2px 2px #8888883d;
}


.contents_header {
    padding-left: 6vw;
    font-size: 8vw;
    text-align: left;
    border-left: #1D2088 3vw solid;
}


.contents_header_title {
    color: black;
    text-decoration: none;
}


.contents_item {
    margin-top: 5vh;
    width: 90%;
    margin-inline: auto;
}


.contents_item_header {
    font-size: 5.5vw;
    position: relative;
}


.contents_item_header_point {
    width: 10px;
    height: 10px;
    background-color: #1D2088;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.contents_item_header_title {
    margin-left: 15px;
}


.contents_para {
    overflow-wrap: break-word;
    width: 100%;
}


.contents_para_img {
    width: min(60%, 400px);
}


.contents_para_frame_img {
    text-align: center;
}


/*tablet*/
@media screen and (max-width: 768px) {}

/*pc*/
@media screen and (min-width: 1024px) {


    /*main*/
    .contents {
        width: 80%;
    }


    .contents_header {
        font-size: 2vw;
        padding-left: 1vw;
        border-left-width: 1vw;
    }


    .contents_item_header {
        font-size: 1.25vw;
    }


    .contents_item_header_title {
        margin-left: 25px;
    }


    .contents_para_frame_img {
        text-align: left;
        display: contents;
    }


    .contents_para_frame {
        display: flex;
        justify-content: left;
        align-items: top;
    }


    .contents_para_img {
        padding-right: 3em;
        margin-left: 3vw;
    }
}