/* アコーディオン全体 */
.accordion-area {
	list-style: none;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.accordion-area li {
	margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/* アコーディオンタイトル */
.title {
	position: relative;
	cursor: pointer;
	font-size: 2rem;
	font-weight: normal;
	padding: 3% 3% 3% 50px;
	transition: all .5s ease;
}

/* アイコンの＋と× */
.title::before,
.title::after{
	position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #333;
}

.title::before{
	top:50%;
	left: 15px;
	transform: rotate(0deg);
}

.title::after{
	top: 50%;
	left: 15px;
	transform: rotate(90deg);
}

/* closeというクラスがついたら形状変化 */
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after {
	transform: rotate(-45deg);
}

/* アコーディオンで現れるエリア */
.box_ac {
	display: none;
	background: #f3f3f3;
	margin: 0 3% 3% 3%;
	padding: 3%;
}


/***　おしゃれテーブル5　ポルカドット ***/
 
.osare5-table {
 width:100%;
 table-layout: fixed;
   border: none !important;
    border-collapse: separate;
    border-spacing: 2px 2px;
}


.osare5-table th {
   border: none !important;
}

.osare5-table tbody td {
  border: none !important;
  background-color:#fefefe !important;
  border-bottom: solid 2px #f9f9f9 !important;
  background-size:30px 30px;
  background-position: 0 0, 15px 15px;

}

/* ヘッダー */
.osare5-table thead th {
  font-weight: bold;
  border-radius: 5px 5px 5px 5px;
  background:#f6f0ff;
}

/* フッター（比較表と色つけたとき用） */
.osare5-table tfoot td {
border-radius: 0 0 10px 10px;
}
 
 
/* ボディ項目 */
.osare5-table tbody th {
  border-radius: 5px 5px 5px 5px;
  background:#fffcf0;
  font-weight: bold;
  border-bottom: solid 2px #f9f9f9 !important;
  line-height:4.5em;
}
 
/* フッター項目 */
.osare5-table tfoot th {
 background:none;
 line-height:3em;
 font-weight: bold;
}


/* フッターデータ(フッターがあるときのみ有効) */
.osare5-hikaku tfoot td {
 border: none !important;
 background:none;
 text-align:center;
 font-weight:600;
 font-size:1em;
}

 
/* ボディデータ */
.osare5-table tbody td {
 text-align:center;
}
 
/* .osare5-table thead th:first-child  {
  background:none;
} */

 
/* 最終行のボーダーをなくす */
.osare5-table tbody tr:last-child th,
.osare5-table tbody tr:last-child td {
 border-bottom:none !important;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .osare5-table thead th,
  .osare5-table tbody th {
      padding:0;
  }
  .osare5-table tfoot td {
  padding:0;
  font-size:0.9em;
  }
.osare5-table tfoot td:nth-child(2) {
   font-size:1em;
  }
  
}