@charset "UTF-8";
/* CSS Document */

.header.active {
  background: rgba(255, 255, 255, 0.5);
}

.header__wapper__h1 a {
  color: #000000;
}

.header__wapper nav ul li a {
  color: #000000;
}

.menu span {
  background: #000000;
}

.fixde .header__wapper__h1 a {
  color: #FFFFFF;
}

.fixde .header__wapper nav ul li a {
  color: #FFFFFF;
}

.fixde .menu span {
  background: #FFFFFF;
}

.sec1 {
  position: relative;
  overflow: hidden;
}

.sec1__bg1 {
  position: absolute;
  top: -25%;
  left: -25%;
  rotate: -20deg;
  background: #E6E6E6;
  border-radius: 50%;
  width: 50%;
  aspect-ratio: 3 / 4;
  filter: blur(150px);
  z-index: -1;
}

.sec1__bg2 {
  position: absolute;
  bottom: -50%;
  right: -25%;
  rotate: -20deg;
  background: #E6E6E6;
  border-radius: 50%;
  width: 50%;
  aspect-ratio: 3 / 4;
  filter: blur(150px);
  z-index: -1;
}

.sec1__wapper {
  width: 95%;
  max-width: 1920px;
  padding-top: 100px;
  padding-bottom: 250px;
  border-top: solid 1px #000000;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.sec1__left {
  width: 40%;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--en-font);
}

.sec1__right {
  width: 60%;
  margin-top: 20px;
}

.sec1__right p {
  line-height: 1.75;
  margin-bottom: 50px;
}

.sec1__right p small {
  display: block;
  font-size: 1.4rem;
}

.sec1__right a {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.sec1__right a img {
  display: block;
  width: 12px;
  filter: brightness(0);
}

@media (max-width: 767px) {
  .sec1__wapper {
    margin-top: 100px;
    padding-top: 50px;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 200px;
  }

  .sec1__left {
    width: 100%;
    font-size: 2.5rem;
  }

  .sec1__right {
    width: 100%;
    margin-top: 0;
  }

  .sec1__right p {
    font-size: 1.4rem;
  }

  .sec1__right p small {
    font-size: 1.2rem;
  }

  .sec1__right a {
    gap: 15px;
    font-size: 1.2rem;
  }

  .sec1__right a img {
    width: 10px;
  }
}