@charset "UTF-8";
#mainVisual .container {
  position: relative;
}
#mainVisual .banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 300px;
  overflow: hidden;
}
#mainVisual .banner .image {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim 30s infinite;
}
#mainVisual .banner .image:nth-of-type(1) {
  animation-delay: 0s;
}
#mainVisual .banner .image:nth-of-type(2) {
  animation-delay: 10s;
}
#mainVisual .banner .image:nth-of-type(3) {
  animation-delay: 20s;
}
@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#mainVisual .msg {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: 6em;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
}
#mainVisual .msg .more-btn {
  display: inline-block;
  width: 300px;
  padding: 10px;
  margin-top: 25px;
  border: 1px solid #fff;
  border-radius: 5px;
}
#mainVisual .msg .more-btn a {
  color: #fff;
}

#about .content {
  margin-bottom: 50px;
}
#about .content .sec-ttl {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
#about .content article {
  display: inline-block;
  margin-top: 30px;
}

#event .content .sec-ttl {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
#event .content article {
  display: inline-block;
  margin-top: 30px;
}
#event .content article .content-ttl {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
#event .content article .content-text {
  width: 50%;
  float: left;
}
#event .content article img {
  width: 45%;
  margin-left: 5%;
}

#news-contact {
  width: 100%;
  margin: 50px 0;
}
#news-contact #sidebar {
  margin-left: 5%;
  width: 45%;
}

#news {
  width: 50%;
  float: left;
}

#sidebar {
  width: 50%;
}
#sidebar article {
  background-color: #FAFAFA;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
#sidebar article .tel .telNo a {
  font-size: 1.5em;
  font-weight: bold;
  color: #38a52e;
}
#sidebar article .mail {
  width: 300px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #38a52e;
}
#sidebar article .mail a {
  color: #fff;
  margin: 10px 0;
}

#calendar {
  margin-bottom: 50px;
}
#calendar .google {
  display: inline-block;
  margin-right: 15px;
}
#calendar .google iframe {
  width: 680px;
  height: 550px;
}
#calendar .google #calendarTitle {
  display: none;
}
#calendar .facebook {
  display: inline-block;
  width: 340px;
  height: 500px;
}

/* スマホ */
@media screen and (max-width: 480px) {
  #mainVisual .banner {
    height: 110px;
  }
  #mainVisual .msg {
    display: none;
  }
  #event .content article .content-text {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  #event .content article img {
    width: 100%;
    float: none;
  }
  #news-contact #news {
    width: 100%;
    margin-bottom: 50px;
  }
  #news-contact #sidebar {
    width: 100%;
    margin-left: 0;
  }
  #sidebar {
    width: 100%;
  }
  #calendar .google {
    display: block;
    margin-right: 0;
  }
  #calendar .google iframe {
    width: 100%;
  }
}