@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Gothic&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

:root {
  --font-1: "Inter", sans-serif;
  --font-2: "League Gothic", sans-serif;
  --font-3: "Roboto Flex", sans-serif;
  --font-4: "Roboto Condensed", sans-serif;
}

* {
  box-sizing: border-box;
  font-family: var(--font-1);
}

html {
  font-size: .6944444444vw;
}

body {
  margin: 0;
}

::selection {
  background: black;
  color: white;
}

.d-none {
  display: none !important;
}

/* Scrollbar */
::-webkit-scrollbar-track {
	border-left: 1px solid black;
	background-color: white;
}

::-webkit-scrollbar{
	width: 10px;
	background-color: white;
}

::-webkit-scrollbar-thumb {
	background-color: black;	
}
/* End Scrollbar */

/* Container */
.container-full {
  width: calc(100% - 6.4rem);
  margin: 0 auto;
}
/* End Container */

/* Onboarding */
.onboarding {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: black;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  transition: all 0.6s ease;
}

.onboarding.none {
  opacity: 0;
}

.onboarding .inner-door-container {
  position: relative;
  width: 13.7rem;
  height: 27.2rem;
  perspective: 120rem;
  transform: rotateX(-25deg); /* nhìn từ trên xuống */
  transform-style: preserve-3d;
  perspective-origin: center center;
}

.onboarding .inner-white-area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  transition: all 2.2s ease;
  transform: translate(-50%, -50%);
  transform-origin: center center; /* Phóng từ giữa */
}

.onboarding .inner-white-area.fullscreen {
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%) scale(4.5); /* Vẫn giữ căn giữa */
}

.onboarding .inner-back-area {
  position: absolute;
  top: 7%;
  left: 7%;
  width: 86%;
  height: 86%;
  background-color: black;
  opacity: 0;
  transition: all 0.3s;
}

.onboarding .inner-white-area.fullscreen .inner-back-area {
  opacity: 1;
}

.onboarding .inner-white-area-1 {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  background-color: white;
}

.onboarding .inner-door {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: black;
  transform-origin: left center;
  transform-style: preserve-3d;
  z-index: 1;
  transition: transform 1.8s ease;
  backface-visibility: hidden;
}

.onboarding .inner-knob {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 2.1rem;
  background: white;
  border-radius: 50%;
  transition: transform 0.5s ease;
  backface-visibility: hidden; /* Ẩn tay nắm khi cửa xoay */
}
/* End Onboarding */

/* Section 1 */
.section-1 {
  overflow: hidden;
}

.section-1 .inner-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem 0 7rem;
  border-bottom: 1px solid black;
}

.section-1 .inner-top {
  display: flex;
  justify-content: flex-end;
}

.section-1 .inner-lang {
  display: inline-flex;
  gap: 5px;
}

.section-1 .inner-lang a {
  text-decoration: none;
  font-size: 2.4rem;
  color: #BABABA;
  font-weight: 600;
  font-family: var(--font-1);
}

.section-1 .inner-lang a:hover, .section-1 .inner-lang a.active {
  color: black;
}

.section-1 .inner-text {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 24px;
  color: black;
  line-height: 1;
  letter-spacing: 0.3px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.section-1 .inner-text-1, .section-1 .inner-text-2 {
  visibility: hidden;
  height: 24px;
}

.section-1 .inner-text-1 {
  width: 334px;
}

.section-1 .inner-text-2 {
  width: 412px;
}

.section-1 .inner-banner {
  transform: translateY(30rem);
  transition: all 1s ease;
}

.section-1 .inner-banner.show {
  transform: translateY(0);
}

.section-1 .inner-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1199.98px) {
  .section-1 .inner-text {
    font-size: 20px;
  }

  .section-1 .inner-text-1, .section-1 .inner-text-2 {
    height: 20px;
  }

  .section-1 .inner-text-1 {
    width: 286px;
  }

  .section-1 .inner-text-2 {
    width: 352px;
  }

  .section-1 .inner-lang a {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .section-1 .inner-text {
    font-size: 14px;
  }

  .section-1 .inner-text-1, .section-1 .inner-text-2 {
    height: 14px;
  }

  .section-1 .inner-text-1 {
    width: 208px;
  }

  .section-1 .inner-text-2 {
    width: 257px;
  }
}
/* End Section 1 */

/* Header */
.header {
  padding: 1.6rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

.header .inner-logo img {
  width: 24.5rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .header {
    padding: 16px 0;
  }

  .header .inner-logo img {
    width: 173px;
  }
}
/* End Header */

/* Section 2 */
.section-2 .inner-wrap {
  padding: 8rem 0;
}

.section-2 .inner-text {
  text-align: center;
  font-weight: 600;
  font-size: 5.4rem;
  line-height: 118%;
  letter-spacing: 0.3rem;
  font-family: var(--font-4);
}

@media (max-width: 575.98px) {
  .section-2 .inner-wrap {
    padding: 16px 0 56px;
  }

  .section-2 .inner-text {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
  }
}
/* End Section 2 */

/* Section 3 */
.section-3 {
  border-top: 1px solid black;
  padding-top: 8rem;
  padding-bottom: 10.4rem;
  overflow: hidden;
}

.section-3 .inner-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}

.section-3 .inner-item {
  width: calc((100% - 6.4rem) / 3);
  background-color: #EBEBEB;
  height: 43.8rem;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.8s ease;
}

.section-3 .inner-item.inactive {
  height: 26.4rem;
}

.section-3 .inner-item.inner-row {
  width: calc((100% - 6.4rem) / 6 - 1.6rem);
  height: 64.2rem;
}

.section-3 .inner-item.active {
  width: calc((100% - 6.4rem) * 2 / 3 + 3.2rem);
  height: 64.2rem;
  background-color: black;
}

.section-3 .inner-item .inner-top .inner-title {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04rem;
  color: black;
  transition: all 0.8s ease;
}

.section-3 .inner-item.active .inner-top .inner-title {
  font-size: 0;
  transition: all 0.8s ease;
}

.section-3 .inner-item .inner-middle .inner-text {
  font-weight: 400;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0.03rem;
  color: white;
  margin-bottom: 4rem;
  transition: all 0.8s ease;
  font-family: var(--font-4);
}

.section-3 .inner-item.active .inner-middle .inner-text {
  font-size: 2rem;
  transition: all 0.8s ease;
}

.section-3 .inner-item .inner-middle .inner-link {
  font-weight: 400;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0.03rem;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.8s ease;
}

.section-3 .inner-item.active .inner-middle .inner-link {
  font-size: 2rem;
  transition: all 0.8s ease;
}

.section-3 .inner-item .inner-middle .inner-link span {
  font-family: var(--font-4);
}

.section-3 .inner-item .inner-middle .inner-link a {
  text-decoration: underline;
  font-family: var(--font-4);
  color: white;
}

.section-3 .inner-item .inner-middle .inner-link a img {
  width: 0;
  transition: all 0.8s ease;
}

.section-3 .inner-item.active .inner-middle .inner-link a img {
  width: 2.4rem;
  transition: all 0.8s ease;
}

.section-3 .inner-item .inner-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-3 .inner-item .inner-logo img {
  width: 0;
  transition: all 0.8s ease;
}

.section-3 .inner-item:nth-child(1).active .inner-logo img {
  width: 6rem;
}

.section-3 .inner-item:nth-child(2).active .inner-logo img {
  width: 5rem;
}

.section-3 .inner-item:nth-child(3).active .inner-logo img {
  width: 11.3rem;
}

.section-3 .inner-item:nth-child(4).active .inner-logo img {
  width: 6.1rem;
}

.section-3 .inner-item:nth-child(5).active .inner-logo img {
  width: 10.5rem;
}

.section-3 .inner-item:nth-child(6).active .inner-logo img {
  width: 13rem;
}

.section-3 .inner-item .inner-bottom .inner-year img {
  height: 15.5rem;
  width: auto;
  filter: brightness(0);
  transition: all 0.8s ease;
}

.section-3 .inner-item.active .inner-bottom .inner-year img {
  filter: brightness(1);
}

.section-3 .inner-item.inactive .inner-bottom .inner-year img,
.section-3 .inner-item.inner-row .inner-bottom .inner-year img {
  height: 0rem;
  transition: all 0.8s ease;
}

.section-3 .inner-item .inner-top .inner-button-more,
.section-3 .inner-item .inner-top .inner-button-close {
  display: none;
}

@media (max-width: 575.98px) {
  .section-3 {
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .section-3 .inner-wrap {
    gap: 8px;
  }

  .section-3 .inner-item {
    width: 100%;
    height: 204px;
    padding: 8px;
  }

  .section-3 .inner-item.active {
    width: 100%;
    height: 452px;
  }

  .section-3 .inner-item.inner-row {
    width: 100%;
    height: 204px;
  }

  .section-3 .inner-item.inactive {
    width: 100%;
    height: 204px;
  }

  .section-3 .inner-item .inner-top .inner-title {
    font-size: 24px;
  }
  
  .section-3 .inner-item .inner-bottom .inner-year img {
    height: 126px;
  }

  .section-3 .inner-item.active .inner-middle .inner-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .section-3 .inner-item.active .inner-middle .inner-link {
    font-size: 14px;
    gap: 8px;
  }

  .section-3 .inner-item.active .inner-middle .inner-link a img {
    width: 14px;
  }

  .section-3 .inner-item:nth-child(1).active .inner-logo img {
    width: 50px;
  }

  .section-3 .inner-item:nth-child(2).active .inner-logo img {
    width: 41px;
  }

  .section-3 .inner-item:nth-child(3).active .inner-logo img {
    width: 106px;
  }

  .section-3 .inner-item:nth-child(4).active .inner-logo img {
    width: 49px;
  }

  .section-3 .inner-item:nth-child(5).active .inner-logo img {
    width: 96px;
  }

  .section-3 .inner-item:nth-child(6).active .inner-logo img {
    width: 109px;
  }

  .section-3 .inner-item .inner-top {
    position: relative;
  }

  .section-3 .inner-item .inner-top .inner-button-more {
    margin-top: 5px;
    display: inline-flex;
    border: 0;
    padding: 0;
    background-color: transparent;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: black;
  }

  .section-3 .inner-item .inner-top .inner-button-more span {
    font-family: var(--font-3);
  }

  .section-3 .inner-item .inner-top .inner-button-more img {
    width: 12px;
    display: block;
    filter: brightness(0);
  }

  .section-3 .inner-item.active .inner-top .inner-button-close {
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-3 .inner-item .inner-top .inner-button-close img {
    width: 14px;
    height: 14px;
    display: block;
  }
}
/* End Section 3 */

/* Footer */
.footer .inner-main .inner-wrap {
  border-top: 1px solid black;
  padding-top: 9.7rem;
  padding-bottom: 8rem;
  display: grid;
  grid-template-columns: 914fr 343fr;
  gap: 9.5rem;
}

.footer .inner-main .inner-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .inner-info-1 .inner-title {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 18.2rem;
  line-height: 1;
  color: black;
  margin-bottom: 2.8rem;
}

.footer .inner-info-1 .inner-title.text-jp {
  font-size: 8.2rem;
}

.footer .inner-info-1 .inner-desc {
  font-weight: 600;
  font-size: 3.9rem;
  line-height: 1;
  font-family: var(--font-4);
}

.footer .inner-info-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 7.4rem;
}

.footer .inner-list {
  min-width: 22rem;
}

.footer .inner-list .inner-item {
  color: black;
  font-size: 1.4rem;
  line-height: 1.22;
  font-weight: 400;
  font-family: var(--font-4);
}

.footer .inner-list b {
  font-weight: 600;
}

.footer .inner-right {
  padding-right: 0.8rem;
}

.footer .inner-door-container {
  position: relative;
  width: 100%;
  aspect-ratio: 344/635;
}

.footer .inner-door-container .inner-door {
  position: absolute;
  top: 0;
  left: -1px;
  width: 56%;
  height: calc(100% + 1px);
  overflow: hidden;
}

.footer .inner-door-container .inner-door:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: skewY(25deg);
  transform-origin: top left;
  border-radius: 0 1.8rem 0 0;
}

.footer .inner-door-container .inner-door .inner-knob {
  width: 2.8rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  top: calc(50% - 2.2rem);
  right: 1rem;
}

.footer .inner-door-container .inner-video {
  height: 100%;
}

.footer .inner-door-container .inner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer .inner-copyright {
  background-color: black;
  padding: 1.8rem 0;
}

.footer .inner-copyright .inner-text {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 1.6rem;
  color: white;
  line-height: 1;
  letter-spacing: 0.075rem;
  text-align: center;
}

.footer .inner-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .footer .inner-main .inner-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 16px;
    grid-template-columns: 248fr 134fr;
  }

  .footer .inner-main .inner-left {
    padding-bottom: 0;
  }

  .footer .inner-info-1 .inner-title {
    font-size: 72px;
    margin-bottom: 24px;
    max-width: 221px;
  }

  .footer .inner-info-1 .inner-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
    text-align: justify;
  }

  .footer .inner-list .inner-item {
    width: 100%;
    font-size: 9px;
  }

  .footer .inner-copyright {
    padding: 8px 0;
  }

  .footer .inner-copyright .inner-text {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .footer .inner-mobile {
    display: block;
  }

  .footer .inner-pc {
    display: none;
  }

  .footer .inner-main .inner-wrap {
    padding-bottom: 8px;
    grid-template-columns: 220fr 189fr;
  }

  .footer .inner-copyright {
    margin-top: 16px;
  }
}
/* End Footer */