@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;
}

.my_fadeInUp {
  animation: my_fadeInUp 0.3s linear forwards;
}

#index #news .m_container .news-wra .swiper .item.my_fadeInUp {
  animation: my_fadeInUp 0.7s linear forwards;
}

@keyframes my_fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@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);
  }
}
.kv-pulse {
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.kv-fadeInUp {
  animation: kv-fadeInUp 0.5s ease-out forwards;
}

.kv-fadeInLeft {
  animation: kv-fadeInLeft 0.5s ease-out forwards;
}

.kv-fadeInRight {
  animation: kv-fadeInRight 0.5s ease-out forwards;
}

.kv-bounceIn {
  animation: kv-bounceIn 0.6s ease-out forwards;
}

.kv-scaleIn {
  animation: kv-scaleIn 0.6s ease-out forwards;
}

.kv-fadeIn {
  animation: kv-fadeIn 0.6s ease-out forwards;
}

@keyframes kv-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kv-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kv-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes kv-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fun_illus {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
/* 
    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;
  background: #22799F;
}
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: #97DBFA;
  -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: #97DBFA;
  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: 20px;
}
.pagination .prev {
  background-image: url("../img/page_left.svg");
  width: 10px;
  height: 17px;
  margin-right: 15px;
}
.pagination .prev:hover {
  opacity: 0.8;
}
.pagination .next {
  background-image: url("../img/page_right.svg");
  width: 10px;
  height: 17px;
  margin-left: 15px;
}
.pagination .next:hover {
  opacity: 0.8;
}
.pagination .book-page {
  color: #fff;
  background: #EA6017;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  line-height: 31px;
  font-size: 18px;
  border: 1px solid #00030E;
  margin: 0 7.5px;
}
.pagination .book-page.tab-act, .pagination .book-page:hover {
  background-color: #fff;
  color: #00030E;
}

.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: 60px;
  }
}

.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: flex-end;
  align-items: center;
  padding: 24px 87px 0;
}
@media screen and (max-width: 1270px) {
  header .header_w {
    padding: 24px 50px 0;
  }
}
@media screen and (max-width: 1200px) {
  header .header_w {
    padding: 15px;
    background: #C7EEFF;
  }
}
header .header_w .nav_ham,
header .header_w .nav_close {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header .header_w .nav_ham,
  header .header_w .nav_close {
    display: block;
  }
}
header .header_w .logo {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../img/menu_mobile_bg.png") #C7EEFF no-repeat center bottom/400px auto;
    overflow-y: auto;
  }
}
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;
  padding: 12px 45px 12px 60px;
  border-radius: 38px;
  background-color: #C7EEFF;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav {
    padding: 69px 0 0;
    border-radius: 0;
  }
}
header .header_w .menu .nav li {
  margin-left: 30px;
  position: relative;
}
header .header_w .menu .nav li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav li {
    margin-left: 0;
    margin-bottom: 26px;
    width: 100%;
  }
}
header .header_w .menu .nav li.summary_list a span {
  margin-bottom: -5.5px;
}
header .header_w .menu .nav li.festival_list a span {
  margin-bottom: -4.5px;
}
header .header_w .menu .nav li > a,
header .header_w .menu .nav li > div {
  position: relative;
  color: #00030E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all 0.2s;
}
header .header_w .menu .nav li > a::before,
header .header_w .menu .nav li > div::before {
  position: absolute;
  content: "";
  width: 140%;
  height: 120%;
  background-color: #F2A297;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 27px;
  transition: all 0.2s;
}
@media screen and (max-width: 1200px) {
  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: 1200px) {
  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 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 {
  display: block;
  position: relative;
}
header .header_w .menu .nav li div {
  cursor: default;
}
header .header_w .menu .nav li .s_menu {
  position: absolute;
  width: 143px;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  padding-top: 53px;
  display: none;
}
header .header_w .menu .nav li .s_menu.active {
  display: block;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav li .s_menu {
    position: relative;
    width: 100%;
    left: auto;
    transform: initial;
    padding-top: 0;
    margin-top: 11px;
  }
}
header .header_w .menu .nav li .s_menu ul {
  background-color: #C7EEFF;
  border-radius: 0 0 38px 38px;
  padding: 7px 15px 16px;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav li .s_menu ul {
    background-color: #F7C7BF;
    border-radius: 0;
    padding: 0;
  }
}
header .header_w .menu .nav li .s_menu ul li {
  margin-left: 0;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav li .s_menu ul li {
    padding: 14px 0;
  }
}
header .header_w .menu .nav li .s_menu ul li:first-child {
  margin-bottom: 18px;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav li .s_menu ul li:first-child {
    margin-bottom: 0px;
  }
}
header .header_w .menu .nav li .s_menu ul li:last-child {
  margin-bottom: 0;
}
header .header_w .menu .nav li .s_menu ul li a::before {
  position: absolute;
  content: "";
  width: 110%;
  background: #F7C7BF;
}
header .header_w .menu .nav li .s_menu ul li a p {
  color: #00030E;
}
@media screen and (max-width: 1200px) {
  header .header_w .menu .nav_close {
    opacity: 1;
    position: absolute;
    top: 19px;
    right: 18px;
  }
}
header .header_w .nav_ham {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 1;
}
header .header_w .nav_ham .ham-top,
header .header_w .nav_ham .ham-mid,
header .header_w .nav_ham .ham-bot {
  width: 100%;
  height: 3px;
  background-color: #00030E;
  position: absolute;
  left: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 999px;
}
header .header_w .nav_ham .ham-top {
  top: 0;
}
header .header_w .nav_ham .ham-mid {
  top: 7.5px;
}
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 {
  position: relative;
  text-align: center;
}
footer .footer_dec {
  position: absolute;
  background-image: url("../img/footer_dec.png");
  top: -189px;
  left: 50%;
  margin-left: -595px;
  width: 1103.5px;
  height: 238px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 992px) {
  footer .footer_dec {
    background-image: url("../img/footer_dec_s.png");
    top: -171px;
    margin-left: -253px;
    width: 620px;
    height: 151px;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_dec {
    top: -95px;
    margin-left: -173px;
    width: 310px;
    height: 75.5px;
  }
}
footer .f_top {
  position: absolute;
  top: -99px;
  left: 50%;
  transform: translate(-50%);
  background-image: url("../img/footer_top.png");
  width: 100%;
  height: 99px;
  background-size: auto;
  background-position: center center;
  background-repeat: repeat-x;
}
@media screen and (max-width: 750px) {
  footer .f_top {
    background-image: url("../img/footer_top_s.png");
    top: -37px;
    height: 38px;
    width: 101%;
  }
}
footer .footer_main {
  padding: 6.4px 20px 40px;
  position: relative;
  z-index: 1;
  background-color: #22799f;
}
@media screen and (max-width: 750px) {
  footer .footer_main {
    padding: 26px 22.5px 42px;
  }
}
footer .footer_main img {
  width: 100%;
  max-width: 1233px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer_main img {
    max-width: 400px;
  }
}

#index footer .footer_dec {
  background-image: url("../img/index_footer_dec.png");
  top: -247px;
  left: 50%;
  margin-left: -600px;
  width: 1037px;
  height: 274px;
}
@media screen and (max-width: 992px) {
  #index footer .footer_dec {
    background-image: url("../img/footer_dec_s.png");
    top: -171px;
    margin-left: -253px;
    width: 620px;
    height: 151px;
  }
}
@media screen and (max-width: 768px) {
  #index footer .footer_dec {
    top: -95px;
    margin-left: -173px;
    width: 310px;
    height: 75.5px;
  }
}

.modal {
  background-color: rgba(0, 3, 14, 0.8);
}
.modal-dialog {
  max-width: 1044px;
  padding: 0 15px;
  margin: 6.75rem auto;
}
.modal-content {
  border-radius: 60px;
  background-color: #97DBFA;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 1.5px solid #00030E;
}
@media screen and (max-width: 768px) {
  .modal-content {
    border-radius: 35px;
  }
}
.modal-body {
  padding: 69px 108px;
}
@media screen and (max-width: 768px) {
  .modal-body {
    padding: 81px 17px;
  }
}
.modal-body .modal_close {
  position: absolute;
  top: 30px;
  right: 28px;
  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 {
    width: 51px;
    top: 19px;
    right: 16px;
  }
}
.modal-body .swiper_history {
  position: relative;
  overflow: hidden;
}
.modal-body .swiper_history .swiper-slide {
  line-height: 0;
}
.modal-body .swiper_history .box {
  line-height: 0;
  width: 100%;
  padding-bottom: 72.25%;
  position: relative;
}
.modal-body .swiper_history img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 12px solid #FFFFFF;
  outline-offset: -12px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .modal-body .swiper_history img {
    outline: 6.5px solid #FFFFFF;
    outline-offset: -6.5px;
  }
}
.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: #31ade3;
  background-image: initial;
  background-size: 1320px auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  height: 371px;
  transition: all 0.3s ease;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/banner.png");
  background-size: 1320px auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.banner.opacity_1 {
  background-image: none;
}
.banner.opacity_1::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .banner.opacity_1 {
    background-image: none;
  }
}
@media (min-width: 1280px) {
  .banner {
    background-size: 1320px auto;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .banner {
    background-size: 104.3% auto;
    height: 28.98498vw;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: none;
    background-size: 100% auto;
    height: 78.935vw;
  }
}
@media screen and (max-width: 768px) {
  .banner::before {
    background-image: url("../img/banner_s.png");
    background-size: 100% auto;
  }
}
.banner .banner_wra {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: end;
}
.banner .banner_wra .page_title {
  position: relative;
  margin-bottom: -47px;
  margin-left: -2.58%;
  z-index: 2;
  max-width: 23.75%;
}
@media screen and (max-width: 1280px) {
  .banner .banner_wra .page_title {
    margin-bottom: -3.7%;
    margin-left: -2.58%;
    max-width: 24%;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner_wra .page_title {
    margin-left: -10.2%;
    margin-bottom: -11.3%;
    margin-left: -38px;
    margin-bottom: -42px;
    max-width: 168px;
  }
}
.banner .banner_wra .page_title img {
  width: 100%;
  max-width: 100%;
}

.section .news_content_top {
  padding-top: 60px;
}

.bread {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bread span {
  margin: 0px 7px;
}
@media screen and (max-width: 768px) {
  .bread span {
    margin: 0px 2px;
  }
}
.bread .bread-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #00030e;
  line-height: 24px;
}
@media screen and (max-width: 576px) {
  .bread .bread-item {
    font-size: 14px;
    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: #31ade3;
  position: relative;
}
.kv .kv_wra {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra {
    height: 155.47vw;
  }
}
.kv .kv_wra img {
  width: 100%;
  max-width: 100%;
}
.kv .kv_wra .kv_layer {
  position: absolute;
  width: 100%;
}
.kv .kv_wra .k_none {
  opacity: 0;
}
.kv .kv_wra .kv_title {
  top: 16.4%;
  left: 18.9%;
  max-width: 63.282%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_title {
    top: 25%;
    left: 31.6%;
    max-width: 35.737%;
  }
}
.kv .kv_wra .kv_left {
  top: 13.4%;
  left: -5.6%;
  max-width: 35.86%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_left {
    top: 3.1%;
    left: -11%;
    max-width: 52%;
  }
}
.kv .kv_wra .kv_right {
  top: 19.2%;
  right: -5.8%;
  max-width: 34.219%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_right {
    top: 6.9%;
    right: -16%;
    max-width: 73.337%;
  }
}
.kv .kv_wra .kv_bottom {
  bottom: -0.1%;
  left: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_bottom {
    bottom: -0.15%;
  }
}
.kv .kv_wra .kv_dec1 {
  top: 67.5%;
  left: 67.8%;
  max-width: 10.157%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_dec1 {
    top: 77.6%;
    left: 40.4%;
    max-width: 20.537%;
  }
}
.kv .kv_wra .kv_dec2 {
  top: 67.2%;
  left: 80.7%;
  max-width: 6.797%;
}
@media screen and (max-width: 768px) {
  .kv .kv_wra .kv_dec2 {
    top: 73.1%;
    left: 79.5%;
    max-width: 14.937%;
  }
}

#index .news {
  background: #97dbfa;
  position: relative;
  padding-top: 72px;
  padding-bottom: 170px;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #index .news {
    padding-top: 35px;
    padding-bottom: 103px;
  }
}
#index .news:after {
  content: "";
  position: absolute;
  background-image: url("../img/index_news_bg.png");
  top: 43px;
  left: 50%;
  margin-left: -590px;
  width: 1201px;
  height: 669px;
  background-size: 100% auto;
}
#index .news .m_container {
  max-width: 1280px;
  padding: 0 85px;
  display: flex;
  position: relative;
  z-index: 1;
  gap: 47px;
}
@media screen and (max-width: 1200px) {
  #index .news .m_container {
    padding: 0 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #index .news .m_container {
    display: block;
    padding: 0 19px;
  }
}
#index .news .m_container .mobile_index_nesw_title_dec {
  position: absolute;
  max-width: 198px;
  width: 100%;
  top: 0px;
  right: -38px;
}
#index .news .m_container .title {
  flex: 0 0 34.505%;
  margin-left: -132px;
}
@media screen and (max-width: 1200px) {
  #index .news .m_container .title {
    margin-left: -100px;
  }
}
@media screen and (max-width: 768px) {
  #index .news .m_container .title {
    position: relative;
    max-width: 256px;
    z-index: 1;
    margin-left: -73px;
  }
}
#index .news .m_container .title h2 img {
  width: 100%;
  max-width: 100%;
}
@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 {
  border-radius: 129px;
  background: #ffcf00;
  border: 1.5px solid #00030e;
  padding: 16px 16px 0;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra {
    margin-top: -3px;
    border-radius: 70px;
    padding: 12px 12px 20px;
  }
}
#index .news .m_container .news_wra ul {
  position: relative;
  border-radius: 115px;
  border: 1.5px solid #00030e;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul {
    border-radius: 56px;
  }
}
#index .news .m_container .news_wra ul li {
  background: #ffffff;
}
#index .news .m_container .news_wra ul li:nth-last-of-type(odd) {
  background: #fffae5;
}
#index .news .m_container .news_wra ul li a {
  transition: all 0.2s;
  position: relative;
  padding: 30px 127px;
  display: block;
}
@media screen and (max-width: 1200px) {
  #index .news .m_container .news_wra ul li a {
    padding: 24px 90px;
  }
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra ul li a {
    padding: 20px 28px;
  }
}
#index .news .m_container .news_wra ul li a .news_date {
  display: flex;
  gap: 6.5px;
}
#index .news .m_container .news_wra ul li a .news_date .time {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 24px;
  padding-top: 4px;
  color: #3c3d40;
}
#index .news .m_container .news_wra ul li a .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 576px) {
  #index .news .m_container .news_wra ul li a .detail {
    display: block;
  }
}
#index .news .m_container .news_wra ul li a .detail .name p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #00030e;
  margin-left: 7px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  #index .news .m_container .news_wra ul li a .detail .name p {
    -webkit-line-clamp: 2;
    margin-left: 0;
    line-height: 25px;
  }
}
#index .news .m_container .news_wra ul li a .detail .more {
  background: url("../img/more_btn.svg") no-repeat center center;
  width: 47px;
  height: 11px;
  margin-left: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  #index .news .m_container .news_wra ul li a .detail .more {
    margin-top: 15px;
    margin-left: auto;
  }
}
#index .news .m_container .news_wra ul li a:hover .detail .name p {
  color: #ea6017;
}
#index .news .m_container .news_wra ul li a:hover .detail .more {
  background: url("../img/more_btn_hover.svg") no-repeat center center;
}
#index .news .m_container .news_wra .more_btn {
  margin-top: 14px;
  margin-bottom: -23px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #index .news .m_container .news_wra .more_btn {
    margin-bottom: -40px;
  }
}
#index .news .m_container .news_wra .more_btn a {
  width: 303px;
  height: 47px;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #ea6017;
  border-radius: 20px;
  border: 1px solid #00030e;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  #index .news .m_container .news_wra .more_btn a {
    width: 198px;
  }
}
#index .news .m_container .news_wra .more_btn a img {
  transition: all 0.2s;
}
#index .news .m_container .news_wra .more_btn a:hover {
  background-color: #ea6017;
}

#news .news {
  background: #97dbfa;
  position: relative;
  padding-top: 60px;
  padding-bottom: 150px;
  background-image: url("../img/news/news_bg.png");
  background-size: 1142px auto;
  background-position: center 71.2px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #news .news {
    padding-top: 68px;
    padding-bottom: 80px;
    background-image: initial;
  }
}
#news .news .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #news .news .m_container {
    display: block;
    padding: 0 19px;
  }
}
#news .news .m_container .news_wra {
  border-radius: 129px;
  background: #ffcf00;
  border: 1.5px solid #00030e;
  padding: 16px 16px 20px;
  position: relative;
  margin: 0 auto;
  max-width: 885px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra {
    margin-top: 30px;
    border-radius: 70px;
    padding: 12px 12px 20px;
  }
}
#news .news .m_container .news_wra ul {
  position: relative;
  border-radius: 115px;
  border: 1.5px solid #00030e;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul {
    border-radius: 56px;
  }
}
#news .news .m_container .news_wra ul li {
  background: #ffffff;
}
#news .news .m_container .news_wra ul li:nth-last-of-type(odd) {
  background: #fffae5;
}
#news .news .m_container .news_wra ul li a {
  transition: all 0.2s;
  position: relative;
  padding: 30px 127px;
  display: block;
}
@media screen and (max-width: 768px) {
  #news .news .m_container .news_wra ul li a {
    padding: 20px 28px;
  }
}
#news .news .m_container .news_wra ul li a .news_date {
  display: flex;
  gap: 6.5px;
}
#news .news .m_container .news_wra ul li a .news_date .time {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 24px;
  padding-top: 4px;
  color: #3c3d40;
}
#news .news .m_container .news_wra ul li a .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 576px) {
  #news .news .m_container .news_wra ul li a .detail {
    display: block;
  }
}
#news .news .m_container .news_wra ul li a .detail .name p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #00030e;
  margin-left: 7px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  #news .news .m_container .news_wra ul li a .detail .name p {
    -webkit-line-clamp: 2;
    margin-left: 0;
    line-height: 25px;
  }
}
#news .news .m_container .news_wra ul li a .detail .more {
  background: url("../img/more_btn.svg") no-repeat center center;
  width: 47px;
  height: 11px;
}
@media screen and (max-width: 576px) {
  #news .news .m_container .news_wra ul li a .detail .more {
    margin-top: 15px;
    margin-left: auto;
  }
}
#news .news .m_container .news_wra ul li a:hover .detail .name p {
  color: #ea6017;
}
#news .news .m_container .news_wra ul li a:hover .detail .more {
  background: url("../img/more_btn_hover.svg") no-repeat center center;
}

#news .news_content {
  position: relative;
}
#news .news_content .news_content_top {
  background: #e7f7ff;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top {
    padding-bottom: 60px;
  }
}
#news .news_content .news_content_top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background-size: auto;
  background-position: center center;
  background-repeat: repeat-x;
  background-image: url("../img/news/news_content_top_btm.png");
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top::before {
    background-image: url("../img/news/news_content_top_btm_s.png");
    height: 24px;
  }
}
#news .news_content .news_content_top .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container {
    padding: 0 15px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra {
    margin-top: 30px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .title {
  color: #00030E;
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .title h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 44px;
  margin-bottom: 13px;
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .title h1 {
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 31px;
    margin-bottom: 6px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .title .date {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .title .date {
    gap: 5px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .title .date p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #31ade3;
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .title .date p {
    gap: 5px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .title .date img {
    width: 36px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .share {
  display: flex;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .share {
    position: absolute;
    right: 0;
    bottom: -12px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .share li {
  margin-left: 8px;
  margin-bottom: 0;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_top .m_container .news_content_wra .title_wra .share li {
    margin-left: 5px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .title_wra .share li:hover {
  opacity: 0.8;
}
#news .news_content .news_content_top .m_container .news_content_wra .content_wra {
  margin-top: 21px;
  color: #00030e;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .content_wra {
    margin-top: 25px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .content_wra .subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 30px;
  padding: 18px;
  width: 100%;
  color: #fff;
  background: #31ade3;
  border-radius: 20px;
  border: 1px solid #00030e;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .content_wra .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 19px 29px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .content_wra p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .content_wra p {
    letter-spacing: 0.3px;
  }
}
#news .news_content .news_content_top .m_container .news_content_wra .content_wra a {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 28px;
  display: inline;
  margin: 0 5px;
  color: #00030e;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .m_container .news_content_wra .content_wra a {
    letter-spacing: 0.3px;
  }
}
#news .news_content .news_content_top .news_content_top_dec {
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: 258px;
  width: 108px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_top .news_content_top_dec {
    bottom: -13px;
    margin-left: 108px;
    width: 64px;
  }
}
#news .news_content .news_content_btm {
  background: #97dbfa;
  padding-top: 40px;
  padding-bottom: 144px;
  background-image: url("../img/news/news_content_bg.png");
  background-size: 1150px auto;
  background-position: center 74px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm {
    background-image: url("../img/news/news_content_bg_s.png");
    background-size: 100% auto;
    background-position: center 37px;
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
#news .news_content .news_content_btm .news_photo_wra {
  max-width: 1200px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .news_photo_wra {
    padding: 0 15px;
  }
}
#news .news_content .news_content_btm .photo_title {
  width: 277px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .photo_title {
    width: 241px;
  }
}
#news .news_content .news_content_btm .photo_wrapper {
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .photo_wrapper {
    margin-top: 20px;
  }
}
#news .news_content .news_content_btm .photo_wrapper .news_avator {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 29px 54px;
  border-radius: 60px;
  border: 1.5px solid #00030e;
  background: #ffcf00;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .photo_wrapper .news_avator {
    padding: 20px 17px 50px;
    border-radius: 40px;
    gap: 20px;
  }
}
#news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item {
  width: calc(33.3333333333% - 13.4px);
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item {
    width: calc(50% - 10.4px);
  }
}
@media screen and (max-width: 576px) {
  #news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item {
    width: 100%;
  }
}
#news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item .his_frame {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding-bottom: 73.75%;
  transition: all 0.2s;
  border-radius: 25px;
  border: 8px solid #fffae5;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item .his_frame {
    border: 6.5px solid #fffae5;
  }
}
#news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item .his_frame::before {
  transition: all 0.2s;
}
#news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item .his_frame:hover::before, #news .news_content .news_content_btm .photo_wrapper .news_avator .news_avator_item .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 .news_content_btm .photo_wrapper .news_avator .news_avator_item .avator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
#news .news_content .news_content_btm .photo_wrapper .history .frame_square {
  text-align: center;
}
#news .news_content .news_content_btm .photo_wrapper .more_btn {
  text-align: center;
}
#news .news_content .news_content_btm .photo_wrapper .more_btn div {
  margin: 0 auto;
  margin-top: -25px;
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  background: #fffae5;
  border-radius: 50%;
  border: 1.5px solid #00030e;
  transition: all 0.2s;
  cursor: pointer;
}
#news .news_content .news_content_btm .photo_wrapper .more_btn div img {
  transition: all 0.2s;
}
#news .news_content .news_content_btm .photo_wrapper .more_btn div:hover img {
  transform: rotate(180deg);
  opacity: 0.8;
}
#news .news_content .news_content_btm .back_btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_btm .back_btn {
    margin-top: 32px;
  }
}
#news .news_content .news_content_btm .back_btn a {
  width: 215px;
  height: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #ea6017;
  border-radius: 20px;
  border: 1px solid #00030e;
  transition: all 0.2s;
}
#news .news_content .news_content_btm .back_btn a img {
  transition: all 0.2s;
}
#news .news_content .news_content_btm .back_btn a:hover {
  background-color: #ea6017;
}

#summary .summary {
  background: #E7F7FF;
  position: relative;
  padding-top: 60px;
  padding-bottom: 170px;
  background-image: url("../img/summary/summary_bg.png");
  background-size: 1271px auto;
  background-position: 48% 45.4px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #summary .summary {
    padding-top: 68px;
    padding-bottom: 85px;
    background-image: initial;
  }
}
#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 .summary_wra {
  margin-top: 60px;
  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: #00030E;
}
@media screen and (max-width: 768px) {
  #summary .summary .m_container .summary_wra > p {
    line-height: 30px;
    margin-bottom: 30px;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper {
  background-color: #FDFEFF;
  border-radius: 60px;
  width: 100%;
  border: 1.5px solid #00030E;
  margin: 0 auto;
  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: 40px;
    border-radius: 25px;
    padding: 25px 16px;
  }
}
#summary .summary .m_container .summary_wra .poster-wrapper .col-12 {
  padding: 0 36px;
}
@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%;
  border-radius: 25px;
}
#summary .summary .m_container .summary_wra .poster-wrapper p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
  color: #00030E;
  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 .album {
  background: #97DBFA;
  position: relative;
  padding-top: 60px;
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  #album .album {
    padding-top: 68px;
    padding-bottom: 82px;
  }
}
#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 .select_wra {
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  #album .album .m_container .select_wra {
    margin-top: 40px;
  }
}
#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: 13px 10px;
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  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: #EA6017;
  padding: 8px 0;
  border-radius: 21px;
  padding-left: 24px;
  padding-right: 65px;
  border: 1.5px solid #00030E;
  letter-spacing: 1.5px;
  font-size: 18px;
  cursor: default;
  line-height: 26px;
  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;
  border: 1.5px solid #00030E;
  border-top: none;
  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(234, 96, 23, 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: 43px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra {
    margin-top: 40px;
  }
}
#album .album .m_container .album_wra .area_wra {
  border: 1.5px solid #00030E;
  background: #FFE200;
  border-radius: 60px;
  padding: 17px;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra {
    padding: 14px;
    margin-bottom: 40px;
  }
}
#album .album .m_container .album_wra .area_wra .area_wra_inner {
  background: #FFFAE5;
  border-radius: 50px;
  padding: 40px 33px 0px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area_wra_inner {
    padding: 30px 18px 0;
  }
}
#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 #97DBFA;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#album .album .m_container .album_wra .area_wra .area {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area {
    justify-content: center;
  }
}
#album .album .m_container .album_wra .area_wra .area img {
  margin-right: 7px;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area img {
    width: 40px;
    margin-right: 6px;
    margin-top: 5px;
  }
}
#album .album .m_container .album_wra .area_wra .area span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 44px;
  color: #00030E;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra .area span {
    font-size: 24px;
    line-height: 35px;
  }
}
#album .album .m_container .album_wra .area_wra ul {
  margin-top: 30px;
  position: relative;
}
#album .album .m_container .album_wra .area_wra ul .line {
  display: block;
  content: "";
  position: absolute;
  bottom: 52.6%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 38px);
  height: 3px;
  background: #E0D091;
  opacity: 0.4;
  border-radius: 999px;
}
@media screen and (max-width: 992px) {
  #album .album .m_container .album_wra .area_wra ul .line {
    display: none;
  }
}
#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: 40px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul li {
    margin-bottom: 30px;
  }
}
#album .album .m_container .album_wra .area_wra ul li:nth-child(1), #album .album .m_container .album_wra .area_wra ul li:nth-child(2), #album .album .m_container .album_wra .area_wra ul li:nth-child(3) {
  padding-bottom: 36px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul li:nth-child(1), #album .album .m_container .album_wra .area_wra ul li:nth-child(2), #album .album .m_container .album_wra .area_wra ul li:nth-child(3) {
    padding-bottom: 0;
  }
}
#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 {
  cursor: pointer;
  overflow: hidden;
}
#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;
  border-radius: 25px;
  border: 1.5px solid #00030E;
  overflow: hidden;
}
#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 {
  min-height: 78px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul li > div .detail {
    padding: 0 13px;
    margin-top: 12px;
    min-height: 72px;
    text-align: center;
  }
}
#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;
}
@media screen and (max-width: 768px) {
  #album .album .m_container .album_wra .area_wra ul li > div .detail p {
    font-size: 16px;
    line-height: 24px;
  }
}
#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: 45px;
}
#album .album .m_container .pagination .prev {
  background-image: url("../img/page_left.svg");
  width: 10px;
  height: 17px;
  margin-right: 15px;
}
#album .album .m_container .pagination .prev:hover {
  opacity: 0.8;
}
#album .album .m_container .pagination .next {
  background-image: url("../img/page_right.svg");
  width: 10px;
  height: 17px;
  margin-left: 15px;
}
#album .album .m_container .pagination .next:hover {
  opacity: 0.8;
}
#album .album .m_container .pagination .book-page {
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  line-height: 31px;
  font-size: 18px;
  border: 1px solid #00030E;
  margin: 0 6.5px;
  background: #EA6017;
}
#album .album .m_container .pagination .book-page.tab-act, #album .album .m_container .pagination .book-page:hover {
  background-color: #fff;
  color: #00030E;
}

#album .modal-dialog {
  margin: 1.25rem auto;
}
#album .modal-body {
  padding: 73px 108px;
}
@media screen and (max-width: 768px) {
  #album .modal-body {
    padding: 80px 21px;
  }
}
#album .modal-body .album_images img {
  width: 100%;
  outline: 12px solid #FFFFFF;
  outline-offset: -12px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #album .modal-body .album_images img {
    outline: 6.5px solid #FFFFFF;
    outline-offset: -6.5px;
  }
}
#album .modal-body .swiper_history {
  overflow: initial;
}
@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 .name {
  margin-top: 29px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #album .modal-body .name {
    margin-top: 18px;
    margin-bottom: 12px;
  }
}
#album .modal-body .name h5 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.8px;
  padding-left: 1.8px;
  line-height: 32px;
  color: #00030E;
}
@media screen and (max-width: 768px) {
  #album .modal-body .name h5 {
    font-size: 20px;
    line-height: 26px;
  }
}
#album .modal-body .intro {
  text-align: center;
}
#album .modal-body .intro p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #00030E;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #album .modal-body .intro p {
    font-size: 16px;
    line-height: 25px;
  }
}
#album .modal-body .more_btn {
  margin-top: 29px;
}
#album .modal-body .more_btn a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 303px;
  height: 47px;
  background: #EA6017;
  border-radius: 20px;
  border: 1px solid #00030E;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  #album .modal-body .more_btn a {
    width: 272px;
  }
}
#album .modal-body .more_btn a:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

#festival .festival {
  position: relative;
}
#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 .festival_wra .festival_info {
  position: relative;
  background: #E7F7FF;
  padding-top: 60px;
  padding-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info {
    padding-top: 68px;
    padding-bottom: 55px;
  }
}
#festival .festival .festival_wra .festival_info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background-size: auto;
  background-position: center center;
  background-repeat: repeat-x;
  background-image: url("../img/news/news_content_top_btm.png");
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info::before {
    background-image: url("../img/news/news_content_top_btm_s.png");
    height: 24px;
  }
}
#festival .festival .festival_wra .festival_info .title {
  max-width: 573px;
  margin: 0 auto;
  margin-top: 39px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .title {
    max-width: 313px;
    margin-top: 47px;
  }
}
#festival .festival .festival_wra .festival_info .title img {
  width: 100%;
}
#festival .festival .festival_wra .festival_info .info {
  border-radius: 60px;
  background-color: #FDFEFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #00030E;
  margin-top: 45px;
  padding: 45px 56px 36px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .info {
    border-radius: 50px;
    margin-top: 30px;
    padding: 70px 18px 60px;
  }
}
#festival .festival .festival_wra .festival_info .info .info_illus_left {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  #festival .festival .festival_wra .festival_info .info .info_illus_left {
    width: 170px;
  }
}
@media screen and (max-width: 576px) {
  #festival .festival .festival_wra .festival_info .info .info_illus_left {
    width: 106px;
  }
}
#festival .festival .festival_wra .festival_info .info .info_illus_right {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 992px) {
  #festival .festival .festival_wra .festival_info .info .info_illus_right {
    width: 170px;
  }
}
@media screen and (max-width: 576px) {
  #festival .festival .festival_wra .festival_info .info .info_illus_right {
    width: 106px;
  }
}
#festival .festival .festival_wra .festival_info .info li {
  position: relative;
  text-align: center;
}
#festival .festival .festival_wra .festival_info .info li:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .info li:first-child {
    margin-bottom: 30px;
  }
}
#festival .festival .festival_wra .festival_info .info li div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
#festival .festival .festival_wra .festival_info .info li div h5 {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 35px;
  color: #00030E;
}
#festival .festival .festival_wra .festival_info .info li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .info li p {
    margin-top: 8px;
    line-height: 28px;
  }
}
#festival .festival .festival_wra .festival_info .info .map {
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .info .map {
    margin-top: 30px;
  }
}
#festival .festival .festival_wra .festival_info .info .map.animate {
  animation-name: my_fadeInUp;
}
#festival .festival .festival_wra .festival_info .info .map img {
  width: 100%;
  max-width: 100%;
}
#festival .festival .festival_wra .festival_info .info .map img.animate {
  animation-name: my_fadeInUp;
}
#festival .festival .festival_wra .festival_info .info .map .more_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .festival_info .info .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 .festival_wra .act_wra {
  position: relative;
  background: #97DBFA;
  padding: 48px 15px 140px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra {
    padding: 30px 15px 110px;
  }
}
#festival .festival .festival_wra .act_wra .title {
  max-width: 277px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .title {
    max-width: 240px;
  }
}
#festival .festival .festival_wra .act_wra .title img {
  width: 100%;
}
#festival .festival .festival_wra .act_wra .act {
  max-width: 1250px;
  margin: 0 auto;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act {
    margin-top: 20px;
  }
}
#festival .festival .festival_wra .act_wra .act .inner {
  position: relative;
}
#festival .festival .festival_wra .act_wra .act .inner .act_bg {
  width: 100%;
  max-width: 100%;
}
#festival .festival .festival_wra .act_wra .act .inner .act_bg img {
  width: 100%;
  max-width: 100%;
}
#festival .festival .festival_wra .act_wra .act .inner .act_illus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  -webkit-animation: fun_illus 2s linear infinite forwards;
  animation: fun_illus 2s linear infinite forwards;
}
#festival .festival .festival_wra .act_wra .act .inner .act_illus img {
  width: 100%;
  max-width: 100%;
}
#festival .festival .festival_wra .act_wra .act .inner a {
  display: block;
  width: 100%;
  position: absolute;
  transition: all 0.3s;
}
#festival .festival .festival_wra .act_wra .act .inner a img {
  width: 100%;
  max-width: 100%;
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(1) {
  top: 0%;
  left: 4%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(1) {
    left: 16%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(2) {
  top: 1.9788918206%;
  left: 37.6%;
  max-width: 19.2%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(2) {
    top: 4.1672592803%;
    left: 4%;
    max-width: 69.567%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(3) {
  top: 4.2656112577%;
  left: 61.84%;
  max-width: 22.8%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(3) {
    top: 8.0642867302%;
    left: 16%;
    max-width: 82.61%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(4) {
  top: 11.125769569%;
  left: 23.52%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(4) {
    top: 12.6440051202%;
    left: 24%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(5) {
  top: 20.6684256816%;
  left: 4%;
  max-width: 19.36%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(5) {
    top: 16.8112644005%;
    left: 17.8666666667%;
    max-width: 70.145%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(6) {
  top: 25.417766051%;
  left: 31.44%;
  max-width: 17.28%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(6) {
    top: 20.8220736737%;
    left: 10.1333333333%;
    max-width: 62.61%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(7) {
  top: 17.8100263852%;
  left: 53.84%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(7) {
    top: 24.1928601906%;
    left: 16%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(8) {
  top: 19.3491644679%;
  left: 79.28%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(8) {
    top: 28.3601194709%;
    left: 27.7333333333%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(9) {
  top: 29.4635004398%;
  left: 58.48%;
  max-width: 22.48%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(9) {
    top: 32.4704878396%;
    left: 20.8%;
    max-width: 81.45%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(10) {
  top: 36.9393139842%;
  left: 35.68%;
  max-width: 18.88%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(10) {
    top: 36.9933153179%;
    left: 10.1333333333%;
    max-width: 68.408%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(11) {
  top: 34.2128408091%;
  left: 10.72%;
  max-width: 19.2%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(11) {
    top: 40.9045654957%;
    left: 4%;
    max-width: 69.566%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(12) {
  top: 45.9542656113%;
  left: 2.72%;
  max-width: 23.44%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(12) {
    top: 44.7873702176%;
    left: 4%;
    max-width: 84.928%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(13) {
  top: 48.6807387863%;
  left: 31.44%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(13) {
    top: 49.5377613426%;
    left: 16.5333333333%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(14) {
  top: 42.8320140721%;
  left: 57.12%;
  max-width: 20%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(14) {
    top: 53.7903569905%;
    left: 29.0666666667%;
    max-width: 72.465%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(15) {
  top: 51.1873350923%;
  left: 75.6%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(15) {
    top: 57.9433935429%;
    left: 25.8666666667%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(16) {
  top: 56.3324538259%;
  left: 50.8%;
  max-width: 21.12%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(16) {
    top: 62.153321007%;
    left: 19.7333333333%;
    max-width: 76.523%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(17) {
  top: 60.3781882146%;
  left: 21.12%;
  max-width: 19.76%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(17) {
    top: 66.5623666619%;
    left: 12.5333333333%;
    max-width: 71.595%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(18) {
  top: 67.0624450308%;
  left: 0.72%;
  max-width: 20.4%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(18) {
    top: 70.7154032143%;
    left: 12.5333333333%;
    max-width: 73.915%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(19) {
  top: 73.0870712401%;
  left: 21.12%;
  max-width: 22.56%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(19) {
    top: 74.8684397667%;
    left: 12.5333333333%;
    max-width: 81.74%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(20) {
  top: 70.7124010554%;
  left: 47.68%;
  max-width: 20.48%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(20) {
    top: 79.5334945242%;
    left: 15.7333333333%;
    max-width: 74.205%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(21) {
  top: 70.800351803%;
  left: 79.2%;
  max-width: 19.2%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(21) {
    top: 83.7860901721%;
    left: 14.1333333333%;
    max-width: 69.566%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(22) {
  top: 81.4423922603%;
  left: 67.6%;
  max-width: 18.16%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(22) {
    top: 87.7257858057%;
    left: 12.5333333333%;
    max-width: 65.798%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(23) {
  top: 84.036939314%;
  left: 40.16%;
  max-width: 21.36%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(23) {
    top: 91.4236950647%;
    left: 8.8%;
    max-width: 77.393%;
  }
}
#festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(24) {
  top: 85.8839050132%;
  left: 11.44%;
  max-width: 23.76%;
}
@media screen and (max-width: 768px) {
  #festival .festival .festival_wra .act_wra .act .inner > a:nth-of-type(24) {
    top: 95.7331816242%;
    left: 16.5333333333%;
    max-width: 86.089%;
  }
}

#festival .modal {
  background-color: rgba(0, 3, 14, 0.8);
}
#festival .modal-dialog {
  max-width: 768px;
  padding: 0 15px;
  margin: 4.75rem auto;
}
#festival .modal-content {
  border-radius: 35px;
  background-color: #97DBFA;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
}
#festival .modal-body {
  padding: 79px 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 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;
  }
}

#learning .learning {
  background: #97DBFA;
  position: relative;
  padding-top: 60px;
  padding-bottom: 170px;
  background-image: url("../img/leaflet/learning_bg.png");
  background-size: 1142px auto;
  background-position: 50% 153px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #learning .learning {
    padding-top: 68px;
    padding-bottom: 85px;
    background-image: initial;
  }
}
#learning .learning .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #learning .learning .m_container {
    display: block;
    padding: 0 15px;
  }
}
#learning .learning .m_container .learning_wra {
  position: relative;
  max-width: 785px;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  #learning .learning .m_container .learning_wra {
    margin-top: 40px;
    padding: 0 15px;
  }
}
#learning .learning .m_container .learning_wra .learning_title {
  max-width: 278px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #learning .learning .m_container .learning_wra .learning_title {
    max-width: 240px;
  }
}
#learning .learning .m_container .learning_wra .learning_title img {
  width: 100%;
  max-width: 100%;
}
#learning .learning .m_container .learning_wra .learning_content {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  #learning .learning .m_container .learning_wra .learning_content {
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  #learning .learning .m_container .learning_wra .learning_content {
    flex-direction: column;
    gap: 22px;
    margin-top: 25px;
  }
}
#learning .learning .m_container .learning_wra .learning_content .learning_content_item {
  flex: 0 0 calc(50% - 32.5px);
}
@media screen and (max-width: 576px) {
  #learning .learning .m_container .learning_wra .learning_content .learning_content_item {
    flex: 0 0 100%;
  }
}
#learning .learning .m_container .learning_wra .learning_content .learning_content_item a img {
  width: 100%;
  max-width: 100%;
  transition: all 0.3s;
}
#learning .learning .m_container .learning_wra .learning_content .learning_content_item a:hover img {
  filter: brightness(1.1);
  transform: translateY(-10px);
}

#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;
}

#poster .poster {
  background: #97DBFA;
  position: relative;
  padding-top: 60px;
  padding-bottom: 200px;
  background-image: url("../img/poster/poster_bg.png");
  background-size: 1076px auto;
  background-position: 47% 94px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #poster .poster {
    padding-top: 68px;
    padding-bottom: 100px;
    background-image: initial;
  }
}
#poster .poster .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #poster .poster .m_container {
    display: block;
    padding: 0 15px;
  }
}
#poster .poster .m_container .poster_wra {
  position: relative;
  max-width: 795px;
  margin: 0 auto;
  margin-top: 60px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #poster .poster .m_container .poster_wra {
    margin-top: 40px;
  }
}
#poster .poster .m_container .poster_wra .poster_content {
  display: flex;
  justify-content: center;
  gap: 65px;
}
@media screen and (max-width: 768px) {
  #poster .poster .m_container .poster_wra .poster_content {
    gap: 50px;
    flex-direction: column;
  }
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item {
  flex: 0 0 calc(50% - 32.5px);
  padding: 19px 17px 0;
  background: #E7F7FF;
  border: 1.5px solid #00030E;
  border-radius: 35px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item.animate {
  animation-name: my_fadeInUp;
}
@media screen and (max-width: 576px) {
  #poster .poster .m_container .poster_wra .poster_content .poster_content_item {
    flex: 0 0 100%;
    padding: 18px 16px 0;
  }
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item .box {
  border-radius: 25px;
  overflow: hidden;
  border: 5px solid #fff;
  line-height: 0;
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item .box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 26px;
  color: #00030E;
  margin-top: 19px;
  margin-bottom: 19px;
}
@media screen and (max-width: 576px) {
  #poster .poster .m_container .poster_wra .poster_content .poster_content_item p {
    margin-top: 17px;
    margin-bottom: 17px;
  }
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item a {
  width: 207px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -24px;
  border-radius: 20px;
  background: #EA6017;
  border: 1px solid #00030E;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  #poster .poster .m_container .poster_wra .poster_content .poster_content_item a {
    width: 196px;
    height: 44px;
    margin-bottom: -22px;
  }
}
#poster .poster .m_container .poster_wra .poster_content .poster_content_item a:hover {
  filter: brightness(1.1);
  transform: translateY(-5px);
}

#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;
}

#partner .partner {
  background: #97DBFA;
  position: relative;
  padding-top: 60px;
  padding-bottom: 130px;
  background-image: url("../img/partner/partner_bg.png");
  background-size: 856px auto;
  background-position: 57.5% 58.4px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #partner .partner {
    padding-top: 68px;
    padding-bottom: 60px;
  }
}
#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 .partner_wra {
  margin-top: 60px;
  position: relative;
  padding: 0 40px;
}
@media screen and (max-width: 992px) {
  #partner .partner .m_container .partner_wra {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra {
    margin-top: 40px;
    padding: 0;
  }
}
#partner .partner .m_container .partner_wra .column {
  background: #FFCF00;
  border-radius: 129px;
  border: 1.5px solid #00030E;
  margin-bottom: 45px;
  overflow: hidden;
  padding: 17px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column {
    border-radius: 80px;
    margin-bottom: 30px;
    padding: 16px;
  }
}
#partner .partner .m_container .partner_wra .column .c_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #00030E;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 44px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_title {
    gap: 6px;
    font-size: 24px;
    line-height: 35px;
  }
}
#partner .partner .m_container .partner_wra .column .c_title img {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_title img {
    margin-top: 5px;
    width: 40px;
  }
}
#partner .partner .m_container .partner_wra .column .c_row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  background: #FFFFFF;
  border: 1px solid #00030E;
  border-radius: 115px;
  padding: 60px;
  gap: 25px 55px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row {
    margin-top: 10px;
    border-radius: 60px;
    padding: 43px 20px;
    gap: 20px;
  }
}
#partner .partner .m_container .partner_wra .column .c_row .c_column {
  width: calc(50% - 27.5px);
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column img {
    width: 13px;
  }
}
@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 p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 30px;
  color: #00030E;
}
@media screen and (max-width: 768px) {
  #partner .partner .m_container .partner_wra .column .c_row .c_column p {
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 25px;
  }
}

#guideline .guideline {
  background: #97DBFA;
  position: relative;
  padding-top: 60px;
  padding-bottom: 180px;
  background-image: url("../img/leaflet/guideline_bg.png");
  background-size: 1124px auto;
  background-position: 51% 153px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #guideline .guideline {
    padding-top: 68px;
    padding-bottom: 85px;
    background-image: initial;
  }
}
#guideline .guideline .m_container {
  max-width: 1200px;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container {
    display: block;
    padding: 0 15px;
  }
}
#guideline .guideline .m_container .guideline_wra {
  position: relative;
  margin-top: 48px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra {
    margin-top: 40px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_title {
  max-width: 278px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_title {
    max-width: 242px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_title img {
  width: 100%;
}
#guideline .guideline .m_container .guideline_wra .guideline_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list {
    margin-top: 30px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_icon {
  position: absolute;
  top: -138px;
  left: 136px;
}
@media screen and (max-width: 992px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_icon {
    left: 36px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item {
  border-radius: 60px;
  overflow: hidden;
  width: 100%;
  border: 1.5px solid #00030E;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item {
    border-radius: 40px;
    border: 1px solid #00030E;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_title {
  padding: 25px 25px 24px;
  background: #FFD800;
  text-align: center;
  border-bottom: 1.5px solid #00030E;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_title {
    padding: 20px 20px 19px;
    border-bottom: 1px solid #00030E;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content {
  padding: 30px 55px;
  background: #FFFAE5;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content {
    padding: 30px 19px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul {
    gap: 30px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul li div {
  padding: 5px 24px;
  background: #EA6017;
  border-radius: 24px;
  border: 1px solid #00030E;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 24px;
  text-align: center;
  flex-shrink: 0;
}
#guideline .guideline .m_container .guideline_wra .guideline_list .guideline_item .guideline_item_content ul li p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25px;
  color: #00030E;
  text-align: left;
}

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