@charset "utf-8";
/* CSS Document */

/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  width: 100%; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px; /* ボックス全体の位置調整 */
    //padding: 20px 0;
    border: 3px solid #1966D0;
    box-sizing: border-box;
	background-color: #fff;
}

.acbox label{
  width: auto;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #1966D0; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:20px 0;
  //border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFF;
}

.acbox label:hover{
  background: #5191E9;
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #FFF;
  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{
  height: auto;
    padding: 5% 5% 3%;/* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #E8F5FF; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #1966D0; /* クリック後のラベルの背景色 */
}

.acbox-under{
  font-size: 15px; /* 開いた部分の文字サイズ */
  color: #555555; /* 開いた部分の文字色 */
	text-align: left
}
p.s06SubTitle {
	font-weight: bold;
    line-height: 1.5em;
    padding-bottom: 2em;
}
ul.s06TextList {}

ul.s06TextList li {
    line-height: 1.5em;
    padding-bottom: 0.6em;
    padding-left: 1em;
    text-indent: -1em;
}
ul.s06TextList li:before {
	content: "・";
}



@media only screen and (min-width : 600px) and (max-width : 1006px) {
  /*tablet用のcssを記述*/
	.acbox {
    width: 95%;
    margin: 0 auto;
	}
}

@media screen and (max-width:599px) {
  /*スマホ用のcssを記述*/
	
	.acbox input:checked ~ div{
		padding: 11% 5% 6%;
	}
	.acbox {
    width: 95%;
    margin: 0 auto;
	}
	
	
	
p.s06SubTitle {
	text-align: center;
	}
}
