:root {
  --color-main: #800020;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-garamond: "Garamond", sans-serif;
  --font-optima: "Optima", sans-serif;
}

.font136 {
  --fontsize: 13.6rem;
  font-size: var(--fontsize);
}

.font92 {
  --fontsize: 9.2rem;
  font-size: var(--fontsize);
}

.font84 {
  --fontsize: 8.4rem;
  font-size: var(--fontsize);
}

.font82 {
  --fontsize: 8.2rem;
  font-size: var(--fontsize);
}

.font72 {
  --fontsize: 7.2rem;
  font-size: var(--fontsize);
}

.font68 {
  --fontsize: 6.8rem;
  font-size: var(--fontsize);
}

* {
  line-height: 1.3;
  letter-spacing: -0.03em;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--color-black);
}
body * {
  color: var(--color-white);
}

hr,
figure {
  padding: 0;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

hr {
  border: none;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

.w1720 {
  max-width: 1720px;
	max-width: 89.5835%;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.w1600 {
  max-width: 1600px;
	max-width: 83.35%;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.tab-contents > div {
  display: none;
}
.tab-contents > div.on {
  display: block;
}

h2,
h2 > span,
h3,
h3 > span {
  font-family: 'garamond', 'pretendard';
}

.titleH {
  height: 1.3em;
  overflow: hidden;
}
.titleH > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(80%) skewX(-10deg);
  transition: all 0.8s cubic-bezier(0.905, 0.035, 0.47, 0.9);
}
.titleH.on > span {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.titleH.on > span:nth-child(1) {
  transition-delay: 0.04s;
}
.titleH.on > span:nth-child(2) {
  transition-delay: 0.08s;
}
.titleH.on > span:nth-child(3) {
  transition-delay: 0.12s;
}
.titleH.on > span:nth-child(4) {
  transition-delay: 0.16s;
}
.titleH.on > span:nth-child(5) {
  transition-delay: 0.2s;
}
.titleH.on > span:nth-child(6) {
  transition-delay: 0.24s;
}
.titleH.on > span:nth-child(7) {
  transition-delay: 0.28s;
}
.titleH.on > span:nth-child(8) {
  transition-delay: 0.32s;
}
.titleH.on > span:nth-child(9) {
  transition-delay: 0.36s;
}
.titleH.on > span:nth-child(10) {
  transition-delay: 0.4s;
}
.titleH.on > span:nth-child(11) {
  transition-delay: 0.44s;
}
.titleH.on > span:nth-child(12) {
  transition-delay: 0.48s;
}
.titleH.on > span:nth-child(13) {
  transition-delay: 0.52s;
}
.titleH.on > span:nth-child(14) {
  transition-delay: 0.56s;
}
.titleH.on > span:nth-child(15) {
  transition-delay: 0.6s;
}
.titleH.on > span:nth-child(16) {
  transition-delay: 0.64s;
}
.titleH.on > span:nth-child(17) {
  transition-delay: 0.68s;
}
.titleH.on > span:nth-child(18) {
  transition-delay: 0.72s;
}
.titleH.on > span:nth-child(19) {
  transition-delay: 0.76s;
}
.titleH.on > span:nth-child(20) {
  transition-delay: 0.8s;
}

p {
  font-size: 2.3rem;
  line-height: 1.5;
}

.animation {
  transition: all 0.4s;
}
.animation.down {
  transform: translateY(-40px);
	transition: all 1.0s;
}
.animation.up {
  transform: translateY(40px);
	transition: all 1.0s;
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
	transition: all 1.0s;
}
.animation.off {
  position: relative;
  overflow: hidden;
}
.animation.off > * {
  opacity: 0;
  transition: all 0.4s;
}
.animation.off::after {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.animation.off.black::after {
  background: var(--color-black);
}
.animation.off.white::after {
  background: var(--color-white);
}
.animation.on.down, .animation.on.up {
  transform: translateY(0);
}
.animation.on.left, .animation.on.right {
  transform: translateX(0);
}
.animation.on.opacity {
  opacity: 1;
}
.animation.on.off > * {
  opacity: 1;
  transition-delay: 0.8s;
}
.animation.on.off::after {
  animation-name: off;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.905, 0.035, 0.47, 0.9);
  animation-fill-mode: forwards;
}
@keyframes off {
  0% {
    height: 0%;
    bottom: 0;
  }
  40% {
    height: 100%;
    bottom: 0;
  }
  60% {
    height: 100%;
    bottom: 0;
  }
  100% {
    height: 100%;
    bottom: 100%;
  }
}

.row,
.column {
  display: flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.padding180 {
  padding: 180px 0;
}

.padding150 {
  padding: 150px 0;
}

.bg-white,
.bg-gray {
  position: relative;
}
.bg-white::before,
.bg-gray::before {
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% + 2px);
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-white::before {
  background: var(--color-white);
}
.bg-white h2,
.bg-white h2 > *,
.bg-white h3,
.bg-white h3 > *,
.bg-white h4 {
  color: #111;
}
.bg-white p {
	color: #111;
}

.bg-gray::before {
  background: #dcdcdc;
}

@media (hover: hover) {
  .hover-circle:hover, .hover-circle:hover * {
    mix-blend-mode: exclusion;
  }
  .hover-circle:hover {
    border-color: transparent !important;
    transition: all 0.2s 0.4s;
  }
  .hover-circle:hover::before {
    width: 100%;
    height: 100%;
  }
}
.hover-circle {
  position: relative;
}
.hover-circle::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: var(--color-white);
  border-radius: 50%;
  transition: all 0.4s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.more {
  mix-blend-mode: difference;
  display: flex;
  flex-direction: row;
	column-gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.more span {
  font-size: 2.1rem;
}
.more .arrow {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.more .arrow .svg {
  width: 15px;
  height: 12px;
}
.more.black span {
	color: #ccc;
}

header,
header * {
  transition: all 0.2s linear;
}

header {
  width: 100%;
  height: 130px;
  background: var(--color-black);
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header .header-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
header .header-box > *:not(nav) {
  flex-shrink: 0;
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header .language {
  margin-left: 40px;
  display: flex;
  flex-direction: row;
	column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
header .language .on {
	font-weight: 600;
}
header .language hr {
  width: 1px;
  height: 15px;
  background: var(--color-white);
}
header nav {
  padding: 0 20px;
  margin-left: auto;
}
header .depth1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
header .depth1 li {
  opacity: 0;
  transition: all 0.6s;
	pointer-events: none;
}
header .depth1 a {
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 0 20px;
}
header .menu-button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: grid;
  grid-template-rows: repeat(2, 4px);
  grid-template-columns: repeat(2, 4px);
	row-gap: 4px;
	column-gap: 4px;
  align-content: center;
  justify-content: center;
}
header .menu-button span {
  display: block;
  background: var(--color-white);
  width: 100%;
  height: 100%;
}
header.white {
  background: var(--color-white);
}
header.white .header-box {
  border-color: rgba(0, 0, 0, 0.2);
}
header.white a {
  color: #111;
}
header.white hr {
  background: #111;
}
header.white .logo,
header.white .menu-button {
  mix-blend-mode: exclusion;
}
header.transparent {
  background: transparent;
}

footer {
  padding: 100px 0 40px;
}
footer .footer-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
footer .info {
  display: flex;
  flex-direction: column;
	row-gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .info h6 {
  font-size: 2.1rem;
  font-weight: 600;
}
footer .info .column {
	row-gap: 10px;
}
footer .info dl {
  display: flex;
  flex-direction: row;
	column-gap: 40px;
  align-items: center;
  justify-content: flex-start;
}
footer .info dl * {
  font-size: 1.7rem;
}
footer .info dl dt {
  width: 62px;
  font-weight: 500;
}
footer .info dl dd {
  color: #888;
}
footer .link {
  display: flex;
  flex-direction: column;
	row-gap: 20px;
  align-items: flex-end;
  justify-content: flex-start;
}
footer .link > a {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
	column-gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
footer .buttons {
	column-gap: 10px;
}
footer .buttons button {
  height: 70px;
  border: 1px solid #222;
}
footer .buttons span {
  color: #666;
  font-size: 1.7rem;
  font-weight: 600;
}
footer .family {
  position: relative;
}
footer .family ul {
  width: 100%;
  background: #222;
  padding: 12px 25px;
  display: none;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 100%;
}
footer .family ul li a {
  display: block;
  color: #aaa;
  font-size: 1.7rem;
  padding: 12px 0;
}
footer .family-button {
  width: 250px;
  padding: 0 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .family-button img {
  transition: all 0.4s;
}
footer .family-button.on img {
  transform: rotateX(180deg);
}
footer .top-button {
  width: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .copy {
  color: #666;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 5px;
}