@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

body {
  box-sizing: border-box;
}
@media only screen and (max-width: 75em) {
  body {
    padding-top: 7rem;
  }
}
@media only screen and (max-width: 56.25em) {
  body {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  body {
    padding-top: 5rem;
  }
}

::selection {
  background-color: #D74229;
  color: #ffffff;
}

@font-face {
  font-family: yh-bold;
  src: url("../font-family/MSYH_Bold.ttf");
}
@font-face {
  font-family: yh;
  src: url("../font-family/MSYH_Regular.ttf");
}
@font-face {
  font-family: tm;
  src: url("../font-family/Times_Roman.ttf");
}
@font-face {
  font-family: tm-bold;
  src: url("../font-family/Times_Bold.ttf");
}
body {
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.relative {
  position: relative;
}

.only-mobile {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .only-mobile {
    display: block;
  }
}

.only-pc {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .only-pc {
    display: none;
  }
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .heading {
    flex-direction: column;
  }
}
.heading__left {
  flex: none;
}
.heading__medium {
  flex: 1;
  padding: 0 5rem;
}
@media only screen and (max-width: 56.25em) {
  .heading__medium {
    padding: 3rem 0;
    width: 100%;
  }
}
.heading__right {
  flex: none;
}

.tc {
  text-align: center;
}

.box-center {
  margin: 0 auto;
}

.pd-hg {
  padding: 7rem;
}
@media only screen and (max-width: 75em) {
  .pd-hg {
    padding: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-hg {
    padding: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-hg {
    padding: 2.8rem;
  }
}

.pt-hg {
  padding-top: 7rem;
}
@media only screen and (max-width: 75em) {
  .pt-hg {
    padding-top: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-hg {
    padding-top: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-hg {
    padding-top: 2.8rem;
  }
}

.pr-hg {
  padding-right: 7rem;
}
@media only screen and (max-width: 75em) {
  .pr-hg {
    padding-right: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-hg {
    padding-right: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-hg {
    padding-right: 2.8rem;
  }
}

.pb-hg {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 75em) {
  .pb-hg {
    padding-bottom: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-hg {
    padding-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-hg {
    padding-bottom: 2.8rem;
  }
}

.pl-hg {
  padding-left: 7rem;
}
@media only screen and (max-width: 75em) {
  .pl-hg {
    padding-left: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-hg {
    padding-left: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-hg {
    padding-left: 2.8rem;
  }
}

.mt-hg {
  margin-top: 7rem;
}
@media only screen and (max-width: 75em) {
  .mt-hg {
    margin-top: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-hg {
    margin-top: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-hg {
    margin-top: 2.8rem;
  }
}

.mr-hg {
  margin-right: 7rem;
}
@media only screen and (max-width: 75em) {
  .mr-hg {
    margin-right: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-hg {
    margin-right: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-hg {
    margin-right: 2.8rem;
  }
}

.mb-hg {
  margin-bottom: 7rem;
}
@media only screen and (max-width: 75em) {
  .mb-hg {
    margin-bottom: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-hg {
    margin-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-hg {
    margin-bottom: 2.8rem;
  }
}

.ml-hg {
  margin-left: 7rem;
}
@media only screen and (max-width: 75em) {
  .ml-hg {
    margin-left: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-hg {
    margin-left: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-hg {
    margin-left: 2.8rem;
  }
}

.pd-lg {
  padding: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .pd-lg {
    padding: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-lg {
    padding: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-lg {
    padding: 1.8rem;
  }
}

.pt-lg {
  padding-top: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .pt-lg {
    padding-top: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-lg {
    padding-top: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-lg {
    padding-top: 1.8rem;
  }
}

.pr-lg {
  padding-right: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .pr-lg {
    padding-right: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-lg {
    padding-right: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-lg {
    padding-right: 1.8rem;
  }
}

.pb-lg {
  padding-bottom: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .pb-lg {
    padding-bottom: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-lg {
    padding-bottom: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-lg {
    padding-bottom: 1.8rem;
  }
}

.pl-lg {
  padding-left: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .pl-lg {
    padding-left: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-lg {
    padding-left: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-lg {
    padding-left: 1.8rem;
  }
}

.mt-lg {
  margin-top: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .mt-lg {
    margin-top: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-lg {
    margin-top: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-lg {
    margin-top: 1.8rem;
  }
}

.mr-lg {
  margin-right: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .mr-lg {
    margin-right: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-lg {
    margin-right: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-lg {
    margin-right: 1.8rem;
  }
}

.mb-lg {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .mb-lg {
    margin-bottom: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-lg {
    margin-bottom: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-lg {
    margin-bottom: 1.8rem;
  }
}

.ml-lg {
  margin-left: 4.5rem;
}
@media only screen and (max-width: 75em) {
  .ml-lg {
    margin-left: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-lg {
    margin-left: 2.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-lg {
    margin-left: 1.8rem;
  }
}

.pd-md {
  padding: 3rem;
}
@media only screen and (max-width: 75em) {
  .pd-md {
    padding: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-md {
    padding: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-md {
    padding: 1.2rem;
  }
}

.pt-md {
  padding-top: 3rem;
}
@media only screen and (max-width: 75em) {
  .pt-md {
    padding-top: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-md {
    padding-top: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-md {
    padding-top: 1.2rem;
  }
}

.pr-md {
  padding-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .pr-md {
    padding-right: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-md {
    padding-right: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-md {
    padding-right: 1.2rem;
  }
}

.pb-md {
  padding-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .pb-md {
    padding-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-md {
    padding-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-md {
    padding-bottom: 1.2rem;
  }
}

.pl-md {
  padding-left: 3rem;
}
@media only screen and (max-width: 75em) {
  .pl-md {
    padding-left: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-md {
    padding-left: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-md {
    padding-left: 1.2rem;
  }
}

.mt-md {
  margin-top: 3rem;
}
@media only screen and (max-width: 75em) {
  .mt-md {
    margin-top: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-md {
    margin-top: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-md {
    margin-top: 1.2rem;
  }
}

.mr-md {
  margin-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .mr-md {
    margin-right: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-md {
    margin-right: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-md {
    margin-right: 1.2rem;
  }
}

.mb-md {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .mb-md {
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-md {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-md {
    margin-bottom: 1.2rem;
  }
}

.ml-md {
  margin-left: 3rem;
}
@media only screen and (max-width: 75em) {
  .ml-md {
    margin-left: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-md {
    margin-left: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-md {
    margin-left: 1.2rem;
  }
}

.pd-sm {
  padding: 2rem;
}
@media only screen and (max-width: 75em) {
  .pd-sm {
    padding: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-sm {
    padding: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-sm {
    padding: 0.8rem;
  }
}

.pt-sm {
  padding-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .pt-sm {
    padding-top: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-sm {
    padding-top: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-sm {
    padding-top: 0.8rem;
  }
}

.pr-sm {
  padding-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .pr-sm {
    padding-right: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-sm {
    padding-right: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-sm {
    padding-right: 0.8rem;
  }
}

.pb-sm {
  padding-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .pb-sm {
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-sm {
    padding-bottom: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-sm {
    padding-bottom: 0.8rem;
  }
}

.pl-sm {
  padding-left: 2rem;
}
@media only screen and (max-width: 75em) {
  .pl-sm {
    padding-left: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-sm {
    padding-left: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-sm {
    padding-left: 0.8rem;
  }
}

.mt-sm {
  margin-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .mt-sm {
    margin-top: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-sm {
    margin-top: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-sm {
    margin-top: 0.8rem;
  }
}

.mr-sm {
  margin-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .mr-sm {
    margin-right: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-sm {
    margin-right: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-sm {
    margin-right: 0.8rem;
  }
}

.mb-sm {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .mb-sm {
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-sm {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-sm {
    margin-bottom: 0.8rem;
  }
}

.ml-sm {
  margin-left: 2rem;
}
@media only screen and (max-width: 75em) {
  .ml-sm {
    margin-left: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-sm {
    margin-left: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-sm {
    margin-left: 0.8rem;
  }
}

.pd-mn {
  padding: 1rem;
}
@media only screen and (max-width: 75em) {
  .pd-mn {
    padding: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-mn {
    padding: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-mn {
    padding: 0.4rem;
  }
}

.pt-mn {
  padding-top: 1rem;
}
@media only screen and (max-width: 75em) {
  .pt-mn {
    padding-top: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-mn {
    padding-top: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-mn {
    padding-top: 0.4rem;
  }
}

.pr-mn {
  padding-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .pr-mn {
    padding-right: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-mn {
    padding-right: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-mn {
    padding-right: 0.4rem;
  }
}

.pb-mn {
  padding-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  .pb-mn {
    padding-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-mn {
    padding-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-mn {
    padding-bottom: 0.4rem;
  }
}

.pl-mn {
  padding-left: 1rem;
}
@media only screen and (max-width: 75em) {
  .pl-mn {
    padding-left: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-mn {
    padding-left: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-mn {
    padding-left: 0.4rem;
  }
}

.mt-mn {
  margin-top: 1rem;
}
@media only screen and (max-width: 75em) {
  .mt-mn {
    margin-top: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-mn {
    margin-top: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-mn {
    margin-top: 0.4rem;
  }
}

.mr-mn {
  margin-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .mr-mn {
    margin-right: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-mn {
    margin-right: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-mn {
    margin-right: 0.4rem;
  }
}

.mb-mn {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  .mb-mn {
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-mn {
    margin-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-mn {
    margin-bottom: 0.4rem;
  }
}

.ml-mn {
  margin-left: 1rem;
}
@media only screen and (max-width: 75em) {
  .ml-mn {
    margin-left: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-mn {
    margin-left: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-mn {
    margin-left: 0.4rem;
  }
}

.percent {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.percent__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 800;
  color: #D74229;
}
.percent__text::after {
  content: "%";
  font-size: 1.4rem;
}

.ratio-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  position: relative;
}
.ratio-image--1-of-2, .ratio-image--2-of-4 {
  padding-bottom: 50%;
}
.ratio-image--1-of-3 {
  padding-bottom: 33.33%;
}
.ratio-image--2-of-3 {
  padding-bottom: 66.66%;
}
.ratio-image--1-of-4 {
  padding-bottom: 25%;
}
.ratio-image--3-of-4 {
  padding-bottom: 75%;
}
.ratio-image--1-of-5 {
  padding-bottom: 20%;
}
.ratio-image--2-of-5 {
  padding-bottom: 40%;
}
.ratio-image--3-of-5 {
  padding-bottom: 60%;
}
.ratio-image--4-of-5 {
  padding-bottom: 80%;
}
.ratio-image__box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.ratio-image__source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-button {
  font-size: 1.6rem;
  color: #666666;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.more-button:hover {
  color: #D74229;
  font-weight: 600;
}
.more-button::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/more-icon.png) no-repeat center center/cover;
  margin-right: 4px;
}
.more-button::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 4px;
  font-size: 1.8rem;
}

.card {
  position: relative;
}
.card--horizontal {
  display: flex;
}
.card:hover .cover img {
  transform: scale(1.05);
}
.card:hover .info .title,
.card:hover .info .desc {
  color: #A98365;
}
.card > .cover {
  flex: none;
  overflow: hidden;
}
.card > .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.card .info h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 1.5rem;
}
.card .info p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888888;
}
.card--horizontal .info {
  padding-left: 2rem;
}
.card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.text-card {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.text-card:hover .title {
  color: #D74229;
}
.text-card:hover .date {
  color: #D74229;
}
.text-card--secondary:hover .title {
  color: #A98365;
}
.text-card--secondary:hover .date {
  color: #A98365;
}
.text-card > .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
  font-size: 1.6rem;
  color: #111;
}
.text-card > .date {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #888888;
  flex: none;
  font-family: tm;
}
.text-card > .date-box {
  flex: none;
}
.text-card > .date-box .main {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #D74229;
  line-height: 1;
  padding-bottom: 0.6rem;
  font-family: tm;
}
.text-card > .date-box .sub {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #D74229;
  line-height: 1;
  font-family: tm;
}
.text-card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.accordion-card {
  display: flex;
  flex: none;
}
.accordion-card.active {
  flex: 1;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card {
    flex-direction: column;
  }
}
.accordion-card:not(:last-child) {
  margin-right: 1.3rem;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.accordion-card__left {
  flex: none;
}
.accordion-card__title-box {
  width: 9.6rem;
  height: 30rem;
  background: url(../images/sfq-btn.png) no-repeat center center/100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.accordion-card__title-box.active {
  background: url(../images/sfq-btn-active.png) no-repeat center center/100% 100%;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card__title-box.active {
    width: auto;
    height: auto;
    background: #d73629;
  }
}
@media only screen and (max-width: 37.5em) {
  .accordion-card__title-box {
    width: auto;
    height: auto;
    background: #772b21;
  }
}
.accordion-card__title {
  font-size: 2rem;
  color: #ffffff;
  width: min-content;
  line-height: 1.5;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card__title {
    width: max-content;
    line-height: 3;
  }
}
.accordion-card__right {
  display: none;
  flex: 1;
  height: 30rem;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card__right {
    width: auto;
    height: auto;
  }
}
.accordion-card__content {
  width: 100%;
  height: 100%;
  position: relative;
}
.accordion-card__img {
  display: block;
  width: 100%;
  height: 100%;
}
.accordion-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-card__info {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .accordion-card__info {
    position: relative;
  }
}
.accordion-card__desc {
  font-size: 1.6rem;
  color: #ffffff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.accordion-card__more {
  width: 10rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d74229;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 1000px;
  align-self: flex-end;
  margin-top: 1rem;
}

.theme-card {
  background-color: #d74229;
}
.theme-card:hover .theme-card__content {
  transform: translate3d(-1rem, -1rem, 0);
  background-color: #fff;
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
}
.theme-card__content {
  background-color: #f4f3ec;
  transition: 0.3s ease-in-out;
  position: relative;
  border: 1px solid #ebebeb;
}
.theme-card__content .info {
  position: relative;
  padding: 3rem;
}
.theme-card__content .info .title {
  line-height: 2.2rem;
  height: 4.4rem;
}
.theme-card__content .info .tag {
  display: block;
  padding: 5px 3rem;
  border-radius: 100px;
  background-color: #d74229;
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #fff;
}
.theme-card__content .info .state {
  border-radius: 100px;
  padding: 2px 1rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #d74229;
}
.theme-card--expired .theme-card__content .info .tag {
  background-color: #999999;
}
.theme-card--expired .theme-card__content .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
}
.collection-card .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  padding: 4rem;
  background-color: rgba(128, 50, 35, 0.9);
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -9px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: scale(1.05);
}
.collection-card .info .title {
  font-size: 2rem;
  color: #fff;
}
.collection-card .info .content {
  font-size: 1.4rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.collection-card .info::after {
  content: "";
  font-family: "iconfont";
  content: "";
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  font-size: 3rem;
  color: #fff;
}
.collection-card:hover .info {
  opacity: 1;
  transform: scale(1);
}
.collection-card:hover .info .title {
  color: #fff;
}

.collection-card-2 .info .title {
  font-size: 1.8rem;
  color: #803223;
}

.notice-card {
  position: relative;
  background-color: #d74229;
}
.notice-card:hover .notice-card__content {
  transform: translate3d(-1rem, -1rem, 0);
  background-color: #fff;
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
}
.notice-card__content {
  background-color: #f4f3ec;
  transition: 0.3s ease-in-out;
  position: relative;
  border: 1px solid #ebebeb;
  padding: 3rem;
}
.notice-card__content .tag {
  display: inline-block;
  background-color: #a98365;
  font-size: 1.6rem;
  color: #fff;
  padding: 2px 1rem;
  border-radius: 100px;
}
.notice-card__content .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  line-height: 2.8rem;
  height: 5.6rem;
  color: #2f2f2f;
}
.notice-card__content .desce {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  line-height: 2.2rem;
  height: 6.6rem;
  color: #5a5a5a;
}
.notice-card__content .date {
  font-size: 1.4rem;
  color: #a98365;
  display: flex;
  justify-content: space-between;
}
.notice-card__content .date::after {
  content: "";
  font-family: "iconfont";
  content: "";
}
.notice-card__content .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.s1-text {
  padding: 6rem 3.7rem;
  background-color: #ffffff;
  border-top: 3px solid #a98365;
  position: relative;
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
}
@media only screen and (max-width: 75em) {
  .s1-text {
    padding: 4rem 2.5rem;
  }
}
.s1-text::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 0;
  transform: translateY(100%);
  height: 5px;
  background-color: rgba(255, 255, 255, 0.4);
}
.s1-text::after {
  content: "";
  font-family: "iconfont";
  content: "";
  position: absolute;
  right: 3rem;
  bottom: 1rem;
  font-size: 3rem;
  color: #a98365;
}
.s1-text .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 2.5rem;
  height: 5rem;
}
.s1-text .date {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #a98365;
  color: #ffffff;
  padding: 5px 2rem;
}
.s1-text:hover {
  border-top: 3px solid #d74229;
}
.s1-text:hover::after {
  color: #d74229;
}
.s1-text:hover .date {
  background-color: #d74229;
  color: #ffffff;
}

.s1-text-card {
  width: 100%;
  height: 35rem;
  box-sizing: border-box;
  padding: 0 5rem;
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
  position: relative;
}
@media only screen and (max-width: 75em) {
  .s1-text-card {
    padding: 0 2rem;
  }
}
.s1-text-card .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
}
.s1-text-card .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #999999;
}
.s1-text-card .date-box {
  position: relative;
  border-bottom: 1px solid #d74229;
}
.s1-text-card .date-box__content {
  width: 7rem;
  height: 7rem;
  background-color: #d74229;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.s1-text-card .date-box__content .main {
  font-size: 3rem;
  line-height: 1;
  padding-bottom: 5px;
}
.s1-text-card .date-box__content .sub {
  font-size: 1.4rem;
  line-height: 1;
}
.s1-text-card .more {
  padding: 0.8rem 4rem;
  background: #d74229;
  border-radius: 10px 0px 0px 0px;
  font-size: 1.6rem;
  color: #ffffff;
  position: absolute;
  right: 0;
  bottom: 0;
}
.s1-text-card .more::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 1rem;
}
.s1-text-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.s7-text {
  padding: 1rem 2rem;
}
.s7-text .title {
  color: #7d3322;
}
.s7-text .date {
  color: #7d3322;
}
.s7-text .date::before {
  content: "开放日期：";
}

.text-card-6 {
  padding: 3rem;
  background-color: #fff4e5;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.text-card-6::after {
  display: block;
  content: "";
  width: 19rem;
  height: 8rem;
  background: url(../images/cloud-icon.png) no-repeat center center/cover;
  position: absolute;
  right: -2.5rem;
  bottom: -3rem;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
.text-card-6 .date-box {
  flex: none;
  font-family: Arial-BoldMT;
}
.text-card-6 .date-box .main {
  font-size: 3rem;
  color: #803223;
  text-align: right;
  position: relative;
  line-height: 1;
  padding-bottom: 2rem;
}
.text-card-6 .date-box .main::after {
  content: "";
  display: block;
  width: 16px;
  height: 4px;
  background: #803223;
  position: absolute;
  right: 0;
  bottom: 0.7rem;
}
.text-card-6 .date-box .sub {
  font-size: 1.6rem;
  color: #803223;
  text-align: right;
}
.text-card-6 .info {
  flex: 1;
  padding-left: 3rem;
  position: relative;
  z-index: 9;
}
.text-card-6 .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  line-height: 3rem;
  height: 6rem;
  color: #111;
}
.text-card-6 .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888;
  margin-top: 2rem;
}
.text-card-6:hover {
  box-shadow: 0px 0px 19px 2px rgba(0, 0, 0, 0.44);
}
.text-card-6:hover::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #cba06a;
}
.text-card-6:hover::after {
  opacity: 1;
}
.text-card-6:hover .info .title {
  color: #803223;
}
.text-card-6:hover .info .desc {
  color: #111;
}

.card-6 {
  background-color: #803223;
}
.card-6 .box {
  position: relative;
  transition: 0.3s ease-in-out;
}
.card-6 .box .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.card-6 .info {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background: url(../images/bg-5.png) no-repeat center center/cover;
}
.card-6 .info::after {
  content: "";
  display: block;
  width: 14rem;
  height: 9.8rem;
  position: absolute;
  right: -3.5rem;
  bottom: -5rem;
  opacity: 0.3;
  transition: 0.3s ease-in-out;
}
.card-6 .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 2rem;
  position: relative;
  z-index: 3;
  text-align: center;
}
.card-6:hover .box {
  transform: translate3d(-1rem, -1rem, 0);
}
.card-6:hover .info::after {
  opacity: 1;
}
.card-6:hover .info .title {
  color: #7d3322;
}

.card-10 {
  position: relative;
  overflow: hidden;
}
.card-10 .cover img {
  display: block;
  width: 100%;
}
.card-10 .discount-label {
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #666;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}
.card-10 .discount-label--live {
  background-color: #803223;
}
.card-10 .discount-label p {
  width: 7rem;
  height: 2rem;
  position: absolute;
  left: 3.5rem;
  top: 3.5rem;
  transform: translate(-50%, -50%);
}
.card-10 .discount-label p span {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
  text-align: center;
  transform: rotate(-45deg);
}
.card-10 .info-box {
  background-color: #fff4e5;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 4px solid #803223;
  position: relative;
  overflow: hidden;
}
.card-10 .info-box::after {
  content: "";
  display: block;
  width: 14rem;
  height: 9.8rem;
  background: url(../images/cloud-icon3.png) no-repeat center center/cover;
  transform: scaleX(-1);
  position: absolute;
  left: 0;
  bottom: -4.5rem;
  transition: 0.3s ease-in-out;
}
.card-10 .info-box__item {
  width: 33.33%;
}
.card-10 .info-box__item:not(:last-child) {
  border-right: 1px solid #e7e7e7;
}

.card-12 {
  background-color: #803223;
}
.card-12 .box {
  position: relative;
  transition: 0.3s ease-in-out;
}
.card-12 .box .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}
.card-12 .register {
  display: block;
  width: 10rem;
  line-height: 4rem;
  background: #803223;
  border-radius: 0 19px 19px 0;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
}
.card-12 .info {
  background-color: #fff4e5;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}
.card-12 .info::after {
  content: "";
  display: block;
  width: 14rem;
  height: 9.8rem;
  background: url(../images/cloud-icon2.png) no-repeat center center/cover;
  position: absolute;
  right: -3.5rem;
  bottom: -5rem;
  opacity: 0.3;
  transition: 0.3s ease-in-out;
}
.card-12 .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1.6rem;
  position: relative;
  z-index: 3;
}
.card-12 .info .tags p {
  font-size: 1.4rem;
  color: #888;
}
.card-12:hover .box {
  transform: translate3d(-1rem, -1rem, 0);
}
.card-12:hover .info::after {
  opacity: 1;
}
.card-12:hover .info .title {
  color: #7d3322;
}

.card-14 .info {
  padding-top: 1rem;
  text-align: center;
}

.news-card {
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(169, 131, 101, 0.2);
}
.news-card__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-card .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
  font-size: 1.6rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.news-card .date {
  flex: none;
  font-size: 1.4rem;
  color: #D74229;
  margin-left: 2rem;
}
.news-card .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666;
}
.news-card:hover {
  border-bottom: 1px solid #db3b1b;
}
.news-card:hover .title {
  color: #db3b1b;
}
.news-card:hover .date {
  color: #db3b1b;
}
.news-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.8rem;
}
@media only screen and (max-width: 56.25em) {
  .custom-breadcrumb {
    display: none;
  }
}
.custom-breadcrumb .title {
  font-size: 2rem;
  color: #D74229;
  font-weight: 900;
  position: relative;
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #666;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #803223;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #666;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.custom-breadcrumb .breadcrumb-navs nav a:first-child::before {
  display: none;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover {
  color: #D74229;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #2f2f2f;
}
.custom-breadcrumb .breadcrumb-navs nav a:last-child {
  color: #000;
}

.form-item {
  height: 100%;
}
.form-item--error input, .form-item--error textarea {
  outline: 2px solid #f56c6c !important;
}
.form-item--error small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item--success input, .form-item--success textarea {
  outline: 2px solid #67c23a !important;
}
.form-item--success small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item input {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  background: #f1f1f1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  background: #f1f1f1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item a,
.form-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #D74229;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form-item a:active,
.form-item button:active {
  filter: brightness(0.8);
}
.form-item small {
  color: #f56c6c;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

.custom-search__open {
  display: none;
}
.custom-search__open .iconfont {
  font-size: 2.5rem;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  .custom-search__open {
    display: block;
  }
}
.custom-search__content {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .custom-search__content {
    display: none;
    position: absolute;
    top: 5rem;
    right: -1rem;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.6);
  }
}

.search-input {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border: 1px solid #D74229;
  border-radius: 6px;
  overflow: hidden;
}
.search-input__input {
  width: 20rem;
  padding: 0 1rem;
  height: 3.6rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #333;
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 100%;
    height: 6rem;
    color: #333;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.search-input__button:hover {
  background-color: #D74229;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 6rem;
    height: 6rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  font-size: 2rem;
  color: #D74229;
}
@media only screen and (max-width: 75em) {
  .search-input__button::after {
    color: #ffffff;
  }
}
.search-input__button:hover::after {
  color: #ffffff;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #D74229;
}
.custom-selector__input::after {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.custom-selector__placeholder {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #ffffff;
  overflow: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.custom-selector__options {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.custom-selector__options a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  border: 4px;
  color: #ffffff;
  line-height: 2;
  transition: 0.1s ease-in-out;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #D74229;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 8rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #D74229;
  border-radius: 50%;
  background-color: #D74229;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .iconfont {
  font-size: 20px;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #D74229;
  border: 3px solid #D74229;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d:hover {
  color: #D74229;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #D74229;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a:hover {
  color: #D74229;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot:hover {
  color: #D74229;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a:hover {
  color: #D74229;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 26px;
  padding: 0 10px;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto input#u6_goto.p_goto_input {
  width: 40px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  text-align: center;
  font-size: 12px;
  color: #5a5a5a;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #D74229;
  color: #ffffff;
}

.popover {
  position: relative;
  display: inline-block;
}
.popover__title {
  display: inline-block;
}
.popover__content {
  position: absolute;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translate3d(0, 110%, 0);
}

.article-details {
  background-color: #fff4e5;
}
.article-details--border {
  border-top: 2px solid #D74229;
}
.article-details__heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: #803223;
}
@media only screen and (max-width: 56.25em) {
  .article-details__heading {
    font-size: 1.8rem;
  }
}
.article-details__describe {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e7e7e7;
}
@media only screen and (max-width: 56.25em) {
  .article-details__describe {
    display: none;
  }
}
.article-details__tag {
  font-size: 1.4rem;
  color: #666666;
  margin-right: 2rem;
}
.article-details__content {
  padding-top: 2rem;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2f2f2f;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 2rem 0;
}
.article-details .register {
  display: block;
  width: 16rem;
  line-height: 4rem;
  background: #803223;
  border-radius: 19px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

.article-prev-next {
  border-top: 1px solid #e7e7e7;
}
.article-prev-next a {
  display: block;
  font-size: 1.6rem;
  color: #454545;
  line-height: 2;
}
.article-prev-next a.prev::before {
  content: "上一篇：";
  color: #803223;
}
.article-prev-next a.next::before {
  content: "下一篇：";
  color: #803223;
}

.i18n-selector {
  position: relative;
}
.i18n-selector__title {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 100px;
  line-height: 4rem;
  font-size: 1.4rem;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.i18n-selector__options {
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: none;
}
.i18n-selector__options a {
  display: block;
  line-height: 4rem;
  font-size: 1.4rem;
  color: #141414;
  cursor: pointer;
  text-align: center;
}
.i18n-selector__options a:not(:last-child) {
  border-bottom: 1px solid rgba(17, 17, 17, 0.3);
}

.wechat-selector {
  position: relative;
}
.wechat-selector__title {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #ffffff;
  background: #a98365;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.wechat-selector__title i {
  font-size: 2rem;
}
.wechat-selector__options {
  position: absolute;
  width: 14rem;
  top: 4.5rem;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  display: none;
}
.wechat-selector__options img {
  display: block;
  width: 100%;
}

.search-selector {
  position: relative;
}
.search-selector__title {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.search-selector__title i {
  font-size: 2rem;
}
.search-selector__options {
  padding: 5px;
  position: absolute;
  top: 4.5rem;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  display: none;
  background-color: #fff;
}
@media only screen and (max-width: 75em) {
  .search-selector__options {
    width: 30rem;
  }
}

.container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 5rem;
}
@media only screen and (max-width: 75em) {
  .container {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .container {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .container {
    padding: 0 2rem;
  }
}

.row {
  margin: 0 auto;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row [class^=col-].mr0 {
  margin-right: 0 !important;
}
.row .col-1-of-2 {
  width: calc((100% - 5rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 5rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 5rem) / 3) + 5rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 5rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 5rem) / 4) + 5rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 5rem) / 4) + 2 * 5rem);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 5rem) / 5);
}
.row .col-2-of-5 {
  width: calc(2 * ((100% - 5 * 5rem) / 5) + 5rem);
}
.row .col-3-of-5 {
  width: calc(3 * ((100% - 5 * 5rem) / 5) + 2 * 5rem);
}
.row .col-4-of-5 {
  width: calc(4 * ((100% - 4 * 5rem) / 5) + 3 * 5rem);
}

.gallery {
  display: grid;
  grid-template-rows: repeat(4, 5rem);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .gallery {
    grid-template-rows: repeat(5, 5rem);
  }
}
.gallery__item--1 {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--2 {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--3 {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--3 {
    grid-row: 3/span 2;
  }
}
.gallery__item--4 {
  grid-row: 4/span 1;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--4 {
    grid-row: 5/span 1;
  }
}

.row-list--2 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--2 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--2 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--2 > .item {
    width: calc((1 / 1) * 100%);
  }
}
.row-list--3 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--3 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--3 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--3 > .item {
    width: calc((1 / 1) * 100%);
  }
}
.row-list--4 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--4 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--4 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--4 > .item {
    width: calc((1 / 1) * 100%);
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 9999999999;
  background-color: rgba(20, 20, 20, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 75em) {
  .header {
    background-color: #D74229;
  }
}
.header.scroll {
  background-color: #a98365;
}
.header__top-container {
  width: 100%;
  height: 8rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__top-container {
    height: 7rem;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 56.25em) {
  .header__top-container {
    height: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__top-container {
    height: 5rem;
  }
}
.header__top-container .header__logo {
  height: 70%;
}
.header__top-container .header__logo img {
  display: block;
  width: auto;
  height: 100%;
}
.header__bottom {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .header__bottom {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: #D74229;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
.header__bottom.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.header__nav-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #ffffff;
  line-height: 6rem;
  text-align: center;
  display: none;
  z-index: 9;
}
@media only screen and (max-width: 75em) {
  .header__nav-open {
    display: block;
  }
}
@media only screen and (max-width: 75em) {
  .header__nav-open {
    font-size: 3rem;
  }
}
.header__nav-close {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 2rem;
  top: 1rem;
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__nav-close {
    display: block;
  }
}
.header__nav {
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .header__nav {
    flex: 1;
    overflow-y: auto;
  }
}
.header__tool {
  position: absolute;
  right: 12rem;
  top: -6.5rem;
  display: flex;
  align-items: center;
}
.header__tool .item:not(:last-child) {
  margin-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .header__tool {
    position: relative;
    right: auto;
    top: auto;
    width: 70%;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

.web-nav__1-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    display: block;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
  flex: 1;
}
.web-nav__1-link {
  display: block;
  text-align: center;
  height: 4.5rem;
  padding: 0 0.5rem;
  font-size: 1.8rem;
  line-height: 4.5rem;
  color: #ffffff;
  background: transparent;
  border-radius: 2px;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    min-width: 100%;
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    height: auto;
    line-height: 7rem;
  }
}
.web-nav__1-link.active {
  color: #ECC890;
  background: transparent;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    background: transparent;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  display: none;
  position: absolute;
  top: 4.5rem;
  left: 50%;
  border-radius: 0 0 5px 5px;
  transform: translateX(-50%);
  background: #ffffff url(../images/cloud.png) no-repeat -10% 110%;
  transition: 0.3s ease-in-out;
}
.web-nav__2-list.active {
  display: flex;
}
.web-nav__2-item {
  padding: 2rem 1.6rem;
  text-align: center;
  float: left;
}
.web-nav__2-item:hover {
  background-color: rgba(233, 229, 222, 0.3);
}
.web-nav__2-link {
  white-space: nowrap;
  font-size: 1.6rem;
  color: #2f2f2f;
  padding: 2px 1.5rem;
}
.web-nav__3-list {
  padding-top: 1rem;
}
.web-nav__3-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.web-nav__3-link {
  display: inline-block;
  padding: 2px 1.5rem;
  border-radius: 200px;
  white-space: nowrap;
  font-size: 1.4rem;
  color: #999;
}
.web-nav__3-link:hover {
  background-color: #D74229;
  color: #ffffff;
}

.partner {
  background: #D74229;
}
.partner .container {
  display: flex !important;
  justify-content: flex-start !important;
}
.partner .container h2 {
  flex: none;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 2;
}
.partner .container nav {
  padding-left: 3rem;
  display: flex;
  flex-wrap: wrap;
}
.partner .container nav a {
  position: relative;
  line-height: 2;
  font-weight: normal;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 400;
}
.partner .container nav a:not(:last-child) {
  padding-right: 2rem;
  margin-right: 2rem;
}
.partner .container nav a:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.4rem;
  border-left: 1px solid #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: url(../images/footer-bg.png) no-repeat center center/cover;
}
.footer .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer .container {
    flex-direction: column;
  }
}
.footer .container .part-group {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer .container .part-group {
    flex-direction: column;
  }
}
.footer .container .part {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .footer .container .part {
    margin: 2rem 0;
  }
}
.footer .container .part:not(:last-child) {
  padding-right: 5rem;
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:last-child) {
    padding-right: 0;
  }
}
.footer .container .part:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 8rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:last-child)::after {
    display: none;
  }
}
.footer .container .part:not(:first-child) {
  padding-left: 5rem;
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:first-child) {
    padding-left: 0;
  }
}
.footer__logo img {
  display: block;
  width: 30vw;
  opacity: 0.8;
}
@media only screen and (max-width: 75em) {
  .footer__logo img {
    width: auto;
    max-width: 90%;
    margin: 0 auto;
  }
}
.footer__info {
  display: grid;
}
.footer__info p {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.8;
}
.footer__qr img {
  display: block;
  width: 8rem;
  height: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__qr img {
    margin: 0 auto;
    width: 12rem;
    height: 12rem;
  }
}
.footer__qr .text {
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
}
.footer__selector {
  width: 30rem;
}
.footer__selector .item {
  list-style: none;
}
.footer__selector .item:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__selector {
    border-right: none;
    padding-right: 0;
  }
}
.footer__copyright {
  width: 100%;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__copyright p {
  max-width: 70rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}

.inner-page {
  position: relative;
  background: url(../images/bg-8.png);
}
.inner-page::after {
  content: "";
  display: block;
  width: 222px;
  height: 566px;
  background: url(../images/bg-9.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 0;
}
.inner-page::before {
  content: "";
  display: block;
  width: 288px;
  height: 566px;
  background: url(../images/bg-10.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-page__wrapper {
  position: relative;
  z-index: 3;
}
.inner-page__left {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__left {
    display: none;
  }
}
.flex-row {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .flex-row {
    display: block;
  }
}
.flex-row--auto {
  flex: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .flex-row--auto {
    padding-right: 0;
  }
}
.flex-row--static {
  flex: none;
}

.top-nav-bar {
  display: flex;
  align-items: center;
  background-color: #fff4e5;
  border-bottom: 2px solid #803223;
  position: relative;
  z-index: 99999;
}
@media only screen and (max-width: 56.25em) {
  .top-nav-bar {
    display: none;
  }
}
.top-nav-bar__title {
  flex: none;
  padding: 0 5rem;
  line-height: 6rem;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  background-color: #803223;
  position: relative;
}
.top-nav-bar__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/circle-r.png) no-repeat center center/cover;
}
.top-nav-bar__title::before {
  content: "";
  display: block;
  width: 35px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/circle-l.png) no-repeat center center/cover;
}
.top-nav-bar__content {
  flex: 1;
}
.top-nav-bar__list {
  display: flex;
}
.top-nav-bar__list > li {
  margin-left: 3.5rem;
  position: relative;
}
.top-nav-bar__list > li:hover .nav1 {
  color: #803223;
}
.top-nav-bar__list > li:hover .nav1.arrow::after {
  color: #803223;
}
.top-nav-bar__list > li:hover .nav2-box {
  display: block;
}
.top-nav-bar__list .nav1 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #201D1C;
  line-height: 4rem;
}
.top-nav-bar__list .nav1.arrow::after {
  content: "";
  font-family: "iconfont";
  content: "";
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-left: 2px;
}
.top-nav-bar__list .nav2-box {
  position: absolute;
  left: 50%;
  padding: 1rem;
  transform: translateX(-50%);
  top: 4rem;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #f2f2f2;
  display: none;
}
.top-nav-bar__list .nav2-box .nav2 {
  display: block;
  font-size: 1.4rem;
  color: #333;
  line-height: 3;
  text-align: center;
  width: max-content;
  margin: 0 auto;
}
.top-nav-bar__list .nav2-box .nav2:hover {
  color: #803223;
}

.section-banner {
  position: relative;
}
.section-banner__tool {
  position: absolute;
  right: 5rem;
  bottom: 3rem;
  z-index: 88;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .section-banner__tool {
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-banner__menu {
  padding: 0 1rem;
  position: relative;
  top: 0px;
  cursor: pointer;
}
.section-banner__menu:hover .iconfont {
  opacity: 0.8;
}
.section-banner__menu .iconfont {
  color: #fff;
  font-size: 3rem;
}
.section-banner__menu--prev {
  transform: scaleX(-1);
}
.section-banner img {
  display: block;
  width: 100%;
}
.section-banner .swiper-slide img {
  display: block;
  width: 100%;
}
.section-banner .swiper-pagination {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
}
.section-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: 1.6rem;
  opacity: 1;
  color: #fff;
  font-family: tm-bold;
  margin: 0 1rem !important;
  background-color: transparent;
}
.section-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 2.4rem;
  background-color: transparent;
}

.home-heading {
  position: relative;
}
.home-heading .main {
  display: block;
  font-size: 3.4rem;
  color: #D74229;
  line-height: 1.4;
  position: relative;
}
.home-heading .main::before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background: url(../title-icon-2.png) no-repeat center center/cover;
  position: absolute;
  left: -1rem;
  top: 0;
}
.home-heading .main::after {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background: url(../title-icon-1.png) no-repeat center center/cover;
  position: absolute;
  right: -1rem;
  bottom: 0;
}
.home-heading .main strong {
  color: #2f2f2f;
}
.home-heading .sub {
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #A98365;
  opacity: 0.3;
  line-height: 1.4;
  font-weight: 400;
}
.home-heading .icon {
  display: block;
  width: 17px;
  height: 34px;
  background: url(../title-icon-3.png) no-repeat center center/cover;
  position: absolute;
  right: -2rem;
  top: 4px;
}
.home-heading--light .main {
  color: #FFB85D;
}
.home-heading--light .main strong {
  color: #fff;
}
.home-heading--light .sub {
  color: #fff;
}

.home-tab-title {
  border-bottom: 1px solid rgba(169, 131, 101, 0.2);
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .home-tab-title {
    justify-content: space-around;
  }
}
.home-tab-title p {
  font-size: 2.4rem;
  color: #999999;
  margin-left: 6rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 1.8rem;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 56.25em) {
  .home-tab-title p {
    font-size: 1.8rem;
    margin-left: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .home-tab-title p {
    font-size: 1.2rem;
  }
}
.home-tab-title p::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #999999;
}
.home-tab-title p::before {
  content: "";
  display: none;
  width: 23px;
  height: 20px;
  background: url(../tab-icon-active.png) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.home-tab-title p.active {
  color: #D74229;
}
.home-tab-title p.active::after {
  background-color: #D74229;
}
.home-tab-title p.active::before {
  display: block;
}
.home-tab-title--light p {
  color: rgba(255, 255, 255, 0.5);
}
.home-tab-title--light p::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.home-tab-title--light p::before {
  background: url(../images/tab-icon.png) no-repeat center center/cover;
}
.home-tab-title--light p.active {
  color: #FFB85D;
}
.home-tab-title--light p.active::after {
  background-color: #FFB85D;
}
.home-tab-title--light p.active::before {
  display: block;
}

.home-more {
  width: 14.9rem;
  height: 4.5rem;
  background: url(../images/more-bg.png) no-repeat center center/cover;
  font-size: 1.6rem;
  color: #a98365;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-more::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 4px;
  font-size: 2rem;
}
.home-more--light {
  color: #E5C79A;
}

.section-1 {
  background: url(../images/bg-1.png) no-repeat center center/cover;
}
@media only screen and (max-width: 75em) {
  .section-1 .heading {
    flex-direction: row;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-1 .heading {
    flex-direction: column;
  }
}
.section-1 .contact-swiper {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .section-1 .contact-swiper {
    flex-direction: column-reverse;
  }
}
.section-1 .contact-swiper__left {
  width: 50%;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 37.5em) {
  .section-1 .contact-swiper__left {
    width: 100%;
  }
}
.section-1 .contact-swiper__left .swiper-pagination {
  bottom: 4rem;
  left: 4.5rem;
  text-align: left;
}
.section-1 .contact-swiper__left .swiper-pagination-bullet {
  opacity: 1;
  width: 31px;
  height: 18px;
  background: url(../images/swiper-icon.png) no-repeat center center/cover;
}
.section-1 .contact-swiper__left .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/swiper-icon-active.png) no-repeat center center/cover;
}
.section-1 .contact-swiper__right {
  position: absolute;
  right: 0;
  left: 43%;
  top: -5rem;
  bottom: -3rem;
}
@media only screen and (max-width: 37.5em) {
  .section-1 .contact-swiper__right {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    bottom: 0;
  }
}
.section-1 .contact-swiper__right .swiper {
  height: 100%;
}
.section-1 .contact-swiper__right .swiper .swiper-wrapper {
  height: 100%;
}
.section-1 .contact-swiper__right .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
.section-1 .contact-swiper__right .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-1__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3.4rem / 2);
}
.section-1__list > .item {
  list-style: none;
  padding: calc(3.4rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-1__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-1__list > .item {
    width: calc((1 / 1) * 100%);
  }
}
@media only screen and (max-width: 37.5em) {
  .section-1__list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-2rem / 2);
  }
  .section-1__list > .item {
    list-style: none;
    padding: calc(2rem / 2);
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 75em) {
  .section-1__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 56.25em) {
  .section-1__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-2 {
  background: url(../images/bg-2.png) no-repeat right center;
}
.section-2__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3.4rem / 2);
}
.section-2__list > .item {
  list-style: none;
  padding: calc(3.4rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-2__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-2__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-3 {
  background: url(../images/bg-3.png) no-repeat center center/cover;
}
.section-3 .accordion {
  padding: 3rem 0;
  background: url(../images/bg-3-1.png) no-repeat center center/cover;
}
.section-3 .accordion .container {
  position: relative;
}
.section-3 .accordion__prev, .section-3 .accordion__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.section-3 .accordion__prev:hover, .section-3 .accordion__next:hover {
  opacity: 0.8;
}
.section-3 .accordion__prev img, .section-3 .accordion__next img {
  display: block;
}
.section-3 .accordion__prev {
  left: 0;
}
@media only screen and (max-width: 37.5em) {
  .section-3 .accordion__prev {
    display: none;
  }
}
.section-3 .accordion__next {
  right: 0;
}
@media only screen and (max-width: 37.5em) {
  .section-3 .accordion__next {
    display: none;
  }
}
.section-3 .accordion__list {
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .section-3 .accordion__list {
    display: block;
  }
}
.section-3 .swiper {
  padding-bottom: 4rem;
  overflow: hidden;
}
.section-3 .swiper-pagination {
  bottom: 0;
}
.section-3 .swiper-pagination-bullet {
  opacity: 1;
  width: 31px;
  height: 18px;
  background: url(../images/swiper-icon.png) no-repeat center center/cover;
}
.section-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/swiper-icon-active.png) no-repeat center center/cover;
}

.section-4 {
  background: url(../images/bg-4.png) no-repeat center center/cover;
}
.section-4__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-6rem / 2);
}
.section-4__list > .item {
  list-style: none;
  padding: calc(6rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-4__list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-4__list > .item {
    width: calc((1 / 1) * 100%);
  }
}
@media only screen and (max-width: 37.5em) {
  .section-4__list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-2rem / 2);
  }
  .section-4__list > .item {
    list-style: none;
    padding: calc(2rem / 2);
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 75em) {
  .section-4__list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 56.25em) {
  .section-4__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-5 {
  background: url(../images/bg-5.png) no-repeat center center/cover;
}
.section-5 .swiper {
  padding-top: 2rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
.section-5 .swiper-pagination {
  bottom: 0;
}
.section-5 .swiper-pagination-bullet {
  opacity: 1;
  width: 31px;
  height: 18px;
  background: url(../images/swiper-icon.png) no-repeat center center/cover;
}
.section-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/swiper-icon-active.png) no-repeat center center/cover;
}

.section-6 {
  padding: 13rem 0;
  background: url(../images/bg-6.png) no-repeat center center/cover;
}
@media only screen and (max-width: 37.5em) {
  .section-6 {
    padding: 6rem 0;
  }
}
.section-6__heading {
  font-size: 3.4rem;
  color: #D74229;
  position: absolute;
  left: 0;
  transform: translate(-120%, 0);
}
.section-6__heading strong {
  color: #2f2f2f;
}
.section-6__right {
  display: flex;
  flex-direction: row-reverse;
}
.section-6__content {
  position: relative;
}
.section-6__list {
  width: 75rem;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.5em) {
  .section-6__list {
    width: auto;
  }
}
.section-6__list .item {
  width: 50%;
}
.section-6__list .item .feature-card {
  width: 100%;
  height: 22.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section-6__list .item .feature-card--1 {
  background: url(../images/da-red.png) no-repeat center center/cover;
}
.section-6__list .item .feature-card--2 {
  background: url(../images/da-black.png) no-repeat center center/cover;
  transform: translateY(-4rem);
}
.section-6__list .item .feature-card--3 {
  background: url(../images/da-gray.png) no-repeat center center/cover;
}
.section-6__list .item .feature-card--4 {
  background: url(../images/da-yellow.png) no-repeat center center/cover;
  transform: translateY(-4rem);
}
.section-6__list .item .feature-card .iconfont {
  font-size: 8rem;
  color: #ffffff;
  line-height: 1;
}
.section-6__list .item .feature-card svg {
  fill: #ffffff;
  width: 8rem;
  height: auto;
}
.section-6__list .item .feature-card p {
  padding-top: 1rem;
  text-align: center;
  font-size: 1.8rem;
  color: #ffffff;
  max-width: 20rem;
  font-weight: 600;
}
.section-6__list .item .feature-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.section-6__contact-info {
  padding-top: 2rem;
  padding-left: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .section-6__contact-info {
    padding-left: 0;
  }
}
.section-6__contact-info p {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 29px;
  text-shadow: 1px 1px 10px #fff;
}

.section-7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .section-7 {
    padding: 3rem 0;
  }
}
.section-7__left {
  width: 50%;
  background-color: #ccc;
}
@media only screen and (max-width: 37.5em) {
  .section-7__left {
    width: 100%;
    height: auto;
  }
}
.section-7__right {
  width: 50%;
  padding-right: 4rem;
  padding-left: 6.5rem;
}
@media only screen and (max-width: 75em) {
  .section-7__right {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-7__right {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-7__right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.section-7__list .item:nth-child(even) {
  background-color: rgba(250, 223, 175, 0.3);
}

.cp-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-4rem / 2);
}
.cp-list > .item {
  list-style: none;
  padding: calc(4rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .cp-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .cp-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.online-lib-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-4rem / 2);
}
.online-lib-list > .item {
  list-style: none;
  padding: calc(4rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .online-lib-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .online-lib-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.home-line {
  height: 10rem;
  background: url(../images/bg-3.png) no-repeat bottom center/cover;
  overflow: hidden;
}

.static-banner img {
  display: block;
  width: 100%;
}

.inner-news-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.inner-news-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-news-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-news-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.inner-image-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.inner-image-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-image-list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-image-list > .item {
    width: calc((1 / 2) * 100%);
  }
}

.inner-shows-list .item {
  list-style: none;
}

.theme-blank {
  height: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .theme-blank {
    height: 2rem;
  }
}

.theme-board {
  position: relative;
  border-bottom: 2rem solid #a98365;
}
@media only screen and (max-width: 56.25em) {
  .theme-board {
    margin-bottom: 2rem;
    border-bottom: none;
  }
}
.theme-board__image img {
  display: block;
  width: 100%;
}
.theme-board__title {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(180%);
  font-size: 2.8rem;
  color: #803223;
  display: flex;
  align-items: center;
}
.theme-board__title::before {
  display: block;
  content: "";
  width: 4px;
  height: 3rem;
  background-color: #803223;
  margin-right: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .theme-board__title {
    position: relative;
    transform: translateY(0);
    padding: 1rem 0;
  }
}
.theme-board__heading {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}
.theme-board__heading--2 {
  transform: translateY(80%);
}
@media only screen and (max-width: 56.25em) {
  .theme-board__heading {
    width: 100%;
    transform: translateY(0);
    position: relative;
  }
}

.theme-heading {
  background-color: #fff4e5;
  border-bottom: 4px solid #803223;
}
.theme-heading__top {
  border-bottom: 1px solid #e7e7e7;
}
.theme-heading__bottom {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.theme-heading__bottom--left {
  width: 50%;
}
.theme-heading__bottom--right {
  width: 50%;
  border-left: 1px solid #e7e7e7;
}
.theme-heading__bottom::after {
  content: "";
  display: block;
  width: 19.4rem;
  height: 8.4rem;
  background: url(../images/cloud-icon3.png) no-repeat center center/cover;
  position: absolute;
  right: -3.5rem;
  bottom: -2rem;
  transition: 0.3s ease-in-out;
}
.theme-heading__info {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.theme-heading__info h2 {
  font-size: 2rem;
  color: #803223;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.theme-heading__info p {
  font-size: 1.5rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.theme-title {
  position: relative;
  font-size: 3rem;
  color: #111111;
}
.theme-title strong {
  color: #803223;
}
.theme-title::after {
  display: block;
  content: "";
  height: 1px;
  width: 6rem;
  border-bottom: 4px solid #803223;
}

.theme-context p {
  font-size: 1.6rem;
  line-height: 2;
  color: #111;
}

.custom-swiper-arrow {
  display: flex;
  align-items: center;
}
.custom-swiper-arrow p {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid #a98365;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.custom-swiper-arrow p:not(:last-child) {
  margin-right: 1rem;
}
.custom-swiper-arrow p span {
  font-size: 3rem;
  color: #a98365;
}
.custom-swiper-arrow p:hover {
  background-color: #a98365;
}
.custom-swiper-arrow p:hover span {
  color: #fff;
}

.flex-sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activity-board {
  height: 44rem;
  display: flex;
  flex-wrap: wrap;
  background-color: #a38469;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .activity-board {
    flex-direction: column;
    height: auto;
  }
}
.activity-board__left {
  width: 45%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .activity-board__left {
    width: 100%;
    height: auto;
    padding-bottom: 2rem;
  }
}
.activity-board__left::after {
  content: "";
  display: block;
  width: 45rem;
  height: 36rem;
  background: url(../images/floor.png) no-repeat center center/cover;
  position: absolute;
  right: -18rem;
  bottom: -15rem;
}
.activity-board__right {
  width: 55%;
  height: 100%;
  background-color: #111;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}
@media only screen and (max-width: 56.25em) {
  .activity-board__right {
    width: 100%;
    height: auto;
    clip-path: none;
  }
}
.activity-board__right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-board__info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 2.4rem;
  color: #fff;
}
.activity-board__info .title::after {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background: #ffffff;
  margin-top: 2rem;
}
.activity-board__info .tags p {
  font-size: 1.8rem;
  color: #fff;
}
.activity-board__info .register {
  display: block;
  width: 12rem;
  line-height: 4rem;
  background: #803223;
  border-radius: 19px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.activity-details .img {
  display: block;
  width: 100%;
}
.activity-details .title {
  font-size: 2.4rem;
  color: #803223;
}
.activity-details .tags {
  background-color: #f8edea;
  position: relative;
}
.activity-details .tags p {
  font-size: 1.8rem;
  line-height: 2;
}
.activity-details .tags .register {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  right: 2rem;
  display: block;
  width: 12rem;
  line-height: 4rem;
  background: #803223;
  border-radius: 19px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .activity-details .tags .register {
    position: relative;
    left: auto;
    right: auto;
    transform: translateY(0);
  }
}

.image-nav {
  display: flex;
  flex-wrap: wrap;
}
.image-nav a, .image-nav p {
  padding: 0 2rem;
  line-height: 3rem;
  border-radius: 1000px;
  background: #ffffff;
  border: 1px solid #d6cab4;
  font-size: 1.6rem;
  color: #803223;
  margin-right: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.image-nav a:hover, .image-nav a.active, .image-nav p:hover, .image-nav p.active {
  background-color: #803223;
  color: #fff;
}

.collection-image img {
  width: 100%;
}

.shows-details {
  background-color: #fff;
  border-top: 2px solid #803223;
}
.shows-details__back {
  text-align: right;
}
.shows-details__back svg {
  width: 4rem;
  height: 4rem;
  fill: #666;
}
.shows-details__back svg:hover {
  fill: #D74229;
}
.shows-details__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f5f5f5;
}
@media only screen and (max-width: 56.25em) {
  .shows-details__main {
    margin-bottom: 2rem;
  }
}
.shows-details__main--left {
  width: 60%;
}
@media only screen and (max-width: 56.25em) {
  .shows-details__main--left {
    width: 100%;
  }
}
.shows-details__main--right {
  width: 40%;
  padding: 0 4rem;
}
@media only screen and (max-width: 56.25em) {
  .shows-details__main--right {
    width: 100%;
    padding: 1rem;
  }
}
.shows-details__main--right .rich-text {
  font-size: 1.6rem;
  color: #111;
  line-height: 2;
}
.shows-details__context {
  border-bottom: 1px solid #e7e7e7;
}
.shows-details__context h2 {
  font-size: 2rem;
  color: #803223;
  margin-bottom: 2rem;
}
.shows-details__context p {
  font-size: 1.6rem;
  color: #111;
  line-height: 2;
}
.shows-details__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2.8rem / 2);
}
.shows-details__list > .item {
  list-style: none;
  padding: calc(2.8rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .shows-details__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .shows-details__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.shows-details__swiper .mySwiper {
  position: relative;
  padding: 1rem 5rem;
  background-color: rgba(0, 0, 0, 0.4);
}
.shows-details__swiper .mySwiper .swiper-slide-thumb-active {
  outline: 2px solid #803223;
}
.shows-details__swiper .mySwiper .swiper-button-prev::after {
  font-size: 2rem;
  color: #fff;
}
.shows-details__swiper .mySwiper .swiper-button-next::after {
  font-size: 2rem;
  color: #fff;
}

.heading-sub {
  position: relative;
}
.heading-sub__left {
  display: flex;
  justify-content: center;
}
.heading-sub__left.block {
  display: block;
}
.heading-sub__medium {
  display: flex;
  justify-content: center;
}
.heading-sub__right {
  position: absolute;
  right: 0;
  top: 1rem;
}

.inner-heading .main {
  font-size: 3rem;
  color: #803223;
}
.inner-heading .main strong {
  color: #111111;
}
.inner-heading .main::after {
  display: block;
  content: "";
  width: 57px;
  height: 4px;
  background: #803223;
  margin: 5px auto;
}
.inner-heading--left .main::after {
  display: block;
  content: "";
  width: 57px;
  height: 4px;
  background: #803223;
  margin: 5px auto;
  margin-left: 0;
  margin-right: auto;
}

.inner-tab-title {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
.inner-tab-title p {
  line-height: 3.8rem;
  padding: 0 2rem;
  border-radius: 100px;
  border: 1px solid #803223;
  font-size: 2rem;
  color: #803223;
  margin: 0 1rem;
  cursor: pointer;
}
.inner-tab-title p.active {
  background-color: #803223;
  color: #fff;
}

.inner-more {
  display: block;
  width: 8rem;
  text-align: center;
  line-height: 2.8rem;
  border: 1px solid #803223;
  border-radius: 24px;
  font-size: 1.4rem;
  color: #803223;
}
.inner-more:hover {
  background-color: #803223;
  color: #fff;
}

.section-9 {
  position: relative;
  background: url(../images/bg-8.png);
}
.section-9::after {
  content: "";
  display: block;
  width: 222px;
  height: 566px;
  background: url(../images/bg-9.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.section-9 .accordion .container {
  position: relative;
}
.section-9 .accordion__prev, .section-9 .accordion__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.section-9 .accordion__prev:hover, .section-9 .accordion__next:hover {
  opacity: 0.8;
}
.section-9 .accordion__prev img, .section-9 .accordion__next img {
  display: block;
}
.section-9 .accordion__prev {
  left: -2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-9 .accordion__prev {
    display: none;
  }
}
.section-9 .accordion__next {
  right: -2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-9 .accordion__next {
    display: none;
  }
}
.section-9 .accordion__list {
  display: flex;
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.5);
}
.section-9 .accordion__list--npd {
  padding: 0;
}
@media only screen and (max-width: 37.5em) {
  .section-9 .accordion__list {
    display: block;
  }
}

.section-10 {
  background: url(../images/bg-11.png) no-repeat center center/cover;
}

.section-11 {
  background: url(../images/bg-8.png);
}
.theme-card-2 {
  background-color: #803223;
}
.theme-card-2:hover .theme-card-2__content {
  transform: translate3d(-1rem, -1rem, 0);
  background-color: #fff;
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
}
.theme-card-2__content {
  background-color: #efe4d0;
  transition: 0.3s ease-in-out;
  position: relative;
  border: 1px solid #ebebeb;
}
.theme-card-2__content--white {
  background-color: #fff;
}
.theme-card-2__content .info {
  position: relative;
  padding: 3rem;
}
.theme-card-2__content .info .title {
  line-height: 2.2rem;
  height: 4.4rem;
}
.theme-card-2__content .info .tag {
  display: block;
  padding: 5px 3rem;
  border-radius: 100px;
  background-color: #803223;
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #fff;
}
.theme-card-2__content .info .state {
  border-radius: 100px;
  padding: 2px 1rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #803223;
}
.theme-card-2--expired .theme-card-2__content .info .tag {
  background-color: #999999;
}
.theme-card-2--expired .theme-card-2__content .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
}
.theme-card-2--open .theme-card-2__content .info .tag {
  background-color: #e1ac62;
}
.theme-card-2:hover .info .title {
  color: #803223;
}

.accordion-card__img--inner {
  top: -8rem;
  bottom: -8rem;
}
@media only screen and (max-width: 56.25em) {
  .accordion-card__img--inner {
    top: auto;
    bottom: auto;
  }
}
.accordion-card__img--inner::after, .accordion-card__img--inner::before {
  display: none;
}

.activity-board-2 {
  height: 44rem;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .activity-board-2 {
    height: auto;
    flex-direction: column-reverse;
  }
}
.activity-board-2 .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.activity-board-2:hover {
  background-color: #a98365;
}
.activity-board-2__left {
  width: 45%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .activity-board-2__left {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.activity-board-2__left::after {
  content: "";
  display: block;
  width: 45rem;
  height: 36rem;
  background: url(../images/floor.png) no-repeat center center/cover;
  position: absolute;
  right: -18rem;
  bottom: -15rem;
}
.activity-board-2__right {
  width: 55%;
  height: 100%;
  background-color: #111;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}
@media only screen and (max-width: 56.25em) {
  .activity-board-2__right {
    width: 100%;
    clip-path: none;
  }
}
.activity-board-2__right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-board-2__info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 2.4rem;
  color: #111;
}
@media only screen and (max-width: 56.25em) {
  .activity-board-2__info .title {
    font-size: 2rem;
  }
}
.activity-board-2__info .title::after {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background: #803223;
  margin-top: 2rem;
}
.activity-board-2__info .tags p {
  font-size: 1.8rem;
  color: #666;
}
.activity-board-2__info .register {
  display: block;
  width: 12rem;
  line-height: 4rem;
  background: #a98365;
  border-radius: 19px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.activity-board-2:hover .activity-board-2__info .title {
  color: #fff;
}
.activity-board-2:hover .activity-board-2__info .title::after {
  background: #fff;
}
.activity-board-2:hover .activity-board-2__info .tags p {
  font-size: 1.8rem;
  color: #fff;
}
.activity-board-2:hover .activity-board-2__info .register {
  background: #803223;
}

.section-31 {
  background: url(../images/bg-8.png);
  position: relative;
}
.section-31::after {
  content: "";
  display: block;
  width: 222px;
  height: 566px;
  background: url(../images/bg-9.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.section-31 .row {
  position: relative;
  z-index: 99;
}
.section-31__list .item:not(:last-child) {
  margin-bottom: 2.5rem;
}
.section-31 .swiper-button-prev {
  width: 4.7rem;
  height: 4.7rem;
  background-color: #803223;
  left: 0;
  transform: translateX(-50%);
}
.section-31 .swiper-button-prev::after {
  font-size: 1.8rem;
  color: #fff;
}
.section-31 .swiper-button-next {
  width: 4.7rem;
  height: 4.7rem;
  background-color: #803223;
  right: 0;
  transform: translateX(50%);
}
.section-31 .swiper-button-next::after {
  font-size: 1.8rem;
  color: #fff;
}

.section-32 {
  background: url(../images/bg-12.png);
}
.section-32__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-6rem / 2);
  position: relative;
  z-index: 9;
}
.section-32__list > .item {
  list-style: none;
  padding: calc(6rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-32__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-32__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-33 {
  background: url(../images/bg-8.png);
}
.section-33__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-6rem / 2);
  position: relative;
  z-index: 9;
}
.section-33__list > .item {
  list-style: none;
  padding: calc(6rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-33__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-33__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-34 {
  background: url(../images/bg-13.png) no-repeat center center/cover;
}
.section-34__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-6rem / 2);
  position: relative;
  z-index: 9;
}
.section-34__list > .item {
  list-style: none;
  padding: calc(6rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-34__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-34__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-35 {
  background: url(../images/bg-8.png);
  position: relative;
}
.section-35::before {
  content: "";
  display: block;
  width: 288px;
  height: 566px;
  background: url(../images/bg-10.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
}

.research-card .info {
  padding: 2.5rem 3rem;
  background-color: #dbc7a4;
  border: 1px solid #dbc7a4;
}
.research-card .info .title {
  font-size: 1.6rem;
  line-height: 2.6rem;
  height: 5.2rem;
  color: #111;
}
.research-card:hover .info {
  background-color: #803223;
}
.research-card:hover .info .title {
  color: #fff;
}

.window-card .info {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  transform: translateY(50%);
  padding: 1rem 3rem;
  background-color: #fff;
}
.window-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
}
.window-card:hover .info {
  background-color: #803223;
}
.window-card:hover .info .title {
  color: #fff;
}

.teach-card {
  background-color: #803223;
}
.teach-card__content {
  position: relative;
  transition: 0.3s ease-in-out;
}
.teach-card:hover .teach-card__content {
  transform: translate3d(-1rem, -1rem, 0);
  box-shadow: 0px 6px 18px 0px rgba(169, 131, 101, 0.27);
}
.teach-card .info {
  padding: 1rem 3rem 2rem 3rem;
  background-color: #ece1cd;
}
.teach-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  line-height: 2.6;
  color: #803223;
  font-weight: 600;
  border-bottom: 1px solid #d8d8d8;
}
.teach-card .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  line-height: 2.5rem;
  height: 5rem;
  color: #111;
  margin-top: 1rem;
}
.teach-card:hover .info {
  background-color: #fff;
}
.teach-card:hover .info .title {
  color: #803223;
}
.teach-card:hover .info .desc {
  color: #666;
}

.inner-activity-card {
  padding: 4px;
  background-color: #fff;
  box-shadow: 0px 0px 22px 5px rgba(0, 0, 0, 0.16);
}
.inner-activity-card .date-box {
  background-color: #e8e8e8;
  margin-right: 2rem;
}
.inner-activity-card .date-box .main {
  padding: 8px 0;
  background-color: rgba(169, 131, 101, 0.74);
  color: #fff;
}
.inner-activity-card .date-box .sub {
  padding: 3px 1rem;
  background-color: #803223;
  color: #fff;
}
.inner-activity-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
}
.inner-activity-card .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666;
}
.inner-activity-card:hover {
  background-color: #803223;
}
.inner-activity-card:hover .date-box .main {
  background-color: #9e6e54;
}
.inner-activity-card:hover .date-box .sub {
  padding: 3px 1rem;
  background-color: #fff;
  color: #803223;
}
.inner-activity-card:hover .info .title {
  color: #fff;
}
.inner-activity-card:hover .info .desc {
  color: #fff;
}

.inner-activity-img-card {
  position: relative;
}
.inner-activity-img-card .cover {
  height: 36.7rem;
}
.inner-activity-img-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.inner-activity-img-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.6rem 3rem 2rem 3rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.inner-activity-img-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #fff;
  font-size: 1.6rem;
}
.inner-activity-img-card .info .date {
  position: absolute;
  left: 3rem;
  top: 0;
  transform: translateY(-50%);
  width: 10rem;
  line-height: 3rem;
  text-align: center;
  background: #803223;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 15px;
}
.inner-activity-img-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.section-41 {
  background: url(../images/bg-8.png);
}

.open-time-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.open-time-table {
  width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .open-time-table {
    width: 100rem;
  }
}
.open-time-table thead tr td {
  background-color: #a98365;
  font-size: 2.2rem;
  color: #fff;
  padding: 0.8rem 3rem;
}
.open-time-table tbody tr td {
  font-size: 1.7rem;
  padding: 2rem 3rem;
  border-bottom: 1px solid rgba(128, 50, 35, 0.2);
}
.open-time-table tbody tr td .text1 {
  color: #803223;
}
.open-time-table tbody tr td .text2 {
  color: #111;
}
.open-time-table--small thead tr td {
  background-color: #a98365;
  font-size: 1.8rem;
  color: #fff;
  padding: 0.5rem 3rem;
}
.open-time-table--small tbody tr td {
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(128, 50, 35, 0.2);
}
.open-time-table--small tbody tr td .text1 {
  color: #803223;
}
.open-time-table--small tbody tr td .text2 {
  color: #111;
}

.section-42 {
  background: url(../images/bg-8.png);
}
.section-42 img {
  width: 100%;
  display: block;
}

.section-43 {
  background-color: #fff;
}

.section-44 {
  background: url(../images/bg-8.png);
}
.section-44 .content {
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: #e8ddca;
}
@media only screen and (max-width: 56.25em) {
  .section-44 .content {
    display: block;
  }
}
.section-44 .content::after {
  content: "";
  display: block;
  width: 19rem;
  height: 9.8rem;
  background: url(../images/cloud-icon3.png) no-repeat center center/cover;
  position: absolute;
  right: -2.2rem;
  top: -1rem;
  transition: 0.3s ease-in-out;
}
.section-44 .content__left {
  position: relative;
  z-index: 3;
  flex: 1;
}
.section-44 .content__left img {
  display: block;
  width: 100%;
}
.section-44 .content__right {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .section-44 .content__right {
    padding: 2rem;
  }
}
.section-44 .content__right h2 {
  font-size: 2.4rem;
  color: #803223;
  margin-bottom: 2rem;
}
.section-44 .content__right article p {
  font-size: 1.6rem;
  color: #111;
}
.section-44 .content__right article p:not(:last-child) {
  margin-bottom: 1rem;
}

.section-45 {
  background: url(../images/bg-12.png);
}
.section-45__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
}
.section-45__list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-45__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-45__list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.section-45__list-wrapper {
  padding: 3rem 2rem;
  background-color: #fff;
}

.section-46 {
  background: url(../images/bg-13.png) no-repeat center center/cover;
}

.order-1 {
  height: 47rem;
  background: url(../images/order-1.png) no-repeat center bottom/cover;
  padding: 3rem 4rem;
}
@media only screen and (max-width: 56.25em) {
  .order-1 {
    height: auto;
  }
}
.order-1 h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #803223;
  margin-bottom: 3rem;
}
.order-1 .content {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .order-1 .content {
    display: block;
  }
}
.order-1 .content__left {
  flex: 1;
}
.order-1 .content__left article {
  font-size: 1.6rem;
  color: #111;
}
.order-1 .content__left article p {
  margin-bottom: 1rem;
}
.order-1 .content__right {
  flex: none;
  width: 13rem;
  margin-left: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .order-1 .content__right {
    margin-left: 0;
    display: flex;
    width: 100%;
    gap: 2rem;
  }
}
.order-1 .content__right .qr-code {
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .order-1 .content__right .qr-code {
    flex: 1;
  }
}
.order-1 .content__right .qr-code__img {
  flex: 1;
}
.order-1 .content__right .qr-code__img img {
  display: block;
  width: 100%;
}
.order-1 .content__right .qr-code__text {
  width: min-content;
  font-size: 1.4rem;
  color: #111;
  font-weight: 600;
  padding-left: 5px;
}

.order-2 {
  height: 47rem;
  background: url(../images/order-2.png) no-repeat center bottom/cover;
  padding: 3rem 4rem;
}
@media only screen and (max-width: 56.25em) {
  .order-2 {
    height: auto;
  }
}
.order-2 h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3rem;
}
.order-2 article {
  font-size: 1.6rem;
  color: #f2f2f2;
}
.order-2 article p {
  margin-bottom: 1rem;
}

.rule-card {
  display: flex;
  align-items: center;
}
.rule-card__icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 8px;
  /* background-color: #803223; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.rule-card__text {
  font-size: 1.7rem;
  color: #111;
  line-height: 2;
  padding-left: 2rem;
}

.sub-index-top {
  background: url(../images/bg-8.png);
}

.transition {
  display: flex;
  background-color: #E8DDCA;
}
@media only screen and (max-width: 56.25em) {
  .transition {
    display: block;
  }
}
.transition__left {
  flex: 2;
  height: 36rem;
}
.transition__left .map__container {
  display: block;
  width: 100%;
  height: 100%;
}
.transition__right {
  flex: 1;
  height: 36rem;
  padding-left: 5rem;
  padding-top: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .transition__right {
    padding: 2rem;
    height: auto;
  }
}
.transition__right article p {
  font-size: 1.6rem;
  color: #111;
}
.transition__right article p:not(:last-child) {
  margin-bottom: 1rem;
}
.transition__right article .ps {
  color: #803223;
}

.article-text {
  font-size: 1.8rem;
}

.zoom-up-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.zoom-up-icon svg {
  width: 30px;
  height: 30px;
  color: #fff;
  fill: #fff;
}

.td-btn-wrapper {
  padding-top: 10px;
}
.td-btn-wrapper svg {
  width: 30px;
  height: 30px;
  color: #333;
  fill: #333;
}