@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    0% {
    }
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    0% {
    }
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   +retina(/images/mypic.jpg, 2);
 *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
.loader-wrap {
  background-color: #fff;
  -webkit-transition: .8s .5s ease, opacity .5s .3s ease;
  transition: .8s .5s ease, opacity .5s .3s ease;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
}

.loading-bar {
  -webkit-transition: .8s ease;
  transition: .8s ease;
  height: 2px;
  position: fixed;
  top: 60vh;
  left: 0;
  right: 0;
}

.loading-progress {
  min-width: 0%;
  height: 100%;
  -webkit-transition: min-width .8s ease, opacity .5s 1s ease;
  transition: min-width .8s ease, opacity .5s 1s ease;
  background-color: rgba(20, 122, 192, 0.7);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: 0;
}

.loading-progress-number {
  font-family: 'Noto Serif','Noto Serif JP','Noto Serif TC','Noto Serif KR','Montserrat', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-size: 60px;
  color: rgba(20, 122, 192, 0.7);
  -webkit-transition: .8s ease;
  transition: .8s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}

.loaded .loader-wrap {
  opacity: 0;
  z-index: -100;
}

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

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #000000;
  background-color: #F5F5F5;
  font-family: 'Noto Serif TC', 'Noto Serif JP','Noto Serif','Noto Serif KR','Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 500;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: optimizequality;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
}

@media (max-width: 767px) {
  body {
    font-size: 1em;
  }
}

body.loading-out {
  opacity: 0;
}

.menu {
  -webkit-transition: all .4s;
  transition: all .4s;
  display: none;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .menu {
    display: block;
  }
}

.menu:hover {
  opacity: .8;
}

.menu .menu-ic, .menu .menu-ic-dark {
  display: inline-block;
  width: 27px;
  height: 7px;
}

.menu .menu-ic {
  background: url("../images/menu-m.png") no-repeat;
  background-size: contain;
  display: none;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .menu .menu-ic {
    background: url("../images/menu-m@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu .menu-ic {
    background: url("../images/menu-m@2x.png") no-repeat;
    background-size: contain;
  }
}

.menu .menu-ic-dark {
  background: url("../images/menu-m-dark.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .menu .menu-ic-dark {
    background: url("../images/menu-m-dark@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu .menu-ic-dark {
    background: url("../images/menu-m-dark@2x.png") no-repeat;
    background-size: contain;
  }
}

.menu-block-m .menu-ic {
  display: block;
}

.lang-list {
  position: absolute;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 10px 7px;
  font-size: 1em;
  display: none;
}

@media (max-width: 1199px) {
  .lang-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #000000;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    top: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
  }
  .lang-list.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.lang-list .cancel-list {
  position: relative;
  z-index: 9;
}

.lang-list .cancel-btn-m {
  position: absolute;
  right: 15px;
  top: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon/close.svg);
  background-size: cover;
  background-position: center center;
}

.lang-list li {
  border-bottom: 1px dashed #000000;
  padding: 10px 28px;
  text-align: center;
}

.lang-list li:nth-of-type(1) {
  padding-top: 0;
}

.lang-list li:nth-last-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .lang-list li {
    padding: 15px 28px;
  }
}

.lang-list a {
  color: #333333;
  font-weight: 500;
}

header {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50.52%, #F5F5F5), to(rgba(245, 245, 245, 0)));
  background: linear-gradient(180deg, #F5F5F5 50.52%, rgba(245, 245, 245, 0) 100%);
  height: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 58px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header a {
  color: #333333;
}

header a:hover {
  color: #333333;
}

header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  header {
    padding: 25px 30px;
    padding: 30px 40px 20px 40px;
  }
}

@media (max-width: 575px) {
  header {
    padding: 4vh 12px 20px 28px;
    height: auto;
  }
}

header .logo-block, header .logo-block-dark {
  max-width: 11.35%;
  -ms-flex-preferred-size: 11.35%;
      flex-basis: 11.35%;
}

@media (max-width: 575px) {
  header .logo-block, header .logo-block-dark {
    max-width: 120px;
    -ms-flex-preferred-size: 120px;
        flex-basis: 120px;
  }
}

header .logo-block img, header .logo-block-dark img {
  max-width: 100%;
}

header .logo-block {
  display: none;
}

header .logo-block-dark {
  display: block;
}

header .header-list {
  margin-left: auto;
  margin-right: -22.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  header .header-list {
    display: none;
  }
}

header .header-list li {
  padding: 0 22.5px;
}

header .header-link {
  color: #333333;
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.01em;
}

header .header-link.active {
  color: #4A817D;
}

header .lang-block {
  display: block;
  margin-left: 74px;
  border: 1px solid #333333;
  padding: 10px 20px 10px 15px;
  position: relative;
}

@media (max-width: 1199px) {
  header .lang-block {
    display: none;
  }
}

header .lang-btn {
  font-weight: 700;
}

header .lang-btn span {
  display: inline-block;
  min-width: 65px;
}

header .lang-btn i {
  display: inline-block;
  margin-left: 36px;
  font-size: 12px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.menu-block-m {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 214px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 42px 36px 32px;
  font-weight: 600;
  font-size: 1em;
  color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: none;
}

@media (max-width: 1199px) {
  .menu-block-m.block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.menu-block-m.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 575px) {
  .menu-block-m {
    font-size: 0.875em;
    padding: 6.3vh 42px 20px 32px;
  }
}

.menu-block-m a {
  color: #fff;
}

.menu-block-m ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.menu-block-m .copyright-m {
  color: #fff;
}

.menu-block-m .menu-list {
  margin-top: 32vh;
  margin-bottom: 5.5vh;
}

@media (max-width: 575px) {
  .menu-block-m .menu-list {
    margin-top: 15vh;
    margin-bottom: 8.5vh;
  }
}

.menu-block-m .menu-list li {
  padding: 12px 0;
  position: relative;
}

.menu-block-m .menu-list li:nth-of-type(1) {
  padding-top: 0;
}

.menu-block-m .menu-list li:nth-of-type(1)::after {
  top: 25%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.menu-block-m .menu-list li:nth-last-of-type(1) {
  padding-bottom: 0;
}

.menu-block-m .menu-list li:nth-last-of-type(1)::after {
  top: 75%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}

.menu-block-m .menu-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 8px;
  height: 8px;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .menu-block-m .menu-list li::after {
    background: url("../images/arrow-right@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu-block-m .menu-list li::after {
    background: url("../images/arrow-right@2x.png") no-repeat;
    background-size: contain;
  }
}

.menu-block-m .lang-block-m {
  margin-bottom: 27vh;
  display: none;
}

@media (max-width: 1199px) {
  .menu-block-m .lang-block-m {
    display: block;
    margin-bottom: auto;
  }
}

.menu-block-m .lang-btn-m {
  text-decoration: underline;
}

.menu-block-m .copyright-m {
  font-size: 0.75em;
  white-space: nowrap;
}

.menu-block-m .order-btn {
  font-weight: 700;
  font-size: 0.875em;
  color: #000000;
  background-color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  bottom: 86px;
  left: 0;
  padding: 17px 9px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: none;
}

@media (max-width: 1199px) {
  .menu-block-m .order-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 280px;
  }
}

@media (max-width: 575px) {
  .menu-block-m .order-btn {
    bottom: 150px;
  }
}

.menu-block-m .order-btn .date-icon {
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/icon/date-icon.png") no-repeat;
  background-size: contain;
  margin-bottom: 7px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .menu-block-m .order-btn .date-icon {
    background: url("../images/icon/date-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu-block-m .order-btn .date-icon {
    background: url("../images/icon/date-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

.copyright-block-m {
  display: none;
  font-size: 0.75em;
  font-weight: 800;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 10;
  padding: 20px 20px;
  text-align: center;
  color: #333333;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(46.55%, #FFFFFF), color-stop(116.07%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFFFFF 46.55%, rgba(255, 255, 255, 0) 116.07%);
}

.copyright-block-m .copyright {
  line-height: 1;
}

@media (max-width: 1199px) {
  .copyright-block-m {
    display: block;
  }
}

.copyright-block-m.index {
  text-align: right;
  color: #fff;
  background: transparent;
}

.sidebar {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #333333;
  padding-top: 13.48vh;
  padding-left: 0;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 1.3vh;
  font-size: 0.9375em;
  padding-right: 2.6vw;
  height: 100vh;
  padding-bottom: 20px;
}

@media (max-height: 830px) {
  .sidebar {
    padding-top: 10.5vh;
    font-size: 0.8125em;
  }
}

@media (max-width: 1549px) {
  .sidebar {
    padding-right: .8vw;
  }
}

@media (max-width: 1199px) {
  .sidebar {
    display: none;
  }
}

.sidebar a {
  color: #333333;
  letter-spacing: 2px;
}

.sidebar a.active {
  color: #4A817D;
  font-weight: 900;
}

.sidebar .sidebar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: -2.96vh 0;
}

.sidebar .sidebar-list li {
  display: block;
  padding: 2.96vh 0;
}

.sidebar .copyright {
  margin: 23.14vh 0 0 0;
  font-weight: bold;
  font-size: 1.1vh;
  font-size: 12px;
}

@media (max-height: 930px) {
  .sidebar .copyright {
    margin: auto 0 0 0;
    letter-spacing: 1px;
  }
}

.check-icon {
  display: inline-block;
  width: 21px;
  height: 15px;
  background: url("../images/check-icon.png") no-repeat;
  background-size: contain;
}

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

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .check-icon {
    background: url("../images/check-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

b, strong {
  font-weight: bold;
}

a {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

@media (min-width: 1200px) {
  a:hover {
    opacity: .7;
  }
}

.scroll-block {
  position: fixed;
  z-index: 999;
  bottom: 3.5vh;
  right: 7.5vw;
}

@media (max-width: 1549px) {
  .scroll-block {
    right: 4.5vw;
  }
}

@media (max-width: 1199px) {
  .scroll-block {
    display: none;
  }
}

.scroll-block .scroll-line {
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  width: 2px;
  height: 79px;
  background: url("../images/scroll-line.png") no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .scroll-block .scroll-line {
    background: url("../images/scroll-line@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .scroll-block .scroll-line {
    background: url("../images/scroll-line@2x.png") no-repeat;
    background-size: contain;
  }
}

.scroll-block p {
  margin-bottom: 0;
  font-size: 1em;
}

@media (max-width: 1439px) {
  .scroll-block p {
    font-size: 0.875em;
  }
}

.mains-container {
  position: relative;
}

.mains-container::before {
  position: fixed;
  top: 60%;
  left: 0%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  content: "";
  width: 30%;
  height: unset;
  padding-top: calc(30% / 524 * 524);
  background: url("../images/mains-bg-icon.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .mains-container::before {
    background: url("../images/mains-bg-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mains-container::before {
    background: url("../images/mains-bg-icon@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1439px) {
  .mains-container::before {
    width: 30%;
    height: unset;
    padding-top: calc(30% / 524 * 524);
  }
}

.news-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1em;
  margin: 0 -80px;
}

@media (max-width: 1649px) {
  .news-list {
    margin: 0 -4.1vw;
  }
}

@media (max-width: 991px) {
  .news-list {
    margin: 0 -2vw;
  }
}

@media (max-width: 575px) {
  .news-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -23px;
  }
}

.news-list a {
  color: #333333;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.news-list a::before {
  display: none;
  content: "";
  width: 57px;
  height: 57px;
  margin-right: 7px;
  background: url("../images/icon/news-active.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .news-list a::before {
    background: url("../images/icon/news-active@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .news-list a::before {
    background: url("../images/icon/news-active@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 575px) {
  .news-list a::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-101%, -50%);
            transform: translate(-101%, -50%);
    width: 25px;
    height: 25px;
  }
}

.news-list a.active::before {
  display: inline-block;
}

@media (min-width: 1200px) {
  .news-list a:hover {
    opacity: 1;
    color: #4A817D;
  }
}

@media (max-width: 575px) {
  .news-list a {
    font-size: 0.9375em;
  }
}

.news-list li {
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1649px) {
  .news-list li {
    padding: 0 4.1vw;
  }
}

@media (max-width: 991px) {
  .news-list li {
    padding: 0 2vw;
  }
}

@media (max-width: 575px) {
  .news-list li {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 0 23px;
  }
}

.news-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9375em;
  color: #fff;
  background-color: #337C86;
  text-align: center;
  line-height: 1.5;
  padding: 2px 15px;
  margin-bottom: 15px;
}

.news-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.news-date {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 26px;
  color: #4A817D;
  margin-right: 30px;
  font-weight: 400;
  font-family: "Ovo";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 575px) {
  .news-date {
    margin-right: 3px;
  }
}

.news-title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 26px;
  color: #333333;
  position: relative;
}

@media (max-width: 575px) {
  .news-title {
    font-size: 0.9375em;
  }
}

.stretched-link.mobile-link {
  display: none;
}

@media (max-width: 1199px) {
  .stretched-link.mobile-link {
    display: block;
  }
}

.nsdi-article-system {
  margin-bottom: 147px;
}

@media (max-width: 1199px) {
  .nsdi-article-system {
    margin-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system {
    margin-bottom: 25px;
  }
}

.nsdi-article-system .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .nsdi-article-system .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system .col-xl-7, .nsdi-article-system .col-xl-6 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system .col-xl-7, .nsdi-article-system .col-xl-5 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.nsdi-article-system.one-img .nas-image-wrapper {
  position: relative;
  text-align: center;
}

@media (min-width: 992px) {
  .nsdi-article-system.right-img .nas-image-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.nsdi-article-system img {
  max-width: 100%;
}

.nsdi-article-system h2 {
  font-size: 1.375em;
  color: #337C86;
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .nsdi-article-system h2 {
    font-size: 1.25em;
  }
}

.nsdi-article-system p {
  margin-bottom: 30px;
  line-height: 30px;
}

.nsdi-article-system ol {
  padding-left: 18px;
}

.nsdi-article-system ol li {
  line-height: 30px;
  color: #000000;
}

.nsdi-article-system .text {
  margin-bottom: 30px;
  line-height: 30px;
}

.nsdi-article-system .mark-text {
  color: #337C86;
  font-weight: 500;
  line-height: 30px;
}

.nsdi-article-system .title-text {
  color: #337C86;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 30px;
}

.nsdi-article-system .order-list {
  padding-left: 18px;
}

.nsdi-article-system .order-list li {
  line-height: 30px;
  color: #000000;
}

.nsdi-article-system.small-container {
  padding-left: 15.9vw;
  padding-right: 15.9vw;
}

@media (max-width: 991px) {
  .nsdi-article-system.small-container {
    padding: 0 10vw;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container {
    padding: 0;
  }
}

.nsdi-article-system.small-container p {
  line-height: 40px;
  font-size: 1.25em;
  color: #333333;
  font-weight: 500;
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container p {
    font-size: 1em;
    margin-bottom: 15px;
  }
}

.nsdi-article-system.small-container.nsdi-article-system .row {
  margin: 0 -50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system .row {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-7 {
    max-width: 28%;
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    padding: 0 50px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-7 {
    width: 57%;
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-5 {
    max-width: 72%;
    -ms-flex-preferred-size: 72%;
        flex-basis: 72%;
    padding: 0 50px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system.right-img .row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system.right-img .col-xl-3 {
    width: 57%;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system.left-img .row {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system.left-img .col-xl-3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system.double-img .col-xl-6:nth-of-type(1) {
    margin-bottom: 30px;
  }
}

.nsdi-article-system.small-container.nsdi-article-system .col-xl-3, .nsdi-article-system.small-container.nsdi-article-system .col-xl-9 {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 575px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-3, .nsdi-article-system.small-container.nsdi-article-system .col-xl-9 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.nsdi-article-system.small-container.nsdi-article-system .col-xl-3 {
  width: 57%;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-3 {
    max-width: 54%;
    -ms-flex-preferred-size: 54%;
        flex-basis: 54%;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-3 {
    max-width: 28%;
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    margin-bottom: 0;
  }
}

@media (min-width: 576px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-9 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system.small-container.nsdi-article-system .col-xl-9 {
    max-width: 72%;
    -ms-flex-preferred-size: 72%;
        flex-basis: 72%;
  }
}

.nsdi-article-system.double-img .row {
  margin-left: -2px;
  margin-right: -2px;
}

.nsdi-article-system.double-img .col-xl-6 {
  padding-left: 2px;
  padding-right: 2px;
  position: relative;
}

@media (max-width: 1199px) {
  .nsdi-article-system.double-img .col-xl-6:nth-of-type(1) {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .nsdi-article-system.double-img .col-xl-6:nth-of-type(1) {
    margin-bottom: 23px;
  }
}

.nsdi-article-system.double-img .bg-img {
  width: 100%;
  padding-top: calc(100% / 958 * 594);
  background-size: cover;
  background-position: center center;
  position: relative;
}

@media (max-width: 575px) {
  .nsdi-article-system.double-img .bg-img {
    padding-top: calc(100% / 375 * 135);
    margin-bottom: 10px;
  }
}

.nsdi-article-system.double-img .text-content.mobile {
  display: none;
}

@media (max-width: 575px) {
  .nsdi-article-system.double-img .text-content.mobile {
    display: block;
    padding: 0 20px;
    line-height: 35px;
  }
}

.nsdi-article-system.double-img .bg-img-hover {
  position: absolute;
  left: 0px;
  top: 0;
  right: 0px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #fff;
}

@media (min-width: 1200px) {
  .nsdi-article-system.double-img .bg-img-hover:hover p {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .nsdi-article-system.double-img .bg-img-hover:hover .about-img {
    opacity: 0;
  }
}

.nsdi-article-system.double-img .bg-img-hover .about-img {
  width: 24.21%;
}

.nsdi-article-system.double-img .bg-img-hover .about-img {
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.nsdi-article-system.double-img .bg-img-hover .about-01 {
  width: 18.37%;
}

.nsdi-article-system.double-img .bg-img-hover .about-02 {
  width: 24.2%;
}

.index header {
  background: transparent;
}

.index header a {
  color: #F5F5F5;
}

.index header a:hover {
  color: #F5F5F5;
}

.index header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.index .logo-block {
  display: block;
}

.index .logo-block-dark {
  display: none;
}

.index .header-link {
  color: #fff;
}

.index .lang-block {
  display: block;
  margin-left: 74px;
  border: 1px solid #fff;
  padding: 10px 20px 10px 15px;
  position: relative;
}

@media (max-width: 1199px) {
  .index .lang-block {
    display: none;
  }
}

.index .lang-list a {
  color: #333333;
}

.index .lang-list a:hover {
  color: #333333;
}

.index .menu-block-m a {
  color: #fff;
}

.index .menu-block-m .order-btn {
  color: #333333;
}

.index .sidebar {
  color: #F5F5F5;
  letter-spacing: 2px;
}

.index .sidebar a {
  color: #F5F5F5;
}

.index .sidebar a.active {
  font-weight: bold;
}

.news .main-title, .member .main-title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 98px;
  margin-bottom: 47px;
  color: #333333;
  letter-spacing: 0.1em;
}

@media (max-width: 575px) {
  .news .main-title, .member .main-title {
    font-size: 1.25em;
    line-height: 1;
    margin-bottom: 30px;
    padding: 0 28px;
  }
}

.sticky-block {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #F5F5F5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(93.98%, #F5F5F5), to(rgba(245, 245, 245, 0)));
  background: linear-gradient(180deg, #F5F5F5 93.98%, rgba(245, 245, 245, 0) 100%);
  padding-bottom: 30px;
}

@media (max-width: 1199px) {
  .sticky-block {
    position: relative;
    background: transparent;
    padding-bottom: 0;
  }
}

.news .mains-container {
  position: relative;
  padding-top: 140px;
  padding-left: 23.5vw;
  padding-right: 16vw;
}

@media (max-width: 1199px) {
  .news .mains-container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

@media (max-width: 991px) {
  .news .mains-container {
    padding-top: 120px;
  }
}

@media (max-width: 1199px) {
  .news .mains-container::before {
    display: none;
  }
}

.news .main-title {
  padding-left: 0;
}

@media (max-width: 575px) {
  .news .news-list {
    padding-left: 0;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .news .news-list li {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
    min-width: 107px;
    margin-bottom: 24px;
  }
}

.news .news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  background-color: #4A817D;
  color: #fff;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news .news-link i {
  font-size: 1.625em;
}

@media (min-width: 1200px) {
  .news .news-link:hover {
    opacity: .7;
    color: #fff;
  }
}

.member .sticky-block {
  padding-top: 213px;
  padding-top: 18.5vh;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .member .sticky-block {
    padding-top: 150px;
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .member .sticky-block {
    padding-top: 120px;
  }
}

@media (max-width: 575px) {
  .member .sticky-block {
    margin-bottom: 20px;
  }
}

.member .sticky-block .news-list {
  margin-bottom: 0;
}

.member .mains-container {
  padding-top: 0;
  padding-bottom: 0px;
}

@media (max-width: 1549px) {
  .member.news .mains-container {
    padding-right: 7vw;
  }
}

@media (max-width: 1439px) {
  .member.news .mains-container {
    padding-right: 5vw;
  }
}

@media (max-width: 1199px) {
  .member.news .mains-container {
    padding-left: 5vw;
  }
}

@media (max-width: 575px) {
  .member.news .mains-container {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .member.news .mains-container::before {
    display: none;
  }
}

.member .main-title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 98px;
  margin-bottom: 47px;
  color: #333333;
  letter-spacing: 0.1em;
}

@media (max-width: 575px) {
  .member .main-title {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 30px;
    padding: 0 28px;
  }
}

.member .news-list {
  position: -webkit-sticky;
  position: sticky;
  left: 10px;
  top: 10px;
  margin: 0 -65px 86px -65px;
}

@media (max-width: 1439px) {
  .member .news-list {
    margin: 0 -50px 86px -50px;
  }
}

@media (max-width: 1199px) {
  .member .news-list {
    padding-left: 0;
    margin: 0 0px 50px -50px;
  }
}

@media (max-width: 991px) {
  .member .news-list {
    margin: 0 -30px 50px -30px;
  }
}

@media (max-width: 575px) {
  .member .news-list {
    margin: 0 0px 8px 22px;
    padding-left: 41px;
  }
}

.member .news-list li {
  padding: 0 65px;
}

@media (max-width: 1439px) {
  .member .news-list li {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .member .news-list li {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .member .news-list li {
    padding: 0 0px;
    margin-bottom: 24px;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
  .member .news-list li:nth-of-type(even) {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
  }
}

.member .news-list li a::before {
  width: 25px;
  height: 25px;
}

.member .mark-text {
  font-weight: 600;
  font-size: 1.25em;
  margin-bottom: 12px;
}

.member .p-text {
  font-weight: 600;
  font-size: 1em;
}

.member .nsdi-article-system p {
  font-weight: 600;
  font-size: 1em;
}

.member .nsdi-article-system ol {
  margin-bottom: 40px;
}

.member .nsdi-article-system ol li {
  line-height: 50px;
}

.member .nsdi-article-system .order-list li {
  line-height: 50px;
}

@media (max-width: 575px) {
  .member .editor-block {
    background-color: #fff;
    padding: 20px 20px 0 20px;
    -webkit-box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
  }
}

[data-page="index"] .scroll-block {
  display: none;
}

[data-page="index"] .index-swiper {
  height: 100vh;
  color: #fff;
}

[data-page="index"] .video-container {
  position: absolute;
  left: -1px;
  top: 0;
  right: -1px;
  bottom: 0;
  overflow: hidden;
}

[data-page="index"] .video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-page="index"] .menu .menu-ic {
  display: block;
}

[data-page="index"] .menu .menu-ic-dark {
  display: none;
}

[data-page="index"] .swiper-container.index-wrapper {
  z-index: 4;
}

[data-page="index"] .index-wrapper {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
}

@media (min-width: 1200px) {
  [data-page="index"] .index-wrapper:hover .wrapper-bg {
    opacity: 1;
  }
}

[data-page="index"] .index-wrapper a {
  color: #fff;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-wrapper .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

[data-page="index"] .index-wrapper .wrapper-bg {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-bottom: 0;
}

[data-page="index"] .index-wrapper .wrapper-bg.active {
  opacity: 1;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-wrapper .swiper-slide:nth-of-type(1) .index-bg-img {
    padding-top: calc(50% / 375 * 333);
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-wrapper .swiper-slide:nth-of-type(1) .index-bg-img {
    padding-top: calc(100% / 375 * 333);
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-wrapper .swiper-slide:nth-of-type(1) .index-content {
    position: absolute;
    top: 202px;
    left: 30px;
  }
}

[data-page="index"] .index-wrapper .swiper-slide:nth-last-of-type(1) .hover-block {
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

[data-page="index"] .index-wrapper .i-item {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 100%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  position: relative;
}

[data-page="index"] .index-wrapper .i-item:hover .hover-block {
  -webkit-transform: scaleX(1.18);
          transform: scaleX(1.18);
  z-index: 4;
}

[data-page="index"] .index-wrapper .i-item:hover .hover-block .index-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-page="index"] .index-wrapper .i-item:hover .hover-content {
  display: block;
}

[data-page="index"] .index-wrapper .i-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

[data-page="index"] .index-wrapper .i-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 1px;
  background-color: #e0e0e0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e0e0e0), color-stop(24%, #d1d1d1), color-stop(42%, #9c9c9c), color-stop(58%, #525252), to(#080808));
  background-image: linear-gradient(0deg, #e0e0e0 0%, #d1d1d1 24%, #9c9c9c 42%, #525252 58%, #080808 100%);
}

[data-page="index"] .index-wrapper .i-item.active {
  -webkit-transform: scaleX(1.18);
          transform: scaleX(1.18);
  z-index: 2;
}

[data-page="index"] .index-wrapper .i-item.active .index-bg-img {
  z-index: 3;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-wrapper .i-item {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-wrapper .i-item {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    height: 100%;
  }
}

[data-page="index"] .index-wrapper .link-wrapper {
  margin-top: 5.7vh;
}

[data-page="index"] .index-wrapper .hover-link {
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 16px;
  border: 1px solid #fff;
  margin-bottom: 24px;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1;
  min-width: 120px;
}

[data-page="index"] .index-wrapper .hover-link:hover {
  opacity: 1;
  border: 1px solid #333333;
  color: #fff;
  background-color: #333333;
}

[data-page="index"] .index-wrapper .hover-link:nth-last-of-type(1) {
  margin-bottom: 0;
}

[data-page="index"] .hover-block {
  overflow: hidden;
  height: 100%;
  position: relative;
  z-index: 3;
  display: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

[data-page="index"] .hover-block .index-bg-img.hover-content {
  -webkit-animation: 50s ease 0s normal none infinite running zoomIn;
          animation: 50s ease 0s normal none infinite running zoomIn;
}

[data-page="index"] .hover-block .index-content {
  z-index: 11;
  -webkit-transform: scaleX(0.82) translate(-60%, -50%);
          transform: scaleX(0.82) translate(-60%, -50%);
  display: none;
}

[data-page="index"] .index-bg-img {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-bg-img {
    height: unset;
    padding-top: calc(50% / 375 * 239);
    position: relative;
    display: none;
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-bg-img {
    padding-top: calc(100% / 375 * 239);
  }
}

[data-page="index"] .index-bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-9.07%, #FFFFFF), color-stop(21.03%, rgba(0, 0, 0, 0.5)), color-stop(61.37%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(360deg, #FFFFFF -9.07%, rgba(0, 0, 0, 0.5) 21.03%, rgba(0, 0, 0, 0.6) 61.37%);
}

@media (max-width: 575px) {
  [data-page="index"] .index-bg-img::after {
    background: rgba(0, 0, 0, 0.4);
  }
}

[data-page="index"] .index-bg-img.mobile {
  display: none;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-bg-img.mobile {
    display: block;
  }
}

[data-page="index"] .index-bg-img.hover-content {
  background-size: cover;
  background-position: center center;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleX(1.18);
          transform: scaleX(1.18);
  -webkit-transition: background-size 10s ease;
  transition: background-size 10s ease;
  overflow: hidden;
}

[data-page="index"] .index-bg-img.hover-content::after {
  right: -10px;
  left: -10px;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  [data-page="index"] .vertical-text.mobile-none {
    display: none;
  }
}

[data-page="index"] .index-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 575px) {
  [data-page="index"] .index-content {
    left: 30px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (max-width: 575px) and (max-width: 1199px) {
  [data-page="index"] .index-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

[data-page="index"] .index-content .title {
  display: inline-block;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 2.08vw;
  font-weight: 700;
  position: relative;
  margin-bottom: 93px;
  margin-bottom: 4.8vw;
  min-height: 258px;
  text-align: center;
  letter-spacing: .1em;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-content .title {
    -webkit-writing-mode: lr;
        -ms-writing-mode: lr;
            writing-mode: lr;
    min-height: unset;
    margin-bottom: 7px;
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-content .title {
    font-size: 1.25em;
    font-weight: 800;
    text-align: left;
  }
}

[data-page="index"] .index-content .level-text {
  display: inline-block;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  font-size: 1.03vw;
  margin-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  [data-page="index"] .index-content .level-text {
    font-size: 20px;
    text-transform: unset;
  }
}

[data-page="index"] .index-content .small-title {
  position: relative;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.04vw;
  font-weight: bold;
  letter-spacing: .2em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  [data-page="index"] .index-content .small-title {
    text-transform: unset;
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-content .small-title {
    font-size: 1em;
    fint-weight: 800;
    text-align: left;
    letter-spacing: 1px;
  }
}

[data-page="index"] .index-content .small-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -71px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 40px;
  background: url("../images/index-line.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="index"] .index-content .small-title::after {
    background: url("../images/index-line@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="index"] .index-content .small-title::after {
    background: url("../images/index-line@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1199px) {
  [data-page="index"] .index-content .small-title::after {
    display: none;
  }
}

@media (max-width: 575px) {
  [data-page="index"] .index-content .small-title .text {
    display: none;
  }
}

[data-page="index"] .index-content .small-title .text.mobile {
  display: none;
}

@media (max-width: 575px) {
  [data-page="index"] .index-content .small-title .text.mobile {
    display: block;
  }
}

[data-page="about"] p {
  font-size: 1em;
  line-height: 30px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 1549px) {
  [data-page="about"] p {
    line-height: 28px;
    font-size: 0.875em;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] p {
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  [data-page="about"] p {
    margin-bottom: 5px;
    line-height: 35px;
  }
}

[data-page="about"] .mains-container {
  padding-top: 236px;
  padding-bottom: 185px;
  overflow-x: hidden;
}

[data-page="about"] .mains-container::before {
  display: none;
}

@media (max-width: 1199px) {
  [data-page="about"] .mains-container {
    padding-top: 120px;
    padding-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] .scroll-block {
    display: none;
  }
}

[data-page="about"] .img-bottom-block {
  width: 79%;
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  [data-page="about"] .img-bottom-block {
    width: 100%;
  }
}

@media (max-width: 991px) {
  [data-page="about"] .img-bottom-block {
    display: none;
  }
}

[data-page="about"] .nsdi-article-system {
  position: relative;
}

[data-page="about"] .nsdi-article-system h2 {
  color: #333333;
}

[data-page="about"] .img-bottom {
  content: "";
  background: url("../images/about/img-bottom.png") no-repeat;
  background-size: contain;
  width: 37.6%;
  padding-top: calc(37.6% / 304 * 10);
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="about"] .img-bottom {
    background: url("../images/about/img-bottom@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="about"] .img-bottom {
    background: url("../images/about/img-bottom@2x.png") no-repeat;
    background-size: contain;
  }
}

[data-page="about"] .row {
  margin-left: -2.6vw;
  margin-right: -2.6vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  [data-page="about"] .row {
    padding-left: 0;
    padding-right: 0;
  }
}

[data-page="about"] .col-xl-7 {
  padding-left: 2.6vw;
  padding-right: 2.6vw;
}

@media (min-width: 992px) {
  [data-page="about"] .col-xl-7 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1200px) {
  [data-page="about"] .col-xl-7 {
    max-width: 53%;
    -ms-flex-preferred-size: 53%;
        flex-basis: 53%;
  }
}

@media (max-width: 1549px) {
  [data-page="about"] .col-xl-7 {
    padding-left: 1.6vw;
    padding-right: 1.6vw;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] .nas-image-wrapper {
    margin-bottom: 30px;
  }
}

[data-page="about"] .col-xl-5 {
  padding-left: 2.6vw;
  padding-right: 2.6vw;
}

@media (min-width: 992px) {
  [data-page="about"] .col-xl-5 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1200px) {
  [data-page="about"] .col-xl-5 {
    max-width: 47%;
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
  }
}

@media (max-width: 1549px) {
  [data-page="about"] .col-xl-5 {
    padding-left: 1.6vw;
    padding-right: 1.6vw;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .col-xl-5 {
    position: static;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system {
    margin-bottom: 35px;
  }
}

[data-page="about"] .nsdi-article-system .logo-01 {
  width: 12.69%;
  margin-right: 3.9vw;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system .logo-01 {
    width: 58px;
    margin-right: 38px;
    margin-left: 13px;
    margin-bottom: 17px;
  }
}

[data-page="about"] .nsdi-article-system .logo-02 {
  width: 17%;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system .logo-02 {
    width: 79px;
    margin-bottom: 17px;
  }
}

[data-page="about"] .nsdi-article-system.article-block .nas-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.article-block .nas-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

[data-page="about"] .nsdi-article-system.article-block .header-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.article-block .header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.article-block .header-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.article-block .header-block {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

[data-page="about"] .nsdi-article-system.article-block .header-block .main-num {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.article-block .header-block .main-num {
    position: relative;
  }
}

[data-page="about"] .nsdi-article-system.article-block .header-block .main-num span {
  background-color: #4A817D;
  text-align: center;
  padding: 30px 35px;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.article-block .header-block .main-num span {
    right: unset;
    bottom: unset;
    margin-right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    width: 77px;
    height: 77px;
  }
}

[data-page="about"] .nsdi-article-system.article-block .header-block .main-num::after {
  display: none;
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system {
  margin-bottom: 180px;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system {
    margin-bottom: 75px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system {
    margin-bottom: 35px;
  }
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system p {
  line-height: 40px;
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 1439px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system p {
    white-space: unset;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system p {
    line-height: 1.8;
  }
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .row {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 1439px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .col-xl-7 {
  padding-left: 0;
  padding-right: 0;
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .col-xl-5 {
  padding-left: 0;
  padding-right: 0;
  margin-left: -1.3vw;
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .nas-image-wrapper {
  margin-bottom: 25px;
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .nas-article {
  position: relative;
}

[data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .main-num {
    top: -75px;
    right: -13px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .main-title {
    display: none;
  }
}

@media (min-width: 992px) {
  [data-page="about"] .nsdi-article-system.first-article.nsdi-article-system .main-num {
    margin-right: 0;
  }
}

[data-page="about"] .nsdi-article-system.third-article {
  margin-bottom: 98px;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.third-article {
    margin-bottom: 75px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.third-article {
    margin-bottom: 35px;
  }
}

[data-page="about"] .nsdi-article-system.double-img .col-lg-6 {
  padding: 0 1px;
}

[data-page="about"] .nsdi-article-system {
  margin-bottom: 75px;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system {
    margin-bottom: 45px;
  }
}

[data-page="about"] .nsdi-article-system p {
  color: #333333;
}

[data-page="about"] .nsdi-article-system.article-content .nas-article {
  padding-left: 12.4vw;
}

[data-page="about"] .nsdi-article-system.banner {
  margin-bottom: 50px;
  padding-left: 12.4vw;
  padding-right: 12.4vw;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.banner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.banner {
    margin-bottom: 15px;
  }
}

[data-page="about"] .nsdi-article-system.banner .header-block {
  margin-bottom: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.banner .header-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

[data-page="about"] .nsdi-article-system.banner .header-block .main-num {
  margin-bottom: 10px;
}

[data-page="about"] .nsdi-article-system.banner .header-block .main-num span {
  background-color: #4A817D;
  text-align: center;
  padding: 30px 35px;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.banner .header-block .main-num span {
    right: unset;
    bottom: unset;
    margin-right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    width: 77px;
    height: 77px;
  }
}

[data-page="about"] .nsdi-article-system.banner .header-block .main-num::after {
  display: none;
}

[data-page="about"] .nsdi-article-system.banner .main-num {
  position: relative;
}

[data-page="about"] .nsdi-article-system.left-img .nas-article {
  padding-right: 13.8vw;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.left-img .nas-article {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

[data-page="about"] .nsdi-article-system.left-img .w-80 {
  width: 80%;
  position: relative;
}

@media (max-width: 1439px) {
  [data-page="about"] .nsdi-article-system.left-img .w-80 {
    width: 90%;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.left-img .w-80 {
    width: 100%;
  }
}

[data-page="about"] .nsdi-article-system.left-img .about-logo {
  margin-bottom: 3.22vw;
}

[data-page="about"] .nsdi-article-system.left-img .about-logo.img-mr {
  margin-right: 3.9vw;
}

@media (min-width: 992px) {
  [data-page="about"] .nsdi-article-system.right-img .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

[data-page="about"] .nsdi-article-system.right-img .nas-image-wrapper {
  margin-left: -5vw;
  -ms-flex-preferred-size: 58%;
      flex-basis: 58%;
  max-width: 58%;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img .nas-image-wrapper {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

[data-page="about"] .nsdi-article-system.right-img .nas-article {
  padding-left: 12.4vw;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img .nas-article {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

[data-page="about"] .nsdi-article-system.right-img .header-block {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img .header-block {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

[data-page="about"] .nsdi-article-system.right-img .main-num {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img .main-num {
    margin-bottom: 0;
  }
}

[data-page="about"] .nsdi-article-system.right-img .main-title {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img .main-title {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
}

[data-page="about"] .nsdi-article-system.right-img p {
  white-space: nowrap;
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.right-img p {
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system.right-img p {
    white-space: unset;
  }
}

[data-page="about"] .nsdi-article-system.one-img .nas-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

[data-page="about"] .nsdi-article-system.double-img .row {
  margin-left: -2px;
  margin-right: -2px;
}

[data-page="about"] .nsdi-article-system.double-img .col-xl-6 {
  padding-left: 2px;
  padding-right: 2px;
  position: relative;
}

@media (max-width: 1199px) {
  [data-page="about"] .nsdi-article-system.double-img .col-xl-6:nth-of-type(1) {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.double-img .col-xl-6:nth-of-type(1) {
    margin-bottom: 23px;
  }
}

[data-page="about"] .nsdi-article-system.double-img .bg-img {
  width: 100%;
  padding-top: calc(100% / 958 * 594);
  background-size: cover;
  background-position: center center;
  position: relative;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.double-img .bg-img {
    padding-top: calc(100% / 375 * 135);
    margin-bottom: 10px;
  }
}

[data-page="about"] .nsdi-article-system.double-img p {
  display: none;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.double-img p {
    display: block;
  }
}

[data-page="about"] .nsdi-article-system.double-img .text-content {
  display: block;
}

[data-page="about"] .nsdi-article-system.double-img .text-content p {
  display: block;
  color: #fff;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.double-img .text-content p {
    color: #000000;
  }
}

[data-page="about"] .nsdi-article-system.double-img .text-content.mobile {
  display: none;
}

@media (max-width: 575px) {
  [data-page="about"] .nsdi-article-system.double-img .text-content.mobile {
    display: block;
    padding: 0 20px;
    line-height: 35px;
  }
}

[data-page="about"] .nsdi-article-system .bg-img-hover {
  position: absolute;
  left: 0px;
  top: 0;
  right: 0px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #fff;
}

[data-page="about"] .nsdi-article-system .bg-img-hover:hover .text-content {
  display: block;
}

@media (min-width: 1200px) {
  [data-page="about"] .nsdi-article-system .bg-img-hover:hover .text-content {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  [data-page="about"] .nsdi-article-system .bg-img-hover:hover .about-img {
    opacity: 0;
  }
}

[data-page="about"] .nsdi-article-system .bg-img-hover .about-img {
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

[data-page="about"] .nsdi-article-system .bg-img-hover .about-01 {
  width: 18.37%;
}

[data-page="about"] .nsdi-article-system .bg-img-hover .about-02 {
  width: 24.2%;
}

[data-page="about"] .nsdi-article-system .bg-img-hover .text-content {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  text-align: center;
  white-space: nowrap;
}

[data-page="about"] .header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 60px;
}

@media (max-width: 1549px) {
  [data-page="about"] .header-block {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  [data-page="about"] .header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .header-block {
    margin-bottom: 20px;
  }
}

[data-page="about"] .header-block.type-01 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 575px) {
  [data-page="about"] .header-block.type-01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .header-block.type-01 .main-num {
    top: -5px;
  }
}

[data-page="about"] .main-title {
  font-weight: 700;
  font-size: 2.5em;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

@media (max-width: 1549px) {
  [data-page="about"] .main-title {
    font-size: 2em;
    white-space: unset;
  }
}

@media (max-width: 1439px) {
  [data-page="about"] .main-title {
    font-size: 1.75em;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .main-title {
    font-size: 1.375em;
  }
}

[data-page="about"] .mark-friend {
  color: #BDAA8C;
}

@media (max-width: 575px) {
  [data-page="about"] .mark-friend {
    margin-bottom: 5px;
  }
}

[data-page="about"] .mark-info {
  color: #4A817D;
}

@media (max-width: 575px) {
  [data-page="about"] .mark-info {
    margin-bottom: 5px;
  }
}

[data-page="about"] .mark-text {
  margin-bottom: 80px;
  font-size: 1.25em;
}

@media (max-width: 1549px) {
  [data-page="about"] .mark-text {
    font-size: 1.125em;
    line-height: 1;
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .mark-text {
    font-size: 1em;
    margin-bottom: 5px;
  }
}

[data-page="about"] .mark-text.mark-info {
  color: #4A817D;
  font-weight: 600;
  line-height: 40px;
}

[data-page="about"] .mark-text.mark-friend {
  color: #BDAA8C;
  font-weight: 600;
  line-height: 40px;
}

[data-page="about"] .mark-text.small {
  font-size: 1em;
}

[data-page="about"] .mark-text.mobile {
  display: none;
  display: block;
}

[data-page="about"] .main-num {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 2.5em;
  font-family: 'Noto Serif','Noto Serif JP','Noto Serif TC','Noto Serif KR','Montserrat', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  color: #BDAA8C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  letter-spacing: 0.1em;
  margin-right: 15px;
  white-space: nowrap;
}

@media (max-width: 1549px) {
  [data-page="about"] .main-num {
    font-size: 2em;
  }
}

@media (max-width: 1439px) {
  [data-page="about"] .main-num {
    font-size: 1.75em;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .main-num {
    margin-right: 0;
    font-size: 2.5em;
    position: absolute;
    right: 0px;
    top: 0;
  }
}

[data-page="about"] .main-num span {
  display: block;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  [data-page="about"] .main-num span {
    line-height: 1;
    bottom: -5px;
    right: -8px;
  }
}

[data-page="about"] .main-num::after {
  content: "";
  display: block;
  width: 118px;
  height: 118px;
  background-color: #4A817D;
  position: relative;
  z-index: 1;
  left: -30px;
  top: 5px;
}

@media (max-width: 1549px) {
  [data-page="about"] .main-num::after {
    left: -24px;
  }
}

@media (max-width: 1439px) {
  [data-page="about"] .main-num::after {
    width: 50px;
    height: 50px;
    margin-right: -15px;
  }
}

@media (max-width: 575px) {
  [data-page="about"] .main-num::after {
    width: 77px;
    height: 77px;
    right: 0px;
  }
}

[data-page="about"] h2 {
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 575px) {
  [data-page="news"] {
    background-color: #fff;
  }
}

[data-page="news"] .main-title {
  display: none;
}

@media (max-width: 575px) {
  [data-page="news"] .main-title {
    display: block;
  }
}

[data-page="news"] .sticky-block {
  padding-top: 140px;
}

@media (max-width: 991px) {
  [data-page="news"] .sticky-block {
    padding-top: 120px;
  }
}

@media (max-width: 1199px) {
  [data-page="news"] .sticky-block {
    position: relative;
    background-color: transparent;
  }
}

[data-page="news"] .mains-container {
  padding-top: 0;
}

@media (max-width: 575px) {
  [data-page="news"] .mains-container {
    overflow-x: hidden;
    padding-left: 22px;
    padding-right: 0;
  }
}

[data-page="news"] .news-btf {
  width: 45px;
  height: 45px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 84px;
  background: url("../images/news/news-btf.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="news"] .news-btf {
    background: url("../images/news/news-btf@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="news"] .news-btf {
    background: url("../images/news/news-btf@2x.png") no-repeat;
    background-size: contain;
  }
}

[data-page="news"] .news-wrapper {
  margin-top: 70px;
  min-height: 80vh;
  padding-bottom: 184px;
}

@media (max-width: 575px) {
  [data-page="news"] .news-wrapper {
    margin-top: 0px;
  }
}

[data-page="news"] .news-item {
  padding: 15px 0;
  position: relative;
}

[data-page="news"] .news-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: url("../images/news/news-bottom.png") center;
  background-size: cover;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="news"] .news-item::after {
    background: url("../images/news/news-bottom@2x.png") center;
    background-size: cover;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="news"] .news-item::after {
    background: url("../images/news/news-bottom@2x.png") center;
    background-size: cover;
  }
}

[data-page="news"] .news-item:nth-of-type(1) {
  padding-top: 0;
}

@media (min-width: 1200px) {
  [data-page="news"] .news-item:hover .news-link {
    opacity: 1;
  }
}

[data-page="news-content"] .mains-container {
  padding-top: 225px;
  padding-right: 26.8vw;
}

@media (max-width: 1199px) {
  [data-page="news-content"] .mains-container {
    padding-right: 7vw;
  }
}

@media (max-width: 991px) {
  [data-page="news-content"] .mains-container {
    padding-top: 125px;
  }
}

@media (max-width: 575px) {
  [data-page="news-content"] .news-header {
    position: relative;
  }
}

@media (max-width: 575px) {
  [data-page="news-content"] .news-date {
    position: absolute;
    top: 0;
    right: 0;
  }
}

[data-page="news-content"] .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 30px;
  border-bottom: 1px dashed #333333;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 575px) {
  [data-page="news-content"] .title-block {
    border-bottom: none;
    padding-bottom: 0;
  }
}

[data-page="news-content"] .news-badge {
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  [data-page="news-content"] .news-title {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  [data-page="news-content"] .nsdi-article-system .text, [data-page="news-content"] .nsdi-article-system p {
    font-size: 0.875em;
  }
}

[data-page="news-content"] .nsdi-article-system .title-text {
  font-size: 1em;
}

@media (max-width: 575px) {
  [data-page="news-content"] .nsdi-article-system .title-text {
    margin-bottom: 15px;
  }
}

[data-page="news-content"] .editor-block {
  padding-top: 30px;
  font-weight: 400;
  color: #000000;
}

@media (max-width: 575px) {
  [data-page="news-content"] .editor-block {
    padding-top: 20px;
  }
}

[data-page="news-content"] .row {
  margin-left: -20px;
  margin-right: -20px;
}

[data-page="news-content"] .row .col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 575px) {
  [data-page="news-content"] .row .col-md-6:nth-of-type(1) {
    margin-bottom: 20px;
  }
}

[data-page="news-content"] .bottom-block {
  margin-top: 50px;
  margin-bottom: 110px;
  text-align: right;
}

[data-page="news-content"] .bottom-block a {
  font-weight: 600;
  font-size: 1.25em;
  letter-spacing: 0.01em;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

[data-page="news-content"] .bottom-block .news-link {
  width: 30px;
  height: 30px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: unset;
  right: unset;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 1;
  margin-right: 10px;
  color: #4A817D;
  background-color: transparent;
  border: 1px solid #4A817D;
  font-size: 18px;
}

[data-page="member-welfare"] .sticky-block {
  padding-left: 50px;
}

@media (max-width: 1199px) {
  [data-page="member-welfare"] .sticky-block {
    padding-left: 0px;
  }
}

@media (max-width: 1199px) {
  [data-page="member-welfare"] .scroll-block {
    display: none;
  }
}

[data-page="member-welfare"] .member-table {
  width: 100%;
  padding: 24px 26px 34px 36px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F5F5F5));
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-table {
    padding: 24px 0px 94px 0px;
    -webkit-box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -7px 20px rgba(0, 0, 0, 0.1);
  }
}

[data-page="member-welfare"] .member-table::before, [data-page="member-welfare"] .member-table::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15%;
  bottom: 15%;
  background-color: transparent;
  width: 47px;
}

@media (max-width: 991px) {
  [data-page="member-welfare"] .member-table::before, [data-page="member-welfare"] .member-table::after {
    display: none;
  }
}

[data-page="member-welfare"] .member-table::before {
  left: 21px;
  -webkit-box-shadow: -20px 0 45px rgba(0, 0, 0, 0.3);
          box-shadow: -20px 0 45px rgba(0, 0, 0, 0.3);
}

[data-page="member-welfare"] .member-table::after {
  right: 21px;
  -webkit-box-shadow: 20px 0 45px rgba(0, 0, 0, 0.3);
          box-shadow: 20px 0 45px rgba(0, 0, 0, 0.3);
}

[data-page="member-welfare"] .table-header {
  max-width: 60px;
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

[data-page="member-welfare"] .header-title {
  font-weight: 500;
  font-size: 0.9375em;
  margin-bottom: 0;
  color: #000000;
}

[data-page="member-welfare"] .header-td {
  padding: 20px 0;
  min-height: 45px;
  font-size: 0.9375em;
}

[data-page="member-welfare"] .header-td:nth-of-type(1) {
  padding-top: 0;
}

[data-page="member-welfare"] .header-td:nth-last-of-type(1) {
  padding-bottom: 0;
}

[data-page="member-welfare"] .table-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .table-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: hidden;
  }
}

[data-page="member-welfare"] .table-card {
  max-width: 32.5%;
  -ms-flex-preferred-size: 32.5%;
      flex-basis: 32.5%;
  padding-left: 35px;
  padding-right: 35px;
  padding-left: 1.8vw;
  padding-right: 1.8vw;
  position: relative;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .table-card {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 35px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

[data-page="member-welfare"] .table-card::before {
  display: none;
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background-color: #E6E6E6;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .table-card::before {
    display: block;
  }
}

[data-page="member-welfare"] .table-card:nth-of-type(1) {
  max-width: 60px;
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 24px;
  padding-left: 0;
  padding-right: 0;
}

[data-page="member-welfare"] .table-card:nth-of-type(1) .member-td {
  border-bottom: none;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .table-card:nth-of-type(1) {
    display: none;
  }
}

[data-page="member-welfare"] .table-card:nth-of-type(2) {
  margin-top: 30px;
}

[data-page="member-welfare"] .member-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  flex-direction: column;
  margin-bottom: 47px;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 30px;
    flex-direction: row;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

[data-page="member-welfare"] .member-header .member-img {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-header .member-img {
    width: 20px;
    height: 30px;
    margin-bottom: 0px;
    margin-right: 10px;
  }
}

[data-page="member-welfare"] .member-header h2 {
  font-size: 1.25em;
  font-weight: 700;
  color: #337C86;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-header h2 {
    font-size: 1.125em;
  }
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-content {
    max-width: 212px;
    -ms-flex-preferred-size: 212px;
        flex-basis: 212px;
  }
}

[data-page="member-welfare"] .member-td {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 0.9375em;
}

[data-page="member-welfare"] .member-td:nth-of-type(1) {
  padding-top: 0;
}

[data-page="member-welfare"] .member-td:nth-last-of-type(1) {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .member-td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
    padding: 10px 0;
    text-align: left;
  }
}

[data-page="member-welfare"] .label-m {
  display: none;
}

@media (max-width: 575px) {
  [data-page="member-welfare"] .label-m {
    display: block;
    font-size: 0.9375em;
    font-weight: 500;
    margin-bottom: 15px;
    margin-right: 28px;
  }
}

@media (min-width: 1200px) {
  [data-page="social"] header {
    height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

[data-page="social"] header .header-list {
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  [data-page="social"] header .header-list {
    display: none;
  }
}

[data-page="social"] .mains-container {
  padding-top: 225px;
}

[data-page="social"] .mains-container::before {
  display: none;
}

@media (max-width: 1199px) {
  [data-page="social"] .mains-container {
    padding-top: 325px;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .mains-container {
    padding-top: 125px;
    overflow-x: hidden;
  }
}

[data-page="social"] .nsdi-article-system.right-img .nas-image-wrapper {
  -webkit-box-ordinal-group: unset;
      -ms-flex-order: unset;
          order: unset;
}

@media (min-width: 1200px) {
  [data-page="social"] .nsdi-article-system.right-img .nas-image-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

[data-page="social"] .customer-mb {
  margin-top: 124px;
}

@media (max-width: 1199px) {
  [data-page="social"] .customer-mb {
    margin-top: 30px;
  }
}

[data-page="social"] .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  z-index: 1000;
  top: 100px;
  right: 14.2vw;
  margin: 0 -2.9vw;
}

@media (max-width: 1439px) {
  [data-page="social"] .social-list {
    right: 8vw;
  }
}

@media (max-width: 1199px) {
  [data-page="social"] .social-list {
    top: 125px;
    z-index: 998;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .social-list {
    top: 145px;
    right: 5vw;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-right: 20px;
    top: 0;
    right: 0;
    margin-bottom: 13px;
  }
}

[data-page="social"] .social-list li {
  padding: 0 2.9vw;
}

@media (max-width: 575px) {
  [data-page="social"] .social-list li {
    max-width: unset;
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
  }
}

[data-page="social"] .social-list a i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

[data-page="social"] .social-list a i:hover {
  opacity: .7;
}

[data-page="social"] .social-bottom-list {
  list-style: none;
  padding-left: 0;
  margin: 0 -2.9vw 154px -2.9vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 991px) {
  [data-page="social"] .social-bottom-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 2.9vw 154px 2.9vw;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .social-bottom-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -2px 70px -2px;
  }
}

[data-page="social"] .social-bottom-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 2.9vw;
}

@media (max-width: 991px) {
  [data-page="social"] .social-bottom-list li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 33.33%;
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
}

@media (max-width: 1199px) {
  [data-page="social"] .social-bottom-list li {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  [data-page="social"] .social-bottom-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .social-bottom-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 20px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

[data-page="social"] .social-bottom-list li a {
  font-size: 1.25em;
  font-weight: bold;
  color: #333333;
}

@media (max-width: 575px) {
  [data-page="social"] .social-bottom-list li a {
    font-size: 1em;
    letter-spacing: 0.01em;
  }
}

[data-page="social"] .social-bottom-list .border-arrow {
  margin-left: 10px;
  display: block;
  width: 28px;
  height: 28px;
  background: url("../images/icon/border-arrow.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="social"] .social-bottom-list .border-arrow {
    background: url("../images/icon/border-arrow@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="social"] .social-bottom-list .border-arrow {
    background: url("../images/icon/border-arrow@2x.png") no-repeat;
    background-size: contain;
  }
}

[data-page="social"] .table-responsive {
  margin-bottom: 35px;
}

@media (max-width: 575px) {
  [data-page="social"] .table-responsive {
    display: none;
  }
}

@media (max-width: 1439px) {
  [data-page="social"] .table {
    width: 670px;
  }
}

[data-page="social"] .table thead th {
  background-color: #6AAFB9;
  text-align: center;
  color: #fff;
  border-bottom: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 1em;
  font-weight: 500;
  line-height: 40px;
  padding: 10px 15px;
}

[data-page="social"] .table thead th:nth-of-type(1) {
  border-left: 1px solid #6AAFB9;
}

[data-page="social"] .table thead th:nth-last-of-type(1) {
  border-right: 1px solid #6AAFB9;
}

[data-page="social"] .table td {
  border-right: 1px solid #6AAFB9;
  border-bottom: 1px solid #6AAFB9;
  text-align: center;
  line-height: 40px;
}

[data-page="social"] .table td:nth-of-type(1) {
  border-left: 1px solid #6AAFB9;
}

[data-page="social"] .table td.td-title {
  color: #337C86;
  font-size: 1.25em;
  font-weight: 600;
}

[data-page="social"] .social-icon {
  display: block;
  width: 78px;
  height: 87px;
  background: url("../images/social/social-r.png") no-repeat;
  background-size: contain;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  [data-page="social"] .social-icon {
    background: url("../images/social/social-r@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-page="social"] .social-icon {
    background: url("../images/social/social-r@2x.png") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .social-icon {
    width: 48px;
    height: 57px;
  }
}

[data-page="social"] .social-icon span {
  font-weight: 500;
  font-size: 1.25em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #333333;
  letter-spacing: 4.2px;
}

@media (max-width: 575px) {
  [data-page="social"] .social-icon span {
    font-size: 0.875em;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .nas-article {
    padding: 0;
  }
}

[data-page="social"] .nsdi-article-system {
  margin-bottom: 147px;
}

@media (max-width: 991px) {
  [data-page="social"] .nsdi-article-system {
    margin-bottom: 80px;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .nsdi-article-system {
    margin-bottom: 25px;
  }
}

[data-page="social"] .nsdi-article-system .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[data-page="social"] .nsdi-article-system.small-article .nas-article {
  padding-right: 6.4vw;
}

[data-page="social"] .nsdi-article-system .nas-image-wrapper {
  text-align: center;
}

@media (max-width: 575px) {
  [data-page="social"] .nsdi-article-system .nas-image-wrapper {
    padding: 0 20px;
  }
}

@media (min-width: 1200px) {
  [data-page="social"] .col-xl-7, [data-page="social"] .col-xl-5 {
    padding-left: 22px;
    padding-right: 22px;
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

[data-page="social"] .big-container {
  padding-right: 11.4vw;
}

@media (max-width: 1199px) {
  [data-page="social"] .big-container {
    padding-right: 0;
  }
}

[data-page="social"] .big-container.right-img {
  padding-left: 11.4vw;
  padding-right: 0;
}

@media (max-width: 1199px) {
  [data-page="social"] .big-container.right-img {
    padding-left: 0;
  }
}

[data-page="social"] .big-container.one-img, [data-page="social"] .big-container.double-img {
  padding-right: 0;
}

@media (max-width: 1199px) {
  [data-page="social"] .big-container.nsdi-article-system {
    margin-bottom: 50px;
  }
}

[data-page="social"] .big-container.nsdi-article-system .row {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1200px) {
  [data-page="social"] .big-container.nsdi-article-system .row {
    margin-left: -22px;
    margin-right: -22px;
  }
}

@media (min-width: 1200px) {
  [data-page="social"] .big-container.nsdi-article-system .col-xl-7, [data-page="social"] .big-container.nsdi-article-system .col-xl-5 {
    padding-left: 22px;
    padding-right: 22px;
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

[data-page="social"] .big-container.nsdi-article-system .nas-image-wrapper {
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  [data-page="social"] .big-container.nsdi-article-system .nas-image-wrapper {
    padding: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  [data-page="social"] .big-container.nsdi-article-system .nas-article {
    padding: 0;
  }
}

[data-page="social"] .small-container {
  padding-left: 15.9vw;
  padding-right: 15.9vw;
}

@media (max-width: 991px) {
  [data-page="social"] .small-container {
    padding: 0 10vw;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .small-container {
    padding: 0;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .small-container.nsdi-article-system.double-img:nth-of-type(1) {
    margin-bottom: 30px;
  }
}

[data-page="social"] .small-container.nsdi-article-system .col-xl-3, [data-page="social"] .small-container.nsdi-article-system .col-xl-9 {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 575px) {
  [data-page="social"] .small-container.nsdi-article-system .col-xl-3, [data-page="social"] .small-container.nsdi-article-system .col-xl-9 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

[data-page="social"] .small-container.nsdi-article-system .col-xl-3 {
  width: 57%;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  [data-page="social"] .small-container.nsdi-article-system .col-xl-3 {
    max-width: 54%;
    -ms-flex-preferred-size: 54%;
        flex-basis: 54%;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  [data-page="social"] .small-container.nsdi-article-system .col-xl-3 {
    max-width: 28%;
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    margin-bottom: 0;
  }
}

@media (min-width: 576px) {
  [data-page="social"] .small-container.nsdi-article-system .col-xl-9 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (min-width: 1200px) {
  [data-page="social"] .small-container.nsdi-article-system .col-xl-9 {
    max-width: 72%;
    -ms-flex-preferred-size: 72%;
        flex-basis: 72%;
  }
}

@media (max-width: 575px) {
  [data-page="social"] .small-container.customer-mobile {
    margin-top: -40px;
  }
}

[data-page="social"] .small-container.customer-mobile.left-img .row {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 575px) {
  [data-page="social"] .small-container.customer-mobile.left-img .col-xl-7 {
    width: 57%;
    margin-right: 20px;
    margin-bottom: -40px;
  }
}
