@charset "utf-8";

.section {
    width: 840px;
    padding: 20px;
}
.sectionItems {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    width: 840px;
    margin-bottom: 40px;
}

.sectionItems .title {
    font-size: 20px;
    margin-bottom: 20px;
	font-weight: 600;
}
.sectionItems .txt {
	overflow: auto;
    font-size: 14px;
}
.section .txt a {
    color: #000;
    text-decoration: underline;
}

.sepDot {
    border-top: dashed 1px #ccc;
    padding-top: 8px;
}

@media only screen and (min-width:641px) and (max-width:999px) {
    .section {width: 80%;}
    .sectionItems {margin: 0 auto 40px;}
}

@media only screen and (max-width: 640px) {
    .section {
        width: 80%;
        margin: 0 auto;
        padding: 4vw;
    }
    .sectionItems {
        width: 100%;
        margin: 0 auto 6vw;
    }
    .sectionItems .title {
        font-size: 5vw;
        margin-bottom: 4vw;
    }
    .sectionItems .txt {
		overflow: auto;
		margin-bottom: 4vw;
	    font-size: 12px;
	}
    .sepDot {padding-top: 1.5vw;}

}

@media only screen and (max-width: 320px) {
    .sectionItems .txt {
		word-break: break-all;
	}
}
