/* タブタイトル付き囲み枠 */
.box4 {
 position: relative;
 margin: 3em auto;
 padding: 1em 1em;
 width: 80%;
 border: 3px solid #909090;/* 枠線の太さ・色 */ 
}

.box4-title {
 position: absolute;
 display: inline-block;
 top: -27px;
 left: -3px;
 padding: 0 9px;
 height: 25px;
 line-height: 25px;
 content: "";
 vertical-align: middle;
 font-size: 17px;
 font-weight: bold;
 color: #ffffff;/* タイトル色 */
 background: #909090;/* タイトル背景色 */
 border-radius: 5px 5px 0 0;
}