@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
#contents h1 {
  background-color: #FFFFFA;
  border-top: 1px solid #CCC;
}
#contents h1 img {
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #contents h1 img.pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #contents h1 {
    border-top: none;
  }
  #contents h1 img.sp {
    display: block;
  }
}
/*---------------------- Profile ------------------------*/
#profile {
  padding: 40px 0 60px;
  background: url(../images/profile_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
#profile .inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 0 0 100px;
  box-sizing: border-box;
}
#profile .profileMain {
  display: block;
  width: 43%;
}
@media screen and (max-width: 1149px) {
  #profile {
    background: url(../images/profile_bg2.jpg) no-repeat center bottom;
    background-size: cover;
  }
  #profile .inner {
    padding: 0 0 0 60px;
  }
  #profile .profileMain {
    width: 40%;
  }
}
#profile h2 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 2.8em;
  padding: 0 0 20px;
  color: #E3231D;
  border-bottom: 2px solid #E3231D;
}
#profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.85em;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1249px) {
  #profile h2 {
    font-size: 3.0vw;
    padding: 0 0 15px;
  }
  #profile dl {
    font-size: 1vw;
  }
}
#profile dt {
  width: 9em;
  padding: 10px 0;
  border-bottom: 1px solid #CCCCCC;
  line-height: 150%;
  color: #000000;
  box-sizing: border-box;
  text-align: center;
}
#profile dt:last-of-type {
  border-bottom: 2px solid #E3231D;
}
#profile dd {
  width: calc(100% - 9em);
  padding: 10px 0;
  border-bottom: 1px solid #CCCCCC;
  line-height: 150%;
  box-sizing: border-box;
}
#profile dd:last-of-type {
  border-bottom: 2px solid #E3231D;
}
@media screen and (max-width: 767px) {
  #profile {
    padding: 56.4% 0 10px;
    background: url(../images/profile_bg2.jpg) no-repeat center top;
    background-size: contain;
  }
  #profile .inner {
    padding: 15px 20px;
  }
  #profile .profileMain {
    width: 100%;
  }
  #profile h2 {
    font-size: 2em;
    padding: 0 0 15px;
  }
  #profile dl {
    font-size: 12px;
  }
  #profile dt {
    width: 80px;
  }
  #profile dd {
    width: calc(100% - 80px);
    padding-left: 20px;
  }
}
/*---------------------- Photo Gallery ------------------------*/
#photoGallery {
  padding: 40px 0 40px;
  background-color: #F7F7F4;
}
#photoGallery .inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}
#photoGallery h2 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 2.8em;
  margin: 0 0 40px;
  color: #E3231D;
}
#photoGallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#photoGallery ul li {
  list-style-type: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  background-color: #FFFFFF;
}
#photoGallery ul li img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  #photoGallery ul li {
    width: 22.75%;
    margin-right: 3%;
    margin-bottom: 3%;
    padding: 10px;
  }
  #photoGallery ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #photoGallery {
    padding: 20px 0 10px;
  }
  #photoGallery .inner {
    padding: 0 20px;
  }
  #photoGallery h2 {
    font-size: 2em;
    margin: 0 0 20px;
  }
  #photoGallery ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 5px;
  }
  #photoGallery ul li:nth-child(2n) {
    margin-right: 0;
  }
}