*{
  font-family: 'Noto Sans JP', sans-serif;
}

/* アニメーション */
main {
  box-sizing: border-box;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 2.5s;
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
/* ここまで */

.studentTitle {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 60px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  background-color: rgb(187, 219, 164);
  color: rgb(47, 47, 47);
  padding: 0.5em 1em calc(0.5em - 6px);
}

.titleLine {
  margin-top: 3px;
  content: '';
  background-color: rgb(187, 219, 164);
  width: 100%;
  height: 3px;
  bottom: -6px;
  left: 0;
}

.studentImgcontent {
  height: 420px;
  width: 650px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.studentImg {
  height: 100%;
  width: 100%;
  background-image: url("img/page12.jpg");
  background-size: cover;
}

.studentSubTitle {
  height: 150px;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-weight: bold;
  font-size: 17px;
}

.studentSubTitle1 {
  font-size: 28px;
}

.studentSubTitle2 {
  margin-top: 20px;
  font-size: 24px;
}

.studentContents {
  width: 740px;
  margin:  0 auto;
}

.studentContent1,.studentContent2,.studentContent3 {
  font-size: 16px;
}

.studentContent3 {
  padding-bottom: 80px;
}

.supporterRecruitment-btn {
  padding-top: 40px;
  padding-bottom: 100px;
  text-align: center;
}

button {
  height: 60px;
  width: 290px;
  font-size: 30px;
  color: rgb(47, 47, 47);
  background-color: rgb(172, 210, 146);
  border-radius: 100vh;
  border:none;
  font-weight: bold;
}

button:hover {
  opacity: 0.8;
  cursor : pointer;
  transform: translateY(2px);
}

@media screen and (max-width: 960px) {
	/* 960px以下に適用されるCSS（タブレット用） */
  .studentContents {
    width: 600px;
  }
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .studentTitle {
    height: 80px;
    font-size: 24px;
  }

  .studentImgcontent {
    height: 300px;
    width: 370px;
  }

  .studentSubTitle {
    margin-top: 15px;
  }

  .studentSubTitle1 {
    font-size: 18px;
  }

  .studentSubTitle2 {
    margin-top: 50px;
    font-size: 16px;
  }

  .studentContents {
    width: 345px;
    font-size: 10px;
  }

  .studentContent1,.studentContent2,.studentContent3 {
    font-size: 0px;
  }

  .supporterRecruitment-btn {
    padding-top: 40px;
    padding-bottom: 100px;
    text-align: center;
  }

  button {
    width: 230px;
    font-size: 22px;
  }
}