@charset "UTF-8";
/* Setting Variables : Text Color */
/* reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

small {
  font-size: 90%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
  font-size: 10px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background-color: #1A1A1A;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 500;
}

/* 인풋, 버튼 스타일 초기화 */
input, textarea, a, button, select, span, label, :before, :after {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  outline: 0;
}

input,
select,
button,
textarea,
optgroup {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background-color: transparent;
  text-rendering: inherit;
  border: none;
  /*-webkit-appearance: none;*/
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

select,
input[type=text],
input[type=password],
input[type=submit],
input[type=search],
input[type=button],
input[type=file],
input[type=number],
input[type=search]::-webkit-search-cancel-button,
button {
  -webkit-appearance: none;
}


input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

input::-webkit-input-placeholder {
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}

textarea {
  width: 100%;
  overflow: auto;
}

button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  background-color: transparent;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  transition: all 0.25s ease;
}
button:hover, button:focus, button:active {
  opacity: 0.8;
}

/* 링크 초기화 */
a,
a:link,
a:visited,
a:active,
a:hover {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

/* 이미지 초기화 */
img {
  position: relative;
  vertical-align: middle;
  border: none;
}

/* 리스트 초기화 */
ul li,
ol li,
dl dt dd {
  list-style: none;
}

/* 기타 초기화 */
blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote ::after,
q::before,
q ::after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1px;
  height: 0px;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
  z-index: -1;
}

em,
address {
  font-style: normal;
}

/*------------
form
-------------*/
/* 폼 엘리먼트 */
select,
textarea,
input[type=text],
input[type=email],
input[type=password],
input[type=submit],
input[type=search],
input[type=number] {
  padding: 0 5px;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  min-width: 120px;
}
select:disabled,
textarea:disabled,
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=submit]:disabled,
input[type=search]:disabled,
input[type=number]:disabled {
  opacity: 1 !important;
  background: #EFEFEF;
  border: 1px solid #DDDDDD;
  color: #444444;
}
select[required],
textarea[required],
input[type=text][required],
input[type=email][required],
input[type=password][required],
input[type=submit][required],
input[type=search][required],
input[type=number][required] {
  border: 1px solid #4B4B4B;
}
select[readonly],
textarea[readonly],
input[type=text][readonly],
input[type=email][readonly],
input[type=password][readonly],
input[type=submit][readonly],
input[type=search][readonly],
input[type=number][readonly] {
  background: #EFEFEF;
}
select[placeholder],
textarea[placeholder],
input[type=text][placeholder],
input[type=email][placeholder],
input[type=password][placeholder],
input[type=submit][placeholder],
input[type=search][placeholder],
input[type=number][placeholder] {
  color: #777777;
}

input[type=text], input[type=password], input[type=date], input[type=search] {
  height: 38px;
}

select {
  color: #636363;
  display: block;
  height: 38px;
  padding-right: 30px;
  background-image: url("/images/cms/select.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 14px;
  background-clip: padding-box;
  border: 1px solid #DDDDDD;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  display: block;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  cursor: pointer;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  position: relative;
  width: auto;
  height: 18px;
  padding-left: 20px;
  vertical-align: middle;
}
input[type=checkbox] + label::before,
input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  text-align: center;
  border: 1px solid #DDDDDD;
  background: #ffffff;
}
input[type=checkbox] + label::after,
input[type=radio] + label::after {
  content: "";
  position: absolute;
}
input[type=checkbox] + label span,
input[type=radio] + label span {
  display: inline-block;
  padding-left: 5px;
  padding-right: 10px;
}
input[type=checkbox]:checked + label::before,
input[type=radio]:checked + label::before {
  border-color: #59FFC5;
}

input[type=checkbox] + label::before {
  border-radius: 0.4rem;
}
input[type=checkbox] + label::after {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  text-align: center;
}
input[type=checkbox]:checked + label::before {
  border-radius: 0.4rem;
  border: 1px solid #59FFC5;
  background: #59FFC5;
}
input[type=checkbox]:checked + label::after {
  content: "\e92b";
  font-family: "feather" !important;
  color: #ffffff;
  line-height: 18px;
  font-weight: 400;
}

input[type=radio] + label::before {
  border-radius: 100%;
}
input[type=radio] + label::after {
  top: 50%;
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
}
input[type=radio]:checked + label::after {
  background: #59FFC5;
  border-radius: 100%;
}

.input-group {
  display: inline-block;
  min-height: 48px;
  padding: 5px 10px;
}
.input-group dt, .input-group dd {
  display: inline-block;
  padding: 5px 0;
  vertical-align: middle;
}
.input-group dt {
  color: #1A1A1A;
  font-weight: 500;
}
.input-group dt + dd {
  margin-left: 10px;
}
.input-group dd + dt {
  margin-left: 20px;
}
.input-group button {
  vertical-align: middle;
}

div.form-group {
  border-top: 0 !important;
}

.form-group {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
}
.form-group dt, .form-group dd {
  display: inline-block;
  padding: 5px 0;
}
.form-group dt {
  width: 16%;
  color: #1A1A1A;
  text-align: right;
  font-weight: 500;
}
.form-group dt + dd {
  margin-left: 20px;
}
.form-group dt.required::before {
  content: "\e92b";
  margin-right: 0.5rem;
  font-family: "feather" !important;
  color: red;
}
.form-group dd + dt {
  margin-left: 20px;
}
.form-group dd.fw {
  width: 80%;
}
.form-group:first-of-type {
  border-top: 1px solid #DDDDDD;
}

.date-wrap {
  position: relative;
  display: inline-block;
}
.date-wrap::after {
  content: "\e927";
  position: absolute;
  top: 3px;
  right: 5px;
  font-family: "feather" !important;
  font-size: 20px;
  color: #DDDDDD;
}

.numabc {
    text-align:center;
    font-family: "Montserrat", sans-serif;
}

/*------------
main.css
-------------*/
/* ############# Front page : index.html ############# */
.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1A1A1A;
  position: relative;
}
.main .main-cont {
  width: 100%;
  max-width: 1400px;
  position: absolute;
  top: 30%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.main .main-cont .left h2 {
  font-size: 4.8rem;
  color: #ffffff;
}
.main .main-cont .left h3 {
  margin-top: 1.4rem;
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 400;
}
.main .main-cont .right img {
  width: 430px;
  -webkit-animation: doong 1s ease-in-out alternate infinite;
}
.main .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main .item-img img {
  min-width: 100%;
  height: auto;
}

/* ############# Sub page2 : partner.html ############# */
.partner {
  background: #1A1A1A;
}
.partner .partner-inner .partner-main .tab-menu {
  display: flex;
  justify-content: center;
}
.partner .partner-inner .partner-main .tab-menu button {
  border: none;
  font-size: 1.6rem;
  background-color: #F7FCFE;
  color: #0C8B81;
  padding: 1rem 3.4rem;
  margin: 5px;
  border-radius: 10px;
  border: 1px solid #0C8B81;
}
.partner .partner-inner .partner-main .tab-menu button.active {
  border: 1px solid #0C8B81;
  background-color: #0C8B81;
  color: #ffffff;
  font-weight: 500;
}
.partner .partner-inner .partner-main .content {
  position: relative;
}
.partner .partner-inner .partner-main .content .tab-img {
  width: 100%;
  height: 520px;
  position: relative;
  filter: brightness(50%);
  animation-name: fadeup;
  animation-duration: 1s;
}
.partner .partner-inner .partner-main .content .tab-txt {
  width: 100%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.partner .partner-inner .partner-main .content .tab-txt h3 {
  font-size: 4.4rem;
  line-height: 120%;
  color: #59FFC5;
  animation-name: fadeup;
  animation-duration: 1s;
}
.partner .partner-inner .partner-main .content .tab-txt h3 strong {
  font-size: 4.4rem;
  color: #ffffff;
}
@keyframes fadeup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.partner .partner-inner .partner-main .youtubers {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.partner .partner-inner .partner-main .youtubers .youtuber-info img {
  width: 250px;
  height: 250px;
}
.partner .partner-inner .partner-main .youtubers .youtuber-info .youtuber-detail .youtuber-name {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  margin: 3rem 0 1rem 0;
}

.partner .partner-inner .partner-main .companys {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.partner .partner-inner .partner-main .companys .company-info img {
  width: 250px;
  height: 250px;
}
.partner .partner-inner .partner-main .companys .company-info .company-detail .company-name {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  margin: 3rem 0 1rem 0;
}



/* Section : Review */
.review {
  padding-bottom: 20rem;
  width: 100%;
  overflow: hidden;
  background: #1A1A1A;
}
.review .review-items {
  padding-top: 2rem;
}
.review .review-items .review-item {
  display: flex;
  flex: 0 0 auto;
  gap: 30px;
  overflow: hidden;
  width: 5600px;
  animation: textLoop 15s linear infinite;
}
.review .review-items .review-item .img-top {
  padding-top: 6rem;
}
.review .review-items .review-item img {
  width: 250px;
  height: 360px;
  padding-top: 30px;
  border-radius: 160px;
  border: 1px solid #4B4B4B;
  object-fit: cover;
}

@keyframes textLoop {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
/* section : Contact */
.contact {
  padding: 11rem;
  display: flex;
  justify-content: center;
  position: relative;
  background: url(/images/banner.png) no-repeat center/cover;
}
.contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 10;
  width: 178rem;
  height: 68rem;
  background: url(/images/circles.png) no-repeat;
  -webkit-animation: doong 1s ease-in-out alternate infinite;
}
.contact .contact-inner {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 4rem 0;
  z-index: 1;
}
.contact .contact-inner .main-text {
  margin-bottom: 6rem;
}
.contact .contact-inner .main-text h2 {
  color: #444444;
}
.contact .contact-inner .contact-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10rem;
}
.contact .contact-inner .contact-wrap input[type=submit] {
  font-size: 1.8rem;
  color: #ffffff;
  background: #000000;
  padding: 1.4rem 2.2rem;
  border-radius: 10px;
  margin-top: 1rem;
} 

.company-check, 
.youtuber-check {
flex-wrap:wrap;
justify-content:flex-start;
width:100%;
}
.contact .main-text h2 {
margin-bottom:5rem;
}
.contact .main-text b {
color:black;
font-size:2.2rem;
line-height: 0;
}
.contact .contact-inner .contact-wrap {
margin-top:-2.5rem;
}
.contact .contact-inner .contact-wrap .field {
margin:2rem;
}
.contact .contact-inner .contact-wrap .field b {
color:black;
display:block;
margin-bottom:1rem;
font-size: 1.6rem;
}
.company-check input,
.company-check textarea,
.youtuber-check input,
.youtuber-check textarea{
width:100%;
color:black;
padding:1rem;
}
.company-check textarea,
.youtuber-check textarea {
min-height:15rem;
}
.company-check .field:nth-child(1){
width:20%;
}
.company-check .field:nth-child(2){
width:15%;
}
.company-check .field:nth-child(3){
width:25%;
}
.company-check .field:nth-child(4){
width:20%;
}
.company-check .field:nth-child(5){
width:15%;
}
.company-check .field:nth-child(6){
width:15%;
}
.company-check .field:nth-child(7){
width:35%;
}
.company-check .field:nth-child(8){
width:90%;
}
.youtuber-check .field:nth-child(1){
width:20%;
}
.youtuber-check .field:nth-child(2){
width:20%;
}
.youtuber-check .field:nth-child(3){
width:15%;
}
.youtuber-check .field:nth-child(4){
width:20%;
}
.youtuber-check .field:nth-child(5){
width:15%;
}
.youtuber-check .field:nth-child(6){
width:15%;
}
.youtuber-check .field:nth-child(7){
width:35%;
}
.youtuber-check .field:nth-child(8){
width:90%;
}
.agree-btn {
position: relative;
padding-bottom: 7rem;
padding-top:2rem;
}
.contact-btn {
display: block;
position: absolute;
margin-top:2rem!important;
left: 50%;
transform: translateX(-50%);
}

@-webkit-keyframes doong {
  from {
    transform: translate(0, 0px);
  }
  to {
    transform: translate(0, 30px);
  }
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-cont {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.left {
	margin-top: 5%;
}


.main .main-cont .left h3 {
	font-weight: 200;
	font-size: 22px;
	color: #ddd;
}

.join-btn, .more-btn {
	font-family: 'Montserrat', sans serif;
	padding: 12px;
	width: 180px;
	border-radius: 15px;
	font-size: 2rem;
	margin-top: 8%;
	margin-right: 3%;
}

.join-btn {
	box-sizing: border-box;
	border: 1px solid white;
	background: #ffffff10;
}

.more-btn {
	background: #ffffff;
	color: #191842;
}
.swiper-container {
  position: relative!important;
  z-index: 1 !important; /* 기본값보다 낮게 */
}
/* Responsive for Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Section : main */
  .main .main-cont {
	  padding: 0 40px;
  }
  .main .main-cont .right {
    width: 40%;
  }
  .main .main-cont .right img {
    width: 100%;
  }
  /* Section : partner */
  .partner {
	  padding: 0 40px;
  }
  .partner .partner-inner .partner-main .companys {
	  flex-wrap: wrap;
	  gap: 20px;
  }
  /* Section : conatct */
  #contactForm {
	  padding-top:20rem;
  }
  .contact {
	 padding: 100px 40px;
	 margin-top:0 !important;
  }
  .contact::after {
    width: 100%;
    height: 100%;
   }
  .contact .contact-inner .contact-wrap {
	  padding: 0 5rem;
  }
  .company-check .field:nth-child(1) {
	  width:30%;
  }
  .company-check .field:nth-child(2) {
	  width:25%;
  }
  .company-check .field:nth-child(3) {
	  width:25%;
  }
  .company-check .field:nth-child(4) {
	  width:30%;
  }
  .company-check .field:nth-child(5) {
	  width:25%;
  }
  .company-check .field:nth-child(6) {
	  width:25%;
  }
  .company-check .field:nth-child(7) {
	  width:40%;
  }
  .company-check .field:nth-child(8) {
	  width:100%;
  }
  /* Section : footer */
  footer .footer-inner {
	  padding: 5rem 40px;
  }
}

@media (max-width: 767px) {
  /* Section : main */
  .main {
	  background-size: cover !important;
  }
  .main .main-cont .left h2 {
      font-size: 4rem;
  }
  .main .main-cont .left h3 {
    font-size: 18px;
  }
  .join-btn, .more-btn {
    width: 130px;
}
  .main .main-cont {
	  padding: 0 20px;
  }
  .main .main-cont .right {
    width: 70%;
  }
  .main .main-cont .right img {
    width: 100%;
  }
  /* Section : partner */
  .partner {
	  padding: 0 20px;
  }
  .partner .partner-inner .partner-main .companys {
	  flex-wrap: wrap;
	  gap: 10px;
  }	
  .partner .partner-inner .partner-main .companys .company-info img {
    width: 160px;
    height: 160px;
  }
  /* Section : review */
  .review {
	  padding-left:20px;
	  padding-right:20px;
  }
  .review .review-items .review-item {
    gap: 10px;
  }
  .review .review-items .review-item img {
    width: 90%;
    height: auto;
    padding-top: 30px;
    border-radius: 130px;
    border: 1px solid #4B4B4B;
    object-fit: cover;
  }
    /* Section : conatct */
    .contact .main-text b {
        font-size: 2rem; 
    }
    .company-check {
		justify-content: space-between;
	}
	/* Section : conatct */
  #contactForm {
	  padding-top:20rem;
  }
  .contact {
	 padding: 60px 20px;
	  margin-top:0 !important;
  }
  .contact::after {
    width: 100%;
    height: 100%;
   }
  .contact .contact-inner .contact-wrap .field {
      margin: 1rem 0;
  }
  .contact .contact-inner .contact-wrap {
	  padding: 0 2rem;
  }
  .company-check .field:nth-child(1) {
	  width:50%;
  }
  .company-check .field:nth-child(2) {
	  width:49%;
  }
  .company-check .field:nth-child(3) {
	  width:50%;
  }
  .company-check .field:nth-child(4) {
	  width:49%;
  }
  .company-check .field:nth-child(5) {
	  width:50%;
  }
  .company-check .field:nth-child(6) {
	  width:49%;
  }
  .company-check .field:nth-child(7) {
	  width:100%;
  }
  .company-check .field:nth-child(8) {
	  width:100%;
  }
  /* Section : footer */
  footer .footer-inner {
	  padding: 3rem 20px;
  }
  footer .footer-inner {
    gap: 20px;
  }
}