.title {
  font-size: 12pt;
}
.date {
  text-align: right;
  font-size: 8pt;
}
.text {
  font-size: 10pt;
}

.flexLeft {
  -webkit-flex: 1;
  flex: 1;
}
.flexCenter {
  -webkit-flex: 0.1;
  flex: 0.1;
}
.flexRight {
  -webkit-flex: 1;
  flex: 1;
}

.width30{
  max-width: 400px;
  min-width: 50px;
}

.responsive {
  display: none;
}


@media only screen and (max-width: 1080px){
  #single .flexbox {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 750px){
  .responsive {
    display: block;
  }
  .flexCenter {
    display: none;
  }
 
  #contents .flexbox {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
