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

.font120 {
  --fontsize: 12.0rem;
  font-size: var(--fontsize);
}

.font92 {
  --fontsize: 9.2rem;
  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;
}

.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 {
  font-family: var(--font-garamond);
}

.animation {
  transition: all 0.6s;
}
.animation.down {
  transform: translateY(-80px);
}
.animation.up {
  transform: translateY(80px);
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
}
.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;
}
.animation.on.off::after {
  animation-name: off;
  animation-duration: 1.8s;
  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 {
  position: relative;
}
.bg-white::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: #333;
}

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

header {
  width: 100%;
  height: 130px;
  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;
  row-gap: 0;
  column-gap: 0;
  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;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
header .language hr {
  width: 1px;
  height: 15px;
  background: var(--color-white);
}
header .language .on {
  font-weight: 600;
}
header.black {
  background: var(--color-black);
}
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 {
  mix-blend-mode: exclusion;
}
header.transparent {
  background: transparent;
}

footer {
  padding: 100px 0 40px;
}
footer .footer-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: flex-start;
  justify-content: space-between;
}
footer .info {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .info h6 {
  font-size: 2.1rem;
  font-weight: 600;
}
footer .info .column {
  gap: 10px 0;
}
footer .info dl {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  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;
  column-gap: 0;
  align-items: flex-end;
  justify-content: flex-start;
}
footer .link > a {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
footer .buttons {
  gap: 0 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;
  row-gap: 0;
  column-gap: 0;
  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;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
footer .copy {
  color: #666;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 5px;
}