@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap");
@import "./../css/aos.css";
@import "./../css/animate.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
/*------ 網站使用色系 ------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  text-decoration: none;
}

/* 
    fontStyle 文字樣式設定 
    font_fontWeight 字重
    font_fontSize 大小,
    lineheight 行高
    font_letterSpacing 字距
    magin 邊距
*/
html * {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  min-width: 350px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
body .lg-view {
  display: block;
}
@media screen and (max-width: 768px) {
  body .lg-view {
    display: none;
  }
}
body .lg-view img {
  width: 100%;
}
body .sm-view {
  display: none;
}
@media screen and (max-width: 768px) {
  body .sm-view {
    display: block;
  }
}
body .sm-view img {
  width: 100%;
}
body .main {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
body .m_container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

#loading-overlay {
  width: 100vw;
  height: 100%;
  background-color: rgb(240, 240, 240);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}

.progress-container {
  width: 100%;
}

.progress-bar {
  width: 0;
  height: 5px;
  background-color: #009adc;
  transition: width 0.5s ease;
}

.progress-text {
  text-align: center;
  margin-top: 10px;
  font-family: Arial, sans-serif;
}

.allHidden {
  overflow: hidden;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 70px;
  position: relative;
}

.loader div {
  width: 8px;
  display: inline-block;
  position: absolute;
  left: 4px;
  background-color: #41220f;
  -webkit-animation: loading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  animation: loading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader div:nth-child(1) {
  left: 4px;
  -webkit-animation-delay: -0.24s;
  animation-delay: -0.24s;
}

.loader div:nth-child(2) {
  left: 16px;
  -webkit-animation-delay: -0.12s;
  animation-delay: -0.12s;
}

.loader div:nth-child(3) {
  left: 28px;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

#loader span {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #41220f;
  text-align: center;
  text-transform: uppercase;
}

@keyframes loading {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
@-webkit-keyframes loading {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #41220f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pagination {
  align-items: center;
  justify-content: center;
  margin-top: 31px;
}
.pagination .prev {
  background-image: url("../img/page_left.svg");
  width: 8px;
  height: 14px;
  margin-right: 13px;
}
.pagination .prev:hover {
  opacity: 0.8;
}
.pagination .next {
  background-image: url("../img/page_right.svg");
  width: 8px;
  height: 14px;
  margin-left: 13px;
}
.pagination .next:hover {
  opacity: 0.8;
}
.pagination .book-page {
  color: #41220f;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  line-height: 31px;
  font-size: 18px;
  border: 1px solid #41220f;
  margin: 0 6.5px;
}
.pagination .book-page.tab-act, .pagination .book-page:hover {
  border: 0;
  background-color: #f69f65;
  color: #fff;
}

.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}

.rotate2 {
  animation: rotate2 2s linear infinite;
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .top {
    right: 5px;
  }
}
.top img {
  width: 117px;
}
@media screen and (max-width: 992px) {
  .top img {
    width: 81px;
  }
}

.position_fixed {
  position: fixed;
}

.position_absolute {
  position: absolute;
}

.top:hover {
  filter: brightness(0.9);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
header.header_s {
  padding-top: 10px;
}
@media screen and (max-width: 992px) {
  header.header_s {
    padding-top: 0;
  }
}
header .header_w {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px;
}
@media screen and (max-width: 1230px) {
  header .header_w {
    padding: 25px 25px 25px 17px;
    align-items: flex-start;
  }
}
header .header_w .nav_ham,
header .header_w .nav_close {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1230px) {
  header .header_w .nav_ham,
  header .header_w .nav_close {
    display: block;
  }
}
header .header_w .logo {
  position: relative;
  z-index: 5;
}
header .header_w .logo::after {
  position: absolute;
  content: "";
  top: -24px;
  right: -22.5px;
  width: 100vw;
  height: 76px;
  background-color: rgba(65, 34, 15, 0.6);
  border-radius: 0 0 50px 0;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  header .header_w .logo::after {
    top: -25px;
  }
}
@media screen and (max-width: 1230px) {
  header .header_w .menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fef5e5;
    overflow-y: auto;
    transition: all 0.3s linear;
  }
}
header .header_w .menu.slideLeft {
  display: block;
  animation: slideLeft 0.7s both;
}
header .header_w .menu.active {
  opacity: 1;
  visibility: visible;
}
header .header_w .menu.active li > a, header .header_w .menu.active li > div {
  -moz-animation: fadeInLeft 1s both;
  -webkit-animation: fadeInLeft 1s both;
  animation: fadeInLeft 1s 0.3s both;
}
header .header_w .menu.active li > div {
  animation-delay: 0.18s;
}
header .header_w .menu.active li:nth-child(1) a {
  animation-delay: 0.03s;
}
header .header_w .menu.active li:nth-child(2) a {
  animation-delay: 0.06s;
}
header .header_w .menu.active li:nth-child(3) a {
  animation-delay: 0.09s;
}
header .header_w .menu.active li:nth-child(4) a {
  animation-delay: 0.12s;
}
header .header_w .menu.active li:nth-child(5) a {
  animation-delay: 0.15s;
}
header .header_w .menu.active li:nth-child(6) a {
  animation-delay: 0.18s;
}
header .header_w .menu.active li:nth-child(7) a {
  animation-delay: 0.21s;
}
header .header_w .menu.active li:nth-child(8) a {
  animation-delay: 0.24s;
}
header .header_w .menu.active li:nth-child(9) a {
  animation-delay: 0.27s;
}
@keyframes slideLeft {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
header .header_w .menu .nav {
  position: relative;
  text-align: center;
  align-items: center;
}
header .header_w .menu .nav::after {
  position: absolute;
  content: "";
  top: -17px;
  left: -28px;
  width: 100vw;
  height: 76px;
  background-color: rgba(254, 245, 229, 0.9);
  border-radius: 0 0 0 50px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav {
    display: flex;
    flex-direction: column;
    padding-top: 117px;
  }
}
header .header_w .menu .nav li {
  margin-left: 11px;
  position: relative;
}
header .header_w .menu .nav li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li {
    margin-left: 0;
    margin-bottom: 26px;
    width: 100%;
  }
}
header .header_w .menu .nav li > a,
header .header_w .menu .nav li > div {
  position: relative;
  color: #41220f;
  display: block;
  transition: all 0.2s;
  padding: 0 2px;
}
header .header_w .menu .nav li > a::before,
header .header_w .menu .nav li > div::before {
  position: absolute;
  content: "";
  width: 115%;
  height: 100%;
  background-color: #8c7664;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 20px;
  transition: all 0.2s;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li > a::before,
  header .header_w .menu .nav li > div::before {
    width: 100%;
    height: 69px;
    border-radius: 0;
    top: -13.5px;
    transform: translate(-50%);
  }
}
header .header_w .menu .nav li > a:hover::before,
header .header_w .menu .nav li > div:hover::before {
  opacity: 1;
}
@media (min-width: 1220px) {
  header .header_w .menu .nav li > a:hover .s_menu,
  header .header_w .menu .nav li > div:hover .s_menu {
    display: block;
  }
}
header .header_w .menu .nav li > a:hover > p,
header .header_w .menu .nav li > div:hover > p {
  color: #ffd78b;
}
header .header_w .menu .nav li > a:hover > span,
header .header_w .menu .nav li > div:hover > span {
  color: #f9e8d0;
}
header .header_w .menu .nav li > a p,
header .header_w .menu .nav li > div p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-left: 1px;
  line-height: 22px;
  display: inline-block;
  position: relative;
}
header .header_w .menu .nav li > a span,
header .header_w .menu .nav li > div span {
  color: #eba94b;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding-left: 0.4px;
  line-height: 20px;
  display: block;
  position: relative;
}
header .header_w .menu .nav li div {
  cursor: default;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li {
    /* 當子選單打開時改變指示器 */
  }
  header .header_w .menu .nav li .has-submenu::after {
    position: absolute;
    content: "▼";
    top: 10px;
    color: #ffd78b;
    margin-left: 38px;
    font-size: 7px;
  }
  header .header_w .menu .nav li .has-submenu.active::after {
    content: "▲";
  }
}
header .header_w .menu .nav li .s_menu {
  position: absolute;
  width: 119%;
  left: 50%;
  transform: translate(-50%);
  padding-top: 17px;
  display: none;
}
header .header_w .menu .nav li .s_menu.active {
  display: block;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li .s_menu {
    position: relative;
    width: 100%;
    left: auto;
    transform: initial;
    padding-top: 0;
    margin-top: 14px;
  }
}
header .header_w .menu .nav li .s_menu ul {
  background-color: rgba(254, 245, 229, 0.9);
  border-radius: 0 0 20px 20px;
  padding: 11px 15px 19px;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li .s_menu ul {
    background-color: rgba(188, 160, 136, 0.24);
    border-radius: 0;
    padding: 14px 0;
  }
}
header .header_w .menu .nav li .s_menu ul li {
  margin-left: 0;
}
header .header_w .menu .nav li .s_menu ul li:first-child {
  margin-bottom: 12px;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li .s_menu ul li:first-child {
    margin-bottom: 26px;
  }
}
header .header_w .menu .nav li .s_menu ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li .s_menu ul li a p {
    color: #7d5535;
  }
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav li .s_menu ul li a span {
    color: #9a7d65;
  }
}
@media screen and (max-width: 1230px) {
  header .header_w .menu .nav_close {
    opacity: 1;
    position: absolute;
    top: 19px;
    right: 18px;
  }
}
header .header_w .nav_ham {
  width: 33px;
  height: 16px;
  position: relative;
  z-index: 1;
}
header .header_w .nav_ham::after {
  position: absolute;
  content: "";
  top: -17px;
  left: -28px;
  width: 100vw;
  height: 76px;
  background-color: rgba(254, 245, 229, 0.9);
  border-radius: 0 0 0 50px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  header .header_w .nav_ham::after {
    top: -25px;
  }
}
header .header_w .nav_ham .ham-top,
header .header_w .nav_ham .ham-mid,
header .header_w .nav_ham .ham-bot {
  width: 100%;
  height: 2px;
  background-color: #41220f;
  position: absolute;
  left: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
header .header_w .nav_ham .ham-top {
  top: 0;
}
header .header_w .nav_ham .ham-mid {
  top: 7px;
}
header .header_w .nav_ham .ham-bot {
  bottom: 0;
}
header .header_w .nav_ham.active > .ham-top {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header_w .nav_ham.active > .ham-mid {
  display: none;
}
header .header_w .nav_ham.active > .ham-bot {
  top: 6px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

footer {
  background-color: #FBF2E7;
  position: relative;
  text-align: center;
  padding: 38px 20px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 38px 22.5px;
  }
}
footer .f_top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%);
  background-image: url("../img/footer_top.png");
  width: 101%;
  height: 15px;
  background-size: 1920px auto;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  footer .f_top {
    width: 118%;
  }
}
footer img {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer img {
    max-width: 400px;
  }
}

.modal {
  background-color: rgba(51, 24, 8, 0.9);
}
.modal-dialog {
  max-width: 1064px;
  padding: 0 15px;
  margin: 6.75rem auto;
}
.modal-content {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
}
@media screen and (max-width: 768px) {
  .modal-content {
    border-radius: 20px;
  }
}
.modal-body {
  padding: 39px 120px;
}
@media screen and (max-width: 768px) {
  .modal-body {
    padding: 94px 17px;
  }
}
.modal-body .modal_close {
  position: absolute;
  top: 18px;
  right: 21px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.modal-body .modal_close:hover {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .modal-body .modal_close {
    right: 9px;
  }
}
.modal-body .swiper_history {
  position: relative;
  border-radius: 25px;
}
.modal-body .swiper_history img {
  width: 100%;
  border-radius: 25px;
}
.modal-body .swiper_history .swiper-button-prev {
  width: 24px;
  height: 46px;
  left: -65px;
}
@media screen and (max-width: 768px) {
  .modal-body .swiper_history .swiper-button-prev {
    top: auto;
    bottom: -70px;
    left: 50%;
    margin-left: -59px;
  }
}
.modal-body .swiper_history .swiper-button-prev:after {
  content: url("../img/swiper_left.svg");
  font-size: initial;
}
.modal-body .swiper_history .swiper-button-prev:hover {
  opacity: 0.7;
}
.modal-body .swiper_history .swiper-button-next {
  width: 24px;
  height: 46px;
  right: -65px;
}
@media screen and (max-width: 768px) {
  .modal-body .swiper_history .swiper-button-next {
    top: auto;
    bottom: -70px;
    right: auto;
    left: 50%;
    margin-left: 35px;
  }
}
.modal-body .swiper_history .swiper-button-next:after {
  content: url("../img/swiper_right.svg");
  font-size: initial;
}
.modal-body .swiper_history .swiper-button-next:hover {
  opacity: 0.7;
}

.banner {
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  height: 362px;
}
@media screen and (min-width: 1920px) {
  .banner {
    height: 18.8542vw;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: url("../img/banner_s.jpg");
    height: 306px;
  }
}
.banner .banner_wra {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: end;
  padding: 0 65px;
}
@media screen and (max-width: 576px) {
  .banner .banner_wra {
    padding: 0 15px;
  }
}
.banner .banner_wra .title {
  position: relative;
  border-radius: 21px;
  background-color: rgba(254, 245, 229, 0.91);
  padding: 10px 20px;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .banner .banner_wra .title {
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 41px;
  }
}
.banner .banner_wra .title h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 42px;
  color: #41220f;
  text-shadow: 3px 2px 2px #fef8ef;
}
@media screen and (max-width: 768px) {
  .banner .banner_wra .title h1 {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}
.banner .banner_wra .title h2 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 33px;
  color: #f5ad47;
  text-shadow: 3px 2px 2px #fef8ef;
}
@media screen and (max-width: 768px) {
  .banner .banner_wra .title h2 {
    font-size: 15px;
    letter-spacing: 0.4px;
    line-height: 18px;
  }
}
.banner .banner_wra .title img {
  position: absolute;
  right: 11px;
  bottom: -8px;
}
@media screen and (max-width: 768px) {
  .banner .banner_wra .title img {
    right: 0;
    bottom: -4px;
  }
}

.banner_btm {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%);
  background-image: url("../img/index_news_top.png");
  width: 101%;
  height: 15px;
  background-size: 1920px auto;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .banner_btm {
    width: 113%;
  }
}

.section {
  padding-top: 30px;
}

.bread {
  display: flex;
  align-items: center;
}
.bread span {
  margin: 0px 7px;
}
.bread .bread-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #58351b;
  line-height: 24px;
}
@media screen and (max-width: 576px) {
  .bread .bread-item {
    font-size: 14px;
    letter-spacing: 0.4px;
    line-height: 20px;
  }
}
.bread .bread-item.last_bread {
  width: 41.5%;
  max-width: 270px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.bread a.bread-item:hover {
  opacity: 0.7;
}

.kv {
  background-image: url("../img/kv.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .kv {
    min-height: 87.292vh;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    background-image: url("../img/kv_s.jpg");
  }
}
.kv .kv_wra {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 1920px) {
  .kv .kv_wra {
    min-height: 87.404vh;
  }
}
@media screen and (max-width: 768px) {
  .kv .kv_wra {
    height: 581px;
  }
}
.kv .kv_wra .kv_slogan {
  position: absolute;
  bottom: -9.8%;
  left: 19.78%;
  max-width: 60.47%;
  animation-duration: 1.1s;
}
.kv .kv_wra .kv_slogan.kv_slogan2 {
  bottom: 6.6%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_slogan.kv_slogan2 {
    bottom: 63px;
    width: 100%;
  }
}
@media screen and (min-width: 1920px) {
  .kv .kv_wra .kv_slogan {
    left: 50%;
    margin-left: -20vw;
    min-width: 40.313vw;
  }
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_slogan {
    left: 50%;
    transform: translate(-50%);
    max-width: initial;
  }
}
.kv .kv_wra .kv_slogan img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_slogan img {
    width: 561px;
  }
}
.kv .kv_wra .kv_slogan h1 {
  font-size: 67px;
  font-weight: 900;
  line-height: 97px;
  color: #41220f;
  text-shadow: 0 2.5px 80px rgba(255, 247, 193, 0.65);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_slogan h1 {
    font-size: 40px;
    line-height: 58px;
  }
}
.kv .kv_wra .kv_slogan h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.14px;
  color: #41220f;
  text-align: center;
  margin-top: 2px;
  text-shadow: 0 2.5px 80px rgba(255, 247, 193, 0.65);
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_slogan h2 {
    font-size: 21px;
    letter-spacing: 0;
    margin-top: 0;
  }
}

#index .news {
  background-image: url("../img/index_news_bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-top: 54px;
  padding-bottom: 75px;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #index .news {
    padding-top: 31px;
    padding-bottom: 45px;
  }
}
#index .news .m_container {
  max-width: 1080px;
  padding: 0 31px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index .news .m_container {
    display: block;
    padding: 0 15px;
  }
}
#index .news .m_container .w_dot {
  position: absolute;
  top: 19px;
  left: -39px;
  opacity: 0;
}
#index .news .m_container .w_dot.animate {
  -webkit-animation-name: flash;
  animation-name: flash;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 3s;
}
#index .news .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 77px;
  left: -37px;
  width: 45px;
  height: 45px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .tree1 {
    display: none;
  }
}
#index .news .m_container .tree1.animate {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  animation-delay: 1s;
}
#index .news .m_container .tree1.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}
#index .news .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: -17px;
  right: -43px;
  width: 45px;
  height: 45px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .tree2 {
    top: -25px;
    right: 7px;
  }
}
#index .news .m_container .tree2.animate {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  animation-delay: 1s;
}
#index .news .m_container .tree2.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}
#index .news .m_container .tree3 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  bottom: -59px;
  left: -59px;
  width: 53px;
  height: 62px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .tree3 {
    display: none;
  }
}
#index .news .m_container .tree3.animate {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  animation-delay: 1s;
}
#index .news .m_container .tree3.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}
#index .news .m_container .tree4 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -77px;
  left: 51%;
  width: 45px;
  height: 45px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .tree4 {
    bottom: -45px;
    left: 23%;
  }
}
#index .news .m_container .tree4.animate {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  animation-delay: 1s;
}
#index .news .m_container .tree4.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}
#index .news .m_container .tree5 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 156px;
  right: -48px;
  width: 53px;
  height: 62px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .tree5 {
    display: none;
  }
}
#index .news .m_container .tree5.animate {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  animation-delay: 1s;
}
#index .news .m_container .tree5.rotate {
  animation: rotate 2s linear infinite;
  opacity: 1;
}
#index .news .m_container .title {
  min-width: 128px;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .title {
    min-width: initial;
    margin-left: 12px;
  }
}
#index .news .m_container .title h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 42px;
  color: #41220f;
  text-shadow: 3px 2px 2px #fef8ef;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .title h1 {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 38px;
  }
}
#index .news .m_container .title h2 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 33px;
  color: #f5ad47;
  text-shadow: 3px 2px 2px #fef8ef;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .title h2 {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}
#index .news .m_container .news_wra {
  margin-top: 7px;
  margin-left: 51px;
  border-radius: 25px;
  background: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 32px;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra {
    margin-top: 11.5px;
    margin-left: 0;
    border-radius: 20px;
    padding: 43.5px 14px 26px;
  }
}
#index .news .m_container .news_wra::before {
  position: absolute;
  content: "";
  top: 38px;
  left: -22px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 23px solid #fbf7f1;
  filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.16));
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra::before {
    transform: rotate(0deg);
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 21px solid #fbf7f1;
    top: -20px;
    left: 70.5px;
    filter: initial;
  }
}
#index .news .m_container .news_wra .d1 {
  position: absolute;
  left: -225px;
  bottom: -6px;
  width: 348px;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra .d1 {
    left: auto;
    right: -5px;
    bottom: auto;
    top: -93.5px;
    width: 144px;
  }
}
#index .news .m_container .news_wra .d2 {
  position: absolute;
  right: 21px;
  bottom: -82px;
  width: 184px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra .d2 {
    display: none;
  }
}
#index .news .m_container .news_wra ul {
  position: relative;
}
#index .news .m_container .news_wra ul li {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li {
    margin-bottom: 27px;
    padding-left: 20px;
  }
}
#index .news .m_container .news_wra ul li a {
  display: flex;
  align-items: center;
  border-radius: 36px;
  box-shadow: 2px 3px 3px #e9d8be;
  overflow: hidden;
  height: 65px;
  background-color: #f8f0e2;
  transition: all 0.2s;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a {
    border-radius: 20px;
    overflow: initial;
    height: auto;
  }
}
#index .news .m_container .news_wra ul li a:hover {
  background-color: #d29c79;
}
#index .news .m_container .news_wra ul li a .glasses {
  min-width: 93px;
  display: flex;
  padding-left: 26px;
  align-items: center;
  background-color: #f6ba65;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .glasses {
    position: absolute;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding-left: 0;
    justify-content: center;
    top: -20px;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .glasses img {
    width: 29px;
  }
}
#index .news .m_container .news_wra ul li a:hover .glasses {
  background-color: #f69f65;
}
#index .news .m_container .news_wra ul li a .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .detail {
    display: block;
    padding: 12px 18px;
  }
}
#index .news .m_container .news_wra ul li a .detail .name {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .detail .name {
    display: block;
  }
}
#index .news .m_container .news_wra ul li a .detail .name .time {
  font-size: 18px;
  letter-spacing: 0.8px;
  color: #9a7b69;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .detail .name .time {
    margin-bottom: 4px;
    display: block;
    line-height: 26px;
  }
}
#index .news .m_container .news_wra ul li a .detail .name p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #41220f;
  margin-left: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .detail .name p {
    margin-left: 0;
    -webkit-line-clamp: 2;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
}
#index .news .m_container .news_wra ul li a .detail .more {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fef8ef;
  opacity: 0;
  min-width: 72px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a .detail .more {
    text-align: right;
    margin-top: 10px;
  }
}
#index .news .m_container .news_wra ul li a .detail .more img {
  margin-left: 8px;
}
#index .news .m_container .news_wra ul li a:hover .detail .name .time {
  color: #fef8ef;
}
#index .news .m_container .news_wra ul li a:hover .detail .name p {
  color: #fef8ef;
}
#index .news .m_container .news_wra ul li a:hover .detail .more {
  opacity: 1;
}
#index .news .m_container .news_wra .more_btn {
  margin-top: 20px;
  display: flex;
}
#index .news .m_container .news_wra .more_btn a {
  display: inline-flex;
  line-height: 24px;
  margin: 0 auto;
  border-radius: 25px;
  border: 1px solid #41220f;
  padding: 10px 27px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #41220f;
  transition: all 0.2s;
}
#index .news .m_container .news_wra .more_btn a img {
  margin-left: 8px;
  transform: rotate(0deg);
  transition: all 0.2s;
}
#index .news .m_container .news_wra .more_btn a:hover {
  background-color: #f8f0e2;
}
#index .news .m_container .news_wra .more_btn a:hover img {
  transform: rotate(180deg);
}

#news .news {
  background-image: url("../img/index_news_bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #news .news {
    padding-bottom: 45px;
  }
}
#news .news .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news .m_container {
    display: block;
    padding: 0 15px;
  }
}
#news .news .m_container .w_dot {
  position: absolute;
  top: 14px;
  left: 3px;
  background-image: url("../img/news/white_dot.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  height: 391px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .w_dot {
    background-image: url("../img/news/white_dot_s.png");
    background-size: contain;
    width: 88%;
    height: 100%;
    top: 20px;
    left: 15px;
  }
}
#news .news .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 59px;
  left: 119px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .tree1 {
    display: none;
  }
}
#news .news .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 7px;
  right: 242px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .tree2 {
    top: -25px;
    right: 7px;
  }
}
#news .news .m_container .tree3 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 180px;
  left: 43px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .tree3 {
    display: none;
  }
}
#news .news .m_container .tree4 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -68.6px;
  left: 55.5%;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .tree4 {
    display: none;
  }
}
#news .news .m_container .tree5 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 104px;
  right: 61px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .tree5 {
    display: none;
  }
}
#news .news .m_container .news_wra {
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 25px;
  background: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 32px;
  flex-grow: 1;
  max-width: 838px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra {
    margin-top: 30px;
    border-radius: 20px;
    padding: 43.5px 14px 26px;
  }
}
#news .news .m_container .news_wra .d1 {
  position: absolute;
  left: -126.6px;
  bottom: -97.6px;
  width: 254px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  #news .news .m_container .news_wra .d1 {
    display: none;
  }
}
#news .news .m_container .news_wra .d2 {
  position: absolute;
  right: -69px;
  bottom: -92.7px;
  width: 184px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra .d2 {
    display: none;
  }
}
#news .news .m_container .news_wra ul {
  position: relative;
  padding-left: 20px;
}
#news .news .m_container .news_wra ul li {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li {
    margin-bottom: 27px;
  }
}
#news .news .m_container .news_wra ul li a {
  display: flex;
  align-items: center;
  border-radius: 36px;
  box-shadow: 2px 3px 3px #e9d8be;
  overflow: hidden;
  height: 65px;
  background-color: #f8f0e2;
  transition: all 0.2s;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a {
    border-radius: 20px;
    overflow: initial;
    height: auto;
  }
}
#news .news .m_container .news_wra ul li a:hover {
  background-color: #d29c79;
}
#news .news .m_container .news_wra ul li a .glasses {
  min-width: 93px;
  display: flex;
  padding-left: 26px;
  align-items: center;
  background-color: #f6ba65;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .glasses {
    position: absolute;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding-left: 0;
    justify-content: center;
    top: -20px;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .glasses img {
    width: 29px;
  }
}
#news .news .m_container .news_wra ul li a:hover .glasses {
  background-color: #f69f65;
}
#news .news .m_container .news_wra ul li a .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .detail {
    display: block;
    padding: 12px 18px;
  }
}
#news .news .m_container .news_wra ul li a .detail .name {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .detail .name {
    display: block;
  }
}
#news .news .m_container .news_wra ul li a .detail .name .time {
  font-size: 18px;
  letter-spacing: 0.8px;
  color: #9a7b69;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .detail .name .time {
    margin-bottom: 4px;
    display: block;
    line-height: 26px;
  }
}
#news .news .m_container .news_wra ul li a .detail .name p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #41220f;
  margin-left: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .detail .name p {
    margin-left: 0;
    -webkit-line-clamp: 2;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
}
#news .news .m_container .news_wra ul li a .detail .more {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fef8ef;
  opacity: 0;
  min-width: 72px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a .detail .more {
    text-align: right;
    margin-top: 10px;
  }
}
#news .news .m_container .news_wra ul li a .detail .more img {
  margin-left: 8px;
}
#news .news .m_container .news_wra ul li a:hover .detail .name .time {
  color: #fef8ef;
}
#news .news .m_container .news_wra ul li a:hover .detail .name p {
  color: #fef8ef;
}
#news .news .m_container .news_wra ul li a:hover .detail .more {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #news .news_content .m_container .tree1 {
    display: block;
    top: -28px;
    left: auto;
    right: 5px;
  }
}
#news .news_content .m_container .news_wra {
  margin: 0 auto;
  margin-top: 0;
  border-radius: 0;
  background: initial;
  box-shadow: initial;
  padding: 0;
  max-width: initial;
  position: relative;
}
#news .news_content .m_container .news_wra .title_wra {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .title_wra {
    margin-top: 30px;
  }
}
#news .news_content .m_container .news_wra .title_wra .title {
  color: #41220f;
}
#news .news_content .m_container .news_wra .title_wra .title h3 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 49px;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  #news .news_content .m_container .news_wra .title_wra .title h3 {
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 31px;
    margin-bottom: 6px;
  }
}
#news .news_content .m_container .news_wra .title_wra .title h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 29px;
}
@media screen and (max-width: 576px) {
  #news .news_content .m_container .news_wra .title_wra .title h4 {
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 26px;
  }
}
#news .news_content .m_container .news_wra .title_wra .share {
  display: flex;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .title_wra .share {
    position: absolute;
    right: 0;
    bottom: -11px;
  }
}
#news .news_content .m_container .news_wra .title_wra .share li {
  margin-left: 5px;
  margin-bottom: 0;
  cursor: pointer;
}
#news .news_content .m_container .news_wra .title_wra .share li:hover {
  opacity: 0.8;
}
#news .news_content .m_container .news_wra .content_wra {
  border-radius: 25px;
  background: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 58px 127px 43px;
  margin-top: 40px;
  color: #41220f;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  #news .news_content .m_container .news_wra .content_wra {
    border-radius: 20px;
    padding: 58px 17px 43px 127px;
    margin-top: 38px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra {
    padding: 82px 17px 29px;
  }
}
#news .news_content .m_container .news_wra .content_wra .w_dot {
  position: absolute;
  background-image: url("../img/news/content_dot.png");
  background-size: 1052px 100%;
  background-position: center top;
  background-repeat: no-repeat;
  width: 1052px;
  height: calc(100% + 340px);
  top: -158px;
  left: -39px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra .w_dot {
    background-image: url("../img/news/content_dot_s.png");
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    width: 84.5%;
    height: calc(100% + 320px);
    top: -162px;
    left: 41px;
    z-index: -1;
  }
}
#news .news_content .m_container .news_wra .content_wra .tree1 {
  top: -115px;
  left: 50%;
  margin-left: 333px;
  z-index: -1;
}
#news .news_content .m_container .news_wra .content_wra .tree2 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: auto;
  bottom: -108px;
  right: auto;
  left: 7.9%;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra .tree2 {
    display: none;
  }
}
#news .news_content .m_container .news_wra .content_wra .tree3 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: auto;
  bottom: -189px;
  left: 34.6%;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra .tree3 {
    display: none;
  }
}
#news .news_content .m_container .news_wra .content_wra .tree4 {
  bottom: -131px;
  left: auto;
  right: 23%;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra .tree4 {
    bottom: -170px;
    right: auto;
    left: 50%;
    margin-left: -147px;
    display: block;
  }
}
#news .news_content .m_container .news_wra .content_wra .tree5 {
  top: auto;
  bottom: -86px;
  right: 8%;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra .tree5 {
    bottom: -130px;
    right: auto;
    left: 50%;
    margin-left: 79px;
    display: block;
  }
}
#news .news_content .m_container .news_wra .content_wra::before {
  position: absolute;
  content: "";
  background-image: url("../img/news_content.png");
  left: 40px;
  top: 59px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 68px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra::before {
    padding: 82px 17px 29px;
    top: 25px;
    left: 18px;
    width: 51px;
    height: 49px;
  }
}
#news .news_content .m_container .news_wra .content_wra h5 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 35px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra h5 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }
}
#news .news_content .m_container .news_wra .content_wra p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .content_wra p {
    letter-spacing: 1px;
  }
}
#news .news_content .m_container .news_wra .content_wra a {
  line-height: 34px;
  border-radius: 21px;
  background-color: #f69f65;
  display: inline;
  padding: 6px;
  text-align: center;
  color: #fff;
}
#news .news_content .m_container .news_wra .photo_title {
  width: 129px;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .photo_title {
    margin-top: 32px;
  }
}
#news .news_content .m_container .news_wra .photo_wrapper {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .photo_wrapper {
    margin-top: 15px;
  }
}
#news .news_content .m_container .news_wra .photo_wrapper .row {
  margin-left: -17px;
  margin-right: -17px;
}
#news .news_content .m_container .news_wra .photo_wrapper .row > div {
  margin-bottom: 30px;
  padding-left: 17px;
  padding-right: 17px;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  #news .news_content .m_container .news_wra .photo_wrapper .row > div {
    margin-bottom: 20px;
  }
}
#news .news_content .m_container .news_wra .photo_wrapper .row .his_frame {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding-bottom: 73.75%;
  transition: all 0.2s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
}
#news .news_content .m_container .news_wra .photo_wrapper .row .his_frame::before {
  transition: all 0.2s;
}
#news .news_content .m_container .news_wra .photo_wrapper .row .his_frame:hover::before,
#news .news_content .m_container .news_wra .photo_wrapper .row .his_frame.active::before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  content: "";
  transition: all 0.2s;
}
#news .news_content .m_container .news_wra .photo_wrapper .row .avator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#news .news_content .m_container .news_wra .photo_wrapper .history .frame_square {
  text-align: center;
}
#news .news_content .m_container .news_wra .photo_wrapper .more_btn {
  display: flex;
}
#news .news_content .m_container .news_wra .photo_wrapper .more_btn div {
  display: inline-flex;
  line-height: 24px;
  margin: 0 auto;
  border-radius: 25px;
  border: 1px solid #41220f;
  padding: 10px 27px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #41220f;
  transition: all 0.2s;
  cursor: pointer;
}
#news .news_content .m_container .news_wra .photo_wrapper .more_btn div img {
  margin-left: 8px;
  transform: rotate(0deg);
  transition: all 0.2s;
}
#news .news_content .m_container .news_wra .photo_wrapper .more_btn div:hover {
  background-color: #f8f0e2;
}
#news .news_content .m_container .news_wra .photo_wrapper .more_btn div:hover img {
  transform: rotate(180deg);
}

#summary .banner .banner_wra .title img {
  position: absolute;
  right: 49px;
  bottom: 29px;
}
@media screen and (max-width: 768px) {
  #summary .banner .banner_wra .title img {
    right: 34px;
    bottom: 17px;
  }
}

#summary .summary {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #summary .summary {
    padding-bottom: 45px;
  }
}
#summary .summary .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container {
    display: block;
    padding: 0 15px;
  }
}
#summary .summary .m_container .w_dot {
  position: absolute;
  top: 19px;
  left: -43px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#summary .summary .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 3px;
  left: 50%;
  margin-left: 148px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #summary .summary .m_container .tree2 {
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#summary .summary .m_container .tree4 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -36px;
  left: -15px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .tree4 {
    display: none;
  }
}
#summary .summary .m_container .tree5 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 335px;
  right: -19px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .tree5 {
    display: none;
  }
}
#summary .summary .m_container .summary_wra {
  margin-top: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra {
    margin-top: 30px;
  }
}
#summary .summary .m_container .summary_wra > p {
  line-height: 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  margin-bottom: 35px;
  color: #41220f;
}
#summary .summary .m_container .summary_wra .poster-wrapper {
  background-color: #fbf7f1;
  border-radius: 25px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  padding-top: 34px;
  padding-bottom: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper {
    margin-top: 30px;
    padding: 25px 16px;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper .col-12 {
  padding: 0 33px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper .col-12 {
    padding: 0;
    margin-bottom: 10px;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper .col-12:first-child {
  padding-right: 14px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper .col-12:first-child {
    padding: 0;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper .col-12:nth-child(2) {
  padding-left: 14px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper .col-12:nth-child(2) {
    padding: 0;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper img {
  width: 100%;
  max-width: 100%;
}
#summary .summary .m_container .summary_wra .poster-wrapper p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
  color: #d29c79;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper p {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 20px;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper div:last-child {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra .poster-wrapper div:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }
}

#press .banner .banner_wra .title img {
  position: absolute;
  right: 49px;
  bottom: 29px;
}
@media screen and (max-width: 768px) {
  #press .banner .banner_wra .title img {
    right: 34px;
    bottom: 17px;
  }
}

#press .press {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  padding-bottom: 54px;
  background-attachment: fixed;
}
#press .press .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container {
    display: block;
    padding: 0 15px;
  }
}
#press .press .m_container .w_dot {
  position: absolute;
  top: 35px;
  left: -15.5px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#press .press .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 78px;
  right: 53px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #press .press .m_container .tree1 {
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#press .press .m_container .press_wra {
  margin-top: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra {
    margin-top: 30px;
  }
}
#press .press .m_container .press_wra h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-left: 0.8px;
  line-height: 47px;
  color: #41220f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra h2 {
    font-size: 22px;
    letter-spacing: 0.4px;
    padding-left: 0.4px;
    line-height: 30.5px;
  }
}
#press .press .m_container .press_wra .info {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #41220f;
  margin-top: 42px;
  padding: 39px 42px 30px 103px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .info {
    margin-top: 30px;
    padding: 50px 18px 40px;
  }
}
#press .press .m_container .press_wra .info .d2 {
  position: absolute;
  right: 55px;
  top: -21px;
  width: 210px;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  #press .press .m_container .press_wra .info .d2 {
    display: none;
  }
}
#press .press .m_container .press_wra .info li {
  position: relative;
}
#press .press .m_container .press_wra .info li:first-child {
  margin-bottom: 35px;
}
#press .press .m_container .press_wra .info li h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .info li h5 {
    margin-left: 62px;
    letter-spacing: 1px;
  }
}
#press .press .m_container .press_wra .info li h5::before {
  position: absolute;
  content: "";
  background-image: url("../img/press/book.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 51px;
  height: 43px;
  top: -9px;
  left: -60px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .info li h5::before {
    left: -62px;
  }
}
#press .press .m_container .press_wra .info li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 7px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .info li p {
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 27px;
  }
}
#press .press .m_container .press_wra .map {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 18px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .map {
    padding: 80px 18px;
  }
}
@media screen and (max-width: 576px) {
  #press .press .m_container .press_wra .map {
    padding: 40px 18px;
  }
}
#press .press .m_container .press_wra .map .d1 {
  position: absolute;
  left: 30px;
  bottom: 8px;
  width: 300px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #press .press .m_container .press_wra .map .d1 {
    width: 107px;
    left: 18px;
    bottom: 10px;
    width: 100%;
    max-width: 32.434%;
    min-width: 107px;
  }
}
#press .press .m_container .press_wra .map .map_book {
  position: absolute;
  right: 85px;
  bottom: 30px;
  width: 117px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #press .press .m_container .press_wra .map .map_book {
    right: 18px;
    bottom: 15px;
    width: 64px;
    width: 100%;
    max-width: 12.65%;
    min-width: 64px;
  }
}
#press .press .m_container .press_wra .map .map_bg {
  position: absolute;
  top: 130px;
  left: 66.5px;
  width: 88.435%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .map .map_bg {
    top: 0;
    width: 100%;
    left: 0;
  }
}
#press .press .m_container .press_wra .map .map_pic {
  width: 100%;
  max-width: 702px;
  border-radius: 20px;
  z-index: 1;
}
#press .press .m_container .press_wra .agenda_wra {
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra {
    margin-top: 30px;
  }
}
#press .press .m_container .press_wra .agenda_wra .w_dot {
  position: absolute;
  display: none;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .w_dot {
    display: block;
    top: 33.4px;
    left: 50%;
    margin-left: -124px;
  }
}
#press .press .m_container .press_wra .agenda_wra .tree1 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 83px;
  left: 75px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 576px) {
  #press .press .m_container .press_wra .agenda_wra .tree1 {
    top: 104px;
    left: 3px;
  }
}
#press .press .m_container .press_wra .agenda_wra .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 105px;
  right: 28px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #press .press .m_container .press_wra .agenda_wra .tree2 {
    top: 78px;
    right: 5px;
    left: auto;
    margin-left: 0;
  }
}
#press .press .m_container .press_wra .agenda_wra .title {
  text-align: center;
}
#press .press .m_container .press_wra .agenda_wra .title img {
  width: 129px;
}
#press .press .m_container .press_wra .agenda_wra .agenda {
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda {
    margin-top: 20px;
  }
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li {
  display: flex;
  align-items: center;
  border-radius: 36px;
  overflow: hidden;
  background-color: #f8f0e2;
  box-shadow: 2px 3px 3px #e9d8be;
  height: 65px;
  padding-right: 40px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 992px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li {
    border-radius: 25px;
    height: auto;
    padding: 12px 8px 12px 82px;
    display: block;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li:nth-child(even) .clock {
  background-color: #f6ba65;
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li .clock {
  min-width: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f69f65;
  height: 100%;
  margin-right: 46px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li .clock {
    min-width: 52px;
    width: 52px;
    height: 52px;
    position: absolute;
    top: 12px;
    left: 9px;
    border-radius: 50%;
  }
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li .clock img {
    width: 28px;
  }
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li p {
  font-size: 18px;
  color: #41220f;
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li .time {
  color: #9a7b69;
  letter-spacing: 0.8px;
  width: 18%;
  margin-right: 20px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li .time {
    width: auto;
    letter-spacing: 0.4px;
    margin-right: 0;
    margin-bottom: 4.5px;
  }
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li .cn {
  font-weight: 500;
  width: 30.5%;
  letter-spacing: 1.6px;
  margin-right: 20px;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li .cn {
    width: auto;
    letter-spacing: 0.8px;
    margin-right: 0;
  }
}
#press .press .m_container .press_wra .agenda_wra .agenda ul li .en {
  letter-spacing: 1.2px;
  width: calc(100% - 80px - 18% - 30.5% - 86px);
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .agenda_wra .agenda ul li .en {
    width: auto;
    letter-spacing: 1.6px;
  }
}
#press .press .m_container .press_wra .contact_wra {
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #press .press .m_container .press_wra .contact_wra {
    margin-top: 30px;
  }
}
#press .press .m_container .press_wra .contact_wra .tree1 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 45px;
  left: 118px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 576px) {
  #press .press .m_container .press_wra .contact_wra .tree1 {
    display: none;
  }
}
#press .press .m_container .press_wra .contact_wra .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 85px;
  right: 63px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #press .press .m_container .press_wra .contact_wra .tree2 {
    display: none;
  }
}
#press .press .m_container .press_wra .contact_wra .title {
  text-align: center;
  margin-bottom: 16px;
}
#press .press .m_container .press_wra .contact_wra .title img {
  width: 176px;
}
#press .press .m_container .press_wra .contact_wra .contact {
  text-align: center;
}
#press .press .m_container .press_wra .contact_wra .contact p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-left: 1.6px;
  line-height: 30px;
  color: #41220f;
}

#album .banner .banner_wra .title img {
  position: absolute;
  right: 42px;
  bottom: 29px;
}
@media screen and (max-width: 768px) {
  #album .banner .banner_wra .title img {
    right: 34px;
    bottom: 17px;
  }
}

#album .album {
  background-image: url("../img/index_news_bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #album .album {
    padding-bottom: 45px;
  }
}
#album .album .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #album .album .m_container {
    display: block;
    padding: 0 15px;
  }
}
#album .album .m_container .bread_wra {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  #album .album .m_container .bread_wra {
    display: block;
  }
}
#album .album .m_container .w_dot {
  position: absolute;
  background-image: url("../img/album/dot.png");
  background-size: 1227px 100%;
  background-position: center top;
  background-repeat: no-repeat;
  width: 1227px;
  height: calc(100% + 4px);
  top: 15px;
  left: -20px;
  z-index: -1;
}
#album .album .m_container .w_dot_s {
  position: absolute;
  top: 20px;
  right: 35px;
}
#album .album .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 59px;
  right: -27px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #album .album .m_container .tree1 {
    top: -28px;
    right: 7px;
  }
}
#album .album .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 47.9%;
  left: -21px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .tree2 {
    display: none;
  }
}
#album .album .m_container .tree3 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  bottom: -22px;
  left: 22px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .tree3 {
    display: none;
  }
}
#album .album .m_container .tree4 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -36px;
  right: 256px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .tree4 {
    display: none;
  }
}
#album .album .m_container .select_wra {
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  #album .album .m_container .select_wra {
    margin-top: 30px;
  }
}
#album .album .m_container .select_parent {
  position: relative;
}
@media screen and (max-width: 992px) {
  #album .album .m_container .select_parent {
    max-width: 540px;
    margin: 0 auto;
  }
}
#album .album .m_container .select_parent::before {
  background-image: url("../img/album/select.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 10px;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
}
#album .album .m_container .select_parent.open::before {
  transform: translateY(-50%) rotate(180deg);
}
#album .album .m_container .select_parent.open b {
  border-radius: 21px 21px 0 0;
}
#album .album .m_container b {
  width: 100%;
  color: #fff;
  background-color: #d29c79;
  padding: 9px 0;
  border-radius: 21px;
  padding-left: 25px;
  padding-right: 66px;
  letter-spacing: 1.5px;
  font-size: 18px;
  cursor: context-menu;
  line-height: 24px;
  display: block;
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container b {
    padding-right: 40px;
  }
}
#album .album .m_container .select_sub {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
  padding: 5px;
  border-radius: 0 0 21px 21px;
}
#album .album .m_container .select_sub div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#album .album .m_container .select_sub div:last-child {
  border-radius: 0 0 21px 21px;
}
#album .album .m_container .select_sub div:hover {
  background-color: rgba(209, 156, 120, 0.8);
}
#album .album .m_container .select_sub div span {
  display: block;
  font-size: 15px;
  line-height: 21px;
  color: #000000;
  font-weight: 400;
  padding: 6px 19px;
  letter-spacing: 0.5px;
  text-align: center;
}
#album .album .m_container .album_wra {
  margin: 0 auto;
  margin-top: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra {
    margin-top: 44px;
  }
}
#album .album .m_container .album_wra .area_wra {
  border: 1px solid #41220f;
  border-radius: 25px;
  padding: 30px 51px 0px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra {
    padding: 25px 10px 0;
    margin-bottom: 30px;
  }
}
#album .album .m_container .album_wra .area_wra .loading-container {
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
#album .album .m_container .album_wra .area_wra .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #41220f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#album .album .m_container .album_wra .area_wra .area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area {
    padding-left: 5px;
  }
}
#album .album .m_container .album_wra .area_wra .area img {
  margin-right: 9px;
}
#album .album .m_container .album_wra .area_wra .area span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: #41220f;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area span {
    letter-spacing: 1px;
  }
}
#album .album .m_container .album_wra .area_wra ul {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul {
    margin-top: 25px;
    padding-bottom: 15px;
  }
}
#album .album .m_container .album_wra .area_wra ul.row {
  margin-left: -19px;
  margin-right: -19px;
}
#album .album .m_container .album_wra .area_wra ul li {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul li {
    margin-bottom: 10px;
  }
}
#album .album .m_container .album_wra .area_wra ul li.col-12 {
  padding-right: 19px;
  padding-left: 19px;
}
#album .album .m_container .album_wra .area_wra ul li > div {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  border-radius: 25px;
  overflow: hidden;
  background-color: #fbf7f1;
  transition: all 0.2s;
}
#album .album .m_container .album_wra .area_wra ul li > div:hover {
  background-color: #d29c79;
}
#album .album .m_container .album_wra .area_wra ul li > div:hover .detail p {
  color: #fff;
}
#album .album .m_container .album_wra .area_wra ul li > div:hover .frame::after {
  opacity: 1;
}
#album .album .m_container .album_wra .area_wra ul li > div .frame {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 74.5%;
  transition: all 0.2s;
}
#album .album .m_container .album_wra .area_wra ul li > div .frame::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.2s;
}
#album .album .m_container .album_wra .area_wra ul li > div .frame .avator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
#album .album .m_container .album_wra .area_wra ul li > div .detail {
  padding: 24px 33px;
  min-height: 126px;
}
#album .album .m_container .album_wra .area_wra ul li > div .detail p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 26px;
  color: #41220f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  transition: all 0.2s;
}
#album .album .m_container .album_wra .area_wra ul li > div .detail .en {
  letter-spacing: 1px;
  -webkit-line-clamp: 2;
}
#album .album .m_container .pagination {
  align-items: center;
  justify-content: center;
  margin-top: 31px;
}
#album .album .m_container .pagination .prev {
  background-image: url("../img/page_left.svg");
  width: 8px;
  height: 14px;
  margin-right: 13px;
}
#album .album .m_container .pagination .prev:hover {
  opacity: 0.8;
}
#album .album .m_container .pagination .next {
  background-image: url("../img/page_right.svg");
  width: 8px;
  height: 14px;
  margin-left: 13px;
}
#album .album .m_container .pagination .next:hover {
  opacity: 0.8;
}
#album .album .m_container .pagination .book-page {
  color: #41220f;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  line-height: 31px;
  font-size: 18px;
  border: 1px solid #41220f;
  margin: 0 6.5px;
}
#album .album .m_container .pagination .book-page.tab-act, #album .album .m_container .pagination .book-page:hover {
  border: 0;
  background-color: #f69f65;
  color: #fff;
}

#album .modal-dialog {
  margin: 1.25rem auto;
}
@media screen and (max-width: 768px) {
  #album .modal-body {
    padding: 90px 29px;
  }
}
#album .modal-body .name {
  margin-bottom: 25px;
  text-align: center;
}
#album .modal-body .name h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-left: 1.5px;
  line-height: 28px;
  color: #41220f;
}
@media screen and (max-width: 768px) {
  #album .modal-body .name h5 {
    letter-spacing: 1px;
    padding-left: 1px;
  }
}
@media screen and (max-width: 768px) {
  #album .modal-body .swiper_history {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  #album .modal-body .swiper_history .swiper-button-prev {
    top: 50%;
    bottom: auto;
    left: -20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #album .modal-body .swiper_history .swiper-button-next {
    top: 50%;
    bottom: auto;
    right: -20px;
    left: auto;
    margin-left: 0;
  }
}
#album .modal-body .intro {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  #album .modal-body .intro {
    margin-top: 26px;
  }
}
#album .modal-body .intro p {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #41220f;
}
@media screen and (max-width: 768px) {
  #album .modal-body .intro p {
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 768px) {
  #festival .banner .banner_wra .title {
    padding-right: 40px;
  }
}
#festival .banner .banner_wra .title img {
  position: absolute;
  right: -7px;
  bottom: -2px;
  width: 62px;
}
@media screen and (max-width: 768px) {
  #festival .banner .banner_wra .title img {
    right: -10px;
    bottom: -9px;
  }
}

#festival .festival {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #festival .festival {
    padding-bottom: 45px;
  }
}
#festival .festival .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container {
    display: block;
    padding: 0 15px;
  }
}
#festival .festival .m_container .w_dot {
  position: absolute;
  top: 26px;
  left: 21px;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#festival .festival .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 95px;
  left: 30px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .tree1 {
    display: none;
  }
}
#festival .festival .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 78px;
  right: 60px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .tree2 {
    top: -25px;
    right: 7px;
  }
}
#festival .festival .m_container .festival_wra {
  margin-top: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra {
    margin-top: 30px;
  }
}
#festival .festival .m_container .festival_wra h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-left: 0.8px;
  line-height: 47px;
  color: #41220f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra h2 {
    font-size: 22px;
    letter-spacing: 0.4px;
    padding-left: 0.4px;
    line-height: 30.5px;
  }
}
#festival .festival .m_container .festival_wra .info {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #41220f;
  margin-top: 42px;
  padding: 39px 42px 30px 103px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .info {
    margin-top: 30px;
    padding: 50px 18px 40px;
  }
}
#festival .festival .m_container .festival_wra .info .d1 {
  position: absolute;
  right: -29px;
  top: -54.7px;
  width: 211px;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  #festival .festival .m_container .festival_wra .info .d1 {
    display: none;
  }
}
#festival .festival .m_container .festival_wra .info .d1.animate {
  animation: rotate2 2s linear infinite;
  opacity: 1;
}
#festival .festival .m_container .festival_wra .info li {
  position: relative;
}
#festival .festival .m_container .festival_wra .info li:first-child {
  margin-bottom: 35px;
}
#festival .festival .m_container .festival_wra .info li h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .info li h5 {
    margin-left: 62px;
    letter-spacing: 1px;
  }
}
#festival .festival .m_container .festival_wra .info li h5::before {
  position: absolute;
  content: "";
  background-image: url("../img/press/book.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 51px;
  height: 43px;
  top: -9px;
  left: -60px;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .info li h5::before {
    left: -62px;
  }
}
#festival .festival .m_container .festival_wra .info li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 7px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .info li p {
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 27px;
  }
}
#festival .festival .m_container .festival_wra .map {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0;
}
#festival .festival .m_container .festival_wra .map.animate {
  animation-name: my_fadeInUp;
}
@keyframes my_fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .map {
    display: block;
    padding: 27px 18px;
  }
}
#festival .festival .m_container .festival_wra .map img {
  width: 100%;
  max-width: 100%;
}
#festival .festival .m_container .festival_wra .map img.animate {
  animation-name: my_fadeInUp;
}
#festival .festival .m_container .festival_wra .map .more_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .map .more_btn {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    width: 99px;
    height: 31px;
    line-height: 31px;
    font-size: 18px;
    letter-spacing: 0.8px;
    padding-left: 0.8px;
    color: #41220f;
    background-color: #f9e3bf;
    border-radius: 16px;
    margin-top: 12px;
  }
}
#festival .festival .m_container .festival_wra .act_wra {
  margin-top: 30px;
  position: relative;
}
#festival .festival .m_container .festival_wra .act_wra .tree1 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  top: 83px;
  left: 75px;
  width: 53px;
  height: 62px;
  display: block;
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .festival_wra .act_wra .tree1 {
    top: 104px;
    left: 3px;
  }
}
#festival .festival .m_container .festival_wra .act_wra .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 105px;
  right: 28px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .festival_wra .act_wra .tree2 {
    top: 78px;
    right: 5px;
    left: auto;
    margin-left: 0;
  }
}
#festival .festival .m_container .festival_wra .act_wra .title {
  text-align: center;
}
#festival .festival .m_container .festival_wra .act_wra .title img {
  width: 129px;
}
#festival .festival .m_container .festival_wra .act_wra .act {
  margin-top: 25px;
  border-radius: 25px;
  background-image: url("../img/festival/act_bg.jpg");
  background-size: cover;
  background-position: center top;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .festival_wra .act_wra .act {
    background-image: url("../img/festival/act_bg_s.jpg");
    padding: 24px 48px 30px;
  }
}
#festival .festival .m_container .festival_wra .act_wra .act::after {
  position: absolute;
  content: "";
  background-color: #4d341f;
  opacity: 0.46;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#festival .festival .m_container .festival_wra .act_wra .act ul {
  position: relative;
  z-index: 1;
  margin-left: -12px;
  margin-right: -12px;
}
#festival .festival .m_container .festival_wra .act_wra .act ul li {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #festival .festival .m_container .festival_wra .act_wra .act ul li {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .festival_wra .act_wra .act ul li {
    margin-bottom: 10px;
  }
}
#festival .festival .m_container .festival_wra .act_wra .act ul li a {
  transition: all 0.2s;
}
#festival .festival .m_container .festival_wra .act_wra .act ul li a:hover {
  filter: brightness(1.1);
}
#festival .festival .m_container .festival_wra .act_wra .act ul li a:hover div {
  transform: translateY(-3%);
}
#festival .festival .m_container .festival_wra .act_wra .act ul li div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border-radius: 25px;
  background-image: url("../img/festival/act_item_bg.jpg");
  background-size: cover;
  background-position: center top;
  min-height: 203px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 19px 10px;
  transform: translateY(0px);
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  #festival .festival .m_container .festival_wra .act_wra .act ul li div {
    max-width: 320px;
    margin: 0 auto;
  }
}
#festival .festival .m_container .festival_wra .act_wra .act ul li div span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-left: 1.6px;
  color: #ffffff;
  top: 0;
  left: 0;
  width: 50px;
  height: 41px;
  background-color: #f69f65;
  border-radius: 0 0 25px 0;
}
#festival .festival .m_container .festival_wra .act_wra .act ul li div p {
  color: #41220f;
}
#festival .festival .m_container .festival_wra .act_wra .act ul li div .cn {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding-left: 1.6px;
  line-height: 34px;
  margin-bottom: 6.5px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #festival .festival .m_container .festival_wra .act_wra .act ul li div .cn {
    font-size: 20px;
    line-height: 2.833vw;
  }
}
#festival .festival .m_container .festival_wra .act_wra .act ul li div .en {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-left: 1px;
  line-height: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #festival .festival .m_container .festival_wra .act_wra .act ul li div .en {
    line-height: 2vw;
    font-size: 14px;
  }
}
#festival .festival .m_container .festival_wra .act_wra .act ul li:nth-last-of-type(odd) span {
  background-color: #f6ba65;
}

#festival .modal {
  background-color: rgba(51, 24, 8, 0.9);
}
#festival .modal-dialog {
  max-width: 768px;
  padding: 0 15px;
  margin: 4.75rem auto;
}
#festival .modal-content {
  border-radius: 20px;
  background-color: #fbf7f1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
}
#festival .modal-body {
  padding: 92px 18px 18px;
}
#festival .modal-body .modal_close {
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s;
}
#festival .modal-body .modal_close:hover {
  transform: rotate(180deg);
}
#festival .modal-body .map_wra .scroll {
  overflow: auto hidden;
}
#festival .modal-body .map_wra .scroll img {
  min-width: 534px;
  width: 100%;
}
#festival .modal-body .map_wra .scroll p {
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 20px;
  color: #41220f;
  margin-top: 7px;
}

#booklover .banner .banner_wra .title img {
  position: absolute;
  right: 5px;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  #booklover .banner .banner_wra .title img {
    right: 34px;
    bottom: 17px;
  }
}

#booklover .booklover {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #booklover .booklover {
    padding-bottom: 56px;
  }
}
#booklover .booklover .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container {
    display: block;
    padding: 0 15px;
  }
}
#booklover .booklover .m_container .bread_wra {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  #booklover .booklover .m_container .bread_wra {
    display: block;
  }
}
#booklover .booklover .m_container .w_dot {
  position: absolute;
  top: 48px;
  left: -5px;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#booklover .booklover .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  bottom: -12px;
  left: -14px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container .tree1 {
    display: none;
  }
}
#booklover .booklover .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -18px;
  right: 196px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #booklover .booklover .m_container .tree2 {
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#booklover .booklover .m_container .select_wra {
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  #booklover .booklover .m_container .select_wra {
    margin-top: 36px;
  }
}
#booklover .booklover .m_container .select_parent {
  position: relative;
  min-width: 328px;
}
@media screen and (max-width: 992px) {
  #booklover .booklover .m_container .select_parent {
    max-width: 540px;
    margin: 0 auto;
  }
}
#booklover .booklover .m_container .select_parent::before {
  background-image: url("../img/album/select.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 10px;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
}
#booklover .booklover .m_container .select_parent.open::before {
  transform: translateY(-50%) rotate(180deg);
}
#booklover .booklover .m_container .select_parent.open b {
  border-radius: 21px 21px 0 0;
}
#booklover .booklover .m_container b {
  width: 100%;
  color: #fff;
  background-color: #d29c79;
  padding: 9px 0;
  border-radius: 21px;
  padding-left: 25px;
  padding-right: 66px;
  letter-spacing: 1.5px;
  font-size: 18px;
  cursor: context-menu;
  line-height: 24px;
  display: block;
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container b {
    padding-right: 40px;
  }
}
#booklover .booklover .m_container .select_sub {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
  padding: 5px;
  border-radius: 0 0 21px 21px;
}
#booklover .booklover .m_container .select_sub div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#booklover .booklover .m_container .select_sub div:last-child {
  border-radius: 0 0 21px 21px;
}
#booklover .booklover .m_container .select_sub div:hover {
  background-color: rgba(209, 156, 120, 0.8);
}
#booklover .booklover .m_container .select_sub div span {
  display: block;
  font-size: 15px;
  line-height: 21px;
  color: #000000;
  font-weight: 400;
  padding: 6px 19px;
  letter-spacing: 0.5px;
  text-align: center;
}
#booklover .booklover .m_container .g_loader {
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
#booklover .booklover .m_container .g_loader span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #41220f;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
#booklover .booklover .m_container .booklover_wra {
  margin-top: 38px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container .booklover_wra {
    margin-top: 24px;
    width: 92vw;
  }
}
#booklover .booklover .m_container .booklover_wra > p {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 20px;
  color: #41220f;
  display: none;
}
@media screen and (max-width: 1200px) {
  #booklover .booklover .m_container .booklover_wra > p {
    display: block;
  }
}
#booklover .booklover .m_container .booklover_wra .a_container {
  max-width: 1150px;
  width: 100%;
}
#booklover .booklover .m_container .booklover_wra .a_container .book_scroll {
  overflow: auto hidden;
  width: 100%;
}
#booklover .booklover .m_container .booklover_wra table {
  width: 1150px;
  max-width: 1150px;
}
#booklover .booklover .m_container .booklover_wra table thead th {
  background-color: #f6ba65;
  text-align: center;
  color: #fff;
  border-radius: 25px 25px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 26px;
  padding: 12px 0;
}
#booklover .booklover .m_container .booklover_wra table thead th:nth-last-of-type(even) {
  background-color: #f69f65;
}
#booklover .booklover .m_container .booklover_wra table thead th p {
  font-size: 16px;
  line-height: 24px;
}
#booklover .booklover .m_container .booklover_wra .book_scroll {
  border-radius: 0 0 25px 25px;
  overflow: hidden;
  color: #41220f;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table#default_ tbody {
  display: none;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table#default_ tbody.active {
  display: table-row-group;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr {
  height: 75px;
  background-color: #fff7e8;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr:nth-of-type(even) {
  background-color: #f8f0e2;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table thead tr th:nth-of-type(1),
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(1) {
  width: 31.34%;
  max-width: 31.34%;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table thead tr th:nth-of-type(2),
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(2) {
  width: 27.5%;
  max-width: 27.5%;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table thead tr th:nth-of-type(3),
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(3) {
  width: 7.37%;
  max-width: 7.37%;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table thead tr th:nth-of-type(4),
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(4) {
  width: 22.16%;
  max-width: 22.16%;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(2) {
  padding: 0px 38px;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(3) {
  text-align: center;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td:nth-of-type(4) {
  padding: 0px 25px;
  text-align: center;
}
#booklover .booklover .m_container .booklover_wra .book_scroll table tbody tr td {
  padding: 0 32px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.5px;
  text-align: left;
}
#booklover .booklover .m_container .pagination {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #booklover .booklover .m_container .pagination {
    margin-top: 30px;
  }
}

#leaflet .banner .banner_wra .title {
  padding-right: 44px;
}
@media screen and (max-width: 768px) {
  #leaflet .banner .banner_wra .title {
    padding-right: 29px;
  }
}
#leaflet .banner .banner_wra .title img {
  position: absolute;
  right: 7px;
}
@media screen and (max-width: 768px) {
  #leaflet .banner .banner_wra .title img {
    right: 0;
    bottom: -6px;
  }
}

#leaflet .leaflet {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  padding-bottom: 120px;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet {
    padding-bottom: 54px;
  }
}
#leaflet .leaflet .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container {
    display: block;
    padding: 0 15px;
  }
}
#leaflet .leaflet .m_container .tree {
  position: absolute;
  background-image: url("../img/leaflet/tree.png");
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1131px;
  height: 283px;
}
@media screen and (max-width: 576px) {
  #leaflet .leaflet .m_container .tree {
    background-image: url("../img/tree1.svg");
    width: 45px;
    height: 45px;
    right: auto;
    transform: initial;
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#leaflet .leaflet .m_container .leaflet_wra {
  margin-top: 60px;
  padding: 0 3px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container .leaflet_wra {
    margin-top: 24px;
    padding: 0;
  }
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div {
  max-width: 364px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  #leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div {
    margin-bottom: 30px;
  }
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .box img {
  width: 100%;
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail {
    margin-top: 15px;
  }
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-left: 1.6px;
  line-height: 27px;
  color: #41220f;
  text-align: center;
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail p {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 20px;
  }
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail .download_btn {
  display: flex;
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail .download_btn div {
  display: inline-flex;
  line-height: 24px;
  margin: 0 auto;
  border-radius: 25px;
  border: 1px solid #41220f;
  padding: 10px 27px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #41220f;
  transition: all 0.2s;
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a .detail .download_btn div img {
  margin-left: 8px;
  transform: rotate(0deg);
  transition: all 0.2s;
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a:hover .box {
  filter: brightness(1.1);
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a:hover .download_btn div {
  background-color: #f8f0e2;
}
#leaflet .leaflet .m_container .leaflet_wra .l-wrapper > div a:hover .download_btn div img {
  transform: rotate(180deg);
}
#leaflet .leaflet .m_container .leaflet_wra .sheet {
  border-radius: 25px;
  background-color: #fbf7f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0;
}
#leaflet .leaflet .m_container .leaflet_wra .sheet.animate {
  animation-name: my_fadeInUp;
}
@keyframes my_fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container .leaflet_wra .sheet {
    display: block;
    padding: 27px 18px;
  }
}
#leaflet .leaflet .m_container .leaflet_wra .sheet img {
  width: 100%;
  max-width: 100%;
}
#leaflet .leaflet .m_container .leaflet_wra .sheet img.animate {
  animation-name: my_fadeInUp;
}
#leaflet .leaflet .m_container .leaflet_wra .sheet .more_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #leaflet .leaflet .m_container .leaflet_wra .sheet .more_btn {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    width: 99px;
    height: 31px;
    line-height: 31px;
    font-size: 18px;
    letter-spacing: 0.8px;
    padding-left: 0.8px;
    color: #41220f;
    background-color: #f9e3bf;
    border-radius: 16px;
    margin-top: 12px;
  }
}

#leaflet .modal {
  background-color: rgba(51, 24, 8, 0.9);
}
#leaflet .modal-dialog {
  max-width: 768px;
  padding: 0 15px;
  margin: 4.75rem auto;
}
#leaflet .modal-content {
  border-radius: 20px;
  background-color: #fbf7f1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
}
#leaflet .modal-body {
  padding: 92px 18px 18px;
}
#leaflet .modal-body .modal_close {
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s;
}
#leaflet .modal-body .modal_close:hover {
  transform: rotate(180deg);
}
#leaflet .modal-body .map_wra .scroll {
  overflow: auto hidden;
}
#leaflet .modal-body .map_wra .scroll img {
  min-width: 534px;
  width: 100%;
}
#leaflet .modal-body .map_wra .scroll p {
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 20px;
  color: #41220f;
  margin-top: 7px;
}

#marketing .banner .banner_wra .title img {
  position: absolute;
  right: 58px;
  bottom: 29px;
}
@media screen and (max-width: 768px) {
  #marketing .banner .banner_wra .title img {
    right: 41px;
    bottom: 17px;
  }
}

#marketing .marketing {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  background-attachment: fixed;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #marketing .marketing {
    padding-bottom: 55px;
  }
}
#marketing .marketing .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #marketing .marketing .m_container {
    display: block;
    padding: 0 15px;
  }
}
#marketing .marketing .m_container .w_dot {
  position: absolute;
  top: 3px;
  left: -19px;
}
@media screen and (max-width: 768px) {
  #marketing .marketing .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#marketing .marketing .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 39px;
  right: -25px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #marketing .marketing .m_container .tree2 {
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#marketing .marketing .m_container .tree5 {
  position: absolute;
  background-image: url("../img/tree2.svg");
  bottom: -22px;
  left: 2px;
  width: 53px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  #marketing .marketing .m_container .tree5 {
    display: none;
  }
}
#marketing .marketing .m_container .marketing_wra {
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #marketing .marketing .m_container .marketing_wra {
    margin-top: 36px;
  }
}
@media screen and (max-width: 992px) {
  #marketing .marketing .m_container .marketing_wra .poster-wrapper > div {
    margin-bottom: 30px;
  }
  #marketing .marketing .m_container .marketing_wra .poster-wrapper > div:last-child {
    margin-bottom: 0;
  }
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .box {
  background-color: #FBF7F1;
  border-radius: 25px;
  padding: 23px;
  transition: all 0.2s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .box img {
  width: 100%;
  max-width: 100%;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail {
    margin-top: 20px;
  }
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-left: 1.6px;
  line-height: 27px;
  color: #41220F;
  text-align: center;
  margin-bottom: 9px;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail .download_btn {
  display: flex;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail .download_btn div {
  display: inline-flex;
  line-height: 24px;
  margin: 0 auto;
  border-radius: 25px;
  border: 1px solid #41220f;
  padding: 10px 27px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #41220f;
  transition: all 0.2s;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a .detail .download_btn div img {
  margin-left: 8px;
  transform: rotate(0deg);
  transition: all 0.2s;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a:hover .box {
  filter: brightness(1.1);
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a:hover .download_btn div {
  background-color: #f8f0e2;
}
#marketing .marketing .m_container .marketing_wra .poster-wrapper > div a:hover .download_btn div img {
  transform: rotate(180deg);
}

#partner .banner .banner_wra .title {
  padding-right: 44px;
}
#partner .banner .banner_wra .title img {
  position: absolute;
  right: 7px;
}
@media screen and (max-width: 768px) {
  #partner .banner .banner_wra .title img {
    right: 34px;
    bottom: 17px;
  }
}

#partner .partner {
  background-image: url("../img/index_news_bg.jpg");
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
  position: relative;
  padding-bottom: 75px;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #partner .partner {
    padding-bottom: 45px;
  }
}
#partner .partner .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container {
    display: block;
    padding: 0 15px;
  }
}
#partner .partner .m_container .w_dot {
  position: absolute;
  top: 15px;
  left: -13px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .w_dot {
    top: 20px;
    right: 35px;
    left: auto;
  }
}
#partner .partner .m_container .tree1 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 58px;
  right: -27px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 576px) {
  #partner .partner .m_container .tree1 {
    top: -25px;
    right: 7px;
    left: auto;
    margin-left: 0;
  }
}
#partner .partner .m_container .tree2 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  top: 886px;
  left: -30px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .tree2 {
    display: none;
  }
}
#partner .partner .m_container .tree3 {
  position: absolute;
  background-image: url("../img/tree1.svg");
  bottom: -39px;
  left: -24px;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .tree3 {
    display: none;
  }
}
#partner .partner .m_container .partner_wra {
  margin-top: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra {
    margin-top: 30px;
  }
}
#partner .partner .m_container .partner_wra .column {
  margin-bottom: 30px;
  border-radius: 25px;
  overflow: hidden;
}
#partner .partner .m_container .partner_wra .column:nth-of-type(even) .c_title {
  background-color: #f6ba65;
}
#partner .partner .m_container .partner_wra .column .c_title {
  background-color: #f69f65;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
}
#partner .partner .m_container .partner_wra .column .c_title img {
  width: 42px;
  margin-right: 13px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_title {
    padding: 14px 0;
  }
}
#partner .partner .m_container .partner_wra .column .c_row {
  display: flex;
  flex-wrap: wrap;
}
#partner .partner .m_container .partner_wra .column .c_row .c_column {
  width: 50%;
  text-align: center;
  background-color: #f8f0e2;
  padding: 0 4px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column {
    width: 100%;
  }
}
#partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n+1), #partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n) {
  background-color: #f8f0e2;
}
#partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n+2), #partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n+3) {
  background-color: #fff7e8;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n+2), #partner .partner .m_container .partner_wra .column .c_row .c_column:nth-child(4n+3) {
    background-color: #f8f0e2;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column:nth-last-of-type(odd) {
    background-color: #fff7e8;
  }
}
#partner .partner .m_container .partner_wra .column .c_row .c_column p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 28px;
  color: #41220f;
  padding: 16px 0;
  padding-left: 1px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column p {
    padding: 22px 0;
  }
}
#partner .partner .m_container .partner_wra .column .c_row .c_column p span {
  font-size: 16px;
  letter-spacing: 0.5px;
}

/*# sourceMappingURL=style.css.map */
