/*アコーディオン全体*/
.exaccordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto 20px auto;
}

.exaccordion-area li{
    margin: 10px 0;
}

.exaccordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.extitle {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.2rem;
    font-weight: normal;
    padding: 20px 3em 20px 50px;
    transition: all .5s ease;
    background-color: #165351;
    font-weight: bold;
    color: #fff;
}

/*アイコンの↑と↓*/
.extitle:after {
    content: "";
    position: absolute;
    right: 35px;
    top: 35%;
    transition: all 0.2s ease-in-out;
/*   要素の動きを指定 */

    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;

    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
/* transform: rotateで要素の角度を指定 */

}

.extitle.close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
/*   .openクラスがついた時の要素の角度を指定 */
}

/*アイコンの＋と×*/
/*.extitle::before,
.extitle::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.extitle::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.extitle::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}*/

/*　closeというクラスがついたら形状変化　

.extitle.close::before{
	transform: rotate(45deg);
}

.extitle.close::after{
	transform: rotate(-45deg);
}*/

/*アコーディオンで現れるエリア*/
.exbox {
    display: none;/*はじめは非表示*/
	margin: 3% 3% 3% 3%;
}
.exbox ul {
  margin: 0 0 10px 0;
  padding: 0;
  border: 1px solid #165351;
  padding: .5em 1em;
  box-sizing: border-box;
}
.exbox li {
  background-color: #fff;
  color: #165351;
  margin: 0 0 8px 0;
  line-height: normal;
}
.alumni img {
  width: 200px;
  height: 200px;
  float: left;
  margin: 5px 10px 10px 0;
}
.accept img {
    width: 160px;
    height: 160px;
    float: left;
    margin: 5px 10px 10px 0;
}  
.answer-name1 {
  font-weight: bold;;
}
