@charset "UTF-8";

/* unique css */
.display-inlineblock{
  display: inline-block;
}

@media screen and (min-width: 769px) { /* pc */
  .pc-display-block{
    display: block;
  }
}

/* text */
.txtstyle3 p{
  text-indent: 1em;
}

.txtstyle3 p *{
  text-indent: 0;
}

.txtstyle3 p + p{
  margin-top: 1.8em;
}

/* flex */
.pc-flex2-box{

}

.pc-flex2-box .flexitem + .flexitem{
  margin-top: 10px;
}

.pc-flex2-box .flexitem img{
  border: 1px solid #666;
}

.pc-flex2-box .item01{
  text-align: center;
}

@media screen and (min-width: 769px) { /* pc */
  div.pc-flex2-box{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  div.pc-flex2-box .flexitem{
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
  
  div.pc-flex2-box .flexitem + .flexitem{
    margin-top: 0;
  }
}
