@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@font-face {
  font-family: "Myriad Pro" , Arial;
  src: url("../fonts/MyriadPro-Regular.woff");
  font-weight: normal;
  font-style: normal;
}

/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-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 waveW {
  0% {
    border-radius: 90% 53% 81% 51% / 45% 47% 36% 50%;
  }
  20% {
    border-radius: 84% 68% 72% 21% / 78% 27% 67% 21%;
  }
  40% {
    border-radius: 21% 66% 30% 23% / 15% 74% 30% 52%;
  }
  60% {
    border-radius: 88% 12% 31% 71% / 87% 33% 71% 43%;
  }
  80% {
    border-radius: 71% 51% 10% 45% / 31% 72% 30% 68%;
  }
  100% {
    border-radius: 90% 53% 81% 51% / 45% 47% 36% 50%;
  }
}

@keyframes waveW {
  0% {
    border-radius: 90% 53% 81% 51% / 45% 47% 36% 50%;
  }
  20% {
    border-radius: 84% 68% 72% 21% / 78% 27% 67% 21%;
  }
  40% {
    border-radius: 21% 66% 30% 23% / 15% 74% 30% 52%;
  }
  60% {
    border-radius: 88% 12% 31% 71% / 87% 33% 71% 43%;
  }
  80% {
    border-radius: 71% 51% 10% 45% / 31% 72% 30% 68%;
  }
  100% {
    border-radius: 90% 53% 81% 51% / 45% 47% 36% 50%;
  }
}

@-webkit-keyframes waveB {
  0% {
    border-radius: 18% 73% 20% 85% / 83% 20% 54% 32%;
  }
  20% {
    border-radius: 38% 63% 11% 50% / 51% 44% 65% 86%;
  }
  40% {
    border-radius: 79% 82% 54% 43% / 21% 32% 51% 61%;
  }
  60% {
    border-radius: 22% 30% 84% 67% / 42% 41% 63% 30%;
  }
  80% {
    border-radius: 85% 87% 73% 25% / 35% 41% 78% 72%;
  }
  100% {
    border-radius: 18% 73% 20% 85% / 83% 20% 54% 32%;
  }
}

@keyframes waveB {
  0% {
    border-radius: 18% 73% 20% 85% / 83% 20% 54% 32%;
  }
  20% {
    border-radius: 38% 63% 11% 50% / 51% 44% 65% 86%;
  }
  40% {
    border-radius: 79% 82% 54% 43% / 21% 32% 51% 61%;
  }
  60% {
    border-radius: 22% 30% 84% 67% / 42% 41% 63% 30%;
  }
  80% {
    border-radius: 85% 87% 73% 25% / 35% 41% 78% 72%;
  }
  100% {
    border-radius: 18% 73% 20% 85% / 83% 20% 54% 32%;
  }
}

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   +retina(/images/mypic.jpg, 2);
 *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: auto;
  background-color: transparent;
  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;
  padding: 49px 60px;
}

@media (max-width: 1439px) {
  header {
    padding: 20px 60px;
  }
}

@media (max-width: 991px) {
  header {
    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;
  }
}

@media (max-width: 767px) {
  header {
    padding: 20px;
  }
}

.header__right {
  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;
  padding: 36px 60px 0 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  min-height: 120px;
}

@media (max-width: 991px) {
  .header__right {
    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;
    min-height: 85px;
  }
}

@media (max-width: 767px) {
  .header__right {
    padding: 20px 20px 0 0;
  }
}

@media (max-width: 991px) {
  .header__right .header__logo {
    max-width: 92.5px;
  }
}

@media (max-width: 767px) {
  .header__right .header__logo {
    max-width: 69.5px;
  }
}

.header__right .select__wrap {
  margin-right: 69px;
}

@media (max-width: 991px) {
  .header__right .select__wrap {
    display: none;
  }
}

.selectric-disabled {
  opacity: 1;
}

.select__wrap .selectric-wrapper {
  border-bottom: 1px solid #fff;
}

.select__wrap .selectric-wrapper .selectric {
  background: transparent;
  border: none;
}

.select__wrap .selectric-wrapper .selectric .label {
  font-size: 15px;
  letter-spacing: 0.05em;
  height: 27px;
  line-height: 27px;
  margin: 0 20px 0 0;
  color: #fff;
}

.select__wrap .selectric-wrapper .selectric .button {
  background-color: transparent;
  color: #fff;
  width: 20px;
  height: 27px;
  line-height: 27px;
}

.select__wrap .selectric-wrapper .selectric .button::after {
  border: 6px solid transparent;
  border-top-color: #fff;
  top: 50%;
  right: -7px;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.select__wrap .selectric-wrapper .selectric-items {
  background: #000;
  border: none;
  width: 117px !important;
  left: -34px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select__wrap .selectric-wrapper .selectric-items li {
  color: #fff;
  font-size: 15px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  line-height: 15px;
  min-height: 15px;
}

.select__wrap .selectric-wrapper .selectric-items li.selected, .select__wrap .selectric-wrapper .selectric-items li.highlighted {
  background-color: #fff;
  color: #000;
}

.select__wrap .selectric-wrapper .selectric-items li:hover {
  background: unset;
  color: unset;
  letter-spacing: 0.13333em;
}

.ham {
  display: block;
}

.ham:hover span, .ham:hover p {
  opacity: .75;
}

.ham span {
  display: block;
  width: 35px;
  height: 1px;
  background-color: #fff;
  margin: 9px auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.ham p {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: #fff;
}

@media (max-width: 991px) {
  .ham p {
    font-size: 0.75em;
  }
}

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

.loader-wrap p {
  font-size: 3.125em;
}

.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;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: 0;
}

.loading-progress-number {
  font-family: 'Montserrat', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑", 'sans-serif' , Arial;
  font-display: swap;
  font-size: 60px;
  -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;
}

nav {
  position: fixed;
  right: -329px;
  z-index: 1000;
  width: 329px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (max-width: 1439px) {
  nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 991px) {
  nav {
    background-color: #000;
  }
}

@media (max-width: 575px) {
  nav {
    width: 51.47%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    min-height: -webkit-fill-available;
  }
}

nav.active {
  right: 0;
}

nav .ham {
  position: absolute;
  top: 53px;
  right: 60px;
}

@media (max-width: 991px) {
  nav .ham {
    top: 44px;
  }
}

@media (max-width: 767px) {
  nav .ham {
    top: 35px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  nav .ham {
    right: 20px;
  }
}

nav .ham span {
  -webkit-transform-origin: right;
          transform-origin: right;
}

nav .ham span:first-child {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

nav .ham span:nth-child(2) {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

nav .list {
  margin-top: 194px;
}

@media (max-width: 1439px) {
  nav .list {
    margin-top: 0px;
  }
}

@media (max-width: 575px) {
  nav .list {
    margin-right: 25px;
  }
}

@media (max-width: 991px) {
  nav .list > div {
    text-align: center;
  }
}

@media (max-width: 575px) {
  nav .list > div {
    text-align: right;
  }
}

@media (min-width: 992px) {
  nav .list > div:first-child {
    display: none;
  }
}

nav .list > div:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 1439px) {
  nav .list > div:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 360px) {
  nav .list > div:not(:last-child) {
    margin-bottom: 15px;
  }
}

nav .logo__wrap {
  margin-bottom: 125px;
}

@media (max-width: 1439px) {
  nav .logo__wrap {
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

@media (max-width: 991px) {
  nav .logo__wrap {
    display: none;
  }
}

@media (min-width: 992px) {
  nav .select__wrap {
    display: none;
  }
}

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

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #fff;
  font-family: 'Montserrat', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑", 'sans-serif' , Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

body::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}

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

body.loading-out {
  opacity: 0;
}

.u-border {
  border: .5px solid orange;
}

.u-border * {
  border: .5px solid orange;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 2.875em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.375em;
}

h5 {
  font-size: 1.125em;
}

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

span {
  font-size: 100%;
}

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

b, strong {
  font-weight: bold;
}

p, article {
  margin: 0;
  font-size: 0.9375em;
}

a {
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover {
  color: #fff;
  opacity: .75;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.back {
  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;
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 9px;
}

.icon {
  position: relative;
  width: 11px;
  height: 17px;
  margin-right: 6px;
}

.arrow {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 1px;
  background-color: #fff;
}

.arrow::after, .arrow::before {
  content: '';
  position: absolute;
  width: 65%;
  height: 1px;
  right: 5px;
  background-color: #fff;
}

.arrow::after {
  top: -2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arrow::before {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scroll {
  position: fixed;
  right: 8.47%;
  bottom: 30px;
  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;
  width: 115px;
  height: 115px;
  color: #A06E40;
  font-family: 'Noto Serif', serif;
}

@media (max-width: 1439px) {
  .scroll {
    right: 4.1925%;
  }
}

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

.scroll > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.scroll .scroll__line__1 {
  border: 1px solid #fff;
  -webkit-animation: waveW 5s linear infinite;
          animation: waveW 5s linear infinite;
  width: 85%;
  height: 72%;
}

.scroll .scroll__line__2 {
  border: 1px solid #A06E40;
  -webkit-animation: waveB 5s linear infinite;
          animation: waveB 5s linear infinite;
  width: 75%;
  height: 80%;
}

.scroll a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  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;
}

.index, main, .inner__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
}

.editor {
  width: 100%;
}

.editor > div {
  width: 100%;
}

.editor h3 {
  font-size: 1em;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 5px;
}

.editor img {
  width: auto !important;
  height: auto !important;
  margin-bottom: 20px;
}

.editor p, .editor article {
  font-size: 0.875em;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #f5f5f5;
}

.editor .single__img {
  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: 575px) {
  .editor .single__img .pc {
    display: none;
  }
}

@media (min-width: 576px) {
  .editor .single__img .mobile {
    display: none;
  }
}

.editor .editor__standard {
  margin-bottom: 20px;
}

.editor .editor__standard iframe {
  width: 100%;
}

@media (max-width: 1439px) {
  .editor .editor__standard iframe {
    height: 550px;
  }
}

@media (max-width: 1199px) {
  .editor .editor__standard iframe {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .editor .editor__standard iframe {
    padding-right: 20.4%;
    height: 350px;
  }
}

@media (max-width: 767px) {
  .editor .editor__standard iframe {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .editor .editor__standard iframe {
    height: 200px;
  }
}

.editor .l__img__r__txt, .editor .l__txt__r__img, .editor .l__img__r__img {
  margin-bottom: 30px;
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 991px) {
  .editor .l__img__r__txt, .editor .l__txt__r__img, .editor .l__img__r__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.editor .l__img__r__txt img, .editor .l__txt__r__img img, .editor .l__img__r__img img {
  margin-bottom: 0;
}

.editor .l__img__r__txt .img__wrap, .editor .l__txt__r__img .img__wrap, .editor .l__img__r__img .img__wrap {
  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;
  margin-bottom: 0;
}

.editor .l__img__r__txt > div, .editor .l__txt__r__img > div, .editor .l__img__r__img > div {
  width: 50%;
  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;
  flex-direction: column;
}

@media (max-width: 991px) {
  .editor .l__img__r__txt > div, .editor .l__txt__r__img > div, .editor .l__img__r__img > div {
    width: 100%;
  }
}

.editor .l__img__r__txt > div:first-child, .editor .l__txt__r__img > div:first-child, .editor .l__img__r__img > div:first-child {
  padding-right: 15px;
}

@media (max-width: 991px) {
  .editor .l__img__r__txt > div:first-child, .editor .l__txt__r__img > div:first-child, .editor .l__img__r__img > div:first-child {
    padding-right: 0;
    padding-bottom: 15px;
  }
}

.editor .l__img__r__txt > div:last-child, .editor .l__txt__r__img > div:last-child, .editor .l__img__r__img > div:last-child {
  padding-left: 15px;
}

@media (max-width: 991px) {
  .editor .l__img__r__txt > div:last-child, .editor .l__txt__r__img > div:last-child, .editor .l__img__r__img > div:last-child {
    padding-left: 0;
    padding-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .editor .l__txt__r__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.editor .second__title__wrap {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .editor .second__title__wrap {
    max-width: 91.58%;
  }
}

@media (max-width: 575px) {
  .editor .second__title__wrap {
    margin-bottom: 5px;
  }
}

.editor .imgs__wrap {
  width: 100%;
}

.editor .imgs__wrap .pc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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: 40px;
}

@media (max-width: 991px) {
  .editor .imgs__wrap .pc {
    display: none;
  }
}

.editor .imgs__wrap .pc > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  width: 100%;
  max-width: 628px;
}

@media (max-width: 991px) {
  .editor .imgs__wrap .pc > div {
    -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: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 45.79%;
  }
}

.editor .imgs__wrap .pc > div:first-child {
  margin-right: 17px;
}

@media (max-width: 991px) {
  .editor .imgs__wrap .pc > div:first-child {
    margin-right: 10px;
  }
}

.editor .imgs__wrap p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-right: 10px;
  font-size: 0.8125em;
  letter-spacing: 0.5em;
  line-height: 20px;
}

@media (max-width: 991px) {
  .editor .imgs__wrap p {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .editor .imgs__wrap .swiper-container {
    display: none;
  }
}

.editor .img__wrap {
  width: 100%;
  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: 40px;
}

@media (max-width: 991px) {
  .editor .img__wrap {
    -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;
  }
}

@media (max-width: 575px) {
  .editor .img__wrap {
    margin-bottom: 20px;
  }
}

.editor .img__wrap > div:not(.decoration) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  width: 49.225%;
  max-width: 628px;
}

@media (max-width: 991px) {
  .editor .img__wrap > div:not(.decoration) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    max-width: 91.58%;
  }
}

.editor .img__wrap > div:not(.decoration):first-child {
  margin-right: 17px;
}

@media (max-width: 991px) {
  .editor .img__wrap > div:not(.decoration):first-child {
    margin-right: 0;
  }
}

.editor .img__wrap > div:not(.decoration) p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-right: 10px;
  font-size: 0.8125em;
  letter-spacing: 0.5em;
  line-height: 20px;
}

@media (max-width: 991px) {
  .editor .img__wrap > div:not(.decoration) p {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
}

@media (max-width: 991px) {
  .editor .img__wrap .cover {
    width: 91.58%;
  }
}

.editor .cover {
  width: 100%;
  padding-top: calc(100% / 1.614);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .editor .cover {
    margin-bottom: 5px;
    width: 100%;
  }
}

.editor .decoration {
  margin-left: 39px;
}

@media (max-width: 991px) {
  .editor .decoration {
    margin-top: 25px;
    margin-left: 0;
    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;
  }
}

.editor .decoration > div {
  width: 74px;
  height: 74px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 1em;
  font-weight: 500;
  line-height: 23px;
  font-family: 'Noto Serif TC', serif;
  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;
}

.editor .decoration > div:not(:last-child) {
  margin: 0 0 29px 0;
}

@media (max-width: 991px) {
  .editor .decoration > div:not(:last-child) {
    margin: 0 12px 0 0;
  }
}

@media (min-width: 992px) {
  .index .header__logo {
    display: none;
  }
}

.index .header__right {
  margin-top: 4px;
}

@media (max-width: 1439px) {
  .index nav .ham {
    top: 24px;
  }
}

.index nav .list > div:first-child {
  display: none;
}

.index main {
  -webkit-animation: fadeIn .5s ease-in;
          animation: fadeIn .5s ease-in;
  padding-top: 11.2%;
  padding-left: 6.82%;
}

@media (max-width: 991px) {
  .index main {
    padding-top: 0;
    padding-left: 9.87%;
    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;
  }
}

.index .logo__wrap {
  margin-bottom: 74px;
}

@media (max-width: 1439px) {
  .index .logo__wrap {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .index .logo__wrap {
    display: none;
  }
}

.index .title__wrap {
  margin-bottom: 32px;
}

@media (max-width: 575px) {
  .index .title__wrap {
    margin-bottom: 16px;
  }
}

.index .title__wrap h1 {
  font-size: 5.9375em;
  font-weight: 100;
}

@media (max-width: 991px) {
  .index .title__wrap h1 {
    font-size: 4.1875em;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 575px) {
  .index .title__wrap h1 {
    font-size: 2.5em;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 575px) {
  .index .title__wrap .title__en {
    display: none;
  }
}

.index .title__en {
  font-family: "Myriad Pro" , Arial;
  font-size: 2.5em;
  letter-spacing: 0.15em;
  display: block;
  line-height: 48px;
  text-indent: 8px;
}

@media (max-width: 991px) {
  .index .title__en {
    font-size: 2.03125em;
  }
}

@media (max-width: 575px) {
  .index .title__en {
    font-size: 1.0625em;
    letter-spacing: 0.15em;
    line-height: 20px;
    text-indent: 0px;
  }
}

.index .index__wrap {
  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) {
  .index .index__wrap {
    margin-bottom: 21px;
  }
}

.index .index__wrap .slogan {
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif JP', serif;
  line-height: 70px;
  text-decoration: underline;
  margin-right: 45px;
  margin-left: 13px;
}

@-moz-document url-prefix() {
  .index .index__wrap .slogan {
    font-weight: normal;
  }
}

@media (max-width: 991px) {
  .index .index__wrap .slogan {
    font-size: 1.5em;
    letter-spacing: 0.2em;
    line-height: 56px;
    margin-right: 36.5px;
  }
}

@media (max-width: 575px) {
  .index .index__wrap .slogan {
    font-size: 0.875em;
    letter-spacing: 0.2em;
    line-height: 33px;
    margin-right: 28px;
    margin-left: 0px;
  }
}

.index .index__wrap .slogan__content {
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  line-height: 35px;
  color: #f5f5f5;
  margin-right: 40px;
  max-width: 361px;
}

@media (max-width: 991px) {
  .index .index__wrap .slogan__content {
    display: none;
  }
}

.index .index__wrap a {
  border: 1px solid #A06E40;
  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;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-family: 'Noto Serif TC', serif;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  background-color: #A06E40;
}

@media (max-width: 575px) {
  .index .index__wrap a {
    width: 55px;
    height: 55px;
    font-size: 0.875em;
  }
}

.index .index__wrap a:hover {
  color: #000;
  border: 1px solid #fff;
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 576px) {
  .index .mobile__en {
    display: none;
  }
}

.inner header {
  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: 36px 0 0 23px;
}

@media (max-width: 991px) {
  .inner header {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 38px 60px 0 0;
  }
}

@media (max-width: 767px) {
  .inner header {
    padding: 38px 30px 0 0;
  }
}

@media (max-width: 575px) {
  .inner header {
    padding: 45px 21px 0 21px;
  }
}

.inner header .header__logo {
  max-width: 98.5px;
}

@media (max-width: 991px) {
  .inner header .header__logo {
    display: none;
  }
}

.inner .inner__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: auto;
}

@media screen and (min-width: 1920px) {
  .inner .inner__bg {
    background-size: 150%;
  }
}

.inner .inner__wrap {
  padding: 165px 8.385%;
  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;
}

@media screen and (min-width: 1920px) {
  .inner .inner__wrap {
    max-width: 1920px;
    margin: 0 auto;
  }
}

@media (max-width: 1439px) {
  .inner .inner__wrap {
    padding: 165px 4.1925% 165px 23px;
  }
}

@media (max-width: 1199px) {
  .inner .inner__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 991px) {
  .inner .inner__wrap {
    padding: 48px 8.385%;
  }
}

@media (max-width: 575px) {
  .inner .inner__wrap {
    padding: 48px 72px 48px 18px;
  }
}

.inner .inner__title {
  position: fixed;
  padding-left: 22.75px;
}

@media (max-width: 1199px) {
  .inner .inner__title {
    margin: 0 12.17% 28px;
    position: relative;
  }
}

@media (max-width: 991px) {
  .inner .inner__title {
    margin: 0 0 28px 0;
  }
}

.inner .inner__title .num {
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  line-height: 25px;
}

.inner .inner__title .title__en {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 25px;
}

.inner .inner__title .title__zh {
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  line-height: 25px;
}

.inner .inner__title.type__list .num::after {
  content: '';
  position: absolute;
  top: 26px;
  left: 8px;
  width: 1px;
  height: 264px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
  background-image: linear-gradient(#fff, transparent);
}

@media (max-width: 1199px) {
  .inner .inner__title.type__list .num::after {
    content: none;
  }
}

.inner .inner__title.type__list .filter {
  position: relative;
  margin-top: 45px;
  padding-top: 30px;
}

@media (max-width: 1199px) {
  .inner .inner__title.type__list .filter {
    display: none;
  }
}

.inner .inner__title.type__list .filter::before {
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, color-stop(20%, #fff), to(transparent));
  background-image: linear-gradient(to right, #fff 20%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 1px;
}

.inner .inner__title.type__list .filter > div {
  margin-bottom: 20px;
}

.inner .inner__title.type__list .filter a {
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 30px;
}

.inner .inner__title.type__list .filter a.en {
  font-weight: bold;
}

@-moz-document url-prefix() {
  .inner .inner__title.type__list .filter a.en {
    font-weight: normal;
  }
}

.inner .filter__mobile {
  width: 100%;
  margin-bottom: 19px;
}

@media (min-width: 1200px) {
  .inner .filter__mobile {
    display: none;
  }
}

.inner .filter__mobile .swiper-slide {
  width: auto;
}

.inner .filter__mobile a {
  position: relative;
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 25px;
  display: block;
}

.inner .filter__mobile a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.inner .inner__content {
  width: 100%;
  padding: 0 10.17%;
}

@media (max-width: 575px) {
  .inner .inner__content {
    padding: 0;
  }
}

.inner .inner__content .title__wrap {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .inner .inner__content .title__wrap {
    margin-bottom: 10px;
  }
}

.inner .inner__content .title__wrap.first {
  margin-bottom: 45px;
}

@media (max-width: 575px) {
  .inner .inner__content .title__wrap.first {
    margin-bottom: 15px;
  }
}

.inner .inner__content .title__wrap .title {
  font-size: 1.25em;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 44px;
}

.inner .tag {
  font-size: 0.8125em;
  letter-spacing: 0.02em;
  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;
  font-weight: 500;
  line-height: 30px;
  border: 1px solid #fff;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .inner .tag {
    margin-bottom: 5px;
  }
}

.inner .date {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 25px;
}

@media (max-width: 991px) {
  .inner[data-page="about"] .inner__wrap {
    padding: 48px 0 48px 8.385%;
  }
}

@media (max-width: 1199px) {
  .inner[data-page="about"] .inner__content {
    padding: 0 12.17%;
  }
}

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

@media (max-width: 991px) {
  .inner[data-page="about"] .title__wrap, .inner[data-page="about"] .second__title__wrap, .inner[data-page="about"] .img__wrap {
    padding-right: 20.4%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .editor__standard h1, .inner[data-page="about"] .editor .editor__standard h2, .inner[data-page="about"] .editor .editor__standard h3, .inner[data-page="about"] .editor .editor__standard h4, .inner[data-page="about"] .editor .editor__standard h5, .inner[data-page="about"] .editor .editor__standard h6 {
    padding-right: 20.4%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .editor__standard p {
    line-height: 30px;
    font-size: 0.875em;
    letter-spacing: 0.02em;
    font-weight: 500;
    padding-right: 20.4%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .editor__standard .title__wrap p {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .img__wrap > div:not(.decoration) {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .img__wrap .cover {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .second__title__wrap {
    max-width: 100%;
  }
  .inner[data-page="about"] .editor .second__title__wrap p {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .inner[data-page="about"] .editor .l__img__r__txt, .inner[data-page="about"] .editor .l__txt__r__img, .inner[data-page="about"] .editor .single__img, .inner[data-page="about"] .editor .l__img__r__img {
    padding-right: 20.4%;
  }
  .inner[data-page="about"] .editor .l__img__r__txt .title__wrap, .inner[data-page="about"] .editor .l__txt__r__img .title__wrap, .inner[data-page="about"] .editor .single__img .title__wrap, .inner[data-page="about"] .editor .l__img__r__img .title__wrap {
    padding-right: 0;
  }
  .inner[data-page="about"] .editor .l__img__r__txt .img__wrap, .inner[data-page="about"] .editor .l__txt__r__img .img__wrap, .inner[data-page="about"] .editor .single__img .img__wrap, .inner[data-page="about"] .editor .l__img__r__img .img__wrap {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="news-list"] .inner__wrap {
    padding: 48px 12.17% 0 8.385%;
  }
}

@media (max-width: 575px) {
  .inner[data-page="news-list"] .inner__wrap {
    padding: 48px 72px 48px 18px;
  }
}

.inner[data-page="news-list"] .filter__mobile {
  margin: 0 12.17% 19px;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .filter__mobile {
    margin: 0 0 19px 0;
  }
}

.inner[data-page="news-list"] .list__wrap {
  width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 1366px) {
  .inner[data-page="news-list"] .list__wrap {
    width: 820px;
  }
}

@media (max-width: 1199px) {
  .inner[data-page="news-list"] .list__wrap {
    margin: 0 12.17%;
    width: 100%;
    max-width: 77.5%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .list__wrap {
    max-width: 90%;
    margin: 0 7.17% 0 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="news-list"] .list__wrap {
    max-width: 100%;
    margin: 0 3.585% 0 0;
  }
}

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

.inner[data-page="news-list"] .one__news {
  position: relative;
  padding-bottom: 27px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .one__news {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

.inner[data-page="news-list"] .one__news::after {
  content: '.....................................................................';
  letter-spacing: 10px;
  height: 9px;
  line-height: 2px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
}

@media (max-width: 575px) {
  .inner[data-page="news-list"] .one__news::after {
    letter-spacing: 5px;
  }
}

.inner[data-page="news-list"] .one__news a {
  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;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .one__news a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.inner[data-page="news-list"] .one__news .info {
  margin-right: 6.1%;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .one__news .info {
    margin-top: 0;
    margin-right: 0;
  }
}

.inner[data-page="news-list"] .one__news .content {
  margin-right: 8.6%;
  width: 66.5%;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .one__news .content {
    width: 85.26%;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .inner[data-page="news-list"] .one__news .content {
    width: 100%;
  }
}

.inner[data-page="news-list"] .one__news .content article {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: left;
}

.inner[data-page="news-list"] .one__news .more {
  line-height: 125px;
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 991px) {
  .inner[data-page="news-list"] .one__news .more {
    display: none;
  }
}

.inner[data-page="news-list"] .one__news .title {
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 5px;
}

.inner[data-page="news-list"] .one__news article {
  font-size: 0.875em;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #f5f5f5;
}

@media (max-width: 575px) {
  .inner[data-page="news-content"] .inner__wrap {
    padding: 48px 0px;
  }
}

@media (max-width: 575px) {
  .inner[data-page="news-content"] .inner__title.type__list {
    margin-left: 18px;
  }
}

.inner[data-page="news-content"] .content__wrap {
  max-width: 1089px;
  margin: 0 0 0 17.08%;
}

@media (max-width: 1439px) {
  .inner[data-page="news-content"] .content__wrap {
    margin: 0 12.17%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="news-content"] .content__wrap {
    margin: 0 7.17% 0 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="news-content"] .content__wrap {
    margin: 0 72px 0 0;
  }
}

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

@media (max-width: 575px) {
  .inner[data-page="news-content"] .content__wrap > div.back__wrap, .inner[data-page="news-content"] .content__wrap > div.filter__mobile__wrap, .inner[data-page="news-content"] .content__wrap > div.content__top {
    padding: 0 72px 0 18px;
  }
}

@media (max-width: 575px) {
  .inner[data-page="news-content"] .content__wrap > div.editor .editor__standard, .inner[data-page="news-content"] .content__wrap > div.editor .txt__wrap {
    padding: 0 72px 0 18px;
  }
}

@media (max-width: 575px) {
  .inner[data-page="news-content"] .content__wrap > div.editor .single__img img, .inner[data-page="news-content"] .content__wrap > div.editor .l__img__r__txt img, .inner[data-page="news-content"] .content__wrap > div.editor .l__txt__r__img img, .inner[data-page="news-content"] .content__wrap > div.editor .l__img__r__img img {
    width: 100%;
  }
}

.inner[data-page="news-content"] .content__top {
  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;
  margin-bottom: 17px;
}

.inner[data-page="news-content"] .content__top > div {
  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) {
  .inner[data-page="news-content"] .content__top > div {
    width: 100%;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.inner[data-page="news-content"] .content__top .tag {
  margin-bottom: 0;
  margin-right: 15px;
  padding: 0 6px;
  min-width: 66px;
}

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

.inner[data-page="news-content"] .content__top .title {
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 30px;
  max-width: 85%;
}

@media (min-width: 576px) {
  .inner[data-page="news-content"] .content__top .mobile__date {
    display: none;
  }
}

.inner[data-page="news-content"] .content__top .date__wrap {
  min-width: 80px;
}

@media (max-width: 575px) {
  .inner[data-page="news-content"] .content__top .date__wrap {
    display: none;
  }
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .inner__wrap {
    padding: 48px 0 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .inner__title.type__list {
    margin-left: 18px;
  }
}

.inner[data-page="intro-spa"] .inner__content {
  padding: 154px 12.08% 154px 11.25%;
}

@media (max-width: 1199px) {
  .inner[data-page="intro-spa"] .inner__content {
    padding: 0 12.08% 0 12.17%;
  }
}

@media (max-width: 991px) {
  .inner[data-page="intro-spa"] .inner__content {
    padding: 0;
  }
}

.inner[data-page="intro-spa"] .editor {
  max-width: 1336px;
}

@media (max-width: 1199px) {
  .inner[data-page="intro-spa"] .editor {
    max-width: 920px;
    margin: 0 0 154px 0;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .inner[data-page="intro-spa"] .editor {
    padding: 0 7.17% 0 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .editor {
    margin: 0;
    padding: 0;
  }
}

.inner[data-page="intro-spa"] .editor .editor__standard {
  margin-bottom: 0;
}

.inner[data-page="intro-spa"] .editor .pc {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .inner[data-page="intro-spa"] .editor .pc {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .editor .pc {
    display: none;
  }
}

.inner[data-page="intro-spa"] .editor .pc a {
  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;
  width: 100%;
}

.inner[data-page="intro-spa"] .editor .pc a > div {
  width: 94%;
}

.inner[data-page="intro-spa"] .editor .pc a .info {
  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;
}

.inner[data-page="intro-spa"] .editor .pc a .info p {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.inner[data-page="intro-spa"] .editor .pc .img {
  padding-top: calc( 100% * 1.1931);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .inner[data-page="intro-spa"] .editor .mobile {
    display: none;
  }
}

.inner[data-page="intro-spa"] .editor .mobile .img {
  padding-top: calc( 100% / 1.769);
}

.inner[data-page="intro-spa"] .editor .mobile .img > div {
  position: absolute;
  left: 10.67%;
  top: 17%;
}

.inner[data-page="intro-spa"] .one__spa {
  width: 32.186%;
  margin-bottom: 30px;
}

.inner[data-page="intro-spa"] .one__spa:not(:nth-child(3n + 3)) {
  margin-right: 1.72%;
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .one__spa:not(:nth-child(3n + 3)) {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .inner[data-page="intro-spa"] .one__spa {
    width: calc(50% - 7.5px);
  }
  .inner[data-page="intro-spa"] .one__spa:not(:nth-child(3n + 3)) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .inner[data-page="intro-spa"] .one__spa {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .inner[data-page="intro-spa"] .one__spa:hover .img {
    background-size: 105%;
  }
}

.inner[data-page="intro-spa"] .one__spa .title {
  font-size: 0.8125em;
  letter-spacing: 13px;
  padding-right: 7px;
  line-height: 20px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.inner[data-page="intro-spa"] .one__spa .img {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: relative;
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .inner__wrap {
    padding: 48px 18px;
  }
}

.inner[data-page="intro-content"] .inner__content {
  width: 100%;
  max-width: 1267px;
  padding: 0;
  margin: 0 5.83% 0 13.58%;
}

@media (max-width: 1599px) {
  .inner[data-page="intro-content"] .inner__content {
    margin: 0 5.83% 0 16.58%;
  }
}

@media (max-width: 1439px) {
  .inner[data-page="intro-content"] .inner__content {
    margin: 0 10.83% 0 16.58%;
  }
}

@media (max-width: 1199px) {
  .inner[data-page="intro-content"] .inner__content {
    padding: 0 13.08% 0 12.17%;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .inner[data-page="intro-content"] .inner__content {
    padding: 0 7.17% 0 0;
  }
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .inner__content {
    padding: 0;
  }
}

.inner[data-page="intro-content"] .second__title__wrap {
  margin-bottom: 15px;
}

.inner[data-page="intro-content"] .second__title__wrap p {
  line-height: 20px;
}

.inner[data-page="intro-content"] .second__title__wrap a {
  text-decoration: underline;
  position: relative;
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 25px;
}

.inner[data-page="intro-content"] .second__title__wrap a img {
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .editor__standard .title__wrap {
    margin-bottom: 0;
  }
  .inner[data-page="intro-content"] .editor__standard .title__wrap p {
    padding-right: 50px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .editor__standard .title {
    font-size: 1.0625em;
    line-height: 30px;
  }
  .inner[data-page="intro-content"] .editor__standard .title span {
    font-size: 0.875em;
    line-height: 20px;
  }
}

.inner[data-page="intro-content"] .editor__standard article {
  font-size: 1em;
  letter-spacing: 0.02em;
  font-weight: bold;
  line-height: 40px;
}

@-moz-document url-prefix() {
  .inner[data-page="intro-content"] .editor__standard article {
    font-weight: normal;
  }
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .editor__standard article {
    font-size: 0.875em;
    letter-spacing: 0.02em;
    line-height: 30px;
    padding-right: 50px;
  }
}

.inner[data-page="intro-content"] .img__typesetting {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.inner[data-page="intro-content"] .img__typesetting .img {
  width: 32.28%;
  padding-top: calc(32.28%/ 1.92);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .inner[data-page="intro-content"] .img__typesetting .img {
    margin-bottom: 6px;
  }
}

.inner[data-page="intro-content"] .img__typesetting .img:not(:nth-child(3n + 3)) {
  margin-right: 1.578%;
}

.inner[data-page="intro-content"] .scroll {
  right: 4.1925%;
}

.inner.transportation .inner__content {
  margin: 25px 20.21%;
}

@media (max-width: 1199px) {
  .inner.transportation .inner__content {
    padding: 0 12.17%;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .inner.transportation .inner__content {
    padding: 0 12.17% 0 0;
  }
}

.inner.transportation .editor__standard article {
  font-weight: 500;
}

@media (max-width: 1439px) {
  .inner.transportation .editor__standard iframe {
    width: 100%;
  }
}

.inner.platform .inner__content {
  max-width: 1012px;
  padding: 0;
  margin: 0 15.58% 0 21%;
}

@media (max-width: 1599px) {
  .inner.platform .inner__content {
    margin: 0 15.58% 0 23%;
  }
}

@media (max-width: 1199px) {
  .inner.platform .inner__content {
    padding: 0 13.08% 0 12.17%;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .inner.platform .inner__content {
    padding: 0 7.17% 0 0;
  }
}

@media (max-width: 575px) {
  .inner.platform .inner__content {
    padding: 0;
  }
}

.inner.platform .title__wrap {
  margin-bottom: 45px;
}

.inner.platform .title__wrap p:not(.type__serif) {
  margin-bottom: 15px;
}

.inner.platform .type__serif {
  font-size: 1.125em;
  font-family: 'Noto Serif', serif;
}

.inner.platform .content__wrap.customize {
  margin-bottom: 45px;
}

.inner.platform .content__wrap.customize .title {
  font-size: 1em;
  margin-bottom: 15px;
}

.inner.platform .content__wrap.customize p {
  margin-bottom: 15px;
}

.inner.platform .content__wrap.customize .img__wrap {
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner.platform .content__wrap.customize .img__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.inner.platform .content__wrap.customize .img__wrap > div {
  width: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner.platform .content__wrap.customize .img__wrap > div:first-child {
    margin-right: 17px;
  }
}

@media (max-width: 767px) {
  .inner.platform .content__wrap.customize .img__wrap > div {
    max-width: 100%;
  }
}

.inner.platform .content__wrap.customize .img__wrap img {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .inner.platform .content__wrap.customize .img__wrap img {
    margin-bottom: 15px;
  }
}

.firefox footer {
  min-height: 100vh;
}

.ios.index {
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
}

.ios.index main {
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
}

footer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 998;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
  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 (min-width: 992px) {
  footer .mobile {
    display: none;
  }
}

footer .footer__wrap {
  padding-right: 74.8px;
}

@media (max-width: 991px) {
  footer .footer__wrap {
    padding-right: 69px;
  }
}

@media (max-width: 767px) {
  footer .footer__wrap {
    padding-right: 40px;
  }
}

@media (max-width: 575px) {
  footer .footer__wrap {
    padding-right: 20px;
    margin-bottom: 39px;
  }
}

footer .footer__wrap > div {
  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;
}

footer .footer__wrap > div:first-child, footer .footer__wrap > div:nth-child(2) {
  margin-bottom: 31px;
}

@media (max-width: 1439px) {
  footer .footer__wrap > div:first-child, footer .footer__wrap > div:nth-child(2) {
    margin-bottom: 26px;
  }
}

@media (max-width: 575px) {
  footer .footer__wrap > div:first-child, footer .footer__wrap > div:nth-child(2) {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  footer .footer__wrap > div.pc {
    display: none;
  }
}

footer .footer__wrap > div a {
  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: 575px) {
  footer .footer__wrap > div a {
    max-width: 17px;
  }
}

.copyright {
  margin-top: 100px;
}

@media (max-width: 1439px) {
  .copyright {
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .copyright.mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .copyright {
    position: fixed;
    bottom: 16px;
    left: calc(100% - 18px - 68px);
    z-index: 900;
    margin-top: 0;
  }
  .copyright.pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .copyright {
    left: calc(100% - 18px - 39px);
  }
}

@media (max-width: 575px) {
  .copyright {
    left: calc(100% - 18px - 20px);
  }
}

.copyright p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: 'Noto Serif', serif;
  white-space: nowrap;
  font-size: 0.875em;
  font-weight: 500;
}

@media (max-width: 575px) {
  .copyright p {
    font-size: 0.75em;
  }
}

.test-box {
  width: 100px;
  height: 100px;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #000;
  }
}

.test-img {
  width: 480px;
  height: 200px;
  background: url("../images/img_test.jpg");
  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) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}
/*# sourceMappingURL=style.css.map */