@charset "UTF-8";
/* レイアウト用 */

.container{
  display: block;
  margin: 0 auto;
  width: 100%;
  margin-top: 100px;
}

.wrap{
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_wrap_reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
    flex-wrap:wrap-reverse;
}


.center{
  text-align: center;
}

img {
  display: block;
}

/* flexと並行して使うやつ */

.layout_center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.layout_evenly{
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.layout_justify{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.layout_distribute{
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.layout_reverse{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* レイアウト幅 */

.col_4_3,.col_4_2,.col_5_4,.col_5_3,.col_5_2,.col_3_2,.col_2_1,.col_3_1{
  width: 100%;
}

.col_4_1,.col_5_1{
  width: 50%;
}

@media screen and (min-width: 768px){

  .col_3_2{
    width: 66%;
  }

  .col_3_1{
    width: 33%;
  }

  .col_4_3{
    width: 75%;
  }

  .col_4_2,.col_2_1{
    width: 50%;
  }

  .col_4_1{
    width: 25%;
  }

  .col_5_4{
    width: 80%;
  }

  .col_5_3{
    width: 60%;
  }

  .col_5_2{
    width: 41%;
  }

  .col_5_1{
    width: 20%;
  }

}

@media screen and (max-width: 768px) {
  .container{
    display: block;
    margin: 0 auto;
    width: 100%;
    margin-top: 70px;
  }
  
}