@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;
  top: 100%;
  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;
  border-top: solid 1px #000000;
  margin: 100px auto 250px;
  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%;
  line-height: 1.8;
  font-weight: 600;
}

.sec1__right__ul__li {
  padding-top: 30px;
  border-top: solid 1px #000000;
  margin-top: 30px;
}

.sec1__right__ul__li h3 {
  font-size: 2rem;
}

.sec1__right__ul__li ul {
  margin-top: 20px;
  padding-left: 35px;
  list-style: auto;
  line-height: 2;
}

.sec1__right__ul__li div {
  margin-top: 20px;
  padding-left: 15px;
  list-style: auto;
  line-height: 2;
}

.sec1__bottom__text {
  text-align: right;
  margin-top: 50px;
}


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

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

  .sec1__right {
    width: 100%;
    font-size: 1.4rem;
  }

}