/* Description: Master CSS file */

/**************************/
/*     General Styles     */
/**************************/

@font-face {
  font-family: "NotoSanskr";
  src: url("/html/publishing/webfonts/noto/NotoSansKR-Regular.woff2") format("woff2"),
    url("/html/publishing/webfonts/noto/NotoSansKR-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoSanskr";
  src: url("/html/publishing/webfonts/noto/NotoSansKR-Medium.woff2") format("woff2"),
    url("/html/publishing/webfonts/noto/NotoSansKR-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "NotoSanskr";
  src: url("/html/publishing/webfonts/noto/NotoSansKR-Bold.woff2") format("woff2"),
    url("/html/publishing/webfonts/noto/NotoSansKR-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

:root {
  --gradient: linear-gradient(135deg, #D8BFD8, #9370DB);

  --color-black: #000;
  --color-black2: #212B36;
  --color-black3: #0B1724;

  --color-gray: #637381;
  --color-gray2: #ACACAC;
  --color-gray3: #838383;

  --color-white: #fff;

  --color-primary1: #9370db;
  /*--color-secondary: #1766FF;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "NotoSanskr", sans-serif;
}

h1 {
  font-size: 38px;
  font-weight: 500;
  margin:0;
}

button {
  font-family: "NotoSanskr", sans-serif;
}

p,
ul,
h4 {
  margin: 0;
  padding: 0;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
li {
  list-style-type: none;
}

body {
  min-width: 1300px;
  min-height: 100vh;
}

/*!* col-sm-2 *!*/
/*.w-16 {*/
/*  width: 16.6666%;*/
/*}*/
/*!* col-sm-4 *!*/
/*.w-33 {*/
/*  width: 33.3333%;*/
/*}*/
/*!* col-sm-5 *!*/
/*.w-41 {*/
/*  width: 41.6666%;*/
/*}*/
/*.w-58 {*/
/*  width: 58.3333%;*/
/*}*/
/*!* col-sm-8 *!*/
/*.w-66 {*/
/*  width: 66.6666%;*/
/*}*/
/*!* col-sm-10 *!*/
/*.w-83 {*/
/*  width: 83.3333%;*/
/*}*/

/* subGnb */
#subGnb {
  display:block;
  width:100%;
  padding:32px;
  background:#fff;
  border:1px solid #e0e0e0;
  box-sizing:border-box;
}
#subGnb ul {
  display:grid;
  grid-auto-flow:column;
  align-items:center;
  justify-content: center;
}
#subGnb ul li {
  display:inline-block;
}
#subGnb ul li + li {
  margin-left:46px;
}
#subGnb ul li a {
  position:relative;
  display:inline-block;
  padding-left:13px;
  font-size:18px;
  line-height:23px;
  color:var(--color-gray3);
}
#subGnb ul li a:before {
  content:'';
  position:absolute;
  left:0;
  top:50%;
  display:block;
  width:3px;
  height:12px;
  border-radius:8px;
  background-color:var(--color-gray3);
  transform:translateY(-50%);
}
#subGnb ul li.active a {
  color:var(--color-primary1);
}
#subGnb ul li.active a:before {
  background-color:var(--color-primary1);
  transform:translateY(-50%) rotateZ(90deg);
}

.container {position:relative;max-width:1300px;box-sizing:border-box;padding:0;}

.ex-header {position:relative;padding:90px 0;}
.ex-header:before {content:"";position:absolute;display:block;left:0;top:0;bottom:0;right:34%;border-radius:0 300px 300px 0;background-image:linear-gradient(135deg, #D8BFD8, #9370DB);}
.ex-header .container {z-index:1;}
.ex-header h1 {font-size:38px;font-weight:700;line-height:50px;color:#fff;}
.ex-header p {font-size:18px;line-height:23px;margin-top:10px;color:#fff;}


/* footer */
.comm_footer {
  width: 100%;
  background: linear-gradient(
          to bottom,
          #fdfbff 0%,    /* 맨 위 거의 흰색 (밝은 보라 느낌) */
          #f3e5f5 5%,   /* 연보라 */
          #d1a9f0 65%,   /* 중간 보라 */
          #b47ddb 100%   /* 은은한 진보라 */
  );
  color: #ffffff;
}
.comm_footer > .main_inner {
  display:grid;
  max-width:1300px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  margin:0 auto;
  padding: 30px 0;
}
.comm_footer .footer_info h1 {
  width: 100px;
}
.comm_footer .footer_info h1 img {
  width: 100%;
}
.comm_footer .footer_info span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  /*opacity: 0.5;*/
  margin-top: 10px;
}
.comm_footer .footer_info p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  /*opacity: 0.5;*/
  margin-top: 10px;
}
.comm_footer .footer_info ul {
  margin-top: 10px;
  display:flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.comm_footer .footer_info li {
  position: relative;
}
.comm_footer .footer_info li + li {margin-left:1rem;}

.comm_footer .footer_info li + li:before {
  content: "";
  width: 1px;
  height: 16px;
  background: var(--color-white);
  position: absolute;
  left:-0.5rem;
  top: 50%;
  transform: translate(0, -50%);
}
.comm_footer .footer_info li a {
  color:#fff;
}
.comm_footer .right {
  display:grid;
  grid-template-columns:auto auto;
  align-items:center;
  gap:50px;
}
.comm_footer .right ul {
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  text-align: center;
}

.comm_footer .right ul li + li {margin-top:8px;}
.comm_footer .right ul li:first-child {font-size:20px;line-height:25px;font-weight:700;}
.comm_footer .right ul li:nth-child(2) {margin-top:15px;}
.copyright {
  width: 100%;
  background: #b47ddb;  /* 단색 진보라 (footer 하단 안정감) */
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.copyright .main_inner {
  max-width:1300px;
  margin:0 auto;
  padding: 10px 0;
  font-size:14px;
  line-height:22px;
  color: var(--color-white);
}

/* Navigation start */
#navgroup {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.9);
  min-width: 1140px;
}
#navgroup .nav_inner {
  width: 1300px;
  margin:0 auto;
  display: grid;
  height:72px;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
}


#navgroup .navg-collapse {
  display: grid;
  height:100%;
  grid-auto-flow: column;
  align-items: center;
  height:100%;
  /*transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;*/
}
#navgroup .navg-list {
  display: grid;
  height:100%;
  grid-auto-flow: column;
  align-items: center;
}
#navgroup .dropdown-toggle::after {
  display:none;
}
#navgroup .navg-list > li {position:relative;height:100%;}
#navgroup .navg-list > li + li {margin-left:60px;}
#navgroup a.navg-link {
  display: grid;
  align-items: center;
  height:100%;
  font-size:18px;
  line-height:28px;
  color: #000;
  text-decoration: none;
}
#navgroup a.navg-link:hover {
  font-weight:600;
  cursor: pointer;
  color: var(--color-primary1);
}
.navg .dropdown-menu {
  top:100%;
  border: none;
  margin: 0;
  background-color: #fff;
  padding:5px 0;
  box-shadow: 0px 1px 3px rgb(0, 0, 0, 0.5);
  animation: fadeDropdown 0.2s;
  transform:translateY(-10px);
}

.navg .dropdown-menu .dropdown-item {
  color: #000;
  font-weight:400;
  font-size: 14px;
  line-height: 24px;
  padding:10px 15px;
}
.navg .dropdown-menu .dropdown-divider {
  margin:0;
}

.navg .dropdown-menu .dropdown-item:hover {
  cursor: pointer;
  color: var(--color-primary1);
  font-weight: 700;
}


@-webkit-keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/* common */
.w-50 {width:calc(50% - 15px);}
.w-50 + .w-50 {margin-left:30px;}
input[type="text"].form-control,
input[type="password"].form-control,
input[type="number"].form-control,
input[type="email"].form-control {font-family:"NotoSanskr", sans-serif;padding:9px 10px;font-size:16px;line-height:28px;}
input[type="text"].form-control::placeholder,
input[type="password"].form-control::placeholder,
input[type="number"].form-control::placeholder,
input[type="email"].form-control::placeholder {font-family:"NotoSanskr", sans-serif;font-weight:400;color:var(--color-gray2);}

.btn {
  font-family:"NotoSanskr", sans-serif;
  display:inline-block;
  width:100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding:17px 16px 15px;
  border-width:2px;
}
.btn-outline-dark {
  color:var(--color-gray3);
  border-color:var(--color-gray3);
}
.btn-dark {background-color:#555;border-color:#555;}
.btn-secondary {background-color:#E4E4E4;border-color:#e4e4e4;color:#333;}
.btn.btn-sm {
  font-size:14px;
  line-height:22px;
  padding:10px 16px 8px;
}
textarea {
  display:block;
  width:100%;
  height:350px;
  resize:none;
  font-size:16px;
  line-height:28px;
  padding:16px 20px;
  border:1px solid var(--color-gray2);
  border-radius:15px;
}
textarea.form-control {
  font-size:16px;
  line-height:28px;
  padding:16px 20px;
}
.form-select {font-size:16px;line-height:28px;padding:9px 36px 9px 10px;font-family:"NotoSanskr", sans-serif;}
.form-check {margin-bottom:0;}

div.pagination {margin-top:16px;justify-content:center;}
.page-item.active .page-link {background-color:var(--color-primary1);border-color:var(--color-primary1);}

.table {margin-bottom:0;font-family:"NotoSanskr", sans-serif;}
.table thead th {padding:8px 12px;background-color:#fafafa;font-weight:500;}
.table tbody td {padding:8px 12px;font-weight:400;}
.table tbody td strong,
.table tbody td b {font-weight:500;}
.table thead th.text-center {text-align:center;}
.table tbody td.text-center {text-align:center;}
.table tbody td.text-right {text-align:right;}
.table tbody .text-primary {font-weight:500;color:var(--color-primary1);}
.table tbody .nodata {padding:100px 0;text-align:center;font-size:20px;}


/** main-page - start */
.main-page .main_inner {
  width: 1100px;
  margin: 0 auto;
}
.main-page .main_inner2 {
  width: 1100px;
  margin: 0 auto;
}
.main-page .main_banner_wrap .text_area h2 {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  padding: 11px 22px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-bottom: 0;
}
.main-page .main_banner_wrap .text_area p {
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  color: var(--color-white);
  margin-top: 15px;
}
.main-page .main_banner_wrap .banner_illust {
  width: 380px;
}

.main-page .main_banner_wrap .section_quickmenu {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.main-page .section_quickmenu .quickmenu_container {
  position:relative;
  left:50%;
  display: grid;
  width:1300px;
  height: 208px;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.08);
  transform:translateX(-50%);
  border-radius: 29px;
  background: var(--color-white);
}
.main-page .section_quickmenu .itembox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  word-break: keep-all;
}
.main-page .section_quickmenu .itembox + .itembox::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: var(--color-gray2);
}
.main-page .section_quickmenu .itembox ul {
  text-align: center;
  overflow: hidden;
}
.main-page .section_quickmenu .itembox ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-gray2);
  transition: 0.3s ease-in-out;
}
.main-page .section_quickmenu .itembox ul li + li {
  margin-top:7px;
}
.main-page .section_quickmenu .itembox ul li i {
  display: inline-block;
  width: 66px;
  height: 66px;
}
.main-page .section_quickmenu .itembox:first-child i {
  background: url(/images/icon_quickmenu01_gray.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(2) i {
  background: url(/images/icon_quickmenu02_gray.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(3) i {
  background: url(/images/icon_quickmenu03_gray.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(4) i {
  background: url(/images/icon_quickmenu04_gray.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:last-child i {
  background: url(/images/icon_quickmenu05_gray.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:first-child:hover i {
  background: url(/images/icon_quickmenu01_color.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(2):hover i {
  background: url(/images/icon_quickmenu02_color.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(3):hover i {
  background: url(/images/icon_quickmenu03_color.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:nth-child(4):hover i {
  background: url(/images/icon_quickmenu04_color.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox:last-child:hover i {
  background: url(/images/icon_quickmenu05_color.svg) no-repeat 0 0;
  background-size: cover;
}
.main-page .section_quickmenu .itembox ul li:last-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-gray3);
  box-sizing: border-box;
  height: 0;
}
.main-page .section_quickmenu .itembox:hover li {
  color: var(--color-primary1);
}
.main-page .section_quickmenu .itembox:hover ul li:last-child {
  height: 45px;
  color: var(--color-primary1);
}

.main-page .section_price {
  padding: 235px 0 100px 0;
  position: relative;
  background: #f6f9ff;
}
.main-page .section_price .text_wrap {
  text-align: center;
}
.main-page .section_price .text_wrap h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 52px;
}
.main-page .section_price .text_wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-top: 20px;
  color: #637381;
}
.main-page .section_price .content_wrap {
  margin-top: 110px;
  height: 450px;
  max-height:450px;
  display:grid;
  gap:0 40px;
  grid-template-columns:1fr 1fr 1fr;
  align-content:flex-end;
  align-items:flex-end;
}
.main-page .section_price .content_wrap .itembox {
  width:100%;
  height: 450px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: context-menu;
  background: #ffffff;
  border: 1px solid #9370DB;
  border-radius: 18px;
}
.main-page .section_price .content_wrap .itembox h3 {
  font-size: 35px;
  font-weight: 500;
  line-height: 46px;
}
.main-page .section_price .content_wrap .itembox strong {
  display: block;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  margin-top: 30px;
  color: var(--color-primary1);
}
.main-page .section_price .content_wrap .itembox strong span {
  font-weight: 500;
  font-size: 20px;
  line-height:26px;
  margin-right:10px;
}
.main-page .section_price .content_wrap .itembox ul {
  margin-top:30px;
}
.main-page .section_price .content_wrap .itembox ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.main-page .section_price .content_wrap .itembox ul li + li {margin-top:10px;}
.main-page .section_price .content_wrap .itembox ul li:last-child {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 30px;
}
.main-page .section_price .content_wrap .itembox ul li button {
  padding: 2px 45px 0;
  width:256px;
  height: 64px;
  border-radius: 64px;
  background: var(--color-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  border: none;
  box-sizing:border-box;
}
.main-page .section_price .content_wrap .itembox:hover {
  transition-duration: 0.5s;
  height: 500px;
  background: linear-gradient(135deg, #D8BFD8, #9370DB);
  color: var(--color-white);
  border: 0;
}
.main-page .section_price .content_wrap .itembox:hover strong {
  transition-duration: 0.5s;
  color: var(--color-white);
}
.main-page .section_price .content_wrap .itembox:hover li:last-child {
  height: 69px;
}

.main-page .section_service {
  padding: 100px 0 120px 0;
}
.main-page .section_service .service_item {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
}
.main-page .section_service .service_item + .service_item {
  margin-top: 100px;
}
.main-page .section_service .service_item:nth-child(2) {
  direction: rtl;
}
.main-page .section_service .service_item:nth-child(2) .text_box {
  direction: ltr;
  text-align: right;
}
.main-page .section_service .service_item .text_box span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-primary1);
}
.main-page .section_service .service_item .text_box strong {
  display: block;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  margin-top: 32px;
}
.main-page .section_service .service_item .text_box p {
  display: block;
  font-weight:400;
  font-size: 20px;
  line-height: 32px;
  color: #637381;
  margin-top: 32px;
}
/** main-page - end */

/** main-findpw  - start*/
.main-findpw {width:600px;margin:0 auto;padding:60px 0 120px;}
.main-findpw input.form-control::placeholder {color:#fff;}
.main-findpw hr {margin:48px 0;}
.main-findpw .form-floating + .form-floating {margin-top:10px;}
.main-findpw .cert {margin: 4px 0px 0px 10px;width: 94%;}
.main-findpw .btn {padding:10px 0 8px;margin-top:24px;}
/** main-findpw  - end*/

/** main-changePw - start */
.main-changePw #content {width:600px;margin:0 auto;padding:60px 0 120px;}
.main-changePw .widget-header ~ form {margin-top:32px;}
.main-changePw .valid-wrap + .valid-wrap {margin-top:20px;}
.main-changePw .valid-wrap .form-label {font-size:16px;margin-bottom:5px;}
.main-changePw .text-muted {display: block;margin-top:4px;color: #999;}
.main-changePw .btn {padding:10px 0 8px;margin-top:40px;}
/** main-changePw - end */

/* sub - common */
.widget-header {position:relative;padding-left:14px;font-size:26px;line-height:32px;margin-bottom:0;}
.widget-header:before {content:'';display:block;position:absolute;left:0;top:0px;width:4px;height:30px;border-radius:4px;background:var(--color-primary1);}
#content {padding:40px 0 120px;}
.ex-basic-1 {min-height:calc(100vh - 613px);}

/** sms - start */
#subGnb {margin-top:40px;}
.sms-send .totalInformation {display:block;margin-top:30px;background:#f9f8f8;border-radius:6px;}
.sms-send .totalInformation ul {display:grid;grid-auto-flow:column;justify-content:center;gap:30px;padding:17px 0;}
.sms-send .totalInformation ul li {display:grid;grid-template-columns:auto auto;justify-content:center;font-size:18px;line-height:32px;color:#333;}
.sms-send .totalInformation ul li .pull-left {position:relative;padding-left:11px;}
.sms-send .totalInformation ul li .pull-left:before {content:'';position:absolute;left:0;top:50%;display:block;width:4px;height:4px;border-radius:4px;transform:translateY(-50%);background:#333;}
.sms-send .totalInformation ul li .pull-left:after {content:':';display:inline-block;}
.sms-send .totalInformation ul li .pull-right {}
.sms-send .widget + .row {margin:30px 0 0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.sms-send .widget + .row > * {width:100%;padding:0;}
.sms-send .p-1 {padding:0 !important;}
.sms-send .row + .row {margin-top:10px;}
.sms-send .w-100 + .w-100 {margin-top:10px;}
.sms-send #sendMessage {margin-top:30px;}
.sms-send #sendMessage > .row {}
.sms-send #sendMessage > .row > .w-50:first-child {padding:25px 20px;background:rgba(23, 102, 255, 0.03);border-radius:6px;}
.sms-send #multiCollapseExample1 .w-33 {width:calc(34% - 5px);}
.sms-send #multiCollapseExample1 .w-66 {width:calc(66% - 5px);}
.sms-send #multiCollapseExample1 .w-33 + .w-66 {margin-left:10px;}
.sms-send #multiCollapseExample2 .w-33 {width:calc(34% - 5px);}
.sms-send #multiCollapseExample2 .w-66 {width:calc(66% - 5px);}
.sms-send #multiCollapseExample2 .w-33 + .w-66 {margin-left:10px;}
.sms-send .row .w-100.py-2 {font-size:16px;line-height:28px;color:var(--color-gray3);}
.sms-send .row.border-bottom.pb-2 .w-25 {width:calc(50% - 5px);}
.sms-send .row.border-bottom.pb-2 .w-25 + .w-25 {margin-left:10px;}
.sms-send .rightarea .btn-wrap {margin-top:10px;display:grid;grid-auto-flow:column;grid-template-columns:repeat(4,1fr);gap:10px;}
.sms-send .rightarea .w-75 {width:calc(75% - 5px);}
.sms-send .rightarea .w-25 {width:calc(25% - 5px);}
.sms-send .rightarea .w-75 + .w-25 {margin-left:10px;}
.sms-send .count-number {margin-top:10px;font-size:18px;font-weight:700;line-height:32px;text-align:right;}
.sms-send .count-number span {color:#E30202;}
.sms-send .letter-config {margin-top:24px;padding-top:24px;border-top:1px solid #e4e4e4;}
.sms-send .letter-config h3 {font-size:18px;line-height:32px;color:#000;margin:0;}
.sms-send .send-number-manage {margin-top:20px;display:grid;grid-template-columns:auto 1fr 187px;gap:0 11px;align-items:center;}
.sms-send .send-number-manage strong {font-size:16px;font-weight:500;}
.sms-send .send-number-manage select {width:100%;}
.sms-send .radio_wrap {margin-top:25px;display:grid;grid-template-columns:168px 168px;gap:0 10px;}
.sms-send .radio_wrap .form-check {padding:0;}
.sms-send .radio_wrap .form-check input {display:none;}
.sms-send .radio_wrap .form-check .form-check-label {display:grid;align-items:center;justify-content:center;background:#e4e4e4;height:44px;border-radius:6px;cursor:pointer;}
.sms-send .radio_wrap .form-check input:checked + .form-check-label {background:var(--color-primary1);color:#fff;}
.sms-send .reserve-send-config {margin-top:10px;padding:15px;background:#f8f8f8;border-radius:6px;}
.sms-send .reserve-send-config > div {margin-top:10px;display:grid;grid-template-columns:1fr 1fr 1fr;gap:0 11px;}
.sms-send .division-send-config {margin-top:25px;display:grid;grid-template-columns:auto 1fr 1fr;align-items:center;gap:0 11px;}
.sms-send .maintain-config {margin-top:10px;}

.sms-list .table {margin-top:20px;}
.sms-list nav[aria-label*="Page"] {margin-top:30px;display:grid;justify-content:center;}

.sms-detail .widget-header + form {margin-top:16px;}
.sms-detail .send-information {display:grid;grid-template-columns:1fr 1fr 1fr;gap:0 16px;}
.sms-detail .send-information label {display:block;padding:2px 5px;border-bottom:1px solid #e0e0e0;font-size:16px;font-weight:500;}
.sms-detail .send-information .form-inline {padding:10px 5px;}
.sms-detail .send-information-message {margin-top:10px;}
.sms-detail .send-information-message textarea {height:200px;}
.sms-detail .send-informataion-count {margin-top:16px;display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:0 1px;}
.sms-detail .send-informataion-count label {display:block;padding:2px 10px;background-color:#3f3f3f;font-size:16px;font-weight:500;color:#fff;}
.sms-detail .send-informataion-count .form-inline {padding:3px 10px;background:#eee;}
.sms-detail .widget + .widget {margin-top:40px;}
.sms-detail .table {margin-top:16px;}
.sms-detail .btn-area {margin-top:16px;display:grid;grid-auto-flow:column;justify-content:right;gap:10px;}
/** sms - end */

/** user - start */
.user-cancel #infoForm {margin-top:24px;display:grid;}
.user-cancel .form-label {display:block;font-size:16px;margin-bottom:10px;}
.user-cancel #content {max-width:600px;margin:0 auto;}
.user-cancel .mb-3 + .mb-3 {margin-top:20px;}
.user-cancel .mb-3 + .btn {margin-top:30px;width:100px;padding:10px 16px 8px;justify-self: end;}

.user-findPw {padding:60px 0 120px;}
.user-findPw .container {max-width:480px;}
.user-findPw .container input::placeholder {color:#fff;}
.user-findPw .container .form-floating + .form-floating {margin-top:10px;}
.user-findPw .container .btn {margin-top:16px;padding:12px 0 10px;}
.user-findPw .container hr {margin:32px 0;}

.user-join01 {padding:40px 0 120px;max-width:600px;margin:0 auto;}
.user-join01 .form-group textarea {height:200px;}
.user-join01 .agree-checkbox.valid-wrap {margin-top:5px;font-size:16px;}
.user-join01 h3.py-3 {font-size:20px;font-weight:500;}
.user-join01 h5.py-3 {font-size:20px;font-weight:500;margin-top:20px;}
.user-join01 label[for="agreeAll"] {margin-top:20px;}
.user-join01 form .mx-auto {width:100%;}
.user-join01 form .col-lg-10.mx-auto {margin-top:40px;}
.user-join01 form .mx-auto .row {width:100%;}
.user-join01 form .mx-auto .col-md-6 {width:calc(50% - 8px);}
.user-join01 form .mx-auto .col-md-6 + .col-md-6 {margin-left:16px;}

.user-join02 {padding:40px 0 120px;max-width:600px;margin:0 auto;}
.user-join02 .explanation-wrap.bg-light {padding:10px 15px;border-radius:6px;background-color:#eee;font-size:14px;}
.user-join02 .explanation-wrap.bg-light p {color:#555;}
.user-join02 #infoForm {margin-top:30px;}
.user-join02 #infoForm h5 {font-size:20px;margin-bottom:20px;}
.user-join02 .btn {padding:10px 10px 6px;}
.user-join02 .text-muted {display:block;margin-top:4px;color:#999;}
.user-join02 .join-input {display:grid;gap:5px 10px;}
.user-join02 .join-input + .join-input {margin-top:16px;}
.user-join02 .join-input label {display:block;padding:0;font-size:16px;}
.user-join02 .join-input:nth-child(2) {grid-template-columns:60% auto;}
.user-join02 .join-input:nth-child(2) label {grid-column:span 2;}
.user-join02 .join-input:nth-child(5) {grid-template-columns:60% auto;}
.user-join02 .join-input:nth-child(5) label {grid-column:span 2;}
.user-join02 .join-input:nth-child(9) .flex-wrap {display:grid;grid-template-columns:1fr auto 1fr auto 1fr; gap:0 5px;align-items:center;}
.user-join02 .join-input:nth-child(9) .flex-wrap input {width:100% !important;}
.user-join02 .join-input:nth-child(11) .flex-wrap {display:grid;grid-template-columns:28% auto 28% auto 40%;align-items:center;}
.user-join02 .join-input:nth-child(11) .flex-wrap input {width:100% !important;}
.user-join02 .submit-wrap {margin-top:30px;display:grid;grid-template-columns:1fr 1fr;gap:10px;}

.user-login {padding:40px 0 120px;max-width:600px;margin:0 auto;}
.user-login h2.text-center {font-size:36px;margin-bottom:20px;}
.user-login .container input::placeholder {color:#fff;}
.user-login .form-floating + .form-floating {margin-top:10px;}
.user-login .btn {margin-top:16px;padding:12px 0 10px;margin-bottom:0;}
.user-login .form-check {margin-top:10px;font-size:16px;}
.user-login .text-primary {display:inline-block;margin-top:12px;color:#666;}
.user-login .text-primary + .text-primary {margin-left:10px;}

.user-mypage #content {width:600px;margin:0 auto;}
.user-mypage .widget-header.user {margin-bottom:20px;}
.user-mypage .personal-info .row label {font-weight:500;}
.user-mypage .personal-info .row .col-6 {width:100%;padding:16px 0;}
.user-mypage .personal-info .row .col-6 + .col-6,
.user-mypage .personal-info .row + .row {border-top:1px solid #eee;}
.user-mypage .personal-info .row .form-group {font-size:18px;}
.user-mypage .personal-info .form-inline {margin-top:10px;font-size:24px;}
.user-mypage .personal-info .flex-wrap {margin-top:10px;display:grid;align-items:center;grid-template-columns:1fr auto 1fr auto 1fr;gap:5px;}
.user-mypage .personal-info .flex-wrap input {width:100% !important;}
.user-mypage .personal-info .w-16 label {width:100%;padding:16px 0 0;font-size:18px;}
.user-mypage .personal-info .w-83.flex-wrap {display:grid;grid-template-columns:1fr 30%;}
.user-mypage .personal-info .w-83.flex-wrap input {}
.user-mypage .personal-info .w-83.flex-wrap .btn {padding:10px 0 6px;}
.user-mypage .personal-info .row:nth-child(5) + .row:nth-child(6),
.user-mypage .personal-info .row:nth-child(6) + .row:nth-child(7),
.user-mypage .personal-info .row:nth-child(7) + .row:nth-child(8) {border:none;}
.user-mypage .personal-info .w-41,
.user-mypage .personal-info #userGbnNm {margin-top:10px;}
.user-mypage .personal-info .row #email {margin-top:10px;}
.user-mypage .btn-area {margin-top:40px;}
.user-sender .table {margin-top:20px;}
.user-sender .btn-area {margin-top:20px;display:grid;grid-template-columns:auto auto;justify-content:end;gap:0 10px;}
.user-sender .btn-area .btn {min-width:100px;padding:10px 20px 6px;}

.user-pwchange #content {width:600px;margin:0 auto;}
.user-pwchange #infoForm {margin-top:24px;}
.user-pwchange .form-label {display:block;font-size:16px;margin-bottom:10px;}
.user-pwchange .mb-3 + .mb-3 {margin-top:20px;}
.user-pwchange .mb-3 + .btn {margin-top:30px;padding:10px 16px 8px;}
.user-pwchange .text-muted {display:block;margin-top:4px;color:#999;}
/** user - end */

/** policy - start */
.policy-collection {padding:40px 0 120px;margin:0 auto;}
.policy-collection h3 {margin-bottom:20px;}
/** policy - end */

/** notice - start */
.board-noticeDetail .widget h3 + div {margin-top:20px;padding:20px;}
.board-noticeDetail .widget h3 + div p {margin:0;font-size:16px;line-height:1.5em;}
.board-noticeDetail .btn-area {margin-top:30px;border-top:1px solid #ccc;padding-top:12px;display:grid;justify-content:end;}
.board-noticeDetail .btn-area .btn {width:100px;padding:8px 0 6px;}

.board-question .btn-area {margin-top:30px;display:grid;justify-content:end;}
.board-question .btn-area .btn {padding:10px 0 8px;width:120px;}

.board-questionDetail .widget {position:relative;}
.board-questionDetail .widget h3 + div {margin-top:20px;padding:20px;}
.board-questionDetail .widget h3 + div p {margin:0;font-size:16px;line-height:1.5em;}
.board-questionDetail .widget + .widget {margin-top:60px;}
.board-questionDetail .widget + .widget:before {content:'';position:absolute;left:0;top:-30px;width:100%;height:1px;background:#eee;}
.board-questionDetail .widget .comment {padding:0;}
.board-questionDetail .widget .comment textarea {background:#fafafa !important;}
.board-questionDetail .widget .comment > p {margin-top:10px;font-size:16px;text-align:right;}
.board-questionDetail .btn-area {margin-top:30px;border-top:1px solid #ccc;padding-top:12px;display:grid;justify-content: end;}
.board-questionDetail .btn-area .btn {width:120px;padding:10px 0 8px;}

.board-questionWrite .mb-3 label {display:block;font-size:18px;font-weight:500;}
.board-questionWrite .mb-3 + .mb-3 {margin-top:16px;}
.board-questionWrite textarea {height:200px;}
.board-questionWrite input[type="mobileNo"] {padding:9px 10px;font-size:16px;line-height:28px;}
.board-questionWrite .btn-area {margin-top:40px;display:grid;grid-template-columns: auto auto;gap:0 16px;justify-content: center;}
.board-questionWrite .btn-area .btn {width:200px;padding:12px 0 10px;}
/** notice - end */

/** address - start */
.address-excel #content {width:800px;margin:0 auto;}
.address-excel .explanation-wrap.bg-light {margin-bottom:50px;padding:10px 15px;border-radius:6px;background-color:#eee;font-size:14px;}
.address-excel .explanation-wrap.bg-light p {color:#555;}
.address-excel .explanation-wrap.bg-light p + p {margin-top:5px;}
.address-excel .explanation-wrap.bg-light p a {margin-left:20px;display:inline-block;padding:2px 10px;background:var(--color-primary1);color:#fff;border-radius:2px;opacity:0.9;}
.address-excel .widget .widget-header {margin-bottom:14px;}
.address-excel .widget + .widget {margin-top:40px;}
.address-excel .widget .table {margin-top:20px;}
.address-excel .widget .row > .w-33 {display:inline-block;width:auto;}
.address-excel .widget .row > .w-33 span:nth-child(1) {color:#777;}
.address-excel .widget .row > .w-33 span:nth-child(2) {font-weight:500;color:#333;}
.address-excel .widget .row .w-33 + .w-33 {margin-left:20px;}
.address-excel .bg-light + .widget .row .w-50 {width:calc(75% - 5px);}
.address-excel .bg-light + .widget .row .w-25 {margin-left:10px;width:calc(25% - 5px);}
.address-excel .bg-light + .widget .row .w-25 .btn {padding:10px 0 6px;}
.address-excel .bg-light + .widget .mb-3 {margin-top:16px;display:grid;grid-template-columns:auto 1fr;align-items:center;gap:0 20px;}
.address-excel .bg-light + .widget .mb-3 label {margin:0;}
.address-excel .bg-light + .widget .py-2.text-right {margin-top:24px;display:grid;justify-content:end;}
.address-excel .bg-light + .widget .py-2.text-right .btn {width:200px;padding:10px 0 8px;}

.address-groupList .widget .col-sm-12 > .text-right {display:grid;justify-content:end;grid-template-columns: auto auto;gap:0 10px;}
.address-groupList .widget .col-sm-12 > .text-right .btn {width:100px;padding:8px 0 6px;}
.address-groupList .widget-header {margin-top:30px;}
.address-groupList .table {margin-top:24px;}

.address-addrList #content {width:600px;margin:0 auto;}
.address-addrList h3 {margin-bottom:16px;}
.address-addrList .row + .row {margin-top:20px;}
.address-addrList .col-sm-6 {width:75%;}
.address-addrList .col-sm-6 + .col-sm-6 {width:calc(25% - 10px);margin-left:10px;}
.address-addrList .widget:first-child .w-33 + .w-33 {margin-top:10px;}
.address-addrList .btn {padding:10px 0 6px;}
.address-addrList .widget:first-child .text-right {display:grid;justify-content:end;}
.address-addrList .widget:first-child .text-right .btn {width:140px;}
.address-addrList .widget + .widget {margin-top:60px;}
.address-addrList .widget:nth-child(2) .w-33:nth-child(1) {width:75%;}
.address-addrList .widget:nth-child(2) .w-33:nth-child(2) {width:calc(25% - 10px);margin-left:10px;}
.address-addrList .widget:nth-child(2) .w-33:nth-child(3) > div {margin-top:10px;display:grid;gap:10px;justify-content:end;grid-auto-flow:column;}
.address-addrList .widget:nth-child(2) .w-33:nth-child(3) .btn {width:140px;}

.address-manage #content {width:600px;margin:0 auto;}
.address-manage h3 {margin-bottom:16px;}
.address-manage .form-group .w-33 + .w-33 {margin-top:10px;}
.address-manage .form-group .w-33 .btn-group {display:grid;justify-content:end;}
.address-manage .form-group .w-33 .btn {width:140px;padding:10px 0 6px;}
.address-manage fieldset + .row {margin-top:16px;}
.address-manage .row + .row {margin-top:40px;}
.address-manage .row .text-right {display:grid;grid-auto-flow:column;gap:0 10px;justify-content:end;}
.address-manage .row .text-right .btn {width:140px;padding:10px 0 6px;}
/** address - end */

/** payment-pay - start */
.payment-pay {padding:40px 0 120px;margin:0 auto;}
.payment-pay h4 {font-size:24px;margin-bottom:12px;}
.payment-pay h4 .fa {color:var(--color-primary1);margin-right:5px;}
.payment-pay form section + section {margin-top:40px;}
.payment-pay section:first-child input {margin-right:5px;}
.payment-pay section > .flex-wrap {display:grid;grid-auto-flow:column;grid-template-columns: 130px 1fr;gap:10px;}
.payment-pay section > .flex-wrap + .flex-wrap {margin-top:8px;border-top:1px solid #eee;padding-top:8px;}
.payment-pay section > .flex-wrap .col-2 {width:100%;padding-top:2px;white-space:nowrap;line-height:24px;}
.payment-pay section > .flex-wrap .col-10 {width:100%;}
.payment-pay section > .flex-wrap input[type="text"] {width:50% !important;}
.payment-pay section > .flex-wrap input[type="radio"] + label {margin-left:5px !important;white-space:nowrap;}
.payment-pay #divPerson + .flex-wrap {margin-top:8px;border-top:1px solid #eee;padding-top:8px;}
.payment-pay #divPerson + .flex-wrap .col-10 .flex-wrap {display:flex;align-items:center;}
.payment-pay #divPerson + .flex-wrap .col-10 .flex-wrap input[type="text"] {display:inline-block;width:auto !important;}{}
.payment-pay .flex-wrap + .text-center {display:grid;grid-auto-flow:column;gap:0 10px;margin-top:50px;border-top:1px solid #ccc;padding-top:20px;}
.payment-pay .flex-wrap + .text-center .btn {padding:10px 0 8px;}

.payment-confirm {padding:40px 0 120px;margin:0 auto;}
.payment-confirm .container {width:600px;margin:0 auto;}
.payment-confirm .container td {font-size:16px;line-height:24px;padding:10px 12px 8px;background:#f4f4f4;}
.payment-confirm .container td:first-child {background:#666;color:#fff;}
.payment-confirm .btn-area {margin-top:30px;}
.payment-confirm .btn-area .btn {padding:10px 0 8px;}

.payment-paylist .widget-header {margin-bottom:20px;}
.payment-paylist nav[aria-label*="Page"] {margin-top:30px;display:grid;justify-content:center;}
/** payment-pay - end */

/* modal start */
.modal-footer {margin-top:20px;}
.modal-footer > * {margin:0;}
.modal-footer .btn {min-width:60px;width:auto;padding:6px 10px 4px;}
#modalTxtMessageChange .flex-wrap > .form-check + .form-check {
  margin-top: 10px;
}

#modalTxtMessageChange .radio-wrap {
  margin-top: 10px;
}

#modalTxtMessageChange p {
  line-height: 30px;
}
#modalTxtMessageChange .modal-footer {
  margin-top: 20px;
}

#modalAddress .tab-content {
  margin-top: 15px;
}
#modalAddress .form-group .btn {padding:10px 10px 8px;}
#modalAddress .form-group + .form-group {
  margin-top: 15px;
}
#divScrollAddrList {margin-top:16px;}
/* modal end */

/* sendList */
.sendList-totalInformation {display:block;margin-top:30px;background:#f9f8f8;border-radius:6px;}
.sendList-totalInformation ul {display:grid;grid-auto-flow:column;justify-content:center;gap:30px;padding:17px 0;}
.sendList-totalInformation ul li {display:grid;grid-template-columns:auto auto;justify-content:center;font-size:18px;line-height:32px;color:#333;}
.sendList-totalInformation ul li .pull-left {position:relative;padding-left:11px;}
.sendList-totalInformation ul li .pull-left:before {content:'';position:absolute;left:0;top:50%;display:block;width:4px;height:4px;border-radius:4px;transform:translateY(-50%);background:#333;}
.sendList-totalInformation ul li .pull-left:after {content:':';display:inline-block;}
.sendList-totalInformation ul li .pull-right {}
/* sendList end*/


/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-pllImper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
}

.popupMain {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 700px;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 55px -25px rgb(0 0 0 / 100%);
  border: 1px solid var(--color-primary1);
}

@media screen and (max-width: 767px) {
  .popupMain {
    min-width: 65%;
    max-width: 1000px;
  }
}
.popupMain > .title{
  border-radius: 15px 15px 0 0;
  min-height: 40px;
  color: #fff;
  background-color: #D8BFD8;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: bold;
  border: 1px solid var(--color-primary1);
}
.popupMain > .content {
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid var(--color-primary1);
  border-bottom: none;
  font-size: 14px;
  font-weight: bold;
}
.popupMain > .content:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 65px;
  width: 5px;
  height: 23px;
  border-radius: 4px;
  background: var(--color-primary1);
}
.popupMain > .cmd {
  bottom: 0;
  min-height: 40px;
  padding: 15px 15px;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
  min-height: 40px;
  text-align: right;
  border: 1px solid var(--color-primary1);
  border-top: none;
}
.popupMain > .cmd .button {
  border-radius: 8px;
  padding: 5px 10px;
  border: 1px solid #aaa;
  border: 1px solid var(--color-primary1);
}
.popupMain > .cmd .button:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.main_banner_wrap {
  width: 100%;
  height: 600px;
  background: url("/images/main_banner_illust01.png") no-repeat center center;
  background-size: contain;  /* 전체가 보이게 */
  background-color: #3f0dca;    /* 여백 채울 배경색 (필요 시) */
}

/* 메인 메뉴 (상단) */
#navgroup .navg-link {
  font-family: "NotoSanskr", "Apple SD Gothic Neo", "맑은 고딕", sans-serif;
  font-weight: 700;   /* 두껍게 */
  font-size: 18px;
  color: #000;
}

/* 메인 메뉴 hover */
#navgroup .navg-link:hover {
  font-weight: 800;   /* 더 두껍게 */
  color: var(--color-primary1);
}

/* 드롭다운 메뉴 */
#navgroup .dropdown-menu .dropdown-item {
  font-family: "NotoSanskr", "Apple SD Gothic Neo", "맑은 고딕", sans-serif;
  font-weight: 600;   /* 기본보다 굵게 */
  font-size: 15px;
  color: #333;
  padding: 10px 20px; /* 간격 조금 늘려주면 통통한 글씨랑 잘 어울림 */
}

/* 드롭다운 hover */
#navgroup .dropdown-menu .dropdown-item:hover {
  font-weight: 700;
  color: var(--color-primary1);
  background-color: #f8f8f8; /* hover 시 배경 강조 */
}

.section_intro {
  padding: 80px 0;
  background: #fff;
}
.section_intro img {
  display: block;
  max-width: 1100px;  /* 메인과 통일 */
  margin: 0 auto 40px auto;
  height: auto;
}

.section_reason {
  padding: 60px 0 20px;
  text-align: center;
  background: #fff;
}
.section_reason .reason-title img {
  display: inline-block;
  max-width: 100%;  /* 반응형 */
  height: auto;     /* 비율 유지 */
}

.section_reason .icon-question {
  width: 28px;
  height: auto;
}

.section_intro img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 20px; /* 둥근 모서리 */
  box-shadow: 0 4px 20px rgba(91, 6, 6, 0.1); /* 은은한 그림자 */
}

/* 혹은 끝부분만 그라데이션 배경처럼 */
.section_intro img {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 20px;
}
/* 서비스 소개 이미지 래퍼 */
.section_intro .img-wrap {
  position: relative;
  display: block;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  border-radius: 20px;
  height: 385px;
  overflow: hidden; /* 둥근 모서리 + ::after 잘리게 */
  box-shadow: 0 4px 20px rgb(89, 85, 85);
}

.section_intro .img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* 하단 그라데이션 효과 */
.section_intro .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0; /* top:0, right:0, bottom:0, left:0 한 번에 */
  /*background: linear-gradient(to bottom, rgba(236, 15, 15, 0.5), transparent 20%, transparent 80%, rgba(241, 22, 22, 0.5)),
  linear-gradient(to right, rgba(200,200,200,0.5), transparent 20%, transparent 80%, rgba(243, 16, 16, 0.5));*/
  border-radius: 20px;
  pointer-events: none;
}

.upload-guide {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  max-width: 420px;   /* 최대 너비 제한 */
  text-align: left;   /* 글자는 좌측 정렬 유지 */
}

.upload-guide h6 {
  font-weight: 600;
  color: #333;
}

.upload-guide li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.upload-guide .badge {
  font-size: 0.8rem;
  margin-right: 6px;
  padding: 0.4em 0.6em;
  color: black;
}
