/*--------------------------------
	base
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
}
/*--------------------------------
	base
--------------------------------*/
.flag-status {
  width: 100%;
  padding: 20px;
  background: #ddd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
/*--------------------------------
	main-wrap
--------------------------------*/
.main-wrap {
  width: 90vw;
  margin: 0 auto;
  padding-top: 5vw;
  border-radius: 10px;
}
/*--------------------------------
	list
--------------------------------*/
.list-thumbanil {
  margin-bottom: 20px;
}
.list-body {
  max-width: calc(1600px + 20px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  /* left: -10px; */
  width: calc(90vw + 20px);
}
.list-wrap {
  cursor: pointer;
  display: inline-block;
  width: calc(100% / 3 - 20px);
  margin: 50px 10px;
}
.thumbnail-body {
  width: calc(100%);
  height: 80%;
  overflow: hidden;
  border-radius: 20px;
}
.thumbnail-body img {
  width: 100%;
}

.list-text > .text {
  font-size: 20px;
}
/*--------------------------------
	modal
--------------------------------*/
.is-visible {
  overflow: hidden;
}
.is-visible > .modal-bg {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
}
.is-visible.modal-list {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
  display: block;
}
.is-visible .modal-bottun {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}
.modal-bg {
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.09);
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  z-index: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrap {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: inline-block;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.modal-list {
  position: absolute;
  max-width: calc(1550px + 0px);
  width: calc(85vw + 0px);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  transition: opacity 0.5s, visibility 0.5s;
}
.modal-thumbanil {
  width: 100%;
  margin: 0 auto;
  height: 60vh;
  border-radius: 20px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.modal-thumbanil img {
  width: 100%;
}
.modal-bottun {
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 2vw;
  right: 2vw;
}
.modal-bottun > .button {
  cursor: pointer;
  padding: 10px;
}
.modal-bottun > .max,
.min {
  opacity: 0.2;
  transition: 0.4s;
}

/*--------------------------------
	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;
  }
}
