@charset "UTF-8";

body {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  background: url(../img/comment_bg_pc.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 1000px) {
  body {
    background: none;
  }
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/comment_bg_sp.jpg) center no-repeat;
    background-size: cover;
    z-index: 0;
  }
}

.comment {
  position: relative;
  width: 55%;
  margin: 0 0 0 35%;
  padding: 65px 0;
  z-index: 2;
}
.comment-title {
  width: 50%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.comment-title img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.comment-title-caption {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  text-align: center;
}
.comment-wrap {
  margin: 55px 0 0;
}
.comment-item {
  padding: 1.25em;
  box-sizing: border-box;
  color: #fff;
  border-radius: 10px;
  background: rgba(71,181,187,.9);
}
.comment-text {
  margin: 0 0 1.5em;
  font-size: 15px;
  font-weight: 500;
}
.comment-name {
  font-size: 23px;
  font-weight: 700;
}
.comment-name-title {
  font-size: 12px;
  font-weight: 500;
}
.comment-name-sub {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}
.comment-close {
  display: none;
  width: 230px;
  height: 40px;
  margin: 60px auto 0;
  line-height: 40px;
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  background: rgba(71,181,187,1);
  transition: .25s;
}
.comment-close.alone {
  display: block;
}
.comment-close:hover {
  color: rgba(71,181,187,1);
  background: #fff;
}

@media screen and (max-width: 1000px) {
  .comment {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 55px;
    z-index: 2;
  }
  .comment-title {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .comment-title img {
    width: 100%;
    max-width: 240px;
    height: auto;
  }
  .comment-wrap {
    margin: 40vh 0 0;
  }
}