/***主顏色***/
:root {
  --bgColor: #FFFFFB;
  --mainColor: #f0883f;
}
/***********/
.home {
  background: url(img/banner4.jpg) center no-repeat;
  background-size: cover;
  animation-name: banner;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}
body {
  background-image: url(./img/bg.jpg);
  background-size: cover;
}
.about {
  background: url(img/aboutBg.jpg) center no-repeat fixed;
  background-size: cover;
}
#menu01 li {
  display: flex;
  flex-direction: column;
}
#menu01 li h4 {
  font-size: 22px;
}
#menu01 li p {
  color: #084b80;
}
.sns {
  display: flex;
  width: 60%;
  justify-content: space-between;
}
.sns a {
  padding: 10px;
}
/* swiper */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#copyright {
  background-color: #084b80;
  color: white;
}
/* swiper */
img {
  width: 100%;
  height: 100%;
}
@keyframes banner {
  0% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  28% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  33% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  61% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  66% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  95% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
  100% {
    background: url(img/banner4.jpg) center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width:770px) {
  .sns {
    margin: auto;
  }
  .home {
    height: 180px;
  }
  body {
    background-image: url(./img/bg2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position-y: -400px;
  }
}