@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------------------

  ボックス表示

------------------------------------------------------------------------------*/
.box {
    position: relative;
    margin: 2em auto;
    padding: 0.5em 1em;
/*    border: solid 3px #95ccff;*/
    border: solid 3px gold;
    border-radius: 8px;
/*	width: 100%;*/
	width: 90%;
}
.box .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #000;
    color: gold;/*#95ccff;*/
    font-weight: bold;
}
.box p {
    margin: 0; 
    padding: 0;
}


