@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  src: url(../../js/fonts/Outfit-VariableFont_wght.ttf) format("truetype-variations");
  font-weight: 100 900;
}
@font-face {
  font-family: "Italiana";
  font-weight: 400;
  src: url(../../js/fonts/Italiana-Regular.ttf);
}
@font-face {
  font-family: "Marcellus";
  font-weight: 400;
  src: url(../../js/fonts/Marcellus-Regular.ttf);
}
/* @font-face {
  font-family: "Noto Sans SC";
  font-weight: 500;
  src: url(../../js/fonts/NotoSansSC-Medium.otf);
} */
:root {
  --theme-rgb: 215,25,33;
  --theme-color: #D71921;
  --text-color: #333;
  --line-color: #E5E5E5;
  --border-color: #D6D6D6;
  --bg-color: #D0D0D0;
  --award-color: #CC8A21;
  --table-bg: #F5F5F5;
  --table-highlight: #FFF5F5;
  --table-highlight-dark: #F5EBEB;
  --esg-theme-color: #C1D12E;
  --esg-text-color: #198878;
  --font-main: 16px;
  --font-note: 14px;
  --font-btn: 14px;
  --font-menu: 24px;
  --font-submenu: 18px;
  --font-pagetitle: 30px;
  --font-section: 24px;
  --font-title: 20px;
  --font-subtitle: 18px;
  --font-extra: 18px;
  --font-select: 22px;
  --font-title-extra: 22px;
  --font-thead: 14px;
  --font-tbody: 12px;
  --line-height: 32px;
  --main-container: min(100%, 1920px);
  --container: min(100%, 1520px);
  --padding: 20px;
  --indent: calc((100% - var(--container))/2);
  --wrapper: clamp(20px, 9%, 130px);
  --table-padding: 10px;
  --header-height: 80px;
}
@media screen and (min-width: 768px) {
  :root {
    --font-thead: 18px;
    --font-tbody: 16px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --table-padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --font-main: 18px;
    --font-note: 16px;
    --font-btn: 15px;
    --font-menu: 32px;
    --font-submenu: 20px;
    --font-pagetitle: 44px;
    --font-section: 38px;
    --font-title-extra: 26px;
    --font-title: 24px;
    --font-subtitle: 20px;
    --font-extra: 22px;
    --font-select: 30px;
    --font-thead: 20px;
    --font-tbody: 18px;
    --header-height: 140px;
  }
}

body {
  font-family: "Outfit", "Helvetica Neue", Helvetica, "sans-serif";
  font-size: var(--font-main);
  font-weight: 200;
  color: var(--text-color);
  position: relative;
  overflow-x: hidden;
}

p {
  line-height: 2;
  margin-bottom: 20px;
}

a {
  color: inherit;
}

b {
  font-weight: bold;
}

table {
  width: 100%;
  margin-bottom: 30px;
}

sup {
  font-size: 0.6em;
  vertical-align: top;
}

::-moz-placeholder {
  color: #B5B5B5;
}

:-ms-input-placeholder {
  color: #B5B5B5;
}

::placeholder {
  color: #B5B5B5;
}

.hidden {
  display: none !important;
}

.white-popup {
  position: relative;
  background-color: #fff;
  width: 95%;
  margin: 40px auto;
}

.mainWrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
}

.content-wrapper {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .content-wrapper:after {
    content: "";
    display: block;
    width: 2px;
    height: calc(100% + 192px);
    background: var(--line-color);
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -2;
  }
}
@media screen and (min-width: 1500px) {
  .content-wrapper {
    min-height: 1100px;
  }
}

.page-content {
  width: 100%;
  padding: 0 var(--padding);
}
@media screen and (min-width: 768px) {
  .page-content {
    padding: 0 var(--wrapper);
  }
}
.page-content .content {
  max-width: 1000px;
  padding: 60px 0 200px;
  line-height: 1.25;
}
.page-content .content a {
  color: inherit;
}
.page-content .content a.red, .page-content .content a:hover {
  color: var(--theme-color);
}
.page-content .content .pTable td {
  padding: 5px 0;
}
.page-content .content p a, .page-content .content .pTable a, .page-content .content .note a {
  color: var(--theme-color);
}
.page-content .img-wrapper {
  margin-bottom: 20px;
}
.page-content ul li {
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}
.page-content ul.para li {
  line-height: 2;
}

.inline {
  display: inline-block;
}

.underline {
  text-decoration: underline;
}

.section-title {
  font-family: "Italiana";
  font-size: var(--font-section);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.title-lg {
  font-family: "Italiana";
  font-size: var(--font-title-extra);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.title {
  font-family: "Marcellus";
  font-size: var(--font-title);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.subtitle {
  font-family: "Marcellus";
  font-size: var(--font-subtitle);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--theme-color);
  margin-bottom: 15px;
}

.red {
  color: var(--theme-color);
}

.green {
  color: var(--esg-text-color);
}

.note {
  font-size: var(--font-note);
  line-height: 1.5;
}

.remark {
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 20px;
}

.text-right {
  text-align: right;
}

.bold {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.italic { font-style: italic;}

ul.listDot li:before {
  content: "•";
  color: var(--theme-color);
  position: absolute;
  left: 5px;
  top: 1px;
  transform: scale(2.5);
  z-index: -1;
}
ul.listNum {
  counter-reset: num;
}
ul.listNum li:before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  left: 0;
}
ul.listRoman {
  counter-reset: roman;
}
ul.listRoman li:before {
  content: "(" counter(roman, lower-roman) ")";
  counter-increment: roman;
  position: absolute;
  left: 0;
}
ul.listLetter {
  counter-reset: letter;
}
ul.listLetter li:before {
  content: "(" counter(letter, lower-alpha) ")";
  counter-increment: letter;
  position: absolute;
  left: 0;
}

.info-wrapper .row {
  display: flex;
  margin-bottom: 20px;
}
.info-wrapper .row .left {
  flex-shrink: 0;
}
.info-wrapper.note .row .left {
  width: 35px;
}

.yearWrapper {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
.yearWrapper .yearTitle {
  position: absolute;
  left: 0;
  font-family: "Marcellus";
  font-size: var(--font-title);
  letter-spacing: 2px;
}
.yearWrapper .yearSelect {
  font-size: var(--font-select);
  font-weight: 200;
  letter-spacing: 2px;
  position: relative;
  width: 140px;
  line-height: 1;
  order: 2;
  cursor: pointer;
}
.yearWrapper .yearSelect:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
  transform: rotate(45deg);
  right: 30px;
  top: 4px;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .yearWrapper .yearSelect {
    width: 200px;
  }
  .yearWrapper .yearSelect:after {
    right: 50px;
    top: 6px;
  }
}
.yearWrapper .yearSelect span {
  display: block;
  padding: 0 30px 10px;
}
@media screen and (min-width: 1200px) {
  .yearWrapper .yearSelect span {
    padding: 0 50px 10px;
  }
}
.yearWrapper .yearSelect ul.dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  border: 1px solid var(--line-color);
  background-color: #fff;
  max-height: 250px;
  overflow-y: auto;
  z-index: 3;
  display: none;
}
.yearWrapper .yearSelect ul.dropdown li {
  line-height: 1;
  margin-bottom: 0;
  padding-left: 0;
}
.yearWrapper .yearSelect ul.dropdown li a {
  display: block;
  padding: 10px 30px;
}
@media screen and (min-width: 1200px) {
  .yearWrapper .yearSelect ul.dropdown li a {
    padding: 10px 50px;
  }
}
.yearWrapper .yearSelect ul.dropdown li a:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.yearWrapper .yearSelect.act ul.dropdown {
  display: block;
}

ul.anchor-wrapper {
  font-family: "Marcellus";
  font-size: var(--font-extra);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
ul.anchor-wrapper > li {
  margin-bottom: 25px;
}
ul.anchor-wrapper > li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: url(../images/global/icon_anchor.png);
  background-repeat: no-repeat;
  background-size: auto 14px;
  background-position: left 7px;
}
@media screen and (min-width: 1200px) {
  ul.anchor-wrapper > li:before {
    background-size: auto 16px;
    background-position: left 8px;
  }
}

.anchorLink {
  display: block;
  visibility: hidden;
  position: relative;
  top: calc(var(--header-height) * -1);
}

/* Header */
.header {
  width: 100%;
  height: var(--header-height);
  padding: 0 20px;
  position: fixed;
  /* background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0)) */
  z-index: 100;
}
.header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: 0.3s;
}
.header a {
  color: #fff;
  position: relative;
}
.header .header-wrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .header .header-wrapper {
    padding: 0 50px;
  }
}
.header .logo-wrapper {
  align-items: center;
  height: 100%;
}
.header .logo-wrapper.dark {
  display: flex;
}
.header .logo-wrapper.light {
  display: none;
}
.header .logo-wrapper .logo {
  padding-right: 10px;
}
.header .logo-wrapper .logo img {
  height: 42px;
}
@media screen and (min-width: 1200px) {
  .header .logo-wrapper .logo {
    padding-right: 20px;
  }
  .header .logo-wrapper .logo img {
    height: 62px;
  }
}
.header .logo-wrapper .ipv6 img {
  height: 38px;
}
@media screen and (min-width: 1200px) {
  .header .logo-wrapper .ipv6 img {
    height: 46px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-btn-wrapper {
    display: grid;
    width: auto;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    position: absolute;
    top: calc((var(--header-height) - 40px) / 2);
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header .header-btn-wrapper {
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .header .header-btn-wrapper {
    top: 46px;
  }
}
.header .lang-wrapper {
  z-index: 102;
  width: auto;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  position: absolute;
  top: calc((var(--header-height) - 40px) / 2);
  right: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header .lang-wrapper {
    position: relative;
    top: 0;
    right: 0;
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .header .lang-wrapper {
    height: 50px;
    border-radius: 25px;
    padding: 0 18px;
  }
}
.header .lang ul {
  width: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  text-align: center;
  margin-right: 4px;
}
@media screen and (min-width: 1200px) {
  .header .lang ul {
    width: 120px;
  }
}
.header .lang ul a {
  font-weight: 500;
  transition: 0.3s;
  font-family: "Outfit", "Noto Sans SC", 'Microsoft YaHei', "Helvetica Neue", Helvetica, "sans-serif";
}
.header .lang ul a.lang-en {
  font-weight: 400;
}
.header .menu-btn-wrapper {
  margin: 0 7px;
  position: relative;
}
.header .menu-btn-wrapper .menu-btn {
  width: 20px;
  height: 30px;
  padding: 7px 0;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .header .menu-btn-wrapper .menu-btn {
    width: 24px;
  }
}
.header .menu-btn-wrapper .menu-btn span.line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
  transform-origin: right;
}
.header .menu-btn-wrapper .menu-btn span.line.line2 {
  margin-top: 5px;
  width: 81%;
}
.header .menu-btn-wrapper .menu-btn span.line.line3 {
  margin-top: 5px;
  width: 70%;
}
.header .menu-btn-wrapper.act .menu-btn span.line {
  width: 90%;
}
.header .menu-btn-wrapper.act .menu-btn span.line.line1 {
  transform: rotate(-45deg);
  margin-top: 1px;
}
@media screen and (min-width: 1200px) {
  .header .menu-btn-wrapper.act .menu-btn span.line.line1 {
    margin-top: 0;
  }
}
.header .menu-btn-wrapper.act .menu-btn span.line.line2 {
  opacity: 0;
}
.header .menu-btn-wrapper.act .menu-btn span.line.line3 {
  transform: rotate(45deg);
  margin-top: 4px;
}
@media screen and (min-width: 1200px) {
  .header .menu-btn-wrapper.act .menu-btn span.line.line3 {
    margin-top: 6px;
  }
}
.header .menu-btn-wrapper .menu-close {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.header .menu-btn-wrapper.act .menu-close {
  display: block;
}

.top-nav-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  opacity: 0;
}
.top-nav-wrapper.act {
  display: block;
  -webkit-animation: fadeIn 0.5s forwards;
          animation: fadeIn 0.5s forwards;
}
.top-nav-wrapper.closing {
  display: block;
  -webkit-animation: fadeOut 0.3s forwards;
          animation: fadeOut 0.3s forwards;
}
.top-nav-wrapper:before, .top-nav-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/global/header_bg.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top-nav-wrapper:after {
  background-image: url(../images/global/header_bg_overlay.png);
  opacity: 0.8;
}
.top-nav-wrapper .top-nav {
  z-index: 101;
  position: fixed;
  width: 100%;
  height: calc(100% - 120px);
  top: 120px;
  overflow-y: auto;
}
.top-nav-wrapper .menu {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: var(--line-height);
  padding: 50px var(--wrapper);
}
@media screen and (min-width: 1024px) {
  .top-nav-wrapper .menu {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(5, minmax(auto, 60px));
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .menu {
    grid-template-rows: repeat(5, minmax(auto, 80px));
    padding: 60px var(--wrapper) 0;
  }
}
.top-nav-wrapper .menu .nav {
  font-family: "Italiana";
  font-size: var(--font-menu);
  padding-bottom: 10px;
  letter-spacing: 4px;
}
@media screen and (min-width: 1024px) {
  .top-nav-wrapper .menu .nav {
    padding-bottom: 30px;
    grid-column: 1;
  }
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .menu .nav {
    padding-bottom: 40px;
  }
}
.top-nav-wrapper .menu .nav a.act span, .top-nav-wrapper .menu .nav a.cur span, .top-nav-wrapper .menu .nav a:hover span {
  padding: 0 10px;
  margin: 0 -10px;
  background-image: linear-gradient(180deg, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 80%;
}
.top-nav-wrapper .menu .sub-nav-wrapper {
  font-size: var(--font-submenu);
  display: grid;
  max-height: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .top-nav-wrapper .menu .sub-nav-wrapper {
    grid-area: 1/2/7/3;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-nav-wrapper .menu .sub-nav-wrapper {
    padding-top: 10px;
  }
}
.top-nav-wrapper .menu .sub-nav-wrapper.act {
  display: grid;
  max-height: 100%;
  padding-bottom: 30px;
}
.top-nav-wrapper .menu .sub-nav {
  padding: 0 var(--padding);
}
@media screen and (min-width: 1024px) {
  .top-nav-wrapper .menu .sub-nav > li {
    margin-bottom: 35px;
  }
}
.top-nav-wrapper .menu .sub-nav a.act span, .top-nav-wrapper .menu .sub-nav a.cur span, .top-nav-wrapper .menu .sub-nav a:hover span {
  padding: 0 10px;
  margin: 0 -10px;
  background-image: linear-gradient(180deg, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: 0 80%;
}
.top-nav-wrapper .menu .sub-nav-lv2 {
  position: relative;
  padding-left: 32px;
}
.top-nav-wrapper .menu .sub-nav-lv2 li:before {
  content: "-";
  color: #fff;
  position: absolute;
  left: 16px;
}
@media screen and (max-width: 767px) {
  .top-nav-wrapper .menu .sub-nav {
    line-height: 1.2;
  }
  .top-nav-wrapper .menu .sub-nav li {
    margin-bottom: 15px;
  }
  .top-nav-wrapper .menu .sub-nav-lv2 {
    padding-top: 15px;
  }
}
.top-nav-wrapper .search-wrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
  top: var(--header-height);
  display: grid;
  align-items: center;
  justify-items: end;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .top-nav-wrapper .search-wrapper {
    top: 0;
    height: var(--header-height);
    padding-right: 164px;
  }
}
@media screen and (min-width: 1024px) {
  .top-nav-wrapper .search-wrapper {
    padding-right: 214px;
  }
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .search-wrapper {
    padding-right: 250px;
  }
}
.top-nav-wrapper .search-wrapper .searchBox {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .top-nav-wrapper .search-wrapper .searchBox {
    width: 440px;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .search-wrapper .searchBox {
    width: 552px;
  }
}
.top-nav-wrapper .search-wrapper .searchBox > form {
  position: relative;
}
.top-nav-wrapper .search-wrapper.act {
  display: block;
}
.top-nav-wrapper .search-wrapper .search {
  width: 100%;
  height: 40px;
  border: none;
  padding: 0 50px 0 20px;
  border-radius: 20px;
  font-size: var(--font-submenu);
  font-weight: 300;
  letter-spacing: 1px;
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .search-wrapper .search {
    height: 50px;
    padding: 0 70px 0 30px;
    border-radius: 25px;
  }
}
.top-nav-wrapper .search-wrapper .searchSubmit {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
}
.top-nav-wrapper .search-wrapper .searchSubmit i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/global/Icon_search.png) no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 1200px) {
  .top-nav-wrapper .search-wrapper .searchSubmit i {
    width: 30px;
    height: 30px;
  }
}

/* FOOTER */
.footer {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
  font-size: var(--font-note);
  font-weight: 300;
  letter-spacing: 1px;
  overflow-x: hidden;
}
.footer:before {
  content: "";
  display: block;
  width: calc(100% - var(--indent));
  height: 2px;
  background-color: var(--line-color);
  position: absolute;
  top: 92px;
  left: 0;
}
.footer .footer-wrapper {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.footer-icon {
  width: 100%;
  padding: 30px var(--padding);
}
@media screen and (min-width: 768px) {
  .footer-icon {
    padding-left: var(--wrapper);
  }
}
.footer-icon ul {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(-webkit-min-content, -webkit-max-content));
  grid-template-columns: repeat(5, minmax(min-content, max-content));
  gap: 30px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-icon ul {
    gap: 30px;
    justify-content: start;
  }
}
@media screen and (min-width: 1200px) {
  .footer-icon ul {
    gap: 60px;
  }
}
.footer-icon li a {
  display: flex;
  align-items: center;
}
.footer-icon li a span.icon {
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-icon li a span.icon.icon-fb {
  width: 31px;
  background-image: url(../images/global/icon_fb.png);
}
.footer-icon li a span.icon.icon-weibo {
  width: 37px;
  background-image: url(../images/global/icon_weibo.png);
}
.footer-icon li a span.icon.icon-wechat {
  width: 36px;
  background-image: url(../images/global/icon_wechat.png);
}
.footer-icon li a span.icon.icon-alert {
  width: 32px;
  background-image: url(../images/global/icon_alert.png);
}
.footer-icon li a span.icon.icon-share {
  width: 29px;
  background-image: url(../images/global/icon_share.png);
}
.footer-icon li a span.icon.icon-rss {
  width: 26px;
  background-image: url(../images/global/icon_rss.png);
}
.footer-icon li a span.text {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-icon li a span.text {
    margin-left: 10px;
    display: block;
  }
}

.footer-content {
  width: 100%;
  padding: 30px var(--padding) 50px;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding-left: var(--wrapper);
  }
  .footer-content:after {
    content: "";
    display: block;
    width: 52px;
    height: 52px;
    background: url(../images/global/corner.png) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    right: -50px;
  }
}

.footer-link {
  margin: 20px auto 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .footer-link {
    margin: 0;
    padding-right: var(--padding);
  }
}
.footer-link ul li {
  display: inline-block;
}
.footer-link ul li:not(:last-child) {
  margin-right: 5px;
}
.footer-link ul li:not(:last-child):after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
}

.wechat-popup .white-popup {
  max-width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.backToTop {
  font-family: "Marcellus";
  font-size: var(--font-note);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-color);
  position: fixed;
  bottom: 200px;
  right: 20px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  display: none;
  z-index: 2;
}
a.backToTop:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 50px;
  background-image: url(../images/global/icon_top.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
a.backToTop.act {
  display: block;
  opacity: 0.6;
}
a.backToTop:hover {
  opacity: 1;
}

/* Cookies */
.cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: rgba(120, 120, 120, 0.85);
  color: #fff;
  padding: 30px 20px;
  z-index: 5;
  display: none;
}
.cookies.init {
  display: block;
}
.cookies .cookies-content {
  width: min(100%, 1200px);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.cookies .cookies-title {
  margin-bottom: 20px;
}
.cookies .cookies-inline p {
  line-height: 1.5;
}
.cookies .cookies-inline p a {
  text-decoration: underline;
}
.cookies .cookies-inline .cookies-close {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 15px;
  background-color: var(--theme-color);
  font-size: var(--font-btn);
}
@media screen and (min-width: 768px) {
  .cookies .cookies-content {
    text-align: left;
  }
  .cookies .cookies-inline {
    display: flex;
    align-items: center;
  }
  .cookies .cookies-inline p {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Section Banner */
.section-banner-wrapper {
  width: 100%;
  background-color: #000;
  padding-top: var(--header-height);
}
@media screen and (min-width: 1024px) {
  .section-banner-wrapper {
    padding-top: 0;
  }
}
.section-banner-wrapper .section-banner {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
}
.section-banner-wrapper .esg-banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.section-banner-wrapper .esg-banner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-banner-wrapper .esg-banner-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content {
  position: relative;
  width: 62.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content img.static {
  opacity: 0;
  z-index: -1;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content img.ani {
  position: absolute;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-title-wrapper {
  position: absolute;
  width: 43.3%;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-title-wrapper .esg-banner-title {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/banner/banner_esg_title.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-title-wrapper .esg-banner-title.act {
  -webkit-animation: esgTitleAni1 1s ease-in-out 0.5s both, esgTitleAni2 1s ease-in-out 2s both;
          animation: esgTitleAni1 1s ease-in-out 0.5s both, esgTitleAni2 1s ease-in-out 2s both;
}
@-webkit-keyframes esgTitleAni1 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes esgTitleAni1 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes esgTitleAni2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes esgTitleAni2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper img {
  width: 30.5%;
  position: absolute;
  top: 0;
  opacity: 0;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper img.img-award-1 {
  left: 0;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper img.img-award-2 {
  left: 34.8%;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper img.img-award-3 {
  right: 0;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper.act .img-award-2 {
  -webkit-animation: esgAwardAni1 1s ease-in-out 3s both;
          animation: esgAwardAni1 1s ease-in-out 3s both;
}
.section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper.act .img-award-1, .section-banner-wrapper .esg-banner-wrapper .esg-banner-content .esg-banner-awards-wrapper.act .img-award-3 {
  -webkit-animation: esgAwardAni2 1s ease-in-out 4s both;
          animation: esgAwardAni2 1s ease-in-out 4s both;
}
@-webkit-keyframes esgAwardAni1 {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes esgAwardAni1 {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes esgAwardAni2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes esgAwardAni2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Light Header */
.light .header .logo-wrapper.dark, .scroll .header .logo-wrapper.dark {
  display: none;
}
.light .header .logo-wrapper.light, .scroll .header .logo-wrapper.light {
  display: flex;
}
.light .header.init .lang-wrapper, .scroll .header.init .lang-wrapper {
  border-color: var(--text-color);
}
.light .header.init .menu-btn-wrapper .menu-btn span.line, .scroll .header.init .menu-btn-wrapper .menu-btn span.line {
  background-color: var(--text-color);
}
.light .header.init a, .scroll .header.init a {
  color: inherit;
}
.light .section-banner-wrapper, .scroll .section-banner-wrapper {
  background-color: #fff;
}

.scroll .header.init:before {
  opacity: 1;
}

.scroll .home-banner:after{
  content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
    opacity: 0;
    transition: 0.3s;
}
.scroll .home-banner:after {
  opacity: 1;
}

/* Homepage Header */
.home .header.init {
  background: transparent;
}

/* Page Header */
.page-header-wrapper {
  position: relative;
  padding: 20px 0;
  height: auto;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .page-header-wrapper {
    height: 160px;
    margin-top: -50px;
  }
}
.page-header-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--indent));
  height: 100%;
  background-color: var(--theme-color);
  border-radius: 0;
}
@media screen and (min-width: 1200px) {
  .page-header-wrapper:before {
    border-radius: 0 50px 50px;
  }
}
.page-header-wrapper .page-header {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--padding);
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .page-header-wrapper .page-header {
    padding: 0 var(--wrapper);
  }
}
.page-header-wrapper .breadcrumbs {
  font-size: var(--font-note);
  font-weight: 300;
}
.page-header-wrapper .breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -20px;
}
.page-header-wrapper .breadcrumbs ul li {
  padding: 0 20px;
  position: relative;
  margin-bottom: 5px;
}
.page-header-wrapper .breadcrumbs ul li:after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: -2px;
  top: 2px;
}
@media screen and (min-width: 1200px) {
  .page-header-wrapper .breadcrumbs ul li:after {
    top: 4px;
  }
}
.page-header-wrapper .pageTitle {
  font-family: "Marcellus";
  font-size: var(--font-pagetitle);
  font-weight: 400;
  letter-spacing: inherit;
  line-height: 1.3;
}
.page-header-wrapper a, .page-header-wrapper span, .page-header-wrapper h1 {
  color: #fff;
}

/* Page - right Section Name */
.page-section-indicator {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width: 1500px) {
  .page-section-indicator {
    opacity: 1;
  }
}
.page-section-indicator span {
  font-family: "Italiana";
  font-size: 105px;
  font-weight: 400;
  letter-spacing: 10px;
  position: absolute;
  right: 45px;
  top: 60px;
  color: var(--line-color);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  white-space: nowrap;
}

/* Contact Us */
.contact-wrapper .row {
  display: flex;
  width: 100%;
  padding: 5px 0;
}
.contact-wrapper .row .left {
  width: 15%;
  min-width: 100px;
}
.contact-wrapper .row .right {
  flex-grow: 1;
}
.contact-wrapper .row a {
  color: var(--theme-color);
}
.contact-wrapper.cs .left {
  width: 20%;
}
.contact-wrapper.cs .right {
  display: flex;
}
.contact-wrapper.cs .right .place {
  width: 37%;
  min-width: 130px;
}
@media screen and (max-width: 767px) {
  .contact-wrapper.cs .row {
    display: block;
  }
}

/* CG Report */
.cg-contact .row .left {
  width: 90px;
  display: flex;
  justify-content: space-between;
}
.cg-contact .row .left span {
  margin: 0 10px;
}

/* Chairman */
.signature .img-wrapper {
  padding: 0 30px;
}
.signature .img-wrapper img {
  margin: 0;
}
.signature .text-wrapper {
  display: inline-block;
  padding-top: 15px;
  border-top: 2px solid #B7B7B7;
  min-width: 300px;
}

/* History */
.history .yearWrapper {
  margin-bottom: 40px;
}
.history .yearWrapper .year {
  font-size: 150px;
  color: #f0f0f0;
  line-height: 1;
  margin-top: -25px;
  display: none;
}
@media screen and (min-width: 768px) {
  .history .yearWrapper {
    justify-content: space-between;
  }
  .history .yearWrapper .year {
    display: block;
  }
}
.history .month {
  font-size: var(--font-select);
  color: var(--theme-color);
  font-weight: 300;
  letter-spacing: 5px;
  margin: 30px 0 20px;
}
.history .text {
  padding: 5px 0 5px 25px;
  margin-bottom: 20px;
  margin-left: 10px;
  border-left: 1px solid var(--theme-color);
}
@media screen and (min-width: 768px) {
  .history .text {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .history .text {
    padding: 15px 0 15px 35px;
    margin-left: 33px;
  }
}
.history .text p {
  font-weight: 300;
  margin-bottom: 0;
}

/* Corporate Information */
.corpinfo .info-wrapper .row {
  align-items: baseline;
  padding: 10px 0 30px;
  border-bottom: 1px solid var(--border-color);
  font-size: var(--font-subtitle);
  line-height: 1.5;
}
.corpinfo .info-wrapper .row .left {
  width: 39%;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .corpinfo .info-wrapper .row {
    display: block;
  }
  .corpinfo .info-wrapper .row .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.corpinfo .info-title {
  font-family: "Marcellus";
  font-size: var(--font-subtitle);
  font-weight: 400;
  letter-spacing: 2px;
}
.corpinfo .name {
  font-size: var(--font-extra);
  font-weight: 300;
}
.corpinfo .note {
  font-weight: 200;
}
.corpinfo .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
}
@media screen and (min-width: 1200px) {
  .corpinfo .icon {
    width: 24px;
    height: 24px;
  }
}
.corpinfo .icon.icon-tel {
  background-image: url(../images/global/icon_phone.png);
}
.corpinfo .icon.icon-fax {
  background-image: url(../images/global/icon_fax.png);
}
.corpinfo .icon.icon-email {
  background-image: url(../images/global/icon_email.png);
}
.corpinfo .icon.icon-web {
  background-image: url(../../en/images/global/icon_web.png);
}

/* Directors */
.director-wrapper {
  display: grid;
  justify-content: center;
  gap: 35px 20px;
  padding: 0 15%;
}
.director-wrapper .item .img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.director-wrapper .item .img:before {
  content: "";
  width: 100%;
  height: 42%;
  background-color: var(--bg-color);
  border-radius: 40px;
  position: absolute;
  bottom: 0;
}
.director-wrapper .item .img img {
  position: absolute;
  top: 0;
  left: 0;
}
.director-wrapper .item .name {
  font-family: "Italiana";
  font-size: var(--font-title-extra);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 10px 0 5px;
}
.director-wrapper .item .title {
  font-family: inherit;
  font-size: var(--font-note);
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .director-wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .director-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.director-popup.mfp-bg {
  opacity: 0.6;
}
.director-popup .white-popup {
  max-width: 1000px;
}
.director-popup .mfp-close {
  color: transparent;
  font-family: "Marcellus";
  font-size: var(--font-note);
  font-weight: 400;
  letter-spacing: 2px;
}
.director-popup .mfp-close:before {
  content: "×";
  display: block;
  color: var(--text-color);
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 2em;
}
@media screen and (min-width: 1024px) {
  .director-popup .mfp-close {
    top: 15px;
    right: 50px;
  }
  .director-popup .mfp-close:after {
    content: "Close";
    display: block;
    color: var(--text-color);
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    margin-left: -1px;
  }
}
.director-popup .bio {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .director-popup .bio {
    padding-right: 100px;
  }
}
.director-popup .profile {
  max-width: 840px;
  padding: 20px 20px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.director-popup .profile:before {
  content: "";
  position: absolute;
  width: 1000px;
  border-top: 2px solid var(--theme-color);
  left: 0;
  top: 100%;
}
@media screen and (min-width: 768px) {
  .director-popup .profile {
    padding: 40px 70px 0;
  }
}
@media screen and (min-width: 1024px) {
  .director-popup .profile {
    border-right: 2px solid var(--theme-color);
    padding-top: 60px;
    margin-left: auto;
  }
  .director-popup .profile:before {
    left: auto;
    right: 0;
  }
  .director-popup .profile:after {
    content: "";
    position: absolute;
    top: 100%;
    right: -45px;
    width: 45px;
    height: 45px;
    background-image: url(../images/global/corner_red.png);
    background-size: 100%;
  }
}
.director-popup .profile .img {
  width: min(40%, 235px);
  flex-shrink: 0;
}
.director-popup .profile .desc {
  padding: 20px 20px 20px 40px;
}
.director-popup .profile .desc .name {
  font-family: "Italiana";
  font-size: var(--font-select);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.director-popup .profile .desc .title {
  font-family: inherit;
  font-size: var(--font-note);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.director-popup .details {
  max-width: 840px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .director-popup .details {
    padding: 20px 70px;
  }
}
@media screen and (min-width: 1024px) {
  .director-popup .details {
    padding-bottom: 80px;
    margin-left: auto;
  }
}

/* Awards */
.awards-wrapper .item {
  display: grid;
  gap: 20px;
  margin-bottom: 60px;
}
.awards-wrapper .item .award-title {
  font-family: "Marcellus";
  font-size: var(--font-title-extra);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.15;
  min-height: 130px;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--award-color);
  background-image: url(../images/about/award_bg.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 10px 4%;
  margin: 0;
  display: grid;
  grid-template-columns: 40px auto 40px;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.awards-wrapper .item .award-title .remark {
  font-family: "Outfit";
  font-size: var(--font-btn);
  font-weight: 300;
}
.awards-wrapper .item .award-title .remark:before, .awards-wrapper .item .award-title .remark:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background-color: var(--award-color);
  margin-right: 15px;
  vertical-align: middle;
}
.awards-wrapper .item .award-title .remark:after {
  margin-right: 0;
  margin-left: 15px;
}
.awards-wrapper .item .award-title:before, .awards-wrapper .item .award-title:after {
  content: "";
  width: 40px;
  height: 70px;
  display: inline-block;
  background-image: url(../images/about/award_bg_left.png);
}
.awards-wrapper .item .award-title:after {
  background-image: url(../images/about/award_bg_right.png);
}
@media screen and (min-width: 768px) {
  .awards-wrapper .item .award-title {
    gap: 15px;
  }
  .awards-wrapper .item .award-title .remark {
    margin-bottom: -10px;
  }
}
.awards-wrapper .item .img-wrapper {
  max-width: 250px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}
.awards-wrapper .item .img-wrapper img {
  width: 100%;
}
.awards-wrapper .item .img-wrapper.img-slider {
  padding: 10px;
  margin-bottom: 45px;
}
.awards-wrapper .item .img-wrapper.img-slider .slick-track {
  display: flex;
  align-items: center;
}
.awards-wrapper .item .img-wrapper.img-slider .slick-dots {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.awards-wrapper .item .img-wrapper.img-slider .slick-dots li {
  padding-left: 0;
  margin: 0 7.5px;
}
.awards-wrapper .item .img-wrapper.img-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #C3C3C3;
}
.awards-wrapper .item .img-wrapper.img-slider .slick-dots li.slick-active button, .awards-wrapper .item .img-wrapper.img-slider .slick-dots li:hover button {
  background-color: var(--award-color);
}
.awards-wrapper .item .img-wrapper.landscape {
  padding: 35px 10px;
}
.awards-wrapper .item .img-wrapper:not(.img-slider):not(.landscape) > div {
  overflow: hidden;
  border-radius: 20px;
}
.awards-wrapper .item p {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .awards-wrapper .item {
    gap: 40px 20px;
  }
  .awards-wrapper .item.withImg {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .awards-wrapper .item .award-title {
    grid-column: span 4;
  }
  .awards-wrapper .item .details {
    grid-column: span 3;
  }
}
.awards-wrapper ul.listAward {
  padding: 10px 0;
}
.awards-wrapper ul.listAward li {
  line-height: 1.3;
}
.awards-wrapper ul.listAward li:before {
  content: "";
  width: 18px;
  height: 16px;
  position: absolute;
  background-image: url(../images/global/icon_award.png);
  background-size: 100%;
  left: 5px;
  top: 3px;
}
@media screen and (min-width: 768px) {
  .awards-wrapper ul.listAward {
    padding: 10px 0 10px 20px;
  }
}

/* Announcemnts */
.ann-wrapper .row {
  padding: 10px 6% 0 3%;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width: 767px) {
  .ann-wrapper .row {
    display: block;
  }
}
.ann-wrapper .date {
  font-size: var(--font-extra);
  flex-shrink: 0;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .ann-wrapper .date {
    width: 25%;
  }
}
.ann-wrapper .doc-title {
  padding: 10px 0 30px;
}
@media screen and (min-width: 768px) {
  .ann-wrapper .doc-title {
    padding-top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .ann-wrapper .doc-title {
    padding-top: 3px;
  }
}

/* IR */
.btn-download {
  display: inline-block;
  border: 2px solid #BEBEBE;
  border-radius: 10px;
  font-size: var(--font-btn);
  font-weight: 300;
  padding: 8px 18px 8px 45px;
  background-image: url(../images/global/icon_download.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 18px center;
  margin-bottom: 30px;
}
.btn-download.btn-faq {
  background-image: url(../images/global/icon_q.png);
  background-size: 12px;
  padding-left: 40px;
}

.data-wrapper {
  padding-top: 10px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .data-wrapper .btn-wrapper {
    position: absolute;
    top: -60px;
    right: 0;
  }
}

.statement-wrapper {
  margin: 20px 0;
  border-top: 1px solid var(--theme-color);
}
.statement-wrapper .yearend {
  padding: 10px var(--table-padding);
}
@media screen and (min-width: 768px) {
  .statement-wrapper .yearend {
    padding: 10px calc(var(--table-padding) * 2);
  }
}

.ir .title-lg {
  margin-bottom: 15px;
}
.ir .period {
  line-height: 1.5;
  margin-bottom: 20px;
}
.ir .yearWrapper {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--theme-color);
}
.ir .callout {
  padding: 15px 20px;
  margin-bottom: 40px;
  background-color: var(--table-highlight);
}

.ir table td {
  padding: calc(var(--table-padding) * 0.5) var(--table-padding);
  text-align: right;
  font-size: var(--font-tbody);
  font-weight: 300;
  line-height: 1.5;
  vertical-align: middle;
}
.ir table td:first-child {
  text-align: left;
}
.ir table td.table-highlight {
  background-color: var(--table-highlight);
}
.ir table td.indent {
  padding-left: calc(var(--table-padding) * 2);
}
.ir table td.indent2 {
  padding-left: calc(var(--table-padding) * 3);
}
.ir table td.col {
  width: 13%;
}
.ir table td.col.note {
  width: auto;
  min-width: auto;
}
.ir table td.bold {
  font-size: var(--font-thead);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .ir table td {
    padding-left: calc(var(--table-padding) * 2);
    padding-right: calc(var(--table-padding) * 2);
  }
  .ir table td.indent {
    padding-left: calc(var(--table-padding) * 3.5);
  }
  .ir table td.indent2 {
    padding-left: calc(var(--table-padding) * 9);
	padding-right: 0px;
  }
  .ir table td.col {
    min-width: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .ir table td.col {
    min-width: 140px;
  }
}
.ir table tr.dark td {
  background-color: var(--table-bg);
}
.ir table tr.dark td.table-highlight {
  background-color: var(--table-highlight-dark);
}
.ir table tr.border {
  border-bottom: 1px solid var(--theme-color);
}
.ir table tr.first td {
  padding-top: var(--table-padding);
}
.ir table tr.last td {
  padding-bottom: var(--table-padding);
}
.ir table tr.inner td {
  padding-top: 0 !important;
}
.ir table tr.inner.collapsed td {
  padding-bottom: 0 !important;
}
.ir table thead td {
  background-color: var(--theme-color);
  color: #fff;
  font-size: var(--font-thead);
  font-weight: 500;
  padding-top: var(--table-padding);
  padding-bottom: var(--table-padding);
}
.ir table thead td.table-highlight {
  background-color: #A71015;
}
.ir table td.btn {
  width: 20px;
  padding: 0;
}
.ir table td.btn a {
  position: relative;
  display: none;
}
.ir table td.btn a.act {
  display: block;
}
.ir table td.btn span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 1px;
}
.ir table td.btn.prev {
  text-align: right;
}
.ir table td.btn.prev span {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: 4px;
}
.ir table td.btn.next {
  text-align: left;
}
.ir table td.btn.next span {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .ir table td.btn {
    width: 30px;
  }
  .ir table td.btn span {
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .ir table td.btn {
    width: 50px;
  }
  .ir table td.btn a {
    padding: var(--table-padding);
  }
  .ir table td.btn span {
    width: 12px;
    height: 12px;
  }
}
.ir table.table-finhigh td.col {
  display: none;
}
.ir table.table-finhigh td.col.act {
  display: table-cell;
}
.ir table.table-finhigh tbody td {
  padding-top: var(--table-padding);
  padding-bottom: var(--table-padding);
}
.ir table.table-summary {
  --font-thead: var(--font-tbody);
}
.ir table.table-summary td {
  padding-left: var(--table-padding);
  padding-right: var(--table-padding);
}
.ir table.table-summary td.indent {
  padding-left: calc(var(--table-padding) * 2);
}
.ir table.table-summary td.col {
  width: 10%;
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .ir table.table-summary {
    --font-tbody: 11px;
  }
  .ir table.table-summary td {
    padding-left: calc(var(--table-padding) * 0.5);
    padding-right: calc(var(--table-padding) * 0.5);
  }
  .ir table.table-summary td.indent {
    padding-left: var(--table-padding);
  }
  .ir table.table-summary td.indent2 {
    padding-left: var(--table-padding);
  }
}
.ir table.table-collapse td {
  padding: var(--table-padding);
  text-align: left;
  vertical-align: top;
}
.ir table.table-collapse thead td {
  background-color: #eeeeee;
  color: var(--theme-color);
  font-weight: 400;
}
.ir table.table-collapse tbody tr {
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 1200px) {
  .ir table.table-collapse td {
    padding: calc(var(--table-padding) * 2);
  }
  .ir table.table-collapse thead td {
    padding: var(--table-padding) calc(var(--table-padding) * 2);
  }
}
@media screen and (max-width: 767px) {
  .ir table.table-collapse thead {
    display: none;
  }
  .ir table.table-collapse td {
    display: block;
    width: 100%;
    text-align: right;
    position: relative;
    padding: 5px 5px 5px 120px;
  }
  .ir table.table-collapse td:before {
    content: attr(data-title);
    position: absolute;
    left: 5px;
  }
  .ir table.table-collapse tr {
    display: block;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}

/* Reports */
.reports-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .reports-wrapper {
    display: block;
  }
}
.reports-wrapper .item {
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .reports-wrapper .item {
    padding: 40px 0;
  }
}
.reports-wrapper .item .btn-readmore {
  font-size: var(--font-btn);
  letter-spacing: 2px;
}
.reports-wrapper .item .cover {
  width: 50%;
  flex-shrink: 0;
}
.reports-wrapper .item .desc {
  padding-left: 20px;
}
@media screen and (min-width: 1200px) {
  .reports-wrapper .item .desc {
    padding-left: 40px;
  }
}
.reports-wrapper .item.main {
  grid-column: span 2;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.reports-wrapper .item.main .title-lg {
  font-size: var(--font-menu);
  letter-spacing: 3px;
}
.reports-wrapper .item.main .desc {
  padding: 30px 10px 10px;
}
@media screen and (min-width: 768px) {
  .reports-wrapper .item.main .desc {
    padding: 10px 10px 10px 50px;
  }
}
@media screen and (max-width: 767px) {
  .reports-wrapper .item.main {
    flex-wrap: wrap;
  }
  .reports-wrapper .item.main .cover {
    width: 100%;
  }
}

.reportBreakdown {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-column-gap: var(--wrapper);
  grid-row-gap: var(--wrapper);
  box-sizing: border-box;
}
.reportBreakdown .cover {
  text-align: center;
}
.reportBreakdown .cover img {
  width: 100%;
}
.reportBreakdown .toc {
  padding-bottom: 30px;
}
.reportBreakdown .filesize {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reportBreakdown {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
}

.btn-link {
  display: inline-block;
  border: 2px solid #BEBEBE;
  border-radius: 10px;
  font-size: var(--font-btn);
  font-weight: 300;
  padding: 8px 18px 8px 45px;
  background-image: url(../images/global/icon_link.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 18px center;
  margin-bottom: 30px;
}

.btn-back {
  display: inline-block;
  border: 2px solid #BEBEBE;
  border-radius: 10px;
  font-size: var(--font-btn);
  font-weight: 300;
  padding: 8px 18px 8px 45px;
  background-image: url(../images/global/icon_back.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 18px center;
  margin-bottom: 30px;
}

/* Presentation */
.presentation-wrapper .item {
  padding: 40px 20px 60px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .presentation-wrapper .item {
    display: flex;
    align-items: center;
    padding: 40px 0px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .presentation-wrapper .item {
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .presentation-wrapper .cover {
    width: 50%;
    flex-shrink: 0;
  }
}
.presentation-wrapper .title {
  font-family: "Italiana";
  font-size: var(--font-menu);
  font-weight: 400;
  letter-spacing: 3px;
}
.presentation-wrapper .desc {
  padding: 25px 7% 0;
}
.presentation-wrapper .link a {
  display: inline-block;
  font-weight: 300;
  margin-bottom: 18px;
  padding-left: 34px;
  letter-spacing: 1px;
}
.presentation-wrapper .link a.icon {
  background-repeat: no-repeat;
  background-position: left center;
}
.presentation-wrapper .link a.icon.icon-pdf {
  background-image: url(../images/global/icon_pdf.png);
  background-size: 21px;
}
.presentation-wrapper .link a.icon.icon-webcast {
  background-image: url(../images/global/icon_webcast.png);
  background-size: 24px;
}
.presentation-wrapper .link a.icon.icon-audio {
  background-image: url(../images/global/icon_audio.png);
  background-size: 24px;
}

/* Key Financial Data */
.highlights .period a {
  font-family: "Italiana";
  font-size: var(--font-title);
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .highlights .period a {
    font-size: 18px;
  }
}
.highlights .period a:not(:last-child) {
  margin-right: 20px;
}
.highlights .period a:not(:last-child):after {
  content: "";
  position: absolute;
  height: 80%;
  border-right: 1px solid #aaa;
  right: -10px;
  top: 10%;
}
@media screen and (min-width: 768px) {
  .highlights .period a:not(:last-child) {
    margin-right: 50px;
  }
  .highlights .period a:not(:last-child):after {
    right: -25px;
  }
}
.highlights .period a.act span, .highlights .period a:hover span {
  padding: 0 10px;
  margin: 0 -10px;
  background-image: linear-gradient(180deg, rgba(var(--theme-rgb), 0.3), rgba(var(--theme-rgb), 0.3));
  background-repeat: no-repeat;
  background-size: 100% 25%;
  background-position: 0 80%;
}
@media screen and (min-width: 1024px) {
  .highlights .data-wrapper .btn-wrapper {
    top: -55px;
  }
}

/* IR Calendar */
.calendar-wrapper .row {
  padding: 10px 3% 30px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}
.calendar-wrapper .date {
  font-size: var(--font-extra);
  width: 22%;
  flex-shrink: 0;
}
.calendar-wrapper .event-title {
  flex-grow: 1;
  padding: 0 10px;
}
.calendar-wrapper .cal {
  width: 10%;
  flex-shrink: 0;
}
.calendar-wrapper .cal a.addCal {
  display: inline-block;
  width: 40px;
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .calendar-wrapper .event-title {
    padding: 0 20px;
  }
  .calendar-wrapper .cal a.addCal {
    width: 44px;
  }
}

/* Analyst Coverage */
.analyst .chartArea {
  width: 100%;
  height: 280px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .analyst .chartArea {
    height: 320px;
  }
}

.analyst-wrapper {
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .analyst-wrapper table.table-collapse td {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .analyst-wrapper table.table-collapse {
    --font-tbody: 14px;
  }
}
.analyst-wrapper table.table-collapse a {
  color: var(--theme-color);
}

.chartWrapper {
  margin-bottom: 20px;
  padding: 0 20px;
}

.chartLegendWrapper {
  margin: 10px 0;
  text-align: center;
}
.chartLegendWrapper ul.chart-legend {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  justify-content: center;
  flex-wrap: wrap;
}
.chartLegendWrapper ul.chart-legend li {
  padding-left: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 0 10px 10px;
}
.chartLegendWrapper ul.chart-legend li span.label {
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-right: 5px;
}
.chartLegendWrapper ul.chart-legend li.hidden {
  color: #aaa;
}
.chartLegendWrapper ul.chart-legend li.hidden span.label {
  background-color: #aaa !important;
}
@media screen and (max-width: 767px) {
  .chartLegendWrapper ul.chart-legend {
    display: inline-block;
  }
}

/* FAQs */
.accordion {
  line-height: 1.5;
  padding-top: 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.accordion .accordion-title {
  display: flex;
  position: relative;
  cursor: pointer;
  padding-right: 10px;
  margin-bottom: 30px;
  font-size: var(--font-subtitle);
  font-weight: 400;
}
.accordion .accordion-title:after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-image: url(../images/global/icon_arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.accordion .accordion-title .label {
  flex-grow: 1;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion-title {
    padding-right: 30px;
  }
  .accordion .accordion-title:after {
    width: 30px;
    height: 30px;
  }
}
.accordion .accordion-content {
  padding: 0 40px 0 20px;
  max-height: 0;
  transition: all 0.5s;
}
.accordion input {
  position: absolute;
  opacity: 0;
}
.accordion input:checked + .accordion-title:after {
  transform: rotate(180deg);
}
.accordion input:checked ~ .accordion-content {
  max-height: 200vh;
  padding-bottom: 40px;
}

.faq .btn-wrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
}
.faq .btn-wrapper .btn-faq {
  margin-bottom: 0;
}
.faq .btn-readall {
  font-weight: 300;
  margin-right: 20px;
  cursor: pointer;
}

.faq-wrapper {
  border-top: 1px solid var(--theme-color);
  margin-top: 30px;
}
.faq-wrapper .btn-readall {
  cursor: pointer;
}
.faq-wrapper .qRow .accordion-title .q-num {
  width: 10%;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .faq-wrapper .qRow .accordion-title .q-num {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .faq-wrapper .qRow .accordion-content {
    margin-left: 10%;
  }
}

.faqForm .logo {
  padding: 20px;
}
.faqForm .logo img {
  height: 62px;
  margin-bottom: 30px;
}
.faqForm .title {
  text-align: center;
}

/* Email Alert */
.form-wrapper {
  margin: 40px 0;
  padding: 50px 0;
  border-top: 1px solid var(--theme-color);
}
.form-wrapper form {
  width: 100%;
}
.form-wrapper input, .form-wrapper select {
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid var(--border-color);
  padding: 5px 20px 5px 10px;
}
.form-wrapper input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  width: 24px;
  height: 24px;
  padding: 0;
}
.form-wrapper textarea {
  width: 100%;
  height: 100px;
  border: 1px solid var(--border-color);
  padding: 5px 20px 5px 10px;
}
.form-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: right;
}
.form-wrapper .form-group {
  width: min(100%, 790px);
  margin: 0 auto;
  position: relative;
  display: grid;
  align-items: center;
  margin-bottom: 30px;
}
.form-wrapper .form-group label {
  font-family: "Marcellus";
  font-size: var(--font-main);
  font-weight: 400;
  letter-spacing: 2px;
  display: block;
  width: 100%;
  margin: 5px 0;
}
.form-wrapper .form-group label:after {
  content: ":";
}
.form-wrapper .form-group.checkbox-group {
  width: 100%;
  justify-content: center;
  grid-template-columns: 24px auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 50px 0;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}
.form-wrapper .form-group.btn-group {
  width: 100%;
  justify-content: center;
  grid-template-columns: 150px 150px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.form-wrapper .form-group.btn-group input {
  background-color: transparent;
  border-radius: 10px;
  border: 2px solid var(--theme-color);
  height: 56px;
  padding: 5px;
  font-family: "Marcellus";
  font-size: var(--font-submenu);
  font-weight: 400;
  letter-spacing: 2px;
}
.form-wrapper .captcha-group {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-group {
    grid-template-columns: 1fr 2fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .form-wrapper label:after {
    float: right;
  }
  .form-wrapper span.error_msg {
    grid-column: 2;
  }
}

/* Homepage */
.home-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.home-banner .btn-scrolldown {
  color: var(--theme-color);
  font-size: var(--font-submenu);
  font-weight: 300;
  letter-spacing: 3px;
  position: absolute;
  right: 60px;
  bottom: 50px;
  z-index: 10;
}
.home-banner .btn-scrolldown span.anchor {
  display: flex;
  align-items: center;
}
.home-banner .btn-scrolldown span.anchor span.icon {
  display: inline-block;
  width: 31px;
  height: 31px;
  background-image: url(../images/global/icon_scroll.png);
  background-size: contain;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .home-banner .btn-scrolldown {
    display: none;
  }
}
.home-banner .home-banner-wrapper, .home-banner .banner {
  width: 100%;
  height: 100vh;
}
.home-banner .full-width {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.home-banner .full-width .video {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}
.home-banner .full-width .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .full-width.end .video video {
  opacity: 0;
}
@media screen and (orientation: landscape) {
  .home-banner .banner1 .full-width.end {
    background-image: url(../images/home/cu_hpbanner_newSlogan_en.jpg);
  }
  .home-banner .banner1 .video.landscape {
    display: block;
  }
  .home-banner .banner1 .video.portrait {
    display: none;
  }
}
@media screen and (orientation: portrait) {
  .home-banner .banner1 .full-width.end {
    background-image: url(../images/home/cu_hpbanner_newSlogan_square_en.jpg);
  }
  .home-banner .banner1 .video.landscape {
    display: none;
  }
  .home-banner .banner1 .video.portrait {
    display: block;
  }
}
.home-banner .banner-result .result-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
}
.home-banner .banner-result .result-wrapper img {
  opacity: 0;
  transition: 0.5s ease-in-out 0.8s;
}
@media screen and (orientation: landscape) {
  .home-banner .banner-result .result-wrapper img {
    height: 50%;
    max-height: 400px;
  }
}
@media screen and (orientation: portrait) {
  .home-banner .banner-result .result-wrapper img {
    width: 70%;
  }
}
.home-banner .banner-result.slick-active .result-wrapper img {
  opacity: 1;
}
.home-banner .banner-5g .video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.home-banner .banner-5g .video-overlay:before, .home-banner .banner-5g .video-overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/home/5gBanner-gradient.png);
  background-repeat: no-repeat;
  background-size: 100% 70%;
}
.home-banner .banner-5g .video-overlay:after {
  transform: rotate(180deg);
}
.home-banner .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: #000;
}
.home-banner .slick-arrow span.text {
  font-family: "Italiana";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 10px;
  display: none;
}
.home-banner .slick-arrow span.icon {
  display: inline-block;
  width: 30px;
  height: 15px;
  background-image: url(../images/global/icon_arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home-banner .slick-arrow.slick-disabled {
  display: none !important;
}
.home-banner .slick-arrow.slick-prev {
  left: 20px;
}
.home-banner .slick-arrow.slick-prev span.text:before {
  content: "previous";
}
.home-banner .slick-arrow.slick-prev span.icon {
  transform: rotate(180deg);
}
.home-banner .slick-arrow.slick-next {
  right: 20px;
}
.home-banner .slick-arrow.slick-next span.text:before {
  content: "next";
}
@media screen and (min-width: 768px) {
  .home-banner .slick-arrow.slick-prev {
    left: 60px;
  }
  .home-banner .slick-arrow.slick-next {
    right: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .home-banner .slick-arrow span.text {
    display: inline-block;
  }
}

.home-stockquote {
  position: relative;
  padding: 30px;
  width: 100%;
  height: 175px;
  overflow: hidden;
  background-color: #000000;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .home-stockquote {
    width: min(100%, 610px);
    background-color: transparent;
    margin-top: -175px;
    margin-left: 30px;
  }
}

.home .inner-content {
  padding-top: 50vh;
  padding-bottom: 25vh;
  overflow: hidden;
  position: relative;
}
.home .home-section-start {
  position: absolute;
  top: 25%;
}
.home .home-section-end {
  position: absolute;
  top: 75%;
}
.home .title {
  font-family: "Italiana";
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 3px;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home .title {
    font-size: 70px;
    letter-spacing: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .home .title {
    font-size: 90px;
    letter-spacing: 12px;
  }
}

.home-content {
  position: relative;
}
.home-content .home-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.home-content .home-bg .bg-wrapper {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0;
}
.home-content .home-bg .bg-wrapper .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.home-content .home-bg .bg-wrapper .bg.act {
  opacity: 1;
}
.home-content .home-bg .bg-wrapper .bg.bg-news {
  background-image: url(../images/home/home_news_bg.png);
  background-size: cover;
}
.home-content .home-bg .bg-wrapper .bg.bg-financial {
  /* background-image: url(../images/home/home_financial_bg.png);
  background-position: bottom center;
  background-repeat: no-repeat; */
}
.home-content .home-bg .bg-wrapper .bg.bg-financial .video-bg {
  width: 100%;
  height: 100%;
}
.home-content .home-bg .bg-wrapper .bg.bg-financial .video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-content .home-bg .bg-wrapper .bg.bg-financial .video-bg.light { display: block; }
.home-content .home-bg .bg-wrapper .bg.bg-financial .video-bg.dark { display: none; }
.home-content .home-bg .bg-wrapper .bg.bg-operating {
  background-color: #979FA4;
}
.home-content .home-bg .bg-wrapper .bg.bg-results {
  background-image: url(../images/home/home_results_bg.png);
  background-size: cover;
}
.home-content .home-bg .bg-wrapper .bg.bg-esg {
  background-color: #F7F0E7;
}
.home-content .home-bg .bg-wrapper .bg.bg-corpvideo {
  background-color: #fff;
}
.home-content .home-bg .bg-wrapper .bg.bg-award {
  background-image: url(../images/home/home_award_bg.png);
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .home-content .home-bg .bg-wrapper .bg.bg-slogan.act:before {
    content: "";
    width: 2px;
    height: calc(100% + 92px);
    background-color: var(--line-color);
    position: absolute;
    top: 0;
    right: var(--indent);
    z-index: -1;
  }
}

.home-news {
  --font-news: 18px;
  color: #fff;
}
.home-news .home-section-start {
  top: 0;
}
.home-news .inner-content {
  padding-top: 25vh;
}
.home-news .news-wrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
}
.home-news .news-wrapper .left {
  position: relative;
  padding-top: 80px;
  display: flex;
}
.home-news .news-wrapper .right {
  position: relative;
  padding: 0 40px;
  margin: 0 auto;
}
.home-news .news-wrapper .img-wrapper {
  max-width: 65%;
  position: absolute;
  right: -10%;
  top: 0;
  opacity: 0;
}
.home-news .news-wrapper .img-wrapper.act {
  -webkit-animation: slideUp ease-in 0.5s both;
          animation: slideUp ease-in 0.5s both;
}
.home-news .news-wrapper .img-wrapper img {
  -webkit-animation: newsAmi 10s linear alternate infinite;
          animation: newsAmi 10s linear alternate infinite;
}
@-webkit-keyframes newsAmi {
  0% {
    transform: skewX(0) skewY(0) scale(1);
  }
  100% {
    transform: skewX(-3deg) skewY(3deg) scale(0.95);
  }
}
@keyframes newsAmi {
  0% {
    transform: skewX(0) skewY(0) scale(1);
  }
  100% {
    transform: skewX(-3deg) skewY(3deg) scale(0.95);
  }
}
.home-news .news-wrapper .title {
  margin-bottom: 60px;
  padding-left: 40px;
  margin-right: 7%;
  opacity: 0;
}
.home-news .news-wrapper .title.act {
  -webkit-animation: slideDown ease-in 0.5s both;
          animation: slideDown ease-in 0.5s both;
}
.home-news .year {
  font-size: var(--font-news);
  margin-bottom: 50px;
  opacity: 0;
}
.home-news .year.act {
  -webkit-animation: fadeIn ease-in 0.5s both;
          animation: fadeIn ease-in 0.5s both;
}
.home-news .item {
  max-width: 750px;
  margin-bottom: 50px;
  opacity: 0;
}
.home-news .item.act {
  -webkit-animation: slideLeft ease-in 0.5s both;
          animation: slideLeft ease-in 0.5s both;
}
.home-news .item.act:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.home-news .item.act:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.home-news .item.act:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.home-news .item.act:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.home-news .item.act:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.home-news .item .date {
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.home-news .item .date span {
  min-width: 120px;
  margin-right: 20px;
}
.home-news .item .date:after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid;
}
.home-news .item .news-title {
  font-size: var(--font-news);
  line-height: 1.3;
}
.home-news .item .news-title span {
  font-size: var(--font-btn);
  white-space: nowrap;
  text-align: right;
  margin-left: 20px;
  margin-top: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .home-news .news-wrapper .right {
    padding: 0 60px;
  }
  .home-news .news-wrapper .img-wrapper {
    max-width: 55%;
  }
  .home-news .news-wrapper .title {
    padding-left: 60px;
  }
  .home-news .year {
    margin-bottom: 70px;
  }
  .home-news .item {
    margin-bottom: 70px;
  }
  .home-news .item .date {
    margin-bottom: 20px;
  }
  .home-news .item .news-title span {
    margin-top: 0;
  }
  .home-news .item .news-title a {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .home-news .news-wrapper {
    display: flex;
  }
  .home-news .news-wrapper .left {
    width: 40%;
    justify-content: flex-end;
  }
  .home-news .news-wrapper .right {
    width: 60%;
    padding: 0 80px;
  }
  .home-news .news-wrapper .img-wrapper {
    max-width: 95%;
    right: 0;
    left: -15%;
    top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .home-news {
    --font-news: 21px;
  }
  .home-news .news-wrapper .title {
    letter-spacing: 15px;
  }
  .home-news .item .date {
    font-size: 36px;
  }
  .home-news .item .date span {
    min-width: 185px;
  }
}

.home-financial {
  position: relative;
}
.home-financial .financial-wrapper {
  width: min(100%, 1430px);
  margin: 0 auto;
  position: relative;
}
.home-financial .financial-title {
  position: relative;
  padding: 0 40px;
  opacity: 0;
}
.home-financial .financial-title.act {
  -webkit-animation: slideLeft 0.5s ease-in both;
          animation: slideLeft 0.5s ease-in both;
}
.home-financial .financial-title .period {
  font-size: var(--font-title);
  letter-spacing: 4px;
  white-space: nowrap;
}
.home-financial .financial-title .title {
  font-size: 40px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .home-financial .financial-title {
    padding: 0;
    position: absolute;
    right: 5%;
    top: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .home-financial .financial-title .title {
    font-size: 72px;
    padding-top: 50px;
  }
}
@media screen and (min-width: 1500px) {
  .home-financial .financial-title {
    right: 0;
    top: 15%;
  }
  .home-financial .financial-title .period {
    position: absolute;
    right: 100%;
  }
}
.home-financial .financial-data {
  position: relative;
  max-width: 1110px;
}
.home-financial .financial-data .financial-data-bg {
  position: relative;
  opacity: 0;
}
.home-financial .financial-data .financial-data-bg div {
  position: absolute;
  display: none;
}
.home-financial .financial-data .financial-data-bg div:nth-child(1) {
  width: 24.32%;
  top: 5%;
  left: 37.9%;
}
.home-financial .financial-data .financial-data-bg div:nth-child(2) {
  width: 37.3%;
  top: 37.8%;
  left: 5.4%;
}
.home-financial .financial-data .financial-data-bg div:nth-child(3) {
  width: 37.3%;
  top: 37.8%;
  right: 5%;
}
.home-financial .financial-data .financial-data-bg div:nth-child(4) {
  width: 24.4%;
  bottom: 4.5%;
  left: 37.8%;
}
.home-financial .financial-data .financial-data-bg div.center {
  background-color: var(--theme-color);
  width: 22.5%;
  height: 22.5%;
  transform: rotate(45deg);
  top: 38.5%;
  left: 38.8%;
  opacity: 0;
}
.home-financial .financial-data .financial-data-bg path.bg-path {
  fill: none;
  stroke: var(--theme-color);
  stroke-miterlimit: 1;
  stroke-width: 5px;
  stroke-dasharray: 1500px;
  stroke-dashoffset: 1500px;
  -webkit-animation: strokeAni 1s linear 0.5s both;
          animation: strokeAni 1s linear 0.5s both;
}
@-webkit-keyframes strokeAni {
  0% {
    stroke-dashoffset: 1500px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
@keyframes strokeAni {
  0% {
    stroke-dashoffset: 1500px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.home-financial .financial-data .financial-data-bg.act {
  -webkit-animation: fadeIn 0.5s ease-in both;
          animation: fadeIn 0.5s ease-in both;
}
.home-financial .financial-data .financial-data-bg.act div {
  display: block;
}
.home-financial .financial-data .financial-data-bg.act div.center {
  -webkit-animation: fadeIn 0.5s linear 1.5s both;
          animation: fadeIn 0.5s linear 1.5s both;
}
.home-financial .financial-data .item {
  position: absolute;
  text-align: center;
  display: grid;
  align-content: center;
  width: 25%;
  height: 25%;
  font-size: 10px;
  line-height: 1.2;
  opacity: 0;
}
.home-financial .financial-data .item.act {
  -webkit-animation: fadeIn 0.5s ease-in 2s both;
          animation: fadeIn 0.5s ease-in 2s both;
}
.home-financial .financial-data .item .caption {
  font-family: "Marcellus";
  color: var(--theme-color);
}
.home-financial .financial-data .item .value {
  font-size: 14px;
  font-weight: 400;
}
.home-financial .financial-data .item .unit {
  font-weight: 300;
}
.home-financial .financial-data .item .change {
  font-weight: 600;
}
.home-financial .financial-data .item .change span {
  display: inline-block;
  width: 7px;
  height: 6px;
  background-image: url(../images/global/icon_indicator.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home-financial .financial-data .item .change span.down {
  transform: rotate(180deg);
}
.home-financial .financial-data .item.item1 {
  height: 27%;
  top: 5%;
  left: 37.5%;
}
.home-financial .financial-data .item.item2 {
  top: 37.5%;
  left: 5%;
}
.home-financial .financial-data .item.item3 {
  bottom: 5%;
  left: 37.5%;
}
.home-financial .financial-data .item.item4 {
  top: 37.5%;
  right: 5%;
}
.home-financial .financial-data .item.item5 {
  top: 37.5%;
  left: 37.5%;
  color: #fff;
}
.home-financial .financial-data .item.item5 .caption {
  color: #fff;
}
.home-financial .financial-data .item.item5 .change span {
  background-image: url(../images/global/icon_indicator_white.png);
}
@media screen and (min-width: 768px) {
  .home-financial .financial-data .item {
    font-size: 16px;
    line-height: 1.3;
  }
  .home-financial .financial-data .item .caption {
    letter-spacing: 3px;
  }
  .home-financial .financial-data .item .value {
    font-size: 30px;
  }
  .home-financial .financial-data .item .change span {
    width: 11px;
    height: 9px;
  }
}
@media screen and (min-width: 1024px) {
  .home-financial .financial-data .item {
    font-size: 20px;
  }
  .home-financial .financial-data .item .value {
    font-size: 48px;
  }
}

.home-operating {
  font-weight: 400;
  color: #fff;
}
.home-operating .operating-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.home-operating .inner-content {
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.home-operating .operating-content {
  position: relative;
}
.home-operating .operating-content a {
  display: inline-block;
}
.home-operating .operating-title {
  position: absolute;
  left: 10%;
  top: 40px;
}
.home-operating .operating-title .period {
  font-size: var(--font-title);
  margin-bottom: 30px;
}
.home-operating .operating-title .title {
  font-size: 40px;
}
.home-operating .item-wrapper {
  display: flex;
  height: 680px;
  padding-left: 100px;
}
.home-operating .item {
  margin-right: 80px;
  display: flex;
}
.home-operating .item .data-title {
  font-family: "Marcellus";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 5px;
  line-height: 1.3;
}
.home-operating .item .data-title span {
  display: inline-block;
  padding: 60px 50px;
  background-color: #BC020F;
  border-radius: 60px;
}
.home-operating .item .data-wrapper {
  display: grid;
  justify-content: center;
  align-content: center;
  background-image: url(../images/home/home_operating_data_bg.png);
  background-repeat: no-repeat;
  border-radius: 130px;
  overflow: hidden;
}
.home-operating .item .data {
  white-space: nowrap;
  padding: 0 80px;
}
.home-operating .item .caption {
  font-family: "Marcellus";
  font-size: var(--font-subtitle);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
}
.home-operating .item .value {
  font-size: 36px;
}
.home-operating .item.item1 .data-title {
  align-self: flex-end;
}
.home-operating .item.item1 .data-title span {
  border-top-right-radius: 0;
}
.home-operating .item.item1 .data-wrapper {
  gap: 50px;
  max-width: 600px;
  height: 78%;
  background-size: auto 100%;
  background-position: center right 10%;
  border-bottom-left-radius: 0;
  margin-top: 30px;
}
.home-operating .item.item1 .value {
  text-align: right;
  margin-top: 10px;
}
.home-operating .item.item1 .unit {
  font-size: var(--font-subtitle);
  font-weight: 300;
}
.home-operating .item.item2 .data-title {
  margin-top: 60px;
}
.home-operating .item.item2 .data-title span {
  border-bottom-right-radius: 0;
  margin-right: -80px;
}
.home-operating .item.item2 .data-wrapper {
  max-width: 544px;
  height: 54.5%;
  background-size: auto 200%;
  background-position: top left 10%;
  border-top-left-radius: 0;
  margin-top: 200px;
}
.home-operating .item.item2 .value {
  font-size: 40px;
  margin-top: 20px;
  text-align: center;
}
.home-operating .item.item3 .data-title {
  align-self: flex-end;
}
.home-operating .item.item3 .data-title span {
  border-top-right-radius: 0;
}
.home-operating .item.item3 .data-wrapper {
  gap: 60px;
  max-width: 600px;
  height: 85%;
  background-size: auto 115%;
  background-position: 9% 10%;
  border-bottom-left-radius: 0;
}
.home-operating .item.item3 .value {
  margin-top: 30px;
}
.home-operating .item.item4 .data-title {
  margin-top: 70px;
  margin-right: -100px;
}
.home-operating .item.item4 .data-title span {
  border-bottom-right-radius: 0;
}
.home-operating .item.item4 .data-wrapper {
  max-width: 544px;
  height: 54.5%;
  background-size: auto 198%;
  background-position: top left 5%;
  border-top-left-radius: 0;
  margin-top: 220px;
  margin-right: 600px;
}
.home-operating .item.item4 .value {
  font-size: 40px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .home-operating .operating-content {
    position: relative;
  }
  .home-operating .operating-title {
    top: 200px;
    left: 200px;
  }
  .home-operating .operating-title .title {
    font-size: 72px;
  }
  .home-operating .item-wrapper {
    height: 824px;
    padding-left: 520px;
  }
  .home-operating .item {
    margin-right: 120px;
  }
  .home-operating .item .data-title {
    font-size: 36px;
  }
  .home-operating .item .data-title span {
    padding: 100px 80px;
    border-radius: 100px;
  }
  .home-operating .item .data-wrapper {
    border-radius: 200px;
  }
  .home-operating .item .data {
    padding: 0 160px;
  }
  .home-operating .item .value {
    font-size: 52px;
  }
  .home-operating .item.item1 .data-wrapper {
    width: 600px;
    height: 640px;
  }
  .home-operating .item.item2 .data-title span {
    margin-right: -120px;
  }
  .home-operating .item.item2 .data-wrapper {
    width: 544px;
    height: 450px;
    margin-top: 320px;
  }
  .home-operating .item.item2 .value {
    font-size: 72px;
  }
  .home-operating .item.item3 .data-wrapper {
    width: 600px;
    height: 700px;
  }
  .home-operating .item.item4 .data-title {
    margin-right: -150px;
  }
  .home-operating .item.item4 .data-wrapper {
    width: 544px;
    height: 450px;
    margin-top: 320px;
  }
  .home-operating .item.item4 .value {
    font-size: 72px;
  }
}

.home-results {
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
}
.home-results .results-wrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
}
.home-results .results-wrapper .img-wrapper {
  opacity: 0;
}
.home-results .results-wrapper .img-wrapper .img {
  width: 100%;
  max-width: 290px;
  margin: 0 auto 40px;
}
.home-results .results-wrapper .img-wrapper .img img {
  width: 100%;
  filter: drop-shadow(10px 80px 80px rgba(0, 0, 0, 0.3));
  -webkit-animation: resultsAmi 5s linear alternate infinite;
          animation: resultsAmi 5s linear alternate infinite;
}
@-webkit-keyframes resultsAmi {
  0% {
    filter: drop-shadow(10px 80px 80px rgba(0, 0, 0, 0.3));
  }
  100% {
    filter: drop-shadow(0px 40px 100px rgba(0, 0, 0, 0.5));
  }
}
@keyframes resultsAmi {
  0% {
    filter: drop-shadow(10px 80px 80px rgba(0, 0, 0, 0.3));
  }
  100% {
    filter: drop-shadow(0px 40px 100px rgba(0, 0, 0, 0.5));
  }
}
.home-results .results-wrapper .img-wrapper.act {
  -webkit-animation: slideRight 0.5s ease-in both;
          animation: slideRight 0.5s ease-in both;
}
.home-results .results-wrapper .text-wrapper {
  padding: 0 40px;
}
.home-results .title {
  opacity: 0;
}
.home-results .title.act {
  -webkit-animation: slideLeft 0.5s ease-in both;
          animation: slideLeft 0.5s ease-in both;
}
.home-results .period {
  font-size: 30px;
  font-weight: 100;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
}
.home-results .period.act {
  -webkit-animation: slideLeft 0.5s ease-in 0.1s both;
          animation: slideLeft 0.5s ease-in 0.1s both;
}
.home-results .links {
  font-size: var(--font-title);
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 3px;
  margin-bottom: 70px;
}
.home-results .links ul {
  width: 100%;
}
.home-results .links li {
  margin-bottom: 20px;
  opacity: 0;
}
.home-results .links li a {
  display: inline-block;
  transition: 0.3s;
}
.home-results .links li a:hover {
  transform: scale(1.05);
}
.home-results .links.act ul li:nth-child(1) {
  -webkit-animation: slideLeft 0.5s ease-in 0.1s both;
          animation: slideLeft 0.5s ease-in 0.1s both;
}
.home-results .links.act ul li:nth-child(2) {
  -webkit-animation: slideLeft 0.5s ease-in 0.2s both;
          animation: slideLeft 0.5s ease-in 0.2s both;
}
.home-results .links.act ul li:nth-child(3) {
  -webkit-animation: slideLeft 0.5s ease-in 0.3s both;
          animation: slideLeft 0.5s ease-in 0.3s both;
}
.home-results .links.act ul li:nth-child(4) {
  -webkit-animation: slideLeft 0.5s ease-in 0.4s both;
          animation: slideLeft 0.5s ease-in 0.4s both;
}
.home-results .note {
  font-size: 15px;
  line-height: 1.4;
  color: #802C19;
  opacity: 0;
}
.home-results .note.act {
  -webkit-animation: fadeIn 0.5s ease-in 0.8s both;
          animation: fadeIn 0.5s ease-in 0.8s both;
}
@media screen and (min-width: 768px) {
  .home-results .results-wrapper {
    display: flex;
  }
  .home-results .results-wrapper .img-wrapper {
    width: 36%;
    padding-top: 50px;
    padding-left: 30px;
  }
  .home-results .results-wrapper .img-wrapper .img {
    width: 90%;
    max-width: 100%;
    margin: 0;
    transform: rotate(10deg);
  }
  .home-results .results-wrapper .text-wrapper {
    width: 64%;
  }
  .home-results .text {
    max-width: 790px;
    padding: 0 20px;
    margin-right: 0;
    margin-left: auto;
  }
  .home-results .period {
    font-size: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .home-results .period {
    letter-spacing: 5px;
  }
  .home-results .links {
    letter-spacing: 5px;
  }
  .home-results .links ul {
    width: 50%;
  }
  .home-results .links li {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .home-results .results-wrapper .text-wrapper {
    padding-right: 10%;
  }
  .home-results .period {
    font-size: 60px;
    letter-spacing: 12px;
  }
}

.home-esg {
  font-weight: 300;
  text-align: center;
  line-height: 1.8;
  padding-bottom: 50vh;
}
.home-esg .img {
  max-width: 412px;
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
}
.home-esg .img .img-mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/home/home_esg_img_bg.png);
  background-size: auto 90%;
  background-position: center;
  -webkit-mask: url(../images/home/home_esg_img_mask.png);
          mask: url(../images/home/home_esg_img_mask.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-animation: esgImg 3s linear infinite alternate;
          animation: esgImg 3s linear infinite alternate;
}
@-webkit-keyframes esgImg {
  0% {
    background-size: auto 90%;
  }
  100% {
    background-size: auto 100%;
  }
}
@keyframes esgImg {
  0% {
    background-size: auto 90%;
  }
  100% {
    background-size: auto 100%;
  }
}
.home-esg .img.act {
  -webkit-animation: fadeIn 0.5s ease-in both;
          animation: fadeIn 0.5s ease-in both;
}
.home-esg .esg-wrapper {
  padding: 0 20px;
  display: grid;
  justify-items: center;
}
.home-esg .title {
  letter-spacing: 10px;
  text-indent: 10px;
  opacity: 0;
}
.home-esg .title.act {
  -webkit-animation: slideUp 0.5s ease-in both;
          animation: slideUp 0.5s ease-in both;
}
.home-esg .desc {
  font-size: var(--font-title);
  padding: 0 4% 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
}
.home-esg .desc.act {
  -webkit-animation: slideUp 0.5s ease-in 0.2s both;
          animation: slideUp 0.5s ease-in 0.2s both;
}
.home-esg .desc span {
  color: #558060;
}
.home-esg .btn-wrapper {
  letter-spacing: 3px;
  opacity: 0;
}
.home-esg .btn-wrapper.act {
  -webkit-animation: slideUp 0.5s ease-in 0.4s both;
          animation: slideUp 0.5s ease-in 0.4s both;
}
@media screen and (min-width: 1200px) {
  .home-esg .title {
    letter-spacing: 25px;
    text-indent: 25px;
  }
  .home-esg .desc {
    padding: 0 4% 50px;
    margin-bottom: 40px;
  }
}

.home-corpvideo {
  position: relative;
  text-align: center;
  color: #fff;
  padding-bottom: 25vh;
  --path: ellipse(130% 90% at 50% 0);
  transition: 0.3s linear;
}
.home-corpvideo .home-section-end {
  top: 85%;
}
.home-corpvideo .corpvideo-wrapper {
  position: relative;
}
.home-corpvideo .video-overlay-wrapper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 1;
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.5));
}
.home-corpvideo .video-overlay-wrapper .video-overlay {
  width: 100%;
  height: 100%;
  background-color: #C97F4D;
  -webkit-clip-path: var(--path);
          clip-path: var(--path);
}
.home-corpvideo .video-text {
  position: absolute;
  width: 100%;
  height: 150vh;
  z-index: 2;
}
.home-corpvideo .video-text .text {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-top: 25vh;
}
.home-corpvideo .video-text .title {
  margin-bottom: 50px;
}
.home-corpvideo .video-text .btn-play {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-image: url(../images/global/icon_play.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.home-corpvideo .video-text .btn-play:hover {
  transform: scale(1.1);
}
.home-corpvideo .video-wrapper {
  width: 100%;
  height: 300vh;
}
.home-corpvideo .video-wrapper .video {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-clip-path: var(--path);
          clip-path: var(--path);
}
.home-corpvideo .video-wrapper .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .home-corpvideo {
    --path: ellipse(90% 90% at 50% 0);
  }
}
@media screen and (min-width: 1200px) {
  .home-corpvideo .video-text .btn-play {
    width: 160px;
    height: 160px;
  }
}

.home-award .award-wrapper {
  width: var(--main-container);
  margin: 0 auto;
  position: relative;
}
.home-award .award-content {
  width: 100%;
  max-width: 1580px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: #9B6637;
}
.home-award .text-wrapper {
  width: 52%;
  flex-grow: 1;
  padding: 13% 10% 0;
}
.home-award .img-wrapper {
  width: 60%;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
}
.home-award .img-wrapper img {
  margin-left: 7%;
  filter: drop-shadow(50px 80px 80px rgba(144, 122, 122, 0.7));
  -webkit-animation: awardAni 2s ease-in-out alternate infinite;
          animation: awardAni 2s ease-in-out alternate infinite;
}
.home-award .img-wrapper.act {
  -webkit-animation: slideLeft 0.5s ease-in both;
          animation: slideLeft 0.5s ease-in both;
}
@-webkit-keyframes awardAni {
  0% {
    filter: drop-shadow(50px 80px 80px rgba(144, 122, 122, 0.7));
  }
  100% {
    filter: drop-shadow(-10px 40px 60px rgb(144, 122, 122));
  }
}
@keyframes awardAni {
  0% {
    filter: drop-shadow(50px 80px 80px rgba(144, 122, 122, 0.7));
  }
  100% {
    filter: drop-shadow(-10px 40px 60px rgb(144, 122, 122));
  }
}
.home-award .title {
  display: block;
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid;
  opacity: 0;
}
.home-award .title.act {
  -webkit-animation: slideRight 0.5s ease-in both;
          animation: slideRight 0.5s ease-in both;
}
.home-award .btn-wrapper {
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0;
}
.home-award .btn-wrapper.act {
  -webkit-animation: slideLeft 0.5s ease-in 0.2s both;
          animation: slideLeft 0.5s ease-in 0.2s both;
}
@media screen and (min-width: 1024px) {
  .home-award .text-wrapper {
    padding: 13% 40px 0;
  }
  .home-award .img-wrapper {
    width: 48%;
  }
}

.home-slogan {
  position: relative;
}
.home-slogan .slogan {
  font-family: "Italiana";
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 5px;
  color: #B7B7B7;
  white-space: nowrap;
  padding: 20px 0;
  display: inline-block;
  /* &.slogan1 {
      animation: sloganAni 18s both infinite linear;
  }
  &.slogan2 {
      animation: sloganAni 20s both infinite linear reverse;
  }
  &.slogan3 {
      animation: sloganAni 22s both infinite linear;
  } */
}
.home-slogan .slogan span {
  font-size: 28px;
  letter-spacing: 2px;
}
.home-slogan .slogan.slogan1 {
  animation: sloganAni 28s both infinite linear reverse;
}
.home-slogan .slogan.slogan2 {
  -webkit-animation: sloganAni 30s both infinite linear;
          animation: sloganAni 30s both infinite linear;
}
.home-slogan .slogan.slogan3 {
  animation: sloganAni 32s both infinite linear reverse;
}
@media screen and (min-width: 768px) {
  .home-slogan .slogan {
    font-size: 70px;
    letter-spacing: 10px;
  }
  .home-slogan .slogan span {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .home-slogan .slogan {
    font-size: 135px;
    letter-spacing: 10px;
    /* &.slogan1 {
        animation-duration: 23s
    }
    &.slogan2 {
        animation-duration: 25s;
    }
    &.slogan3 {
        animation-duration: 27s;
    } */
  }
  .home-slogan .slogan span {
    font-size: 80px;
    letter-spacing: 8px;
  }
  .home-slogan .slogan.slogan1 {
    -webkit-animation-duration: 48s;
            animation-duration: 48s;
  }
  .home-slogan .slogan.slogan2 {
    -webkit-animation-duration: 50s;
            animation-duration: 50s;
  }
  .home-slogan .slogan.slogan3 {
    -webkit-animation-duration: 52s;
            animation-duration: 52s;
  }
}

@-webkit-keyframes sloganAni {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

@keyframes sloganAni {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ESG Style */
.esg {
  overflow-x: hidden;
}
.esg img {
  margin: 0 auto;
}
.esg .page-header-wrapper:before {
  background-color: var(--esg-theme-color);
}
.esg .page-header-wrapper .breadcrumbs ul li:after {
  border-color: #017264;
}
.esg .page-header-wrapper a, .esg .page-header-wrapper span, .esg .page-header-wrapper h1 {
  color: #017264;
}
.esg .page-section-indicator span {
  right: -108px;
  top: 0;
}
.esg a.color_B9944B {
  color: #B9944B;
}
.esg a.color_39a1db {
  color: #39a1db;
}
.esg a.color_8ec43f {
  color: #8ec43f;
}
.esg a.color_f39700 {
  color: #f39700;
}
.esg a.color_00adb2 {
  color: #00adb2;
}
.esg a.color_EC3D93 {
  color: #EC3D93;
}
.esg a.color_00AFAB {
  color: #00AFAB;
}
.esg a.color_F47F33 {
  color: #F47F33;
}
.esg a.color_B2D04A {
  color: #B2D04A;
}
.esg a.color_8E4394 {
  color: #8E4394;
}
.esg a.color_26AF54 {
  color: #26AF54;
}
.esg a.color_ED4048 {
  color: #ED4048;
}
.esg a.color_0181C1 {
  color: #0181C1;
}
.esg a.color_EA7B1C {
  color: #EA7B1C;
}
.esg a.color_146097 {
  color: #146097;
}
.esg a.color_957B4B {
  color: #957B4B;
}
.esg a.color_89517A {
  color: #89517A;
}
.esg a.color_00622E {
  color: #00622E;
}
.esg a.color_4D6381 {
  color: #4D6381;
}
.esg a.color_902909 {
  color: #902909;
}
.esg a.color_678821 {
  color: #678821;
}
.esg ul.listDot li:before {
  color: var(--esg-theme-color);
}
.esg ul.listDot.color_B9944B li:before {
  color: #B9944B;
}
.esg ul.listDot.color_39a1db li:before {
  color: #39a1db;
}
.esg ul.listDot.color_8ec43f li:before {
  color: #8ec43f;
}
.esg ul.listDot.color_f39700 li:before {
  color: #f39700;
}
.esg ul.listDot.color_00adb2 li:before {
  color: #00adb2;
}
.esg ul.listDot.color_EC3D93 li:before {
  color: #EC3D93;
}
.esg ul.listDot.color_00AFAB li:before {
  color: #00AFAB;
}
.esg ul.listDot.color_F47F33 li:before {
  color: #F47F33;
}
.esg ul.listDot.color_B2D04A li:before {
  color: #B2D04A;
}
.esg ul.listDot.color_8E4394 li:before {
  color: #8E4394;
}
.esg ul.listDot.color_26AF54 li:before {
  color: #26AF54;
}
.esg ul.listDot.color_ED4048 li:before {
  color: #ED4048;
}
.esg ul.listDot.color_0181C1 li:before {
  color: #0181C1;
}
.esg ul.listDot.color_EA7B1C li:before {
  color: #EA7B1C;
}
.esg ul.listDot.color_146097 li:before {
  color: #146097;
}
.esg ul.listDot.color_957B4B li:before {
  color: #957B4B;
}
.esg ul.listDot.color_89517A li:before {
  color: #89517A;
}
.esg ul.listDot.color_00622E li:before {
  color: #00622E;
}
.esg ul.listDot.color_4D6381 li:before {
  color: #4D6381;
}
.esg ul.listDot.color_902909 li:before {
  color: #902909;
}
.esg ul.listDot.color_678821 li:before {
  color: #678821;
}
.esg ul.anchor-wrapper > li:before {
  background-image: url(../images/global/icon_anchor_green.png);
}
.esg .esg-nav-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  position: absolute;
  bottom: 50px;
}
.esg .esg-nav-wrapper a {
  display: block;
  text-align: center;
  color: #1C9F8F;
  margin: 0 10px 40px;
}
.esg .esg-nav-wrapper .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 85px;
  padding-left: 20px;
  background-image: url(../images/esg/esg_nav_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Marcellus";
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.esg .esg-nav-wrapper .icon img {
  max-width: 58px;
  width: 60%;
}
.esg .esg-nav-wrapper .icon.icon-environmental img {
  margin-top: 5px;
}
.esg .esg-nav-wrapper .icon.icon-governance img {
  margin-bottom: 5px;
}
.esg .esg-nav-wrapper .text {
  font-size: var(--font-note);
  font-weight: 400;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .esg .esg-nav-wrapper .icon {
    width: 121px;
    height: 101px;
  }
}
@media screen and (min-width: 1500px) {
  .esg .page-section-indicator {
    opacity: 0;
  }
}
@media screen and (min-width: 1700px) {
  .esg .page-section-indicator {
    opacity: 1;
  }
  .esg .esg-nav-wrapper {
    bottom: auto;
    top: 230px;
    left: 3%;
    width: 125px;
    flex-wrap: wrap;
  }
  .esg .esg-nav-wrapper a {
    margin: 0 0 40px;
  }
}

.esg-overview .content {
  max-width: 1130px;
}
.esg-overview .content a {
  color: #14A999;
}
.esg-overview .content a.btn-more {
  letter-spacing: 3px;
}
.esg-overview .content a:hover {
  color: #017264;
}
.esg-overview .msg-wrapper {
  margin-bottom: 40px;
}
.esg-overview .msg-wrapper .top {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.esg-overview .msg-wrapper .top .img {
  width: min(40%, 300px);
  flex-shrink: 0;
}
.esg-overview .msg-wrapper .top .text {
  padding: 30px 4% 0;
  font-size: 16px;
  text-align: center;
}
.esg-overview .msg-wrapper .top .text span {
  letter-spacing: 4px;
  margin-left: 4px;
}
.esg-overview .msg-wrapper .top .text span.highlight {
  font-family: "Italiana";
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 5px;
  margin-left: 5px;
}
.esg-overview .msg-wrapper .msg {
  background-color: #D1EBEE;
  font-weight: 300;
  border-radius: 0 50px 50px;
  padding: 40px 30px;
}
.esg-overview .msg-wrapper .msg p {
  font-size: var(--font-subtitle);
  line-height: 1.8;
  letter-spacing: 1px;
}
.esg-overview .msg-wrapper .btn-wrapper {
  text-align: center;
}
.esg-overview .msg-wrapper .btn-wrapper a {
  color: #9B6637;
}
.esg-overview .msg-wrapper .btn-wrapper a:hover {
  color: #54371e;
}
@media screen and (min-width: 768px) {
  .esg-overview .msg-wrapper .top .text {
    font-size: 20px;
  }
  .esg-overview .msg-wrapper .top .text span {
    letter-spacing: 8px;
    margin-left: 8px;
  }
  .esg-overview .msg-wrapper .top .text span.highlight {
    letter-spacing: 17px;
    margin-left: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .esg-overview .msg-wrapper .top .text {
    font-size: 30px;
  }
  .esg-overview .msg-wrapper .msg {
    border-radius: 0 80px 80px;
    padding: 8% 9% 7%;
  }
  .esg-overview .msg-wrapper .btn-wrapper {
    margin-top: 35px;
  }
}
.esg-overview .esg-download-wrapper {
  margin-bottom: 40px;
}
.esg-overview .esg-download {
  background-image: linear-gradient(to right, #ccc 20%, #fff 0%);
  background-size: 8px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.esg-overview .esg-download .row {
  width: 100%;
  padding: 25px 0;
}
.esg-overview .esg-download .row .title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.esg-overview .esg-download .row .dlButton {
  padding: 10px 0;
  flex-shrink: 0;
}
.esg-overview .esg-download .row a {
  text-align: center;
  font-weight: 500;
  display: block;
  border-radius: 10px;
  border: 2px solid #BAC93C;
  padding: 10px 3px;
  margin: 5px 0;
}
.esg-overview .esg-download .row .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #C1D12E;
  flex-shrink: 0;
}
.esg-overview .esg-download .row .icon.highlight {
  background-color: #8CCFD7;
}
.esg-overview .esg-download .row .icon img {
  height: 30px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .esg-overview .esg-download .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .esg-overview .esg-download .row a {
    display: inline-block;
    margin: 0 2px;
  }
}
@media screen and (min-width: 1024px) {
  .esg-overview .esg-download .row a {
    padding: 10px 20px;
    margin: 0 5px;
  }
  .esg-overview .esg-download .row .icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .esg-overview .esg-download .row .icon img {
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .esg-overview .esg-download .row a {
    padding: 10px 30px;
  }
}
.esg-overview .esg-download .ref-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.esg-overview .esg-download .ref-list.act {
  max-height: 600px;
  padding-bottom: 40px;
}
.esg-overview .esg-download .ref-list a {
  display: inline-block;
  line-height: 22px;
  background-image: url(../images/global/icon_pdf.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding: 10px 0 10px 34px;
  color: inherit;
}
.esg-overview .esg-download .ref-list a:hover {
  color: #14A999;
}
.esg-overview .esg-section {
  padding-top: 80px;
}
.esg-overview .esg-section .title-wrapper {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.esg-overview .esg-section .title-wrapper .icon {
  margin-right: 25px;
}
.esg-overview .esg-section .title-wrapper .icon img {
  width: 58px;
}
.esg-overview .esg-section .title-wrapper .section-title {
  margin-bottom: 0;
}
.esg-overview .esg-section .title {
  color: #9B6637;
}
.esg-overview .esg-section .subtitle {
  color: #9B6637;
}
.esg-overview .esg-section a:hover .subtitle {
  color: #7f522b;
}
.esg-overview .esg-section a.btn-more {
  font-size: var(--font-note);
  font-weight: 300;
}
.esg-overview .esg-section .item-wrapper {
  padding-top: 70px;
}
.esg-overview .esg-section .item {
  margin-bottom: 40px;
}
.esg-overview .esg-section .item .img {
  margin-bottom: 20px;
}
.esg-overview .esg-section .item .text {
  line-height: 1.5;
  margin-bottom: 20px;
}
.esg-overview .esg-section .item ul li {
  margin-bottom: 10px;
  padding-left: 25px;
}
.esg-overview .esg-section .item .btn-more {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .esg-overview .esg-section .item-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.esg-content .subtitle {
  color: #129383;
}
.esg-content .content {
  padding-bottom: 300px;
}
.esg-content .content a.green, .esg-content .content a:hover {
  color: var(--esg-text-color);
}
.esg-content.environmental .section-title, .esg-content.social .section-title {
  max-width: 1130px;
  font-family: "Marcellus";
  padding-top: 90px;
}
.esg-content.environmental .content, .esg-content.social .content {
  padding-top: 30px;
}
.esg-content .services-wrapper .item {
  display: flex;
}
.esg-content .services-wrapper .item .icon {
  width: 80px;
  padding-right: 20px;
  padding-top: 5px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .esg-content .services-wrapper .item .icon {
    width: 50px;
    padding-right: 15px;
  }
}
.esg-content .img-wrapper.with-text img {
  order: 2;
  margin: 15px auto;
}
@media screen and (min-width: 768px) {
  .esg-content .img-wrapper.with-text img {
    float: right;
    max-width: 55%;
    margin: 15px 0 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .esg-content .img-wrapper.with-text {
    display: flex;
    flex-wrap: wrap;
  }
}
.esg-content.articles.corpinfo .row {
  justify-content: space-between;
}
.esg-content.articles.corpinfo .row .left {
  width: auto;
}
.esg-content.articles.corpinfo .btn-download {
  margin-bottom: 0;
}

.esg-content.esg-message {
  padding-top: 90px;
  padding-bottom: 90px;
}
.esg-content .chairman-signature {
  line-height: 1.3;
}
.esg-content .chairman-signature img {
  width: 216px;
  margin: 20px 0;
}

/* Media */
.photo-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  padding-bottom: 60px;
}
.photo-wrapper .img {
  overflow: hidden;
  position: relative;
}
.photo-wrapper .img img {
  width: 100%;
}

.photo-popup-wrapper {
  text-align: center;
  padding: 40px 40px 0;
}
.photo-popup-wrapper img {
  margin: 0 auto 20px;
}

.photo-popup .white-popup {
  max-width: 700px;
}

.director-photo-title {
  font-family: "Italiana";
  font-size: var(--font-section);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 25px;
  border-bottom: #c08c8d 1px solid;
  padding-bottom: 10px;
}

.director-photo-wrapper .item {
  padding: 0 10px;
  max-width: 500px;
}
.director-photo-wrapper .item .img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.director-photo-wrapper .item .img:before {
  content: "";
  width: 100%;
  height: 42%;
  background-color: var(--bg-color);
  border-radius: 40px;
  position: absolute;
  bottom: 0;
}
.director-photo-wrapper .item .img img {
  position: absolute;
  top: 0;
  left: 0;
}
.director-photo-wrapper .item .name {
  font-family: "Italiana";
  font-size: var(--font-title-extra);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 10px 0 5px;
}
.director-photo-wrapper .item .title {
  font-family: inherit;
  font-size: var(--font-note);
  font-weight: 400;
  letter-spacing: 1px;
}
.director-photo-wrapper .slick-dots {
  text-align: center;
}
.director-photo-wrapper .slick-dots li {
  display: inline-block;
  padding-left: 0;
  margin: 0 10px;
}
.director-photo-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.director-photo-wrapper .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: " ";
  opacity: 0.25;
  background-color: #000;
  border-radius: 50%;
}
.director-photo-wrapper .slick-dots li.slick-active button::before {
  opacity: 1;
  background-color: #c61d0f;
}

.corpimages .yearWrapper {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--theme-color);
  justify-content: center;
}
.corpimages .yearWrapper .yearSelect {
  width: 410px;
  text-align: center;
}

.video .video-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 60px;
}
.video .video-wrapper .img {
  overflow: hidden;
  border-radius: 90px 90px 90px 0;
  position: relative;
}
.video .video-wrapper .img .bg {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video .video-wrapper .desc .title {
  margin-bottom: 0;
  padding: 10px 0 5px;
}

.video-popup .white-popup {
  max-width: 1200px;
  background: transparent;
}