@charset "uft-8";


.title-text {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.title-text h1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 20px;
}
.title-text h1::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 20px auto;
}


.member-list {
  width: 930px;
  max-width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns:repeat(auto-fit, 240px);
  column-gap: 95px;
  row-gap: 50px;
  justify-content: center;
  
}

.member-list dl {
  margin-top: 10px;
}
.member-list dt {
  font-weight: bold;
}
.member-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  margin-left: 0;
}

.member-list .style {
  font-size: 13px;
  margin-top: 5px;
}

.member-list .song {
  font-size: 13px;
  margin-top: 5px;
}

.member-list li {
  position: relative;
}

.illustrations p{
  font-size: 13px;
  text-align: right;
  margin-top: 15px;
  margin-right: 20px;
}
.illustrations a:hover {
  color: #4b89c2;
}
.feature {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-text {
  max-width: 600px;
  margin-right: 40px;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.feature-text h1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}
.feature-text h1::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 20px auto;
}

.feature-text p {
  font-size: 13px;
  line-height: 28px;
  margin-top: 25px;
}

.feature-text p.name {
  font-size: 13px;
  line-height: 28px;
  text-align: right;
  margin-top: 0;
}

/*==================================================
アコーディオンのためのcss
===================================*/

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

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

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

/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  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:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

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

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

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  margin:0 3% 3% 3%;
  padding: 3%;
  text-align: left;
}

.footer {
  margin-top: 100px;
}


@media (max-width: 800px) {
  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }
  .feature-text {
    margin-right: 0;
  }
  .reverse .feature-text{
    margin-left: 0;
  }
  .feature img {
    width: 100%;
    height: auto;
  }
  .movie {
    width: 500px;
    padding: 30px 25px;
  }
  .movie iframe {
    height: 240px;
  }
}


@media (max-width: 800px) {
  .member-list {
    margin-top: 45px;
    row-gap: 40px;
  }
}
