@charset "utf-8";

/*about 공통*/
#fp-nav{
  display: none;
}

/**********************#main-visual*****************************/
#main-visual{
  position: relative;
}

#main-visual video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#main-visual .bg-color{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

#main-visual .mb-txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

#main-visual.active .mb-txt{
  animation: fadeIn 1.5s 0.2s backwards;
}

#main-visual .mb-txt img{
  width: 700px;
}

#main-visual .mb-txt p{
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#main-visual .mb-txt span{
  display: block;
  width: 1000px;
  margin-top: 30px;
  font-size: 1.8rem;
}

#main-visual .mb-txt span br{
  display: none;
}

#main-visual .button{
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

#main-visual .button li{
  width: 58px;
  height: 58px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: background-color 0.5s, border 0.5s;
}

#main-visual .button li:hover{
  background-color: #d8bb82;
  border: 2px solid #d8bb82;
}

#main-visual .button li a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  align-content: center;
  color: #fff;
}

#main-visual .button .about img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#main-visual .button .map a i{
  font-size: 2.6rem;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  #main-visual .mb-txt p{
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
  }

  #main-visual .mb-txt img{
    width: 640px;
  }
  
  #main-visual .mb-txt span{
    margin-top: 30px;
  }
  
  #main-visual .mb-txt span br{
    display: block;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  #main-visual .mb-txt p{
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
  }

  #main-visual .mb-txt img{
    width: 230px;
  }
  
  #main-visual .mb-txt span{
    margin-top: 25px;
    font-size: 1.4rem;
  }

  #main-visual .button{
    gap: 20px;
    bottom: 50px;
  }

  #main-visual .button li{
    width: 48px;
    height: 48px;
  }

  #main-visual .button li a{
    padding: 5px;
  }
  
  #main-visual .button .map a i{
    font-size: 2.2rem;
  }
}

/**************************************#forest***********************************/
#forest{
  display: flex;
  justify-content: space-between;
}

#forest .left{
  width: calc(100% / 2);
  height: 100vh;
  background: url(../img/sub/about.jpg) no-repeat center / cover;
  position: relative;
}

#forest .left p{
  position: absolute;
  top: 130px;
  right: 30px;
  font-family: "Pretendard";
  color: #fff;
  font-weight: lighter;
}

#forest .left p br{
  display: none;
}

#forest .right{
  width: calc(100% / 2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-30%);
  padding: 0 8% 0 5%;
}

#forest .right img{
  width: 25px;
}

#forest .right span{
  display: inline-block;
  padding-top: 8px;
  font-size: 1.8rem;
  font-weight: 500;
}

#forest .right p{
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  #forest{
    display: block;
  }

  #forest .left{
    width: 100%;
    height: 65vh;
    position: absolute;
    top: 0;
    left: 0;
  }

  #forest .left p{
    font-size: 1.4rem;
    text-align: right;
    top: 90%;
    right: 5%;
  }

  #forest .left p br{
    display: block;
  }

  #forest .right{
    width: 100%;
    padding: 0 5%;
    top: 80%;
  }

  #forest .right span{
    font-size: 1.6rem;
  }

  #forest .right p{
    font-size: 1.6rem;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {

  #forest .right img{
    width: 20px;
  }

  #forest .right span{
    font-size: 1.4rem;
  }

  #forest .right p{
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

/************************************location***********************************/

#location{
  width: 100%;
  padding: 80px 0 0;
}

#location .inner{
  text-align: center;
  position: relative;
}

#location h3{
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

#location #map{
  width: 920px;
  height: 450px;
  margin: 0 auto;
}

#location .txt{
  margin-top: 40px;
  font-family: "Pretendard";
  font-size: 1.8rem;
}

#location .txt p{
  margin-bottom: 5px;
}

#location .txt p:last-child{
  margin-bottom: 0;
}

#location .txt p span{
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
}

#location .txt .bus{
  display: flex;
  justify-content: center;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  #location{
    padding: 0;
  }

  #location h3{
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  #location #map{
    width: 610px;
    height: 450px;
  }

  #location .txt{
    margin-top: 30px;
    font-size: 1.6rem;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  #location h3{
    font-size: 2.4rem;
  }

  #location #map{
    width: 100%;
    height: 360px;
  }

  #location .txt{
    font-size: 1.4rem;
  }

  #location .txt .bus{
    width: 100%;
    flex-wrap: wrap;
    margin: 10px 0 10px;
  }
}