@charset "UTF-8";

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

.comment {
  position: relative;
}

.comment::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url(../img/comment/comment_bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.comment-wrapper {
  margin: 0 auto;
  padding: 120px 0;
}

.comment-ttl {
  width: 23.8%;
  margin: 0 auto 18px;
}

.comment-order {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 80px;
}

.comment-list {

}

.comment-list-item {
  margin-bottom: 80px;
}

.comment-list-item:last-child {
  margin-bottom: 0;
}

.comment-list-txt {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  padding-bottom: 26px;
}

.comment-list-name {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.comment-list-job {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  padding-top: 5px;
}

@media screen and (min-width: 769px) {

  .comment-wrapper {
    max-width: 1000px;
    width: 90%;
  }

}

@media screen and (max-width: 768px) {

  .comment::after {
    background-image: url(../img/comment/comment_bg_sp.jpg);
  }
  
  .comment-wrapper {
    width: 92%;
    padding: 21.333vw 0;
  }
  
  .comment-ttl {
    width: 46.086%;
    margin: 0 auto 4.226vw;
  }
  
  .comment-order {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 17.066vw;
  }
  
  .comment-list-item {
    margin-bottom: 17.066vw;
  }
  
  .comment-list-txt {
    font-size: 16px;
    padding-bottom: 4.226vw;
  }
  
  .comment-list-name {
    font-size: 26px;
    text-align: center;
  }
  
  .comment-list-job {
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    padding-top: 2vw;
  }

}