* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  transition: all 0.5s ease;
  overflow: hidden;
}
main::before, main::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 200vh;
  z-index: -1;
  transition: opacity 0.5s ease, filter 0.5s ease;
}
main::before {
  background: radial-gradient(ellipse 60% 50% at 30% 40%, #ffd166 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 70% 60%, #ff6b35 0%, transparent 70%), radial-gradient(ellipse 80% 80% at 50% 50%, #f96835 0%, #e94c00 50%, #c73000 100%);
  animation: rotatePrimary 8s infinite alternate ease-in-out;
  will-change: transform;
  transform: translate(-50%, -50%);
}
main::after {
  background: radial-gradient(ellipse 50% 45% at 65% 25%, rgba(255, 210, 80, 0.9) 0%, rgba(255, 150, 30, 0.5) 40%, transparent 70%), radial-gradient(ellipse 45% 50% at 20% 75%, rgba(255, 60, 0, 0.85) 0%, rgba(200, 30, 0, 0.4) 45%, transparent 70%);
  animation: rotateSecondary 10s infinite alternate-reverse ease-in-out;
  will-change: transform;
  transform: translate(-50%, -50%);
  mix-blend-mode: hard-light;
  opacity: 0.85;
}
main.darker::before {
  background: radial-gradient(ellipse 60% 50% at 30% 40%, #fe8b52 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 70% 60%, #e14c02 0%, transparent 70%), radial-gradient(ellipse 80% 80% at 50% 50%, #e14c02 0%, #d72000 50%, #8b0000 100%);
}
main.darker::after {
  opacity: 1;
  background: radial-gradient(ellipse 50% 45% at 65% 25%, rgba(254, 139, 82, 0.9) 0%, rgba(225, 76, 2, 0.5) 40%, transparent 70%), radial-gradient(ellipse 45% 50% at 20% 75%, rgba(215, 32, 0, 0.85) 0%, rgba(140, 15, 0, 0.4) 45%, transparent 70%);
}

@keyframes rotatePrimary {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-42%, -44%) rotate(15deg) scale(1.1);
  }
  50% {
    transform: translate(-56%, -52%) rotate(-10deg) scale(0.95);
  }
  75% {
    transform: translate(-45%, -56%) rotate(20deg) scale(1.12);
  }
  100% {
    transform: translate(-55%, -46%) rotate(-18deg) scale(1.08);
  }
}
@keyframes rotateSecondary {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
  }
  25% {
    transform: translate(-58%, -44%) rotate(-20deg) scale(1);
  }
  50% {
    transform: translate(-44%, -55%) rotate(15deg) scale(1.18);
  }
  75% {
    transform: translate(-53%, -47%) rotate(-12deg) scale(0.95);
  }
  100% {
    transform: translate(-46%, -54%) rotate(22deg) scale(1.1);
  }
}
.spiral-scene,
.foreword .dec {
  transition: opacity 0.3s ease, display 0.3s ease;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  transition: top 1s;
}
.header.active {
  top: 0;
}
.header .close {
  transition: 1s;
  position: absolute;
  right: -80px;
  top: 20px;
}
.header .close.active {
  right: 20px;
}
.header-container {
  margin: 0 auto;
  padding: 50px 114px 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .header-container {
    padding: 10px 20px;
  }
}
.header-logo img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header-logo img {
    height: 30px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.header-menu li a {
  text-decoration: none;
  color: #4c4c4c;
  font-weight: 400;
  padding: 24px 20px;
  font-size: 24px;
  transition: all 0.3s ease;
}
.header-menu li .btn {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  background-color: #eb3ca0;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}
.header-menu li .btn:hover {
  background-color: #bc3081;
  color: #fff;
}

section {
  position: relative;
  z-index: 1;
}

.anchor {
  position: absolute;
  width: 1px;
  height: 0px;
  top: 60px;
  left: 0;
}

header .mb {
  gap: 15px;
  align-items: center;
  display: flex !important;
}
header .mb a {
  text-decoration: none;
  color: #fff;
  padding: 24px 20px;
  background-color: #eb3ca0;
  border-radius: 8px;
  transition: 0.3s;
}
header .mb a:hover {
  background-color: #bc3081;
  color: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.hamburger.active span {
  background: #1a1c1e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  opacity: 0;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
  transform: translateY(-9px) rotate(-45deg);
}

.header-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 414px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  flex-direction: column;
  justify-content: center;
  padding: 30px 0px 30px;
  gap: 0;
  transition: right 1s ease;
}
@media screen and (max-width: 992px) {
  .header-menu {
    width: 100%;
  }
}
.header-menu.active {
  right: 0;
}
.header-menu li {
  width: 100%;
  padding: 0px;
  text-align: center;
  position: relative;
}
.header-menu li::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 11px;
}
.header-menu li:last-child {
  border-bottom: none;
}
.header-menu li + li::after {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background-color: #fff;
}
.header-menu li a {
  display: block;
}

footer {
  background-color: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
footer .container p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #767676;
}
footer .container a {
  color: #767676;
  text-underline-offset: 3px;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !important;
  }
}

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

section {
  position: relative;
}
section.index {
  position: relative;
  z-index: 1;
  height: 100vh;
}
section.index::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e14c02;
  clip-path: ellipse(90% 100% at 50% 0%);
  z-index: 0;
}
@media screen and (max-width: 992px) {
  section.index::before {
    clip-path: ellipse(140% 100% at 50% 0%);
  }
}
section.index video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: ellipse(90% 100% at 50% 0%);
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 992px) {
  section.index video {
    clip-path: ellipse(140% 100% at 50% 0%);
  }
}
section.index .index-title {
  position: absolute;
  display: flex;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  max-width: 659px;
  width: calc(100% - 30px);
  z-index: 2;
}
@media screen and (max-width: 992px) {
  section.index .index-title {
    top: 35%;
    max-width: 85%;
  }
}
section.index .index-title .hero-title {
  width: 100%;
  opacity: 0;
}
section.index .index-title > div {
  max-width: 499px;
  position: relative;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.index .index-title > div {
    max-width: 75%;
  }
}
section.index .index-title > div .title {
  width: 100%;
  max-width: 319px;
  margin-top: 45px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-title > div .title {
    max-width: 70%;
    margin-top: 25px;
  }
}
section.index .index-title > div .subtitle {
  width: 100%;
  max-width: 200px;
  margin-top: 13px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-title > div .subtitle {
    max-width: 50%;
  }
}
section.index .index-title > div .laurel-left {
  position: absolute;
  width: 90px;
  left: 0px;
  top: 45px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-title > div .laurel-left {
    width: 16%;
    top: 25px;
    left: -1%;
  }
}
section.index .index-title > div .laurel-right {
  position: absolute;
  width: 90px;
  right: 0px;
  top: 45px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-title > div .laurel-right {
    width: 16%;
    top: 25px;
    right: -1%;
  }
}
section.index .index-title img {
  width: 10px;
}
section.index .index-plan {
  position: absolute;
  bottom: 18%;
  right: 40px;
  display: flex;
  width: 100%;
  flex-direction: column;
  max-width: 437px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  section.index .index-plan {
    bottom: 18%;
    max-width: 70%;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
}
section.index .index-plan > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
section.index .index-plan .plan-1 {
  max-width: 230px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-plan .plan-1 {
    max-width: 60%;
  }
}
section.index .index-plan .plan-2 {
  max-width: 170px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-plan .plan-2 {
    max-width: 40%;
  }
}
section.index .index-plan .plan-3 {
  max-width: 255px;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.index .index-plan .plan-3 {
    max-width: 60%;
  }
}
section.index .scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  font-size: 0.933rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
section.index .scroll::before {
  display: block;
  width: 25px;
  height: 40px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 40px;
  content: "";
}
section.index .scroll::after {
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgb(255, 255, 255);
  border-radius: 1px;
  content: "";
}
section.index.active .index-title .hero-title {
  animation: fadeInScale 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0s;
}
section.index.active .index-title > div .title {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 2.2s;
}
section.index.active .index-title > div .subtitle {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 3.2s;
}
section.index.active .index-title > div .laurel-left {
  animation: expandLeft 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 1s;
}
section.index.active .index-title > div .laurel-right {
  animation: expandRight 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 1s;
}
section.index.active .index-plan .plan-1 {
  animation: slideInLeft 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 4.6s;
}
section.index.active .index-plan .plan-2 {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 5.9s;
}
section.index.active .index-plan .plan-3 {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 7s;
}
section.index.active .scroll {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 8.5s;
}
section.index.active .scroll::after {
  animation: scroll 2s infinite 8.5s;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpAbs {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLeft {
  0% {
    opacity: 0;
    transform: translateX(50px) rotate(25deg) scale(0.75);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes expandRight {
  0% {
    opacity: 0;
    transform: translateX(-50px) rotate(-25deg) scale(0.75);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    height: 8px;
  }
  20% {
    opacity: 1;
    height: 8px;
  }
  30% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    height: 19px;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(19px) translateX(-50%);
    opacity: 0;
    height: 0;
  }
  81% {
    transform: translateY(0) translateX(-50%);
    opacity: 0;
    height: 8px;
  }
  100% {
    opacity: 1;
    height: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  section.index * {
    animation: none !important;
    opacity: 1 !important;
  }
}
section.foreword {
  text-align: center;
  position: relative;
  z-index: 0;
}
section.foreword .container {
  padding: 0;
  max-width: 1045px;
  margin: 0 auto;
  display: flex;
  text-align: left;
  gap: 70px;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  section.foreword .container {
    flex-direction: column;
    padding: 0 25px;
  }
}
section.foreword .container .content {
  width: 100%;
  padding-top: 50%;
  padding-bottom: 50px;
  position: relative;
  z-index: 12;
}
@media screen and (min-width: 992px) {
  section.foreword .container .content {
    width: 100%;
    max-width: 480px;
    position: relative;
  }
}
@media screen and (max-width: 992px) {
  section.foreword .container .content {
    width: unset;
    display: inline-block;
    margin: auto;
    padding: 80% 0 15px;
  }
  section.foreword .container .content > div {
    position: relative;
    display: inline-block;
    margin: auto;
  }
  section.foreword .container .content > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(45deg, rgba(255, 155, 68, 0.8196078431), rgba(255, 155, 68, 0.8196078431));
    background-size: cover;
    margin: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 40px;
    filter: blur(40px);
  }
}
section.foreword .container .content h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #fff;
  white-space: pre;
}
@media screen and (max-width: 992px) {
  section.foreword .container .content h2 {
    font-size: 35px;
    white-space: unset;
    letter-spacing: 0.04em;
  }
}
section.foreword .container .content > div > div {
  margin-top: 30px;
  max-width: 436px;
}
@media screen and (max-width: 992px) {
  section.foreword .container .content > div > div {
    max-width: 100%;
  }
}
section.foreword .container .content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  section.foreword .container .content p {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  section.foreword .container .img {
    width: 40%;
    max-width: 500px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
  }
}
@media screen and (max-width: 992px) {
  section.foreword .container .img {
    width: 100%;
    position: relative;
  }
}
section.foreword .dec .line-1 {
  position: fixed;
  height: 100vh;
  width: 12px;
  left: 12%;
  z-index: -1;
  top: 0%;
  -o-object-fit: fill;
     object-fit: fill;
  transform: translateX(-50%);
}
@media screen and (min-width: 1550px) {
  section.foreword .dec .line-1 {
    left: 20%;
  }
}
section.foreword .dec .line-2 {
  position: fixed;
  height: 100vh;
  width: 12px;
  left: 30%;
  z-index: -1;
  top: 0%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1550px) {
  section.foreword .dec .line-2 {
    left: 35%;
  }
}
section.foreword .dec .line-3 {
  position: fixed;
  height: 100vh;
  width: 12px;
  left: 48%;
  z-index: -1;
  top: 0%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1550px) {
  section.foreword .dec .line-3 {
    left: 50%;
  }
}
section.foreword .dec .line-4 {
  position: fixed;
  height: 100vh;
  width: 12px;
  left: 95%;
  z-index: -1;
  top: 0%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1550px) {
  section.foreword .dec .line-4 {
    left: 85%;
  }
}
section.foreword .spiral-scene {
  width: 100%;
  height: 600px;
  perspective: 2500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  margin-left: 66%;
  transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  section.foreword .spiral-scene {
    height: 400px;
    margin-left: 50%;
    transform: translateY(50px) translateX(-50%) scale(1.1);
  }
}
@media screen and (min-width: 1550px) {
  section.foreword .spiral-scene {
    margin-left: 64%;
  }
}
section.foreword .spiral-carousel {
  position: relative;
  transform-style: preserve-3d;
  transform: translateX(80px) translateY(0px) scale(0.8);
}
@media screen and (max-width: 992px) {
  section.foreword .spiral-carousel {
    transform: translateX(0) scale(0.7);
  }
}
section.foreword .spiral-item {
  position: absolute;
  width: 270px;
  height: 360px;
  left: -135px;
  top: -180px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: spiralFlow var(--spiral-anim-speed, 120s) linear infinite;
  will-change: transform;
}
@media screen and (max-width: 992px) {
  section.foreword .spiral-item {
    width: 150px;
    height: 240px;
    left: -75px;
    top: -120px;
  }
}
section.foreword .spiral-item img {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: opacity 0.1s linear;
}
section.keyman {
  position: relative;
  background-color: #fafafa;
  padding: 130px 0 0;
}
@media screen and (max-width: 767px) {
  section.keyman {
    padding: 90px 0 0;
  }
}
section.keyman > span {
  display: block;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
  line-height: 1.4;
  color: #e04e07;
  letter-spacing: 0.05em;
  max-width: calc(100% - 220px);
  margin: auto;
}
@media screen and (max-width: 767px) {
  section.keyman > span {
    max-width: calc(100% - 100px);
  }
}
section.keyman > h2 {
  display: block;
  max-width: calc(100% - 220px);
  width: 100%;
  margin: auto;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.7;
  color: #383838;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  section.keyman > h2 {
    max-width: calc(100% - 100px);
    margin-bottom: 40px;
  }
}
section.keyman .container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  section.keyman .container {
    padding-bottom: 200px;
  }
}
section.keyman .keyman-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.keyman .keyman-slider-wrapper {
    max-width: 100%;
    margin: auto;
  }
}
section.keyman .slick-track {
  max-height: 870px;
  overflow: hidden;
  margin-left: -4%;
}
@media screen and (max-width: 767px) {
  section.keyman .slick-track {
    margin-left: 0 !important;
    max-height: unset;
    overflow: visible;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1550px) {
  section.keyman .slick-track {
    margin-left: -4%;
  }
}
@media screen and (width: 1024px) {
  section.keyman .slick-track {
    margin-left: -10%;
  }
}
@media screen and (width: 820px) {
  section.keyman .slick-track {
    margin-left: -14.7%;
  }
}
@media screen and (width: 810px) {
  section.keyman .slick-track {
    margin-left: -14.7%;
  }
}
@media screen and (width: 768px) {
  section.keyman .slick-track {
    margin-left: -16%;
  }
}
section.keyman .slider-keyman {
  width: 100%;
  z-index: 10;
  position: relative;
  transform: translateY(-100px);
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman {
    transform: none !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}
@media screen and (width: 1024px) {
  section.keyman .slider-keyman {
    transform: translateY(0px);
    margin-top: 50px;
  }
}
@media screen and (width: 820px) {
  section.keyman .slider-keyman {
    transform: translateY(0px);
    margin-top: 50px;
  }
}
@media screen and (width: 810px) {
  section.keyman .slider-keyman {
    transform: translateY(0px);
    margin-top: 50px;
  }
}
@media screen and (width: 768px) {
  section.keyman .slider-keyman {
    transform: translateY(0px);
    margin-top: 50px;
  }
}
section.keyman .slider-keyman .slick-list {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-list {
    overflow: hidden;
    padding: 0 50px !important;
  }
}
section.keyman .slider-keyman .slick-prev,
section.keyman .slider-keyman .slick-next {
  position: absolute;
  z-index: 20;
  top: 200px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-prev,
  section.keyman .slider-keyman .slick-next {
    top: 27vw;
  }
}
section.keyman .slider-keyman .slick-prev::before,
section.keyman .slider-keyman .slick-next::before {
  display: none;
}
section.keyman .slider-keyman .slick-prev svg,
section.keyman .slider-keyman .slick-next svg {
  display: block;
  width: 100%;
  height: 100%;
}
section.keyman .slider-keyman .slick-prev {
  right: 100px;
  left: unset;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-prev {
    right: unset;
    left: 20px;
    z-index: 30;
  }
  section.keyman .slider-keyman .slick-prev rect {
    fill: #000;
    stroke: #000;
  }
  section.keyman .slider-keyman .slick-prev path {
    stroke: #fff;
  }
}
@media screen and (width: 768px) {
  section.keyman .slider-keyman .slick-prev {
    right: 60px;
  }
}
section.keyman .slider-keyman .slick-next {
  right: 40px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-next {
    right: 20px;
    z-index: 30;
  }
  section.keyman .slider-keyman .slick-next rect {
    fill: #000;
    stroke: #000;
  }
  section.keyman .slider-keyman .slick-next path {
    stroke: #fff;
  }
}
@media screen and (width: 768px) {
  section.keyman .slider-keyman .slick-next {
    right: 10px;
  }
}
section.keyman .slider-keyman .slide-item {
  outline: none;
  cursor: pointer;
  width: 100%;
  opacity: 1;
  transition: 0.6s;
}
section.keyman .slider-keyman .slide-item .slide-img {
  aspect-ratio: 230/330;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}
section.keyman .slider-keyman .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  filter: grayscale(100%);
  pointer-events: none;
  display: block;
  transition: filter 0.6s ease;
}
section.keyman .slider-keyman .slide-item .slide-text {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0s, transform 0.4s ease 0s;
  max-width: 480px;
  margin: 24px auto 0;
  text-align: left;
}
section.keyman .slider-keyman .slide-item .slide-text .keyman-name {
  font-weight: 700;
  font-size: 24px;
  color: #383838;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slide-item .slide-text .keyman-name {
    font-size: 20px;
  }
}
section.keyman .slider-keyman .slide-item .slide-text .keyman-divider {
  width: 40px;
  height: 3px;
  background-color: #e04e07;
  margin-bottom: 15px;
}
section.keyman .slider-keyman .slide-item .slide-text .keyman-desc {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #000000;
}
section.keyman .slider-keyman .slick-slide {
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-slide {
    box-sizing: border-box;
    overflow: visible;
  }
}
section.keyman .slider-keyman .slick-slide::before, section.keyman .slider-keyman .slick-slide::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-color: #e04e07;
  border-style: solid;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-slide::before, section.keyman .slider-keyman .slick-slide::after {
    display: none;
  }
}
section.keyman .slider-keyman .slick-slide::before {
  top: -2px;
  right: -2px;
  border-width: 6px 6px 0 0;
}
section.keyman .slider-keyman .slick-slide::after {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 6px 6px;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-slide:not(.slick-current) .slide-item {
    transform: scale(0.8) !important;
    transform-origin: top center;
    opacity: 1 !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  section.keyman .slider-keyman .slick-slide:not(.slick-current) .slide-item .slide-img {
    aspect-ratio: 320/287;
  }
  section.keyman .slider-keyman .slick-slide:not(.slick-current) .slide-item img {
    filter: grayscale(100%);
  }
  section.keyman .slider-keyman .slick-slide:not(.slick-current) .slide-item .slide-text {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
section.keyman .slider-keyman .slick-slide .slide-item {
  transform: scale(0.8) translateY(350px);
  transform-origin: top center;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
  section.keyman .slider-keyman .slick-current::before, section.keyman .slider-keyman .slick-current::after {
    display: none !important;
  }
  section.keyman .slider-keyman .slick-current .slide-item {
    transform: scale(1) !important;
  }
  section.keyman .slider-keyman .slick-current .slide-item .slide-img {
    position: relative;
    aspect-ratio: 320/287 !important;
  }
  section.keyman .slider-keyman .slick-current .slide-item .slide-img::before, section.keyman .slider-keyman .slick-current .slide-item .slide-img::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: #e04e07;
    border-style: solid;
    z-index: 60;
    pointer-events: none;
  }
  section.keyman .slider-keyman .slick-current .slide-item .slide-img::before {
    top: -2px;
    right: -2px;
    border-width: 6px 6px 0 0;
  }
  section.keyman .slider-keyman .slick-current .slide-item .slide-img::after {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 6px 6px;
  }
  section.keyman .slider-keyman .slick-current .slide-item img {
    filter: grayscale(0%) !important;
  }
  section.keyman .slider-keyman .slick-current .slide-item .slide-text {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    max-width: 100% !important;
    margin-top: 20px;
  }
}
section.keyman .slider-keyman .slick-center {
  position: relative;
  z-index: 1;
  min-width: 400px;
  aspect-ratio: 1;
  transform-origin: top;
  transform: scale(1);
}
section.keyman .slider-keyman .slick-center::before, section.keyman .slider-keyman .slick-center::after {
  opacity: 1;
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: #e04e07;
  border-style: solid;
  z-index: 60;
  pointer-events: none;
}
section.keyman .slider-keyman .slick-center::before {
  top: -2px;
  right: -2px;
  border-width: 6px 6px 0 0;
}
section.keyman .slider-keyman .slick-center::after {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 6px 6px;
}
section.keyman .slider-keyman .slick-center .slide-item {
  transform: scale(1);
  opacity: 1;
  cursor: default;
  width: 100%;
  z-index: 30;
}
section.keyman .slider-keyman .slick-center .slide-item .slide-img {
  aspect-ratio: 1;
  transform: scale(1);
}
section.keyman .slider-keyman .slick-center .slide-item img {
  filter: grayscale(0%);
  pointer-events: auto;
}
section.keyman .slider-keyman .slick-center .slide-item .slide-text {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
section.keyman .marqueen {
  font-weight: 900;
  color: #e14c02;
  font-size: 126px;
  line-height: 1;
  overflow: hidden;
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  section.keyman .marqueen {
    font-size: 60px;
    bottom: -13px;
  }
}
section.keyman .marqueen div {
  display: inline-block;
  padding-right: 10px;
}
section.video {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section.video {
    padding: 90px 0;
  }
}
section.video .container {
  max-width: 1318px;
  width: 90%;
  padding-right: 60px;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 15px;
  aspect-ratio: 1318/590;
  justify-content: center;
  position: relative;
}
@media (max-width: 769px) {
  section.video .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    aspect-ratio: unset;
  }
}
section.video .slider-main {
  width: 83.5%;
  flex-shrink: 0;
}
@media (max-width: 769px) {
  section.video .slider-main {
    width: 100%;
  }
}
section.video .slider-main .slide-item {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
section.video .slider-main .slide-item img,
section.video .slider-main .slide-item video,
section.video .slider-main .slide-item iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
section.video .slider-nav {
  width: calc(16.5% - 15px);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 769px) {
  section.video .slider-nav {
    width: var(--mobile-nav-width, 100%);
    flex-direction: row;
  }
}
section.video .slider-nav.slick-vertical {
  position: static;
}
section.video .slider-nav.slick-vertical .slick-slide {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 10px;
}
section.video .slider-nav.slick-vertical .slide-item {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
section.video .slider-nav:not(.slick-vertical) .slick-prev {
  top: calc(100% - 5px);
  right: unset;
  left: calc(50% - 50px);
  transform: rotate(-90deg) translateX(-50%);
}
section.video .slider-nav:not(.slick-vertical) .slick-prev:hover {
  opacity: 0.7;
}
section.video .slider-nav:not(.slick-vertical) .slick-next {
  top: calc(100% - 5px);
  right: unset;
  left: calc(50% + 10px);
  transform: rotate(-90deg) translateX(-50%);
}
section.video .slider-nav:not(.slick-vertical) .slick-track {
  flex-direction: row;
  height: auto !important;
}
section.video .slider-nav:not(.slick-vertical) .slick-slide {
  height: auto !important;
  margin-bottom: 0;
  margin: 0 5px;
}
section.video .slider-nav:not(.slick-vertical) .slick-slide:last-child {
  margin-right: 0;
}
section.video .slider-nav:not(.slick-vertical) .slide-item {
  width: 100%;
  aspect-ratio: 16/9;
}
section.video .slider-nav .slide-item {
  background: #000;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}
section.video .slider-nav .slide-item:hover {
  opacity: 0.8;
}
section.video .slider-nav .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.video .slider-nav .slick-current .slide-item {
  opacity: 1;
}
section.video .slider-nav .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}
section.video .slider-nav .slick-arrow::before {
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: #ffffff;
}
section.video .slider-nav .slick-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
section.video .slider-nav .slick-arrow.slick-disabled:hover {
  transform: none;
}
section.video .slider-nav.slick-vertical .slick-prev {
  top: calc(100% - 105px);
  right: 0px;
  left: unset;
  transform: rotate(0deg);
}
section.video .slider-nav.slick-vertical .slick-prev:hover {
  opacity: 0.7;
}
section.video .slider-nav.slick-vertical .slick-next {
  top: calc(100% - 45px);
  right: 0px;
  left: unset;
  transform: rotate(0deg);
}
section.video .slider-nav.slick-vertical .slick-next:hover {
  transform: rotate(0deg) scale(1);
}
section.article {
  padding: 50px 0 0px 50px;
}
@media (max-width: 992px) {
  section.article {
    padding: 50px 0 40px;
  }
}
section.article .container {
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1024px) {
  section.article .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  section.article .container {
    padding: 0;
  }
}
section.article .content-section {
  position: relative;
  color: #666;
}
@media (max-width: 992px) {
  section.article .content-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: calc(100vw - 100px);
    margin: auto;
    position: static;
  }
}
section.article .coverage-title {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 0;
  pointer-events: none;
  width: 70%;
  max-width: 1020px;
}
@media (max-width: 992px) {
  section.article .coverage-title {
    width: 140px;
    margin-bottom: 14px;
    left: 0;
  }
  section.article .coverage-title .pc {
    display: none;
  }
  section.article .coverage-title .mb {
    display: block;
    width: 100%;
    height: auto;
  }
}
section.article .text-box {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  section.article .text-box {
    max-width: 100%;
    margin: 0;
  }
}
section.article .text-box a {
  max-width: 405px;
  border: 1px solid #fff;
  min-height: 405px;
  display: inline-block;
  text-decoration: none;
  padding: 30px 70px 30px 30px;
  transition: 1s;
}
@media (max-width: 992px) {
  section.article .text-box a {
    padding: 20px 20px 50px 20px;
    min-height: unset;
    max-width: 100%;
    margin: auto;
  }
}
section.article .text-box a:hover {
  background-color: #e24f05;
  border: 1px solid #e24f05;
}
section.article .text-box .btn {
  display: flex;
  align-items: baseline;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  gap: 5px;
}
@media (max-width: 992px) {
  section.article .text-box .btn {
    margin-top: 14px;
    font-size: 15px;
  }
}
section.article .text-box .btn path {
  stroke: #fff;
  transition: 0.3s;
}
section.article .text-box .btn p {
  color: #fff;
  transition: 0.3s;
  letter-spacing: 0.05em;
}
section.article .main-title {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.05em;
}
section.article .description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 992px) {
  section.article .description {
    margin-bottom: 15px;
  }
}
section.article .carousel-arrows-container {
  display: inline-flex;
  gap: 20px;
  margin: 17px 0;
  padding-left: 30px;
}
@media (max-width: 992px) {
  section.article .carousel-arrows-container {
    padding-left: 0;
    align-self: flex-end;
  }
}
section.article .carousel-arrows-container .slick-prev,
section.article .carousel-arrows-container .slick-next {
  position: static;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.5s ease;
}
section.article .carousel-arrows-container .slick-prev:hover,
section.article .carousel-arrows-container .slick-next:hover {
  opacity: 0.7;
}
section.article .carousel-arrows-container .slick-prev svg,
section.article .carousel-arrows-container .slick-next svg {
  width: 100%;
  height: 100%;
}
section.article .carousel-arrows-container .slick-prev::before,
section.article .carousel-arrows-container .slick-next::before {
  display: none;
}
section.article .carousel-arrows-container .slick-prev {
  transform: rotate(-90deg);
}
section.article .carousel-arrows-container .slick-next {
  transform: rotate(-90deg);
}
section.article .slider {
  margin: 0 -15px;
}
@media (max-width: 992px) {
  section.article .slider {
    margin: 0;
  }
}
section.article .slider .slick-track {
  display: flex !important;
  align-items: flex-start;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  section.article .slider .slick-track {
    padding-bottom: 0;
  }
}
section.article .carousel-section {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  transform: translateX(350px) translateY(-260px);
}
@media (max-width: 992px) {
  section.article .carousel-section {
    transform: translateY(0);
    margin-top: -30px;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  section.article .slider-container {
    transform: translateX(0);
    max-width: 100%;
    padding: 0 10px;
    order: 1;
  }
}
section.article .slide-item {
  padding: 0 15px;
  outline: none;
  transition: all 0.5s ease;
  transition: 1s;
}
section.article .slide-item a {
  text-decoration: none;
}
section.article .slide-item img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 0 30px 0;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section.article .slide-item .slide-caption {
  transition: all 0.5s ease;
  margin-top: 15px;
}
@media (max-width: 992px) {
  section.article .slide-item .slide-caption {
    margin-top: 10px;
  }
}
section.article .slide-item .slide-caption p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 992px) {
  section.article .slide-item .slide-caption p {
    font-size: 16px;
  }
}
section.article .slick-slide {
  transform: translateY(0);
  opacity: 1;
  transition: 1s;
}
@media (max-width: 992px) {
  section.article .slick-slide {
    transform: translateY(0) !important;
    opacity: 1;
  }
}
section.article .slick-active {
  opacity: 1;
}
@media (max-width: 992px) {
  section.article .slick-active {
    transform: translateY(0) !important;
  }
}
section.article .slick-active + .slick-active {
  transform: translateY(80px);
}
@media (max-width: 1024px) {
  section.article .slick-active + .slick-active {
    transform: translateY(30px);
  }
}
@media (max-width: 992px) {
  section.article .slick-active + .slick-active {
    transform: translateY(0) !important;
  }
}
section.article .slick-active + .slick-active + .slick-active {
  transform: translateY(0);
}
@media (max-width: 992px) {
  section.article .slick-active + .slick-active + .slick-active {
    transform: translateY(0) !important;
  }
}
section.article .slick-active + .slick-active + .slick-active + .slick-active {
  transform: translateY(80px);
}
@media (max-width: 992px) {
  section.article .slick-active + .slick-active + .slick-active + .slick-active {
    transform: translateY(0) !important;
  }
}
section.article .slick-current .slide-caption {
  opacity: 1;
}
section.article .slick-current img {
  box-shadow: 0 15px 30px rgba(255, 112, 67, 0.2);
}
section.action {
  padding: 90px 0;
  background-color: #f5f5f5;
  margin-top: -160px;
}
@media (max-width: 992px) {
  section.action {
    padding: 80px 0;
    margin-top: 0;
  }
}
section.action .container {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  section.action .container {
    flex-direction: column;
  }
}
section.action .container .img {
  width: 60%;
}
@media (max-width: 992px) {
  section.action .container .img {
    width: 100%;
  }
}
@media (min-width: 1550px) {
  section.action .container .img {
    width: 70%;
    height: 100%;
  }
  section.action .container .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.action .container .content {
  width: 40%;
  aspect-ratio: 518/372;
  max-width: 550px;
  min-width: 550px;
  margin-left: -80px;
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  box-shadow: -40px 40px 60px 0px rgba(0, 0, 0, 0.11);
}
@media (max-width: 992px) {
  section.action .container .content {
    min-width: unset;
    margin-left: 0;
    margin-top: -40px;
    aspect-ratio: unset;
    width: calc(100% - 60px);
  }
}
section.action .container .content a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid #e24f05;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
@media (max-width: 992px) {
  section.action .container .content a {
    padding: 20px;
  }
}
section.action .container .content a:hover {
  background-color: #e24f05;
}
section.action .container .content a:hover h2 {
  color: #fff;
}
section.action .container .content a:hover p {
  color: #fff;
}
section.action .container .content a:hover path {
  stroke: #fff;
}
section.action .container .content h2 {
  color: #e24f05;
  line-height: 1.7;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
@media (max-width: 992px) {
  section.action .container .content h2 {
    font-size: 26px;
  }
}
section.action .container .content p {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #000000;
  transition: 0.3s;
}
@media (max-width: 992px) {
  section.action .container .content p {
    font-size: 16px;
  }
}
section.action .container .content .btn {
  display: flex;
  align-items: baseline;
  color: #e24f05;
  text-decoration: none;
  transition: 0.3s;
  gap: 5px;
}
@media (max-width: 992px) {
  section.action .container .content .btn {
    margin-top: 25px;
  }
}
section.action .container .content .btn path {
  stroke: #e24f05;
  transition: 0.3s;
}
section.action .container .content .btn p {
  color: #e24f05;
  transition: 0.3s;
  letter-spacing: 0.05em;
}

@keyframes spiralFlow {
  0% {
    transform: rotateY(var(--angle)) translateZ(var(--radius)) translateY(var(--start-y)) rotateX(-5deg) rotateZ(3deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: rotateY(calc(var(--angle) + 360deg)) translateZ(var(--radius)) translateY(var(--end-y)) rotateX(5deg) rotateZ(3deg);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */