@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf') format('opentype');
}
/* common */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  background: #fff;
  letter-spacing: -.03rem;
}
.container {
  width: 100%;
  height: 100%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}
.bg-grey {
  background-color: #f1f3f4;
}
/*text*/
.text-primary {
  color: #1e319d;
}
.text-bold {
  font-weight: 700;
}
/*input*/
input {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
}
/*button*/
button {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  font-weight: 500;
}
.btn {
  border-radius: 100px;
  cursor: pointer;
}
.btn-lg {
  padding: 0 30px;
  font-size: 16px;
  color: #fff;
  border: 2px solid transparent;
  height: 50px;
  width: 100%;
}
.btn-primary {
  background: #214821;
  color: #fff;
}
.btn-primary-outline {
  color: #1e319d;
  border-color: #1e319d;
  background-color: transparent;
}
.btn-area {
  margin-top: 25px;
}
.btn-area button + button {
  margin-top: 6px;
}
/*login-area*/

.d-table {
  display: table;
  width: 100%;
  height: 100%;
}
.d-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.login-area {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 4px;
}
.logo-area {
  width: 250px;
  margin: 0 auto 75px;
}
.logo-area img {
  width: 120%;
}
.login-area form {
  width: 100%;
}
.login-input-area input {
  border: 0;
  width: 100%;
  background: #f5f5f5;
  border-radius: 100px;
  height: 45px;
  padding: 0 16px;
  font-size: 16px;
}
.login-input-area input + input {
  margin-top: 6px;
}
/*checkbox*/

.checkbox-label {
  cursor: pointer;
  color: #14171a;
  font-size: 14px;
}
.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.checkbox {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.checkbox input[type="checkbox"] + .checkbox-label:before {
  content: '';
  display: inline-block;
  position: relative;
  top: 4px;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  -moz-transform: rotate(-45deg) scale(0, 0);
  -ms-transform: rotate(-45deg) scale(0, 0);
  -o-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  z-index: 1;
  width: 0.58rem;
  height: 0.29rem;
  border: 2px solid #fff;
  border-top-style: none;
  border-right-style: none;
  left: -10px;
}
.checkbox input[type="checkbox"] + .checkbox-label:after {
  content: '';
  border: 2px solid #aaa;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin-left: -13px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0;
}
.id-chk {
  margin-left: 15px;
  margin-top: 20px;
}
.id-chk .checkbox-label {
  font-size: 15px;
  padding-left: 5px;
  color: #333;
}
.id-chk input[type="checkbox"]:checked + .checkbox-label:after {
  border-color: #1e319d;
  background-color: #1e319d;
}
.id-chk input[type="checkbox"] + .checkbox-label:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border-color: #aaa;
  margin-left: -15px;
  margin-top: -2px;
}
.id-chk input[type="checkbox"] + .checkbox-label:before {
  top: 5px;
  -webkit-transform: rotate(-45deg) scale(1, 1);
  -moz-transform: rotate(-45deg) scale(1, 1);
  -ms-transform: rotate(-45deg) scale(1, 1);
  -o-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
  border: 2px solid #aaa;
  border-top-style: none;
  border-right-style: none;
  left: -14px;
}
.id-chk input[type="checkbox"]:checked + .checkbox-label:before {
  border-color: #fff;
}
/*lang-area*/
.lang-area {
  display: flex;
  justify-content: center;
  padding-top: 35px;
}
.lang-area > div {
  margin: 0 10px;
  display: flex;
  justify-content: center;
}
.lang-area img {
  width: 100%;
}
.lang-area .radio {
  margin: 0;
  float: left;
  padding: 0 !important;
}
.lang-area input[type='radio'] + label {
  clear: none;
  cursor: pointer;
  position: relative;
}
.lang-area input[type='radio']:checked + label .lang-chk {
  position: absolute;
  z-index: 1;
  background-color: rgba(30,49,157,.8);
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.lang-area input[type='radio']:checked + label .lang-ic {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang-area input[type='radio']:checked + label .lang-ic:before {
  content: '';
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  z-index: 1;
  width: 0.90rem;
  height: 0.4rem;
  border: 3px solid #fff;
  border-top-style: none;
  border-right-style: none;
  -webkit-transform: rotate(-45deg) scale(1, 1);
  -moz-transform: rotate(-45deg) scale(1, 1);
  -ms-transform: rotate(-45deg) scale(1, 1);
  -o-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
.lang-img {
  overflow: hidden;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 auto;
}
.lang-img.b-1 {
  border: 1px solid #eee;
}
.lang-area input[type='radio'] {
  opacity: 0;
  float: left;
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
/*header*/
header {
  position: fixed;
  width: 100%;
  height: 56px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background: #fff;
  top: 0;
  left: 0;
}
.header-user-area {
  display: flex;
  width: calc(100% - 120px);
  align-items: center;
}
.status {
  font-size: 12px;
  color: #fff;
  padding: 3px;
  border-radius: 100px;
  text-align: center;
  margin-right: 8px;
  border: 1px solid transparent;
  background: #fff;
  line-height: 1.2;
}
.status.regi {
  border-color: #1e319d;
  color: #1e319d;
  min-width: 38px;
}
.status.unregi {
  border-color: #ddd;
  color: #888;
  min-width: 45px;
}
.user-name {
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.header-ic-area {
  display: flex;
}
.header-ic-area > div {
  width: 24px;
  margin-left: 15px;
}
.header-ic-area > div img {
  width: 100%;
}
/*visual-area*/
.visual-area {
  margin-top: 56px;
  background: #fff;
  width: 100%;
  height: 140px;
  position: relative;
  display: inline-block;
  margin-bottom: -5px;
}
.visual-title-area {
  position: relative;
  width: 100%;
  height: 100%;
}
.visual-title-area:after {
  content: '';
  position: absolute;
  width: 195px; /* 기본 크기 */
  height: 140px; /* 기본 크기 */
  top: 0;
  right: 0;
  background-image: url(../images/logo_3.jpg);
  background-repeat: no-repeat;
  background-size: contain;

  /* 반응형 설정 */
  max-width: 100%; /* 부모 요소의 크기에 따라 조정 */
  max-height: 100%; /* 부모 요소의 크기에 따라 조정 */
}

@media (max-width: 390px) {
  .visual-title-area:after {
      width: 50%; /* 작은 화면에서는 비율 유지하면서 줄이기 */
      height: auto; /* 높이는 자동 계산 */
  }
}
.visual-title-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%;
  z-index: 1;
}
.visual-title {
  font-size: 20px;
}
.visual-text {
  font-size: 15px;
  color: #576071;
  padding-top: 5px;
}
/*point-area*/
.point-area {
  background: #fff;
  padding: 10px 0 1px;
}
.point-content-area {
  background: #214821;
  border-radius: 8px;
  padding: 20px 0;
  display: flex;
}
.point-content-area > div {
  width: 50%;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.point-content-area > div:last-child:before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255,255,255,.05);
  position: absolute;
  left: 0;
  top: 0;
}
.point-title {
  color: #aab7ff;
  font-size: 18px;
}
.point-title1 {
  color: #ffffff;
  font-size: 20px;
}
.point-title2 {
  color:#fcfcfc;
  font-size: 20px;
}
.point-title3 {
  color:#fcfcfc;
  font-weight: 500;
  font-size: 25px;
}
.point-vaule {
  color: #fff;
  font-weight: 200;
  font-size: 22px;
  padding-top: 5px;
  word-break: break-all;
  line-height: 1.1em;
}
.point-vaule:after {
  content: '명';
  font-size: 12px;
  margin-left: 5px;
  font-weight: normal;
}
/*menu-area*/
.menu-area {
  padding: 16px 0;
}
.menu-area .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1px;
}
.menu-area .row > div {
  width: 33.33333%;
  text-align: center;
  padding: 1px;
  cursor: pointer;
}
.menu-item {
  background: #fff;
  border-radius: 3px;
  width: 100%;
  padding-bottom: calc(100% - 16px);
  position: relative;
}
.item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ic-img {
  width: 43px;
  margin: 0 auto;
  min-height: 1px;
}
.ic-img img {
  width: 100%;
}
.ic-title {
  font-weight: 500;
  margin-top: 10px;
}
