@charset "UTF-8";
/*===========================================
	threeCntArea
=============================================*/
.threeCntArea li {
  width: 340px;
  border: solid 1px #DEE2E2;
  box-sizing: border-box;
}
.threeCntArea li .txtArea {
  padding: 15px;
  box-sizing: border-box;
}

/*===========================================
	photoGallery
=============================================*/
.photoGallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
}
.photoGallery li {
  width: 24%;
  /* お好みの幅で指定 */
  /* paddingと合わせてbox-sizingも指定 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin-bottom: 10px;
}
.photoGallery li img {
  width: 100%;
  height: auto;
}

.photoGallery:before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}

.photoGallery:after {
  content: "";
  display: block;
  width: 24%;
}

/*===========================================
	スマホ対応
=============================================*/
@media (max-width: 700px) {
  /*===========================================
  	threeCntArea
  =============================================*/
  .threeCntArea li {
    width: 100%;
  }
  .threeCntArea li .txtArea {
    padding: 15px 15px 25px 15px;
    box-sizing: border-box;
  }
  .threeCntArea li .txtArea .font_22 {
    font-size: 18px;
  }

  /*===========================================
  	photoGallery
  =============================================*/
  .photoGallery li {
    width: 49%;
    margin-bottom: 10px;
  }
  .photoGallery li img {
    width: 100%;
    height: auto;
  }

  .photoGallery.w820 {
    width: 100%;
  }

  .photoGallery:before {
    content: "";
    display: block;
    width: 24%;
    order: 1;
  }

  .photoGallery:after {
    content: "";
    display: block;
    width: 24%;
  }
}
