@charset "utf-8";


#header {
  position: fixed;
  top: 6rem;
  max-width: 80%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
  height: 8.8rem;
  z-index: 999;
}
#header .logo a {
  background: url('../img/logo.png') no-repeat center / cover;
  width: 246px;
  height: 24px;
  display: block;
}
#header .maxinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10rem;
  position: relative;
  height: 100%;
  max-width: 1280px;
  padding: 0 2rem 0 4rem;
}
#header .maxinner::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index:-1;
  border-radius: 10rem;
}
#header #nav {
  display: flex;
  align-items: center;
}
#header #nav .nav-btn {
  width: 14.8rem;
  height: 4.8rem;
}
#header #nav .nav-btn + .nav-btn {
  margin-left: 2rem;
}


#header.sub {
  border-bottom: solid 1px rgba(0, 0, 0, 0.04);
  top: 0;
  max-width: 100%;
}
#header.sub .maxinner {
  max-width: 100%;
  width: 100%;
}
#header.sub .logo a {
  background: url('../img/logo_black.png') no-repeat center / cover;
}


#header.nav-up {
  top: -15%;
  max-width: 100%;
}
#header.nav-down {
  top: 0;
  max-width: 100%;
}




#footer {
  padding: 8rem 0;
}
#footer .logo a {
  background: url('../img/logo.png') no-repeat center / cover;
  width: 246px;
  height: 24px;
  display: block;
}
#footer .content {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: solid 1px #606060;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .content li {
  display: flex;
  align-items: center;
}
#footer .content li + li {
  margin-top: 8px;
}
#footer .content li span {
  font-size: 1.6rem;
  min-width: 7rem;
  color: #C2C2C2;
  position: relative;
  margin-right: 1.2rem;
}
#footer .content li span::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #606060;
}
#footer .content li p {
  font-size: 1.4rem;
  color: #fff;
}
#footer .content .copyright {
  text-align: right;
}
#footer .content .copyright p {
  font-size: 1.4rem;
  color: #f0f0f0;
  line-height: 1.5;
}

#footer.sub {
  border-top: solid 1px #DEDEDE;
  background-color: #F0F0F0;
}
#footer.sub .logo a {
  background: url('../img/logo_black.png') no-repeat center / cover;
}
#footer.sub .content {
  border-top: solid 1px #c2c2c2;
}
#footer.sub .content li span {
  color: #606060;
}
#footer.sub .content li span::after {
  background-color: #c2c2c2 ;
}
#footer.sub .content li p {
  color: #191919;
}
#footer.sub .content .copyright p {
  color: #606060;
}



.top-btn {
  width: 6rem;
  height: 6rem;
  position: fixed;
  bottom: 8rem;
  right: 8rem;
  box-shadow: 4px -1px 4px 0px rgba(0, 0, 0, 0.25) inset, -2px 0px 3px 0px rgba(255, 255, 255, 0.09) inset, 0px -1px 3px 0px rgba(255, 255, 255, 0.15) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.11) inset;
  background: linear-gradient(110deg, #664198 10.47%, #3A246E 16.79%, #1D122B 29.27%, #0B0B0B 49.6%, #191919 58.82%, #17425B 70.1%, #318ABE 87.99%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.top-btn .point-btn {
  width: 100%;
  height: 100%;
  background: transparent;
}
.top-btn i {
  background: url('../img/ico-topbtn.svg') no-repeat center / 3rem;
  display: block;
  width: 3rem;
  height: 3rem;
}


.top-btn.chatGpt {
  bottom: 16rem;
  min-width: 6rem;
  width: 6rem;
  border-radius: 3rem;
  transition: 0.3s;
}
.top-btn.chatGpt .point-btn {
  padding: 0 1rem;
}
.top-btn.chatGpt .ico-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-btn.chatGpt .ico-txt i {
  background: url('../img/ico-chat.png') no-repeat center / cover;
}
.top-btn.chatGpt .ico-txt p {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  font-size: 1.3rem;
  margin-left: 1rem;
  position: absolute;
  min-width: 8rem;
  line-height: 1.25;
}

.top-btn.chatGpt:hover {
  width: 14rem;
}
.top-btn.chatGpt:hover .ico-txt p {
  opacity: 1;
  visibility: inherit;
  position: relative;
}


.point-btn {
  overflow: hidden;
  position: relative;
  border-radius: 10rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px -1px 4px 0px rgba(0, 0, 0, 0.25) inset, -2px 0px 3px 0px rgba(255, 255, 255, 0.27) inset, -1px 3px 0px 0px rgba(0, 0, 0, 0.15) inset, 1px 3px 0px 0px rgba(0, 0, 0, 0.11) inset;
  background: linear-gradient(150deg, #F25999 -4.77%, #CB4D89 1.89%, #632143 10.76%, #301225 24.06%, #1D122B 50.24%, #3A246E 66.65%, #664198 83.95%);
}
.point-btn.st02 {
  background: linear-gradient(113deg, #8AD4EF -4.27%, #276D96 2.83%, #153651 12.31%, #061118 26.53%, #0B0B0B 54.48%, #0B1E3C 72.01%, #133366 90.49%);
}
.point-btn .ani {
  content: "";
  inset: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  width: 100%;
  border-radius: 62.5rem;
  padding: 0.13rem;
  line-height: 100%;
  transition: opacity 1s;
  position: absolute;
}
.point-btn .ani .inner {
  animation: borderTurnWithTranslate 2.5s infinite linear;;
  background-image: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, 0.7) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, 0.6) 360deg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.point-btn .ani .inner::before {
  content: "";
  float: left;
  padding-top: 100%;
}
.point-btn p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}

@keyframes borderTurnWithTranslate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}




.star-txt p,
.star-txt a {
  font-size: 1.6rem;
  font-weight: 500;
}
.star-txt p::before,
.star-txt a::before {
  content: '';
  background: url('../img/ico-star.svg') no-repeat center / cover;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 4px;
}
.star-txt.border {
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: inline-flex;
  padding: 6px 12px 6px 8px;
  margin-top: 8px;
}
.star-txt.st02 {
  margin-top: 1.6rem;
}
.star-txt.st02 p {
  font-size: 1.8rem;
}
.star-txt.st02 p span {
  font-size: 1.4rem;
  font-weight: 400;
}


.circle-line {
  position: relative;
}
.circle-line::after {
  content: '';
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13.89rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 0.3s;
}



.main-sub-tit {
  margin-top: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.main-sub-tit .circle-line p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding: 1.2rem 2rem;
}
.main-sub-tit h3 {
  margin-top: 2rem;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.32) -1.5%, #FFF 84.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.4rem;
  font-family: 'SBAggroB';
}




#wrap {
  background: linear-gradient(172deg, #08050F 3.22%, #3A246E 36%, #235988 65.94%, #3A3840 85.9%);
}
#wrap.sub {
  background: #FBFBFB;
}


.maxinner {
  max-width: 1216px;
  width: 90%;
  margin: 0 auto;
}
.s-maxinner {
  max-width: 656px;
  width: 90%;
  margin: 0 auto;
}




.sec01 {
  padding: 4rem 6rem 0;
}
.sec01 .point-bg {
  background: url('../img/main-img01.png') no-repeat center / cover;
  border-radius: 6rem;
  padding: 16rem 0 15rem;
}



.sec01 .arc01 .main-tit {
  text-align: center;
}
.sec01 .arc01 .main-tit h2 {
  color: #fff;
  font-size: 3.6rem;
  font-family: 'SBAggroL';
}
.sec01 .arc01 .main-tit h2 span {
  animation: mainTxtAni 3s linear infinite;
  background: linear-gradient(91deg, #2D79AA 21.3%, #7B5CA7 81.16%);
  background-size: 1000% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.4rem;
  display: block;
  margin-top: 2rem;
  font-family: 'SBAggroB';
}

@keyframes mainTxtAni {
  0% {
    background-position:0% 50%;
  }
  50% {
    background-position:100% 50%;
  }
  100% {
    background-position:0% 50%;
  }
}

.sec01 .arc01 .point-list {
  margin-top: 10rem;
}
.sec01 .arc01 .point-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.6rem;
}
.sec01 .arc01 .point-list li {
  width: 33.3%;
  padding: 0 1.6rem;
}
.sec01 .arc01 .point-list li .box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2rem 1.6rem;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  position: relative;
  top: 0;
  height: 100%;
}
.sec01 .arc01 .point-list li .tit {
  margin-bottom: 1.6rem;
}
.sec01 .arc01 .point-list li .tit i {
  background: url('../img/main-img02.svg') no-repeat center / cover;
  width: 4rem;
  height: 4rem;
  display: block;
  margin: 0 auto;
}
.sec01 .arc01 .point-list li .tit p {
  font-size: 2.4rem;
  font-family: 'SBAggroM';
  margin-top: 4px;
}
.sec01 .arc01 .point-list li .circle-line::after {
  border-right: 2px solid rgba(166, 150, 195, 0.52);
  border-left: 2px solid rgba(150, 131, 184, 0.52);
}
.sec01 .arc01 .point-list li .cont {
  padding: 2rem 1rem;
  min-height: 12.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec01 .arc01 .point-list li .cont > p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.sec01 .arc01 .point-list li .cont .star-txt {
  margin-top: 6px;
}
.sec01 .arc01 .point-list li .cont .star-txt p {
  letter-spacing: -0.64px;
}

.sec01 .arc01 .point-list li .box:hover {
  top: -3.2rem;
  background: rgba(255, 255, 255, 0.16);
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}
.btn-wrap .point-btn {
  background: linear-gradient(150deg, #664198 10.47%, #3A246E 16.79%, #1D122B 29.27%, #0B0B0B 49.6%, #191919 58.82%, #17425B 70.1%, #318ABE 87.99%);
  width: 25rem;
  height: 6rem;
  box-shadow: 4px -1px 4px 0px rgba(0, 0, 0, 0.25) inset, -2px 0px 3px 0px rgba(255, 255, 255, 0.27) inset, 0px -1px 3px 0px rgba(255, 255, 255, 0.15) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.11) inset;
  transition: 0.3s;
}

.sec01 .arc02 .cont {
  margin-top: 8rem;
  position: relative;
}
.sec01 .arc02 .cont::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 50%;
  padding-bottom: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(58, 36, 110, 0.70) 0%, rgba(73, 46, 128, 0.50) 41.5%, rgba(35, 89, 136, 0.00) 100%);
  backdrop-filter: blur(3px);
}
.sec01 .arc02 .cont .txt {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sec01 .arc02 .cont .txt h4 {
  font-family: 'SBAggroL';
  font-size: 2.4rem;
  margin-bottom: 6rem;
  line-height: 1.25;
}
.sec01 .arc02 .cont .txt h4 span {
  font-size: 2.8rem;
  font-family: 'SBAggroL';
}
.sec01 .arc02 .cont .txt p {
  font-size: 1.8rem;
  letter-spacing: -0.72px;
  line-height: 1.5;
  font-weight: 400;
}
.sec01 .arc02 .boost-box {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 10rem;
  max-width: 60rem;
  margin: 6rem auto 0;
  position: relative;
  z-index: 1;
}
.sec01 .arc02 .boost-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  z-index: -1;
}
.sec01 .arc02 .boost-box ul {
  width: 100%;
  padding: 3.6rem 0;
}
.sec01 .arc02 .boost-box li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec01 .arc02 .boost-box li + li {
  margin-top: 2rem;
}
.sec01 .arc02 .boost-box li p {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
  padding-right: 2rem;
}
.sec01 .arc02 .boost-box li p::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec01 .arc02 .boost-box li span {
  position: relative;
}
.sec01 .arc02 .boost-box li span + span {
  padding-left: 12px;
  margin-left: 12px;
}
.sec01 .arc02 .boost-box li span + span::after {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}



.sec02 .move-img {
  overflow: hidden;
  padding: 8rem 0;
}
.sec02 .move-img div {
  display: flex;
  gap: 8rem;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
	from {
		transform:translateX(0);
	}
	to {
		transform:translateX(-5950px);
	}
}

.sec02 .main-sub-tit {
  margin-top: 0;
}

.sec02 .anchor-btn {
  padding: 8rem 0 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sec02 .anchor-btn::after {
  content: '';
  position: absolute;
  background: url('../img/main-img07.png') no-repeat center / cover;
  width: 100%;
  height: 2px;
  top: 41%;
}
.sec02 .anchor-btn ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3rem;
}
.sec02 .anchor-btn .list {
  padding: 0 3rem;
}
.sec02 .anchor-btn .list a {
  min-width: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec02 .anchor-btn .list .circle-line {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  max-width: 6rem;
  width: 100%;
}
.sec02 .anchor-btn .list .circle-line::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
.sec02 .anchor-btn .list .circle-line p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sec02 .anchor-btn .list .tit {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.sec02 .anchor-btn .list a:hover .circle-line::after {
  transform: rotate(90deg);
}
.sec02 .anchor-btn .list a:hover .circle-line::before {
  width: 4rem;
}


.anchor-content .arc {
  padding: 7rem 0;
  display: flex;
}
.anchor-content .arc:last-child {
  padding-bottom: 0;
}
.anchor-content .num {
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.anchor-content .num .circle-line {
  margin-bottom: 2rem;
}
.anchor-content .num .circle-line p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  padding: 1.2rem 2rem;
  letter-spacing: -0.64px;
}
.anchor-content .content {
  width: 77%;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 20px;
  padding: 3.2rem;
  position: relative;
  color: #fff;
  z-index: 1;
}
.anchor-content .content::after {
  content: '';
  position: absolute;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 8px;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.04);
  z-index: -1;
}
.anchor-content .content h4 {
  font-size: 2.8rem;
  font-family: 'SBAggroL';
  margin-bottom: 3.2rem;
}
.anchor-content .content .inner-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
}
.anchor-content .content .inner-box + .inner-box {
  margin-top: 2rem;
}
.anchor-content .content .inner-box .tit {
  display: flex;
  align-items: center;
}
.anchor-content .content .inner-box .tit .label {
  font-size: 2rem;
  font-weight: 700;
  color: #191919;
  padding: 7px 16px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.20);
}
.anchor-content .content .inner-box .tit .desc {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 1.2rem;
}
.anchor-content .content .inner-box .tit + .cont {
  padding: 2rem 1.2rem;
  margin-top: 2rem;
  border-top: solid 2px rgba(255, 255, 255, 0.08);
}
.anchor-content .content .inner-box .cont > p {
  font-size: 2rem;
}
.anchor-content .content .inner-box .cont > p .star {
  background: url('../img/main-ico01.svg') no-repeat center / cover;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin: 0 1.2rem;
}
.anchor-content .content .inner-box .cont .star-txt p,
.anchor-content .content .inner-box .cont .star-txt a {
  font-size: 1.8rem;
  color: #fff;
}

.anchor-content .content .col-2 li:first-child td::after {
	display: none;
}

.anchor-content .content .col-2,
.anchor-content .content .col-3 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.anchor-content .content .col-2 li,
.anchor-content .content .col-3 li {
  width: 33.3%;
  padding: 0 1rem;
}
.anchor-content .content .col-3 li .inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 2rem;
}
.anchor-content .content .col-3 li .inner-box .circle-line {
  padding: 1.2rem 2rem;
  margin-bottom: 8px;
}
.anchor-content .content .col-3 li .inner-box .circle-line p {
  font-size: 1.4rem;
}
.anchor-content .content .col-3 li p {
  font-size: 2rem;
  font-weight: 500;
}
.anchor-content .content .col-3 li .star {
  background: url('../img/main-ico01.svg') no-repeat center / cover;
  width: 24px;
  height: 24px;
  margin: 4px 0;
}
.anchor-content .content .col-2 li {
  width: 50%;
}



.anchor-content .content table {
  text-align: center;
  width: 100%;
}
.anchor-content .content table th {
  font-size: 2rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 12px 12px 0 0;
  padding: 1rem;
}
.anchor-content .content table td {
  padding: 1.6rem 1rem 2.4rem;
  background: rgba(0, 0, 0, 0.24);
  position: relative;
}
.anchor-content .content table td p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anchor-content .content table td:first-child {
  border-bottom-left-radius: 12px;
}
.anchor-content .content table td:first-child::after {
  content: '';
  background: url('../img/main-img21.png') no-repeat center / cover;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  z-index: 1;
}
.anchor-content .content table td:last-child {
  border-bottom-right-radius: 12px;
}




.circle-list .list {
  display: flex;
  color: #fff;
}
.circle-list .list + .list {
  margin-top: 2.4rem;
}
.circle-list .list .circle {
  min-width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
}
.circle-list .list .circle p {
  font-weight: 700;
  font-size: 2rem;
}
.circle-list .list .txt {
  margin-top: 6px;
  letter-spacing: -0.8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.circle-list .list .txt > p {
  font-size: 2rem;
}
.circle-list .list .txt > p.point {
  font-weight: 700;
}
.circle-list .list .txt span {
  font-size: 1.8rem;
  margin-top: 8px;
  display: block;
  line-height: 1.25;
}
.circle-list.line .list {
  border-top: solid 1px rgba(255, 255, 255, 0.20);
  margin-top: 2rem;
  padding-top: 2rem;
}
.circle-list.line .list:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}




.sec03 {
  padding-bottom: 14rem;
}



.accordion-box {
  margin-top: 8rem;
}
.accordion-box .list + .list {
  margin-top: 2rem;
}
.accordion-box .list .btn {
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.16);
  border: 0;
  color: #fff;
  height: 8rem;
  padding: 0 2rem 0 3.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  border-bottom-color: transparent;
}
.accordion-box .list .btn span {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  text-align: left;
}
.accordion-box .list .btn i {
  width: 4rem;
  height: 4rem;
  transition: 0.2s;
}
.accordion-box .list .content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
  will-change: opacity;
  padding: 0 4rem;
}
.accordion-box .list .content > p {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.25;
}
.accordion-box .list .content > p + .circle-list {
  margin-top: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
}
.accordion-box .list .circle-list .circle {
  min-width: 2.4rem;
  height: 2.4rem;
  margin-right: 8px;
}
.accordion-box .list .circle-list .circle p {
  font-size: 1.4rem;
}
.accordion-box .list .circle-list .list .txt > p {
  font-size: 1.6rem;
}
.accordion-box .list .btn[aria-expanded='true'] {
  border-radius: 2rem 2rem 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.36);
}
.accordion-box .list .btn[aria-expanded='true'] i {
  background: url('../img/ico-minus.png') no-repeat center / cover;
}
.accordion-box .list .btn[aria-expanded='true'] + .content {
  opacity: 1;
  max-height: unset;
  will-change: opacity;
  background: rgba(0, 0, 0, 0.36);
  padding: 3.2rem 4rem 4rem;
  border-radius: 0 0 2rem 2rem;
}
.accordion-box .list .btn[aria-expanded='false'] i {
  background: url('../img/ico-plus.png') no-repeat center / cover;
}





/* sub page */
#wrap.sub {
  padding: 16rem 0 18rem;
}
#wrap.sub .maxinner {
  max-width: 656px;
}


.sub-tit {
  text-align: center;
  margin-bottom: 6rem;
}
.sub-tit h2 {
  font-size: 3.6rem;
  font-family: 'SBAggroL';
}


.label-wrap {
  box-shadow: 0px 4px 6px -1px rgba(46, 46, 46, 0.10), 0px 2px 4px -1px rgba(46, 46, 46, 0.06);
  border-radius: 2rem;
}
.label-wrap .label-tit {
  border-radius: 2rem 2rem 0 0;
  padding: 2.4rem 2.4rem 2rem;
  background-color: #ECE7F2;
  border-bottom: solid 1px #DEDEDE;
}
.label-wrap .label-tit p {
  font-size: 1.8rem;
  font-weight: 700;
}
.label-wrap .label-cont {
  padding: 2rem 2rem 2.4rem;
  background-color: #fff;
  border-radius: 2rem;
}
.label-wrap .label-cont .label-box {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  margin: 2rem 0;
}
.label-wrap .label-cont .label-box.mt0 {
  margin-top: 0;
}
.label-wrap .label-cont .label-box .label-tit {
  padding: 1.8rem 2rem;
  background-color: #F6F4FB;
  border: solid 1px #F0F0F0;
  border-bottom: 0;
  border-radius: 1.2rem 1.2rem 0 0;
}
.label-wrap .label-cont .label-box .label-tit p {
  font-size: 1.6rem;
}
.label-wrap .label-cont .label-box .label-cont {
  padding: 1.2rem;
}
.label-wrap .label-box .label-cont {
  border: solid 1px #F0F0F0;
  border-top: 0;
  border-radius: 0 0 1.2rem 1.2rem;
}


.content-btn {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-btn .btn {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  height: 4.8rem;
  padding: 0 4rem;
  border-radius: 10rem;
  background-color: #533489;
  border: solid 2px #533489;
  border: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-btn .btn:hover {
  background-color: #3A246E;
}
.content-btn .btn.st02 {
  border: solid 2px #F0F0F0;
  background-color: #fff;
  color: #191919;
}
.content-btn .btn.st02:hover {
  background-color: #FBFBFB;
}
.content-btn .btn + .btn {
  margin-left: 2rem;
}


.privacy-box {
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  border-bottom: solid 1px #F0F0F0;
}
.privacy-box .box {
  border-radius: 8px;
  background-color: #fbfbfb;
  border: solid 1px #F0F0F0;
  padding: 1.6rem;
  height: 16.8rem;
  overflow-y: auto;
}
.privacy-box .box::-webkit-scrollbar-thumb {
  background-color:#C2C2C2;
  border-radius:4px;
  transition:all 0.5s;
}
.privacy-box .box::-webkit-scrollbar-track {
  background-color: transparent; 
  border-radius:0;
}

.privacy-box .box .tit {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: solid 1px #F0F0F0;
}
.privacy-box .box .tit p {
  font-size: 1.6rem;
  color: #606060;
  font-weight: 600;
}
.privacy-box .box .cont p {
  font-size: 1.4rem;
  line-height: 1.25;
  color: #606060;
}
.privacy-box .box .cont table {
  font-size: 1.4rem;
  line-height: 1.25;
  color: #606060;
  border-collapse: collapse;
}
.privacy-box .box .cont table td {
  border: solid 1px #d6d6d6;
  padding: 1rem;
}
.privacy-check {
  margin-top: 1.2rem;
}
.privacy-check input {
  margin-right: 8px;
}
input[type=checkbox], input[type=radio] {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.privacy-check input + label {
  font-size: 1.4rem;
  color: #191919;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 3.2rem;
}
.privacy-check input + label::before {
  content: '';
  background: url('../img/ico-check-off.png') no-repeat center / cover;
  width: 24px;
  height: 24px;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.privacy-check input:checked + label::before {
  background: url('../img/ico-check-on.png') #fff no-repeat center / cover;
}


.form-flex .form-box + .form-box {
  margin-top: 1.2rem;
}
.form-flex .form-box .form-label {
  margin-bottom: 8px;
}
.form-flex .form-box .form-label label {
  color: #606060;
  font-size: 1.6rem;
  font-weight: 600;
}
.form-flex .form-box .form-input {
  position: relative;
}
.form-flex .form-box .form-input input {
  width: 100%;
  background-color: #FBFBFB;
  border: solid 1px #F0F0F0;
  height: 4.8rem;
  padding: 1.2rem;
  font-size: 1.6rem;
  color: #191919;
  font-weight: 400;
  border-radius: 8px;
}
.form-flex .form-box .form-input input::-webkit-outer-spin-button,
.form-flex .form-box .form-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-flex .form-box .form-input input::placeholder {
  color: #c2c2c2;
}
.form-flex .form-box .form-input .select-input {
  width: 100%;
  background-color: #FBFBFB;
  border: solid 1px #F0F0F0;
  height: 4.8rem;
  padding: 1.2rem;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.form-flex .form-box .form-input .select-input p {
  color: #c2c2c2;
  font-size: 1.6rem;
}
.form-flex .form-box .form-input .select-input .txt {
  color: #191919;
}
.form-flex .form-box .form-input .select-input i {
  background: url('../img/ico-select.svg') no-repeat center / cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  transition: 0.3s;
  z-index: -1;
}
.form-flex .form-box .form-input .select-list {
  border-radius: 0 0 8px 8px;
  border: solid 1px #F0F0F0;
  border-top: 0;
  background-color: #FBFBFB;
  position: absolute;
  width: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.form-flex .form-box .form-input .select-list li {
  cursor: pointer;
  height: 4.8rem;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #F0F0F0;
  padding: 0 1.2rem;
}
.form-flex .form-box .form-input .select-list li:last-child {
  border-bottom: 0;
}
.form-flex .form-box .form-input .select-list li p {
  font-size: 1.6rem;
}
.form-flex .form-box .form-input.active .select-input {
  border-radius: 8px 8px 0 0;
  outline: -webkit-focus-ring-color auto 1px;
}
.form-flex .form-box .form-input.active .select-input i {
  transform: translateY(-50%) rotate(180deg);
}
.form-flex .form-box .form-input.active .select-list {
  opacity: 1;
  visibility: inherit;
}
.form-flex .form-box .form-input a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  padding: 0 2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #533489;
  transition: 0.3s;
}
.form-flex .form-box .form-input a:hover {
  background-color: #ECE7F2
}


.apply-list.st02 {
  padding: 0 2rem;
}
.apply-list li {
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
}
.apply-list li + li {
  border-top: solid 1px #F0F0F0;
}
.apply-list li .tit {
  font-size: 1.6rem;
  font-weight: 600;
  color: #533489;
  min-width: 11rem;
}
.apply-list li .cont {
  font-size: 1.6rem;
  color: #191919;
}




.popup-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 999;
  display: none;
}
.popup-wrap .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 44.8rem;
  width: 90%;
  box-shadow: 0px 10px 15px -3px rgba(46, 46, 46, 0.10), 0px 4px 12px -2px rgba(46, 46, 46, 0.05);
  border-radius: 20px;
}
.popup-wrap .pop-tit {
  background-color: #3A246E;
  border-radius: 20px 20px 0 0;
  padding: 1.2rem 2rem 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-wrap .pop-tit p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.popup-wrap .pop-tit .close-btn {
  background: url('../img/ico-close.svg') no-repeat center / cover;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.popup-wrap .pop-cont {
  padding: 2rem 4rem 4rem;
  border-radius: 0px 0px 20px 20px;
  background-color: #fff;
}
.popup-wrap .pop-cont p {
  font-size: 1.6rem;
  color: #191919;
  text-align: center;
  line-height: 1.25;
}
.popup-wrap .pop-cont .btn-wrap {
  margin-top: 3.2rem;
}




@media ( max-width: 1024px ) {
  #header {
    max-width: 100%;
    top: 0;
  }


  .pc-br {
    display: none;
  }


  .sec01 {
    padding: 2rem;
  }
  .sec01 .point-bg {
    padding: 12rem 0;
  }
  .sec01 .arc01 .main-tit h2 span {
    font-size: 5rem;
  }



  .main-sub-tit {
    margin-top: 15rem;
  }
  .main-sub-tit h3 {
    font-size: 4.6rem;
  }
  .sec01 .arc02 .cont {
    margin-top: 5rem;
  }
  .sec01 .arc02 .cont .txt h4 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }


  .sec02 .anchor-btn {
    display: none;
  }
  .anchor-content .content h4 {
    font-size: 2.4rem;
  }




  #wrap.sub {
    padding: 15rem 0;
  }
  .sub-tit {
    margin-bottom: 3rem;
  }
  .sub-tit h2 {
    font-size: 3.2rem;
  }
}

@media ( max-width: 768px ) {
  #header #nav .nav-btn {
    width: 10rem;
    height: 4rem;
  }
  #header #nav .nav-btn + .nav-btn {
    margin-left: 1rem;
  }



  .sec01 .arc01 .point-list {
    margin-top: 5rem;
  }
  .sec01 .arc01 .point-list li {
    width: 100%;
  }
  .sec01 .arc01 .point-list li + li {
    margin-top: 2rem;
  }
  .sec01 .arc01 .point-list li .cont {
    min-height: auto;
  }
  .sec01 .arc01 .point-list li .box:hover {
    top: 0;
  }



  .sec02 .move-img div img {
    max-width: 200%;
  }


  .anchor-content .arc {
    padding: 3rem 0;
  }
  .anchor-content .num {
    display: none;
  }
  .anchor-content .content {
    width: 100%;
  }


  .anchor-content .content .col-3 li {
    width: 100%;
  }
  .anchor-content .content .col-3 li + li {
    margin-top: 1rem;
  }
  .anchor-content .content .col-3 li .inner-box {
    padding: 2rem;
  }
  .anchor-content .content .col-3 li img {
    max-width: 40%;
  }



  .sec03 {
    padding-bottom: 10rem;
  }


  #footer .content {
    flex-direction: column;
  }
  #footer .content > * {
    width: 100%;
  }
  #footer .content .copyright {
    margin-top: 5rem;
  }
}

@media ( max-width: 500px ) {
  #header {
    height: 6rem;
  }
  #header .maxinner,
  #header.sub .maxinner {
    max-width: 90%;
    padding: 0;
  }
  #header .maxinner::after {
    width: 140%;
    left: 50%;
    transform: translateX(-50%);
  }
  #header .maxinner .logo a {
    width: 170px;
    height: 16px;
  }
  #header #nav .nav-btn {
    width: 8rem;
    height: 3.2rem;
  }
  #header #nav .nav-btn + .nav-btn {
    margin-left: 4px;
  }
  #header.nav-up {
    top: 0;
  }


  .point-btn p {
    font-size: 1.2rem;
  }
  

  .sec01 .point-bg {
    padding: 10rem 0 5rem;
    background-position-x: 29%
  }
  .sec01 .arc01 .main-tit h2 {
    font-size: 2rem;
  }
  .sec01 .arc01 .main-tit h2 span {
    font-size: 3.6rem;
    margin-top: 1rem;
    font-family: 'SBAggroM';
  }
  .sec01 .arc01 .point-list li .tit {
    margin-bottom: 0.4rem;
  }
  .sec01 .arc01 .point-list li .tit i {
    display: none;
  }
  .sec01 .arc01 .point-list li .tit p {
    font-size: 1.8rem;
  }
  .sec01 .arc01 .point-list li .cont {
    padding: 1rem;
  }
  .sec01 .arc01 .point-list li .cont > p {
    font-size: 1.6rem;
  }



  .btn-wrap {
    margin-top: 5rem;
  }
  .btn-wrap .point-btn {
    width: 20rem;
    height: 5rem;
  }



  .main-sub-tit .circle-line p {
    padding: 0.4rem 2rem;
    font-size: 1.5rem;
  }
  .main-sub-tit {
    margin-top: 10rem;
  }
  .main-sub-tit h3 {
    font-size: 3.2rem;
    margin-top: 1rem;
    font-family: 'SBAggroM';
  }



  .sec01 .arc02 .cont .txt h4 {
    font-size: 2rem;
  }
  .sec01 .arc02 .cont .txt h4 span {
    font-size: 2.2rem;
  }
  .sec01 .arc02 .boost-box {
    margin-top: 3rem;
  }
  .sec01 .arc02 .boost-box ul {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .sec01 .arc02 .boost-box li {
    flex-direction: column;
    position: relative;
  }
  .sec01 .arc02 .boost-box li + li {
    margin-top: 1rem;
    padding: 1.5rem 0;
  }
  .sec01 .arc02 .boost-box li + li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}
  .sec01 .arc02 .boost-box li p {
    font-size: 1.8rem;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .sec01 .arc02 .boost-box li p::after {
    display: none;
  }
  .sec01 .arc02 .boost-box li span + span {
    padding: 0;
    margin: 0;
  }
  .sec01 .arc02 .boost-box li span + span::after {
    display: none;
  }
  .sec01 .arc02 .boost-box li img {
    transform: scale(0.7);
  }


  .sec02 .move-img {
    padding: 2rem 0 4rem;
  }
  .sec02 .move-img div img {
    max-width: 230%;
  }


  .anchor-content .content {
    padding: 2rem;
  }
  .anchor-content .content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .anchor-content .content .inner-box .cont > p {
    font-size: 1.8rem;
  }
  .anchor-content .content .inner-box .cont .star-txt p,
  .anchor-content .content .inner-box .cont .star-txt a {
    font-size: 1.6rem;
  }
  .anchor-content .content .inner-box .tit .label {
    font-size: 1.4rem;
    padding: 4px 12px;
  }
  .anchor-content .content .inner-box .tit + .cont {
    padding: 1rem 0;
    margin-top: 1.5rem;
  }
  .anchor-content .content .inner-box .tit .desc {
    font-size: 1.6rem;
  }
  .anchor-content .content .inner-box .cont > p .star {
    margin: 0 0.4rem;
  }



  .circle-list .list .circle p {
    font-size: 1.8rem;
  }
  .circle-list .list .txt > p {
    font-size: 1.8rem;
  }
  .circle-list .list .txt span {
    font-size: 1.6rem;
  }


  .star-txt.border {
    padding: 3px 12px 2px 8px;
  }



  .anchor-content .content .col-2 li {
    width: 100%;
  }



  .accordion-box {
    margin-top: 3rem;
  }
  .accordion-box .list + .list {
    margin-top: 1rem;
  }
  .accordion-box .list .btn {
    height: 6rem;
    padding: 0 1rem 0 2rem;
  }
  .accordion-box .list .btn i {
    min-width: 3rem;
    height: 3rem;
  }
  .accordion-box .list .btn span {
    font-size: 1.8rem;
  }
  .accordion-box .list .content {
    padding: 0 2rem;
  }
  .accordion-box .list .content > p {
    font-size: 1.6rem;
  }
  .accordion-box .list .btn[aria-expanded='true'] + .content {
    padding: 2rem;
  }



  .sec03 {
    padding-bottom: 5rem;
  }




  #wrap.sub {
    padding: 12rem 0 8rem;
  }


  .sub-tit h2 {
    font-size: 2.8rem;
  }



  .form-flex .form-box .form-input input,
  .form-flex .form-box .form-input .select-input {
    height: 4rem;
    font-size: 1.4rem;
  }
  .form-flex .form-box .form-input .select-input p {
    font-size: 1.4rem;
  }


  .label-wrap .label-tit {
    padding: 1.6rem;
  }
  .label-wrap .label-tit p {
    font-size: 1.6rem;
  }

  .label-wrap .label-cont .label-box .label-tit {
    padding: 1.2rem;
  }
  .label-wrap .label-cont .label-box .label-tit p {
    font-size: 1.5rem;
  }



  .content-btn .btn {
    height: 4rem;
    padding: 0 2rem;
    font-size: 1.4rem;
  }


  .apply-list li {
    padding: 1rem 0;
  }


  .privacy-box .box .tit p {
    font-size: 1.5rem;
  }



  #footer {
    padding: 5rem 0;
  }
  #footer .logo a {
    width: 170px;
    height: 16px;
  }
  #footer .content {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  #footer .content .copyright {
    margin-top: 2rem;
  }



  .top-btn {
    width: 5rem;
    height: 5rem;
    bottom: 3rem;
    right: 3rem;
  }
  .top-btn i {
    background: url('../img/ico-topbtn.svg') no-repeat center / 2rem;
    width: 2rem;
    height: 2rem;
  }


  .top-btn.chatGpt,
  .top-btn.chatGpt:hover {
    bottom: 9rem;
    min-width: 5rem;
    width: 5rem;
  }
  .top-btn.chatGpt .ico-txt p {
    display: none;
  }
}