@charset "UTF-8";
*,
a {
  color: var(--color-black);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

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

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

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

hr {
  border: none;
  margin: 0;
}

svg {
  width: 100%;
  height: 100%;
}

.wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  position: relative;
  overflow-x: clip;
}

.ani {
  transition: all 0.4s ease-out;
}
.ani.down {
  transform: translateY(-80px);
}
.ani.up {
  transform: translateY(80px);
}
.ani.left {
  transform: translateX(80px);
}
.ani.right {
  transform: translateX(-80px);
}
.ani.opacity {
  opacity: 0;
}
.ani.on.down, .ani.on.up {
  transform: translateY(0);
}
.ani.on.left, .ani.on.right {
  transform: translateX(0);
}
.ani.on.opacity {
  opacity: 1;
}

.inner1820,
.inner1720 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.inner1820 {
  max-width: 1820px;
}

.inner1720 {
  max-width: 1720px;
}

h2 {
  font-size: var(--font60);
}

h3 {
  font-size: var(--font44);
}

h4 {
  font-size: var(--font36);
}

h5 {
  font-size: var(--font30);
}

.flex-row,
.flex-col {
  display: flex;
}
.flex-row.center,
.flex-col.center {
  align-items: center;
}
.flex-row.end,
.flex-col.end {
  align-items: flex-end;
}
.flex-row.between,
.flex-col.between {
  justify-content: space-between;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.icon img {
  max-height: 100%;
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

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

.tab-t {
  display: flex;
  height: 80px;
  padding: 10px;
}
.tab-t li,
.tab-t li button,
.tab-t li a {
  width: 100%;
  height: 100%;
}
.tab-t li button,
.tab-t li a {
  font-weight: 500;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.tab-t li:hover button,
.tab-t li:hover a, .tab-t li.on button,
.tab-t li.on a {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

.tab-contents > div {
  position: absolute;
  top: -200vh;
  left: -200vw;
  pointer-events: none;
}
.tab-contents > div.on {
  position: relative;
  top: auto;
  left: auto;
  pointer-events: inherit;
}

.data .contents {
  padding: 60px;
}
.data .data-box,
.data .bottom-box {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 10px;
}
.data .item em,
.data .item figure {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.data .item em {
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 500;
}
.data .item figure {
  height: 200px;
  background: var(--color-white);
}
.data .bottom-box {
  margin-top: 40px;
}
.data .bottom-box > div {
  position: relative;
}
.data .bottom-box > div::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.data .bottom-box .text {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 15px 30px;
  position: relative;
  z-index: 1;
}
.data .bottom-box .arrow {
  width: 100%;
}
.data .bottom-box .arrow::before {
  width: 18px;
  height: 26px;
  background: url(/img/svg/arrow-data.svg) no-repeat center/100%;
  top: -26px;
}
.data .bottom-box .tie {
  grid-column-start: 3;
  grid-column-end: 8;
  text-align: center;
}
.data .bottom-box .tie::before {
  width: calc(80% - 14px + 20px - 7px);
  height: 66.5px;
  border: 7px solid var(--color-primary);
  border-top: none;
  top: -40px;
}
.data .bottom-box .tie .text {
  display: inline-block;
}

:root {
  --header-height: 100px;
  --form-height: 60px;
}

.gnb a br,
.snb a br,
.fnb a br {
  display: none;
}

header {
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
header .inner1820,
header .flex-row {
  width: 100%;
  height: 100%;
}
header .flex-row {
  align-items: center;
  justify-content: space-between;
}
header nav,
header .depth1,
header .depth1 > li {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header nav a {
  transition: all 0.3s;
}
header .depth1 > li {
  position: relative;
}
header .depth1 > li::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}
header .depth1 > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 0 20px;
}
header .depth1 > li:hover::after {
  width: 100%;
}
header .depth1 > li:hover > a {
  color: var(--color-primary);
}
header .depth2-bg,
header .depth2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-out;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .depth2-bg.on,
header .depth2.on {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
header .depth2-bg {
  width: 100%;
  height: 83px;
  background: var(--color-white);
  border-top: 1px solid #ddd;
  pointer-events: none;
}
header .depth2 {
  display: flex;
  align-items: center;
  column-gap: 70px;
  padding: 30px 0;
  z-index: 1;
}
header .depth2 > li > a {
  color: #888;
  font-size: 1.8rem;
  font-weight: 300;
  white-space: nowrap;
}
header .depth2 > li:hover > a {
  color: var(--color-primary);
  font-weight: 500;
}
header .menu-button,
header .menu-button::before {
  border-radius: 50%;
}
header .menu-button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  row-gap: 3px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header .menu-button::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .menu-button span {
  display: block;
  width: 50%;
  height: 1px;
  background: var(--color-secondary);
  transition: all 0.4s;
}
header.menu-on {
  background: transparent;
  z-index: 4;
}
header.menu-on .logo img {
  filter: brightness(0) invert(1);
}
header.menu-on nav {
  display: none;
}
header.menu-on .menu-button {
  row-gap: 0;
  margin-left: auto;
}
header.menu-on .menu-button::before {
  border-color: var(--color-white);
}
header.menu-on .menu-button span {
  background: var(--color-white);
}
header.menu-on .menu-button span:first-child {
  transform: translate(0, 0.5px) rotate(-45deg);
}
header.menu-on .menu-button span:nth-child(2) {
  display: none;
}
header.menu-on .menu-button span:last-child {
  transform: translate(0, -0.5px) rotate(45deg);
}

.site-map {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 3;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.site-map .inner,
.site-map .snb-box {
  height: 100%;
}
.site-map .inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.site-map .snb-box {
  width: 1620px;
  padding-top: 200px;
  position: relative;
}
.site-map .snb-box > img {
  width: calc(100% + 40px);
  max-width: inherit;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.site-map .depth1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 100px;
}
.site-map .depth1 * {
  color: var(--color-white);
}
.site-map .depth1 > li {
  transition: all 0.4s;
}
.site-map .depth1 > li > a {
  font-size: var(--font26);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.site-map .depth1 > li > a::before {
  content: "";
  display: block;
  width: 4px;
  height: 0;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.site-map .depth2 {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.site-map .depth2 > li > a {
  display: inline-flex;
  font-size: 2rem;
  font-weight: 300;
  padding: 7.5px 0;
  opacity: 0.8;
  transition: all 0.4s;
}
.site-map .depth1 > li.on > a::before {
  height: 1.3847em;
}
.site-map .depth1 > li.off {
  opacity: 0.3;
}
.site-map .depth2 > li.off > a {
  opacity: 0.4;
}

footer {
  background: var(--color-black);
  padding: var(--gap60) 0;
}
footer * {
  color: var(--color-white);
  font-family: var(--font-outfit);
}
footer .logo {
  filter: brightness(0) invert(1);
}
footer .top-button,
footer .top-button::before {
  border-radius: 50%;
}
footer .top-button {
  width: 50px;
  height: 50px;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .top-button::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .top-button img {
  transition: all 0.4s;
}
footer .top-button:hover {
  background: var(--color-primary);
}
footer .top-button:hover img {
  filter: brightness(0) invert(1);
}
footer hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: var(--gap60) 0;
}
footer .depth1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
}
footer .depth1 > li > a {
  font-size: 2rem;
  font-weight: 600;
}
footer .depth2 {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 30px;
}
footer .depth2 > li > a {
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.8;
}
footer .end {
  margin-top: var(--gap120);
}
footer .left-box,
footer .info {
  display: flex;
  row-gap: 15px;
}
footer .left-box {
  max-width: 780px;
  flex-direction: column;
}
footer .left-box * {
  font-size: 1.8rem;
}
footer .info {
  flex-wrap: wrap;
  column-gap: 20px;
}
footer .info dl {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
footer .info dl dt {
  min-width: 40px;
  font-weight: 500;
}
footer .info dl dd {
  font-weight: 300;
  opacity: 0.8;
}
footer .copy {
  letter-spacing: 0;
  opacity: 0.5;
}
footer .policy-button {
  font-size: 2rem;
  font-weight: 500;
}

.privacy-text * {
  color: #555;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
}
.privacy-text h3 {
  color: #111;
  font-size: calc(var(--font36) - 0.4rem);
  font-weight: 700;
  margin-bottom: 60px;
}
.privacy-text .text-box,
.privacy-text .text,
.privacy-text .sub-text {
  display: flex;
  flex-direction: column;
}
.privacy-text .text-box {
  row-gap: 40px;
}
.privacy-text .text {
  row-gap: 30px;
}
.privacy-text .sub-text {
  row-gap: 16px;
}
.privacy-text h5 {
  color: var(--color-secondary);
  font-size: 2rem;
  font-weight: 500;
}
.privacy-text dl {
  row-gap: 16px;
}
.privacy-text dl dt {
  color: #111;
  font-weight: 500;
}
.privacy-text dl dd b {
  display: block;
  color: #555;
  font-weight: 500;
  margin-bottom: 10px;
}
.privacy-text ul li,
.privacy-text ol li {
  display: flex;
}
.privacy-text ul li::before,
.privacy-text ol li::before {
  flex-shrink: 0;
}
.privacy-text ul li::before {
  content: "·";
  font-weight: 500;
  margin: 0 8px;
}
.privacy-text ol {
  counter-reset: li;
}
.privacy-text ol li {
  counter-increment: li;
}
.privacy-text ol li::before {
  content: counter(li) ".";
  display: block;
  width: 18px;
  padding-left: 2px;
}