.menu {
}
.menu input {
	display: none;
}
.menu label {
	padding: 15px 10px;
	display: block;
	color:#FF0;
	border-bottom: solid 1px #af8484;
	overflow: hidden;
	background-color: transparent;
	cursor: pointer;
	position: relative;
}
.menu ul:not(.iPhoneULIndex) {
	height: 0;
	overflow: hidden;
	transition-duration: 1s;
	background-color:rgba(0,0,0,0.5);
}
.menu ul:not(.iPhoneULIndex) li {
	padding: 0 10px 0 30px;
	border-bottom: solid 1px #af8484;
	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: #ff0;
	font-family: "FontAwesome";
	content: "▼";
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top:-11px;
}
/*チェックのアイコン（↑）*/
.menu input:checked + label::after {
	content: "▲";
}











*,
*::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;
}




.charatit {
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 6px;
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0078ef), color-stop(100%,#0080ff));*/
    background-color: #ff037d;
    text-align: center;
	margin:4px 6px;
	padding:4px 0;
    /*width: 90%;*/
    border-radius: 2px;
    font-size: 18px;
    /*border: solid 2px #0271df;*/
	color:#FFF;
}


.charatit a {
	text-decoration:none;
	display:block;
	color:#FFF;
}



