@charset "UTF-8";

*{
  margin: 0;
  padding: 0
}

ul.gallery{
  width: 680px;
  margin:0 auto;
  padding: 100px 0 0;
  list-style: none;
  display: flex;
  -webkit-display: flex;
  flex-wrap:wrap;
  -webkit-flex-wrap:wrap;
}

ul.gallery li{
  width:210px;
  height: 210px;
  margin: 0 25px 25px 0;
  overflow: hidden;
  border: 1px #fff solid;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 0
}

ul.text_area li{
  width: auto;
  height: auto;
  margin: 10px 0;
  border: none;
  cursor: none;
  overflow:scroll;
}

ul.text_area li p{
  color: #fff;

}

ul.gallery li:nth-of-type(3n){
  margin-right: 0
}

ul.gallery li img{
  display: block;
}

.large_area{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  z-index: 100
}

.large_area a.close{
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px
}
.close {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #67c5ff;
    border: solid 2px #67c5ff;
    border-radius: 3px;
    transition: .4s;
}

.close {
    background: #67c5ff;
    color: white;
}

ul.gallery li img.large_image{
  /* display: none */
  width: 450px;
  height: auto;
}

.right_area{
  width: 300px;
  height: auto;
  min-height: 450px;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
}

.text_area{
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  border-bottom: 1px #ccc solid;
  margin-bottom: 15px
}

.text_area li{
  padding: 0 10px
}

.picture img{
  display: inline-block;
  border-radius: 50%;
  width: 45px;
  height: 45px
}

.caption{
  font-size: 14px;
}

@media only screen and (max-width:600px) {
  ul.gallery{
    display: block;
    width: 100%;
  }

  ul.gallery>li{
    width: 90vw;
    height: 90vw;
    margin: 0 auto 15px;
    border:none
  }

  ul.gallery li:nth-of-type(3n){
    margin-right: auto
  }

  ul.gallery li img{
    margin: 0 auto
  }

  ul.gallery li img.large_image{
    /* display: none */
    width: 90%;
    height: auto;
  }

  div.large_area{
    flex-direction:column;
    -webkit-flex-direction:column;
    align-items: center;
    padding-top: 20px;
    -webkit-align-items: center;
    z-index: 12000
  }

  div.large_area>img{
    width: 90vw;
    height: 90vw
  }

  .right_area {
    width: 90vw;
    min-height: auto;
  }

  .caption {
    margin: 0
  }

  .right_area p:nth-of-type(2){
    padding: 0;
    margin: 0;
    display: none
  }
}
