@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@font-face {
  font-family: "AcuminVariableConcept";
  src: url(../fonts/AcuminVariableConcept.otf);
  font-display: swap;
}
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes shakeDown {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 30px);
  }
}
@keyframes fontIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fontLeave {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-2%);
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
header {
  padding: 20px 0;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding-left: 15.1041666667vw;
  padding-right: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1439px) {
  header {
    padding-left: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  header {
    padding: 13px 15px;
  }
}
header::before {
  content: "";
}
@media (max-width: 1199px) {
  header::before {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0px 1px 10px rgba(102, 102, 102, 0.15);
    z-index: 1;
  }
}
header .logo-img-box {
  width: 13.2%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  header .logo-img-box {
    width: 160px;
  }
}
@media (max-width: 991px) {
  header .logo-img-box {
    width: 140px;
  }
}
@media (max-width: 575px) {
  header .logo-img-box {
    width: 120px;
  }
}
header .logo-img-box img {
  width: 100%;
}
header .search-block {
  position: relative;
}
@media (max-width: 1199px) {
  header .search-block {
    margin-left: 6.25vw;
    margin-top: auto;
    width: 200px;
  }
}
@media (max-width: 575px) {
  header .search-block {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
  }
}
header .h-search-btn {
  margin-top: 5px;
  color: #26201A;
  display: block;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  header .h-search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-58%);
    margin-top: 0;
  }
}
header .h-search-btn:hover {
  opacity: 0.7;
}
header .h-search-btn i {
  font-size: 1.5em;
}
header .h-search-input {
  width: 183px;
  border-radius: 27px;
  border: 1px solid #C6893F;
  backgorund-color: #fff;
  padding: 5px 50px 5px 20px;
  color: #26201A;
  position: absolute;
  z-index: 1;
  top: -6px;
  right: -20px;
  height: 44px;
  transition: all 0.3s ease;
  display: none;
}
@media (max-width: 1199px) {
  header .h-search-input {
    display: block;
    left: 0;
    position: relative;
    width: 200px;
  }
}
@media (max-width: 575px) {
  header .h-search-input {
    width: 100%;
  }
}
header .h-search-input.active {
  display: block;
}
header .h-search-input::placeholder {
  color: #ACA095;
}
header .h-search-input:focus {
  outline: 0;
}
header .menu-btn {
  margin-left: auto;
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  header .menu-btn {
    display: block;
  }
}
header .menu-btn::before, header .menu-btn::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #26201A;
  display: block;
  transition: all 0.3s ease;
}
header .menu-btn::before {
  margin-bottom: 10px;
}
header .menu-btn.close::before {
  transform: rotate(45deg) translateY(9px);
}
header .menu-btn.close::after {
  transform: rotate(-45deg) translateY(-9px);
}

.header-main-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1199px) {
  .header-main-block {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 84px;
    background-color: #fff;
    padding-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .header-main-block {
    padding-top: 79px;
  }
}
@media (max-width: 575px) {
  .header-main-block {
    min-height: -webkit-fill-available;
    padding-top: 59.7px;
  }
}

.header-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin-right: -20px;
}
@media (max-width: 1199px) {
  .header-list {
    display: block;
    width: 100%;
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 1199px) {
  .header-list {
    padding-left: 0;
    padding-right: 0;
  }
}
.header-list li {
  padding: 0 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .header-list li {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .header-list li {
    padding: 0;
  }
}
.header-list li.active .header-link {
  color: #C6893F;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .header-list li:hover .drop-menu {
    opacity: 1;
    display: block;
  }
}
@media (max-width: 1199px) {
  .header-list .link-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    border-bottom: 1px solid #ACA095;
    padding-right: 15px;
  }
}
.header-list .header-link {
  color: #26201A;
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .header-list .header-link {
    width: 100%;
    padding: 14px 15px;
  }
}
.header-list .header-link:hover {
  color: #C6893F;
}
@media (max-width: 1199px) {
  .header-list .header-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 575px) {
  .header-list .header-link {
    padding: 15px;
  }
}
.header-list .icon-plus {
  display: none;
  color: #26201A;
}
@media (max-width: 1199px) {
  .header-list .icon-plus {
    display: block;
    font-size: 1.5em;
  }
}
.header-list .icon-remove {
  font-size: 1.5em;
}
.header-list .drop-menu {
  background-color: #fafafa;
  min-width: 200px;
  position: absolute;
  bottom: 0;
  left: -25%;
  transform: translate(-7%, 105%);
  opacity: 0;
  display: none;
  transition: all 0.2s ease;
}
.header-list .drop-menu::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
}
@media (max-width: 1199px) {
  .header-list .drop-menu {
    opacity: 1;
    display: none;
    position: relative;
    left: unset;
    bottom: unset;
    transform: unset;
    background-color: #F5F5F5;
  }
}
@media (max-width: 575px) {
  .header-list .drop-menu {
    background-color: #F5F5F5;
  }
}
.header-list .drop-link {
  display: block;
  padding: 13px 15px;
  color: #26201A;
  font-size: 1.125em;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .header-list .drop-link {
    padding: 14px 15px;
  }
}
@media (max-width: 575px) {
  .header-list .drop-link {
    padding: 15px 30px;
  }
}
.header-list .drop-link:hover {
  color: #C6893F;
}

.lang-block {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin-left: 5.46875vw;
  margin-right: 30px;
  position: relative;
}
@media (max-width: 1199px) {
  .lang-block {
    display: inline-block;
    margin-left: 6.25vw;
    margin-top: 20px;
    order: 3;
    transform: translateX(11px);
  }
}
@media (max-width: 575px) {
  .lang-block {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
    margin-right: 0;
    transform: translateX(0);
  }
}
.lang-block::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background-color: #26201A;
  left: 50%;
  transform: translateX(-50%);
}
.lang-block .item {
  padding: 0 20px;
}
.lang-block a {
  color: #26201A;
  opacity: 0.4;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .lang-block a {
    color: #26201A;
  }
}
.lang-block a.active {
  opacity: 1;
}
.lang-block a:hover {
  opacity: 1;
}
.lang-block a:nth-of-type(1) {
  margin-right: 40px;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Montserrat", "Noto Sans TC", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  letter-spacing: 0.03em;
  line-height: 180%;
  color: #26201A;
}
body * {
  line-height: 180%;
}
body.loading-out {
  opacity: 0;
}

h1 {
  font-size: 2.875em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.375em;
}

h5 {
  font-size: 1.125em;
}

h6 {
  font-size: 1em;
  letter-spacing: 0.25em;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

a:hover {
  text-decoration: none;
  color: #26201A;
}

.csr-news-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}

.csr-prev, .csr-next {
  display: block;
  width: 54px;
  height: 54px;
  transition: all 0.3s ease;
  outline: 0;
}
@media (max-width: 575px) {
  .csr-prev, .csr-next {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .csr-prev:hover, .csr-next:hover {
    opacity: 0.7;
  }
}
.csr-prev.swiper-button-disabled, .csr-next.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.csr-prev {
  background: url("../images/icon/csr-prev.png") no-repeat;
  background-size: contain;
  margin-right: 30px;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .csr-prev {
    background: url("../images/icon/csr-prev@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .csr-prev {
    background: url("../images/icon/csr-prev@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .csr-prev {
    margin-right: 15px;
  }
}

.csr-next {
  background: url("../images/icon/csr-next.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .csr-next {
    background: url("../images/icon/csr-next@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .csr-next {
    background: url("../images/icon/csr-next@2x.png") no-repeat;
    background-size: contain;
  }
}

.dropdown-btn {
  width: 55px;
  height: 55px;
  background: url("../images/icon/dropdown-btn.png") no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .dropdown-btn {
    background: url("../images/icon/dropdown-btn@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .dropdown-btn {
    background: url("../images/icon/dropdown-btn@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .dropdown-btn {
    width: 45px;
    height: 45px;
  }
}
.dropdown-btn:hover {
  opacity: 0.7;
}

.swiper-scrollbar-drag {
  background: #C6893F;
}

.body-container, .body-main-container {
  padding-left: 15.1041666667vw;
  padding-right: 15.1041666667vw;
}
@media (max-width: 1439px) {
  .body-container, .body-main-container {
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  .body-container, .body-main-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  .body-container, .body-main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.body-container {
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  .body-container {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .body-container {
    padding-bottom: 40px;
  }
}

.group-container {
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
}
@media (max-width: 1679px) {
  .group-container {
    padding-left: 5.2083333333vw;
    padding-right: 5.2083333333vw;
  }
}
@media (max-width: 1199px) {
  .group-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  .group-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.pl-container {
  padding-left: 15.1041666667vw;
}
@media (max-width: 1439px) {
  .pl-container {
    padding-left: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  .pl-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  .pl-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.editor-block {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .editor-block {
    padding-top: 40px;
  }
}

.banner-bg-img {
  width: 100%;
  padding-top: 26.0416666667%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 575px) {
  .banner-bg-img {
    padding-top: 66.6666666667%;
  }
}
.banner-bg-img.bg-fixed {
  background-attachment: fixed;
}
@media (max-width: 575px) {
  .banner-bg-img.bg-fixed {
    background-attachment: scroll;
  }
}
.banner-bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  right: 0;
  bottom: -3px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.banner-bg-img.bottom-bg::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F5F5F5 100%);
}
.banner-bg-img.bg-left::after {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 15.1%, #FFFFFF 100%);
}
.banner-bg-img.bg-white::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.sticky-block {
  position: sticky;
  top: 100px;
}
@media (max-width: 1199px) {
  .sticky-block {
    top: 0;
  }
}
@media (max-width: 575px) {
  .sticky-block {
    top: 75px;
  }
}

.slogan-block {
  width: 100%;
}
@media (max-width: 575px) {
  .slogan-block {
    overflow-x: hidden;
  }
}

.slogan-block-line {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.slogan-block-line::before, .slogan-block-line::after {
  content: "";
  display: block;
  height: 1px;
  max-width: 50%;
  flex-basis: 50%;
  background-color: #ABABAB;
}
.slogan-block-line::before {
  margin-right: 30px;
}
@media (max-width: 575px) {
  .slogan-block-line::before {
    margin-right: 15px;
  }
}
.slogan-block-line::after {
  margin-left: 30px;
}
@media (max-width: 575px) {
  .slogan-block-line::after {
    margin-left: 15px;
  }
}
.slogan-block-line.top .mark-01-icon {
  transform: rotate(180deg);
}

.slogan {
  margin: 2vw 0;
  font-weight: 500;
  font-size: 1.75em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  color: #26201A;
}
@media (max-width: 1439px) {
  .slogan {
    font-size: 1.75em;
  }
}
@media (max-width: 575px) {
  .slogan {
    font-size: 1.4375em;
    white-space: unset;
    margin: 40px 0;
  }
}

.mark-01-icon {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icon/marks_second.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .mark-01-icon {
    background: url("../images/icon/marks_second@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mark-01-icon {
    background: url("../images/icon/marks_second@2x.png") no-repeat;
    background-size: contain;
  }
}

.main-header {
  width: 100%;
  padding-top: 26.0416666667%;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .main-header {
    padding-top: 50.1333333333%;
    margin-bottom: 25px;
  }
}
.main-header::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0px;
  transform: translateY(10%);
  padding-top: 15.625%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0001) 0%, #ffffff 90.42%);
}
@media (max-width: 575px) {
  .main-header::after {
    padding-top: 26.0416666667%;
  }
}
.main-header .main-header-bg {
  background-position: center center;
  background-size: cover;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-header .left-round {
  position: absolute;
  bottom: -51%;
  left: 0;
  width: 39%;
  padding-top: 26.2638376384%;
  overflow: hidden;
}
.main-header .left-round::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .main-header .left-round::after {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .main-header .left-round::after {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .main-header .left-round::after {
    display: none;
  }
}
.main-header .right-round {
  content: "";
  width: 26.04%;
  padding-top: 26.04%;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(23%);
  z-index: 4;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .main-header .right-round {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .main-header .right-round {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .main-header .right-round {
    display: none;
  }
}

.content-header {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F5F5F5;
  padding-left: 15.1041666667vw;
  padding-right: 15.1041666667vw;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 1439px) {
  .content-header {
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  .content-header {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 1199px) {
  .content-header {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .content-header {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 60px;
  }
}
.content-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 30px;
  width: 39.7%;
  transform: translateY(-20%);
  padding-top: 39.7%;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .content-header::before {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .content-header::before {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
.content-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 30px;
  width: 26.04%;
  transform: translateY(0%);
  padding-top: 26.04%;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .content-header::after {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .content-header::after {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}

.header-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .header-wrapper {
    margin-bottom: 15px;
  }
}
.header-wrapper .content-title {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .news-content-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
  }
}

.line-wrapper {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 37.8125%;
  pointer-events: none;
}
@media (max-width: 991px) {
  .line-wrapper {
    display: none;
  }
}
.line-wrapper .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ACA095;
  opacity: 0.2;
}
.line-wrapper .line.line-01 {
  left: 10.93%;
}
.line-wrapper .line.line-02 {
  left: 36.97%;
}
.line-wrapper .line.line-03 {
  right: 36.97%;
}
.line-wrapper .line.line-04 {
  right: 10.93%;
}

.page-modal-block {
  width: 60px;
  height: 180px;
  position: fixed;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px 0px 0px 5px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 575px) {
  .page-modal-block {
    width: 45px;
    height: 165px;
  }
}
.page-modal-block.show {
  opacity: 1;
  z-index: 2000;
}
@media (min-width: 1200px) {
  .page-modal-block:hover {
    width: 300px;
  }
  .page-modal-block:hover .close-block {
    opacity: 1;
  }
}
.page-modal-block .close-block {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  background-color: #C6893F;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.close-arrow {
  width: 24px;
  height: 24px;
  display: block;
  background: url("../images/icon/next.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .close-arrow {
    background: url("../images/icon/next@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .close-arrow {
    background: url("../images/icon/next@2x.png") no-repeat;
    background-size: contain;
  }
}

.page-modal-bg {
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.page-modal-bg::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-modal-text {
  font-size: 1.125em;
  line-height: 1.48;
  letter-spacing: 0.5em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  top: 0.5em;
  z-index: 1;
  writing-mode: vertical-lr;
  height: 110px;
}

.main-box {
  border-left: 6px solid #D6001C;
  padding-top: 5px;
  padding-bottom: 12px;
  padding-left: 30px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .main-box {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .main-box {
    padding: 7px 0px 0px 10px;
    margin-bottom: 25px;
  }
}

.main-title {
  font-weight: 700;
  font-size: 2.125em;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .main-title {
    font-size: 1.5em;
  }
}

.content-title {
  font-weight: 700;
  font-size: 2.125em;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-right: 50px;
}
@media (max-width: 991px) {
  .content-title {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .content-title {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
}

.brumb-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -15px;
}
.brumb-list li {
  padding: 0 15px;
  position: relative;
}
.brumb-list li::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 1px;
  bottom: 1px;
  width: 1px;
  background: #26201A;
}
.brumb-list li:nth-last-of-type(1)::after {
  display: none;
}
.brumb-list li span {
  font-size: 0.9375em;
  color: #58524C;
}

.share-wrapper {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0 -10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1199px) {
  .share-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-direction: row;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 575px) {
  .share-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
  }
}
.share-wrapper a i {
  transition: all 0.3s ease;
}
.share-wrapper a:hover i {
  opacity: 0.7;
}
.share-wrapper li {
  padding: 0 10px;
}
.share-wrapper .icon {
  width: 50px;
  height: 50px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .share-wrapper .icon {
    width: 35px;
    height: 35px;
  }
}
.share-wrapper .line-icon {
  background-image: url("../images/icon/line.svg");
}
.share-wrapper .fb-icon {
  background-image: url("../images/icon/facebook.svg");
}

.news-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 1199px) {
  .news-block {
    flex-wrap: wrap;
  }
}

.main-nav-block {
  max-width: 17.17%;
  flex-basis: 17.17%;
  padding-right: 30px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-nav-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.csr-nav-block {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .csr-nav-block {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

.csr-nav-title {
  font-size: 2.125em;
  font-weight: 700;
  line-height: 1.8;
  color: #26201A;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .csr-nav-title {
    font-size: 1.75em;
  }
}

.menu-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  margin-right: -30px;
  margin-left: 5.8333333333vw;
  margin-bottom: -60px;
}
@media (max-width: 1199px) {
  .menu-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 575px) {
  .menu-wrapper {
    margin-bottom: -30px;
  }
}
.menu-wrapper .item {
  max-width: 50%;
  flex-basis: 50%;
  padding-bottom: 72px;
  padding: 0 30px;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .menu-wrapper .item {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.menu-wrapper .csr-nav-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  border-bottom: 1px solid #ACA095;
  height: 100%;
}
.menu-wrapper .text-block {
  width: 100%;
  padding-bottom: 72px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .menu-wrapper .text-block {
    padding-bottom: 35px;
  }
}

.nav-title {
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .nav-title {
    font-size: 1.25em;
  }
}

.nav-des {
  font-size: 1.125em;
  line-height: 1.8;
  color: #58524C;
  margin-bottom: 0;
}

.main-mobile-title {
  padding: 12px 15px;
  font-size: 1.125em;
  line-height: 1.77;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-weight: 700;
  background-color: #F5F5F5;
  display: none;
}
@media (max-width: 1199px) {
  .main-mobile-title {
    display: flex;
  }
}
.main-mobile-title p {
  margin-bottom: 0;
  color: #58524C;
}

.input-block {
  position: relative;
}

.search-btn {
  border: none;
  font-size: 1.5em;
  color: #26201A;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .search-btn {
    right: 20px;
  }
}
.search-btn:hover {
  opacity: 0.7;
}

.main-input {
  width: 100%;
  padding: 20px 100px 20px 30px;
  border-radius: 41px;
  border: 1px solid #C6893F;
  font-size: 1.125em;
}
@media (max-width: 575px) {
  .main-input {
    font-size: 1em;
    padding: 15px 60px 15px 30px;
  }
}
.main-input:focus {
  outline: 0;
}

.filter-icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon/filter.svg?=v1");
  background-repeat: no-repeat;
  background-size: contain;
}

.main-nav {
  padding: 0 8px;
}
@media (max-width: 1199px) {
  .main-nav {
    background-color: #fff;
    box-shadow: 0px 1px 10px rgba(102, 102, 102, 0.15);
    position: absolute;
    left: 0;
    right: 0;
    top: 55px;
    display: none;
  }
}

.main-nav-btn {
  display: block;
  padding: 0 15px 0 0;
  margin: 13px 0;
  color: #26201A;
  font-size: 1.125em;
  line-height: 1.7;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 1199px) {
  .main-nav-btn {
    border-bottom: 1px solid #ACA095;
    margin: 0;
    padding: 10px 8px;
  }
  .main-nav-btn:nth-last-of-type(1) {
    border-bottom: none;
  }
}
.main-nav-btn.active {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .main-nav-btn.active {
    color: #C6893F;
  }
  .main-nav-btn.active::before {
    display: block;
  }
}
.main-nav-btn::before {
  content: "";
  position: absolute;
  left: -6px;
  width: 4px;
  height: 4px;
  background-color: #C6893F;
  top: 50%;
  transform: translate(-50%);
  border-radius: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .main-nav-btn:hover {
    color: #C6893F;
    text-decoration: none;
  }
}

.main-content-block {
  max-wdith: 82.83%;
  flex-basis: 82.83%;
}
@media (max-width: 1199px) {
  .main-content-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.news-list {
  padding-left: 0;
  margin-bottom: 80px;
  list-style: none;
}
@media (max-width: 575px) {
  .news-list {
    margin-bottom: 40px;
  }
}
.news-list .item:nth-of-type(1) .news-link {
  padding-top: 0;
}
.news-list .news-link {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  padding: 30px 0;
  border-bottom: 1px solid #ACA095;
  color: #26201A;
  transition: all 0.4s ease;
}
@media (min-width: 1200px) {
  .news-list .news-link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
@media (max-width: 575px) {
  .news-list .news-link {
    flex-wrap: wrap;
    padding: 15px 0 30px 0;
  }
}
.news-list .news-bg-img {
  max-width: 31.5%;
  flex-basis: 31.5%;
  padding-top: 18.9%;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 575px) {
  .news-list .news-bg-img {
    max-width: 100%;
    flex-basis: 100%;
    padding-top: 60%;
    margin-bottom: 15px;
  }
}
.news-list .news-content {
  max-width: 68.5%;
  flex-basis: 68.5%;
  padding-left: 30px;
  padding-top: 27px;
}
@media (max-width: 575px) {
  .news-list .news-content {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}
.news-list .news-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 20px;
}

.news-notice {
  text-align: center;
  font-size: 1.5em;
  color: #ACA095;
}

.news-badge, .news-date {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 0.9375em;
  display: inline-block;
}

.news-badge {
  border-radius: 3px;
  border: 1px solid #D6001C;
  padding: 0 5px;
  color: #D6001C;
}

.news-date {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  color: #ACA095;
}

.news-title {
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.25em;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.news-text {
  font-weight: 400;
  line-height: 1.8;
  color: #58524C;
  font-size: 1.125em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  margin-bottom: 0;
}

.pagination-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.pagination-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0px 10px;
  min-width: 30px;
  min-height: 30px;
  text-align: center;
  color: #26201A;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .pagination-block a {
    margin-right: 0;
  }
}
.pagination-block a.active {
  background-color: #D6001C;
  color: #fff;
  border-radius: 100%;
}
.pagination-block a.point-btn {
  padding-left: 0;
}
.pagination-block a.point-btn::before {
  content: "...";
  display: inline-block;
  margin-left: 5px;
  margin-right: 17px;
}
.pagination-block .pagination-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.pagination-block .prev-btn, .pagination-block .next-btn {
  width: 24px;
  height: 24px;
}
.pagination-block .prev-btn {
  background-image: url("../images/icon/prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .pagination-block .prev-btn {
    margin-right: 15px;
  }
}
.pagination-block .next-btn {
  background-image: url("../images/icon/next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .pagination-block .next-btn {
    margin-left: 15px;
  }
}

.nsdi-article-system {
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 1.778;
  text-align: justify;
}
@media (max-width: 575px) {
  .nsdi-article-system {
    margin-bottom: 30px;
    overflow-x: hidden;
  }
}
.nsdi-article-system img {
  width: 100%;
  max-width: 100%;
}
.nsdi-article-system h2 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #26201A;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .nsdi-article-system h2 {
    margin-bottom: 15px;
  }
}
.nsdi-article-system h3 {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #26201A;
}
@media (max-width: 575px) {
  .nsdi-article-system h3 {
    margin-bottom: 5px;
  }
}
.nsdi-article-system p {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  margin-bottom: 0;
}
.nsdi-article-system ul li, .nsdi-article-system ol li {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.7;
  color: #26201A;
}
.nsdi-article-system ul li::marker, .nsdi-article-system ol li::marker {
  color: #C6893F;
}
.nsdi-article-system ol {
  padding-left: 20px;
}
.nsdi-article-system ol li::marker {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  color: #C6893F;
}
.nsdi-article-system small {
  display: block;
  font-weight: 400;
  font-size: 0.9375em;
  color: #58524C;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
.nsdi-article-system .nas-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 1199px) {
  .nsdi-article-system .nas-wrapper {
    flex-wrap: wrap;
  }
}
.nsdi-article-system .nas-image-wrapper {
  text-align: center;
}
@media (max-width: 1199px) {
  .nsdi-article-system .nas-image-wrapper {
    margin-bottom: 30px;
  }
  .nsdi-article-system .nas-image-wrapper:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .nsdi-article-system .nas-image-wrapper {
    margin-bottom: 15px;
  }
}
.nsdi-article-system .nas-image-wrapper p {
  text-align: center;
  font-weight: 400;
  color: #58524C;
  font-size: 0.9375em;
  margin-top: 10px;
}
.nsdi-article-system.left-img .nas-image-wrapper, .nsdi-article-system.right-img .nas-image-wrapper {
  max-width: 57.38%;
  flex-basis: 57.38%;
}
@media (max-width: 1199px) {
  .nsdi-article-system.left-img .nas-image-wrapper, .nsdi-article-system.right-img .nas-image-wrapper {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.nsdi-article-system.left-img .nas-article-wrapper, .nsdi-article-system.right-img .nas-article-wrapper {
  max-width: 42.62%;
  flex-basis: 42.62%;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .nsdi-article-system.left-img .nas-article-wrapper, .nsdi-article-system.right-img .nas-article-wrapper {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .nsdi-article-system.right-img .nas-image-wrapper {
    order: 2;
  }
}
.nsdi-article-system.right-img .nas-article-wrapper {
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .nsdi-article-system.right-img .nas-article-wrapper {
    padding-right: 0;
  }
}
.nsdi-article-system.double-img .nas-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -15px;
}
.nsdi-article-system.double-img .nas-image-wrapper {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 15px;
}
@media (max-width: 575px) {
  .nsdi-article-system.double-img .nas-image-wrapper {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.nsdi-article-system .threeple-img {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 60px -15px;
}
@media (max-width: 575px) {
  .nsdi-article-system .threeple-img {
    flex-wrap: wrap;
    margin: 30px -15px;
  }
}
.nsdi-article-system .threeple-img .nas-image-wrapper {
  padding: 0 15px;
}
@media (max-width: 575px) {
  .nsdi-article-system .threeple-img .nas-image-wrapper {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.group-area-card {
  width: 100%;
  padding-top: 180%;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 1679px) {
  .group-area-card {
    padding-top: 0;
    height: 650px;
  }
}
@media (max-width: 1199px) {
  .group-area-card {
    height: auto;
    min-height: 207px;
  }
}
.group-area-card.slide .group-description {
  display: block;
}
.group-area-card.slide .more {
  display: block;
}
.group-area-card.slide .mobile-open {
  display: none;
}
.group-area-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(38, 32, 26, 0.5);
}
.group-area-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
}

.swiper-wrapper.hover .group-area-card::after {
  opacity: 1;
}

.group-area-img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
}
.group-area-img.hide {
  opacity: 0;
}

.group-area-content {
  padding: 120px 40px 60px 40px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  padding-top: 6.25vw;
}
@media (max-width: 1679px) {
  .group-area-content {
    padding-top: 4vw;
  }
}
@media (max-width: 1439px) {
  .group-area-content {
    padding: 60px 40px 60px 40px;
    padding-top: 3vw;
  }
}
@media (max-width: 1199px) {
  .group-area-content {
    padding: 30px 15px 20px 20px;
    position: relative;
    align-items: flex-end;
  }
}
.group-area-content .more {
  margin-top: auto;
  display: block;
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #fff;
}
@media (max-width: 1199px) {
  .group-area-content .more {
    display: none;
  }
}
.group-area-content .more:hover i {
  transform: translateX(10px);
}
.group-area-content i {
  margin-left: 10px;
  display: inline-block;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.group-area-content .mobile-open {
  display: none;
  margin-right: 5px;
}
@media (max-width: 1199px) {
  .group-area-content .mobile-open {
    display: block;
  }
}
.group-area-content .add-icon {
  width: 37px;
  height: 37px;
  display: block;
  background: url("../images/icon/open.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .group-area-content .add-icon {
    background: url("../images/icon/open@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .group-area-content .add-icon {
    background: url("../images/icon/open@2x.png") no-repeat;
    background-size: contain;
  }
}

.group-title {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  marign-bottom: 5px;
  color: #fff;
}
@media (max-width: 1199px) {
  .group-title {
    width: 100%;
  }
}

.group-small-title {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .group-small-title {
    width: 100%;
  }
}

.group-description {
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  text-align: left;
}
@media (max-width: 1199px) {
  .group-description {
    display: none;
    opacity: 1;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .group-swiper .swiper-wrapper {
    flex-direction: column;
  }
}
.group-swiper .swiper-slide:hover .group-description {
  opacity: 1;
}
.group-swiper .hover-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
}

.about-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .about-wrapper {
    flex-wrap: wrap;
    position: realtive;
    z-index: 1;
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .about-wrapper {
    margin-bottom: 40px;
  }
}

.news-content.justify-article .nsdi-article-system p {
  text-align: justify;
}

.main-news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.section-top {
  position: relative;
  z-index: 2;
}
.section-top .body-container {
  padding-bottom: 80px;
}
@media (max-width: 575px) {
  .section-top .body-container {
    padding-bottom: 40px;
  }
}

.section-top-title {
  font-weight: 700;
  font-size: 2.125em;
  line-height: 1.8;
  color: #26201A;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .section-top-title {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
}

.section-text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}
.section-text p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.section-banner-title {
  color: #ABABAB;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 7.8125vw;
  position: absolute;
  right: 60px;
  bottom: 0;
  opacity: 0.2;
  line-height: 1.16;
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .section-banner-title {
    font-size: 10.4166666667vw;
  }
}
@media (max-width: 575px) {
  .section-banner-title {
    right: 15px;
    font-size: 3.75em;
  }
}
.section-banner-title span {
  display: block;
}

.about-main-title {
  font-weight: 700;
  font-size: 1.75em;
  letter-spacing: 0.03em;
  line-height: 180%;
  color: #26201A;
  margin-bottom: 0;
}

.about .main-title {
  font-weight: 700;
  font-size: 2.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.about .about-main-title {
  font-size: 1.5em;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .about .about-main-title {
    margin-bottom: 20px;
  }
}
.about .history-swiper-block {
  position: relative;
}
.about .history-swiper-block .swiper-scrollbar {
  background: #fff;
  width: 82.2%;
  height: 5px;
}
.about .history-swiper {
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .about .history-swiper {
    padding-bottom: 50px;
  }
}
.about .history-swiper a {
  color: #fff;
}
.about .history-swiper a:hover {
  opacity: 0.7;
}
.about .history-swiper .icon-plus {
  font-size: 1.5em;
}
.about .history-swiper .icon-remove {
  font-size: 1.5em;
}
.about .car-bg-img {
  width: 100%;
  padding-top: 59.8890942699%;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.about .car-bg-img::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 1px;
  bottom: 0;
  background: linear-gradient(0deg, rgba(38, 32, 26, 0.5) 0%, rgba(38, 32, 26, 0) 100%);
}
.about .history-content {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 30px 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.about .history-title {
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .about .history-title {
    font-size: 1.125em;
  }
}
@media (max-width: 991px) {
  .about .history-title {
    font-size: 1em;
  }
}
.about .description-content {
  padding: 30px;
  background-color: #fff;
  display: none;
  background-color: #fff;
  box-shadow: 0px 1px 10px rgba(102, 102, 102, 0.15);
}
.about .description-content .text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.about .article-text {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 0;
}
.about .article-text p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.history-bottom-section {
  padding: 104px 0 150px 0;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .history-bottom-section {
    padding: 40px 0;
  }
}
.history-bottom-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc(100% - 17.4vw);
  padding-top: 26.0416666667%;
  background-color: #26201A;
}
@media (max-width: 1199px) {
  .history-bottom-section::after {
    width: 100%;
    padding-top: 36.4583333333%;
  }
}
@media (max-width: 991px) {
  .history-bottom-section::after {
    padding-top: 52.0833333333%;
  }
}

.bottom-swiper .swiper-slide.swiper-slide-active .bottom-content {
  opacity: 1;
}

.bottom-bg-img {
  width: 100%;
  padding-top: 60%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;
}

.bottom-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 3.75em;
  color: #ABABAB;
  line-height: 72px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .bottom-title {
    font-size: 2.5em;
  }
}

.bottom-text {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .bottom-text {
    font-size: 1em;
  }
}

.bottom-content {
  opacity: 0;
  transition: all 0.6s ease;
}

.history-menu-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  color: #fff;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .history-menu-block {
    flex-wrap: wrap;
  }
}
.history-menu-block .history-link {
  color: #fff;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.8;
  opacity: 0.5;
  display: block;
  transition: all 0.3s ease;
}
.history-menu-block .history-link:hover {
  opacity: 1;
}
.history-menu-block .history-link.active {
  opacity: 1;
  border-bottom: 3px solid #fff;
}

.menu-title {
  font-weight: 700;
  line-height: 1.79;
  font-size: 1.5em;
  margin-right: 103px;
  max-width: 125px;
  flex-basis: 125px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .menu-title {
    font-size: 1.25em;
    max-width: 100%;
    flex-basis: 100%;
  }
}

.history-menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -15px -30px -15px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .history-menu {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
@media (max-width: 575px) {
  .history-menu {
    margin: 0 -20px -30px -20px;
  }
}
.history-menu li {
  padding: 0 15px;
  margin-bottom: 30px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .history-menu li {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}

.person-talk-section {
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 575px) {
  .person-talk-section {
    overflow-x: hidden;
  }
}

.person-title {
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #58524C;
}
@media (max-width: 991px) {
  .person-title {
    font-size: 1.875em;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .person-title {
    font-size: 1.125em;
    text-align: left;
    order: 2;
  }
}

.person-name {
  font-weight: 700;
  font-size: 1.75em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .person-name {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .person-name {
    font-size: 2.125em;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .person-name {
    text-align: left;
    font-size: 1.5em;
    order: 3;
  }
}

.person-talk-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 991px) {
  .person-talk-wrapper {
    flex-wrap: wrap;
  }
}

.person-text-block {
  width: 48.8%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding-top: 3.125vw;
}
@media (max-width: 991px) {
  .person-text-block {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
    position: relative;
    order: 2;
  }
}
@media (max-width: 575px) {
  .person-text-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}

.person-img-block {
  max-width: 57.3%;
  flex-basis: 57.3%;
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .person-img-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.person-img {
  width: 100%;
  padding-top: 59.9479843953%;
  background-size: cover;
  background-position: center center;
}

.index-news-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -15px 205px -15px;
}
@media (max-width: 1199px) {
  .index-news-wrapper {
    margin: 0 -15px 100px -15px;
  }
}
@media (max-width: 991px) {
  .index-news-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .index-news-wrapper {
    margin: 0 -15px 60px -15px;
  }
}
.index-news-wrapper .item {
  padding: 0 15px;
  max-width: 33.33%;
  flex-basis: 33.33%;
}
@media (max-width: 991px) {
  .index-news-wrapper .item {
    max-width: 80%;
    flex-basis: 80%;
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .index-news-wrapper .item {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.news-link:hover .index-news-card {
  opacity: 0.7;
}

.index-news-card {
  position: relative;
  transition: all 0.3s ease;
}

.news-text-block {
  position: absolute;
  left: 14%;
  right: 0;
  padding: 18px;
  bottom: 0;
  background-color: #fff;
  color: #26201A;
  font-size: 1.125em;
  line-height: 180%;
  letter-spacing: 0.03em;
  box-shadow: 0px 1px 10px rgba(102, 102, 102, 0.15);
  transform: translateY(50%);
}
@media (max-width: 575px) {
  .news-text-block {
    left: 20px;
    right: 20px;
  }
}

.news-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.news-img {
  width: 100%;
  padding-top: 59.9531615925%;
  background-size: cover;
  background-position: center center;
}

.index-video-section .index-video-container {
  width: 100%;
  padding-top: 44.8958333333%;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
}
@media (max-width: 575px) {
  .index-video-section .index-video-container {
    margin-top: 60px;
    padding-top: 0;
    padding: 120px 0;
    background-color: black;
  }
}
.index-video-section .index-video-container.bottom-bg::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  bottom: -5px;
  transform: translateY(10%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0001) 0%, #ffffff 90.42%);
}
@media (max-width: 575px) {
  .index-video-section .index-video-container.bottom-bg::after {
    padding-top: 26.0416666667%;
  }
}
.index-video-section .video-vol-btn {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  right: 50px;
  color: #fff;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .index-video-section .video-vol-btn {
    right: unset;
    left: 20px;
    bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .index-video-section .video-vol-btn:hover {
    opacity: 0.7;
  }
}
.index-video-section .video-vol-btn i {
  font-size: 2.1875em;
}
@media (max-width: 575px) {
  .index-video-section .video-vol-btn i {
    font-size: 1.375em;
  }
}
.index-video-section .index-video {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 126%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .index-video-section .index-video {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: auto;
  }
}
.index-video-section .index-demo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 575px) {
  .index-video-section .index-demo {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
  }
}
.index-video-section .m-scroll {
  display: none;
  width: 30px;
  height: 30px;
  background: url("../images/icon/m-scroll.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: translate(50%, 0);
  animation: shakeDown 3s infinite;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .index-video-section .m-scroll {
    background: url("../images/icon/m-scroll@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .index-video-section .m-scroll {
    background: url("../images/icon/m-scroll@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .index-video-section .m-scroll {
    display: block;
    left: 50%;
    bottom: 55px;
    transform: translate(-50%, 0);
  }
}

.index-content {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .index-content {
    left: 20px;
    top: 10%;
    transform: unset;
  }
}

.csr .news-date-block {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  color: #ABABAB;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.csr .csr-news-content {
  padding-left: 30px;
  border-left: 1px solid #ACA095;
}
.csr .news-text-block {
  position: relative;
  left: 0;
  right: 0;
  transform: unset;
  background-color: transparent;
  box-shadow: unset;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  min-height: 60px;
}
.csr .main-news-wrapper {
  margin-bottom: 35px;
}
.csr .about-main-title {
  margin-bottom: 0;
}
.csr .mark-01-icon {
  background: url("../images/icon/marks_second-w.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .csr .mark-01-icon {
    background: url("../images/icon/marks_second-w@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .csr .mark-01-icon {
    background: url("../images/icon/marks_second-w@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  .csr .slogan-section {
    overflow-x: hidden;
  }
}
.csr .slogan-block {
  max-width: 885px;
  flex-basis: 885px;
  width: 885px;
}
@media (max-width: 991px) {
  .csr .slogan-block {
    max-width: 90%;
    flex-basis: 90%;
    width: 90%;
    margin: 0 auto;
  }
}
.csr .slogan-block-line::after, .csr .slogan-block-line::before {
  background-color: #fff;
}
.csr .slogan {
  font-size: 2.125em;
  color: #fff;
}
.csr .activity-des {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #26201A;
  font-size: 1.25em;
}
@media (max-width: 575px) {
  .csr .activity-des {
    font-size: 1.125em;
  }
}
.csr .news-img {
  margin-bottom: 20px;
}

.data-count-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -30px 80px -30px;
}
@media (max-width: 1199px) {
  .data-count-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .data-count-wrapper {
    margin: 0 0 80px 0;
  }
}
.data-count-wrapper.top-wrapper {
  transform: translateY(-100px);
  margin-bottom: -20px;
}
@media (max-width: 1199px) {
  .data-count-wrapper.top-wrapper {
    transform: translateY(0px);
    margin: 50px 0;
  }
}
@media (max-width: 575px) {
  .data-count-wrapper.top-wrapper {
    margin: 20px 0;
  }
}
.data-count-wrapper .item {
  padding: 0 30px;
  max-width: 25%;
  flex-basis: 25%;
  text-align: center;
  border-right: 1px solid #ACA095;
}
@media (max-width: 1199px) {
  .data-count-wrapper .item {
    max-width: 50%;
    flex-basis: 50%;
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .data-count-wrapper .item {
    border-right: none;
    padding: 0;
    margin-bottom: 30px;
  }
}
.data-count-wrapper .item:nth-last-of-type(1) {
  border-right: none;
}
@media (max-width: 575px) {
  .data-count-wrapper .item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .data-count-wrapper .item:nth-last-of-type(odd) {
    border-right: none;
  }
}

.count-label {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #58524C;
  margin-bottom: 5px;
}

.data-count {
  font-weight: 700;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 1.17;
  font-size: 5em;
  color: #58524C;
}
@media (max-width: 1199px) {
  .data-count {
    font-size: 3.75em;
  }
}

.data-unit {
  display: block;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.en {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}
.en .group-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 1.75em;
  margin-bottom: 30px;
}
.en .bottom-title {
  color: #ABABAB;
  margin-bottom: 8px;
}
.en .history-menu-block {
  padding-left: 30px;
  border-left: 6px solid #fff;
}
.en .slogan {
  font-weight: 700;
  font-size: 2.125em;
}

.person-talk-content {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 991px) {
  .person-talk-content {
    flex-wrap: wrap;
  }
}
.person-talk-content .person-title-block {
  max-width: 260px;
  flex-basis: 260px;
}
@media (max-width: 991px) {
  .person-talk-content .person-title-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.person-talk-content .person-intro-block {
  max-width: calc(100% - 260px);
  flex-basis: calc(100% - 260px);
  padding-left: 4.6875vw;
}
@media (max-width: 991px) {
  .person-talk-content .person-intro-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
.person-talk-content .intro {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .person-talk-content .person-title, .person-talk-content .person-name {
    text-align: left;
  }
}
.person-talk-content .person-name {
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .person-talk-content .person-name {
    margin-bottom: 30px;
  }
}
.person-talk-content .intro-label {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .person-talk-content .intro-label {
    margin-bottom: 10px;
  }
}

.bottom-tab {
  display: none;
}
.bottom-tab.active {
  display: block;
  animation: fadeIn 1s;
}

[data-page=index] {
  position: relative;
}
[data-page=index].en .group-area-section {
  margin-top: 150px;
}
@media (max-width: 575px) {
  [data-page=index].en .group-area-section {
    margin-top: 80px;
  }
}
[data-page=index].en .main-box {
  padding-top: 0;
}
[data-page=index].en .about-main-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 2.5em;
  text-transform: uppercase;
}
[data-page=index].en .news-section {
  padding-top: 0;
}
[data-page=index].en .banner-section {
  margin-bottom: 0;
}
[data-page=index].en .history-bottom-section {
  padding: 100px 0 150px 0;
}
@media (max-width: 575px) {
  [data-page=index].en .history-bottom-section {
    padding: 80px 0 80px 0;
  }
}
[data-page=index].en .person-talk-wrapper {
  justify-content: flex-start;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  [data-page=index].en .person-talk-wrapper {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=index].en .person-talk-wrapper {
    margin-bottom: 40px;
  }
}
[data-page=index].en .person-talk-wrapper .slogan {
  white-space: unset;
}
[data-page=index].en .person-talk-wrapper .section-banner-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  color: #ABABAB;
  font-size: 9.375em;
  line-height: 1.8;
  position: absolute;
  bottom: -160px;
  right: 186px;
  -webkit-text-stroke: transparent;
  transform: translateY(0);
  opacity: 0.2;
}
@media (max-width: 991px) {
  [data-page=index].en .person-talk-wrapper .section-banner-title {
    display: none;
  }
}
[data-page=index].en .social-img {
  margin-bottom: 20px;
}
[data-page=index].en .order {
  font-size: 2.25em;
  letter-spacing: 0.05em;
  margin-right: 20px;
}
[data-page=index].en .menu-title {
  font-size: 2.5em;
  line-height: 1;
  letter-spacing: 0.05em;
  max-width: 190px;
  flex-basis: 190px;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  white-space: nowrap;
  margin-right: 78px;
  margin-bottom: 0;
}
[data-page=index].en .index-news-slogan {
  font-size: 2.5em;
}
[data-page=index].en .person-talk-section {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}
[data-page=index].en .person-talk-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  top: 40%;
  width: 100%;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=index].en .person-talk-section::after {
    display: none;
  }
}
@media (max-width: 991px) {
  [data-page=index].en .person-img-block {
    margin-bottom: 40px;
  }
}
[data-page=index].en .person-text-block {
  height: 100%;
  left: unset;
  right: 0;
  padding-top: 2vw;
}
[data-page=index].en .social-title {
  font-size: 1.875em;
}
[data-page=index].en .left-bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: unset;
  width: 39.76%;
  padding-top: 39.76%;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=index].en .left-bg {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=index].en .left-bg {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 991px) {
  [data-page=index].en .left-bg {
    display: none;
  }
}
[data-page=index].en .right-bg {
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 35%;
  transform: translateY(-50%);
  width: 26%;
  padding-top: 26%;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=index].en .right-bg {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=index].en .right-bg {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 991px) {
  [data-page=index].en .right-bg {
    display: none;
  }
}
[data-page=index] .index-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-48%);
}
@media (max-width: 575px) {
  [data-page=index] .index-content {
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    bottom: 14%;
  }
}
[data-page=index] .sticky-block {
  top: 140px;
}
[data-page=index] .line-wrapper {
  padding-top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  [data-page=index] .line-wrapper {
    display: none;
  }
}
[data-page=index] .main-box {
  border-left: 6px solid #D6001C;
  padding-top: 8px;
  padding-bottom: 0;
}
[data-page=index] .index-video-section .index-video-container {
  width: 100%;
  padding-top: 44.8958333333%;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-video-container {
    margin-top: 60px;
    padding-top: 0;
    padding: 120px 0;
    background-color: black;
  }
}
[data-page=index] .index-video-section .index-video {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 126%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-video {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: auto;
  }
}
[data-page=index] .index-video-section .index-demo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/index-demo.png");
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-demo {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
  }
}
[data-page=index] .index-video-section .m-scroll {
  width: 30px;
  height: 30px;
  background: url("../images/icon/m-scroll.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: translate(50%, 0);
  animation: shakeDown 3s infinite;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=index] .index-video-section .m-scroll {
    background: url("../images/icon/m-scroll@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=index] .index-video-section .m-scroll {
    background: url("../images/icon/m-scroll@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  [data-page=index] .index-video-section .m-scroll {
    right: 15px;
  }
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .m-scroll {
    display: block;
    left: 50%;
    bottom: 55px;
    transform: translate(-50%, 0);
  }
}
[data-page=index] .index-video-section .index-badge.open {
  opacity: 1;
  animation: fadeInBottom 4s ease;
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-badge.open {
    animation: fadeInBottom 3s ease;
  }
}
[data-page=index] .index-video-section .index-title.open {
  opacity: 1;
  animation: fadeInBottom50 5s ease;
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-title.open {
    animation: fadeInBottom50 4s ease;
  }
}
[data-page=index] .index-video-section .index-badge, [data-page=index] .index-video-section .index-title {
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.8s;
}
[data-page=index] .index-video-section .index-badge.leave, [data-page=index] .index-video-section .index-title.leave {
  animation: fontLeave 3s ease;
  transition-delay: 1.5s;
  transition: opacity 3s ease;
  opacity: 0;
}
[data-page=index] .index-video-section .index-badge {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.16;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.4em;
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-badge {
    font-size: 0.875em;
  }
}
[data-page=index] .index-video-section .index-title {
  color: #fff;
  font-weight: 400;
  font-size: 2.125em;
  line-height: 1.79;
  letter-spacing: 0.4em;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  [data-page=index] .index-video-section .index-title {
    font-size: 1.75em;
  }
}
@media (max-width: 991px) {
  [data-page=index] .index-video-section .index-title {
    font-size: 1.625em;
  }
}
@media (max-width: 575px) {
  [data-page=index] .index-video-section .index-title {
    font-size: 1.125em;
    margin-bottom: 5px;
  }
}
[data-page=index] .news-section {
  padding-top: 126px;
  position: relative;
}
@media (max-width: 1199px) {
  [data-page=index] .news-section {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  [data-page=index] .news-section {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=index] .news-section {
    padding-top: 40px;
  }
}
[data-page=index] .news-section .left-bg {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 39.76%;
  padding-top: 39.76%;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=index] .news-section .left-bg {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=index] .news-section .left-bg {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=index] .news-section .right-bg {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26%;
  padding-top: 26%;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=index] .news-section .right-bg {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=index] .news-section .right-bg {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=index] .index-news-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #D6001C;
  margin-bottom: 0;
}
[data-page=index] .news-more {
  color: #26201A;
  font-weight: 400;
  line-height: 180%;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  [data-page=index] .news-more {
    margin-top: 28px;
  }
}
[data-page=index] .news-more:hover .icon-arrow-right {
  transform: translateX(10px);
}
[data-page=index] .news-more .icon-arrow-right {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s ease;
}
[data-page=index] .main-box {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  [data-page=index] .main-box {
    margin-bottom: 25px;
  }
}
[data-page=index] .news-date-block {
  background-color: #D6001C;
  color: #fff;
  padding: 12px 12px 5px 12px;
  position: absolute;
  left: 0;
  top: 0;
}
[data-page=index] .news-date-block .month {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 0.875em;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
[data-page=index] .news-date-block .day {
  display: block;
  font-weight: 400;
  color: #fff;
  font-size: 1.875em;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}
[data-page=index] .index-slogan-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  [data-page=index] .index-slogan-container {
    margin-bottom: 15px;
  }
}
[data-page=index] .index-slogan-block {
  max-width: 655px;
  flex-basis: 655px;
}
[data-page=index] .index-news-slogan {
  font-weight: 700;
  font-size: 1.75em;
  color: #26201A;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 575px) {
  [data-page=index] .index-news-slogan {
    margin-bottom: 20px;
  }
}
[data-page=index] .index-news-slogan-text {
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.125em;
}
[data-page=index] .banner-section {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  [data-page=index] .banner-section {
    margin-bottom: 35px;
  }
}
[data-page=index] .social-section {
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  [data-page=index] .social-section {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  [data-page=index] .social-section {
    padding-bottom: 20px;
  }
}
[data-page=index] .social-section .index-news-slogan-text {
  margin-bottom: 80px;
  text-align: left;
}
@media (max-width: 991px) {
  [data-page=index] .social-section .index-news-slogan-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  [data-page=index] .social-section .index-news-slogan-text {
    margin-bottom: 20px;
  }
}
[data-page=index] .social-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 991px) {
  [data-page=index] .social-wrapper {
    flex-wrap: wrap;
  }
}
[data-page=index] .social-text {
  max-width: 457px;
  flex-basis: 457px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  [data-page=index] .social-text {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  [data-page=index] .social-text.sticky-block {
    top: 120px;
  }
}
@media (max-width: 991px) {
  [data-page=index] .social-text.sticky-block {
    position: relative;
    top: 0;
  }
}
@media (max-width: 575px) {
  [data-page=index] .social-text.sticky-block {
    top: 0;
  }
}
[data-page=index] .social-list {
  max-width: calc(100% - 457px);
  flex-basis: calc(100% - 457px);
}
@media (max-width: 991px) {
  [data-page=index] .social-list {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 575px) {
  [data-page=index] .social-list {
    overflow-x: hidden;
  }
}
[data-page=index] .social-card {
  padding-bottom: 30px;
  border-bottom: 1px solid #ACA095;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  [data-page=index] .social-card {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
}
[data-page=index] .social-img {
  width: 100%;
  padding-top: 60.0226500566%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;
}
[data-page=index] .social-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 575px) {
  [data-page=index] .social-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
  }
}
[data-page=index] .order {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  font-size: 5em;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #C6893F;
  margin-right: 25px;
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  [data-page=index] .order {
    font-size: 3.75em;
    margin-right: 10px;
  }
}
[data-page=index] .social-title {
  font-weight: 700;
  font-size: 1.5em;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
[data-page=index] .social-small-title {
  font-weight: 400;
  line-height: 1.8;
  color: #58524C;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=index] .social-small-title {
    font-size: 1em;
  }
}
[data-page=index] .group-area-section {
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  [data-page=index] .group-area-section {
    margin-bottom: 80px;
  }
}
@media (max-width: 991px) {
  [data-page=index] .group-area-section {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=index] .group-area-section {
    margin-bottom: 40px;
  }
}

[data-page=csr-forever] .about-main-title {
  font-size: 1.5em;
}
[data-page=csr-forever] .slogan {
  color: #26201A;
}
[data-page=csr-forever] .slogan-block-line::before, [data-page=csr-forever] .slogan-block-line::after {
  background-color: #ABABAB;
}
[data-page=csr-forever] .mark-01-icon {
  background: url("../images/icon/marks_second.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-forever] .mark-01-icon {
    background: url("../images/icon/marks_second@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-forever] .mark-01-icon {
    background: url("../images/icon/marks_second@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=csr-forever] .slogan-section {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}
[data-page=csr-forever] .slogan-content {
  max-width: 885px;
  flex-basis: 885px;
}
[data-page=csr-forever] .mission-top-section {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .mission-top-section {
    margin-bottom: 30px;
  }
}
[data-page=csr-forever] .mission-top-section .body-main-container {
  padding-left: 20.35vw;
  padding-right: 20.35vw;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .mission-top-section .body-main-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .mission-top-section .body-main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
[data-page=csr-forever] .csr-list-section {
  margin-bottom: 120px;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-list-section {
    margin-bottom: 60px;
  }
}
[data-page=csr-forever] .esg-list-section {
  position: relative;
  padding: 120px 0;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .esg-list-section {
    padding: 30px 0;
  }
}
[data-page=csr-forever] .esg-list-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .esg-list-wrapper {
    flex-wrap: wrap;
  }
}
[data-page=csr-forever] .section-banner-block {
  max-width: 245px;
  flex-basis: 245px;
  transform: translateY(-60px);
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .section-banner-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
    transform: translateY(0);
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .section-banner-block.sticky-block {
    position: relative;
    top: 0;
  }
}
[data-page=csr-forever] .esg-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 120px;
  max-width: calc(100% - 245px);
  flex-basis: calc(100% - 245px);
  padding-left: 5.2083333333vw;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .esg-list {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .esg-list {
    margin-bottom: 60px;
  }
}
[data-page=csr-forever] .esg-list li {
  padding: 40px 0;
  border-top: 1px solid #ABABAB;
  border-bottom: 1px solid #ABABAB;
}
[data-page=csr-forever] .csr-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
[data-page=csr-forever] .csr-list-header .icon-plus {
  font-size: 1.5em;
}
[data-page=csr-forever] .csr-list-header .icon-remove {
  font-size: 1.5em;
}
[data-page=csr-forever] .esg-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 2.5em;
  color: #58524C;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .esg-title {
    font-size: 2em;
  }
}
[data-page=csr-forever] .esg-type {
  font-family: "Noto Sans TC", "Roboto", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 1.8;
  font-size: 1.25em;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .esg-type {
    font-size: 1em;
  }
}
[data-page=csr-forever] .csr-drop-btn {
  color: #58524C;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-drop-btn {
    margin-bottom: 20px;
  }
}
[data-page=csr-forever] .csr-drop-btn:hover {
  opacity: 0.7;
}
[data-page=csr-forever] .esg-slide-block {
  display: none;
  margin-top: 20px;
}
[data-page=csr-forever] .esg-slide-block.active {
  display: block;
}
[data-page=csr-forever] .esg-des {
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
[data-page=csr-forever] .esg-des:nth-last-of-type(1) {
  margin-bottom: 0;
}
[data-page=csr-forever] .section-banner-title {
  font-size: 9.375em;
  opacity: 1;
  line-height: 1;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .section-banner-title {
    font-size: 6.25em;
  }
}
[data-page=csr-forever] .section-banner-title.relative {
  position: relative;
  transform: unset;
  right: unset;
  bottom: unset;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
[data-page=csr-forever] .section-banner-title span {
  -webkit-text-stroke: 1px #C6893F;
  color: #F5F5F5;
  transition: all 0.4s ease;
}
[data-page=csr-forever] .section-banner-title .fill {
  color: #C6893F;
}
[data-page=csr-forever] .csr-list .item {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .item {
    margin-bottom: 30px;
  }
}
[data-page=csr-forever] .csr-list .item:nth-of-type(odd) {
  padding-right: 15.1041666667vw;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(odd) {
    padding-right: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(odd) {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
[data-page=csr-forever] .csr-list .item:nth-of-type(odd) .csr-card {
  padding-left: 15.1041666667vw;
  padding-right: 5.9895833333vw;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(odd) .csr-card {
    padding-left: 7.8125vw;
    padding-right: 3.6458333333vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(odd) .csr-card {
    padding-right: 6.25vw;
  }
}
[data-page=csr-forever] .csr-list .item:nth-of-type(even) {
  padding-left: 15.1041666667vw;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(even) {
    padding-left: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(even) {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
[data-page=csr-forever] .csr-list .item:nth-of-type(even) .csr-card {
  padding-right: 15.1041666667vw;
  padding-left: 5.9895833333vw;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(even) .csr-card {
    padding-right: 7.8125vw;
    padding-left: 3.6458333333vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .item:nth-of-type(even) .csr-card {
    padding-left: 6.25vw;
  }
}
[data-page=csr-forever] .csr-list .item:nth-last-of-type(1) {
  margin-bottom: 0;
}
[data-page=csr-forever] .csr-list .csr-card {
  position: relative;
  padding-top: 175px;
  padding-bottom: 175px;
  min-height: 500px;
  overflow: hidden;
}
@media (max-width: 991px) {
  [data-page=csr-forever] .csr-list .csr-card {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-list .csr-card {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  [data-page=csr-forever] .csr-list .csr-card:hover .csr-bg-img {
    transform: scale(1.2);
  }
}
[data-page=csr-forever] .csr-list .csr-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(38, 32, 26, 0.5);
}
[data-page=csr-forever] .csr-list .csr-bg-img {
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
[data-page=csr-forever] .csr-list .csr-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  color: #fff;
}
@media (max-width: 991px) {
  [data-page=csr-forever] .csr-list .csr-card-content {
    flex-wrap: wrap;
  }
}
[data-page=csr-forever] .csr-list .csr-order {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  font-size: 9.375em;
  line-height: 1;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  margin-right: 3.90625vw;
  margin-bottom: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .csr-order {
    font-size: 8.4375em;
    margin-right: 2.34375vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .csr-list .csr-order {
    margin-right: 50px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-list .csr-order {
    font-size: 6.25em;
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=csr-forever] .csr-list .csr-title-block {
  flex-shrink: 0;
  margin-right: 8.6458333333vw;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .csr-title-block {
    margin-right: 5.2083333333vw;
  }
}
[data-page=csr-forever] .csr-list .csr-title {
  font-weight: 400;
  font-size: 2.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media (max-width: 1439px) {
  [data-page=csr-forever] .csr-list .csr-title {
    font-size: 1.75em;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-list .csr-title {
    margin-bottom: 10px;
  }
}
[data-page=csr-forever] .csr-list .csr-link {
  color: #fff;
  font-size: 1.125em;
  font-weight: 400;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  line-height: 1.8;
  width: 110px;
}
[data-page=csr-forever] .csr-list .csr-link:hover .icon-arrow-right {
  transform: translateX(8px);
}
[data-page=csr-forever] .csr-list .icon-arrow-right {
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}
[data-page=csr-forever] .csr-list .csr-card-des {
  border-left: 1px solid #fff;
  padding-left: 30px;
  max-width: 53.4%;
  flex-basis: 53.4%;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (max-width: 991px) {
  [data-page=csr-forever] .csr-list .csr-card-des {
    max-width: 100%;
    flex-basis: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-list .csr-card-des {
    font-size: 1em;
    padding-left: 0;
    border-left: none;
  }
}
[data-page=csr-forever] .csr-list .csr-card-des p {
  margin-bottom: 0;
}
[data-page=csr-forever] .csr-report-section {
  overflow: hidden;
}
[data-page=csr-forever] .csr-report-section .bg-left {
  width: 39.7%;
  padding-top: 39.7%;
  background: url("../images/bg_left_b.png");
  background-size: auto auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-forever] .csr-report-section .bg-left {
    background: url("../images/bg_left_b@2x.png");
    background-size: auto auto;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-forever] .csr-report-section .bg-left {
    background: url("../images/bg_left_b@2x.png");
    background-size: auto auto;
  }
}
[data-page=csr-forever] .csr-report-section .bg-right {
  width: 26%;
  padding-top: 26%;
  background: url("../images/bg_right_b.png");
  background-size: auto auto;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  pointer-events: none;
  transform: translateY(-18%);
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-forever] .csr-report-section .bg-right {
    background: url("../images/bg_right_b@2x.png");
    background-size: auto auto;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-forever] .csr-report-section .bg-right {
    background: url("../images/bg_right_b@2x.png");
    background-size: auto auto;
  }
}
[data-page=csr-forever] .csr-report-section a {
  color: #26201A;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
[data-page=csr-forever] .csr-report-section a:hover {
  color: #fff;
}
[data-page=csr-forever] .csr-report-section a:hover .csr-report-block {
  background-color: rgba(38, 32, 26, 0.6);
}
[data-page=csr-forever] .csr-report-section a:hover .report-text {
  color: #F5F5F5;
}
[data-page=csr-forever] .csr-report-section a:hover .radius-btn {
  background-color: #fff;
  color: #58524C;
}
[data-page=csr-forever] .csr-report-section a:hover .bg-left {
  background: url("../images/bg_left_w.png");
  background-size: auto auto;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-forever] .csr-report-section a:hover .bg-left {
    background: url("../images/bg_left_w@2x.png");
    background-size: auto auto;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-forever] .csr-report-section a:hover .bg-left {
    background: url("../images/bg_left_w@2x.png");
    background-size: auto auto;
  }
}
[data-page=csr-forever] .csr-report-section a:hover .bg-right {
  background: url("../images/bg_right_w.png");
  background-size: auto auto;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-forever] .csr-report-section a:hover .bg-right {
    background: url("../images/bg_right_w@2x.png");
    background-size: auto auto;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-forever] .csr-report-section a:hover .bg-right {
    background: url("../images/bg_right_w@2x.png");
    background-size: auto auto;
  }
}
[data-page=csr-forever] .body-main-container {
  position: relative;
  z-index: 2;
}
[data-page=csr-forever] .csr-report-block {
  padding: 183px 0;
  background-color: #F5F5F5;
  position: relative;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-report-block {
    padding: 50px 20px;
  }
}
[data-page=csr-forever] .csr-report-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-report-wrapper {
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-direction: row;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .report-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=csr-forever] .report-title {
  font-weight: 400;
  font-size: 2.125em;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .report-title {
    font-size: 1.75em;
  }
}
[data-page=csr-forever] .report-text {
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.8;
  color: #58524C;
  transition: all 0.3s ease;
}
[data-page=csr-forever] .radius-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  background-color: #58524C;
  color: #fff;
  border-radius: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .radius-btn {
    width: 55px;
    height: 55px;
    margin-top: 30px;
  }
}
[data-page=csr-forever] .csr-news-section {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media (max-width: 575px) {
  [data-page=csr-forever] .csr-news-section {
    padding: 60px 0;
  }
}
[data-page=csr-forever] .main-box {
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  [data-page=csr-forever] .main-box {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-forever] .main-box {
    padding: 7px 0px 0px 10px;
    margin-bottom: 35px;
  }
}

[data-page=csr-happy] img {
  max-width: 100%;
}
[data-page=csr-happy] .index-video-section {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .index-video-section {
    margin-bottom: 90px;
  }
}
[data-page=csr-happy] .index-video-section .index-video {
  top: 60%;
}
[data-page=csr-happy] .index-video-section .index-video-container {
  margin-top: 97px;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .index-video-section .index-video-container {
    margin-top: 83px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .index-video-section .index-video-container {
    margin-top: 63px;
    padding: 0;
    overflow: unset;
    background-color: unset;
  }
}
[data-page=csr-happy] .index-video-section .index-video-container.bottom-bg::after {
  display: none;
}
[data-page=csr-happy] .happy-logo {
  display: inline-block;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .happy-logo {
    width: 100px;
  }
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-logo {
    margin-bottom: 22px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-logo {
    margin-bottom: 233px;
  }
}
[data-page=csr-happy] .index-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  text-align: center;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .index-content {
    top: 41%;
  }
}
@media (max-width: 991px) {
  [data-page=csr-happy] .index-content {
    top: 33%;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .index-content {
    top: 32%;
  }
}
[data-page=csr-happy].csr .slogan-block {
  max-width: 100%;
  flex-basis: 100%;
  width: auto;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .slogan {
    font-size: 1.25em;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .slogan {
    font-size: 0.875em;
    margin: 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .slogan-block-line {
    display: none;
  }
}
[data-page=csr-happy] .mission-top-section {
  margin-bottom: 60px;
  padding-left: 114px;
}
[data-page=csr-happy] .copy-text {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 0;
  color: #ACA095;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .copy-text {
    bottom: -43px;
  }
}
[data-page=csr-happy] .main-box {
  border-left: none;
  padding-left: 0;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .main-box {
    margin-bottom: 50px;
  }
}
[data-page=csr-happy] .happy-main-text {
  width: 81.9%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-main-text {
    width: 100%;
  }
}
[data-page=csr-happy] .happy-top-section {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-top-section {
    margin-bottom: 30px;
  }
}
[data-page=csr-happy] .happy-des-img {
  margin-bottom: 60px;
}
[data-page=csr-happy] .happy-des-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  max-width: 82.6%;
  flex-basis: 82.6%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-des-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-des-wrapper {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=csr-happy] .happy-des-section {
  padding-bottom: 80px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-des-section {
    margin-bottom: 150px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-des-section {
    margin-bottom: 100px;
    padding-bottom: 50px;
  }
}
[data-page=csr-happy] .happy-des-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 35%;
  width: 100%;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-des-section::after {
    top: 10%;
    padding-bottom: 40px;
  }
}
[data-page=csr-happy] .happy-title-block {
  max-width: 257px;
  flex-basis: 257px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-title-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=csr-happy] .happy-des-block {
  max-width: calc(100% - 257px);
  flex-basis: calc(100% - 257px);
  padding-left: 4.53125vw;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-des-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
[data-page=csr-happy] .happy-des-block p {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
[data-page=csr-happy] .happy-des-block p:nth-last-of-type(1) {
  margin-bottom: 0;
}
[data-page=csr-happy] .happy-title {
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  line-height: 36px;
  color: #26201A;
  font-size: 1.875em;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .happy-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-title {
    font-size: 1.75em;
  }
}
[data-page=csr-happy] .happy-small-title {
  font-weight: 700;
  font-size: 1.75em;
  line-height: 1.8;
  color: #26201A;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-small-title {
    font-size: 1.25em;
  }
}
[data-page=csr-happy] .project-swiper .swiper-slide {
  transition: margin-top 0.8s ease;
  margin-top: 200px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .project-swiper .swiper-slide {
    margin-top: 0;
  }
}
[data-page=csr-happy] .project-swiper .swiper-slide.swiper-slide-active {
  margin-top: 0px;
}
[data-page=csr-happy] .swiper-pagination--person {
  bottom: 0;
  text-align: right;
  margin-top: 30px;
  font-family: "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 1em;
  color: #58524C;
  line-height: 1.17;
  padding-right: 15.1041666667vw;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .swiper-pagination--person {
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .swiper-pagination--person {
    padding-right: 15px;
  }
}
[data-page=csr-happy] .swiper-pagination--person .current {
  padding-right: 30px;
  position: relative;
}
[data-page=csr-happy] .swiper-pagination--person .current::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  width: 1px;
  background-color: #58524C;
}
[data-page=csr-happy] .project-section {
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .project-section {
    margin-bottom: 60px;
  }
}
[data-page=csr-happy] .project-section .csr-news-btn-wrapper {
  justify-content: center;
  margin-top: 60px;
  position: relative;
  z-index: 100;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .project-section .csr-news-btn-wrapper {
    margin-top: 30px;
  }
}
[data-page=csr-happy] .section-banner-title {
  top: -35px;
  bottom: unset;
  line-height: 1;
}
@media (max-width: 991px) {
  [data-page=csr-happy] .section-banner-title {
    top: -125px;
    left: 60px;
    right: unset;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .section-banner-title {
    left: 20px;
    top: -95px;
  }
}
[data-page=csr-happy] .article-card img {
  margin-bottom: 30px;
  width: 100%;
}
[data-page=csr-happy] .article-title {
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.03em;
  color: #26201A;
  margin-bottom: 20px;
}
[data-page=csr-happy] .person-article-text {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.03em;
}
[data-page=csr-happy] .happy-person-section {
  padding: 80px 0 30px 0;
  position: relative;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-person-section {
    padding: 40px 15px;
  }
}
[data-page=csr-happy] .happy-bg {
  width: 41.6%;
  padding-top: 10.4%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 47px;
  transform: translate(-50%, 50%);
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .happy-bg {
    width: 60%;
    padding-top: 15%;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-bg {
    width: 80%;
    padding-top: 20%;
    left: 40%;
  }
}
[data-page=csr-happy] .happy-person-swiper {
  transform: translateY(-150px);
  margin-bottom: -150px;
}
[data-page=csr-happy] .happy-person-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
[data-page=csr-happy] .happy-person-img {
  width: 300px;
  height: 300px;
  background-position: center center;
  background-size: cover;
  border-radius: 100%;
  transform: translateY(50%);
  margin: 0 auto;
}
@media (max-width: 575px) {
  [data-page=csr-happy] .happy-person-img {
    width: 200px;
    height: 200px;
    transform: translateY(73%);
  }
}
[data-page=csr-happy] .happy-person-content {
  padding: 165px 30px 40px 30px;
  background-color: #fff;
}
[data-page=csr-happy] .happy-person-title {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #58524C;
  text-align: center;
  margin-bottom: 0;
}
[data-page=csr-happy] .happy-person-name {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 30px;
}
[data-page=csr-happy] .happy-des {
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.125em;
  letter-spacing: 0.03em;
}
[data-page=csr-happy] .csr-news-section {
  padding-top: 220px;
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  [data-page=csr-happy] .csr-news-section {
    padding: 120px 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-happy] .csr-news-section {
    padding: 40px 0;
  }
}

@media (max-width: 1199px) {
  [data-page=csr-activity] .sticky-block {
    top: 105px;
  }
}
@media (max-width: 991px) {
  [data-page=csr-activity] .sticky-block {
    position: relative;
    top: 0;
  }
}
[data-page=csr-activity] .main-box {
  margin-top: 158px;
  margin-bottom: 60px;
  border-left: none;
  padding-left: 0;
}
@media (max-width: 1199px) {
  [data-page=csr-activity] .main-box {
    margin-top: 110px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-activity] .main-box {
    margin-top: 88px;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-activity] .title-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
[data-page=csr-activity] .banner-bg-img {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  [data-page=csr-activity] .banner-bg-img {
    margin-bottom: 30px;
  }
}
[data-page=csr-activity] .activity-section {
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  [data-page=csr-activity] .activity-section {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-activity] .activity-section {
    padding-bottom: 40px;
  }
}
[data-page=csr-activity] .activity-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 991px) {
  [data-page=csr-activity] .activity-wrapper {
    flex-wrap: wrap;
  }
}
[data-page=csr-activity] .activity-title-block {
  max-width: 427px;
  flex-basis: 427px;
}
@media (max-width: 991px) {
  [data-page=csr-activity] .activity-title-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-activity] .activity-title-block {
    margin-bottom: 0;
  }
}
[data-page=csr-activity] .activity-des-wrapper {
  max-width: calc(100% - 427px);
  flex-basis: calc(100% - 427px);
  padding-left: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1439px) {
  [data-page=csr-activity] .activity-des-wrapper {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  [data-page=csr-activity] .activity-des-wrapper {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-activity] .activity-des-wrapper {
    margin-bottom: 20px;
  }
}
[data-page=csr-activity] .des-block {
  margin-bottom: 40px;
}
[data-page=csr-activity] .des-block:nth-last-of-type(1) {
  margin-bottom: 60px;
}
[data-page=csr-activity] .activity-title {
  font-weight: 700;
  color: #26201A;
  font-size: 1.75em;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  [data-page=csr-activity] .activity-title {
    font-size: 1.375em;
    margin-bottom: 10px;
  }
}
[data-page=csr-activity] .des-title {
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  color: #26201A;
  line-height: 1.8;
  margin-bottom: 20px;
}
[data-page=csr-activity] .des-text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
[data-page=csr-activity] .activity-bg-img {
  width: 100%;
  padding-top: 59.8890942699%;
  background-size: cover;
  background-position: center center;
  position: relative;
}
[data-page=csr-activity] .activity-bg-img:hover::after {
  opacity: 0;
}
[data-page=csr-activity] .activity-bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.5);
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  [data-page=csr-activity] .activity-bg-img::after {
    opacity: 0;
  }
}
[data-page=csr-activity] .activity-swiper {
  margin-right: -15.1041666667vw;
}
[data-page=csr-activity] .activity-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
@media (max-width: 1199px) {
  [data-page=csr-activity] .activity-swiper {
    margin-right: -6.25vw;
  }
}
@media (max-width: 575px) {
  [data-page=csr-activity] .activity-swiper {
    margin-right: -15px;
  }
}
[data-page=csr-activity] .csr-news-section {
  padding: 80px 0 150px 0;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=csr-activity] .csr-news-section {
    padding: 40px 0 40px 0;
  }
}

[data-page=csr-environment] .main-header {
  padding-top: 36.4583333333%;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .main-header {
    padding-top: 68.359375%;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .main-header {
    padding-top: 133.3333333333%;
  }
}
[data-page=csr-environment] .main-header::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
[data-page=csr-environment] .index-content {
  bottom: 50%;
  transform: translate(-50%, 50%);
  z-index: 4;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .index-content {
    bottom: calc(50% - 55px);
    width: 100%;
  }
}
@media (max-width: 991px) {
  [data-page=csr-environment] .index-content {
    width: 80%;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .index-content {
    width: 90%;
    left: 50%;
    bottom: calc(50% - 85px);
  }
}
@media (max-width: 1199px) {
  [data-page=csr-environment].csr .slogan-block {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
  }
}
[data-page=csr-environment] .brumb-list {
  position: absolute;
  z-index: 4;
  top: 160px;
  left: 15.10417vw;
}
@media (max-width: 1679px) {
  [data-page=csr-environment] .brumb-list {
    top: 120px;
  }
}
@media (max-width: 1439px) {
  [data-page=csr-environment] .brumb-list {
    top: 100px;
    left: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .brumb-list {
    left: 6.25vw;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .brumb-list {
    padding-left: 15px;
  }
}
[data-page=csr-environment] .brumb-list li::after {
  background: #fff;
}
[data-page=csr-environment] .brumb-list li span {
  color: #fff;
}
[data-page=csr-environment] .csr-news-section {
  padding: 120px 0 150px 0;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .csr-news-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .csr-news-section {
    padding: 40px 0;
  }
}
[data-page=csr-environment] .csr-top-section {
  position: relative;
  z-index: 5;
  margin-bottom: 160px;
  padding-top: 120px;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .csr-top-section {
    margin-bottom: 80px;
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .csr-top-section {
    margin-bottom: 40px;
    padding-top: 40px;
  }
}
[data-page=csr-environment] .csr-data-section {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .csr-data-section {
    margin-bottom: 80px;
    overflow-x: hidden;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .csr-data-section {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
[data-page=csr-environment] .csr-data-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 34.3%;
  background-color: #F5F5F5;
}
[data-page=csr-environment] .csr-data-section .data-count-wrapper {
  margin-top: 60px;
  margin-bottom: 0;
}
[data-page=csr-environment] .data-bg-container {
  position: relative;
}
[data-page=csr-environment] .data-bg-block {
  width: 100%;
  margin: 0 auto;
  min-height: 700px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding: 80px 0;
  overflow: hidden;
}
[data-page=csr-environment] .data-bg-block:hover .data-img {
  transform: scale(1.2);
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .data-bg-block {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .data-bg-block {
    padding: 50px 0;
    justify-content: flex-start;
  }
}
[data-page=csr-environment] .data-img {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  transform: translateX(0%);
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  transition: all 0.4s ease;
}
[data-page=csr-environment] .data-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
[data-page=csr-environment] .data-content {
  width: 69.5%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 1679px) {
  [data-page=csr-environment] .data-content {
    width: 80%;
  }
}
@media (max-width: 1439px) {
  [data-page=csr-environment] .data-content {
    width: 85%;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .data-content {
    flex-wrap: wrap;
  }
}
[data-page=csr-environment] .data-title-block {
  max-width: 235px;
  flex-basis: 235px;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .data-title-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=csr-environment] .data-en-title {
  font-size: 1.875em;
  line-height: 36px;
  margin-bottom: 10px;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .data-en-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  [data-page=csr-environment] .data-en-title {
    font-size: 1.5em;
  }
}
[data-page=csr-environment] .data-cn-title {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=csr-environment] .data-cn-title {
    font-size: 1.25em;
  }
}
[data-page=csr-environment] .des-block {
  max-width: calc(100% - 235px);
  flex-basis: calc(100% - 235px);
  padding-left: 112px;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
}
@media (max-width: 1199px) {
  [data-page=csr-environment] .des-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

[data-page=csr-download] {
  position: relative;
}
[data-page=csr-download] .body-bg-left {
  width: 39.79%;
  padding-top: 39.79%;
  position: absolute;
  z-index: -1;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
  top: -163px;
  left: 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-download] .body-bg-left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-download] .body-bg-left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-download] .body-bg-left {
    display: none;
  }
}
[data-page=csr-download] .body-bg-right {
  width: 26%;
  padding-top: 26%;
  position: absolute;
  z-index: -1;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
  top: -60px;
  right: 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=csr-download] .body-bg-right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=csr-download] .body-bg-right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (max-width: 1199px) {
  [data-page=csr-download] .body-bg-right {
    display: none;
  }
}
[data-page=csr-download] .main-box {
  margin-top: 165px;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  [data-page=csr-download] .main-box {
    margin-top: 85px;
    margin-bottom: 40px;
  }
}
[data-page=csr-download] .main-title {
  font-weight: 700;
}
[data-page=csr-download] .download-title {
  font-family: "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 5em;
  line-height: 94px;
  color: #58524C;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=csr-download] .download-title {
    font-size: 3.125em;
  }
}
[data-page=csr-download] .download-small-title {
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.03em;
  color: #58524C;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  [data-page=csr-download] .download-small-title {
    font-size: 1.25em;
  }
}
[data-page=csr-download] .download-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -15px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(172, 160, 149, 0.8);
}
@media (max-width: 575px) {
  [data-page=csr-download] .download-wrapper {
    margin-bottom: 35px;
    padding-bottom: 10px;
  }
}
[data-page=csr-download] .download-wrapper .item {
  padding: 0 15px;
  max-width: 25%;
  flex-basis: 25%;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  [data-page=csr-download] .download-wrapper .item {
    max-width: 50%;
    flex-basis: 50%;
    margin-bottom: 25px;
  }
}
[data-page=csr-download] .download-link:hover .download-img {
  opacity: 0.7;
}
[data-page=csr-download] .download-img {
  width: 100%;
  padding-top: 140.8945686901%;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
[data-page=csr-download] .download-link-title {
  font-size: 1.125em;
  line-height: 1.8;
  color: #26201A;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
[data-page=csr-download] .icon-download {
  display: inline-block;
  background-image: url(../images/icon/icon-download.svg);
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  font-size: 24px;
}
[data-page=csr-download] .activity-des {
  font-size: 1.5em;
  color: #58524C;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  [data-page=csr-download] .activity-des {
    font-size: 1.125em;
  }
}
[data-page=csr-download] .download-list {
  padding-left: 0;
  margin-bottom: 150px;
  list-style: none;
}
[data-page=csr-download] .download-list a {
  color: #26201A;
}
[data-page=csr-download] .download-list li {
  padding-top: 20px;
}
@media (max-width: 575px) {
  [data-page=csr-download] .download-list {
    margin-bottom: 50px;
  }
}
[data-page=csr-download] .download-list-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
[data-page=csr-download] .download-list-link:hover {
  opacity: 0.7;
}
[data-page=csr-download] .icon-plus, [data-page=csr-download] .icon-remove {
  font-size: 1.5em;
  margin-right: 20px;
}
[data-page=csr-download] .download-list-title {
  display: inline-block;
  font-size: 1.25em;
  line-height: 1.8;
  margin-bottom: 0;
}
[data-page=csr-download] .dowload-drop-block {
  margin-left: 45px;
  display: none;
}
[data-page=csr-download] .download-drop-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  padding: 20px 15px;
  border-bottom: 1px solid #ABABAB;
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
}
[data-page=csr-download] .download-drop-link .icon-download {
  transition: all 0.3s ease;
}
[data-page=csr-download] .download-drop-link:hover {
  background-color: #F5F5F5;
  color: #C6893F;
  font-weight: 700;
}
[data-page=csr-download] .download-drop-link:hover .icon-download {
  color: #ABABAB;
  opacity: 1;
}

[data-page=about-mission].about .history-swiper-block .swiper-scrollbar {
  background-color: #F5F5F5;
}
[data-page=about-mission] .mission-top-section {
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  [data-page=about-mission] .mission-top-section {
    margin-bottom: 40px;
  }
}
[data-page=about-mission] .car-swiper-section {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  [data-page=about-mission] .car-swiper-section {
    margin-bottom: 60px;
  }
}
[data-page=about-mission] .slogan-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 120px;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  [data-page=about-mission] .slogan-section {
    margin-bottom: 60px;
  }
}
[data-page=about-mission] .slogan-section .slogan-content {
  max-width: 46.4%;
  flex-basis: 46.4%;
}
@media (max-width: 1439px) {
  [data-page=about-mission] .slogan-section .slogan-content {
    max-width: 80%;
    flex-basis: 80%;
  }
}
[data-page=about-mission] .slogan {
  white-space: unset;
  padding: 0 8.48vw;
}
[data-page=about-mission] .mission-bottom-section {
  padding-top: 120px;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=about-mission] .mission-bottom-section {
    padding-top: 40px;
  }
}
[data-page=about-mission] .mission-bottom-section .slogan-content {
  max-width: 56%;
  flex-basis: 56%;
}
@media (max-width: 991px) {
  [data-page=about-mission] .mission-bottom-section .slogan-content {
    max-width: 80%;
    flex-basis: 80%;
  }
}
[data-page=about-mission] .slogan-block-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  [data-page=about-mission] .slogan-block-container {
    margin-bottom: 30px;
  }
}
[data-page=about-mission] .banner-title-block {
  text-align: right;
  padding-right: 30px;
  margin: 80px 0;
}
@media (max-width: 991px) {
  [data-page=about-mission] .banner-title-block {
    margin: 60px 0;
  }
}
@media (max-width: 575px) {
  [data-page=about-mission] .banner-title-block {
    margin: 40px 0;
  }
}
[data-page=about-mission] .section-banner-title {
  position: relative;
  right: unset;
  display: inline-block;
}
@media (max-width: 575px) {
  [data-page=about-mission] .section-banner-title {
    font-size: 2.8125em;
  }
}
[data-page=about-mission] .banner-bg-img::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #F5F5F5 100%);
}

[data-page=about-history] .body-container {
  margin-bottom: 120px;
}
[data-page=about-history] img {
  max-width: 100%;
}
[data-page=about-history] .history-article-section {
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  [data-page=about-history] .history-article-section {
    margin-bottom: 60px;
  }
}
[data-page=about-history] .history-article-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 1199px) {
  [data-page=about-history] .history-article-wrapper {
    flex-wrap: wrap;
  }
}
[data-page=about-history] .article-block {
  max-width: 40.18%;
  flex-basis: 40.18%;
}
@media (max-width: 1199px) {
  [data-page=about-history] .article-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
[data-page=about-history] .article-img-block {
  max-width: 59.82%;
  flex-basis: 59.82%;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  [data-page=about-history] .article-img-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
[data-page=about-history] .article-img {
  width: 100%;
  padding-top: 63.4920634921%;
  background-size: cover;
  background-position: center center;
}
[data-page=about-history] .slogan-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  [data-page=about-history] .slogan-section {
    margin-bottom: 60px;
  }
}
[data-page=about-history] .slogan-block {
  margin-bottom: 40px;
}
[data-page=about-history] .slogan-content {
  max-width: 46%;
  flex-basis: 46%;
  position: relative;
  z-index: 2;
  transform: translateY(20%);
}
@media (max-width: 1199px) {
  [data-page=about-history] .slogan-content {
    max-width: 65%;
    flex-basis: 65%;
  }
}
@media (max-width: 575px) {
  [data-page=about-history] .slogan-content {
    max-width: 100%;
    flex-basis: 100%;
    padding: 0 15px;
  }
}
[data-page=about-history] .slogan-text {
  font-weight: 400;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 0;
}
[data-page=about-history] .banner-bg-img {
  position: relative;
  z-index: 1;
  background-position: center center;
}
@media (max-width: 1199px) {
  [data-page=about-history] .banner-bg-img {
    transform: translateY(0%);
  }
}
[data-page=about-history] .person-article-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -45px;
}
@media (max-width: 1199px) {
  [data-page=about-history] .person-article-wrapper {
    margin: 0 -25px;
  }
}
@media (max-width: 991px) {
  [data-page=about-history] .person-article-wrapper {
    margin: 0;
    flex-wrap: wrap;
  }
}
[data-page=about-history] .person-article-wrapper .item {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 45px;
}
@media (max-width: 1199px) {
  [data-page=about-history] .person-article-wrapper .item {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  [data-page=about-history] .person-article-wrapper .item {
    padding: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 991px) {
  [data-page=about-history] .person-article-wrapper .item:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
[data-page=about-history] .person-article-wrapper .item:nth-of-type(2) {
  padding-top: 200px;
}
@media (max-width: 991px) {
  [data-page=about-history] .person-article-wrapper .item:nth-of-type(2) {
    padding-top: 0;
  }
}
[data-page=about-history] .article-card img {
  margin-bottom: 10px;
}
[data-page=about-history] .img-text {
  font-weight: 400;
  font-size: 0.9375em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #58524C;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  [data-page=about-history] .img-text {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  [data-page=about-history] .img-text {
    font-size: 0.875em;
  }
}
[data-page=about-history] .article-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #58524C;
  margin-bottom: 20px;
  font-size: 1.25em;
}
@media (max-width: 575px) {
  [data-page=about-history] .article-title {
    margin-bottom: 10px;
  }
}
[data-page=about-history] .person-article-text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.79;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
[data-page=about-history] .car-swiper-section {
  padding: 100px 0;
  background-color: #F5F5F5;
}
@media (max-width: 575px) {
  [data-page=about-history] .car-swiper-section {
    padding: 40px 0;
  }
}

[data-page=about-person] .main-nav-block {
  padding-left: 60px;
  padding-right: 0;
  max-width: 180px;
  flex-basis: 180px;
}
@media (max-width: 1199px) {
  [data-page=about-person] .main-nav-block {
    z-index: 2;
    max-width: 380px;
    flex-basis: 380px;
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  [data-page=about-person] .main-nav-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .main-nav-block {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
  }
}
[data-page=about-person] .main-nav {
  left: 60px;
  right: 60px;
}
@media (max-width: 991px) {
  [data-page=about-person] .main-nav {
    right: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .main-nav {
    left: 15px;
    right: 15px;
  }
}
[data-page=about-person] .about-block {
  max-width: calc(100% - 180px);
  flex-basis: calc(100% - 180px);
  overflow-x: hidden;
  padding-left: 7.8125vw;
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-block {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 2.6041666667vw;
    padding-right: 2.6041666667vw;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
[data-page=about-person] .about-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
}
@media (max-width: 991px) {
  [data-page=about-person] .about-wrapper {
    justify-content: center;
  }
}
[data-page=about-person] .section-banner-title {
  bottom: unset;
  top: 0;
  right: 30px;
  font-size: 6.25vwem;
  transform: translateY(0);
}
@media (max-width: 1439px) {
  [data-page=about-person] .section-banner-title {
    right: 0;
  }
}
@media (max-width: 991px) {
  [data-page=about-person] .section-banner-title {
    display: none;
  }
}
[data-page=about-person] .section-banner-title.mobile {
  display: none;
  right: 7%;
  top: 10%;
  font-size: 3.125em;
}
@media (max-width: 991px) {
  [data-page=about-person] .section-banner-title.mobile {
    display: block;
    top: 35%;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .section-banner-title.mobile {
    font-size: 3.125em;
    position: relative;
    text-align: right;
    margin-bottom: 20px;
    top: 10%;
  }
}
[data-page=about-person] .img-block {
  max-width: 29%;
  flex-basis: 29%;
}
@media (max-width: 1199px) {
  [data-page=about-person] .img-block {
    max-width: 60%;
    flex-basis: 60%;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .img-block {
    max-width: 80%;
    flex-basis: 80%;
  }
}
[data-page=about-person] .img-block img {
  max-width: 100%;
}
[data-page=about-person] .person-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 100%;
}
[data-page=about-person] .person-content {
  max-width: 71%;
  flex-bais: 71%;
  padding-left: 70px;
  padding-right: 15.1041666667vw;
  position: relative;
}
@media (max-width: 1439px) {
  [data-page=about-person] .person-content {
    padding-right: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  [data-page=about-person] .person-content {
    max-width: 100%;
    flex-bais: 100%;
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .person-content {
    padding-right: 0;
    padding-left: 0;
  }
}
[data-page=about-person] .person-title {
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  color: #58524C;
  line-height: 1.8;
}
@media (max-width: 575px) {
  [data-page=about-person] .person-title {
    font-size: 1.25em;
  }
}
[data-page=about-person] .person-name {
  font-weight: 700;
  font-size: 2.125em;
  line-height: 1.8;
  color: #26201A;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  [data-page=about-person] .person-name {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .person-name {
    font-size: 1.5em;
    margin-bottom: 5px;
  }
}
[data-page=about-person] .text-badge {
  font-weight: 700;
  font-size: 1.25em;
  color: #58524C;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 575px) {
  [data-page=about-person] .text-badge {
    font-size: 1em;
    margin-bottom: 10px;
  }
}
[data-page=about-person] .person-text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
[data-page=about-person] .section-banner {
  margin-bottom: 120px;
  margin-left: -2.6041666667vw;
  margin-right: -2.6041666667vw;
}
@media (max-width: 1199px) {
  [data-page=about-person] .section-banner {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .section-banner {
    margin-left: -15px;
    margin-rgiht: -15px;
  }
}
[data-page=about-person] .banner-bg-img {
  padding-top: 31.4465408805%;
}
[data-page=about-person] .banner-bg-img::after {
  top: -5px;
  left: -10px;
}
@media (max-width: 991px) {
  [data-page=about-person] .banner-bg-img {
    padding-top: 50%;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .banner-bg-img {
    padding-top: 106.6666666667%;
  }
}
[data-page=about-person] .banner-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 55.5%;
}
@media (max-width: 1199px) {
  [data-page=about-person] .banner-content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 991px) {
  [data-page=about-person] .banner-content {
    width: 80%;
  }
}
[data-page=about-person] .banner-title {
  font-size: 1.75em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #26201A;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  [data-page=about-person] .banner-title {
    font-size: 1.875em;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .banner-title {
    font-size: 1.25em;
  }
}
[data-page=about-person] .banner-text {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.78;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  [data-page=about-person] .banner-text {
    font-size: 1em;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .banner-text {
    font-size: 0.875em;
  }
}
[data-page=about-person] .about-group-section {
  margin-bottom: 120px;
  padding-right: 15.1041666667vw;
}
@media (max-width: 1439px) {
  [data-page=about-person] .about-group-section {
    padding-right: 7.8125vw;
  }
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-group-section {
    padding-right: 0;
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-group-section {
    margin-bottom: 30px;
  }
}
[data-page=about-person] .about-group-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -3.75vw;
  margin-right: -3.75vw;
}
@media (max-width: 1439px) {
  [data-page=about-person] .about-group-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-group-wrapper {
    margin-right: 0vw;
    margin-right: 0vw;
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-group-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
[data-page=about-person] .about-group-wrapper .item {
  max-width: 50%;
  flex-basis: 50%;
  padding-left: 3.75vw;
  padding-right: 3.75vw;
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-group-wrapper .item {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-group-wrapper .item {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  [data-page=about-person] .about-group-wrapper .item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
[data-page=about-person] .about-group-wrapper .item:nth-of-type(even) {
  padding-top: 80px;
}
@media (max-width: 575px) {
  [data-page=about-person] .about-group-wrapper .item:nth-of-type(even) {
    padding-top: 0;
  }
}
[data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+1), [data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+2) {
  transform: translateX(114px);
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+1), [data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+2) {
    transform: translateX(20px);
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+1), [data-page=about-person] .about-group-wrapper .item:nth-of-type(4n+2) {
    transform: translateX(0px);
  }
}
[data-page=about-person] .about-group-img {
  width: 100%;
  padding-top: 66.7282809612%;
  margin-bottom: 10px;
  background-position: center center;
  background-size: cover;
}
[data-page=about-person] .description-text {
  font-weight: 500;
  font-size: 0.9375em;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 0;
}
[data-page=about-person] .about-title {
  color: #26201A;
  font-size: 3.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "AcuminVariableConcept", "Roboto Condensed", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-title {
    font-size: 3.125em;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-title {
    font-size: 2.1875em;
    margin-bottom: 15px;
  }
}
[data-page=about-person] .about-title .year {
  font-size: 34px;
  font-family: "Noto Sans TC", "Roboto", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding-left: 10px;
}
@media (max-width: 1199px) {
  [data-page=about-person] .about-title .year {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .about-title .year {
    font-size: 22px;
  }
}
[data-page=about-person] .about-text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
[data-page=about-person] .slogan-section {
  padding: 80px 0 90px 0;
  background-color: #F5F5F5;
  margin-left: calc(-180px - 7.8125vw);
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 1199px) {
  [data-page=about-person] .slogan-section {
    margin-left: -2.6041666667vw;
    margin-right: -2.6041666667vw;
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .slogan-section {
    margin-left: -15px;
    margin-right: -15px;
  }
}
[data-page=about-person] .slogan-block {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  [data-page=about-person] .slogan-block {
    margin-bottom: 30px;
  }
}
[data-page=about-person] .slogan-content {
  max-width: 46.09%;
  flex-basis: 46.09%;
}
@media (max-width: 1199px) {
  [data-page=about-person] .slogan-content {
    max-width: 70%;
    flex-basis: 70%;
  }
}
[data-page=about-person] .slogan-text {
  font-size: 1.25em;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  [data-page=about-person] .slogan-text {
    font-size: 1.125em;
  }
}
[data-page=about-person] .slogan {
  margin: 30px 0;
}
[data-page=about-person] .article-section {
  padding-top: 120px;
  padding-right: 15.1041666667vw;
  padding-bottom: 150px;
}
@media (max-width: 1439px) {
  [data-page=about-person] .article-section {
    padding-right: 5.2083333333vw;
  }
}
@media (max-width: 1199px) {
  [data-page=about-person] .article-section {
    padding-right: 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  [data-page=about-person] .article-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
[data-page=about-person] .nas-bg-img {
  width: 100%;
  padding-top: 59.7402597403%;
  background-size: cover;
  background-position: center center;
}

[data-page=about-talk] .main-box {
  margin-bottom: 85px;
}
[data-page=about-talk] .person-talk-section {
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 575px) {
  [data-page=about-talk] .person-talk-section {
    padding-bottom: 60px;
  }
}
[data-page=about-talk] .person-title {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
  color: #58524C;
}
@media (max-width: 991px) {
  [data-page=about-talk] .person-title {
    font-size: 1.875em;
    text-align: center;
  }
}
@media (max-width: 575px) {
  [data-page=about-talk] .person-title {
    font-size: 1.125em;
    text-align: left;
    order: 2;
  }
}
[data-page=about-talk] .person-name {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  [data-page=about-talk] .person-name {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  [data-page=about-talk] .person-name {
    font-size: 2.125em;
    text-align: center;
  }
}
@media (max-width: 575px) {
  [data-page=about-talk] .person-name {
    text-align: left;
    font-size: 1.5em;
    order: 3;
  }
}
[data-page=about-talk] .person-talk-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 991px) {
  [data-page=about-talk] .person-talk-wrapper {
    flex-wrap: wrap;
  }
}
[data-page=about-talk] .person-text-block {
  width: 48.8%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding-top: 4.1666666667vw;
}
@media (max-width: 991px) {
  [data-page=about-talk] .person-text-block {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
    position: relative;
    order: 2;
  }
}
@media (max-width: 575px) {
  [data-page=about-talk] .person-text-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}
[data-page=about-talk] .person-img-block {
  max-width: 57.3%;
  flex-basis: 57.3%;
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  [data-page=about-talk] .person-img-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=about-talk] .person-img {
  width: 100%;
  padding-top: 59.9479843953%;
  background-size: cover;
  background-position: center center;
}
[data-page=about-talk] .section-banner-title {
  z-index: 1;
  transform: translateY(25%);
  right: 37px;
}
@media (max-width: 575px) {
  [data-page=about-talk] .section-banner-title {
    bottom: 10px;
  }
}
[data-page=about-talk] .section-text-block {
  margin-bottom: 120px;
}
@media (max-width: 575px) {
  [data-page=about-talk] .section-text-block {
    margin-bottom: 30px;
  }
}
[data-page=about-talk] .section-text {
  margin-bottom: 120px;
}
[data-page=about-talk] .section-text p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  [data-page=about-talk] .section-text {
    margin-bottom: 30px;
  }
}
[data-page=about-talk] .ceo-sign-block {
  text-align: right;
}
[data-page=about-talk] .ceo-sign-block img {
  max-width: 100%;
}
@media (max-width: 575px) {
  [data-page=about-talk] .ceo-sign-block {
    text-align: right;
    width: 100%;
  }
}
[data-page=about-talk] .sign-content {
  display: inline-block;
}
[data-page=about-talk] .sign-title {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.8;
  color: #58524C;
  font-size: 1.25em;
  letter-spacing: 0.05em;
}

[data-page=group-area] .section-top {
  margin-bottom: 80px;
}
[data-page=group-area] .section-text {
  margin-bottom: 0;
}
[data-page=group-area] .group-area-section {
  padding-bottom: 150px;
}

[data-page=wisdom] .section-top {
  padding-bottom: 200px;
}
@media (max-width: 1199px) {
  [data-page=wisdom] .section-top {
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  [data-page=wisdom] .section-top {
    padding-bottom: 120px;
  }
}
[data-page=wisdom] .section-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}
[data-page=wisdom] .section-content {
  max-width: 66%;
  flex-basis: 66%;
}
@media (max-width: 991px) {
  [data-page=wisdom] .section-content {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=wisdom] .section-top-title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  [data-page=wisdom] .section-top-title {
    margin-bottom: 15px;
    text-align: left;
  }
}
[data-page=wisdom] .section-banner-title {
  right: 0;
}
@media (max-width: 1199px) {
  [data-page=wisdom] .section-banner-title {
    transform: translate(10%, 0%);
  }
}
@media (max-width: 575px) {
  [data-page=wisdom] .section-banner-title {
    transform: translate(40%, -60%);
  }
}
[data-page=wisdom] .wisdom-brand-section {
  padding: 100px 0;
  background-color: #F5F5F5;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-brand-section {
    padding: 25px 0;
  }
}
[data-page=wisdom] .wisdom-card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px -30px -15px;
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-card-wrapper {
    margin: 0 -15px -15px -15px;
  }
}
[data-page=wisdom] .wisdom-card-wrapper .item {
  padding: 0 15px;
  max-width: 33.333%;
  flex-basis: 33.333%;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  [data-page=wisdom] .wisdom-card-wrapper .item {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-card-wrapper .item {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 15px;
    padding: 0 30px;
  }
}
[data-page=wisdom] .wisdom-link {
  display: block;
  position: relative;
  height: 100%;
}
@media (min-width: 1200px) {
  [data-page=wisdom] .wisdom-link:hover .wisdom-card {
    opacity: 0;
  }
  [data-page=wisdom] .wisdom-link:hover .hover-content {
    opacity: 1;
  }
}
[data-page=wisdom] .wisdom-link .bg-img {
  width: 83.6%;
  padding-top: 83.6%;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  background: url("../images/traffic_bg.png") center center;
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=wisdom] .wisdom-link .bg-img {
    background: url("../images/traffic_bg@2x.png") center center;
    background-size: cover;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=wisdom] .wisdom-link .bg-img {
    background: url("../images/traffic_bg@2x.png") center center;
    background-size: cover;
  }
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-link .bg-img {
    width: 70%;
    padding-top: 70%;
  }
}
[data-page=wisdom] .wisdom-link .card-badge {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  color: #ABABAB;
  margin-bottom: 5px;
}
[data-page=wisdom] .wisdom-link .wisdom-title {
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 2.125em;
  line-height: 1.8;
  margin-bottom: 5px;
  color: #26201A;
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-link .wisdom-title {
    font-size: 1.5em;
  }
}
[data-page=wisdom] .wisdom-link .en-title {
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 0.03em;
  color: #58524C;
  margin-bottom: 85px;
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-link .en-title {
    font-size: 1.25em;
    margin-bottom: 30px;
  }
}
[data-page=wisdom] .wisdom-link .wisdom-footer {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #ABABAB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
}
@media (max-width: 575px) {
  [data-page=wisdom] .wisdom-link .wisdom-footer {
    padding-top: 20px;
  }
}
[data-page=wisdom] .wisdom-link .more {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.05em;
  color: #26201A;
  line-height: 1.79;
}
[data-page=wisdom] .wisdom-link .icon-arrow-right {
  display: block;
  color: #26201A;
}
[data-page=wisdom] .hover-content {
  background-color: rgba(38, 32, 26, 0.5);
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
[data-page=wisdom] .hover-content .wisdom-title {
  color: #fff;
}
[data-page=wisdom] .hover-content .en-title {
  color: #fff;
  margin-bottom: 20px;
}
[data-page=wisdom] .hover-content .description {
  color: #fff;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.79;
  letter-spacing: 0.05em;
  margin-bottom: 33px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
[data-page=wisdom] .hover-content .wisdom-footer {
  padding: 30px;
  background-color: #D6001C;
  position: absolute;
  left: 0;
  bottom: 0;
}
[data-page=wisdom] .hover-content .more {
  color: #fff;
}
[data-page=wisdom] .hover-content .icon-arrow-right {
  color: #fff;
}
[data-page=wisdom] .hover-body {
  padding: 30px 30px 0 30px;
}
[data-page=wisdom] .wisdom-card {
  background-color: #fff;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
[data-page=wisdom] .banner-section {
  padding-top: 150px;
}
@media (max-width: 991px) {
  [data-page=wisdom] .banner-section {
    padding-top: 75px;
  }
}
@media (max-width: 575px) {
  [data-page=wisdom] .banner-section {
    padding-top: 40px;
  }
}

[data-page=news-content] .news-header {
  margin-bottom: 20px;
}
[data-page=news-content] .news-badge {
  margin-right: 20px;
}
[data-page=news-content] .body-container {
  padding-bottom: 0;
}
[data-page=news-content] .content-header {
  margin-top: 93px;
}
@media (max-width: 991px) {
  [data-page=news-content] .content-header {
    margin-top: 73px;
  }
}
@media (max-width: 575px) {
  [data-page=news-content] .content-header {
    margin-top: 59px;
  }
}

[data-page=contact-us] .contact-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 991px) {
  [data-page=contact-us] .contact-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
  }
}
[data-page=contact-us] .contact-img-block {
  padding-left: 40px;
  max-width: 37.31%;
  flex-basis: 37.31%;
}
@media (max-width: 991px) {
  [data-page=contact-us] .contact-img-block {
    max-width: 60%;
    flex-basis: 60%;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-img-block {
    max-width: 65%;
    flex-basis: 65%;
    margin-bottom: 15px;
  }
}
[data-page=contact-us] .contact-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 100%;
  position: relative;
}
[data-page=contact-us] .contact-img::after {
  content: "";
  position: absolute;
  left: 4.3%;
  top: 4.3%;
  right: 4.3%;
  bottom: 4.3%;
  border-radius: 100%;
  border: 2px solid #fff;
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-img::after {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
  }
}
[data-page=contact-us] .section-top-title {
  font-size: 1.75em;
  margin-bottom: 30px;
}
[data-page=contact-us] .section-top {
  padding-bottom: 93px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .section-top {
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  [data-page=contact-us] .section-top .body-container {
    padding-bottom: 70px;
  }
}
[data-page=contact-us] .contact-content {
  max-width: 62.69%;
  flex-basis: 62.69%;
  padding-left: 80px;
}
@media (max-width: 991px) {
  [data-page=contact-us] .contact-content {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}
[data-page=contact-us] .contact-content h3 {
  font-weight: 400;
  font-size: 1.5em;
  color: #26201A;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-content h3 {
    font-size: 1.125em;
    margin-bottom: 8px;
  }
}
[data-page=contact-us] .contact-content h4 {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 1.8;
  color: #58524C;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  [data-page=contact-us] .contact-content h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-content h4 {
    margin-bottom: 10px;
  }
}
[data-page=contact-us] .contact-content p {
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: 0.03em;
  color: #58524C;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-content p {
    font-size: 1em;
  }
}
[data-page=contact-us] .contact-data-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 575px) {
  [data-page=contact-us] .contact-data-section {
    padding: 30px 0;
  }
}
[data-page=contact-us] .contact-data-section.dark-bg {
  background: #F5F5F5;
}
[data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .left {
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .right {
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=contact-us] .contact-data-section.dark-bg .section-bg-wrapper .right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=contact-us] .contact-data-section.light-bg .company-card {
  box-shadow: 0px 1px 10px rgba(102, 102, 102, 0.15);
}
[data-page=contact-us] .contact-data-section .body-container {
  position: relative;
  z-index: 1;
}
[data-page=contact-us] .contact-data-section .body-container.positoin-0 {
  margin-top: -39.7%;
}
@media (max-width: 1199px) {
  [data-page=contact-us] .contact-data-section .body-container.positoin-0 {
    margin-top: 0;
  }
}
[data-page=contact-us] .section-bg-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  [data-page=contact-us] .section-bg-wrapper {
    display: none;
  }
}
[data-page=contact-us] .section-bg-wrapper.sticky-block {
  position: sticky;
  top: 80px;
}
[data-page=contact-us] .section-bg-wrapper .left {
  content: "";
  display: block;
  width: 39.7%;
  padding-top: 39.7%;
  background: url("../images/bg_left_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=contact-us] .section-bg-wrapper .left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=contact-us] .section-bg-wrapper .left {
    background: url("../images/bg_left_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=contact-us] .section-bg-wrapper .right {
  content: "";
  display: block;
  width: 26%;
  padding-top: 26%;
  background: url("../images/bg_right_b.png") no-repeat;
  background-size: contain;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page=contact-us] .section-bg-wrapper .right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page=contact-us] .section-bg-wrapper .right {
    background: url("../images/bg_right_b@2x.png") no-repeat;
    background-size: contain;
  }
}
[data-page=contact-us] .company-title {
  color: #26201A;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.75em;
  margin-bottom: 40px;
}
[data-page=contact-us] .company-title.dark-title {
  color: #C6893F;
}
@media (max-width: 575px) {
  [data-page=contact-us] .company-title {
    font-size: 1.625em;
    margin-bottom: 20px;
  }
}
[data-page=contact-us] .company-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 991px) {
  [data-page=contact-us] .company-wrapper {
    justify-content: center;
  }
}
[data-page=contact-us] .company-wrapper .item {
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  [data-page=contact-us] .company-wrapper .item {
    max-width: 70%;
    flex-basis: 70%;
  }
}
@media (max-width: 575px) {
  [data-page=contact-us] .company-wrapper .item {
    max-width: 100%;
    flex-basis: 100%;
  }
}
[data-page=contact-us] .company-link {
  color: #58524C;
}
[data-page=contact-us] .company-link .company-card {
  padding: 0;
}
[data-page=contact-us] .company-link:hover {
  color: #fff;
}
[data-page=contact-us] .company-link:hover .hover-body {
  border: none;
}
[data-page=contact-us] .company-link:hover .company-footer {
  background-color: #D6001C;
}
[data-page=contact-us] .company-link:hover .company-footer .data {
  color: #fff;
}
[data-page=contact-us] .company-card {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .company-card {
    padding: 15px 15px 20px 15px;
  }
}
[data-page=contact-us] .hover-body {
  border-bottom: 1px solid #ACA095;
  padding: 30px 0 45px 0;
  margin: 0 30px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .hover-body {
    padding: 15px 0 30px 0;
    margin: 0 15px;
  }
}
[data-page=contact-us] .card-title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.8;
  marign-bottom: 30px;
  color: #26201A;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .card-title {
    font-size: 1.25em;
    margin-bottom: 5px;
  }
}
[data-page=contact-us] .card-text-block {
  margin-bottom: 10px;
}
[data-page=contact-us] .card-text-block:nth-last-of-type(1) {
  margin-bottom: 0;
}
[data-page=contact-us] .card-text-block .label {
  margin-right: 20px;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #58524C;
  display: inline-block;
}
@media (max-width: 575px) {
  [data-page=contact-us] .card-text-block .label {
    font-size: 1em;
  }
}
[data-page=contact-us] .card-text-block .data {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #26201A;
  display: inline-block;
}
@media (max-width: 575px) {
  [data-page=contact-us] .card-text-block .data {
    font-size: 1em;
  }
}
[data-page=contact-us] .card-text-block .data:hover {
  color: #C6893F;
  border-color: #C6893F !important;
}
[data-page=contact-us] .card-text-block .data.mail {
  border-bottom: 1px solid #26201A;
}
[data-page=contact-us] .company-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 30px;
}
@media (max-width: 575px) {
  [data-page=contact-us] .company-footer {
    padding: 15px;
  }
}
[data-page=contact-us] .company-footer a {
  display: block;
  color: #58524C;
}
[data-page=contact-us] .icon-external-link {
  font-size: 1.5em;
}

[data-page=search] .body-container {
  padding-top: 80px;
}
@media (max-width: 575px) {
  [data-page=search] .body-container {
    padding-top: 20px;
  }
}
[data-page=search] .header-wrapper {
  margin-bottom: 20px;
}
[data-page=search] .content-small {
  font-size: 1.125em;
  color: #58524C;
}
[data-page=search] .content-header {
  display: block;
}
[data-page=search] .brumb-list {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  [data-page=search] .brumb-list {
    margin-bottom: 25px;
  }
}
[data-page=search] .content-header {
  margin-top: 93px;
}
@media (max-width: 991px) {
  [data-page=search] .content-header {
    margin-top: 73px;
  }
}
@media (max-width: 575px) {
  [data-page=search] .content-header {
    margin-top: 59px;
  }
}

footer {
  background-color: #26201A;
  padding: 60px 0;
  color: #fff;
  position: relative;
  z-index: 999;
}
@media (max-width: 1199px) {
  footer {
    padding-left: 13.0208333333vw;
    padding-right: 13.0208333333vw;
  }
}
@media (max-width: 991px) {
  footer {
    padding-left: 5.2083333333vw;
    padding-right: 5.2083333333vw;
  }
}
@media (max-width: 575px) {
  footer {
    padding: 40px 15px 20px 15px;
  }
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
  opacity: 0.7;
}
footer .f-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 1199px) {
  footer .f-wrapper {
    flex-wrap: wrap;
  }
}
footer .f-link-block {
  max-width: 56.9%;
  flex-basis: 56.9%;
}
@media (max-width: 1199px) {
  footer .f-link-block {
    max-width: 100%;
    flex-basis: 100%;
  }
}
footer .f-contact-block {
  max-width: 43.1%;
  flex-basis: 43.1%;
  padding-left: 6.25vw;
}
@media (max-width: 1199px) {
  footer .f-contact-block {
    padding-left: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 575px) {
  footer .f-contact-block {
    padding-top: 20px;
    border-top: 1px solid #ACA095;
  }
}
footer .f-link-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -3vw;
  flex-wrap: wrap;
}
footer .f-link-list li {
  padding: 0 3vw;
}
@media (max-width: 575px) {
  footer .f-link-list li {
    max-width: 50%;
    flex-basis: 50%;
    margin-bottom: 20px;
  }
}
footer .f-link-list li:nth-of-type(3) {
  padding-right: 4.6vw;
}
@media (max-width: 991px) {
  footer .f-link-list li:nth-of-type(3) {
    padding-right: 3vw;
  }
}
footer .f-link-list li:nth-of-type(4) {
  padding-left: 0;
}
@media (max-width: 991px) {
  footer .f-link-list li:nth-of-type(4) {
    padding-left: 3vw;
  }
}
footer .f-title {
  margin-bottom: 25px;
  font-size: 1.125em;
  line-height: 1.77;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 575px) {
  footer .f-title {
    margin-bottom: 10px;
  }
}
footer .f-link {
  display: block;
  padding: 6px 0;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 0.9375em;
}
footer .f-link:nth-of-type(1) {
  padding-top: 0;
}
footer .f-link:nth-last-of-type(1) {
  padding-bottom: 0;
}
footer .contact-block {
  margin-bottom: 12px;
}
footer .contact-block:nth-last-of-type(1) {
  margin-bottom: 25px;
}
footer .outline-btn {
  padding: 15px 30px;
  text-align: center;
  width: 380px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 3px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  footer .outline-btn {
    width: 100%;
  }
}
footer .outline-btn:hover {
  background-color: #fff;
  color: #333;
}
footer .copyright {
  margin-top: 28px;
  color: #ACA095;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 0.9375em;
}
@media (max-width: 575px) {
  footer .copyright {
    text-align: center;
  }
}

.f-container {
  padding-left: 15.1041666667vw;
  padding-right: 15.1041666667vw;
}
@media (max-width: 1699px) {
  .f-container {
    padding-left: 7.2916666667vw;
    padding-right: 7.2916666667vw;
  }
}
@media (max-width: 1199px) {
  .f-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 575px) {
  .f-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.f-contact-block-en {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 575px) {
  .f-contact-block-en {
    flex-wrap: wrap;
  }
}

.en-contact-data {
  padding-left: 150px;
}
@media (max-width: 575px) {
  .en-contact-data {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

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