@charset "utf-8";
/*------------------------------------------------------------
	よくあるお困りごと
------------------------------------------------------------*/
#main {
	margin: 0 auto 40px;
	width: 1100px;
}

#conts .headLine02 {
	margin-bottom: 20px;
	color: #FFF;
	background-color: #83b2dc;
}

#conts .comContact .lBox img {
	margin: 70px 0 0px;
}

.problems_text{
	font-size:14px; 
	margin-bottom: 20px;
}

/*---------------------------------
	アコーディオンボックス
--------------------------------*/
.acbox{
	width: auto;
	font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
	margin:0 0px; /* ボックス全体の位置調整 */
}

.acbox label{
	color: #696969;
	border-top: 1px solid #c1c1c2;
	border-bottom: 0px solid #c1c1c2;
	padding: 0 25px;
	margin-top: 0px;

	width: auto;
	font-size:  15px; /* ラベルの文字サイズ */
	font-weight: bold;
	text-align: left;
/*   background: #FFF; /* ラベルの背景色 */
	position: relative;
	display: block;
	padding: 20px;
/* border-radius: 4px;ラベルの角の丸み */
/* cursor: pointer;
  color: #fff;*/
}

.acbox label:hover{
	background: #f5f5f5; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
	display: none;
}

.acbox label:after{
	color: #000;
	content:"▼"; /* ラベルのアイコン */
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -14px;
}

.acbox input:checked ~ label::after {
	content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
	height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
	text-align: left;
	height: auto;
	padding:  20px  18px  30px  18px ; /* 開いた部分の枠内の余白 */
	border-radius: 0px;
	background: #FFFFFF; /* 開いた部分の背景色 */
	opacity: 1;
}

.acbox input:checked ~ label {
	background: #f5f5f5; /* クリック後のラベルの背景色 */
	font-size: 15px; /* 開いた部分の文字サイズ */
}

.acbox-under{
	color: #555555; /* 開いた部分の文字色 */
}

.midashi {
	border-bottom: 1px dotted #a9a9a9;
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-size: 14px;
}

.midashi_nb {
	margin-bottom: 0px;
	padding-bottom: 20px;
	font-size: 14px;
}

.midashi span, .midashi_nb span{
	font-size: 15px;
	display: block;
	font-weight: 600;
}

.tab-wrap {
	display: flex;
	flex-wrap: wrap;
}

.tab-label {
	margin-top: 10px;
	margin-bottom: 0px;
	font-size: 15px;
	font-weight: 800;
	text-align: center;
	line-height:30px;
	height: 30px;
	width: 110px;
	color: White;
	background: #c0c6c9;
	margin-right: 5px;
	padding: 20px 12px;
	order:-1;
}

.tab-content {
	width: 100%;
	display: none;
}
.tab-switch:checked+.tab-label {
	background: Salmon;
}
.tab-switch:checked+.tab-label+.tab-content {
	margin-top: 50px;
	display: block;
}
.tab-switch {
	display: none;
}
