.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inner {
  padding: 0 var(--p-20);
}
@media (max-width: 768px) {
  .inner {
    padding: 0 var(--p-24);
  }
}

.block {
  max-width: 108rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .block {
    width: 100%;
  }
}

.heading {
  text-align: center;
}
.heading span {
  color: #122f5c;
  font-family: var(--ff-inter);
  font-weight: var(--fw-400);
  font-size: var(--fs-20);
  display: block;
  margin-bottom: var(--m-8);
}
@media (max-width: 768px) {
  .heading span {
    font-size: 1.6rem;
  }
}
.heading h2 {
  font-weight: var(--fw-500);
  font-size: var(--fs-28);
  line-height: var(--lh-180);
}
@media (max-width: 768px) {
  .heading h2 {
    font-size: 2.2rem;
  }
}

.header {
  background: var(--color-text-inverse);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 10rem;
}
@media (max-width: 768px) {
  .header {
    height: 7.8rem;
  }
}
.header .inner {
  padding: 0 var(--p-40);
  height: 100%;
}
@media (max-width: 768px) {
  .header .inner {
    padding: 0 var(--p-24);
  }
}
.header-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .header-wrap {
    padding: 0;
  }
}
.header-logo {
  width: 13.9rem;
}
@media (max-width: 1125px) {
  .header-logo {
    display: none;
  }
}
.header-content {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-left: auto;
  height: 100%;
}
@media (max-width: 1125px) {
  .header-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-text-inverse);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    transition: left 0.3s ease;
  }
  .header-content.active {
    left: 0;
    background: linear-gradient(180deg, #656565, #2a2a2a);
  }
}
.header-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-right: 3.2rem;
  height: 100%;
}
@media (max-width: 1125px) {
  .header-list {
    flex-direction: column;
    margin-right: 0;
    padding: 11.8rem 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.header-item {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1125px) {
  .header-item {
    height: auto;
    flex-direction: column;
  }
}
.header-item.active {
  cursor: pointer;
}
.header-item.active:hover .header-box {
  display: block;
}
.header-item.active:hover .dli-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.header-item.active:hover .dli-minus {
  opacity: 1;
  transform: rotate(0deg);
}
.header-item.active .dli-plus {
  opacity: 1;
  transform: rotate(0deg);
}
.header-item.active .dli-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.header-link {
  font-size: var(--fs-14);
  font-family: var(--ff-inter);
}
@media (max-width: 1125px) {
  .header-link {
    font-size: 2rem;
    color: var(--color-text-inverse);
  }
}
.header-intro {
  position: relative;
  font-size: var(--fs-14);
  font-family: var(--ff-inter);
  padding-right: var(--p-22);
}
@media (max-width: 1125px) {
  .header-intro {
    font-size: 2rem;
    color: var(--color-text-inverse);
    padding-left: var(--p-8);
    padding-right: var(--p-36);
  }
}
.header-intro::after {
  background-color: #122f5c;
  bottom: -1rem;
  content: "";
  display: block;
  height: 0.1rem;
  left: 0;
  position: absolute;
  transition: 0.5s all;
  width: 0;
}
@media (max-width: 1125px) {
  .header-intro::after {
    background-color: var(--color-text-inverse);
    bottom: -0.8rem;
  }
}
.header-intro:hover::after {
  width: 100%;
}
.header-intro .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #1e1e1e;
  line-height: 1;
  width: 1.1rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center;
}
@media (max-width: 1125px) {
  .header-intro .dli-plus {
    color: var(--color-text-inverse);
    right: 0.9rem;
  }
}
.header-intro .dli-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.header-intro .dli-minus {
  display: inline-block;
  vertical-align: middle;
  color: #1e1e1e;
  line-height: 1;
  width: 1.1rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  opacity: 0;
}
@media (max-width: 1125px) {
  .header-intro .dli-minus {
    color: var(--color-text-inverse);
    right: 0.9rem;
  }
}
.header-box {
  position: fixed;
  top: 10rem;
  left: 0;
  width: 100%;
  z-index: 1300;
  background: var(--color-text-inverse);
  display: none;
  flex-direction: column-reverse;
  cursor: auto;
  box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 1125px) {
  .header-box {
    background: transparent;
    position: relative;
    top: auto;
    box-shadow: none;
  }
}
.header-box::before {
  content: "";
  background: #888888;
  height: 0.1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
}
@media (max-width: 1125px) {
  .header-box::before {
    position: relative;
    top: auto;
    bottom: auto;
    width: 90vw;
    left: auto;
    display: block;
  }
}
.header-flex {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  max-width: 52.8rem;
  width: 90%;
  margin: 0 auto;
  padding: var(--p-40) 0;
}
@media (max-width: 1125px) {
  .header-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    padding: var(--p-32) var(--p-40);
    width: auto;
  }
}
.header-unit {
  position: relative;
  display: flex;
  flex-direction: column;
}
.header-img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-label {
  position: absolute;
  top: 0;
  right: 0;
  background: #122F5C;
  color: var(--color-text-inverse);
  font-size: var(--fs-10);
  letter-spacing: var(--ls-005);
  font-weight: var(--fw-400);
  padding: var(--p-4) var(--p-8);
}
.header-product {
  margin-top: var(--m-16);
  text-align: center;
  display: block;
  font-size: var(--fs-16);
  letter-spacing: var(--ls-005);
  font-weight: var(--fw-400);
  font-family: var(--ff-inter);
  line-height: var(--lh-120);
}
@media (max-width: 1125px) {
  .header-product {
    color: var(--color-text-inverse);
  }
}
.header-label + .header-product {
  text-align: left;
}
.header-soon {
  font-size: var(--fs-18);
  font-family: var(--ff-inter);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-005);
  line-height: var(--lh-100);
  color: #888888;
  display: block;
  text-align: center;
  margin: var(--m-40) 0;
}
@media (max-width: 1125px) {
  .header-soon {
    margin: var(--m-32) 0;
  }
}
@media (max-width: 1125px) {
  .header-btn {
    margin-left: auto;
  }
}
.header-btn a {
  background: var(--color-text);
  color: var(--color-text-inverse);
  font-size: var(--fs-14);
  border-radius: 3rem;
  width: 15.8rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: --ff-inter;
  font-family: var(--ff-inter);
  transition: background 0.5s ease;
}
@media (max-width: 768px) {
  .header-btn a {
    font-size: 1.4rem;
    height: 4rem;
  }
}
.header-btn.active {
  position: relative;
}
.header-btn.active a {
  background: var(--color-text-inverse);
  color: var(--color-text);
}
.header-btn.active .white {
  display: none;
}
.header-btn.active .black {
  display: block;
}
.header-icon {
  width: 2rem;
}
.header-icon .black {
  display: none;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 0.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
@media (max-width: 1125px) {
  .header .hamburger {
    display: flex;
    padding: 0;
  }
}
.header .hamburger span {
  display: block;
  height: 0.1rem;
  width: 100%;
  background: var(--color-text);
  transition: 0.3s;
}
.header .hamburger.active span:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
  background: var(--color-text-inverse);
}
.header .hamburger.active span:nth-child(2) {
  transform: translateY(0.4rem) rotate(-45deg);
  background: var(--color-text-inverse);
}

.footer {
  background: var(--color-bg);
  padding: var(--p-80) 0;
  font-family: var(--ff-inter);
}
.footer .block {
  max-width: 64rem;
}
.footer-logo {
  width: 18.6rem;
  display: block;
  margin: 0 auto;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: var(--m-80);
  padding-bottom: var(--p-40);
  border-bottom: 0.1rem solid #888888;
}
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 4rem;
    margin-top: var(--m-40);
  }
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.footer-sbttl {
  color: #EDEDED;
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-005);
  border-bottom: 0.1rem solid #888888;
  padding-bottom: var(--p-8);
}
.footer-sblist {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-sblink {
  color: #EDEDED;
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-005);
}
.footer-soon {
  color: #888888;
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-005);
}
.footer-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin: var(--m-40) 0;
}
@media (max-width: 768px) {
  .footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: baseline;
    gap: 1.6rem;
  }
}
.footer-link {
  color: var(--color-text-inverse);
  font-size: var(--fs-14);
}
@media (max-width: 768px) {
  .footer-link {
    font-size: 1.4rem;
  }
}
.footer-policy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: var(--m-40);
}
@media (max-width: 768px) {
  .footer-policy {
    justify-content: flex-start;
  }
}
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social__link {
  width: 3.2rem;
}
.footer-copyright {
  color: #888888;
  font-size: var(--fs-14);
  margin-top: var(--m-40);
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-copyright {
    font-size: 1.4rem;
  }
}

.fadeInUp {
  opacity: 0;
}

.fadeInUp.loaded {
  opacity: 1;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}