.shareArea .shareItem.title .btn1 a .text, .informationArea .btn1 a .text, .informationArea .mapBtn span.text::before, .informationArea .mapBtn, .linkArea .Txt .title::before, .linkArea .Txt .title {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-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 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);
  }
}
@-webkit-keyframes location {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes location {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  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: 1200px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .bannerItem > .Img {
  width: auto;
  display: block;
}
.bannerArea .bannerItem > .Img img {
  width: 100%;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem > .Img {
    height: 700px;
  }
  .bannerArea .bannerItem > .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bannerArea .bannerItem .Txt {
  height: auto;
  padding: 0 20px;
  position: absolute;
  top: 57%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.bannerArea .bannerItem .Txt .Img {
  width: auto;
  display: block;
  padding-bottom: 40px;
}
.bannerArea .bannerItem .Txt .Img img {
  width: 100%;
}
.bannerArea .bannerItem .Txt .title {
  width: 100%;
  color: #fff;
  font-size: 40px;
  font-family: "Noto Sans TC";
  line-height: 1.2;
  letter-spacing: 1px;
  opacity: 0;
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 40px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  position: relative;
  color: #fff;
  display: block;
  font-size: 30px;
  font-family: "Cormorant Garamond";
  line-height: 1.2;
  letter-spacing: 1px;
  margin-top: 13px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .subtitle::before {
  content: "";
  position: absolute;
  bottom: 11px;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-family: "Cormorant Garamond";
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 13px;
  opacity: 0;
}
.bannerArea .bannerItem .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.bannerArea .bannerItem .scrollDown span {
  display: block;
}
.bannerArea .bannerItem .scrollDown span.text {
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
}
.bannerArea .bannerItem .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
}
.bannerArea .bannerItem .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #746c65;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerVideoArea {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  font-family: "Noto Sans TC";
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  width: 1px;
  height: calc(100% + 20px);
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: -5px;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 1px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #746c65;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  bottom: 12px;
}
@media (min-width: 1201px) {
  .bannerArea .slick-dots {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    bottom: 0;
    right: 37px;
    width: 30px;
    height: 100%;
    padding-bottom: 30px;
  }
  .bannerArea .slick-dots li {
    margin: 14px 10px;
  }
}
.aboutArea {
  background: url(../images/donkey/about-bg.png) no-repeat top center;
  padding: 80px 0 180px;
}
@media (max-width: 1200px) {
  .aboutArea {
    padding: 78px 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    background: #f5f5f5;
  }
}
.aboutArea .title {
  color: #746c65;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
}
.aboutArea .text {
  color: #746c65;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-top: 25px;
}

.linkArea {
  overflow: hidden;
  background: url(../images/donkey/menu-bg.jpg) center/cover no-repeat;
  padding: 90px 0 70px;
}
@media (max-width: 1200px) {
  .linkArea {
    padding: 77px 0 80px;
  }
}
.linkArea .wrap {
  max-width: 100%;
  padding: 0;
}
.linkArea .infoBox {
  display: block;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto 52px;
}
@media (max-width: 1200px) {
  .linkArea .infoBox {
    margin: 0 auto 32px;
  }
}
.linkArea .textEditor {
  text-align: center;
}
.linkArea .textEditor .title {
  color: #dfd4b7;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
}
.linkArea .textEditor .text {
  color: #dfd4b7;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
.linkArea .btn1 {
  margin: 70px auto 10px;
  max-width: 180px;
  height: 43px;
}
.linkArea .btn1:hover .fastArrow {
  -webkit-transform: translateX(180px);
          transform: translateX(180px);
}
.linkArea .btn1 .fastArrow {
  position: absolute;
  left: -25px;
  display: block;
  width: 55px;
  height: 1px;
  background: #dfd4b7;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.linkArea .btn1 .fastArrow::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 7px;
  border-color: transparent transparent transparent #dfd4b7;
}
.linkArea .btn1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.linkArea .btn1 a .text {
  color: #dfd4b7;
}
.linkArea .listBox {
  position: relative;
}
.linkArea .listBox.little {
  width: 100%;
  margin-left: 0;
}
@media (min-width: 960px) {
  .linkArea .listBox.little .linkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.linkArea .listBox.little .linkItem {
  width: 33.3333333333%;
}
@media (max-width: 1200px) {
  .linkArea .listBox.little .linkItem {
    width: 50%;
  }
}
@media (max-width: 959px) {
  .linkArea .listBox.little .linkItem {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .linkArea .listBox.little .arrowBox {
    display: none;
  }
}
@media (min-width: 1201px) {
  .linkArea .listBox:hover .arrow {
    opacity: 1;
  }
}
@media (min-width: 960px) {
  .linkArea .listBox {
    width: 180.2%;
    margin-left: -40.2%;
  }
}
.linkArea .linkList {
  margin: 0 -20px;
}
.linkArea .linkList.slick-dotted {
  margin-bottom: 0;
}
.linkArea .linkList .Img {
  border: 1px solid #746c65;
}
.linkArea .linkList img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 20px;
}
.linkArea .linkItem {
  padding: 0 55px;
}
.linkArea .item {
  position: relative;
}
@media (min-width: 1201px) {
  .linkArea .item:hover .Txt {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .linkArea .item:hover .Txt .title::before {
    width: 100%;
  }
}
.linkArea .Txt {
  position: absolute;
  bottom: 44px;
  left: 50px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  z-index: 1;
}
.linkArea .Txt .title {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 2px;
}
.linkArea .Txt .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .linkArea .Txt {
    bottom: 42px;
    left: 35px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .linkArea .Txt .title::before {
    width: 100%;
  }
}
.linkArea .arrowBox {
  width: 36.5%;
}
@media (max-width: 959px) {
  .linkArea .arrowBox {
    width: calc(100% - 40px);
  }
}
@media (max-width: 680px) {
  .linkArea .arrowBox {
    top: 40%;
  }
}
@media (max-width: 480px) {
  .linkArea .arrowBox {
    top: 36%;
  }
}
@media (max-width: 360px) {
  .linkArea .arrowBox {
    top: 32%;
  }
}
.linkArea .slick-dots {
  bottom: initial;
  top: calc(100% + 11px);
}

.informationArea {
  background-color: #f8f7f7;
  padding: 90px 0 70px;
}
@media (max-width: 1200px) {
  .informationArea {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .informationArea {
    padding: 30px 0;
  }
}
.informationArea .wrap {
  max-width: 1496px;
  padding: 0 48px;
}
@media (max-width: 479px) {
  .informationArea .wrap {
    padding: 0 20px;
  }
}
.informationArea .titleBox {
  margin-bottom: 34px;
}
.informationArea .informationList {
  margin: 0 -11px;
}
.informationArea .informationList.slick-dotted {
  margin-bottom: 0;
}
.informationArea .slick-track {
  margin: 0 auto;
}
.informationArea .informationItem {
  padding: 0 11px;
}
.informationArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #a0807f;
  padding: 42px 33px 49px;
	height: 100%;
}
@media (min-width: 1201px) {
  .informationArea .item:hover .mapBtn {
    opacity: 1;
  }
  .informationArea .item:hover .btn1 .lineColumn::before, .informationArea .item:hover .btn1 .lineColumn::after {
    height: 100%;
  }
  .informationArea .item:hover .btn1 .lineRow::before, .informationArea .item:hover .btn1 .lineRow::after {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .informationArea .item {
    padding: 30px 25px 35px;
  }
}
.informationArea .map {
  width: 45%;
  padding-right: 20px;
}
@media (max-width: 640px) {
  .informationArea .map {
    width: 100%;
    padding-right: 0;
  }
}
.informationArea iframe {
  width: 100%;
  height: 100%;
}
.informationArea .Txt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 640px) {
  .informationArea .Txt {
    width: 100%;
    padding-top: 20px;
  }
}
.informationArea h3.title {
  padding-right: 90px;
  margin-bottom: 32px;
}
.informationArea h3.title a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (min-width: 1201px) {
  .informationArea h3.title a:hover {
    color: #746c65;
  }
}
.informationArea .mapBtn {
  position: absolute;
  top: 4px;
  right: 4px;
}
@media (min-width: 1201px) {
  .informationArea .mapBtn {
    opacity: 0.6;
  }
}
@media (max-width: 640px) {
  .informationArea .mapBtn {
    top: 24px;
  }
}
.informationArea .mapBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1201px) {
  .informationArea .mapBtn a:hover .icon {
    -webkit-animation: location 1s ease-in-out infinite;
            animation: location 1s ease-in-out infinite;
  }
  .informationArea .mapBtn a:hover .text::before {
    width: 100%;
  }
}
.informationArea .mapBtn span {
  display: inline-block;
}
.informationArea .mapBtn span.icon {
  width: 12px;
  height: 16px;
  background: url(../images/icon/location.png) no-repeat;
  margin-right: 10px;
}
.informationArea .mapBtn span.text {
  position: relative;
  color: #746c65;
  font-size: 15px;
  font-family: "Noto Sans TC";
  padding-bottom: 2px;
}
.informationArea .mapBtn span.text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #746c65;
}
.informationArea .location .title,
.informationArea .tel .title {
  color: #000;
  font-family: "Noto Sans TC";
  letter-spacing: 0.5px;
  margin-right: 10px;
}
.informationArea .location .text,
.informationArea .tel .text {
  color: #666;
  font-family: "Noto Sans TC";
  letter-spacing: 0.5px;
}
.informationArea .tel {
  margin-top: 5px;
}
@media (min-width: 1201px) {
  .informationArea .tel a:hover {
    color: #746c65;
  }
}
.informationArea .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 10px);
  margin: 39px -4.5px 0;
}
@media (max-width: 479px) {
  .informationArea .btnBox {
    margin: 34.5px -4.5px 0;
  }
}
@media (max-width: 479px) {
  .informationArea .btnBox {
    width: 100%;
  }
}
.informationArea .btn1 {
  width: 50%;
  padding: 0 4.5px;
}
.informationArea .btn1 a {
  height: 42px;
}
@media (min-width: 1201px) {
  .informationArea .btn1 a:hover {
    background-color: #746c65;
  }
  .informationArea .btn1 a:hover .text {
    color: #fff;
  }
}
@media (max-width: 479px) {
  .informationArea .btn1 {
    width: auto;
    padding: 4.5px;
  }
}
.informationArea .slick-dots {
  bottom: initial;
  top: calc(100% + 11px);
}
.informationArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #746c65;
  border-radius: 50%;
  opacity: 1;
}
.informationArea .slick-dots li.slick-active button:before {
  background-color: #746c65;
  opacity: 1;
}

.shareArea {
  padding: 85px 20px 92px;
}
@media (max-width: 1200px) {
  .shareArea {
    padding: 80px 20px 40px;
  }
}
@media (max-width: 480px) {
  .shareArea {
    padding: 30px 20px 40px;
  }
}
.shareArea .wrap {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e5e5e5;
  padding-top: 90px;
}
@media (max-width: 1080px) {
  .shareArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .shareArea .wrap {
    padding: 30px 0;
  }
}
.shareArea .titleBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 25px 40px;
}
.shareArea .titleBox .Img {
  padding-bottom: 20px;
}
.shareArea .titleBox .Img img {
  width: auto;
}
@media (max-width: 1080px) {
  .shareArea .titleBox .Img img {
    margin: 0 auto;
  }
}
.shareArea .titleBox .btn1 {
  display: inline-block;
  margin-top: 23px;
}
.shareArea .titleBox .btn1 a {
  min-width: 144px;
  height: 40px;
}
.shareArea .shareList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 25px 0 5px;
}
@media (max-width: 1080px) {
  .shareArea .shareList {
    padding: 5px;
  }
}
@media (max-width: 479px) {
  .shareArea .shareList {
    display: block;
  }
}
.shareArea .shareItem {
  width: 25%;
  padding: 0 10px 26px;
}
.shareArea .shareItem:nth-child(even) {
  margin-top: -70px;
}
@media (max-width: 1080px) {
  .shareArea .shareItem:nth-child(even) {
    margin-top: 0;
  }
}
@media (max-width: 959px) {
  .shareArea .shareItem.title {
    display: none;
  }
}
.shareArea .shareItem.title .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  border: 0;
}
.shareArea .shareItem.title .Txt {
  padding-top: 38px;
}
.shareArea .shareItem.title h2 {
  width: 100%;
  color: #746c65;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 38px;
}
.shareArea .shareItem.title .btn1 {
  margin-top: 40px;
}
.shareArea .shareItem.title .btn1 a {
  min-width: 175px;
  height: 40px;
}
.shareArea .shareItem.title .btn1 a:nth-child(even) {
  margin-top: -70px;
}
@media (min-width: 1201px) {
  .shareArea .shareItem.title .btn1 a:hover {
    background-color: #000;
  }
  .shareArea .shareItem.title .btn1 a:hover .text {
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .shareArea .shareItem.title .btn1 a {
    min-width: 130px;
  }
}
@media (max-width: 959px) {
  .shareArea .shareItem {
    width: 25%;
    padding: 0 9px 18px;
  }
}
@media (max-width: 768px) {
  .shareArea .shareItem {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .shareArea .shareItem {
    width: 50%;
  }
}
@media (max-width: 360px) {
  .shareArea .shareItem {
    width: 100%;
  }
}
.shareArea .item {
  position: relative;
}
@media (min-width: 1201px) {
  .shareArea .item:hover .lineColumn::before, .shareArea .item:hover .lineColumn::after {
    height: 100%;
  }
  .shareArea .item:hover .lineRow::before, .shareArea .item:hover .lineRow::after {
    width: 100%;
  }
}
.shareArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.shareArea .link {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media (max-width: 1200px) {
  .shareArea .link {
    bottom: 15px;
    left: 15px;
  }
}
.shareArea .link a {
  display: block;
  width: 20px;
  color: #fff;
  font-size: 23px;
  text-align: center;
}
.shareArea .link a:not(:last-child) {
  margin-right: 12px;
}
@media (min-width: 1201px) {
  .shareArea .link a:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.shareArea .line {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}
.shareArea .line::before, .shareArea .line::after {
  content: "";
  position: absolute;
  background-color: #746c65;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.shareArea .lineColumn::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
}
.shareArea .lineColumn::after {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
}
.shareArea .lineRow::before {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.shareArea .lineRow::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
}
.shareArea .slick-dots {
  top: 100%;
  bottom: initial;
}
.shareArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #746c65;
  border-radius: 50%;
  opacity: 1;
}
.shareArea .slick-dots li.slick-active button:before {
  background-color: #746c65;
  opacity: 1;
}

footer .wrap::before {
  width: 0;
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
}
footer.active .wrap::before {
  width: calc(100% - 40px);
}