@charset "UTF-8";

/* =================================== */
/*             Main Content            */
/* =================================== */
.main-content {
  position: relative;
  z-index: 1;
  background-color: #f6f6f6;
  margin-top: 120vh;
  overflow: hidden;
}

/* =================================== */
/*                Hero                 */
/* =================================== */
.hero {
  --hero-bg-blur: 0px;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 80px;
  position: sticky;
  top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(var(--hero-bg-blur));
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  filter: blur(var(--hero-bg-blur));
  transition: filter 0.2s ease-out;
}

.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  pointer-events: none;
  filter: blur(var(--hero-bg-blur));
}

.hero__slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transform-origin: center;
  z-index: 0;
  transition: opacity 3s cubic-bezier(0.4, 0.0, 0.2, 1),
    transform 10s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.hero__slider-item.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero__slider-item.is-leaving {
  opacity: 0;
  transform: scale(1.02);
  z-index: 1;
}

.hero__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero__inner {
  max-width: 1440px;
  padding: 0 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.hero__title-group {
  transition: opacity 0.7s ease-out;
  text-align: left;
  width: 100%;
}

.hero__vision-content {
  position: absolute;
  opacity: 0;
  transition: opacity 0.7s ease-out;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 60px;
  box-sizing: border-box;
}

.hero__title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #fff;
}

/* Hero Media Queries */
@media screen and (max-width: 768px) {
  .hero {
    height: 600px;
  }

  .hero__inner {
    padding: 0 20px;
    margin-top: 250px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 48.81px;
    letter-spacing: 2.03px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 30px;
  }

  .hero__vision-content {
    padding: 0px 20px;
    margin-top: 20px;
  }
}

/* =================================== */
/*               Vision                */
/* =================================== */
.vision {
  color: #fff;
  text-align: center;
}

.vision__inner {
  margin: 0 auto;
}

.vision__label {
  font-family: "Jost", sans-serif;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}

.vision__sublabel {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
}

.vision__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px;
  color: #fff;
}

.vision__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.2;
  color: #fff;
}

/* Vision Media Queries */
@media screen and (max-width: 768px) {
  .vision {
    padding: 60px 20px;
  }

  .vision__label {
    font-size: 40px;
  }

  .vision__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .vision__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 520px) {
  .vision__text {
    font-size: 14px;
  }
}

@media screen and (min-width: 521px) {
  .vision__title br {
    display: none;
  }
}

/* =================================== */
/*              Features               */
/* =================================== */
.features {
  padding: 100px 40px 0px 40px;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.features__title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features__subtitle {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 80px;
  font-weight: 400;
}

.features__subtitle-large {
  font-size: 32px;
  font-weight: 700;
  line-height: 2;
}

.features__subtitle-highlight {
  border-bottom: 1px dashed #1c1c1c;
  padding-bottom: 2px;
}

.features__list {
  display: flex;
  justify-content: center;
}

.features__item {
  text-align: center;
}

.features__item+.features__item {
  margin-left: -50px;
}

.features__item-circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  margin: 0 auto 20px;
  position: relative;
}

.features__item-image-wrapper {
  width: 275px;
  height: 275px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.features__item-image {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

.features__item-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67%;
  z-index: 2;
}

.features__item-en {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.features__item-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 10px;
}

.features__item-text {
  font-size: 16px;
  line-height: 2;
}

/* Features Media Queries */
@media (max-width: 1359px) and (min-width: 769px) {
  .features__list {
    align-items: center;
    margin-bottom: 60px;
  }

  .features__item {
    flex: 1;
    min-width: 0;
  }

  .features__item+.features__item {
    margin-left: -10px;
  }

  .features__item-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .features__item-image-wrapper {
    width: 60%;
    height: 60%;
  }

  .features__item-image {
    top: -45%;
  }

  .features__item-en {
    font-size: clamp(12px, 1.2vw, 16px);
  }

  .features__item-title {
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .features__item-text {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .features {
    padding: 60px 20px;
  }
  .features__title {
    font-size: 40px;
  }
  .features__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .features__subtitle-large {
    font-size: 24px;
  }
  .features__list {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .features__item-circle {
    margin: 0 auto -20px;
  }
  .features__item-body {
    width: 90%;
  }
  .features__item+.features__item {
    margin-left: 0;
  }
  .features__item-circle {
    width: 320px;
    height: 320px;
  }
  .features__item-image-wrapper {
    width: 190px;
    height: 190px;
  }
  .features__item-image {
    top: -50px;
    max-width: 120%;
  }
  .features__item-title {
    font-size: 24px;
  }
  .features__item-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 520px) {
  .features__title {
    font-size: 28px;
  }
}

/* =================================== */
/*               Clients               */
/* =================================== */
.clients {
  padding: 60px 0px 0px;
  text-align: center;
}

.clients__title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px 40px;
  list-style: none;
  padding: 0px 0px 40px 0px;
  margin: 0;
}

.clients__item {
  font-size: 16px;
  white-space: nowrap;
}

/* Clients Media Queries */
@media (max-width: 1359px) and (min-width: 769px) {
  .clients {
    padding: 0px 0px 0px;
    text-align: center;
  }

  .clients__list {
    padding: 0px 0px 40px 0px;
  }
}

@media screen and (max-width: 520px) {
  .clients__title {
    margin-bottom: 30px;
  }

  .clients__list {
    gap: 10px 20px;
  }
}

/* =================================== */
/*               Service               */
/* =================================== */
.service {
  padding: 100px 0px 0px 0px;
}

.service__inner {
  padding: 0 0 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.service__title-area {
  margin-bottom: 40px;
}

.service__body {
  display: flex;
  position: relative;
  overflow: visible;
}

.service__nav-item a {
  color: #676767;
  font-size: 15px;
  line-height: 2;
  display: block;
  padding: 9px 20px;
}

.service__nav-item.is-active {
  background-color: #a20f19;
}

.service__nav-item.is-active a {
  color: #fff;
  font-weight: bold;
}

.service__content-wrapper {
  flex: 1;
  overflow: visible;
  position: relative;
  background-color: #fff;
}

.service__content {
  background-color: #fff;
  padding: 60px;
}

.service__content.is-active {
  display: block;
}

.service__content::after {
  display: none;
}

.service__content-head {
  display: flex;
  align-items: baseline;
  color: #a20f19;
  margin-bottom: 40px;
  flex-direction: column;
}

.service__content-label-en {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.service__content-number {
  font-family: "Jost", sans-serif;
  font-size: 90px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}

.service__content-head-flex {
  text-align: center;
}

.service__content-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.service__content-text-area {
  flex: 1;
}

.service__content-label {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0px;
}

.service__content-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 20px;
}

.service__content-text {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  word-wrap: break-word;
}

.service__content-image-wrapper {
  flex-shrink: 0;
  width: 474px;
  margin-top: -15%;
  height: 549px;
  position: relative;
  overflow: hidden;
}

.service__content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__slider-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.service__slider-nav-track {
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  position: relative;
}

.service__slider-nav-bar {
  width: 100px;
  height: 2px;
  background-color: #1c1c1c;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.3s ease, width 0.3s ease;
}

.service__slider-nav-buttons {
  display: flex;
  gap: 15px;
}

.service__slider-nav-button {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #1c1c1c;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.service__slider-nav-button:hover {
  opacity: 0.7;
}

/* Service Media Queries */
@media screen and (max-width: 1200px) {
  .service__content-wrapper>.service__content {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
  }
  .service__content-wrapper {
    display: flex !important;
    align-items: flex-start;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform 0.3s ease !important;
    max-width: none !important;
  }
  .service__content-wrapper>.service__content {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}

@media (min-width:1201px) {
  .service__content {
    will-change: transform, opacity;
  }
  .service__content-wrapper.is-layered {
    position: relative;
  }
  .service__content-wrapper.is-layered .service__content {
    position: absolute !important;
    inset: 0;
    width: 100%;
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transition: none;
  }
  .service__content-wrapper.is-layered .service__content.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .service__inner {
    padding-right: 40px;
  }
  .service__content-body {
    padding-right: 60px !important;
  }
  .service__content-image-wrapper {
    margin-right: 20px;
    overflow: hidden;
  }
  .service__nav {
    position: relative;
  }
  .service__nav-list {
    position: relative;
  }
  .service__nav-item {
    position: relative;
    z-index: 1;
  }
  .service__nav-item.is-active {
    background: transparent;
  }
  .service__nav-highlight {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(0);
    height: 0;
    background: #A20F19;
    z-index: 0;
    pointer-events: none;
    will-change: transform, height;
  }
  .service__nav-item.is-active a {
    color: #fff;
  }
  .service__title-area {
    position: sticky;
    top: 110px;
    z-index: 3;
    background: #f6f6f6;
    padding-right: 40px;
  }
  .service__nav-highlight {
    border-radius: 4px;
  }
  .service__nav-item.is-active a {
    transition: color .2s ease;
  }
  .service__nav-highlight {
    border-radius: 0px;
    will-change: transform, height, width;
  }
}

@media screen and (min-width: 1201px) {
  .service__content {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  .service {
    overflow-x: visible;
  }
  .service__content {
    box-shadow: none;
    clip-path: none;
  }
}

@media (max-width: 1200px) {
  .service {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 40px;
  }
  .service__nav {
    display: none;
  }
  .service__slider-nav {
    display: flex;
  }
  .service__body {
    flex-direction: column;
    overflow: visible;
  }
  .service__content-wrapper {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, height 0.3s ease;
    flex: initial;
    overflow: hidden;
    background-color: #fff;
  }
  .service__content {
    flex: 0 0 100%;
    box-sizing: border-box;
    display: block !important;
    margin-top: 0px;
    box-shadow: none;
    padding: 0px 0px 40px 0px;
  }
  .service__nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .service__content {
    padding: 0px 0px 20px;
  }
  .service__content-body {
    flex-direction: column;
  }
  .service__content-image-wrapper {
    width: auto;
    margin-top: 20px;
    height: auto;
    overflow: hidden;
  }
  .service__content-text {
    min-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .service__slider-nav-button {
    width: 46px;
    height: 46px;
  }
  .service {
    padding: 60px 0;
  }
  .service__inner {
    padding: 0;
  }
  .service__title-area {
    padding: 0 20px;
  }
  .service__body {
    flex-direction: column;
  }
  .service__nav {
    min-width: 100%;
    overflow-x: auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .service__nav-list {
    flex-direction: row;
    white-space: nowrap;
  }
  .service__content {
    padding: 0px 0px 20px;
  }
  .service__content-head,
  .service__content-text-area {
    padding: 0 20px;
  }
  .service__content-body {
    flex-direction: column;
    gap: 0px;
  }
  .service__content-image-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
  }
  .service__content-title {
    font-size: 28px;
  }
  .service__slider-nav {
    padding: 0px 20px;
  }
  .service__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .service__content-head,
  .service__content-text-area {
    padding-left: 20px;
    padding-right: 20px;
  }
  .service__content-text {
    min-height: 0;
  }
}

@media screen and (max-width: 520px) {
  .service__content-head {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
  }
  .service__title-area {
    margin-bottom: 10px;
  }
  .service__content-label-en {
    font-size: 12px;
  }
  .service__content-title {
    line-height: 2;
    margin-bottom: 0px;
}
  .service__content-number {
    color: #A20F19;
    font-size: 44.56px;
    font-family: Jost;
    font-weight: 500;
    line-height: 44.84px;
    letter-spacing: 2.23px;
    word-wrap: break-word;
  }
  .service__content-text {
    font-size: 14px;
  }
}

/* =================================== */
/*                Team                 */
/* =================================== */
.team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 40px;
  margin-bottom: 20px;
}

.team {
  padding: 120px 0px 0px 0px;
}

.team__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 40px;
}

.team__subtitle {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  text-align: left;
}

.team__gallery {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50% + 40px);
}

.team__gallery.is-dragging {
  cursor: grabbing;
}

.team__gallery.is-dragging .team__gallery-item {
  pointer-events: none;
}

.team__gallery::-webkit-scrollbar {
  display: none;
}

.team__gallery-item {
  text-align: center;
  flex: 0 0 310px;
}

.team__gallery-image {
  margin-bottom: 20px;
}

.team__gallery-job-title {
  font-size: 13px;
  color: #828282;
  line-height: 2;
}

.team__gallery-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 10px;
}

.team__gallery-text {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.team__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 40px 0px 0px;
  margin-top: 40px;
}

.team__nav-track {
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  position: relative;
}

.team__nav-bar {
  width: 326px;
  height: 2px;
  background-color: #1c1c1c;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.5s ease;
}

.team__nav-buttons {
  display: flex;
  gap: 15px;
}

.team__nav-button {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #1c1c1c;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.team__nav-button:hover {
  opacity: 0.7;
}

/* Team Media Queries */
@media screen and (max-width: 768px) {
  .team__nav-button {
    width: 46px;
    height: 46px;
  }
  .team {
    padding: 60px 0;
  }
  .team__inner {
    padding-left: 20px;
    text-align: center;
  }
  .team__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 20px;
  }
  .team__gallery {
    gap: 20px;
  }
  .team__gallery-item {
    flex: 0 0 280px;
  }
  .team__nav {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
  }
  .team__nav-track {
    width: 100%;
  }
  .team__nav-buttons {
    align-self: flex-end;
  }
  .team__header {
    text-align: left;
  }
  .team__header .button--with-arrow {
    display: none;
  }
  .team__inner::after {
    content: "";
    display: block;
  }
  .team__inner .button--with-arrow {
    margin-top: 40px;
    /* width: 320px; */
    gap: 70px;
  }
  .team__subtitle {
    padding-right: 20px;
  }
}

@media screen and (max-width: 520px) {
  .team__nav-bar {
    width: 100px;
  }
  .team__inner {
    padding-left: 0;
  }
  .team__header,
  .team__subtitle,
  .team__nav {
    padding: 0 20px;
  }
  .team__gallery {
    scroll-snap-type: x mandatory;
    padding: 0 calc(50% - 140px);
  }
  .team__gallery-item {
    scroll-snap-align: center;
  }
  .team__subtitle {
    margin-bottom:0px;
  }
}

/* =================================== */
/*               Company               */
/* =================================== */
.company {
  padding: 120px 0 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.company__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0px 40px 0px 0px;
  box-sizing: border-box;
}

.company__image-wrapper {
  flex: 0 0 704px;
}

.company__content {
  flex: 1;
}

.company__subtitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 5px;
  margin-top:10px;
}

.company__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.company__rep {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.company__rep-title {
  font-size: 13px;
  color: #1c1c1c;
  line-height: 2;
}

.company__rep-name {
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
}

/* Company Media Queries */
@media (max-width: 1200px) and (min-width: 769px) {
  .company__inner {
    gap: 30px;
    align-items: flex-start;
  }
  .company__image-wrapper {
    flex-basis: 50%;
  }
  .company__content {
    flex-basis: 50%;
  }
  .company__subtitle {
    font-size: clamp(20px, 2.2vw, 28px);
  }
  .company__rep-name {
    font-size: clamp(18px, 1.8vw, 22px);
  }
}

@media screen and (max-width: 768px) {
  .company__subtitle,
  .company__text {
    text-align: left;
  }
  .company {
    padding: 80px 20px;
  }
  .company__inner {
    flex-direction: column;
    padding: 0;
  }
  .company__image-wrapper {
    flex-basis: auto;
  }
  .company__content {
    text-align: left;
  }
  .company__image-wrapper._sp {
    margin-top: 30px;
  }
}

@media screen and (max-width: 520px) {
  .company__subtitle {
    font-size: 22px;
  }
}
