@charset "utf-8";

/* setting */
body {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background-color: #222; /* 임시 확인용 배경컬러, 최종단계에서 삭제예정*/
}
.wrap {
  padding-bottom: calc(6.25em + 3.75em);
  background-color: #fff;
  min-height: 100vh;
  position: relative;
}
.sub {
    padding-bottom: 0;
}
.wrap.no-footer {
  padding-bottom: 3.75em;
}
.wrap.no-footer .sec-footer {
  display: none;
}
.wrap.no-header .sec-header {
  display: none;
}
.wrap.no-pb {
  padding-bottom: 0;
}
.inner {
  padding-left: 5%;
  padding-right: 5%;
}
.inner .bottom-btn-area {
  padding-left: 0;
  padding-right: 0;
}
.point-color1 {
  color: #fa9200 !important;
  vertical-align: inherit;
  margin-top:-3px;
}
.flex-box {
  display: flex;
}
.p-0 {
  padding: 0 !important;
}

/* input.. */
.form-group {
  position: relative;
}
.form-group .frm-input {
  padding-right: 10rem;
}
.form-group .frm-input::-ms-clear {
  display: none;
}
.form-group.clear-hidden .frm-input {
  padding-right: 1.11em;
}
.form-group.clear-hidden .frm-input-clear {
  display: none;
}
.frm-input {
  border: 1px solid #ddd;
  width: 100%;
  height: 4.22em;
  font-size: 2.7rem;
  padding: 0 1.11em;
  color: #222;
  letter-spacing: -0.03em;
}
.frm-input::placeholder {
  color: rgba(34, 34, 34, 0.5);
}
.frm-input:focus {
  border-color: #fa9200;
  box-shadow: inset 0 0 0 1px #fa9200;
  outline: none;
}
.frm-input:disabled {
  background-color: #e7e7e7;
  color: rgba(34, 34, 34, 0.5);
}
textarea.frm-input {
  height: 16.33em;
  padding: 1.11em;
}
.frm-input-clear {
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #f6f6f6;
  cursor: pointer;
}
.file-input-box {
  position: relative;
  width: 100%;
  padding-right: 9.52em;
  font-size: 2.1rem;
}
.file-input-box button {
  position: absolute;
  right: 0;
  top: 0;
  width: 9.52em;
  height: 100%;
  background-color: #383838;
  border: 1px solid #383838;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: -0.03em;
}
.file-input-box .file-text {
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 1.111em;
  width: 100%;
  background-color: #fff;
  height: 4.22em;
  line-height: 4.22em;
  font-size: 2.7rem;
  padding: 0 1.11em;
  color: #222;
  letter-spacing: -0.03em;
}
.file-bottom-note {
  margin-top: 3rem;
}
.file-bottom-note p {
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1.428;
}
.file-bottom-note p:nth-child(n + 2) {
  margin-top: 1rem;
}
.date-input-box {
  position: relative;
  width: 100%;
}
.date-input-box .ui-datepicker-trigger {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 8.63em;
  height: 100%;
  vertical-align: middle;
  cursor: pointer;
}
.date-input-box button {
  position: absolute;
  right: 0;
  top: 0;
  width: 13.8rem;
  height: 100%;
  background-color: #383838;
  border: 1px solid #383838;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: -0.03em;
}
.date-input-box button .ico {
  width: 5.5rem;
}
.date-input-box button img {
  vertical-align: middle;
}
.date-input-box .date-text {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 1.111em;
  width: 100%;
  background-color: #fff;
  height: 4.22em;
  padding: 0 1.11em;
}

/* popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  max-width: 720px;
}
.popup .dim {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.popup .close-btn-wrap {
  text-align: center;
  margin-top: 3em;
}
.popup .privacy-close-btn,
.popup .event-close-btn {
  width: 3.75em;
  height: 3.75em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popup.show {
  display: block;
}
.popup .popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 6.25em;
}
.popup .popup-cont {
  background-color: #fff;
  height: calc(90% - 7.5em);
  overflow-y: auto;
}
.popup .popup-cont::-webkit-scrollbar {
  width: 4px;
}
.popup .popup-title {
  font-size: 3.3rem;
  text-align: center;
  font-weight: 600;
  color: #383838;
  padding: 1.21em 0;
  border-bottom: 1px solid #ddd;
}

/* radio + checkbox */
.ck-box {
  display: inline-block;
  position: relative;
  font-size: 2.4rem;
  color: #222;
  font-weight: 400;
}
.ck-box .checkbox {
  background: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ck-box.has-link .checkbox {
  width: 3em;
  height: 3em;
}
.ck-box .checkbox + label {
  position: relative;
  display: inline-block;
  z-index: 5;
  padding-left: 2.29em;
  color: #080808;
}
.ck-box .checkbox + label::before {
  content: "";
  display: inline-block;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.63em;
  height: 1.63em;
  border: 1px solid #ddd;
  background: #fff;
}
.ck-box .checkbox + label::after {
  content: "";
  display: inline-block;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 0.7rem;
  transform: translateY(-50%);
  width: 1.04em;
  height: 0.63em;
}
.ck-box .checkbox + label a {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.ck-box .checkbox + label a::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fa9200;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ck-box .checkbox:checked + label::before {
  border: 1px solid #fa9200;
}
.ck-box .checkbox:checked + label::after {
  background: url("/application/images/ico-input-check.png") no-repeat center /
    contain;
}
.ck-box .checkbox:checked + label {
  color: #080808;
}
.ck-box .radio {
  background: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ck-box .radio + label {
  position: relative;
  display: inline-block;
  z-index: 5;
  padding-left: 2.29em;
  color: #080808;
}
.ck-box .radio + label::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.63em;
  height: 1.63em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
}
.ck-box .radio + label a {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.ck-box .radio:checked + label::before {
  border: 0.42em solid #fa9200;
}

/* title */
.sub-tit {
  padding: 3rem 5%;
  color: #373935;
  line-height: 1;
}
.sub-tit h2 {
  font-size: 4.2rem;
  font-weight: 800;
}
.sub-tit h2.ta-center {
  text-align: center;
}
.sub-tit h3 {
  font-size: 4.2rem;
  font-weight: 600;
}
.sub-tit .desc {
  color: #666;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  line-height: 1.42;
  margin-top: 2.14em;
}
.sub-tit .req {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f6a800;
  vertical-align: text-top;
  margin-left: 0.2rem;
}
.sub-enterprise .tab-cont .inner {
    padding-bottom: calc(6.25em + 3.75em);
}
.sec-title {
  display: flex;
  align-items: center;
}
.sec-title .number {
  background-color: #fa9200;
  color: #fff;
  width: 2.44em;
  height: 2.44em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.94em;
  flex-shrink: 0;
}
.sec-title h3 {
  font-size: 3rem;
  color: #383838;
}
.sec-title h4 {
  font-size: 2.4rem;
  color: #383838;
  font-weight: 500;
}
.sec-title-desc {
  font-size: 2.1rem;
  line-height: 1.428;
  margin-top: 2.2rem;
}
.sec-title.type-bull h3 {
  position: relative;
  padding-left: 0.83em;
}
.sec-title.type-bull h3::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background-color: #fa9200;
}
.sec-title.type-bull h4 {
  position: relative;
  padding-left: 15px;
}
.sec-title.type-bull h4::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background-color: #fa9200;
}

/* section */
.sub-section {
  padding: 2.5em 0;
  border-top: 1px solid #e4e4e4;
}
.sub-network .sub-section .bottom-btn-area {
    padding-bottom: 0;
}
/* .sub-section .cont {
    margin-bottom: calc(6.25em + 3.75em)
} */
.sub-section.no-border {
  border-top: none;
}
.sub-section.no-pt {
  padding-top: 0;
}
.sub-section.no-pb {
  padding-bottom: 0;
}

/* bullet list */
.bullet-list {
  margin-top: 1.5em;
}
.bullet-list li {
  font-size: 2.2rem;
  color: #666666;
  position: relative;
  margin-bottom: 0.83em;
  padding-left: 0.83em;
  line-height: 1;
}
.bullet-list li::before {
  display: inline-block;
  content: "";
  width: 0.33em;
  height: 0.33em;
  background-color: #fa9200;
  border-radius: 50%;
  position: absolute;
  top: 0.31em;
  left: 0;
}

/* order list */
.order-list {
  counter-reset: number 0;
}
.order-list li {
  font-size: 2.1rem;
  position: relative;
  margin-bottom: 0.71em;
  display: flex;
  padding: 0.14em 0;
  letter-spacing: -0.03em;
}
.order-list li::before {
  counter-increment: number 1;
  content: "0" counter(number);
  width: 2.33em;
  height: 2.33em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedede;
  margin-right: 0.83em;
  flex-shrink: 0;
  margin-top: -0.33em;
  font-size: 1.8rem;
}
.order-list li > .bull {
  color: #fa9200;
  font-weight: 900;
  vertical-align: top;
  margin-top: -1px;
  width: 1.5rem;
  flex-shrink: 0;
}
.order-list.type-color li:last-child {
  margin-bottom: 0;
}
.order-list.type-color li::before {
  border: none;
  background-color: #fa9200;
  color: #fff;
}

/* mobile swipe */
.mobile-swipe-info {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 2.5em;
}
.mobile-swipe-info .icon {
  width: 3.75em;
  height: 3.75em;
  margin-right: 1.56em;
  flex-shrink: 0;
}
.mobile-swipe-info .text {
  font-size: 2.1rem;
}
.mobile-swipe-cont {
  overflow-x: scroll;
}
.mobile-swipe-cont::-webkit-scrollbar {
  height: 0.3rem;
}
.mobile-swipe-cont .graff-box,
.mobile-swipe-cont .table-box {
  min-width: 75em;
  width: 100%;
  padding-bottom: 1.88em;
}

/* table */
.table-title {
  margin: 1.25em 0;
  display: flex;
  align-items: center;
}
.table-title::before {
  display: inline-block;
  content: "";
  width: 0.94em;
  height: 0.19em;
  background-color: #fa9200;
  margin-right: 0.63em;
}
.table-title h3 {
  font-size: 2.4rem;
  color: #383838;
}
.table-title h3 small {
  font-size: 1.8rem;
  color: #666;
  vertical-align: middle;
  font-weight: 400;
}
.table-style01 table {
  border-top: 3px solid #fa9200;
  border-bottom: 1px solid #ddd;
}
.table-style01 th {
  background-color: #f7f7f7;
  font-size: 2.1rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.03em;
  border-right: 1px solid #ddd;
  padding: 0.8em 1.11em;
}
.table-style01 td {
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0.71em;
  text-align: center;
}
.table-style01 th:last-child,
.table-style01 td:last-child {
  border-right: none;
}
.table-style01 .border-top {
  border-top: 1px solid #ddd !important;
}
.table-style01 th.border-bottom {
  border-bottom: 1px solid #ddd;
}
.table-style01 .border-right {
  border-right: 1px solid #ddd !important;
}
.table-style01 td:first-child {
  text-align: left;
}
.table-style01 .text-align-left {
  text-align: left;
}

/* splash */
.splash-wrap .text,
.splash-wrap .logo-box {
  opacity: 0;
  font-weight: 500;
  color: #383838;
  letter-spacing: -0.03em;
  width: 100%;
}
.splash-wrap {
  width: 100%;
  max-width: 720px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 999;
  animation: fadeOut 1s 4s ease-in-out forwards;
}
.splash-wrap.no-fadeOut {
  animation: none;
}
.splash-sec {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.splash-sec01 .text {
  animation: fadeInOut 1.2s ease-in-out forwards;
  font-size: 6rem;
}
.splash-sec02 .text {
  font-size: 3.9rem;
}
.splash-sec02 .text,
.splash-sec02 .logo-box {
  animation: fadeInOut 1.6s 1.2s ease-in-out forwards;
}
.splash-sec03 .logo-box {
  animation: fadeIn 0.5s 2.8s ease-in-out forwards;
}
.splash-wrap .logo01 {
  width: 18.75em;
  height: 8.25em;
}
.splash-wrap .logo02 {
  width: 18.75em;
  height: 2.44em;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* header */
.fix-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 3;
}
.sec-header {
  padding: 0.94em 5%;
  padding-top: calc(constant(safe-area-inset-top) + 0.94em);
  padding-top: calc(env(safe-area-inset-top) + 0.94em);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.sec-header .logo {
  width: 8.44em;
  display: flex;
}
.sec-header .hd-right a {
  margin-left: 1.88em;
}
.sec-header .hd-right a:first-child {
  margin-left: 0;
}
.sec-header .ico-search {
  width: 2.5em;
  height: 2.5em;
  display: inline-block;
  background: url("/application/images/ico-search.png") no-repeat center center /
    contain;
  position: relative;
}
.sec-header .ico-alarm {
  width: 2.38em;
  height: 2.63em;
  display: inline-block;
  background: url("/application/images/ico-alarm.png") no-repeat center center /
    contain;
  position: relative;
}
.sec-header .ico-alarm.on:after {
  content: "";
  width: 0.63em;
  height: 0.63em;
  border-radius: 50%;
  background: #fe4841;
  position: absolute;
  right: -0.38em;
  top: -0.38em;
}

/* contents header */
.cont-header {
  padding: 0.94em 5%;
  padding-top: calc(constant(safe-area-inset-top) + 0.94em);
  padding-top: calc(env(safe-area-inset-top) + 0.94em);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  justify-content: center;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}
.cont-header h1 {
  display: inline-block;
  font-size: 3.3rem;
  font-weight: 600;
  color: #373935;
}
.cont-header .back {
  display: inline-flex;
  align-items: center;
  height: 3.5rem;
  font-size: 3.5rem;
}
.cont-header .ico-alarm {
  width: 2.38em;
  height: 2.63em;
  display: inline-block;
  background: url("/application/images/ico-alarm.png") no-repeat center center /
    contain;
  position: relative;
}
.cont-header:not(.type-between) .back {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.cont-header.type-between {
  justify-content: space-between;
}
.cont-header.type-between .hd-left {
  display: inline-flex;
  align-items: center;
}
.cont-header.type-between .back {
  margin-right: 0.42em;
}

/* footer */
.footer-copy {
  font-size: 2.1rem;
  color: #888;
  font-weight: 300;
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  text-align: center;
}
.footer-cont {
  margin-top: 5.63em;
  padding-top: 3.13em;
  padding-bottom: 3.75em;
  background-color: #f7f7f7;
}
.footer-cont .link {
  display: flex;
}
.footer-cont .link a {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.footer-cont .link a::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 0.29em;
  height: 0.29em;
  border-radius: 50%;
  background-color: #aaa;
  margin: 0 0.76em;
}
.footer-cont .link a:last-child::after {
  display: none;
}
.footer-cont .address {
  font-size: 2.1rem;
  color: #373935;
  margin-top: 1.67em;
}
.footer-cont .tel {
  display: flex;
}
.footer-cont .tel span {
  display: inline-block;
  font-size: 2.1rem;
  color: #373935;
}
.footer-cont .tel span::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 0.29em;
  height: 0.29em;
  border-radius: 50%;
  background-color: #aaa;
  margin: 0 0.76em;
}
.footer-cont .tel span:last-child::after {
  display: none;
}
.footer-cont .copy {
  font-size: 2.1rem;
  color: #888;
  font-weight: 300;
  margin-top: 1.11em;
}
.footer-tab-bar {
  z-index: 10;
  width: 100%;
  max-width: 720px;
  height: 6.25em;
  display: flex;
  padding-top: 0.94em;
  padding-bottom: 0.94em;
  padding-bottom: calc(constant(safe-area-inset-bottom) + 0.94em);
  padding-bottom: calc(env(safe-area-inset-bottom) + 0.94em);
  background-color: #fff;
  box-shadow: 0px 0px 14.7px 0.3px rgba(0, 0, 0, 0.07);
  position: fixed;
  bottom: 0;
}
.footer-tab-bar li {
  width: 25%;
  text-align: center;
}
.footer-tab-bar li a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.footer-tab-bar li .ico {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-tab-bar li .ico-home {
  background-image: url(/application/images/ico-home.png);
  width: 2.19em;
  height: 2.31em;
}
.footer-tab-bar li .ico-comment {
  background-image: url(/application/images/ico-comment.png);
  width: 2.06em;
  height: 2.31em;
}
.footer-tab-bar li .ico-user {
  background-image: url(/application/images/ico-user.png);
  width: 1.88em;
  height: 2.31em;
}
.footer-tab-bar li .ico-menu {
  background-image: url(/application/images/ico-menu.png);
  width: 2.25em;
  height: 2.9rem;
}
.footer-tab-bar li .text {
  font-size: 2.1rem;
  color: #383838;
  margin-top: 0.24em;
  line-height: 1;
}
.footer-tab-bar li.active .ico-home {
  background-image: url(/application/images/ico-home-color.png);
}
.footer-tab-bar li.active .ico-comment {
  background-image: url(/application/images/ico-comment-color.png);
}
.footer-tab-bar li.active .text {
  color: #fa9200;
}

/* fullmenu */
.fullmenu-wrap {
  position: fixed;
  width: 100%;
  max-width: 720px;
  height: 100vh;
  top: 0;
  background-color: #fff;
  z-index: 11;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.fullmenu-wrap.active {
  display: flex;
}
.fullmenu-header {
  background-color: #fa9200;
  padding: 1.88em 0 1.88em 1.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fullmenu-header .title {
  font-size: 3.3rem;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.fullmenu-header .title .fullmenu-close-btn {
  margin-right: 1rem;
}
.fullmenu-header .title .fullmenu-close-btn i {
  color: #fff;
  font-size: 4.4rem;
  vertical-align: middle;
  margin-top: --0.7rem;
}
.fullmenu-header .title .text {
  font-size: 3.3rem;
  font-weight: 600;
}
.fullmenu-header .util a {
  position: relative;
  display: inline-block;
  margin-right: 1.88em;
}
.fullmenu-header .util a.on:after {
  content: "";
  width: 0.63em;
  height: 0.63em;
  border-radius: 50%;
  background: #fe4841;
  position: absolute;
  right: -0.38em;
  top: -0.38em;
}
.fullmenu-header .util .ico-search {
  width: 2.5em;
  height: 2.5em;
}
.fullmenu-header .util .ico-user {
  width: 2.13em;
  height: 2.69em;
}
.fullmenu-header .util .ico-alarm {
  width: 2.38em;
  height: 2.63em;
}
.fullmenu-cont {
  /* display: flex;  */
  height: 100%;
  overflow: auto;
  padding: 2.81em;
}
.fullmenu-cont .row {
  margin-bottom: 5em;
}
.fullmenu-cont .row:last-child {
  margin-bottom: 2.5em;
}
.fullmenu-cont .row .title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.88em;
  display: flex;
  align-items: center;
}
.fullmenu-cont .row .title .icon-box {
  padding-right: 0.94em;
  width: 4.06em;
  flex-shrink: 0;
}
.fullmenu-cont .row .title .icon {
  display: inline-block;
}
.fullmenu-cont .row .title .icon01 {
  width: 2.38em;
  height: 2.81em;
}
.fullmenu-cont .row .title .icon02 {
  width: 2.81em;
  height: 2.81em;
}
.fullmenu-cont .row .title .icon03 {
  width: 2.81em;
  height: 2.06em;
}
.fullmenu-cont .row .title .icon04 {
  width: 2.81em;
  height: 2.81em;
}
.fullmenu-cont .row .title .icon05 {
  width: 2.81em;
  height: 2.31em;
}
.fullmenu-cont .row .title .icon06 {
  width: 2.5em;
  height: 2.81em;
}
.fullmenu-cont .row .title .text {
  font-size: 3rem;
  color: #373935;
  font-weight: 600;
}
.fullmenu-cont .row .link {
  display: flex;
  flex-wrap: wrap;
}
.fullmenu-cont .row .link a {
  width: 50%;
  font-size: 2.1rem;
  color: #373935;
  margin-top: 1.19em;
  padding-right: 0.95em;
}
.fullmenu-cont .left-tab {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #f7f7f7;
}
.fullmenu-cont .left-tab li {
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  background-color: #f7f7f7;
  padding: 1.25em;
  text-align: center;
}
.fullmenu-cont .left-tab li:first-child {
  border-top: none;
}
.fullmenu-cont .left-tab li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fullmenu-cont .left-tab li a .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 6.38em;
  height: 6.38em;
  padding: 1.33em;
  border-radius: 50%;
}
.fullmenu-cont .left-tab li a .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab01 {
  background-image: url(/application/images/ico-fullmenu-tab01.png);
  width: 2.88em;
  height: 3.38em;
  margin-right: -0.1em;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab02 {
  background-image: url(/application/images/ico-fullmenu-tab02.png);
  width: 3.38em;
  height: 3.38em;
  margin-right: -0.4em;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab03 {
  background-image: url(/application/images/ico-fullmenu-tab03.png);
  width: 3.38em;
  height: 2.5em;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab04 {
  background-image: url(/application/images/ico-fullmenu-tab04.png);
  width: 3.25em;
  height: 3.31em;
  margin-right: -0.3em;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab05 {
  background-image: url(/application/images/ico-fullmenu-tab05.png);
  width: 3.38em;
  height: 2.81em;
}
.fullmenu-cont .left-tab li a .ico-fullmenu-tab06 {
  background-image: url(/application/images/ico-fullmenu-tab06.png);
  width: 3.06em;
  height: 3.38em;
}
.fullmenu-cont .left-tab li a .text {
  opacity: 0.5;
  margin-top: 0.63em;
  font-size: 2.4rem;
  font-weight: 500;
}
.fullmenu-cont .left-tab li.active {
  background-color: #fff;
  border-right-color: #fff;
}
.fullmenu-cont .left-tab li.active .icon-box {
  background-color: #f7f7f7;
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab01 {
  background-image: url(/application/images/ico-fullmenu-tab01-active.png);
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab02 {
  background-image: url(/application/images/ico-fullmenu-tab02-active.png);
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab03 {
  background-image: url(/application/images/ico-fullmenu-tab03-active.png);
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab04 {
  background-image: url(/application/images/ico-fullmenu-tab04-active.png);
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab05 {
  background-image: url(/application/images/ico-fullmenu-tab05-active.png);
}
.fullmenu-cont .left-tab li.active a .ico-fullmenu-tab06 {
  background-image: url(/application/images/ico-fullmenu-tab06-active.png);
}
.fullmenu-cont .left-tab li.active a .text {
  opacity: 1;
}
.fullmenu-cont .right-cont-wrap {
  width: 100%;
}
.fullmenu-cont .right-cont {
  background-color: #fff;
  padding: 2.5em;
}
.fullmenu-cont .right-cont:not(.active) {
  display: none;
}
.fullmenu-cont .right-cont li {
  border-bottom: 1px solid #ddd;
  padding: 1.56em 0;
}
.fullmenu-cont .right-cont li a {
  display: block;
  font-size: 2.4rem;
  color: #373935;
}
.fullmenu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  padding: 1.56em 5%;
  box-shadow: 0px 0px 14.7px 0.3px rgba(0, 0, 0, 0.07);
}
.fullmenu-footer .version {
  font-size: 2.2rem;
  color: #888;
  font-weight: 300;
}
.fullmenu-footer .sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #dedede;
  border-radius: 50%;
  width: 4.5em;
  height: 4.5em;
}
.fullmenu-footer .sns a + a {
  margin-left: 1.88em;
}
.fullmenu-footer .sns a .ico-facebook {
  width: 0.88em;
  height: 1.69em;
}
.fullmenu-footer .sns a .ico-youtube {
  width: 1.69em;
  height: 1.25em;
}

/* comment */
.comment-wrap {
  display: none;
  position: relative;
  position: fixed;
  width: 100%;
  max-width: 720px;
  height: 100vh;
  bottom: 6.25em;
  flex-direction: column;
  z-index: 9;
  height: 100%;
  justify-content: flex-end;
}
.comment-wrap.show {
  display: flex;
}
.comment-wrap .dim {
  background-color: rgba(34, 34, 34, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.comment-box {
  background-color: #f7f7f7;
  width: 100%;
  padding-top: 3.75em;
  padding-bottom: 5em;
}
.comment-box .title {
  font-size: 4.5rem;
  color: #373935;
  font-weight: 700;
  line-height: 1;
}
.comment-box .title-desc {
  font-size: 2.4rem;
  color: #666;
  margin-top: 0.42em;
}
.comment-box .form-wrap {
  display: flex;
  align-items: flex-end;
  margin-top: 2.5em;
}
.comment-box .form-wrap .form-box {
  margin-right: 1.25em;
  width: 100%;
}
.comment-box .form-wrap .form-group + .form-group {
  margin-top: 1.7em;
}
.comment-box .form-wrap textarea.frm-input {
  height: 7.33em;
}
.comment-box .form-wrap .btn-box {
  flex-shrink: 0;
}
.comment-box .form-wrap .btn-box .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  background-color: #ddd;
}
.comment-box .form-wrap .btn-box .submit-btn.active {
  background-color: #fa9200;
}
.comment-box .form-wrap .btn-box .submit-btn img {
  width: 2.13em;
  margin-left: -0.25em;
}

/* search page */
.search-page .cont-header {
  background: #fa9201;
}
.search-page .cont-header::before {
  display: block;
  content: "";
  width: 100%;
  height: 7rem;
  background: #fa9201;
  position: absolute;
  top: -6rem;
  left: 0;
}
.search-page .cont-header .back i {
  color: #fff;
}
.search-word {
  margin-top: 3.75em;
}
.search-page .search-form {
  position: relative;
  margin-right: -10%;
  width: 85%;
  font-size: 2.4rem;
}
.search-page .search-form input {
  height: 3.75em;
  padding: 0 5.5em 0 0.83em;
  font-size: 2.4rem;
  font-weight: 500;
  border: 0;
  width: 100%;
  outline: none;
}
.search-page .search-form input::placeholder {
  color: rgba(34, 34, 34, 0.5);
}
.search-page .search-form .ico-search {
  position: absolute;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  width: 2.81em;
  right: 1.25em;
  top: 0;
  background: #fff;
  border: 0;
}
.search-page .search-form .ico-search i {
  vertical-align: middle;
  font-size: 4.5rem;
  color: #373935;
}
.search-page .search-form .ico-delete {
  position: absolute;
  text-align: center;
  font-size: 1.6rem;
  width: 2.81em;
  text-align: center;
  height: 100%;
  right: 5em;
  top: 0;
  background: none;
  color: #ddd;
  border: 0;
}
.search-page .search-form .ico-delete i {
  vertical-align: middle;
  font-size: 4.5rem;
}
.search-page .search-form .clear-hidden .ico-delete {
  display: none;
}
.search-page .search-word h2 {
  margin: 3rem 0 1rem;
  font-size: 2.7rem;
  font-weight: 700;
  color: #373935;
}
.search-page .search-word .word {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5.63em;
}
.search-page .search-word .word a {
  background: #f8f8f8;
  padding: 1.2rem;
  font-size: 2.4rem;
  color: #525252;
  display: inline-block;
  border-radius: 0.6rem;
  margin: 1.5rem 1.5rem 0 0;
}
.search-page .search-word .recent {
  border-top: 1px solid #e8e8e8;
  margin: 2rem 0 6rem;
}
.search-page .search-word .recent li {
  font-size: 2.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-page .search-word .recent li .text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
}
.search-page .search-word .recent li .date {
  font-size: 1.8rem;
  color: #888;
}

/* bbs custom */
.sub .boardListArea {
  width: 90%;
  padding: 0;
}
.sub .fomek-news {
    padding-bottom: calc(6.25em + 0em);
}
.sub .bbs-layout01-wrap {
    padding-bottom: calc(6.25em + 0em);
}
.sub .bbs-layout03-wrap {
    padding-bottom: calc(6.25em + 0em);
}
.bbs-layout04-wrap .listGallery {
    padding-bottom: calc(6.25em + 0em);
}
.sub .boardListArea .board-card-wrap {
    padding-bottom: calc(6.25em + 3.75em)
}
.company-news .listGallery {
    padding-bottom: calc(6.25em + 0em);
}
.fomek-news .srboardList .listGallery .colUll > ul > li:not(:first-child) .txt {
  width: 70%;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fomek-news .srboardList .listGallery .colUll > ul > li:not(:first-child) {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 16rem;
}
.fomek-news
  .srboardList
  .listGallery
  .colUll
  > ul
  > li:not(:first-child)
  .thumb {
  width: 26%;
}
.fomek-news
  .srboardList
  .listGallery
  .colUll
  > ul
  > li:not(:first-child)
  .thumb
  > a {
  padding-bottom: 100%;
}
.fomek-news
  .srboardList
  .listGallery
  .colUll
  > ul
  > li:not(:first-child)
  .content {
  display: none;
}
.fomek-news
  .srboardList
  .listGallery
  .colUll
  > ul
  > li:not(:first-child)
  .title
  > a {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.5rem;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.fomek-news.no-main-type .srboardList .listGallery .colUll > ul > li .txt {
  width: 70%;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fomek-news.no-main-type .srboardList .listGallery .colUll > ul > li {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-height: 16rem;
}
.fomek-news.no-main-type .srboardList .listGallery .colUll > ul > li .thumb {
  width: 26%;
}
.fomek-news.no-main-type
  .srboardList
  .listGallery
  .colUll
  > ul
  > li
  .thumb
  > a {
  padding-bottom: 100%;
}
.fomek-news.no-main-type .srboardList .listGallery .colUll > ul > li .content {
  display: none;
}
.fomek-news.no-main-type
  .srboardList
  .listGallery
  .colUll
  > ul
  > li
  .title
  > a {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.5rem;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

/* bbs custom1 */
.bbs-layout01-wrap .srboardList .listGallery .colUll > ul > li .txt {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bbs-layout01-wrap .srboardList .listGallery .colUll > ul > li .thumb a {
  padding-bottom: 0;
  height: 1.6em;
  border-radius: 0;
}
.bbs-layout01-wrap .srboardList .listGallery .colUll > ul > li .thumb img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.bbs-layout01-wrap .srboardList .listGallery .colUll > ul > li .content {
  display: none;
}
.bbs-layout01-wrap .srboardList .listGallery .colUll > ul > li .title > a {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.5rem;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
}

/* bbs custom2 */
.company-news .srboardList .listGallery .colUll > ul > li .content {
  display: none;
}
.company-news .srboardList .listGallery .colUll > ul > li .txt {
  display: flex;
  flex-direction: column;
  padding: 2.5em 0 0;
}
.company-news .srboardList .listGallery .colUll > ul > li .txt .title > a {
  font-size: 3rem;
  margin-bottom: 0;
}
.company-news .srboardList .listGallery .colUll > ul > li .txt .category {
  font-size: 2.4rem;
  color: #fa9200;
  font-weight: 700;
  margin-bottom: 0.1em;
}
.company-news .srboardList .listGallery .colUll > ul > li .date {
  margin-top: 0.95em;
}
.company-news .srboardList .listGallery .colUll > ul > li {
  padding: 3.75em 0 2.5em 0;
}

/* bbs custom3 */
.bbs-layout03-wrap .srboardList .listGallery .colUll > ul > li .title > a {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* bbs custom4 - 특별보고 .. */
.bbs-layout04-wrap .srboardList .listGallery .colUll > ul > li .title > a {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
}
.bbs-layout04-wrap .srboardList .listGallery .colUll > ul {
  border-top: 1px solid #eee;
}
.bbs-layout04-wrap .srboardList .listGallery .colUll > ul > li:first-child {
  padding-top: 1.88em;
}

/* bbs custom4 - card type */
.board-card-list li {
  background-color: #f7f7f7;
  border-radius: 1.5rem;
  padding: 2.5em 1.56em;
  letter-spacing: -0.03em;
}
.board-card-list li[data-category]:not(.show) {
  display: none;
}
.board-card-list li.no-data {
  text-align: center;
  font-size: 2.4rem;
  color: #383838;
  font-weight: 500;
  padding: 3.5em 1.56em;
}
.board-card-list li:nth-child(n + 2) {
  margin-top: 1.56em;
}
.board-card-list li .cate {
  font-size: 2.4rem;
  color: #fa9200;
  font-weight: 500;
  margin-bottom: 0.83em;
}
.board-card-list li .title {
  font-size: 3.9rem;
  color: #383838;
  font-weight: 500;
}
.board-card-list li .info-box {
  margin-top: 1.56em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.board-card-list li .info-box dl {
  display: flex;
  font-size: 2.1rem;
  margin-top: 0.24em;
}
.board-card-list li .info-box dl:nth-child(1) {
  width: 62%;
  padding-right: 2%;
}
.board-card-list li .info-box dl:nth-child(2) {
  width: 38%;
}
.board-card-list li .info-box dt {
  flex-shrink: 0;
  min-width: 11rem;
  color: #383838;
  font-weight: 500;
  position: relative;
  padding-right: 3rem;
}
.board-card-list li .info-box dt::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 1px;
  height: 1.5rem;
  background-color: #ddd;
  position: absolute;
  top: 0.3em;
  right: 1.5rem;
}
.board-card-list li .info-box dd {
  color: #666;
}
.board-card-list li .info-box .label {
  font-size: 2.1rem;
  color: #fff;
  line-height: 1;
  padding: 0.4em 0.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.board-card-list li .info-box .label.orange {
  background-color: #fa9200;
}

/* bbs loading */
.load-wrap {
  text-align: center;
  padding: 3rem 5%;
  display: none;
}
.load-wrap.on {
  display: block;
}
.load-wrap .line {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  margin: 0.5rem;
}
.load-wrap .line:nth-last-child(1) {
  animation: loadingC 0.6s 0.1s linear infinite;
  background: #f18b01;
}
.load-wrap .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.2s linear infinite;
  background: #f6a901;
}
.load-wrap .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.3s linear infinite;
  background: #f5a800;
}

@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* bbs view */
/* 임시로 숨김처리*/
/* .srboardView .boardBar.fixed{
    position:fixed;
    bottom:0;
    left:0;
    margin:0 auto;
    width:100%;
    max-width:720px;
    right:0;
} */
.srboardView .boardBar {
  position: relative;
  width: 110%;
  margin: 0 -5%;
  padding: 1.5rem 5% 1.3rem;
  font-size: 3rem;
  font-weight: 300;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.srboardView .boardBar i {
  vertical-align: middle;
  margin-top: -2px;
  font-size: 3.8rem;
}
.srboardView .boardBar a {
  font-size: 3rem;
}
.srboardView .boardBar .left > a {
  margin-right: 3rem;
}
.srboardView .boardBar .ico-heart.on {
  pointer-events: none;
}
.srboardView .boardBar .ico-heart.on i:before {
  content: "\ea10";
  color: #ff4840;
}
.srboardView .share-box {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  position: absolute;
  left: 6rem;
  bottom: 4rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
.srboardView .share-box a {
  margin-right: 1rem;
}
.srboardView .share-box a:last-child {
  margin-right: 0;
}
.srboardView .share-box a i {
  font-size: 3.4rem;
}
.srboardView .progress-container {
  display: none; /* 임시로 숨김처리*/
  width: 100%;
  height: 3px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.srboardView .progress-bar {
  height: 2px;
  background: #fa9201;
  width: 0%;
}
.srboardView .latest_box .swiper-pagination-wr {
  position: relative;
  width: 100%;
  height: 0.38em;
  margin-top: 2rem;
}
.srboardView .latest_box .swiper-pagination.swiper-progressbar {
  width: 100%;
  height: 100%;
  margin: 0 auto !important;
  left: 0;
  right: 0;
  padding-bottom: 2px;
  background: #f4f4f4;
  border-radius: 0.5rem;
}
.srboardView
  .latest_box
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #fa9201;
}
.srboardView .latest_box h2 {
  display: none; /* 임시로 숨김처리*/
  font-size: 4.2rem;
  color: #373935;
  margin: 4rem 0 2rem;
}
.srboardView .latest_box.type_news .txt {
  margin: 0.5rem 0;
}
.srboardView .latest_box.type_news .txt .category {
  font-size: 2.4rem;
  color: #fa9200;
  margin-bottom: 0.5rem;
}
.srboardView .latest_box.type_news .txt a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2.4rem;
  color: #383838;
}
.srboardView .latest_box.type_news .thumb a {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  display: block;
  border-radius: 1rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.srboardView .latest_box.type_card .box {
  display: block;
  background-color: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 0.631rem;
  padding: 1.88em;
}
.srboardView .latest_box.type_card .box .category {
  font-size: 2.4rem;
  color: #fa9200;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.srboardView .latest_box.type_card .box .title {
  font-size: 2.4rem;
  color: #383838;
  font-weight: 500;
  line-height: 1.5;
  height: 3em;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.63em;
}
.srboardView .latest_box.type_card .box .title:first-child {
  margin-top: 0;
}
.srboardView .latest_box.type_card .box .arrow {
  margin-top: 0.94em;
  width: 1.4em;
}
.srboardView .latest_box.type_card .swiper-pagination-wr {
  margin-top: 3.13em;
}

.swiper-control {
  display: flex;
  justify-content: center;
  margin-top: 2.81em;
  font-size: 1.6rem;
}
.swiper-control .control-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.31em;
  height: 4.31em;
  border-radius: 50%;
  margin: 0 1.25em;
  background-color: #626468;
}
.swiper-control .control-btn.swiper-button-disabled {
  background-color: #c0c1c3;
  cursor: auto;
}
.swiper-control .control-btn img {
  width: 1.69em;
  height: 1.31em;
}

/* design  */
.gray-info {
  background-color: #f0f0f0;
  padding: 1.56em;
  margin-top: 2.81em;
}
.gray-info.type-2 {
  font-size: 1.6rem;
  padding: 1.25em 1.88em;
}
.gray-info.type-2 p .ico img {
  transform: none;
}
.gray-info p {
  display: flex;
  align-items: center;
}
.gray-info p .ico {
  flex-shrink: 0;
  line-height: 1;
  margin-right: 0.75em;
}
.gray-info p .ico-call {
  width: 1.94em;
  margin-right: 0.6em;
}
.gray-info p .ico-down {
  width: 1.94em;
}
.gray-info p .ico img {
  transform: translateY(2px);
  width: 100%;
  max-width: 1.8em;
}
.gray-info p .text {
  font-size: 2.2rem;
  color: #666;
  letter-spacing: -0.03em;
}
.gray-info p a {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.gray-info p a::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.gray-info .title {
  color: #383838;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.56em;
}
.gray-info .title strong {
  color: #383838;
  font-weight: 600;
}

.bottom-btn-area {
  padding: 3.75em 5% 7em 5%;
  text-align: center;
}
.bottom-btn-area .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 3.8em;
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: -0.03em;
}
.bottom-btn-area .btn:nth-child(n + 2) {
  margin-top: 0.83em;
}
.bottom-btn-area .btn-01 {
  border: 0.3rem solid #b9b9b9;
  background-color: #fff;
  color: #aaa;
}
.bottom-btn-area .btn-01.on {
  border-color: #fa9200;
  color: #fa9200;
}
.bottom-btn-area .btn-02 {
  border: 0.3rem solid #fa9200;
  background-color: #fa9200;
  color: #fff;
}

/* 약관 */
.notice_point h5 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 1em;
}
.notice_point b {
  font-size: 2.4rem;
  color: #222;
  display: block;
  margin-bottom: 0.3em;
}
.notice_point p {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1.5em;
  line-height: 1.65;
}

/** Media size setting **/
@media all and (max-width: 500px) {
  .fullmenu-cont .left-tab li a .text {
    font-size: 2.1rem;
  }
  .board-card-list li .title {
    font-size: 3.4rem;
  }
}
