/* 背景がグレーのボックス */
.box-glay {
	padding:20px;
	margin: 20px 350px 20px 50px;
	background-color:#f4f4f4;
	font-size: 12px;
	color: #4a4a4a;
	border-radius: 10px;
}

/* 黄色の縦線 */
.line {
    position: relative;
    font-size: 1.4em;
    padding: .5em 0em .5em .8em;
    margin-bottom: 1em;
}
.line:before {
    position: absolute;
    background-color: #f3ce2f;
    border-radius: 1em;
    content: "";
    left: 0%;
    top: 5%;
    bottom: 10%;
    width: .2em;
    height: 90%;
}

/* テキストボックス */
textarea {
    font-size: 11px;
    color: #666666;
    padding: 10px;
    width: 120px;
    height: 120px; 
}

button {
    width: 80px; /* 単位(px)を追加 */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #7c7c7c;
    color: #666666;
    text-decoration: none;
    background-color: #fff; /* 薄いグレー */
    font-size: 10px;
}

/* ボックス */
.box-manual {
    display: inline-block;      /* インラインブロック要素にする */
    border: 0.1em solid #dddddd;   
    background-color:  #f4f4f4;    /* 背景色指定 */
    padding:  1.5em;             /* 余白指定 */
    border-radius: 0.8em;
    margin: auto;
    
}

/* テーブル */
.cp_table *, .cp_table *:before, .cp_table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table {
	width: 75%;
	border-collapse: collapse;
}
.cp_table th, .cp_table  td {
	padding: 0.8em;
	border: 0.15em solid #dddddd;
}
.cp_table th {
	width: 25%;
	text-align: left;
	background: #f4f4f4;
}

.accordion-container strong {
	font-size: inherit; /* 親要素のフォントサイズを継承する */
    font-weight: bold;  /* 必要なら太字は維持 */
}


    
@media	 (max-width: 480px) {
	p {
	    margin-left: 1em;
    }
    
    .box-glay {
	width: 90%;
	
	padding:20px;
	margin: 20px 350px 20px 20px;
	background-color:#f4f4f4;
	font-size: 12px;
	color: #4a4a4a;
	border-radius: 10px;
	}

	/* 黄色の縦線 */
	.line {
    position: relative;
    font-size: 1.4em;
    padding: .5em 0em .5em .8em;
    margin-bottom: 1em;
	}
	.line:before {
    position: absolute;
    background-color: #f3ce2f;
    border-radius: 1em;
    content: "";
    left: 1.5%;
    top: 5%;
    bottom: 10%;
    width: .2em;
    height: 90%;
	}
    
}
    