@charset "UTF-8";
/*
 * Custom Global Styles
 * 包含全站共用的 Reset, Layout, Components
 */
/* 
 * 全域變數
 */
:root {
  --ff-default: "Marcellus", "Noto Serif TC",serif;
  --ff-en: "Marcellus", sans-serif;
  --ff-en-2: "Tangerine", cursive;
  --ff-en-3: "Poppins", sans-serif;
  --fs-head-title: fs(24, 36);
  --fs-head-subtitle: fs(14, 16);
  --fs-head-text: fs(15, 16);
  --fs-list-title: fs(18, 20);
  --fs-list-text: fs(16, 18);
  --fs-message-text: fs(15, 16);
  --g-txt: fs(16, 18);
  --fz-sm: 0.9375em;
  --g-gap: clamp(0.75rem, 0.6863rem + 0.2614vw, 1rem);
  --g-sec: clamp(2rem, 1.2353rem + 3.1373vw, 15rem);
  --content-max-width: 1300px;
  --breakout-max-width: 1420px;
  --breakout-size: calc(
    (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  --padding-inline: calc(var(--g-gap) * 2);
  --plyr-control-spacing: 10px;
  --plyr-color-main: #00098b;
  --g-radius: clamp(0.5rem, 0.6863rem + 0.2614vw, 10px);
  --btn-radius: 30px;
  --article-title: #000;
  --kanban-pagination: #fff;
  --kanban-pagination-active: $main;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-scrollbar-size: 3px;
  --swiper-scrollbar-drag-bg-color: #fff, ;
}

/* Title */
h6 {
  font-size: 1px;
  font-weight: 400;
}

h5 {
  font-size: 9px;
  font-weight: 400;
}

h4 {
  font-size: 17px;
  font-weight: 400;
}

h3 {
  font-size: 25px;
  font-weight: 400;
}

h2 {
  font-size: 33px;
  font-weight: 400;
}

h1 {
  font-size: 41px;
  font-weight: 400;
}

h0 {
  font-size: 49px;
  font-weight: 400;
}

@media (max-width: 991px) {
  h6 {
    font-size: 1px;
  }
  h5 {
    font-size: 8px;
  }
  h4 {
    font-size: 15px;
  }
  h3 {
    font-size: 22px;
  }
  h2 {
    font-size: 29px;
  }
  h1 {
    font-size: 36px;
  }
  h0 {
    font-size: 43px;
  }
}
/* Button */
/* 
 * Reset
 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  text-decoration: none;
  vertical-align: top;
  max-width: 100%;
}

a {
  color: #231815;
  outline: none;
}

a,
a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

input,
textarea,
select,
button {
  font-size: 1rem;
  font-weight: 400;
}

textarea,
input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

input,
textarea,
select {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none;
  font-size: 1rem;
  border-radius: 0;
}

input,
textarea,
select,
input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

label {
  font-weight: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  outline: 0;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #888;
  font-size: 15px;
  opacity: 1;
}

.reset {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.reset input,
.reset label,
.reset select {
  vertical-align: middle;
}

input[type=date]::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
}

:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #231815;
  font-weight: 500;
  font-family: "Noto Serif TC", serif;
  --sb-track-color: #ccc;
  --sb-thumb-color: #666;
  --sb-size: 5px;
}
body::-webkit-scrollbar {
  width: var(--sb-size);
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

/**!
 * * 保留BS v3隱藏/顯示的樣式 https://getbootstrap.com/docs/3.4/customize/
 * * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * * Copyright 2011-2019 Twitter, Inc.
 * * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/**! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

[role=button] {
  cursor: pointer;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.disabled,
.disabled:hover {
  cursor: not-allowed;
}

/*
 * Header-基本款
 */
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header .hidden-header {
  display: none !important;
}
.header .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  aspect-ratio: 120/50;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: height 0.3s ease, background 0.3s ease, -webkit-box-flex 0.3s ease;
  transition: height 0.3s ease, background 0.3s ease, -webkit-box-flex 0.3s ease;
  transition: flex 0.3s ease, height 0.3s ease, background 0.3s ease;
  transition: flex 0.3s ease, height 0.3s ease, background 0.3s ease, -webkit-box-flex 0.3s ease, -ms-flex 0.3s ease;
  background-image: url(../images/logo_w.png);
}
.header .fsc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  aspect-ratio: 50/58;
}
.header__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}
.header .g__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .g__search .search-btn {
  display: block;
  height: 44px;
  width: 44px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  border: 0;
  padding: 0;
  font-size: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.header .g__search .form-flex {
  display: none;
  -webkit-transition: opacity 0.3s, width 0.3s;
  transition: opacity 0.3s, width 0.3s;
  position: absolute;
  width: 300px;
  opacity: 1;
  top: 100%;
  right: 0;
  font-size: 0;
}
.header .g__search-input, .header .g__search-btn {
  font-size: 1rem;
  height: 50px;
  line-height: 50px;
  border: 0;
  padding: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.header .g__search-input {
  padding: 0 1rem;
  width: calc(100% - 50px);
}
.header .g__search-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  aspect-ratio: 1;
  background-color: #000;
  color: #fff;
  margin: 0 auto;
  border: 0;
  padding: 0;
  font-size: 14px;
}
.header .navigation {
  text-align: center;
}
.header .navigation__main {
  font-size: 18px;
}
.header .navigation__main > li {
  position: relative;
}
.header .navigation__main > li .en {
  display: none;
}
.header .navigation__main > li a {
  display: block;
}
.header .navigation__main > li > a {
  letter-spacing: 2px;
  color: #fff;
  width: 100%;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
}
.header .navigation__second-link {
  background-color: #C7000B;
}
.header .navigation__second-link > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .navigation__second-link > li > a {
  color: #fff;
}
.header .btn__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  font-weight: 500;
  text-align: center;
  height: clamp(2.75rem, 2.5731707317rem + 0.487804878vw, 3rem);
  line-height: clamp(2.75rem, 2.5731707317rem + 0.487804878vw, 3rem);
}
.header .social-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  position: relative;
  color: #fff;
  line-height: 40px;
  background: right center no-repeat;
  cursor: pointer;
}
.header .social-btn:before {
  content: "|";
  color: #666;
}
.header .social-btn::after {
  content: "";
  -webkit-filter: brightness(0%) invert(100);
          filter: brightness(0%) invert(100);
  display: block;
  position: absolute;
  right: -1.5rem;
  top: 0.5rem;
  width: 16px;
  aspect-ratio: 1;
  background: url(../images/icon_aw.png);
  background-size: contain;
}
.header .c-social {
  display: none;
  position: absolute;
  top: 100%;
  gap: 0;
}
.header .c-social__text {
  display: none;
}
.header .c-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.header .c-social ul li {
  width: 100%;
}
.header .c-social ul li a {
  background: #fff;
}
.header .c-social ul li .fb i {
  background-color: #395693;
}
.header .c-social ul li .ig i {
  background: rgb(64, 93, 230);
  background: linear-gradient(59deg, rgb(64, 93, 230) 0%, rgb(225, 48, 108) 46%, rgb(252, 175, 69) 85%);
}
.header .c-social ul li .line i {
  background-color: #00c300;
}
.header.header--hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media (min-width: 1200px) {
  .header .g__search-input, .header .g__search-btn {
    display: inline-block;
    height: 60px;
    line-height: 60px;
  }
  .header .g__search-btn {
    width: 60px;
  }
  .header .g__search-input {
    width: calc(100% - 60px - 5px);
  }
  .header .navigation {
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    margin: 0 auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
  }
  .header .navigation__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .navigation__main > li {
    position: relative;
  }
  .header .navigation__main > li .aw {
    display: none;
  }
  .header .navigation__main > li:hover .navigation__main-link {
    top: 100%;
  }
  .header .navigation__main > li:hover > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .header .navigation__main > li > a {
    font-weight: 450;
    padding: 10px;
    text-align: center;
    letter-spacing: 1px;
  }
  .header .navigation__main > li ul {
    position: absolute;
    width: 230px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
  }
  .header .navigation__main-link {
    top: 105%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
    -webkit-transition: top 0.2s, opacity 0.2s;
    transition: top 0.2s, opacity 0.2s;
    display: block;
  }
  .header .navigation__main-link li a {
    padding: 1rem 0;
  }
  .header .navigation__main-link li a:hover {
    color: #C7000B;
  }
  .header .navigation__main-link > li {
    position: relative;
    border-top: 1px solid #ddd;
  }
  .header .navigation__main-link > li > ul {
    left: 100%;
    top: 0;
    background-color: #C7000B;
    max-height: 80dvh;
    overflow-y: auto;
  }
  .header .navigation__main-link > li > ul::-webkit-scrollbar {
    width: var(--sb-size);
  }
  .header .navigation__main-link > li > ul::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 3px;
  }
  .header .navigation__main-link > li > ul::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 3px;
  }
  @supports not selector(::-webkit-scrollbar) {
    .header .navigation__main-link > li > ul {
      scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
  }
  .header .navigation__main-link > li > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header .navigation__main-link > li > ul > li:hover a {
    color: #fff;
    background-color: #231815;
  }
  .header .navigation__main-link > li > ul > li a {
    color: #fff;
  }
  .header .navigation__main-link > li:hover > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .header .navigation__second-link {
    top: 0%;
    left: 100%;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .header .social-btn ul li a {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #231815;
  }
  .header .c-social ul li {
    width: 100%;
  }
  .header.is-scroll {
    background: #fff;
  }
  .header.is-scroll .logo {
    background-size: 100%;
    background-image: url(../images/logo.png);
  }
  .header.is-scroll .g__search .search-btn {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z' stroke='%23231815' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .header.is-scroll .social-btn {
    color: #231815;
  }
  .header.is-scroll .social-btn:before {
    content: "|";
    color: #231815;
  }
  .header.is-scroll .social-btn::after {
    -webkit-filter: unset;
            filter: unset;
  }
  .header.is-scroll .navigation__main > li.current > a {
    color: #C7000B;
  }
  .header.is-scroll .navigation__main > li > a {
    color: #231815;
  }
}
@media (max-width: 1199px) {
  .header {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .header .fsc {
    margin-right: auto;
  }
  .header .navigation {
    background: #fff;
    position: absolute;
    top: 100%;
    width: 300px;
    right: -300px;
    height: 100dvh;
    overflow-y: auto;
    -webkit-transition: 0.3s 0.1s ease;
    transition: 0.3s 0.1s ease;
  }
  .header .navigation .navigation__main ul {
    display: none;
    position: relative;
    width: 100%;
    opacity: 1;
    left: 0;
    top: 0;
    background: #f5f4f4;
  }
  .header .navigation .navigation__main ul.navigation__second-link {
    background-color: #C7000B;
  }
  .header .navigation .navigation__main ul.navigation__second-link > li > a {
    color: #fff;
  }
  .header .navigation .navigation__main > li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  }
  .header .navigation .navigation__main > li > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .header .navigation .navigation__main a {
    padding: 1rem;
    color: #231815;
  }
  .header .navigation .navigation__main .has-child {
    position: relative;
  }
  .header .navigation .navigation__main .aw::before {
    content: "";
    width: 27px;
    height: 1px;
    background: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
  .header .navigation .navigation__main .aw:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .navigation .navigation__main .aw {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header .navigation .navigation__main .is-open > .aw {
    -webkit-transform: scale(0.7) rotate(135deg);
        -ms-transform: scale(0.7) rotate(135deg);
            transform: scale(0.7) rotate(135deg);
  }
  .header::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -100dvw;
    top: 100%;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .header .g__search {
    position: relative;
    padding: 0;
    background-color: transparent;
    margin-right: 0;
    height: 40px;
    width: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
  .header .social-btn {
    margin-right: 1rem;
  }
  .header .social-btn:before {
    color: rgba(255, 255, 255, 0.5);
  }
  .header.is-open .navigation {
    right: 0;
  }
  .header.is-open::after {
    right: 0;
  }
  .header.is-scroll .switch {
    background-color: #231815;
  }
}
@media (max-width: 767px) {
  .header.content-grid {
    display: block;
    padding: 10px 1rem;
  }
  .header .c-social ul {
    font-size: 0;
    position: absolute;
    gap: 0;
    padding: 5px 0;
    bottom: 60px;
    background: rgba(255, 255, 255, 0.5);
    width: 50px;
    display: block;
    border-radius: 30px;
  }
  .header .c-social ul li {
    width: 44px;
    display: block;
  }
  .header .c-social ul li a {
    background: transparent;
    display: block;
    padding: 0;
    width: 44px;
    height: 44px;
  }
  .header .c-social ul li i {
    font-size: 1rem;
  }
  .header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
  }
  .header .fsc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
  .header .g__search {
    margin: 0;
    width: 20px;
    height: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }
  .header .g__search .search-btn {
    width: 20px;
    height: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    background-size: 20px;
  }
  .header .g__search .form-flex {
    width: 100dvw;
    position: fixed;
    right: 0;
    top: 60px;
  }
  .header__wrap {
    padding: 0;
  }
  .header .social-btn {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #000;
    gap: 0.75rem;
    position: fixed;
    bottom: 60px;
    right: 10px;
    margin: 0;
    font-size: 0;
    line-height: 1;
    text-align: center;
    -ms-flex-line-pack: center;
        align-content: center;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' width='20px' height='20px' viewBox='-0.013 0 0.475 0.475' xmlns='http://www.w3.org/2000/svg' class='cf-icon-svg'%3E%3Cpath d='M0.139 0.188v0.084l-0.056 0.035c-0.006 0.003 -0.01 0.001 -0.01 -0.006V0.267H0.046a0.012 0.012 0 0 1 -0.012 -0.012V0.091a0.012 0.012 0 0 1 0.012 -0.012h0.235a0.012 0.012 0 0 1 0.012 0.012v0.058H0.179A0.04 0.04 0 0 0 0.139 0.188m0.286 0v0.164a0.012 0.012 0 0 1 -0.012 0.012h-0.026v0.036c0 0.007 -0.004 0.009 -0.01 0.006l-0.065 -0.041 -0.001 -0.001H0.179a0.012 0.012 0 0 1 -0.012 -0.012V0.188a0.012 0.012 0 0 1 0.012 -0.012h0.235a0.012 0.012 0 0 1 0.012 0.012'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
  }
  .header .social-btn::after {
    display: none;
  }
}
/*====================================*/
/*--------SWITCH--------*/
/*====================================*/
@media (min-width: 1200px) {
  .switch {
    display: none;
  }
}
.switch {
  position: relative;
  cursor: pointer;
  width: 46px;
  aspect-ratio: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  font-size: 0;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.switch span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23px;
  height: 1px;
  border-radius: 2px;
  background: #fff;
  margin-left: -10.5px;
  z-index: 99;
}
.switch span:first-child {
  margin-top: -7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.switch span:nth-child(2) {
  width: 20px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.switch span:last-child {
  margin-top: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.is-open .switch {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  border: 22px solid;
  border-color: rgba(0, 0, 0, 0.68) rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.5);
  background-color: #C7000B;
}
.header.is-open .switch span:first-child, .header.is-open .switch span:last-child {
  margin-top: 0px;
  margin-left: 0;
  -webkit-transition: margin 0.3s, -webkit-transform 0.3s;
  transition: margin 0.3s, -webkit-transform 0.3s;
  transition: margin 0.3s, transform 0.3s;
  transition: margin 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header.is-open .switch span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.header.is-open .switch span:nth-child(2) {
  width: 0;
}

@media (max-width: 767px) {
  .switch {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36px;
            flex: 0 0 36px;
    width: 36px;
  }
  .switch span {
    margin-left: -9.5px;
    width: 14px;
  }
}
/* 
 * Footer-基本款
 */
.footer {
  padding-top: var(--g-sec);
}
@media (max-width: 767px) {
  .footer {
    padding-top: 2rem;
  }
}
.footer .navigation__second-link,
.footer .hidden-footer {
  display: none !important;
}
.footer a {
  color: #231815;
}
.footer a:hover {
  color: #C7000B;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .navigation__main {
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer .navigation__main {
    margin-bottom: 1rem;
    gap: 5%;
  }
}
@media (max-width: 991px) {
  .footer .navigation__main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .footer .navigation__main {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .navigation__main > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(0.9375rem, 0.8932926829rem + 0.1219512195vw, 1rem);
}
@media (max-width: 767px) {
  .footer .navigation__main > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 2rem) / 3);
            flex: 0 0 calc((100% - 2rem) / 3);
  }
}
.footer .navigation__main > li > a {
  display: block;
  font-size: clamp(1rem, 0.9115853659rem + 0.243902439vw, 1.125rem);
  font-weight: 600;
}
.footer .navigation__main > li > ul {
  line-height: 1.4;
}
.footer .navigation__main > li > ul > li {
  margin: 0.75rem 0;
}
@media (max-width: 767px) {
  .footer .navigation__main > li > ul > li {
    margin: 0.25rem;
  }
}
.footer__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  padding: 0 5%;
}
@media (max-width: 1199px) {
  .footer__left {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 1rem 0;
    border-right: 0;
  }
}
.footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  border-left: 1px solid #665;
}
@media (max-width: 1199px) {
  .footer__right {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid #665;
  }
}
@media (max-width: 991px) {
  .footer__right {
    -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: 767px) {
  .footer__right {
    gap: 0.5rem;
  }
}
@media (max-width: 1199px) {
  .footer__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    padding-right: 5%;
  }
}
@media (max-width: 991px) {
  .footer__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .footer__info {
    padding: 0;
  }
}
.footer__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: clamp(0.875rem, 0.7865853659rem + 0.243902439vw, 1rem);
}
@media (max-width: 991px) {
  .footer__info ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 2rem;
  }
}
.footer__info ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 38px;
  padding: 0 0 0 45px;
}
@media (max-width: 767px) {
  .footer__info ul li {
    padding: 0 0 0 35px;
    line-height: 28px;
  }
}
.footer__info ul li .ti {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  aspect-ratio: 1;
  width: 38px;
}
@media (max-width: 767px) {
  .footer__info ul li .ti {
    width: 28px;
    line-height: 26px;
  }
}
.footer__info ul li a {
  display: inline-block;
}
@media (max-width: 1199px) {
  .footer__info ul li a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 991px) {
  .footer__info ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
}
.footer__copyright {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 2rem 0;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 0.7865853659rem + 0.243902439vw, 1rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 2px;
  color: #231815;
  border-top: 1px solid #666;
}
@media (max-width: 1199px) {
  .footer__copyright {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .footer__copyright {
    letter-spacing: 0;
  }
}
.footer__copyright .grnet {
  margin-left: auto;
  color: #ddd;
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.7240853659rem + 0.243902439vw, 0.9375rem);
}
@media (max-width: 991px) {
  .footer__copyright .grnet {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer__copyright .grnet {
    text-align: center;
  }
}
.footer__copyright .grnet a {
  font-weight: 400;
  color: #ddd;
}
.footer__copyright .grnet a:hover {
  color: #231815;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding: 1rem 0;
  }
}
.footer__copyright a {
  display: inline-block;
  color: #231815;
  font-weight: 600;
  margin: 0 2px;
}
@media (min-width: 768px) {
  .footer__copyright a:hover {
    color: #C7000B;
  }
}
@media (max-width: 1199px) {
  .footer .c-social {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
  .footer .c-social ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .c-social ul li a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .footer .c-social ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    font-size: 13px;
  }
  .footer .c-social ul img {
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
}

.pc .footer__info ul > li > a:hover {
  color: #C7000B;
}
.pc .footer .c-social ul li a:hover {
  color: #C7000B;
}

/* 
 * Container
 */
.g-wrap {
  overflow: hidden;
}

.bg-white {
  border-radius: 10px;
  padding: 7%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
}

.page-wrap {
  padding-bottom: var(--g-sec);
  background: url(../images/ser_bg.jpg);
}

.content-grid {
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}

.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

.breakout {
  grid-column: breakout;
}

.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

@media (max-width: 1680px) {
  .breakout {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .g__blue-bg {
    padding: 2rem;
    margin-bottom: 4rem;
  }
  .page-wrap {
    padding-bottom: 50px;
  }
}
.red {
  color: #C7000B;
}

.g__title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--g-gap) * 0.5);
}
.g__title .en {
  font-size: clamp(0.875rem, 0.7865853659rem + 0.243902439vw, 1rem);
  display: block !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Marcellus";
}
.g__title .ch {
  font-size: clamp(1.375rem, 0.756097561rem + 1.7073170732vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 6px;
}
@media (max-width: 1366px) {
  .g__title .ch {
    letter-spacing: 5px;
  }
}
@media (max-width: 767px) {
  .g__title .ch {
    letter-spacing: 2px;
  }
}

.page-wrap .g__title.text-center::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #666;
  margin: 0 auto var(--g-gap);
}
@media (max-width: 767px) {
  .page-wrap .g__title.text-center::before {
    height: 15px;
  }
}

.g__subtitle {
  font-weight: 600;
  letter-spacing: clamp(0.1875rem, 0.0990853659rem + 0.243902439vw, 0.3125rem);
  font-size: clamp(1.0625rem, 0.9298780488rem + 0.3658536585vw, 1.25rem);
  line-height: 2;
  color: #231815;
  margin-bottom: 1.5rem;
}

.g__ul {
  color: #333;
  margin: 0;
  padding: 0;
  list-style: none;
}
.g__ul > li {
  padding-left: 15px;
  position: relative;
  margin: 0.5rem 0;
}
.g__ul > li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C7000B;
}

.g__txt {
  font-size: clamp(1rem, 0.9115853659rem + 0.243902439vw, 1.125rem);
  color: #231815;
  line-height: 1.8;
  letter-spacing: 2px;
  position: relative;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  text-align: justify;
}

.g__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .g__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.g__flex .g__left,
.g__flex .g__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 991px) {
  .g__flex .g__left,
  .g__flex .g__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

.g__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.g__list .box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.g__control {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  margin-top: var(--g-sec);
  padding-top: var(--g-gap);
}
@media (max-width: 991px) {
  .g__control {
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.g__control .btn__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 230px;
          flex: 0 0 230px;
  margin-top: 2rem;
  background-color: transparent;
}
@media (max-width: 991px) {
  .g__control .btn__back {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
  }
}
.g__control .prev,
.g__control .next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((90% - 230px) / 2);
          flex: 0 0 calc((90% - 230px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.5rem;
  overflow: hidden;
  color: #333;
  -webkit-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
@media (min-width: 992px) {
  .g__control .prev:hover .aw,
  .g__control .next:hover .aw {
    letter-spacing: 3px;
  }
  .g__control .prev:hover .txt,
  .g__control .next:hover .txt {
    color: #000;
  }
  .g__control .prev:hover .pic,
  .g__control .next:hover .pic {
    width: 100px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}
@media (max-width: 991px) {
  .g__control .prev,
  .g__control .next {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px - 150px) / 2);
            flex: 0 0 calc((100% - 20px - 150px) / 2);
    gap: 0.5rem;
  }
}
.g__control .prev .aw,
.g__control .next .aw {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  text-transform: uppercase;
  -webkit-transition: letter-spacing 0.3s;
  transition: letter-spacing 0.3s;
  font-size: clamp(0.875rem, 0.7865853659rem + 0.243902439vw, 1rem);
  gap: 5px;
}
.g__control .prev .pic,
.g__control .next .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  width: 130px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 991px) {
  .g__control .prev .pic,
  .g__control .next .pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
  }
}
.g__control .prev .txt,
.g__control .next .txt {
  display: block;
  font-size: var(--g-txt);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 80px - 1.5rem);
          flex: 1 0 calc(100% - 80px - 1.5rem);
  width: calc(100% - 80px - 1.5rem);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .g__control .prev .txt,
  .g__control .next .txt {
    display: none;
  }
}
.g__control .prev > .aw::before {
  content: "←";
  display: block;
}
.g__control .next > .aw {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.g__control .next > .aw::after {
  content: "→";
}
.g__control .next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* 
 * Scroll Top
 */
.scroll-top {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 38px;
  bottom: -65px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 0;
  -webkit-transition: bottom 0.3s, background 0.3s;
  transition: bottom 0.3s, background 0.3s;
  cursor: pointer;
  z-index: 9;
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23fff' stroke-width='1.5' d='M5.75 13V1M1 6.5l5-5 5 5'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
}
.scroll-top:hover {
  background-color: #231815;
}
@media (max-width: 991px) {
  .scroll-top {
    width: 44px;
    height: 44px;
  }
}
.scroll-top.is-show {
  bottom: 52px;
}
@media (max-width: 991px) {
  .scroll-top.is-show {
    bottom: 10px;
    right: 10px;
  }
}

/* 
 * No Data
 */
.l-message {
  padding: 5% 0;
  margin: 2% auto;
  text-align: center;
  font-size: var(--fs-message-text);
}
.l-message__title {
  font-size: clamp(1.5rem, 0.9695121951rem + 1.4634146341vw, 2.25rem);
  margin-bottom: 10px;
}
.l-message span.star {
  color: #231815;
}

/* 
 * Copy Url
 */
.js-copy-url {
  position: relative;
}

.copy-done {
  right: -5px;
  top: 0;
  z-index: 10;
  line-height: 1.1;
  position: absolute;
  font-size: 13px;
  color: #fff;
  padding: 5px;
  white-space: nowrap;
  display: inline-block;
  border-radius: 4px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  background: #231815;
}

.faq__list {
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: step;
  list-style: none;
  font-size: clamp(1rem, 0.9115853659rem + 0.243902439vw, 1.125rem);
}
.faq__item {
  border-bottom: 1px solid #d5d5d5;
  counter-increment: step;
  position: relative;
  padding: 1rem 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 991px) {
  .faq__item {
    padding: 0.5rem 0;
  }
}
.faq__item::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  content: counter(step, decimal-leading-zero);
}
@media (max-width: 991px) {
  .faq__item::before {
    left: 0.5rem;
  }
}
.faq__item.is-open {
  background-color: rgba(0, 0, 0, 0.7);
}
.faq__item.is-open::before {
  color: #fff;
}
.faq__item.is-open .faq__question {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.faq__item.is-open .faq__question::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item.is-open .faq__question::after {
  background-color: rgba(255, 255, 255, 0.4);
}
.faq__item.is-open .faq__answer {
  color: #fff;
}
.faq__item.is-open .faq__answer .c-editor__text {
  color: #fff;
}
.faq__question {
  padding: 1rem 2rem;
  position: relative;
  color: #000;
  font-size: clamp(1rem, 0.9115853659rem + 0.243902439vw, 1.125rem);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  overflow: hidden;
  font-weight: normal;
  margin: 0;
  gap: 1rem;
}
.faq__question::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: calc(1rem + 7px);
  width: 1px;
  height: 15px;
  background: #666;
}
.faq__question::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: calc(1rem + 11px);
  width: 15px;
  height: 1px;
  display: block;
  background: #666;
}
.faq__answer {
  display: none;
  position: relative;
  padding: 1rem 2rem;
}
.faq__text {
  position: relative;
}

.pc .faq__item:not(.is-open):hover {
  background-color: #fff;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.lg-toolbar .lg-icon {
  background-color: #000;
}

#lg-zoom-in-1,
#lg-zoom-out-1 {
  display: none;
}

#lg-zoom-in-2,
#lg-zoom-out-2 {
  display: none;
}

#lg-zoom-in-3,
#lg-zoom-out-3 {
  display: none;
}

#lg-zoom-in-4,
#lg-zoom-out-4 {
  display: none;
}

#lg-zoom-in-5,
#lg-zoom-out-5 {
  display: none;
}

#lg-zoom-in-6,
#lg-zoom-out-6 {
  display: none;
}

#lg-zoom-in-7,
#lg-zoom-out-7 {
  display: none;
}

#lg-zoom-in-8,
#lg-zoom-out-8 {
  display: none;
}

#lg-zoom-in-9,
#lg-zoom-out-9 {
  display: none;
}

#lg-zoom-in-10,
#lg-zoom-out-10 {
  display: none;
}

#lg-zoom-in-11,
#lg-zoom-out-11 {
  display: none;
}

#lg-zoom-in-12,
#lg-zoom-out-12 {
  display: none;
}

#lg-zoom-in-13,
#lg-zoom-out-13 {
  display: none;
}

#lg-zoom-in-14,
#lg-zoom-out-14 {
  display: none;
}

#lg-zoom-in-15,
#lg-zoom-out-15 {
  display: none;
}

#lg-zoom-in-16,
#lg-zoom-out-16 {
  display: none;
}

#lg-zoom-in-17,
#lg-zoom-out-17 {
  display: none;
}

#lg-zoom-in-18,
#lg-zoom-out-18 {
  display: none;
}

#lg-zoom-in-19,
#lg-zoom-out-19 {
  display: none;
}

#lg-zoom-in-20,
#lg-zoom-out-20 {
  display: none;
}

#lg-zoom-in-21,
#lg-zoom-out-21 {
  display: none;
}

#lg-zoom-in-22,
#lg-zoom-out-22 {
  display: none;
}

#lg-zoom-in-23,
#lg-zoom-out-23 {
  display: none;
}

#lg-zoom-in-24,
#lg-zoom-out-24 {
  display: none;
}

#lg-zoom-in-25,
#lg-zoom-out-25 {
  display: none;
}

#lg-zoom-in-26,
#lg-zoom-out-26 {
  display: none;
}

#lg-zoom-in-27,
#lg-zoom-out-27 {
  display: none;
}

#lg-zoom-in-28,
#lg-zoom-out-28 {
  display: none;
}

#lg-zoom-in-29,
#lg-zoom-out-29 {
  display: none;
}

#lg-zoom-in-30,
#lg-zoom-out-30 {
  display: none;
}

#lg-zoom-in-31,
#lg-zoom-out-31 {
  display: none;
}

#lg-zoom-in-32,
#lg-zoom-out-32 {
  display: none;
}

#lg-zoom-in-33,
#lg-zoom-out-33 {
  display: none;
}

#lg-zoom-in-34,
#lg-zoom-out-34 {
  display: none;
}

#lg-zoom-in-35,
#lg-zoom-out-35 {
  display: none;
}

#lg-zoom-in-36,
#lg-zoom-out-36 {
  display: none;
}

#lg-zoom-in-37,
#lg-zoom-out-37 {
  display: none;
}

#lg-zoom-in-38,
#lg-zoom-out-38 {
  display: none;
}

#lg-zoom-in-39,
#lg-zoom-out-39 {
  display: none;
}

#lg-zoom-in-40,
#lg-zoom-out-40 {
  display: none;
}

#lg-zoom-in-41,
#lg-zoom-out-41 {
  display: none;
}

#lg-zoom-in-42,
#lg-zoom-out-42 {
  display: none;
}

#lg-zoom-in-43,
#lg-zoom-out-43 {
  display: none;
}

#lg-zoom-in-44,
#lg-zoom-out-44 {
  display: none;
}

#lg-zoom-in-45,
#lg-zoom-out-45 {
  display: none;
}

#lg-zoom-in-46,
#lg-zoom-out-46 {
  display: none;
}

#lg-zoom-in-47,
#lg-zoom-out-47 {
  display: none;
}

#lg-zoom-in-48,
#lg-zoom-out-48 {
  display: none;
}

#lg-zoom-in-49,
#lg-zoom-out-49 {
  display: none;
}

#lg-zoom-in-50,
#lg-zoom-out-50 {
  display: none;
}

#lg-zoom-in-51,
#lg-zoom-out-51 {
  display: none;
}

#lg-zoom-in-52,
#lg-zoom-out-52 {
  display: none;
}

#lg-zoom-in-53,
#lg-zoom-out-53 {
  display: none;
}

#lg-zoom-in-54,
#lg-zoom-out-54 {
  display: none;
}

#lg-zoom-in-55,
#lg-zoom-out-55 {
  display: none;
}

#lg-zoom-in-56,
#lg-zoom-out-56 {
  display: none;
}

#lg-zoom-in-57,
#lg-zoom-out-57 {
  display: none;
}

#lg-zoom-in-58,
#lg-zoom-out-58 {
  display: none;
}

#lg-zoom-in-59,
#lg-zoom-out-59 {
  display: none;
}

#lg-zoom-in-60,
#lg-zoom-out-60 {
  display: none;
}

#lg-zoom-in-61,
#lg-zoom-out-61 {
  display: none;
}

#lg-zoom-in-62,
#lg-zoom-out-62 {
  display: none;
}

#lg-zoom-in-63,
#lg-zoom-out-63 {
  display: none;
}

#lg-zoom-in-64,
#lg-zoom-out-64 {
  display: none;
}

#lg-zoom-in-65,
#lg-zoom-out-65 {
  display: none;
}

#lg-zoom-in-66,
#lg-zoom-out-66 {
  display: none;
}

#lg-zoom-in-67,
#lg-zoom-out-67 {
  display: none;
}

#lg-zoom-in-68,
#lg-zoom-out-68 {
  display: none;
}

#lg-zoom-in-69,
#lg-zoom-out-69 {
  display: none;
}

#lg-zoom-in-70,
#lg-zoom-out-70 {
  display: none;
}

#lg-zoom-in-71,
#lg-zoom-out-71 {
  display: none;
}

#lg-zoom-in-72,
#lg-zoom-out-72 {
  display: none;
}

#lg-zoom-in-73,
#lg-zoom-out-73 {
  display: none;
}

#lg-zoom-in-74,
#lg-zoom-out-74 {
  display: none;
}

#lg-zoom-in-75,
#lg-zoom-out-75 {
  display: none;
}

#lg-zoom-in-76,
#lg-zoom-out-76 {
  display: none;
}

#lg-zoom-in-77,
#lg-zoom-out-77 {
  display: none;
}

#lg-zoom-in-78,
#lg-zoom-out-78 {
  display: none;
}

#lg-zoom-in-79,
#lg-zoom-out-79 {
  display: none;
}

#lg-zoom-in-80,
#lg-zoom-out-80 {
  display: none;
}

#lg-zoom-in-81,
#lg-zoom-out-81 {
  display: none;
}

#lg-zoom-in-82,
#lg-zoom-out-82 {
  display: none;
}

#lg-zoom-in-83,
#lg-zoom-out-83 {
  display: none;
}

#lg-zoom-in-84,
#lg-zoom-out-84 {
  display: none;
}

#lg-zoom-in-85,
#lg-zoom-out-85 {
  display: none;
}

#lg-zoom-in-86,
#lg-zoom-out-86 {
  display: none;
}

#lg-zoom-in-87,
#lg-zoom-out-87 {
  display: none;
}

#lg-zoom-in-88,
#lg-zoom-out-88 {
  display: none;
}

#lg-zoom-in-89,
#lg-zoom-out-89 {
  display: none;
}

#lg-zoom-in-90,
#lg-zoom-out-90 {
  display: none;
}

#lg-zoom-in-91,
#lg-zoom-out-91 {
  display: none;
}

#lg-zoom-in-92,
#lg-zoom-out-92 {
  display: none;
}

#lg-zoom-in-93,
#lg-zoom-out-93 {
  display: none;
}

#lg-zoom-in-94,
#lg-zoom-out-94 {
  display: none;
}

#lg-zoom-in-95,
#lg-zoom-out-95 {
  display: none;
}

#lg-zoom-in-96,
#lg-zoom-out-96 {
  display: none;
}

#lg-zoom-in-97,
#lg-zoom-out-97 {
  display: none;
}

#lg-zoom-in-98,
#lg-zoom-out-98 {
  display: none;
}

#lg-zoom-in-99,
#lg-zoom-out-99 {
  display: none;
}

#lg-zoom-in-100,
#lg-zoom-out-100 {
  display: none;
}

.f-carousel__toolbar {
  padding: 0;
}

.f-button {
  background-color: transparent;
}

[data-fullscreen-action],
[data-autoplay-action],
[data-thumbs-action] {
  display: none !important;
}

.fancybox__thumbs {
  display: none !important;
}

.fancybox__image {
  max-width: 2700px;
  max-height: 2700px;
}

/* 
 * Animation
 */
@-webkit-keyframes ani_kanban_in {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes ani_kanban_in {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes dot-ani {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  55% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes dot-ani {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  55% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@-webkit-keyframes heart-ani {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  45% {
    -webkit-transform: scaleX(0.1), skewX(10deg);
            transform: scaleX(0.1), skewX(10deg);
  }
  55% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes heart-ani {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  45% {
    -webkit-transform: scaleX(0.1), skewX(10deg);
            transform: scaleX(0.1), skewX(10deg);
  }
  55% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes wave {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
@keyframes wave {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 
 * Breadcrumb
 */
.c-breadcrumb {
  position: absolute;
  padding: var(--g-gap);
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 1480px) {
  .c-breadcrumb {
    padding: var(--g-gap) calc((100% - 1400px) / 2);
  }
}
.c-breadcrumb ul {
  max-width: 100%;
  width: 1400px;
  margin: 0 auto;
  font-size: clamp(0.8125rem, 0.7682926829rem + 0.1219512195vw, 0.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .c-breadcrumb ul {
    font-size: clamp(0.875rem, 0.6981707317rem + 0.487804878vw, 1.125rem);
  }
}
.c-breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb ul li svg {
  vertical-align: text-bottom;
}
.c-breadcrumb ul li:not(:last-child):after {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 0.75rem;
  aspect-ratio: 1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-breadcrumb ul li:not(:last-child):after {
    margin: 0 0.25rem;
  }
}
.c-breadcrumb ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .c-breadcrumb ul li a:hover {
    color: #C7000B;
  }
}

/* 
 * Social / Community Links
 */
.c-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.c-social__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  margin-right: 1.5rem;
}
.c-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-social ul {
    gap: 0.25rem;
  }
}
.c-social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  line-height: 42px;
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  border-radius: 35px;
  text-align: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 767px) {
  .c-social ul li a {
    gap: 0;
  }
}
.c-social ul li a > img {
  width: 55px;
  height: 55px;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .c-social ul li a > img {
    width: 45px;
    height: 45px;
  }
}
.c-social ul li a i {
  color: #fff;
  border: 1px solid #ddd;
  aspect-ratio: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  width: 44px;
  line-height: 42px;
  border-radius: 50%;
}
.c-social ul li a.fb:hover {
  background: #fff;
  color: #231815;
}
.c-social ul li a.fb:hover i {
  background-color: #395693;
}
.c-social ul li a.ig:hover {
  color: #231815;
  background: #fff;
}
.c-social ul li a.ig:hover i {
  background: rgb(64, 93, 230);
  background: linear-gradient(59deg, rgb(64, 93, 230) 0%, rgb(225, 48, 108) 46%, rgb(252, 175, 69) 85%);
}
.c-social ul li a.line:hover {
  background: #fff;
  color: #231815;
}

/*
 * 橫幅輪播
 */
.c-kanban {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-kanban .slogan {
  font-size: clamp(0.8125rem, 0.237804878rem + 1.5853658537vw, 1.625rem);
  position: absolute;
  right: 15%;
  top: 35%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 300;
  opacity: 0.5;
  z-index: 10;
  font-family: var(--ff-en);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 1366px) {
  .c-kanban .slogan {
    font-size: clamp(0.75rem, 0.4847560976rem + 0.7317073171vw, 1.125rem);
    top: 55%;
  }
}
@media (max-width: 991px) {
  .c-kanban .slogan {
    right: 5%;
    top: 45%;
    letter-spacing: 5px;
  }
}
.c-kanban.carousel {
  overflow: hidden;
}
.c-kanban.carousel:not(.swiper-initialized) .swiper-slide {
  opacity: 0;
}
.c-kanban.carousel.is-video-playing::before {
  content: "播放中...";
  white-space: nowrap;
  font-size: 0.75rem;
  position: absolute;
  z-index: 50;
  bottom: 50px;
  left: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  border-radius: 50px;
}
.c-kanban.carousel .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
.c-kanban.carousel .swiper-slide a {
  font-size: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  position: absolute;
}
.c-kanban.carousel .swiper-slide-active {
  position: relative;
}
.c-kanban.carousel .swiper-slide-active .c-kanban__media {
  -webkit-animation: ani_kanban_in 1s both;
          animation: ani_kanban_in 1s both;
}
.c-kanban.carousel .swiper-group {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #fff;
}
@media (max-width: 767px) {
  .c-kanban.carousel .swiper-group {
    left: 30%;
    right: 30%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-kanban.carousel .swiper-group .swiper-pagination {
  gap: 60px;
}
@media (max-width: 767px) {
  .c-kanban.carousel .swiper-group .swiper-pagination {
    gap: 30px;
  }
}
.c-kanban.carousel .swiper-group .swiper-pagination-current {
  color: #fff;
}
.c-kanban.carousel .swiper-group::after {
  background-color: #fff;
  width: 80px;
}
@media (max-width: 767px) {
  .c-kanban.carousel .swiper-group::after {
    width: 30px;
  }
}
.c-kanban.carousel .swiper-button-prev:after,
.c-kanban.carousel .swiper-button-next:after {
  -webkit-filter: brightness(0%) invert(100);
          filter: brightness(0%) invert(100);
}
@media (max-width: 767px) {
  .c-kanban.carousel .swiper-button-prev,
  .c-kanban.carousel .swiper-button-next {
    top: unset;
    bottom: 8px;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
}
.c-kanban__list {
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}
.c-kanban__media {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  will-change: transform;
  overflow: hidden;
  aspect-ratio: 1920/920;
}
@media (max-width: 991px) {
  .c-kanban__media {
    aspect-ratio: 1000/940;
  }
}
.c-kanban__media .plyr--video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
.c-kanban__media img {
  width: 100%;
  height: 100%;
}
.c-kanban__text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--g-gap);
  top: 58%;
  left: 10%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.c-kanban__text .g__title {
  margin: 0;
  font-size: clamp(1.875rem, -0.556402439rem + 6.7073170732vw, 5.3125rem);
  font-family: var(--ff-en);
  will-change: transform;
  display: inline-block;
  position: relative;
}
.c-kanban__text .g__title span {
  display: block;
  width: 100%;
  position: absolute;
  left: 74%;
  right: -30%;
  bottom: -34%;
  font-family: var(--ff-en-2);
  font-size: clamp(1.5625rem, 0.4573170732rem + 3.0487804878vw, 3.125rem);
}
.c-kanban__text .g__subtitle {
  color: unset;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.6280487805rem + 0.8536585366vw, 1.375rem);
  letter-spacing: 4px;
  will-change: transform;
}
.c-kanban__text .g__subtitle span {
  display: block;
  margin-left: 5%;
}
.c-kanban__text .s-ti {
  font-size: var(--fs-head-subtitle);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  letter-spacing: 8px;
}
.c-kanban__text h3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.c-kanban .light-bg .c-kanban__text > * {
  color: #000;
}
.c-kanban.page .c-kanban__media {
  aspect-ratio: 1920/600;
}
@media (max-width: 991px) {
  .c-kanban.page .c-kanban__media {
    aspect-ratio: 900/700;
  }
}
.c-kanban.page .c-kanban:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 50%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(35, 24, 21, 0.7)), to(rgba(35, 24, 21, 0)));
  background: linear-gradient(180deg, rgba(35, 24, 21, 0.7) 0%, rgba(35, 24, 21, 0) 100%);
}
.c-kanban.page .c-kanban__text {
  color: #fff;
  left: 13%;
  width: 74%;
  top: 50%;
}
.c-kanban.page .c-kanban__text .g__subtitle {
  color: #fff;
}
@media (max-width: 1366px) {
  .c-kanban.page .c-kanban__text {
    top: 60%;
  }
  .c-kanban.page .c-kanban__text .g__title {
    font-size: 30px;
  }
  .c-kanban.page .c-kanban__text .g__title::after {
    font-size: 20px;
  }
  .c-kanban.page .c-kanban__text .g__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .c-kanban.page .c-kanban__text {
    top: 50%;
    left: 10%;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .c-kanban.page .c-kanban__text {
    top: 54%;
    left: 7%;
  }
  .c-kanban.page .c-kanban__text .s-ti {
    font-size: 13px;
  }
  .c-kanban.page .c-kanban__text .g__subtitle {
    font-size: 14px;
  }
}
.c-kanban.page .c-kanban__text.text-center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-kanban.page .c-kanban__text.text-center .g__title::after {
  display: none;
}
@media (max-width: 767px) {
  .c-kanban.page .c-kanban__text.text-center {
    top: 44%;
  }
}

/* 
 * Button
 */
.btn__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(3.125rem, 2.6829268293rem + 1.2195121951vw, 3.75rem);
  line-height: clamp(3rem, 2.5579268293rem + 1.2195121951vw, 3.625rem);
  color: #fff;
  width: 230px;
  background-color: #231815;
  border-radius: 0;
  border: 1px solid #231815;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  z-index: 1;
}
.btn__main::after {
  content: "";
  position: absolute;
  right: 0;
  opacity: 1;
  width: 0px;
  height: 0px;
  left: 0;
  top: 0;
  display: block;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../images/service_ink2.png) left top no-repeat;
  background-size: contain;
  mix-blend-mode: color-burn;
}

.btn__second {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(3.125rem, 2.6829268293rem + 1.2195121951vw, 3.75rem);
  line-height: clamp(3rem, 2.5579268293rem + 1.2195121951vw, 3.625rem);
  color: #fff;
  width: 230px;
  background-color: #C7000B;
  border-radius: 0;
  border: 1px solid #231815;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  z-index: 1;
}
.btn__second::after {
  content: "";
  position: absolute;
  right: 0;
  opacity: 1;
  width: 0px;
  height: 0px;
  left: 0;
  top: 0;
  display: block;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../images/service_ink2.png) left top no-repeat;
  background-size: contain;
  mix-blend-mode: color-burn;
}
.btn__second {
  border: 1px solid #C7000B;
}

.btn__white::after {
  content: "";
  position: absolute;
  right: 0;
  opacity: 1;
  width: 0px;
  height: 0px;
  left: 0;
  top: 0;
  display: block;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: url(../images/service_ink2.png) left top no-repeat;
  background-size: contain;
  mix-blend-mode: color-burn;
}
.btn__white {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(2.75rem, 2.5731707317rem + 0.487804878vw, 3rem);
  line-height: clamp(2.75rem, 2.5731707317rem + 0.487804878vw, 3rem);
  color: #231815;
  width: 230px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #231815;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  transition: color 0.3s ease 0.1s, background-color 0.3s ease;
  z-index: 1;
  border: 1px solid #231815;
}

.btn__more {
  position: relative;
  z-index: 10;
  font-size: 0;
  width: 108px;
  height: 108px;
  aspect-ratio: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  display: block;
  border-radius: 50%;
  border: 1px solid #231815;
  overflow: hidden;
}
.btn__more span {
  display: block;
  position: absolute;
  z-index: 2;
  width: 108px;
  height: 108px;
  aspect-ratio: 1;
}
.btn__more span::before {
  content: "";
  width: 27px;
  height: 1px;
  background: #666;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.btn__more span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .btn__more span {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .btn__more {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    border: 0;
  }
}
.btn__more:hover {
  background-color: #231815;
}
.btn__more:hover span {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn__more:hover span::before {
  background: #fff;
}
.btn__more:hover span::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.pc .btn__main:hover,
.pc .btn__second:hover {
  color: #fff;
}
.pc .btn__main:hover::after,
.pc .btn__second:hover::after {
  width: 200px;
  height: 100px;
  opacity: 1;
  left: -10%;
  top: -50px;
  z-index: -1;
}
.pc .btn__white:hover {
  background: #231815;
}
.pc .btn__white:hover::after {
  width: 200px;
  height: 100px;
  opacity: 1;
  left: -10%;
  top: -50px;
  z-index: -1;
}
.pc .btn__more:hover::after {
  background-color: #231815;
}

/* Button Wrap*/
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.btn-wrap-center {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.btn-wrap-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  .btn-wrap,
  .btn-wrap-center,
  .btn-wrap-right {
    gap: 10px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}