:root {
  --mainColor: ;
  --mainFontColor: #485a71;
  --mainBorder: 1.5px solid var(--mainFontColor);
}

#mainBg {
  background-color: rgb(245, 245, 245);
}

.mainCover {
  /* background-color: rgba(34, 24, 20, 0.5); */
}

#home {
  background-image: url(img/home.jpg);
}

.homeCover {
  /*background-color:rgba(64,33,15,0.1);*/
}

@media screen and (max-width:1024px) {
  #home {
    height: 50vw;
  }
}

#sns ul li a {
  filter: brightness(0);
}

h3,
h2 {
  font-weight: 500;
  letter-spacing: 6px;
}

p,
li,
a {
  font-weight: 400;
  letter-spacing: 6px;
}

.mainList li a {
  font-weight: 500;
  font-size: 20px;
}

#logo img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
}

#about P {
  text-indent: 35px;
  font-size: 20px;
}

#menu {
  background-color: #485a71;
}

h2.menu {
  text-align: center;
  color: #fff;
  font-size: 30px;
}

@media only screen and (max-width: 600px) {
  #menu_m>div {
    width: 100%;
  }

  #about P {
    text-indent: 35px;
    font-size: 16px;
  }

  h2.menu {
    text-align: center;
    color: #fff;
    font-size: 18px;
  }

  #logo img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
  }
}

/* 動畫區域開始 */
* {
  font-family: 'Lato', sans-serif;
}


.center-wrap {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

.loader h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.5);
  background: url('https://image.ibb.co/j9p51L/wave-h120.png') repeat-x left bottom;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
}

.water-ani {
  animation: water-flow 10s linear infinite;
}

@keyframes water-flow {
  0% {
    background-position: left -60px bottom -100px;
  }

  50% {
    background-position: left 600px bottom 20px;
  }

  100% {
    background-position: left 1200px bottom -100px;
  }
}



@media only screen and (max-width: 768px) {
  .loader h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    background: url('https://image.ibb.co/j9p51L/wave-h120.png') repeat-x left bottom;
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
  }
}

/* 動畫區域結束 */