@charset "utf-8";
/* CSS Document */

.st_header {
	width: 100%;
	padding: 50px 0;
}

.st_header .st_header_logo {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.content_bg {
	margin: 0 auto;
	padding: 2% 0;
	background-color: #eee;
}

/* テーブル全体の枠線と太さのルール */
.spec_table {
  	width: 100%;
  	max-width: 800px;
   	margin: 30px auto;
  	border-collapse: collapse; /* 隣り合う枠線を一本にまとめる */
  	border: 1px solid #333;    /* 外枠 */
  	font_size: 14px;
  	line_height: 1.6em;
	text-align: left;
	background-color: #fff;
}

/* 共通のセル設定（余白と線） */
.spec_table th, 
.spec_table td {
  	border: 1px solid #333;    /* 内側の線 */
  	padding: 12px 15px;        /* セル内の余白 */
}

/* 左側の見出し列（グレーの背景） */
.spec_label {
  	background-color: #d3d3d3; /* 薄いグレー */
  	width: 30%;/* 見出しの幅を固定 */
	font-size: 14px;
  	vertical_align: middle;
	text-align: left;
}

/* 右側の内容列 */
.spec_content {
  	background_color: #fff;
  	vertical_align: middle;
	font-size: 14px;
}

.spec_content strong {
	font-weight: 600;
	font-size: 16px;
}

/*アコーディオン*/

.accordion-003 {
  	width: 100%;
  	max-width: 800px;
   	margin: 30px auto;
    border-bottom: 1px solid #333;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: .5em;
	font-size: 17px;
	line-height: 2em;
    font-weight: 500;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 15px;
    height: 16px;
    margin-left: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    opacity: 0;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}

.accordion-content {
	margin: 0;
	padding: 15px 30px;
	background-color: #fff;
    /*border: 2px solid #CECECE;*/
	border-bottom: none;
	text-align: left;
}

.scimg {
	width: 90%;
	max-width: 600px;
	margin: 5% auto;
	border: solid 1px #CECECE;
	box-sizing: border-box;
}

@media only screen and (max-width:750px){
	
	/* テーブル全体の枠線と太さのルール */
	.spec_label {
		width: 35%;
		font-size: 12px;
	}
	
	.spec_table th, .spec_table td {
    	padding: 8px;
	}
	
	.spec_content {
		font-size: 12px;
	}
	
	.spec_content strong {
		font-size: 13px;
	}
	
	.accordion-003 summary {
		font-size: 15px;
	}
	
	.accordion-003 summary::after {
	    width: 12px;
    	height: 13px;
    	margin-left: 10px;
    	border-bottom: 2px solid #333;
    	border-right: 2px solid #333;
	}
    
	.accordion-content {
	    padding: 5px 15px;
	}
	
	.scimg {
		width: 70%;
		max-width: 400px;
	}
	
}