.menu {
}
.menu input {
	display: none;
}
.menu label {
	padding: 8px 26px 8px 10px;
	display: block;
	color:#171717;
	/*border-bottom: solid 1px #aeaeb4;*/
	overflow: hidden;
	/*background-color: transparent;*/
	background-color:#f3f3f3;
	cursor: pointer;
	position: relative;
	font-weight: 700;
}
.menu ul:not(.iPhoneULIndex) {
	height: 0;
	overflow: hidden;
	transition-duration: 1s;
	background-color:#FFF;
	padding: 0 10px;
	/*margin-top:10px;*/
}
.menu ul:not(.iPhoneULIndex) li {
	padding: 0 10px 0 30px;
	border-bottom: solid 1px #aeaeb4;
	overflow: hidden;
	background-color: transparent;
}
.menu ul:not(.iPhoneULIndex) li a {
	padding: 15px 0;
	text-decoration: none;
	display: block;
	background: url(img/trainav.png) right center no-repeat;
}
.menu input:checked + label + ul {
	height: auto;
}
/*チェックのアイコン（↓）*/
.menu label:after {
	color: #e94031;
	font-family: "FontAwesome";
	content: "▽";
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top:-11px;
}
/*チェックのアイコン（↑）*/
.menu input:checked + label::after {
	content: "△";
}

.tex {
	padding:14px 0;
}



*,
*::after,
*::before {
  box-sizing: border-box;
}

.accordion {
  width: 500px;
  max-width: 100%;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスを非表示にする */
.accordion-hidden{
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 8px;
  background: #16035c;
  cursor: pointer;
  margin: 3px 10px 0 10px;
  font-weight: 700;
  text-align:center;
  color:#FFF;
}

/* Answer部分は最初は表示しない */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;/* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示 */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px;
  margin:0 10px 20px 10px;
  background: #FFF;
  font-weight: 700;
  color:#000;
  text-align:center;
}