@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressBarHorizontal {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes progressBarVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes progressCircleAnimation {
  0% {
    stroke-dashoffset: 153.86;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}
.mainArea {
  padding: 0;
  margin-left: 64px;
  margin-right: 64px;
  background-image: url(../images/bg.png);
}
@media (max-width: 1180px) {
  .mainArea {
    margin: 0;
    background-image: none;
  }
}

/*bannerArea*/
.bannerArea {
  padding-top: 90px;
  /*margin-left: 64px;
  margin-right: 64px;*/
}
.bannerArea .wrap {
  position: relative;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .Img img {
  width: 100%;
}
.bannerArea .Txt {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 535px;
  width: 100%;
}
.bannerArea .Txt .En {
  line-height: 1.1;
  font-size: 18px;
  position: relative;
  padding-left: 63px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 400;
}
.bannerArea .Txt .En::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 1px;
  width: 48px;
  background-color: #fff;
}
.bannerArea .Txt .title {
  line-height: 1.25;
  letter-spacing: 5.5px;
  font-size: 60px;
  padding-top: 25px;
  padding-bottom: 41px;
  color: #fff;
  font-weight: 500;
}
.bannerArea .Txt .content {
  line-height: 1.75;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.2px;
  font-weight: 400;
}
.bannerArea .slick-active .Txt {
  -webkit-animation: bannerTxt02 1s linear forwards;
          animation: bannerTxt02 1s linear forwards;
}
@-webkit-keyframes bannerTxt02 {
  10% {
    top: 48%;
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 50%;
  }
}
@keyframes bannerTxt02 {
  10% {
    top: 48%;
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 50%;
  }
}
.bannerArea .arrowBox {
  position: absolute;
  bottom: 60px;
  right: 49px;
  display: -ms-flexbox;
  display: flex;
}
.bannerArea .arrowBox .arrow {
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  z-index: 1;
  opacity: 0.8;
  transition: all 0.3s;
}
.bannerArea .arrowBox .arrow:hover {
  opacity: 1;
}
.bannerArea .arrowBox .arrowPrev {
  margin-right: 14px;
}
.bannerArea .arrowBox .arrow img {
  width: auto;
}
.bannerArea .slidePageBox {
  position: absolute;
  left: 14.8%;
  bottom: 76px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 123px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.bannerArea .slidePageBox::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 25px;
  width: 75px;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  z-index: 1;
}
.bannerArea .slidePageBox::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 25px;
  width: 35px;
  height: 1px;
  background-color: #fff;
  z-index: 2;
}
.bannerArea .scrollDown {
  position: absolute;
  top: 50%;
  right: 49px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  display: none;
  line-height: 1.43;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  cursor: pointer;
}
.bannerArea .scrollDown::before {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(100% + 18px);
  height: 0;
  width: 1px;
  background-color: #fff;
  transition: all 0.4s;
}
.bannerArea .scrollDown.show {
  display: block;
}
.bannerArea .scrollDown:hover::before {
  height: 55px;
}
@media (max-width: 1180px) {
  .bannerArea {
    padding-top: 60px;
    margin-left: 0;
    margin-right: 0;
  }
  .bannerArea .Txt {
    left: 0;
    padding-left: 45px;
    padding-right: 45px;
  }
  .bannerArea .Txt .En {
    font-size: 13px;
  }
  .bannerArea .Txt .title {
    font-size: 38px;
    padding-top: 23px;
    line-height: 1.18;
  }
  .bannerArea .scrollDown.show {
    display: none;
  }
  .bannerArea .arrowBox {
    bottom: 20px;
    right: 20px;
  }
}


@media (max-width: 480px) {
  .bannerArea .Txt {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
  .bannerArea .Txt .En {
    font-size: 12px;
  }
  /*.bannerArea .Txt .title {
    font-size: 28px;
    padding-top: 23px;
    padding-bottom: 23px;
    line-height: 1.18;
  }*/
  .bannerArea .Txt .title {
    font-size: 19px;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 1.18;
  }
  .slidePageBox {
    display: none !important;
  }
  .bannerArea .Txt .content {
    font-size: 14px;
    height: 36px;
    line-height: 19px;
    overflow: hidden;
  }
}

/*bannerArea end*/
/*roomArea*/
.roomArea {
  position: relative;
  top: -30px;
  padding-bottom: 121px;
}
.roomArea::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
}
.roomArea .wrap {
  position: relative;
  max-width: 1244px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.roomArea .roomBox {
  position: relative;
}
.roomArea .titleBox {
  width: 480px;
  padding-right: 83px;
  padding-bottom: 15px;
  position: relative;
  top: 149px;
}
.roomArea .titleBox em {
  line-height: 1;
  font-size: 15px;
  color: #8a8786;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.roomArea .titleBox h2 {
  font-size: 38px;
  color: #111111;
  padding-top: 35px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.7px;
}
.roomArea .titleBox .textEditor {
  font-size: 16px;
  padding-top: 15px;
  color: #252525;
  line-height: 1.5;
  font-weight: 400;
}
.roomArea .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.roomArea .Txt {
  width: 480px;
  padding-top: 41px;
  padding-right: 83px;
  margin-top: 149px;
  position: relative;
}
.roomArea .Txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 83px);
  height: 1px;
  background-color: #d1d1d1;
}
.roomArea .Txt h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 28px;
  color: #231815;
  line-height: 1;
  display: block;
}
.roomArea .Txt .darkGray {
  font-size: 15px;
  color: #626262;
  line-height: 1.67;
}
.roomArea .Txt .gray {
  font-size: 15px;
  color: #909090;
  padding-top: 6px;
  line-height: 2;
}
.roomArea .Txt .more {
  display: inline-block;
  font-size: 15px;
  margin-top: 55px;
  color: #111111;
  position: relative;
}
.roomArea .Txt .more::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(100% + 13px);
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: all 0.4s;
}
.roomArea .Txt .more:hover::before {
  width: 45px;
}
.roomArea .Img {
  width: calc(100% - 480px);
  max-width: 760px;
  height: 100%;
  position: relative;
}
.roomArea .Img img {
  width: 100%;
}
.roomArea .arrowBox {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
}
.roomArea .arrowBox .arrow {
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  border: 1px #d5d5d5 solid;
  border-radius: 50%;
  background-color: inherit;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.roomArea .arrowBox .arrow:hover {
  opacity: 1;
  border: 1px #111111 solid;
}
.roomArea .arrowBox .arrowPrev {
  margin-right: 14px;
}
.roomArea .arrowBox .arrow img {
  width: auto;
}
.roomArea .leafLeft {
  position: absolute;
  top: 135px;
  left: -64px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .roomArea .wrap {
    max-width: 1100px;
  }
  .roomArea .arrowBox {
    position: initial;
    top: initial;
    left: initial;
    padding-top: 30px;
  }
  .roomArea .Txt .more {
    margin-top: 30px;
  }
  .roomArea .leafLeft {
    top: 140px;
    max-width: 130px;
  }
}
@media (max-width: 1440px) {
  .roomArea .wrap {
    max-width: 950px;
  }
  .roomArea .Txt {
    width: 400px;
  }
  .roomArea .Img {
    width: calc(100% - 400px);
  }
}
@media (max-width: 1280px) {
  .roomArea .leafLeft {
    max-width: 100px;
  }
}
@media (max-width: 1180px) {
  .roomArea {
    background-color: #f3f3f3;
    padding: 60px 33px;
    top: 0;
  }
  .roomArea::before {
    content: initial;
  }
  .roomArea .wrap {
    max-width: 100%;
  }
  .roomArea .titleBox {
    top: 0;
    padding-right: 0;
    padding-bottom: 32px;
    width: 100%;
  }
  .roomArea .titleBox em {
    font-size: 13px;
  }
  .roomArea .titleBox h2 {
    padding-top: 14px;
    font-size: 30px;
  }
  .roomArea .item {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    position: relative;
  }
  .roomArea .Txt {
    width: 100%;
    padding-right: 0;
    margin-top: initial;
  }
  .roomArea .Txt .more {
    margin-top: 40px;
  }
  .roomArea .Txt .more::before {
    width: 45px;
  }
  .roomArea .Txt .gray {
    padding-top: 10px;
  }
  .roomArea .Txt::before {
    content: initial;
  }
  .roomArea .Img {
    width: 100%;
    margin: auto;
  }
  .roomArea .arrowBox {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: initial;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-top: 0;
    height: 42px;
    width: 100%;
    max-width: 835px;
  }
  .roomArea .arrowBox .arrowPrev {
    position: relative;
    left: -21px;
  }
  .roomArea .arrowBox .arrowNext {
    position: relative;
    left: 21px;
  }
  .roomArea .leafLeft {
    display: none;
  }
}
@media (max-width: 640px) {
  .roomArea {
    padding: 40px 25px;
  }
}

/*roomArea end*/
/*newsArea*/
.newsArea {
  padding: 0 132px 205px 132px;
  position: relative;
  top: -30px;
}
.newsArea .wrap {
  position: relative;
  max-width: 100%;
  padding: 84px 134px 80px 134px;
  background-color: #fff;
}
.newsArea .titleBox {
  position: absolute;
  top: 112px;
  left: 134px;
}
.newsArea .titleBox em {
  line-height: 1;
  font-size: 15px;
  color: #8a8786;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.newsArea .titleBox h2 {
  font-size: 38px;
  color: #111111;
  padding-top: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.7px;
}
.newsArea .newsList {
  padding-left: 234px;
}
.newsArea .newsItem {
  padding-left: 10.5px;
  padding-right: 10.5px;
}
.newsArea .newsItem .Img {
  position: relative;
}
.newsArea .newsItem .Img img {
  width: 100%;
}
.newsArea .newsItem .Txt {
  padding-top: 23px;
}
.newsArea .newsItem .Txt .title {
  font-size: 16px;
  transition: all 0.3s;
  line-height: 1.25;
  padding-bottom: 3px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  max-height: 23px;
  display: block;
  position: relative;
  transition: all 0.3s;
}
.newsArea .newsItem .Txt .title a {
  color: #231815;
}
.newsArea .newsItem .Txt .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #231815;
  transition: all 0.4s;
}
.newsArea .newsItem .Txt .title:hover::before {
  width: 100%;
}
.newsArea .newsItem .Txt .title:hover a {
  color: #231815;
}
.newsArea .newsItem .Txt .classification {
  border: 1px solid;
  padding: 5px 12px;
  margin-top: 15px;
  color: #f5c8c5;
  margin-right: 9px;
  transition: all 0.3s;
  display: inline-block;
  font-size: 13px;
}
.newsArea .newsItem .Txt .date {
  font-style: italic;
  margin-top: 15px;
  color: #231815;
  transition: all 0.3s;
  text-transform: uppercase;
  display: inline-block;
  font-size: 13px;
}
.newsArea .arrowBox {
  position: absolute;
  left: 134px;
  bottom: 146px;
  display: -ms-flexbox;
  display: flex;
}
.newsArea .arrowBox .arrow {
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  border: 1px #d5d5d5 solid;
  border-radius: 50%;
  background-color: inherit;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.newsArea .arrowBox .arrow:hover {
  opacity: 1;
  border: 1px #111111 solid;
}
.newsArea .arrowBox .arrowPrev {
  margin-right: 14px;
}
.newsArea .arrowBox .arrow img {
  width: auto;
}
.newsArea .leafRight {
  position: absolute;
  top: -132px;
  right: -64px;
  z-index: 2;
  pointer-events: none;
}
.newsArea .butterflyImg {
  position: absolute;
  left: 50%;
  margin-left: -17.5px;
  bottom: 189.5px;
  display: block;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .newsArea {
    padding: 0 64px 205px 64px;
  }
  .newsArea .wrap {
    padding: 50px;
  }
  .newsArea .titleBox {
    left: 75px;
  }
  .newsArea .arrowBox {
    left: 75px;
    bottom: 90px;
  }
  .newsArea .leafRight {
    max-width: 230px;
  }
  .newsArea .butterflyImg {
    max-width: 28px;
    margin-left: -14px;
    bottom: 191px;
  }
}
@media (max-width: 1180px) {
  .newsArea {
    background-color: #f3f3f3;
    padding: 0 33px 60px 33px;
    top: 0;
  }
  .newsArea .titleBox {
    position: initial;
    text-align: center;
  }
  .newsArea .titleBox em {
    font-size: 13px;
  }
  .newsArea .titleBox h2 {
    font-size: 30px;
    padding-top: 13px;
    padding-bottom: 27px;
  }
  .newsArea .wrap {
    padding: 60px 90px;
  }
  .newsArea .newsList {
    padding-left: 0;
  }
  .newsArea .arrowBox {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -21px;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
  }
  .newsArea .arrowBox .arrowPrev {
    position: relative;
    left: -21px;
  }
  .newsArea .arrowBox .arrowNext {
    position: relative;
    left: 21px;
  }
  .newsArea .leafRight,
.newsArea .butterflyImg {
    display: none;
  }
}
@media (max-width: 640px) {
  .newsArea .wrap {
    padding: 20px 30px;
  }
}

/*newsArea end*/
/*aboutArea*/
.aboutArea {
  position: relative;
  padding-right: 67px;
  margin-bottom: -144px;
  left: -64px;
  top: -30px;
}
.aboutArea .wrap {
  position: relative;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: -ms-flexbox;
  display: flex;
}
.aboutArea .leftBox {
  width: calc(100% - 758px);
  position: relative;
  z-index: 3;
}
.aboutArea .leftBox .aboutList {
  position: relative;
  top: -86px;
  width: 100%;
}
.aboutArea .leftBox .aboutList .Img img {
  width: 100%;
}
.aboutArea .leftBox .arrowPageBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 622px;
  margin-left: auto;
  position: relative;
  top: -86px;
  height: 90px;
  background-color: #fff;
  padding-left: 41px;
}
.aboutArea .leftBox .slidePageBox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 123px;
  font-size: 14px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.aboutArea .leftBox .slidePageBox .slidePage:first-child {
  color: #111111;
}
.aboutArea .leftBox .slidePageBox .slidePage:last-child {
  color: #808080;
}
.aboutArea .leftBox .slidePageBox::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 25px;
  width: 75px;
  height: 1px;
  background-color: #d0d0d0;
  z-index: 1;
}
.aboutArea .leftBox .slidePageBox::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 25px;
  width: 35px;
  height: 1px;
  background-color: #626262;
  z-index: 2;
}
.aboutArea .leftBox .arrowBox {
  display: -ms-flexbox;
  display: flex;
  padding-left: 35px;
}
.aboutArea .leftBox .arrowBox .arrow {
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  border: 1px #d5d5d5 solid;
  border-radius: 50%;
  background-color: inherit;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.aboutArea .leftBox .arrowBox .arrow:hover {
  opacity: 1;
  border: 1px #111111 solid;
}
.aboutArea .leftBox .arrowBox .arrowPrev {
  margin-right: 14px;
}
.aboutArea .leftBox .arrowBox .arrow img {
  width: auto;
}
.aboutArea .rightBox {
  width: 758px;
  position: relative;
  background-color: #fff;
  padding-left: 80px;
  z-index: 2;
}
.aboutArea .aboutText {
  padding-top: 80px;
}
.aboutArea .titleBox {
  text-align: left;
  margin-bottom: 0;
  padding-right: 80px;
}
.aboutArea .titleBox em {
  line-height: 1;
  font-size: 15px;
  color: #8a8786;
  letter-spacing: 0.5px;
  font-family: "Cardo", serif;
  font-weight: 400;
  text-transform: initial;
}
.aboutArea .titleBox h2 {
  font-size: 38px;
  color: #111111;
  padding-top: 17px;
  padding-bottom: 38px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.7px;
}
.aboutArea .titleBox .text {
  color: #252525;
  line-height: 1.625;
}
.aboutArea .more {
  display: inline-block;
  font-size: 15px;
  margin-top: 53px;
  color: #111111;
  position: relative;
}
.aboutArea .more a {
  color: #111111;
}
.aboutArea .more::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(100% + 13px);
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: all 0.4s;
}
.aboutArea .more:hover::before {
  width: 45px;
}
.aboutArea .more:hover a {
  color: #111111;
}
.aboutArea .map {
  width: 100%;
  display: block;
  position: relative;
  left: -173px;
  top: 45px;
}
.aboutArea .mapM {
  display: none;
}
.aboutArea .flowerImg {
  position: absolute;
  left: 50%;
  top: -188px;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.aboutArea .leafImg {
  position: absolute;
  left: 50%;
  margin-left: 47px;
  top: -90px;
  display: block;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1800px) {
  .aboutArea .leftBox {
    width: calc(100% - 723px);
  }
  .aboutArea .rightBox {
    width: 723px;
  }
}
@media (max-width: 1700px) {
  .aboutArea .leftBox {
    width: calc(100% - 677px);
  }
  .aboutArea .rightBox {
    width: 677px;
  }
}
@media (max-width: 1600px) {
  .aboutArea {
    padding-right: 0;
  }
  .aboutArea::before {
    left: 332px;
  }
  .aboutArea .leftBox {
    width: calc(100% - 580px);
  }
  .aboutArea .leftBox .aboutList {
    top: -70px;
    left: 0;
  }
  .aboutArea .leftBox .arrowPageBox {
    top: -70px;
  }
  .aboutArea .rightBox {
    width: 580px;
    padding-left: 50px;
  }
  .aboutArea .titleBox {
    padding-right: 50px;
  }
  .aboutArea .flowerImg {
    max-width: 310px;
  }
  .aboutArea .leafImg {
    margin-left: 38px;
    top: -104px;
    max-width: 80px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .aboutText {
    padding-top: 40px;
  }
  .aboutArea .leftBox {
    width: calc(100% - 510px);
    background-color: #fff;
  }
  .aboutArea .leftBox .arrowPageBox {
    max-width: 100%;
  }
  .aboutArea .rightBox {
    width: 510px;
    padding-left: 30px;
  }
  .aboutArea .rightBox .map {
    left: -100px;
    top: 45px;
  }
  .aboutArea .titleBox {
    padding-right: 30px;
  }
}
@media (max-width: 1280px) {
  .aboutArea .leftBox .aboutList,
.aboutArea .leftBox .arrowPageBox {
    top: -40px;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 33px 60px;
    top: 0;
    margin-bottom: 0;
    left: 0;
  }
  .aboutArea .wrap {
    display: block;
  }
  .aboutArea .leftBox {
    width: calc(100% + 66px);
    left: -33px;
    padding-right: 0;
  }
  .aboutArea .leftBox .aboutList {
    left: 0;
    top: 0;
    margin: auto;
  }
  .aboutArea .leftBox .arrowPageBox {
    padding-left: 0;
    top: 0;
    height: initial;
  }
  .aboutArea .leftBox .arrowBox {
    display: none;
  }
  .aboutArea .leftBox .slidePageBox {
    position: relative;
    left: 0;
    bottom: 0;
    margin: auto;
    margin-top: 14px;
  }
  .aboutArea .rightBox {
    width: 100%;
    padding-left: 0;
  }
  .aboutArea .rightBox .aboutText {
    padding-top: 44px;
  }
  .aboutArea .rightBox .titleBox {
    padding-right: 0;
  }
  .aboutArea .rightBox em {
    font-size: 13px;
  }
  .aboutArea .rightBox h2 {
    font-size: 30px;
  }
  .aboutArea .rightBox .more {
    font-size: 15px;
    padding-bottom: 44px;
  }
  .aboutArea .rightBox .more::before {
    width: 45px;
  }
  .aboutArea .rightBox .map {
    display: none;
  }
  .aboutArea .rightBox .mapM {
    display: block;
    position: relative;
    margin: auto;
    max-width: 654px;
    width: 100%;
  }
  .aboutArea .flowerImg,
.aboutArea .leafImg {
    display: none;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    padding: 0 33px 60px 33px;
  }
  .aboutArea .rightBox .mapM {
    left: -33px;
    width: calc(100% + 33px);
  }
}

/*aboutArea end*/
/*spotArea*/
.spotArea {
  background-color: #fff;
  padding-top: 170px;
  padding-bottom: 121px;
  position: relative;
}
.spotArea .wrap {
  position: relative;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.spotArea .spotContent {
  position: relative;
  margin-left: 266px;
}
.spotArea .titleBox {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 255px;
  width: 100%;
}
.spotArea .titleBox em {
  line-height: 1;
  font-size: 15px;
  color: #8a8786;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spotArea .titleBox h2 {
  font-size: 38px;
  color: #111111;
  padding-top: 17px;
  padding-bottom: 39px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.7px;
}
.spotArea .titleBox p {
  color: #595757;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.spotArea .spotList {
  padding-left: 335px;
  padding-right: 249px;
}
.spotArea .spotList .Img {
  position: relative;
}
.spotArea .spotList .Img img {
  display: block;
  width: 100%;
}
.spotArea .spotList .Txt {
  padding-top: 24px;
}
.spotArea .spotList .Txt .title {
  font-size: 20px;
  color: #231815;
  border-bottom: 1px #dfdfdf solid;
  line-height: 1;
  padding-bottom: 22px;
  position: relative;
  display: block;
  font-weight: 500;
}
.spotArea .spotList .Txt .title a {
  color: #231815;
}
.spotArea .spotList .Txt .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: all 0.4s;
}
.spotArea .spotList .Txt .title:hover a {
  color: #231815;
}
.spotArea .spotList .Txt .title:hover::before {
  width: 81px;
}
.spotArea .spotList .Txt .content {
  font-size: 15px;
  color: #595757;
  padding-top: 21px;
  line-height: 1.67;
  letter-spacing: 0.5px;
}
.spotArea .spotItem {
  padding-left: 17px;
  padding-right: 17px;
}
.spotArea .spotItem:nth-last-child(even) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}
.spotArea .spotItem:nth-last-child(even) .Txt {
  padding-top: 0;
  padding-bottom: 24px;
}
.spotArea .arrowBox {
  position: absolute;
  left: 0;
  bottom: 84px;
  display: -ms-flexbox;
  display: flex;
}
.spotArea .arrowBox .arrow {
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  border: 1px #d5d5d5 solid;
  border-radius: 50%;
  background-color: inherit;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.spotArea .arrowBox .arrow:hover {
  opacity: 1;
  border: 1px #111111 solid;
}
.spotArea .arrowBox .arrowPrev {
  margin-right: 14px;
}
.spotArea .arrowBox .arrow img {
  width: auto;
}
.spotArea .slidePageBox {
  display: none;
}
.spotArea .cherryBlossoms01 {
  position: absolute;
  top: -114px;
  left: -154px;
  pointer-events: none;
  -webkit-animation: cherryBlossoms01 5s ease infinite forwards;
          animation: cherryBlossoms01 5s ease infinite forwards;
}
@-webkit-keyframes cherryBlossoms01 {
  0% {
    opacity: 0;
    top: -114px;
    left: -154px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100px;
    left: -200px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@keyframes cherryBlossoms01 {
  0% {
    opacity: 0;
    top: -114px;
    left: -154px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100px;
    left: -200px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.spotArea .cherryBlossoms02 {
  position: absolute;
  top: -7px;
  left: -177.5px;
  pointer-events: none;
  -webkit-animation: cherryBlossoms02 4s ease infinite forwards;
          animation: cherryBlossoms02 4s ease infinite forwards;
}
@-webkit-keyframes cherryBlossoms02 {
  0% {
    opacity: 0;
    top: -7px;
    left: -177.5px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100px;
    left: -140px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@keyframes cherryBlossoms02 {
  0% {
    opacity: 0;
    top: -7px;
    left: -177.5px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100px;
    left: -140px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.spotArea .cherryBlossoms03 {
  opacity: 1;
  position: absolute;
  top: 60px;
  left: -113px;
  pointer-events: none;
  -webkit-animation: cherryBlossoms03 3s ease infinite forwards;
          animation: cherryBlossoms03 3s ease infinite forwards;
}
@-webkit-keyframes cherryBlossoms03 {
  0% {
    opacity: 0;
    top: 60px;
    left: -113px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 150px;
    left: -140px;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@keyframes cherryBlossoms03 {
  0% {
    opacity: 0;
    top: 60px;
    left: -113px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 150px;
    left: -140px;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
.spotArea .cherryBlossoms04 {
  position: absolute;
  top: 172px;
  right: 64px;
  z-index: 2;
  pointer-events: none;
}
.spotArea .treebg {
  position: absolute;
  bottom: -63px;
  right: -64px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .spotArea .spotContent {
    margin-left: 180px;
  }
  .spotArea .spotList {
    padding-right: 180px;
  }
  .spotArea .cherryBlossoms01 {
    width: 11px;
    left: -110px;
  }
  .spotArea .cherryBlossoms02 {
    width: 35px;
    left: -160px;
  }
  .spotArea .cherryBlossoms03 {
    width: 22px;
  }
  .spotArea .cherryBlossoms04 {
    width: 17px;
  }
  .spotArea .treebg {
    width: 230px;
  }
}
@media (max-width: 1440px) {
  .spotArea .spotContent {
    margin-left: 130px;
  }
  .spotArea .spotList {
    padding-left: 270px;
    padding-right: 131px;
  }
  .spotArea .cherryBlossoms01 {
    left: -85px;
  }
  .spotArea .cherryBlossoms02 {
    left: -140px;
  }
  .spotArea .cherryBlossoms03 {
    left: -95px;
  }
  .spotArea .treebg {
    max-width: 200px;
  }
}
@media (max-width: 1180px) {
  .spotArea {
    padding: 0 33px 52px 33px;
  }
  .spotArea .spotContent {
    margin-left: 0;
  }
  .spotArea .titleBox {
    position: initial;
    max-width: 100%;
    text-align: center;
  }
  .spotArea .titleBox em {
    font-size: 13px;
  }
  .spotArea .titleBox h2 {
    font-size: 30px;
    padding-top: 12px;
    padding-bottom: 18px;
  }
  .spotArea .titleBox p {
    padding-bottom: 28px;
  }
  .spotArea .spotList {
    padding-left: 0;
    padding-right: 0;
  }
  .spotArea .spotList .Txt {
    padding-top: 18px;
  }
  .spotArea .spotList .Txt .title {
    font-size: 16px;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .spotArea .spotList .Txt p {
    display: none;
  }
  .spotArea .spotItem {
    padding-right: 12px;
    padding-left: 12px;
  }
  .spotArea .spotItem:nth-last-child(even) .Txt {
    padding-top: 0;
    padding-bottom: 18px;
  }
  .spotArea .arrowBox {
    display: none;
  }
  .spotArea .slidePageBox {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 123px;
    font-size: 14px;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: auto;
    margin-top: 36px;
  }
  .spotArea .slidePageBox .slidePage:first-child {
    color: #111111;
  }
  .spotArea .slidePageBox .slidePage:last-child {
    color: #808080;
  }
  .spotArea .slidePageBox::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 25px;
    width: 75px;
    height: 1px;
    background-color: #d0d0d0;
    z-index: 1;
  }
  .spotArea .slidePageBox::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 25px;
    width: 35px;
    height: 1px;
    background-color: #626262;
    z-index: 2;
  }
  .spotArea .cherryBlossoms01,
.spotArea .cherryBlossoms02,
.spotArea .cherryBlossoms03,
.spotArea .cherryBlossoms04,
.spotArea .treebg {
    display: none;
  }
}
@media (max-width: 640px) {
  .spotArea .titleBox p {
    padding-bottom: 28px;
    max-width: 320px;
    margin: auto;
  }
}
@media (max-width: 479px) {
  .spotArea .spotList .spotItem:nth-last-child(even) {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .spotArea .spotList .spotItem:nth-last-child(even) .Txt {
    padding-top: 18px;
    padding-bottom: 0;
  }
  .spotArea .spotItem {
    padding-left: 0;
    padding-right: 0;
  }
}

/*spotArea end*/