/*--------------------------------
	base
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
}
/*--------------------------------
	base
--------------------------------*/
.main-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrap > img {
  width: 50%;
  display: inline-block;
}

/*--------------------------------
	comment
--------------------------------*/
.comment {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5vw 0;
  width: calc(90vw + 20px);
}
h2 {
  font-size: 40px;
}
.title > p {
  font-size: 12px;
}
.title > h2 {
  margin-bottom: 20px;
}
.comment > .text {
  width: 80%;
}
.inner > li {
  list-style-type: none;
  padding-bottom: 10px;
}
/*--------------------------------
	mobile
--------------------------------*/
@media screen and (max-width: 959px) {
  .comment {
    display: block;
  }
}
