@charset "UTF-8";
/* CSS Document */
.main {
  padding-top: 60px;
}
.gallery_logo {
  display: none;
}
.gallery {
  columns: 4; /*段組みの数*/
  padding: 0 15px; /*ギャラリー左右に余白をつける*/
  margin: 0 0 80px 0;
}
.gallery li {
  margin-bottom: 20px; /*各画像下に余白をつける*/
  list-style: none;
}
/*ギャラリー内のイメージは横幅100%にする*/
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
  .gallery {
    columns: 3;
  }
}
@media only screen and (max-width: 768px) {
  .gallery {
    columns: 2;
  }
}
@media(min-width:1025px) {
  .main {
    padding-top: 100px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery_logo {
    display: block;
    position: absolute;
    top: 40px;
    left: 75px;
  }
  .gallery_logo img {
    width: 50px;
    height: auto;
  }
  .title img {
    height: 90px;
  }
  .title h2 {
    font-size: 6.0rem;
  }
  .title h2:after {
    display: none;
  }
  .gallery {
    max-width: 930px;
    margin: 0 auto 120px;
  }
}

/*-- footer --*/
.footer {
  background-color: #F7F4EA;
  padding: 50px 0 30px;
}
.footer_box {
  height: auto;
}
.footer_logo {
  width: auto;
  height: 90px;
  margin: 0 auto 20px;
}
.footer small {
  font-size: 1.4rem;
  text-align: center;
}
@media(min-width:1025px) {
  .footer {
    padding: 40px 0 30px;
  }
  .footer_logo {
    margin: 0 0 30px 0;
  }
}