@charset "UTF-8";
@import url(sanitize.css);

body{
  background-color: #00BFFF;
}
.box{
  background-color: #f0f0f0;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

/*ヘッダー*/
.header{
  text-align: center;
}
.logo{
  width: 75%;
  height: auto;
  z-index: auto;
}

/*ゼミ紹介*/
.section-title{
  color: #00529F;
  text-align: center;
  font-size: 34px;
  margin: 0;
  padding: 0;
  margin-top: 50px;
}
.content-subtitle{
  color: #00BFFF;
  margin: 40px 10px 30px 5px;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 30px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.content-subtitles{
  color: #00BFFF;
  margin: 40px 10px 0 5px;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 30px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.explanation{
  text-align: center;
  margin: 0;
  margin-left: 25px;
  margin-right: 25px;
}
.text p{
  margin: 10px 25px;
 }

/*新里先生*/
.teacher{
  text-align: center;
}
.photograph img{
  width:50%; 
  height:auto;
  text-align: center;
}
.sentence{
  text-align: left;
}

/*授業内容*/
.wrap {
  display: flex;
  align-items: center;
  height: 340px;
  overflow: hidden;
}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
.heading{
  margin: 0;
  padding: 0;
}
.comment p{
  margin: 0 25px;
  line-height: 1.7em;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.content_slide {
  width: 400px;
  height: 250px;
}
.danger{
  font-size: 10px;
  text-align: left;
  color: #002092;
}
/*交流会*/
.heading{
  text-align: center;
  line-height: 3em;
  font-size: 20px;
}


/*ゼミ生紹介*/
.container{
  display: flex;
  flex-wrap: wrap;
}
.friend{
  text-align: center;
  width: 50%;
  border: 1px solid #00BFFF;
}
.picture{
  width: 100%;
  height: auto;
}
.interview{
  margin: 5px 25px;
  text-align: center;
}

/*ゼミ生インタビュー*/
.qa-006 {
    max-width: 600px;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-006 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
    font-size: 14px;
    text-align: left;
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
}

.qa-006 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/*ギャラリー*/
.achievement{
  width: 50%;
  border: 1px solid #00BFFF;
}
.production{
  text-align: center;
}
.icon1{
  text-align: center;
  width: 100%;
  height: auto;
}

.icon1:hover{
  transform:scale(1.1);
}

.prose{
  font-size: 14px;
  margin: 10px 15px;
}


/*質問コーナー*/
.question{
  text-align: center;
  font-size: 24px;
}

/*footer*/
.footer{
  text-align: center;
  margin-top: 50px;
  background: #00bfff42;
  color: #fff;
}
footer small{
  color: #000;
}

/*メディアクエリ*/
@media screen and (max-width: 480px){
 
}