@charset "utf-8";

/* header */
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, .86);
  transition: background-color ease .3s;
}

body.fp-viewing-about .header {
  background-color: transparent;
}

.header .d-flex {
  justify-content: space-between;
  align-items: center;
  padding: .85rem 3rem;
  transition: padding ease .3s;
}

body.fp-viewing-about .header .d-flex {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.header .d-flex .logo {
  margin: 0;
}

.header .d-flex .logo a {
  display: block;
  font-size: 0;
}

.header .d-flex .nav-items a {
  margin: 0 1rem;
  font-size: 18px;
  color: #fff;
  opacity: .8;
  transition: opacity ease .3s;
}

.header .d-flex .nav-items .active a {
  font-weight: 700;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .header .d-flex {
    padding: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .header .d-flex .nav-items {
    padding-left: 0;
  }

  .header .d-flex .nav-items a {
    font-size: 14px;
    margin-right: 0;
  }
}

/* footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: .75rem 0;
  font-size: 14px;
}

.footer strong {
  padding-right: .5rem;
}

.container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* about */
.about {
  background-color: transparent;
  background-image: linear-gradient(220deg, #4959FF 0%, #C72BB5 100%);
  opacity: 0.8;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  color: #fff;
}

.about .container {
  align-items: center;
}

.about .about_ex {
  line-height: 1.2;
}

.about .about_ex h1,
.about .about_ex h3 {
  margin: 0;
}

.about .about_ex h3 {
  font-weight: 100;
}

.about .about_ex a {
  display: block;
  width: 100%;
  max-width: 240px;
  margin-top: 3rem;
  color: #B240A5;
  font-size: 20px;
  background-color: #fff;
  border-radius: 999px;
  border: 2px solid #fff;
  transition: background-color ease-in-out .3s, color ease-in-out .3s;
  font-weight: 700;
  padding: 17px 0;
  text-align: center;
}

.about .about_ex a:hover {
  background-color: transparent;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .about .about_ex {
    flex: 0 0 40%;
    order: 0;
  }
}

@media screen and (max-width: 768px) {
  .about .about_ex {
    order: 1;
    text-align: center;
  }

  .about .about_ex h1 {
    font-size: 30px;
  }

  .about .about_ex h3 {
    font-size: 22px;
  }

  .about .about_ex a {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about figure {
    margin: 1rem;
  }
}

/* portfolio */
.portfolio {
  background: url(/images/portfolio_bg.jpg) no-repeat center center / cover;
}

.portfolio:after {
  display: block;
  content: '';
  background: url(/images/lights.png) no-repeat center 100px / contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  /* z-index: 11; */
}

.portfolio .container {
  transition: padding ease .3s;
  transition-delay: .5s;
}

.portfolio.active .container {
  padding-top: 61px;
}

.portfolio .fp-tableCell {
  display: flex;
}

.pin_lights {
  margin-bottom: 5rem;
}

.pin_lights span {
  text-align: center;
}

.portfolio .portWrap {
  text-align: center;
  color: #fff;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.portfolio .portWrap .btn-prev {
  color: #fff;
  left: -50px;
  margin-top: -55px;
}

.portfolio .portWrap .btn-next {
  color: #fff;
  right: -50px;
  margin-top: -55px;
}
.portfolio .portWrap figure {
  border-radius: 1rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .portfolio {
    padding-top: 0;
  }

  .portfolio:after {
    background-size: auto 100%;
  }

  .portfolio.active .container {
    padding-top: 0;
  }

  .pin_lights {
    margin-bottom: 2rem;
  }

  .pin_lights span.col {
    padding-top: 0;
  }

  .pin_lights span.hd-sm {
    display: none;
  }

  .portfolio .portWrap .btn-prev,
  .portfolio .portWrap .btn-next {
    margin-top: 0;
    top: auto;
    bottom: 0;
  }

  .portfolio .portWrap .btn-prev {
    left: 0;
  }

  .portfolio .portWrap .btn-next {
    right: 0;
  }
}

/* plan choose */
.plan h2 p {
  font-size: 18px;
  font-weight: 100;
  word-break: keep-all;
}

.plan .col div {
  height: 100%;
  background-color: #fff;
  padding: 4rem 2.5rem;
  border-radius: 1rem;
  text-align: center;
  color: #4c4c4c;
  transition: background-color ease 0.1s, transform ease 0.5s;
  transform: scale(1);
  box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
}
.plan .col div h3 {
  margin-top: 0;
  font-size: 44px;
  font-weight: 600;
}

.plan .col div h3:after {
  display: block;
  content: '';
  width: 50px;
  height: 3px;
  background: #4c4c4c;
  margin: 25px auto;
}


.plan .col div h3 small {
  display: block;
  font-weight: 100;
  font-size: 18px;
}

.plan .col div ul {
  margin: 3rem 0;
  min-height: 218px;
}

.plan .col div ul li {
  text-align: left;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.plan .col div ul li:before {
  display: block;
  content: '';
  width: 16px;
  height: 10px;
  border: solid #4c4c4c;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 4px;
}

.plan .col div a {
  display: block;
  font-size: 18px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .plan .col div:hover {
    background-color: var(--theme-color);
    color: #fff;
    transform: scale(1.05);
  }
  .plan .col div:hover h3:after {
    background: #fff;
  }
  .plan .col div:hover ul li:before {
    border-color: #fff;
  }
  .plan .col div:hover a {
    background-color: #fff;
    color: var(--theme-color);
  }
}

/* contact */
.contact form>div:not(:last-of-type) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}

.contact form>div label em {
  font-style: normal;
  color: #e22658;
  font-weight: 600;
  padding-left: 3px;
}

.contact form>div>span {
  flex: 1;
  margin: 0;
}

.contact form>div span input[type="text"],
.contact form>div span input[type="email"],
.contact form>div span textarea {
  width: 100%;
  min-height: 50px;
  padding: 1rem;
  font-size: 16px;
  border-radius: 4px;
}

.contact form>div.planCheck span label {
  margin-right: 1rem;
}

.contact form>div > .submit {
  display: block;
  width: 250px;
  margin: 3rem auto 0;
  padding: 1rem 0;
  background-color: var(--theme-color);
  text-align: center;
  height: auto;
  color: #fff;
  font-size: 20px;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .contact form>div {
    flex-direction: column;
  }

  .contact form>div>label {
    margin-bottom: .5rem;
  }

  .contact form>div.planCheck span span {
    display: block;
    margin: 10px 0;
  }
}

@media screen and (min-width:768px) {
  .contact form>div:not(:last-of-type) {
    align-items: center;
  }

  .contact form>div>label {
    flex: 0 0 200px;
  }

  .contact form>div span.acceptance {
    padding-left: 200px;
  }

}

/* company info */
.company {
  padding: 3rem 0;
  color: #222;
}

.company h6 {
  color: #6e4e2b;
  margin-bottom: 2rem;
}

.company a {
  color: inherit;
}
.company .cs_center .phone {
  display: block;
  color: #222;
  font-size: 18px;
  font-weight: 100;
  line-height: 2;
}
.company .cs_center .phone span {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.company .cs_center .kakao_cont {
  display: inline-flex;
  align-items: center;
  margin: 15px 0;
}
.company .cs_center a i {
  display: inline-block;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-right: .5rem;
}

.company .info dl {
  margin: 0 0 5px;
}

.company .info dl dt,
.company .info dl dd {
  display: inline-block;
  font-size: 15px;
  margin: 0;
}

.company .payment strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
}

.modal_pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.6);
  z-index: 2;
  opacity: 0;
  transition: opacity ease 0.5s;
  display: none;
}
.modal_pop .modal_container {
  width: 80%;
  max-width: 600px;
  height: 70%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem 2rem;
  z-index: 10;
  overflow: hidden;
}
.modal_pop .modal_container .close_pop {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.modal_pop .modal_container .modal_content {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.modal_pop .modal_container .modal_content::-webkit-scrollbar {
  width: 10px;
}