@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@800&display=swap");
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.5em;
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 1.75em;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.25em;
  }
}

h3 {
  font-size: 1.25em;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1em;
  }
}

p {
  line-height: 1.4;
  color: #555;
}

a {
  color: #ffcc00;
  text-decoration: none;
  cursor: pointer;
}
a:active, a:focus, a:hover {
  color: #b38f00;
  text-decoration: underline;
}
a:visited {
  color: #ffcc00;
}

.svg {
  display: inline-block;
  line-height: 0;
  vertical-align: text-top;
}
.svg svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.login-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.login-wrapper .login-container {
  width: 300px;
  margin: 0 auto;
}
.login-wrapper .login-container .logo {
  width: 100%;
  height: 5em;
  background-image: url("../images/logo.png");
  background-size: 10em;
  background-repeat: no-repeat;
  background-position: top center;
}
.login-wrapper .login-container .btn {
  margin: 0.5em 0;
}
.login-wrapper .login-container .btn.for-kakao {
  color: #000;
}
.login-wrapper .login-container .btn.for-naver {
  background-color: #03c75a;
  color: #fff;
}
.login-wrapper .login-container .btn.for-google {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #000;
}
.login-wrapper .login-container .btn.for-apple {
  background-color: #000;
  color: #fff;
}
.login-wrapper .login-container .btn img {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
}

.wrapper {
  width: 960px;
  padding: 0 1em;
  margin: 0 auto;
}
.wrapper .container {
  padding: 4em 1em;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.wrapper .container:last-child {
  border: none;
}
.wrapper .container .goto {
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #fc0;
  color: #000;
  line-height: 0;
  padding: 1rem 1rem;
  border-radius: 2rem;
}
.wrapper .container .goto span {
  display: inline-block;
  font-size: 1.25rem;
  vertical-align: middle;
  padding-left: 1em;
}
.wrapper .container .figure {
  height: 18em;
  width: auto;
  margin-top: 2em;
  margin-bottom: 1em;
}
.wrapper .container .em {
  font-weight: bold;
  color: #000;
}
.wrapper .container .em span:nth-child(1) {
  background-color: #FFD662;
}
.wrapper .container .em span:nth-child(2) {
  background-color: #FFD662;
}
.wrapper .container .em span:nth-child(3) {
  background-color: #FFD662;
}
.wrapper .container .em span:nth-child(4) {
  background-color: #FFD662;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .wrapper .container .figure {
    width: 100%;
    height: auto;
  }
}

.fixed {
  position: fixed;
  bottom: 2em;
  right: 2em;
}
.fixed .consult {
  display: inline-block;
  font-weight: bold;
  background-color: #fc0;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
}
.fixed .consult .svg {
  font-size: 1.125em;
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .fixed {
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fc0;
  }
  .fixed .consult {
    display: flex;
    justify-content: space-between;
  }
}

.cat {
  display: flex;
  gap: 0.5em;
}
.cat .block {
  flex: 1 1 0;
  text-align: left;
  background-color: #f4f4f4;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}
.cat .block .title {
  font-size: 1.125em;
  font-weight: bold;
}
.cat .block .title span {
  display: block;
  margin-top: 0.25em;
}
.cat .block .dv {
  display: inline-block;
  height: 3px;
  width: 2rem;
  background-color: #000;
}
.cat .block p {
  font-size: 0.875em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .cat {
    flex-direction: column;
  }
  .cat .block .title span {
    display: inline;
  }
  .cat .block .dv {
    display: none;
  }
}

.sub {
  font-size: 1.5em !important;
}
.sub + .cat .block {
  padding: 1.25em 0.875em;
}
.sub + .cat .block .title {
  font-size: 1em;
}
.sub + .cat .block .dv {
  width: 1.5em;
}

.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 4em;
  background-color: #fff;
}
.fixed-header a {
  color: #000;
}
.fixed-header + .chat {
  padding-top: 5em;
}
.fixed-header + .survey {
  padding-top: 5em;
  padding-bottom: 5em;
}

.header {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  height: 4em;
}
.header .title {
  font-size: 1.25em;
  font-weight: bold;
}

.chat, .survey, .delete {
  max-width: 960px;
  padding: 1em;
  margin: 0 auto;
}

.survey .btn {
  position: fixed;
  bottom: 1em;
  left: 1em;
  right: 1em;
}

.delete .additional {
  padding-left: 1.5em;
  width: 100%;
}
.delete .additional textarea {
  margin-top: 0.5em;
  width: 100%;
  resize: none;
}
.delete span {
  font-size: 0.875em;
  display: block;
  color: #666;
  margin-top: 0.25em;
}
.delete ul {
  margin: 0;
  padding: 0;
  margin: 1em 0;
}
.delete ul li {
  margin-top: 0.5em;
}

.bubble {
  background-repeat: no-repeat;
  margin-bottom: 0.25em;
}
.bubble .contents {
  display: inline-block;
  border-radius: 1em;
  padding: 0.5em 1em;
  max-width: 80%;
}
.bubble .contents span {
  display: block;
  font-size: 0.75em;
  font-weight: bold;
}
.bubble.ai {
  background-image: url("../images/bub-ai.png");
  background-position: bottom left;
}
.bubble.ai .contents {
  background-color: #eee;
}
.bubble.ai .contents.selector {
  padding: 0;
}
.bubble.ai .contents.selector .option {
  padding: 0.75em 1.25em;
  border-top: 1px solid #fff;
  cursor: pointer;
}
.bubble.ai .contents.selector .option:hover, .bubble.ai .contents.selector .option:active {
  text-decoration: underline;
}
.bubble.ai .contents.selector .option:first-child {
  border: none;
}
.bubble.ai + .me {
  margin-top: 1em;
}
.bubble.me {
  text-align: right;
  background-image: url("../images/bub-me.png");
  background-position: bottom right;
  background-size: 1em;
}
.bubble.me .contents {
  background-color: #FFC931;
}
.bubble.me .contents.selector {
  padding: 0;
}
.bubble.me .contents.selector .option {
  padding: 0.75em 1.25em;
  border-top: 1px solid #fff;
  cursor: pointer;
}
.bubble.me .contents.selector .option:hover, .bubble.me .contents.selector .option:active {
  text-decoration: underline;
}
.bubble.me .contents.selector .option:first-child {
  border: none;
}
.bubble.me + .ai {
  margin-top: 1em;
}

ol {
  padding: 0 1em;
}
ol > li {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 1em 0;
}
ol > li .answer {
  margin-top: 0.5em;
}
ol > li:last-child {
  border: none;
}
ol ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.answer {
  list-style: none;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
}
.answer li {
  margin-bottom: 0.5em;
}
.answer li::marker {
  display: none;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #000;
  position: relative;
}
.video-wrapper #video-agent {
  background-color: #555;
}
.video-wrapper .video-control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5em;
  z-index: 999999;
}

.agreement {
  padding: 3em 1em;
  max-width: 640px;
  margin: 0 auto;
}
.agreement label {
  cursor: pointer;
}
.agreement .block {
  margin-bottom: 1em;
  display: flex;
}
.agreement .spacer {
  height: 1em;
}
.agreement .btn {
  margin-top: 2em;
}
.agreement a {
  color: #888;
  display: inline-block;
  margin-left: auto;
}

#nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
#nav .logo {
  width: 10em;
  height: 3em;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
@media screen and (max-width: 767px) {
  #nav .logo {
    width: 8em;
  }
}
#nav .menu .item {
  display: inline-block;
  background-color: transparent;
  color: #000;
  padding: 0.5em 1em;
  border-radius: 1.5em;
  font-weight: bold;
}
#nav .menu .item.mypage {
  background-color: #000;
  color: #fff;
}

#footer {
  color: #888;
  background-color: #f4f4f4;
  font-size: 0.75em;
}
#footer .container {
  max-width: 960px;
  padding: 3rem 1rem;
  padding-bottom: 9rem;
  margin: 0 auto;
  text-align: center;
}
#footer .container a {
  color: inherit;
  margin: 0 0.5em;
}

select {
  background-image: url("../../images/chevron-down.svg");
  background-position: center right 0.25em;
  background-repeat: no-repeat;
  background-size: 0.875em;
  padding-right: 1.5em !important;
}

.form, .btn {
  border: 1px solid transparent;
  border-radius: 0.25em;
  box-sizing: border-box;
  min-height: 2.5em;
  padding: 0.5em;
  padding-left: 0.6875em;
  padding-right: 0.6875em;
  transition: all 0.2s;
}

.form {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 1em;
}
.form:focus {
  outline: none;
  border: 1px solid #ffcc00;
}
.form:focus + .form {
  border-left-color: #ffcc00;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffcc00;
  color: #000;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}
.btn:hover {
  background-color: #b38f00;
}
.btn + .btn {
  margin-top: 0.25em;
}
.btn.btn-icon {
  width: 2.5em;
  height: 2.5em;
}
.btn.btn-icon svg {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2;
}
.btn.btn-deactive {
  background-color: #eee !important;
  color: #ccc !important;
  cursor: default;
}
.btn.btn-deactive:hover {
  background-color: #eee;
  color: #ccc;
}
.btn.btn-sub {
  background-color: #acacac;
  color: #fff;
}
.btn.btn-sub:hover {
  background-color: #868686;
}
.btn.btn-text {
  background-color: transparent;
  color: #ffcc00;
}
.btn.btn-text:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #e6b800;
}
.btn.btn-text.btn-deactive {
  background-color: transparent !important;
  color: #ccc;
  box-shadow: none;
}
.btn.btn-text.btn-sub {
  color: #777;
}
.btn.btn-text.btn-sub:hover {
  color: #000;
}
.btn.btn-outlined {
  background-color: transparent;
  border-color: #ffcc00;
  color: #ffcc00;
}
.btn.btn-outlined:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #e6b800;
}
.btn.btn-outlined.btn-deactive {
  background-color: transparent !important;
  color: #ccc;
  box-shadow: none;
}
.btn.btn-outlined.btn-sub {
  color: #777;
}
.btn.btn-outlined.btn-sub:hover {
  color: #000;
}
.btn.btn-round {
  border-radius: 1.25em;
}
.btn .svg svg {
  stroke-width: 2.5;
}
.btn .svg + span {
  margin-left: 0.5em;
}

.compact-forms .btn,
.compact-forms .form,
.btn-compact,
.form-compact {
  min-height: 2em;
  height: auto;
  padding: 0.25em;
  padding-left: 0.4375em;
  padding-right: 0.4375em;
}

.large-forms .btn,
.btn-large {
  font-size: 1.25rem;
}

.small-forms .btn,
.btn-small {
  font-size: 0.875rem;
}

.smaller-forms .btn,
.btn-smaller {
  font-size: 0.75rem;
}

.smallest-forms .btn,
.btn-smallest {
  font-size: 0.625rem;
}

.form-wrapper {
  display: flex;
  align-items: center;
}
.form-wrapper .form-container {
  margin-left: 0.25em;
  margin-top: 0.125em;
  margin-bottom: 0.125em;
}
.form-wrapper .form-container:first-child {
  margin-left: 0 !important;
}
.form-wrapper .form-container.grouped::after {
  display: block;
  content: "";
  clear: both;
}
.form-wrapper .form-container.grouped .btn, .form-wrapper .form-container.grouped .form {
  float: left;
  border-radius: 0;
}
.form-wrapper .form-container.grouped .btn:first-child, .form-wrapper .form-container.grouped .form:first-child {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.form-wrapper .form-container.grouped .btn:last-child, .form-wrapper .form-container.grouped .form:last-child {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.form-wrapper .form-container.grouped .btn + .btn {
  margin-left: 1px;
}
.form-wrapper .form-container.grouped .form {
  border-right: none;
}
.form-wrapper .form-container.grouped .form:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.form-wrapper .form-container.grouped .form:last-child:focus {
  border-right-color: #ffcc00;
}
.form-wrapper .btn-spacing {
  flex: 1 1 auto;
}
.form-wrapper.inline-flex {
  display: inline-flex;
}
.form-wrapper.evenly {
  width: 100%;
}
.form-wrapper.evenly .form-container {
  flex: 1 1 0;
}
.form-wrapper.evenly .form-container.custom-width {
  flex: 0 1 auto;
}
.form-wrapper.rounded .btn, .form-wrapper.rounded .form {
  border-radius: 1.25em;
}
.form-wrapper.rounded .grouped .btn:first-child, .form-wrapper.rounded .grouped .form:first-child {
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
  padding-left: 1.125em;
}
.form-wrapper.rounded .grouped .btn:last-child, .form-wrapper.rounded .grouped .form:last-child {
  border-top-right-radius: 1.25em;
  border-bottom-right-radius: 1.25em;
  padding-right: 1.125em;
}
.form-wrapper.grouped .form-container {
  margin-left: 1px;
}
.form-wrapper.grouped .form-container .btn, .form-wrapper.grouped .form-container .form {
  border-radius: 0;
}
.form-wrapper.grouped .form-container:first-child .btn, .form-wrapper.grouped .form-container:first-child .form {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.form-wrapper.grouped .form-container:last-child .btn, .form-wrapper.grouped .form-container:last-child .form {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}

.ta-container {
  margin: 0 1.375em;
}

textarea {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  resize: none;
  margin: 0.5em 0;
  width: 100%;
}
textarea.form {
  border-color: #ccc;
}

.loading-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.loading-wrapper p {
  color: #eee;
  font-size: 0.875em;
  padding: 0 1em;
}

.loading-container {
  font-size: 4em;
  width: 1em;
  height: 1em;
  display: inline-block;
  overflow: hidden;
  background-color: transparent;
  vertical-align: middle;
}
.loading-container span {
  display: block;
}

.loading-spinner {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}

.spinner-object {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border: 0.125em solid #ffcc00;
  border-top-color: transparent !important;
  border-radius: 50%;
  animation: spinning 1s linear infinite;
  top: 0.5em;
  left: 0.5em;
  box-sizing: content-box;
}

@keyframes spinning {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.comp-modal {
  display: none;
}
.comp-modal.show-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  animation: modalFadeIn 0.2s ease-out forwards;
  opacity: 0;
  padding-top: 2em;
}
.comp-modal .modal-wrapper {
  overflow-x: hidden;
  min-width: 290px;
  max-width: 960px;
}
.comp-modal .modal-wrapper .modal-container {
  box-shadow: 0 0.25em 0.5em 0px rgba(0, 0, 0, 0.3);
  background-color: rgb(255, 255, 255);
  border-radius: 1em;
  margin: 0.5em;
  margin-bottom: 1em;
}
.comp-modal .modal-wrapper .modal-container .modal-header, .comp-modal .modal-wrapper .modal-container .modal-footer {
  padding: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-header {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  line-height: 0;
}
.comp-modal .modal-wrapper .modal-container .modal-header .title {
  flex: 1 1 auto;
  font-weight: bold;
  padding-left: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-header .btn-close {
  padding: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-body {
  padding: 1em;
}
.comp-modal .modal-wrapper .modal-container .modal-footer {
  border-top: 1px solid #eeeeee;
  line-height: 0;
}
.comp-modal .modal-wrapper .modal-container .modal-footer .form-container {
  margin: 0;
}
.comp-modal .modal-wrapper .modal-container .modal-footer .btn {
  border-radius: 0.5em;
}

@keyframes modalFadeIn {
  100% {
    opacity: 1;
    padding-top: 0;
  }
}/*# sourceMappingURL=style.css.map */