body {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  font-family: 'Noto Sans KR';
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 프로그레스바 스타일 */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  font-size: 16px;
  color: #333;
}

/* header */
body header {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  padding-top: 36px;
  z-index: 11; /* transition:all 0.1s ease; */
}
body header.home {
  background-color: transparent;
}
body header .inner {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
body header .inner div.nav {
  display: -ms-flexbox;
  display: flex;
}
body header .logo {
  flex: 1;
}
body header .logo h1 {
  height: 72px;
  padding: 18px 36px 18px 0;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}
body header .logo h1 strong {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
  white-space: nowrap;
}
body header div.nav {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  background-color: rgba(255, 255, 255, 0);
}

body header ul {
  display: -ms-flexbox;
  display: flex;
}
body header ul li {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 14px;
}
body header ul li a {
  position: relative;
  padding: 27px 20px 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
body header ul li a.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 1px;
  transform: translateY(50%);
}
.gnb {
  cursor: pointer;
}

body header ul li a span {
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  white-space: nowrap;
}

/* Language Selector */
body header .nav .language-selector {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
body header .nav .language-selector .language-select {
  padding: 8px 12px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 36px;
}
body header .nav .language-selector .language-select:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
body header .nav .language-selector .language-select option {
  background-color: #333;
  color: #fff;
}
body header.active .nav .language-selector .language-select {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}
body header.active .nav .language-selector .language-select:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
body header.active .nav .language-selector .language-select option {
  background-color: #fff;
  color: #000;
}
body header:not(.home) .nav .language-selector .language-select {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}
body header:not(.home) .nav .language-selector .language-select:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
body header:not(.home) .nav .language-selector .language-select option {
  background-color: #fff;
  color: #000;
}

body header.active {
  /* height:calc(108px - 36px); padding-top:0; */
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
body header.active .logo h1 {
  color: #000 !important;
}
body header.active li a {
  color: #000;
}
body header.active li a span {
  color: #000;
}
body header.active li a.active::before {
  background-color: #000;
}

body header:not(.home) .logo h1 {
  color: #000;
}
body header:not(.home) ul li a {
  color: #000;
}
body header:not(.home) ul li a.active::before {
  background-color: #000;
}
body header:not(.home) ul li a span {
  color: #000;
}

body header.aside_on .logo h1 {
  width: 112px;
  height: 25px;
  background-image: url('/images/web/img_appicon%403x.png') !important;
}

#__next {
  background-color: #fff;
}

@media only screen and (max-width: 1200px) {
  body header .inner {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 900px) {
  body header .logo h1 strong {
    font-size: 20px;
    white-space: nowrap;
  }
  body header ul li a {
    padding: 20px 14px 10px;
  }
  body header ul li a span {
    font-size: 18px;
    transition: font-size 0.2s ease;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 786px) {
  body header.mobile {
    height: 48px;
    padding: 6px 0;
  }
  body header.mobile h1 {
    height: 36px;
    padding: 9px 16px;
    color: #fff;
  }
  body header.mobile h1 strong {
    font-size: 0.875em;
    line-height: 1.28571em;
  }
  body header.mobile:not(.home) .logo h1 {
    color: #fff;
  }
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)) {
  /* body header.active {
	-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background: var(rgba(251,251,253,0.86));} */
}

.btn_menu_toggle {
  display: none;
  margin-right: 15px;
}
.btn_menu_toggle button {
  position: relative;
  width: 24px;
  height: 24px;
}
.btn_menu_toggle button span {
  font-size: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.btn_menu_toggle button::before,
.btn_menu_toggle button::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: all 0.2s;
}
.btn_menu_toggle button::before {
  top: 10%;
}
.btn_menu_toggle button::after {
  bottom: 10%;
}

body header.aside_on .btn_menu_toggle button span {
  width: 0;
  opacity: 0;
}
body header.aside_on .btn_menu_toggle button::before,
body header.aside_on .btn_menu_toggle button::after {
  top: 50%;
  background-color: #999 !important;
  transform: translate(-50%, -50%);
}
body header.aside_on .btn_menu_toggle button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body header.aside_on .btn_menu_toggle button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body header.active .btn_menu_toggle button span,
body header.active .btn_menu_toggle button::before,
body header.active .btn_menu_toggle button::after {
  background-color: #222;
}

@media only screen and (max-width: 720px) {
  body header .inner {
    padding-left: 20px;
  }
  body header .inner div.nav {
    display: none;
  }
}

@media only screen and (max-width: 786px) {
  .btn_menu_toggle {
    display: block;
  }

  body header .inner div.nav {
    display: none;
  }
  body header {
    height: 56px;
  }
}

div.header {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  width: 100%;
  padding: 0 60px;
  border-bottom: 0;
}

.aside {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  padding: 24px 20px 0;
  background-color: #222;
  z-index: 20;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: all 0.2s ease;
}
.aside.active {
  transform: translateX(0);
}
.aside ul {
  margin-top: 73px;
  padding: 0 20px 0 24px;
}

.aside ul li + li {
  margin-top: 24px;
}
.aside ul li a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  text-decoration: none;
}
.aside ul li a span {
  color: #fff;
  font-weight: 400;
}
.aside ul li a.active {
  font-weight: 500;
}
.aside ul li a.active::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.aside div.btn-close {
  text-align: right;
}
.aside div.btn-close button {
  position: relative;
  width: 36px;
  height: 36px;
}
.aside div.btn-close button::before,
.aside div.btn-close button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 1.5px;
  background-color: #fff;
}
.aside div.btn-close button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.aside div.btn-close button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.aside div.btn-close button span {
  color: transparent;
}

.aside .language-selector {
  margin: 20px 20px 20px 24px;
}

.aside .language-selector .language-select {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.aside .language-selector .language-select:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.aside .language-selector .language-select option {
  background-color: #222;
  color: #fff;
}

.dim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

div.layer.full {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 320px;
  min-height: 50vh;
  max-height: 80vh; /* z-index:10000; */
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  z-index: 10; /* animation-name:ani_full; animation-duration:0.2s; animation-iteration-count:1; */
}
div.layer.full .layer_content {
  height: 50vh;
  padding: 0 1.5em 1.5em;
  line-height: 1.46666em;
  font-size: 0.9375em;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
div.layer.full header {
  /* display:flex; align-items:center; justify-content:center; position:-webkit-sticky; position:sticky; */
  display: unset;
  position: relative;
  top: 0;
  width: 100%;
  height: 48px;
  line-height: 48px;
  background-color: #fff;
  text-align: center; /* transition:all 0.2s; */
}
div.layer.full header div.inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  z-index: 1000;
}
div.layer.full header.active div.inner {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.06);
}
div.layer.full header h1 {
  font-size: 18px;
  font-weight: bold;
}
div.layer.full .close {
  /* display:flex; justify-content:center; align-items:center; */
  position: fixed;
  top: 0px;
  right: 0px;
  width: 48px;
  height: 48px; /* background-color:#fff; */
  border-radius: 100%;
  color: #fff;
  font-size: 0;
  z-index: 2;
}
div.layer.full .close button {
  position: relative;
  width: 100%;
  height: 100%;
}
div.layer.full .close button::before,
div.layer.full .close button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 2px;
  background-color: #222;
}
div.layer.full .close button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
div.layer.full .close button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@keyframes ani_full {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  div.layer.full {
    left: 50%;
    top: 50%;
    width: 500px;
    height: 500px;
    min-height: auto;
    transform: translate(-50%, -50%);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
  }
  div.layer.full .layer_content {
    height: 450px;
    overflow-y: scroll;
  }
}

/* 도트 구분 */
/* 공통 */
/* slick 도트 */
.slick-slider {
  position: static;
}
.slick-arrow {
  display: none;
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  z-index: 100;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 100%;
  font-size: 0;
}

/* 메인 비주얼 영억 */
.main_visual_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/images/web/img_main_bg01.jpg') no-repeat center top / cover;
}
.main_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.main_txt div.tit,
.main_txt p.txt {
  max-width: 1200px;
  word-break: keep-all;
  text-shadow: 0 0 2px rgba(0, 0, 0, 1);
}
.main_txt div.tit {
  font-size: 48px;
  line-height: 1.3em;
  font-weight: 400;
  transition: all 0.2s ease;
}
.main_txt p.txt {
  position: relative;
  margin-top: 24px;
  padding-top: 60px;
  font-size: 20px;
  line-height: 1.6em;
}

@media only screen and (max-width: 1000px) {
  .main_txt div.tit {
    font-size: 43px;
  }
}

@media only screen and (max-width: 786px) {
  .main_visual_wrap {
    background: url('/images/web/img_main_bg01.jpg') no-repeat left 0% top / cover;
    animation: mainBgAni 16s 1s infinite ease-in-out;
  }
  .main_txt {
    top: 15%;
    transform: translate(-50%, 0);
  }
  .main_txt div.tit {
    padding: 0 20px;
    font-size: 38px;
  }
  .main_txt p.txt {
    margin-top: 19px;
    padding: 0 20px;
  }
  .main_txt p.txt br {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .main_txt div.tit {
    font-size: 28px;
  }
  .main_txt p.txt {
    font-size: 14px;
  }
}
@media only screen and (min-width: 720px) {
  .main_txt div.tit,
  .main_txt p.txt {
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 36px;
    text-align: left;
  }
}
@keyframes mainBgAni {
  0% {
    background-position: left 0 top;
  }
  10% {
    background-position: left 0 top;
  }
  40% {
    background-position: left 100% top;
  }
  50% {
    background-position: left 100% top;
  }
  60% {
    background-position: left 100% top;
  }
  90% {
    background-position: left 0 top;
  }
  100% {
    background-position: left 0 top;
  }
}
@media only screen and (max-width: 440px) {
  /* .main_txt div.tit br {display:none;} */
}
/* // 메인 비주얼 영억 */

/* 메인 하단 화살표 */
.scroll_down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.scroll_down p.txt {
  padding-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10px;
}
.scroll_down span.img {
  display: inline-block;
  width: 10vw;
  max-width: 60px;
}
@media only screen and (min-width: 720px) {
  .scroll_down {
    bottom: 72px;
  }
  .scroll_down p.txt {
    padding-bottom: 24px;
    font-size: 12px;
  }
}
/* // 메인 하단 화살표 */

/* 서비스 소개 */
.safetyfam_info_wrap {
  background-color: #efeded;
}
.safetyfam_info_wrap .item .txtGroup {
  width: 100%;
}
.safetyfam_info_wrap .item .imgGroup {
  width: 100%;
  position: relative;
  z-index: 20;
}

.safetyfam_info_wrap .safetyfam_slick_wrap {
  position: relative;
  margin: 0 auto;
}
.safetyfam_info_wrap .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.safetyfam_info_wrap .item .txtGroup {
  display: flex;
  flex-direction: column;
  gap: 11px 0;
  min-height: 225px;
  text-align: center;
  letter-spacing: -0.05em;
}
.safetyfam_info_wrap .item .txtGroup div.tit {
  color: #333;
  font-size: 24px;
  line-height: 1.5em;
}

.safetyfam_info_wrap .item .txtGroup ul {
  padding: 0.5rem 0 1rem 0;
}
.safetyfam_info_wrap .item .txtGroup ul li {
  color: #555;
  font-size: 14px;
  line-height: 1.66666em;
  font-weight: 400;
}
.safetyfam_info_wrap .item .txtGroup ul li + li {
  margin-top: 4px;
}
.safetyfam_info_wrap .item .txtGroup div.txt p {
  font-size: 18px;
  line-height: 1.44444em;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.safetyfam_info_wrap .safetyfam_slick_wrap .slick-arrow {
  width: 72px;
  height: 72px;
  z-index: 1;
  background-color: #ff5500;
}
.safetyfam_info_wrap .safetyfam_slick_wrap .slick-next {
  right: 0;
  background: url('/images/web/ico_sldarrow_right_m.png') no-repeat left top / contain;
}
.safetyfam_info_wrap .safetyfam_slick_wrap .slick-prev {
  left: 0;
  background: url('/images/web/ico_sldarrow_left_m.png') no-repeat left top / contain;
}

@media only screen and (max-width: 719px) {
  /* .safetyfam_info_wrap {height:100vh;} */
  .safetyfam_info_wrap .item {
    gap: 20px;
    min-height: calc(100vh - 48px);
    height: auto;
  }
  .safetyfam_info_wrap .item .txtGroup {
    flex: 0 0 auto;
    min-height: unset;
    padding-top: 73px;
  }
  .safetyfam_info_wrap .item .txtGroup div.txt {
    margin-top: 8px;
  }

  /* .imgGroup .img_mobile {display:block; position:relative; width:246px; height:419px; margin:0 auto; padding:1px 1px 0 1px; overflow:hidden; background-color:#f5f5f5; border-width:9px 9px 0 9px; border-color:#fff; border-style:solid; border-radius:22px 22px 0 0; box-shadow:2px 4px 8px rgba(0,0,0,0.5);}
	.imgGroup .img_mobile div.img {border-radius:12px 12px 0 0; overflow:hidden;} */
  .imgGroup .img_mobile {
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    overflow: visible;
    flex: 1;
    min-height: 0;
  }
  .imgGroup .img_mobile div.img img {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    max-height: none;
  }
  .imgGroup .img_mobile div.img {
    border-radius: 12px 12px 0 0;
    overflow: visible;
    height: auto;
  }
  .safetyfam_info_wrap .item .txtGroup div.txt p {
    padding: 0 70px;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-arrow {
    top: 74px;
    width: 48px;
    height: 48px;
    transform: translateY(0);
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-next {
    right: 20px;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-prev {
    left: 20px;
  }
  .safetyfam_info_wrap .item .imgGroup .img_mobile {
    display: block;
  }
  .safetyfam_info_wrap .item .imgGroup .img_pc {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  .safetyfam_info_wrap {
    display: flex;
    align-items: center;
    width: 100%; /* height:1080px; */
    min-height: 100vh;
    height: auto;
  }
  .safetyfam_slick_wrap {
    width: 100%;
    max-width: 1200px;
    min-height: 696px;
  }
  .safetyfam_info_wrap .item {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
  }
  .safetyfam_info_wrap .item .txtGroup {
    flex: 1;
    gap: 35px 0;
    height: auto;
    padding-left: 24px;
    text-align: left;
  }
  .safetyfam_info_wrap .item .txtGroup div.tit {
    font-size: 40px;
    line-height: 1.3em;
  }
  .safetyfam_info_wrap .item .txtGroup div.txt {
    margin-top: 20px;
  }
  .safetyfam_info_wrap .item .txtGroup div.txt p {
    font-size: 36px;
  }

  .safetyfam_info_wrap .item .imgGroup {
    position: relative;
    min-width: 640px;
    width: 640px;
    height: auto;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap {
    display: flex;
    align-items: center;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-arrow {
    top: 50%;
    width: 72px;
    height: 72px;
    z-index: 10;
    transition: transform 0.2s ease;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-prev {
    left: 0;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-next {
    right: 0;
  }
  .imgGroup .img_mobile {
    display: none;
  }
  .imgGroup .img_pc {
    display: block;
  }
  .imgGroup .img_pc div img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: none;
  }
  .imgGroup .img_pc div {
    height: auto;
    overflow: visible;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1333px) {
  .safetyfam_info_wrap .item .txtGroup {
    padding-left: 72px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1000px) {
  .safetyfam_info_wrap .item .imgGroup {
    width: 50%;
    min-width: unset;
  }
}
@media only screen and (min-width: 1344px) {
  .safetyfam_info_wrap {
    overflow-x: hidden;
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-prev {
    transform: translate(-100%, -50%);
  }
  .safetyfam_info_wrap .safetyfam_slick_wrap .slick-next {
    transform: translate(100%, -50%);
  }
}
/* // 서비스 소개 */

/* 앱 설치 */
.store_wrap {
  display: block;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #333;
  background-image: url('/images/web/img_mainbg02_m.png');
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.4);
}
.store_wrap .inner {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 8.33333vh;
  color: #fff;
}
.store_wrap .inner .txt_wrap p.txt {
  font-size: 24px;
  line-height: 1.33333em;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(0, 0, 0, 1);
  word-break: keep-all;
}
.store_wrap .inner .txt_wrap p.txt strong {
  font-weight: 700;
}
.store_wrap .app_group_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.store_wrap .app_group_wrap .app_group {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.store_wrap .app_group_wrap .app_group p.small_txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.57142em;
  font-weight: bold;
}
.store_wrap .app_group_wrap .app_group p.small_txt strong {
  font-size: 16px;
}
.store_wrap .app_group_wrap .app_group .app_store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 40px;
}
.store_wrap .app_group_wrap .app_group .app_store div.icon {
  width: 60px;
  height: 60px;
}
.store_wrap .app_group_wrap .app_group .btn_group {
  display: flex;
  padding: 23px 25px;
  border-radius: 6px;
  background-color: rgba(245, 245, 245, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}
.store_wrap .app_group_wrap .app_group .btn_group {
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}
.store_wrap .app_group_wrap .app_group .btn_group button {
  width: 152px;
}
.store_wrap .app_group_wrap .app_group .btn_group button span {
  display: block;
  line-height: 1em;
}
@media only screen and (max-width: 1200px) {
  .store_wrap .inner .txt_wrap {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 720px) {
  .store_wrap {
    height: 100vh;
    background-image: url('/images/web/img_mainbg02.jpg');
    background-position: center top;
  }
  .store_wrap .inner {
    justify-content: center;
    height: 100vh;
    row-gap: 109px;
    row-gap: 10.0925vh;
    padding: 0;
  }
  .store_wrap .inner .txt_wrap p.txt {
    font-size: 38px;
    line-height: 1.29166em;
  }
  .store_wrap .app_group_wrap {
    gap: 60px 0;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
  }
  .store_wrap .app_group_wrap .app_group {
    gap: 28px 0;
  }
  .store_wrap .app_group_wrap .app_group p.small_txt {
    font-size: 20px;
  }
  .store_wrap .app_group_wrap .app_group p.small_txt strong {
    font-size: 24px;
  }
  .store_wrap .app_group_wrap .app_group p.small_txt br {
    display: none;
  }
  .store_wrap .app_group_wrap .app_group .app_store {
    flex-direction: row;
    gap: 60px 40px;
  }
  .store_wrap .app_group_wrap .app_group .app_store div.icon {
    width: 80px;
    height: 80px;
  }
  .store_wrap .app_group_wrap .app_group .btn_group {
    flex-direction: row;
    gap: 20px;
    padding: 45px 70px;
    border-radius: 10px;
  }
  .store_wrap .app_group_wrap .app_group .btn_group button {
    width: 224px;
  }
}

@media only screen and (min-width: 440px) {
  .store_wrap .inner .txt_wrap p.txt {
    font-size: 31px;
  }
}

@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1000px) {
  .store_wrap .inner {
    padding: 0 20px;
  }
  .store_wrap .inner .txt_wrap p.txt {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1200px) {
}
/* // 앱 설치 */

/* 자녀안전지킴이 서비스 해지 */
.unaccount_wrap {
  width: 88.88888vw;
  max-width: 786px;
  margin: 0 auto;
  padding: 60px 0 76px;
}
.unaccount_wrap div.tit {
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}
.unaccount_wrap div.tit strong {
  display: inline-block;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
}
.unaccount_wrap .telecoms div.row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 18px 0;
  gap: 18px;
  border-bottom: 1px solid #ddd;
}
.unaccount_wrap .telecoms div.row strong {
  display: inline-block;
  min-width: 80px;
  font-size: 14px;
  line-height: 1.28571em;
}

.check_wrap {
  width: 100%;
}

.unaccount_wrap .telecoms div.row div.check_wrap label {
  display: inline-block;
  position: relative;
  padding-left: 2em;
  font-size: 14px;
}
.unaccount_wrap .telecoms div.row div.check_wrap label + label {
  margin-left: 12px;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input + span.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.28571em;
  height: 1.28571em;
  border: 1px solid #888;
  border-radius: 100%;
  transform: translateY(-50%);
}
.unaccount_wrap .telecoms div.row div.check_wrap label input + span.checkmark::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background-color: transparent;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input ~ span.txt {
  color: #888;
  font-weight: 400;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input:checked + span.checkmark {
  background-color: #fff;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input:checked + span.checkmark::before {
  background-color: #333;
}
.unaccount_wrap .telecoms div.row div.check_wrap label input:checked ~ span.txt {
  color: #000;
}

.unaccount_wrap .phonenumber_wrap {
  margin-top: 24px;
}
.unaccount_wrap .phonenumber_wrap div.item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 10px;
  position: relative;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
.unaccount_wrap .phonenumber_wrap div.item + div.item {
  margin-top: 24px;
}
.unaccount_wrap .phonenumber_wrap strong.tit {
  display: inline-flex;
  align-items: center;
  min-width: 80px;
  height: 36px;
  font-size: 14px;
  white-space: pre-line;
}
.unaccount_wrap .phonenumber_wrap .input_group {
  flex: 1;
  display: flex;
  gap: 0 10px;
  align-items: center;
}
.unaccount_wrap .phonenumber_wrap .input_group .ipt_set {
  flex: 1;
  display: flex;
  display: block;
  gap: 0 10px;
  position: relative;
  align-items: center;
}
.unaccount_wrap .phonenumber_wrap .input_group .ipt_set select {
  width: 100%;
  height: 36px;
  padding: 0 1em;
  border: 0 none;
  font-size: 14px;
  background-color: transparent;
}
.unaccount_wrap .phonenumber_wrap .ipt_set {
  flex: 1;
  display: flex;
  display: block;
  gap: 0 10px;
  position: relative;
  align-items: center;
}
.unaccount_wrap .phonenumber_wrap .ipt_set input {
  width: 100%;
  height: 36px;
  padding: 0 1em;
  border: 0 none;
  font-size: 14px;
}
.unaccount_wrap .phonenumber_wrap .ipt_set input::placeholder {
  color: #888;
  font-weight: 400;
}
.unaccount_wrap .phonenumber_wrap .ipt_set span.timer {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
  color: #ff0000;
  font-size: 10px;
  line-height: 1em;
}
.unaccount_wrap .phonenumber_wrap .ipt_set span.dash {
  display: block;
  width: 15px;
  position: relative;
  color: transparent;
}
.unaccount_wrap .phonenumber_wrap .ipt_set span.dash::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: translate(-50%, -50%);
}
.unaccount_wrap .phonenumber_wrap button {
  width: 68px;
  height: 36px;
  margin-left: 12px;
  background-color: #333;
  border-radius: 5px;
}
.unaccount_wrap .phonenumber_wrap button span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: pre-line;
}
.unaccount_wrap .phonenumber_wrap button:disabled {
  background-color: #ddd;
}
.unaccount_wrap .phonenumber_wrap button:disabled span {
  color: #888;
}
.unaccount_wrap .phonenumber_wrap div.item.focus {
  border-bottom-color: #000;
}
.unaccount_wrap .phonenumber_wrap p.error_txt {
  margin-top: 0.66666em;
  color: #ff0000;
  font-size: 14px;
  line-height: 1.42857em;
}
/* 리캡챠 관련 추가 */
.unaccount_wrap .phonenumber_wrap div.item .recaptcha_area {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding-left: 14px;
}
.unaccount_wrap .phonenumber_wrap div.item .recaptcha_area div.img {
  width: 160px;
  height: 36px;
  padding: 5px;
  background-color: #f2f2f2;
}
.unaccount_wrap .phonenumber_wrap div.item .recaptcha_area div.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unaccount_wrap .phonenumber_wrap div.item .recaptcha_area button.btn_refresh {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.unaccount_wrap .phonenumber_wrap div.item .recaptcha_area button.btn_refresh span {
  background: url('/images/web/btn_refresh.png') no-repeat center center / 19px auto;
  color: transparent;
  overflow: hidden;
}
/* // 리캡챠 관련 추가 */

/* 안내 문구 */
.unaccount_wrap .guide_txt {
  margin-top: 24px;
  font-size: 0.75em;
}
.unaccount_wrap .guide_txt p + p {
  margin-top: 12px;
}
.unaccount_wrap .guide_txt p.em {
  color: #ff0000;
  line-height: 1.66666em;
}
.unaccount_wrap .guide_txt p.txt {
  color: #888;
  line-height: 1.55555em;
}
@media only screen and (min-width: 720px) {
  .unaccount_wrap .guide_txt {
    margin-top: 60px;
    font-size: 1em;
  }
  .unaccount_wrap .guide_txt p + p {
    margin-top: 24px;
  }
}
/* // 안내 문구 */

/* 가입하기/해지하기 버튼 */
/* .unaccount_wrap > div.btn {margin-top:36px; text-align:center;}
.unaccount_wrap > div.btn button {width:320px; height:48px; background-color:#333;}
.unaccount_wrap > div.btn button strong {color:#fff; font-size:14px;}
@media only screen and (min-width:720px) {
	.unaccount_wrap > div.btn {margin-top:72px;}
	.unaccount_wrap > div.btn button {width:436px; height:96px; border-radius:5px;}
	.unaccount_wrap > div.btn button strong {font-size:24px;}
} */
/* // 가입하기/해지하기 버튼 */

@media only screen and (min-width: 720px) {
  .unaccount_wrap {
    padding: 92px 0 118px;
  }
  .unaccount_wrap div.tit strong {
    font-size: 40px;
  }
  .unaccount_wrap .phonenumber_wrap {
    margin-top: 0;
  }
  .unaccount_wrap .phonenumber_wrap div.item {
    padding: 20px 0;
  }
  .unaccount_wrap .phonenumber_wrap div.item + div.item {
    margin-top: 0;
  }

  .unaccount_wrap .phonenumber_wrap strong.tit {
    display: flex;
    align-items: center;
    width: 148px;
    min-width: 148px;
    height: 72px;
    font-size: 20px;
    line-height: 32px;
  }
  .unaccount_wrap .phonenumber_wrap .input_group .ipt_set select {
    height: 72px;
    font-size: 20px;
  }
  .unaccount_wrap .phonenumber_wrap .ipt_set input {
    height: 72px;
    font-size: 20px;
  }
  .unaccount_wrap .phonenumber_wrap .ipt_set span.timer {
    height: 72px;
    font-size: 18px;
  }
  .unaccount_wrap .phonenumber_wrap button {
    width: 168px;
    height: 72px;
    margin-left: 48px;
  }
  .unaccount_wrap .phonenumber_wrap button span {
    font-size: 20px;
    white-space: pre-line;
  }
  .unaccount_wrap .phonenumber_wrap p.error_txt {
    font-size: 18px;
  }
  /* 리캡챠 관련 추가 */
  .unaccount_wrap .phonenumber_wrap div.item .recaptcha_area {
    padding-left: 24px;
  }
  .unaccount_wrap .phonenumber_wrap div.item .recaptcha_area div.img {
    width: 180px;
    height: 60px;
    background-color: #f2f2f2;
  }
  .unaccount_wrap .phonenumber_wrap div.item .recaptcha_area button.btn_refresh {
    width: 60px;
    height: 60px;
    margin-left: 12px;
    border-radius: 5px;
  }
  .unaccount_wrap .phonenumber_wrap div.item .recaptcha_area button.btn_refresh span {
    background-size: 32px auto;
  }
  /* // 리캡챠 관련 추가 */

  .unaccount_wrap .telecoms div.row {
    padding: 40px 0;
  }
  .unaccount_wrap .telecoms div.row strong {
    min-width: 118px;
    font-size: 20px;
    line-height: unset;
  }
  .unaccount_wrap .telecoms div.row div.check_wrap {
    margin-left: 50px;
  }
  .unaccount_wrap .telecoms div.row div.check_wrap label {
    font-size: 20px;
  }
  .unaccount_wrap .telecoms div.row div.check_wrap label + label {
    margin-left: 36px;
  }
  .unaccount_wrap .telecoms p.txt {
    font-size: 20px;
  }
}
/* // 자녀안전지킴이 서비스 해지 */

/* 하단 공통 */
.footer_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000;
}

.footer_wrap div.footer {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 0 36px;
  color: #fff;
  font-size: 12px;
  line-height: 1.66666em;
  text-align: center;
}
.footer_wrap div.footer .inner div.row {
  width: 100%;
}
.footer_wrap div.footer .private {
  white-space: nowrap;
  cursor: pointer;
}
.footer_wrap div.footer .private span {
  position: relative;
  color: #fff;
}
.footer_wrap div.footer .private span + span {
  margin-left: 10px;
  padding-left: 11px;
}
.footer_wrap div.footer .private span + span::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.footer_wrap div.footer .private a {
  color: #fff;
  text-decoration: none;
}

.footer_wrap div.footer .co_name {
  margin-top: 24px;
}

.footer_wrap div.footer .co_info dl,
.footer_wrap div.footer .co_info dl dt,
.footer_wrap div.footer .co_info dl dd {
  display: inline-block;
}

.footer_wrap div.footer dt {
  color: #fff;
}
.footer_wrap div.footer dd,
.footer_wrap div.footer address {
  color: #888;
}

.footer_wrap div.footer dl + dl {
  position: relative;
  margin-left: 10px;
  padding-left: 11px;
}
.footer_wrap div.footer dl + dl::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.footer_wrap div.footer dt a {
  color: #fff;
  text-decoration: none;
}
.footer_wrap div.footer dd {
  padding-left: 0.75em;
}
.footer_wrap div.footer dd a {
  color: #888;
  text-decoration: none;
}

.footer_wrap div.footer div.customer {
  margin-top: 24px;
}
.footer_wrap div.footer div.copyright {
  margin-top: 24px;
  color: #888;
}

@media only screen and (max-width: 1200px) {
  .footer_wrap {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 786px) {
}

@media only screen and (min-width: 720px) {
  .footer_wrap div.footer {
    padding: 72px 0 60px;
    font-size: 18px;
    line-height: 1.77777em;
    text-align: left;
  }
  .footer_wrap div.footer .co_name {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
  }
  .footer .inner div.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer .inner div.row.row1 {
    flex-direction: row-reverse;
  }
  .footer .inner div.row.row2 {
    margin-top: 48px;
  }
  .footer_wrap div.footer .private,
  .footer_wrap div.footer .customer {
    margin-top: 0;
    width: 270px;
  }
  .footer_wrap div.footer div.customer {
    margin-top: 0;
  }
  .footer_wrap div.footer div.customer dd {
    padding-left: 0;
  }
  .footer_wrap div.footer div.copyright {
    margin-top: 24px;
  }
}
/* // 하단 공통 */

/* // 230818 수정 및 추가 */

/* 페이지 상단 비주얼 영역 */
.visual {
  position: relative;
  margin-top: 108px;
  overflow: hidden;
}
.visual_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  height: 252px;
  margin: 0 auto;
  color: #fff;
  transition: all 0.2s;
}
.visual_txt h3 {
  font-size: 48px;
  line-height: 71px;
}
.visual_txt p.txt {
  font-size: 24px;
  line-height: 36px;
}
.visual div.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background-image: url('/images/web/img_board_bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.visual div.bg.customer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background-image: url('/images/web/img_board_bg2.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media only screen and (max-width: 786px) {
  .visual {
    margin-top: 0;
  }
  .visual_txt {
    height: 161px;
    min-height: 161px;
    padding: 30px 0 0 20px;
  }
  .visual_txt h3 {
    font-size: 28px;
    line-height: 41px;
  }
  .visual_txt p.txt {
    font-size: 14px;
    line-height: 20px;
  }
  .visual div.bg {
    background-image: url('/images/web/img_board_bg_m.png');
    background-size: cover;
  }
  .visual div.bg.customer {
    background-image: url('/images/web/img_board_bg2_m.png');
    background-size: cover;
  }
}

/* 테이블 컨텐츠 */
.board_list {
  margin-top: 24px;
}
table.boardTable {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.125em;
}
table.boardTable thead tr > th,
table.boardTable thead tr > td {
  min-height: 72px;
  text-align: center;
}
table.boardTable thead th {
  padding: 1em;
  border-top: 2px solid #000;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  text-align: center;
}

table.boardTable tbody tr td {
  border-bottom: 1px solid #eee;
}
table.boardTable tbody td {
  padding: 1em 0;
  background-color: #fff;
}

table.boardTable th.list-title {
  width: 100%;
}
table.boardTable th.list-title div.default {
  display: block;
}
table.boardTable th.list-title div.mobile {
  display: none;
}

table.boardTable td {
  width: 100%;
}
table.boardTable .list-date {
  width: 200px;
}

table.boardTable td.list-title {
  padding-left: 60px;
  font-weight: 400;
}
table.boardTable td.list-date {
  font-weight: 300;
  text-align: center;
}
table.boardTable td.list-title div.default {
  display: block;
}
table.boardTable td.list-title div.mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 786px) {
  .board_list {
    margin-top: 20px;
    border-top: 1px solid #eee;
    border-top: 0;
  }
  table.boardTable {
    font-size: 1em;
  }
  table.boardTable thead {
    display: none;
  }
  table.boardTable tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  table.boardTable thead tr > td {
    min-height: auto;
  }
  table.boardTable tbody tr td.list-title {
    flex: 1;
    padding: 0.8125em 0.75em;
  }
  table.boardTable tbody tr td {
    border-bottom: 0 none;
  }
  table.boardTable td.list-date {
    display: none;
  }

  table.boardTable td.list-title div.default {
    display: none;
  }
  table.boardTable td.list-title div.mobile {
    display: block;
  }
  table.boardTable td.list-title div.mobile p.title {
    color: #222;
    font-size: 0.875em;
    line-height: 1.42857em;
  }
  table.boardTable td.list-title div.mobile span {
    display: inline-block;
    color: #888;
    font-size: 0.75em;
    line-height: 20px;
  }
}

@media screen and (max-width: 600px) {
  table.boardTable {
    font-size: 1em;
  }
}

table.dataTable {
  width: 100%;
  font-size: 1.125em;
}
table.dataTable thead tr {
  height: 70px;
}
table.dataTable thead th {
  width: 15%;
  background-color: #f9f9f9;
}
table.dataTable tbody tr {
  height: 70px;
}
table.dataTable tbody tr td {
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
table.dataTable tbody td {
  width: auto;
  padding: 1em 0;
  background-color: #fff;
  text-align: center;
}
table.dataTable tbody td:first-of-type {
  padding-left: 2em;
  text-align: left;
}
/* // 테이블 컨텐츠 */

.page_board_wrap {
  padding: 60px 0;
}

.page_search_wrap .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  min-width: 320px;
  margin: 0 auto;
}
.page_search_wrap .inner div.search_word p {
  font-size: 20px;
  font-weight: bold;
}

.page_search_wrap .inner div.search_form {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f5f5f5;
}
.page_search_wrap .inner div.search_form div input {
  padding-left: 24px;
  background-color: transparent;
  border: 0 none;
  color: #000;
  font-size: 20px;
  line-height: 60px;
  letter-spacing: -0.05em;
  width: 30vh;
}
.page_search_wrap .inner div.search_form div input::placeholder {
  color: #888;
  font-size: inherit;
}
.page_search_wrap .inner div.search_form button {
  width: 60px;
  height: 60px;
}
.page_search_wrap .inner div.search_form button span {
  display: inline-block;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1200px) {
  .page_board_wrap {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
@media screen and (max-width: 786px) {
  .page_board_wrap {
    padding: 1.875em 1.25em;
    background-color: #f5f5f5;
  }
  .page_search_wrap .inner {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .page_search_wrap .inner div.search_word p {
    font-size: 1em;
    font-weight: normal;
  }
  .page_search_wrap .inner div.search_word {
    width: 100%;
  }
  .page_search_wrap .inner div.search_form {
    width: 100%;
    border-bottom: 1.5px solid #000;
  }
  .page_search_wrap .inner div.search_form div {
    flex: 1;
  }
  .page_search_wrap .inner div.search_form div input {
    width: 100%;
    height: 40px;
    padding: 0 4px;
    font-size: 16px;
    line-height: 40px;
  }
  .page_search_wrap .inner div.search_form button {
    width: 32px;
    height: 40px;
    text-align: right;
  }
  .page_search_wrap .inner div.search_form button span {
    width: 24px;
    height: 24px;
  }
}

/* 공지사항 페이지 */
.pagination_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 72px;
  text-align: center;
}
.pagination_wrap .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pagination_wrap .pagination a {
  display: inline-block;
  margin: 0 2px;
  padding: 0 8px;
  color: black;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}
.pagination_wrap .pagination a.prev {
  margin: 0 4px;
}
.pagination_wrap .pagination a.next {
  margin: 0 4px;
}
.pagination_wrap .pagination a.active {
  font-weight: bold;
}
.pagination_wrap .pagination a img {
  display: block;
  width: 36px;
  height: 36px;
  font-size: 0;
}
.pagination_wrap button {
  width: 100%;
  height: 48px;
  background-color: #333;
  border-radius: 5px;
}
.pagination_wrap button span {
  color: #fff;
}
/* .pagination + button {margin-top:20px;}
.pagination_wrap button.btn_more {display:none;}
.pagination_wrap button.btn_prev {display:inline-block; width:216px; height:72px; background-color:transparent; border:1px solid #ddd;}
.pagination_wrap button.btn_prev span {color:#000;} */
@media screen and (max-width: 786px) {
  .pagination_wrap {
    margin-top: 20px;
  }
  .pagination_wrap .pagination {
    display: flex;
  }
  .pagination_wrap .pagination a {
    font-size: 0.875em;
  }
  .pagination_wrap .pagination a img {
    width: 24px;
    height: 24px;
  }
  /* .pagination_wrap button {border-radius:3px;}
	.pagination_wrap button.btn_more {display:none;}
	.pagination_wrap button.btn_prev {width:100%; height:48px; background-color:#333; border-color:transparent;}
	.pagination_wrap button.btn_prev span {color:#fff;} */
}
/* // 공지사항 페이지 */

/* 공지사항 데이터 없음 */

.board_list .nodata_td {
  height: 264px;
  text-align: center;
}
.board_list .nodata_td div.danoda p {
  font-size: 20px;
  line-height: 1.42857em;
}

.board_list .notfound {
  display: inline-block;
  text-align: left;
}
.board_list .notfound div.tit {
  color: #000;
  font-size: 20px;
  line-height: 1.45em;
  font-weight: bold;
}
.board_list .notfound ul {
  margin-top: 20px;
  padding-left: 12px;
}
.board_list .notfound ul li {
  position: relative;
  padding-left: 0.55555em;
  color: #999;
  font-size: 18px;
  line-height: 2em;
}
.board_list .notfound ul li::before {
  content: '·';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
}

@media screen and (max-width: 786px) {
  .board_list .nodata_td {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 398px;
    padding: 0 20px;
  }
  .board_list table.boardTable td.nodata_td {
    background-color: transparent;
  }
  .board_list .nodata_td div.nodata p {
    font-size: 14px;
  }
  .board_list .notfound div.tit {
    font-size: 14px;
  }
  .board_list .notfound ul {
    padding-left: 0;
  }
  .board_list .notfound ul li {
    font-size: 14px;
  }
}
/* // 공지사항 데이터 없음 */

/* 게시판 상세 */
.board_view {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 2px solid #000;
  border-bottom: 2px solid #ddd;
}
.board_view .board_title {
  border-bottom: 2px solid #ddd;
}
.board_view .board_title div.inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 21.5px 0;
  padding-left: 70px;
}
.board_view .board_title div.inner p {
  font-weight: 500;
  font-size: 20px;
}
.board_view .board_title div.inner span.date {
  display: block;
  width: 282px;
  font-size: 20px;
  text-align: center;
}

.board_view .board_content {
  padding: 77px 60px;
  color: #000;
  font-size: 20px;
  line-height: 2em;
}

@media screen and (max-width: 786px) {
  .board_view {
    background-color: #fff;
    border-radius: 3px;
    border-top: 0;
    border-bottom: 0;
  }
  .board_view .board_title {
    border-bottom: 1px solid #f8f8f8;
  }
  .board_view .board_title div.inner {
    display: block;
    padding: 13px 12px;
  }
  .board_view .board_title div.inner p {
    font-size: 0.875em;
  }
  .board_view .board_title div.inner span.date {
    width: auto;
    margin-top: 8px;
    color: #999999;
    font-size: 0.75em;
    line-height: 1.5em;
    text-align: left;
  }
  .board_view .board_content {
    padding: 24px 12px;
    font-size: 0.875em;
    line-height: 1.57142em;
  }
}
/* // 게시판 상세 */

/* 서비스 이용약관, 개인정보 처리방침용 팝업 */
.layer.privacy {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 960px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 11;
}
.layer.privacy .layer_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #333;
}
.layer.privacy .layer_header h2 {
  height: 60px;
  padding: 0 24px;
  color: #fff;
  font-size: 18px;
  line-height: 60px;
  text-align: left;
}
.layer.privacy .layer_header button.btn_close {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 36px;
  height: 36px;
  color: transparent;
  transform: translateY(-50%);
}
.layer.privacy .layer_header button.btn_close::before,
.layer.privacy .layer_header button.btn_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 1.5px;
  background-color: #fff;
}
.layer.privacy .layer_header button.btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.layer.privacy .layer_header button.btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.layer.privacy .carrier_tabs {
  display: flex;
  gap: 8px;
  padding: 16px 20px 16px 20px;
}
.layer.privacy .carrier_tabs button {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.layer.privacy .carrier_tabs button:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.layer.privacy .carrier_tabs button.active {
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  font-weight: 600;
}

.layer.privacy .layer_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 70.09259vh;
  padding: 36px 0;
  border: 1px solid #333;
}
.layer.privacy .layer_content div.select_wrap {
  margin: 0 36px;
  background: #f5f5f5 url('/images/web/ico_arrow_down_s.png') no-repeat center right 6px / 36px;
}
.layer.privacy .layer_content div.select_wrap select {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background-color: transparent;
  border: 0 none;
  font-size: 0.875em;
  line-height: 2.4em;
  font-family: 'Noto Sans KR';
}

.layer.privacy .layer_content .txt_content {
  margin-top: 24px;
  padding: 0 36px 36px;
  flex: 1;
  color: #555;
  font-size: 18px;
  line-height: 1.66666em;
  overflow-y: auto;
  white-space: pre-line;
  text-align: left;
}
@media screen and (max-width: 786px) {
  .layer.privacy {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: unset;
    z-index: 20;
  }
  .layer.privacy .layer_header h2 {
    height: 48px;
    font-size: 16px;
    line-height: 48px;
  }
  .layer.privacy .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }

  .layer.privacy .layer_content {
    flex: 1;
    height: auto;
    max-height: unset;
    padding: 0;
    border: 0;
    overflow-y: auto;
  }
  .layer.privacy .carrier_tabs {
    padding: 12px 16px 0;
    gap: 6px;
  }
  .layer.privacy .carrier_tabs button {
    padding: 8px 12px;
    font-size: 13px;
  }
  .layer.privacy .layer_content div.select_wrap {
    margin: 24px 24px 0;
  }
  .layer.privacy .layer_content .txt_content {
    padding: 0 24px 24px;
    font-size: 0.875em;
  }
}
/* // 서비스 이용약관, 개인정보 처리방침용 팝업 */

/* 슬라이드 인디게이터 */
.img_mobile ul.phone_inner_dot {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}
.img_mobile ul.phone_inner_dot li {
  display: inline-block;
}
.img_mobile ul.phone_inner_dot li + li {
  margin-left: 8px;
}
.img_mobile ul.phone_inner_dot li button {
  width: 6px;
  height: 6px;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.img_mobile ul.phone_inner_dot li.slick-active button {
  width: 18px;
  background-color: rgba(0, 0, 0, 1);
}

.safetyfam_slick_wrap ul.main_dot {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}
.safetyfam_slick_wrap ul.main_dot li {
  display: inline-block;
}
.safetyfam_slick_wrap ul.main_dot li + li {
  margin-left: 8px;
}
.safetyfam_slick_wrap ul.main_dot li button {
  width: 8px;
  height: 8px;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.safetyfam_slick_wrap ul.main_dot li.slick-active button {
  width: 29px;
  background-color: rgba(0, 0, 0, 1);
}
/* // 슬라이드 인디게이터 */
@media only screen and (max-width: 786px) {
  /* .safetyfam_slick_wrap ul.main_dot {display:none !important;} */
  .safetyfam_slick_wrap ul.main_dot {
    top: 48px;
    bottom: unset;
  }
}

/* 가입관련 약관동의 + a */
#section3 p.error_txt {
  margin-top: 12px;
  color: #ff0000;
  font-size: 14px;
  line-height: 1.42857em;
}
.signTab {
  display: flex;
  margin-top: 24px;
}
.signTab button {
  width: 100%;
  height: 36px;
  background-color: #ddd;
}
.signTab button span {
  color: #000;
  font-size: 14px;
  white-space: pre-line;
}
.signTab button.active {
  background-color: #333;
}
.signTab button.active span {
  color: #fff;
}

.sign_wrap {
  margin-top: 24px;
}
.sign_wrap .agree_wrap .row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 40px 0;
  gap: 10px;
}
.sign_wrap .agree_wrap .row > strong {
  display: inline-block;
  min-width: 84px;
  font-size: 14px;
  white-space: pre-line;
}

.sign_wrap .agree_wrap .check_all {
  padding-left: 3px;
}
.sign_wrap .agree_wrap .check_all label {
  display: inline-block;
  position: relative;
  padding-left: 1.75em;
}
.sign_wrap .agree_wrap .check_all label + label {
  margin-left: 12px;
}
.sign_wrap .agree_wrap .check_all label input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.sign_wrap .agree_wrap .check_all label input[type='checkbox'] + span.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125em;
  height: 1.125em;
  border: 1px solid #888;
  border-radius: 4px;
  background: url('/images/web/ico_check_s_off.png') no-repeat left top / contain;
  transform: translateY(-50%);
}
.sign_wrap .agree_wrap .check_all label input[type='checkbox'] ~ span.txt {
  color: #000;
  font-size: 0.875em;
}
.sign_wrap .agree_wrap .check_all label input[type='checkbox']:checked + span.checkmark {
  background-image: url('/images/web/ico_check_s_on.png');
}

.sign_wrap .agree_wrap .check_item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
.sign_wrap .agree_wrap .check_item div.item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.sign_wrap .agree_wrap .check_item div.item label {
  display: block;
  position: relative;
  padding-left: 2em;
}
.sign_wrap .agree_wrap .check_item div.item label input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.sign_wrap .agree_wrap .check_item div.item label input[type='checkbox'] + span.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url('/images/web/ico_check_s_off.png') no-repeat left top / contain;
  transform: translateY(-50%);
}
.sign_wrap .agree_wrap .check_item div.item label input[type='checkbox']:checked + span.checkmark {
  background-image: url('/images/web/ico_check_s_on.png');
}
.sign_wrap .agree_wrap .check_item div.item label + span.txt {
  display: inline-flex;
  align-items: center;
  height: 1.8em;
  color: #888;
  font-size: 0.75em;
  cursor: pointer;
}

@media only screen and (min-width: 720px) {
  #section3 p.error_txt {
    font-size: 22px;
    line-height: 1.1em;
  }
  .signTab {
    margin-top: 36px;
  }
  .signTab button {
    height: 72px;
  }
  .signTab button span {
    font-size: 20px;
    white-space: pre-line;
  }

  .sign_wrap .agree_wrap .row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 40px 0;
    gap: 10px;
  }
  .sign_wrap .agree_wrap .row > strong {
    min-width: 118px;
    font-size: 20px;
  }

  .sign_wrap .agree_wrap .check_wrap {
    margin-left: 50px;
  }
  .sign_wrap .agree_wrap .check_all label {
    padding-left: 2.75em;
  }
  .sign_wrap .agree_wrap .check_all label input[type='checkbox'] + span.checkmark {
    width: 1.875em;
    height: 1.875em;
  }
  .sign_wrap .agree_wrap .check_all label input[type='checkbox'] ~ span.txt {
    font-size: 20px;
  }

  .sign_wrap .agree_wrap .check_item {
    flex-direction: row;
    gap: 10px;
    margin-top: 15px;
  }
  .sign_wrap .agree_wrap .check_item div.item {
    width: calc(50% - 10px);
  }
  .sign_wrap .agree_wrap .check_item div.item label {
    padding-left: 2.75em;
    height: 2.25em;
  }
  .sign_wrap .agree_wrap .check_item div.item label input[type='checkbox'] + span.checkmark {
    width: 2.25em;
    height: 2.25em;
  }
  .sign_wrap .agree_wrap .check_item div.item label + span.txt {
    font-size: 1.125em;
  }
}
/* // 가입관련 약관동의 + a */

/* 가입/해지하기 버튼 */
.sign_wrap .tab_content .btn {
  margin-top: 40px;
  text-align: center;
}
.sign_wrap .tab_content .btn button {
  width: 100%;
  height: 48px;
  background-color: #333;
}
.sign_wrap .tab_content .btn button strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 500;
}
@media only screen and (min-width: 720px) {
  .sign_wrap .tab_content .btn {
    margin-top: 60px;
  }
  .sign_wrap .tab_content .btn button {
    width: 436px;
    height: 80px;
    border-radius: 5px;
  }
  .sign_wrap .tab_content .btn button strong {
    font-size: 20px;
  }
}
/* // 가입/해지하기 버튼 */

/* 서비스가입 알뜰폰 약관동의 */
.layer.privacy_agree {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transform: unset;
  z-index: 20;
}
.layer.privacy_agree .inner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 960px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 11;
}
.layer.privacy_agree .layer_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #333;
}
.layer.privacy_agree .layer_header h2 {
  height: 72px;
  padding: 0 24px;
  color: #fff;
  font-size: 20px;
  line-height: 72px;
  text-align: left;
}
.layer.privacy_agree button.btn_close {
  position: absolute;
  top: 34px;
  right: 24px;
  width: 36px;
  height: 36px;
  color: transparent;
}
.layer.privacy_agree button.btn_close::before,
.layer.privacy_agree button.btn_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 1.5px;
  background-color: #333;
}
.layer.privacy_agree button.btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.layer.privacy_agree button.btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.layer.privacy_agree .layer_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 70.09259vh;
  padding: 30px 0 35px;
  border: 1px solid #333;
}

.layer.privacy_agree .layer_content .privacy_agree_wrap {
  padding: 0 36px;
}
.layer.privacy_agree .layer_content .privacy_agree_wrap div.tit {
  color: #000;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.layer.privacy_agree .layer_content .checkbox_wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.layer.privacy_agree .layer_content .checkbox_wrap input[type='checkbox'] {
  width: 0;
  height: 0;
  opacity: 0;
}
.layer.privacy_agree .layer_content .checkbox_wrap span.checkmark {
  display: inline-block;
  width: 36px;
  height: 36px;
}
.layer.privacy_agree .layer_content .checkbox_wrap span.txt {
  font-size: 20px;
  line-height: 29px;
}

.layer.privacy_agree .layer_content .txt_content {
  margin: 24px 36px 0;
  padding: 0 36px 36px;
  flex: 1;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
  overflow-y: auto;
  white-space: pre-line;
  background-color: #f5f5f5;
}
.layer.privacy_agree div.btn {
  margin-top: 24px;
  text-align: center;
}
.layer.privacy_agree div.btn button {
  width: 436px;
  height: 72px;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
}
.layer.privacy_agree div.btn button span {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1em;
  font-weight: 500;
}
@media screen and (max-width: 786px) {
  .layer.privacy_agree {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transform: unset;
    z-index: 20;
  }
  .layer.privacy_agree .layer_header h2 {
    height: 48px;
    font-size: 16px;
    line-height: 48px;
  }
  .layer.privacy_agree button.btn_close {
    top: 16px;
    right: 16px;
  }

  .layer.privacy_agree .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 88.88888vw;
    height: 80vh;
    margin: 0 auto;
    background-color: #fff;
    transform: translate(-50%, -50%);
  }

  .layer.privacy_agree .layer_content {
    flex: 1;
    height: auto;
    max-height: unset;
    padding: 0;
    border: 0;
    overflow-y: auto;
  }

  .layer.privacy_agree .layer_content .privacy_agree_wrap {
    padding: 20px 20px 0 20px;
  }
  .layer.privacy_agree .layer_content .privacy_agree_wrap div.tit {
    padding-right: 36px;
    font-size: 18px;
  }
  .layer.privacy_agree .layer_content .checkbox_wrap span.checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
  }
  .layer.privacy_agree .layer_content .checkbox_wrap span.txt {
    font-size: 14px;
    line-height: 24px;
  }

  .layer.privacy_agree .layer_content .txt_content {
    margin: 20px 20px 0 20px;
    padding: 0 24px 24px;
    font-size: 0.875em;
  }
  .layer.privacy_agree div.btn {
    margin-top: 20px;
    padding: 0 20px 20px;
  }
  .layer.privacy_agree div.btn button {
    width: 100%;
    height: 48px;
    border-radius: 3px;
  }
  .layer.privacy_agree div.btn button span {
    font-size: 14px;
  }
}

/* 메인 1:1 문의 추가 */
.refund_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 1) url('/images/web/img_mainbg03.jpg') no-repeat left center / cover;
  color: #fff;
}
.refund_wrap .inner {
  max-width: 1200px;
  text-align: center;
}
.refund_wrap .inner div.tit {
}
.refund_wrap .inner div.tit strong {
  display: block;
  font-size: 2em;
  line-height: 1.46875em;
  text-align: center;
}
.refund_wrap .inner div.txt_wrap {
  margin-top: 10px;
}
.refund_wrap .inner div.txt_wrap button {
  display: inline-block;
  width: 180px;
  height: 48px;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  margin-right: 10px;
}
.refund_wrap .inner div.txt_wrap button span {
  color: #fff;
  font-size: 17px;
  line-height: 1.2em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.refund_wrap .inner div.txt_wrap span.txt {
  color: #fff;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  text-shadow: 0 0 2px rgba(0, 0, 0, 1);
}
.refund_wrap .inner div.txt_wrap span.txt br {
  display: none;
}
@media screen and (max-width: 768px) {
  .refund_wrap {
    height: 120px;
    background-position: center center;
  }
  .refund_wrap .inner div.tit strong {
    font-size: 1.125em;
  }
  .refund_wrap .inner div.txt_wrap {
    margin-top: 8px;
  }
  .refund_wrap .inner div.txt_wrap button {
    width: 120px;
    height: 32px;
  }
  .refund_wrap .inner div.txt_wrap button span {
    font-size: 12px;
    line-height: 1.2em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .refund_wrap .inner div.txt_wrap span.txt {
    font-size: 12px;
  }
  .refund_wrap .inner div.txt_wrap span.txt br {
    display: block;
  }
}
/* // 메인 1:1 문의 추가 */

.customer_form {
  padding: 96px 0 120px;
}
/* 입력폼 */
.btn_set {
  width: 100%;
  padding: 12px 24px;
}
.btn_default {
  width: 100%;
  height: 72px;
  background-color: #213da1;
  color: #fff;
}
.form_wrap {
}
.form_wrap .row {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.form_wrap .row div.tit {
  min-width: 140px;
  padding: 12px 0;
}
.form_wrap .row div.tit strong {
  display: flex;
  align-items: center;
  height: 72px;
  font-size: 20px;
}
.form_wrap .row .ipt_form {
  width: 100%;
}
.form_wrap .row .ipt_form .ipt_set {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
.form_wrap .row .ipt_form .ipt_set > div {
  flex: 1;
}
.form_wrap .row .ipt_form .ipt_set > div p.txt {
  padding-left: 24px;
  color: #999;
}
.form_wrap .row .ipt_form .ipt_set span.txt {
  display: inline-block;
  padding-right: 2.5em;
  font-size: inherit;
  line-height: 1em;
  font-weight: bold;
}
.form_wrap .row .ipt_form .ipt_set input {
  width: 100%;
  padding: 0 24px;
  font-size: 20px;
}
.form_wrap .row .ipt_form .ipt_set input::placeholder {
  font-size: 1em;
  font-weight: 400;
}
.form_wrap .row .ipt_form .ipt_set button {
  position: relative !important;
  width: auto;
  padding: 0 2em;
  border-radius: 1px;
}
.form_wrap .row .ipt_form .ipt_set button.btn_address {
  width: 140px;
  height: 72px;
  background-color: #213da1;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.form_wrap .row .ipt_form .textarea_set {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0 0;
}
.form_wrap .row .ipt_form .textarea_set > div {
  flex: 1;
}
.form_wrap .row .ipt_form .textarea_set textarea {
  width: 100%;
  height: 280px;
  padding: 24px;
  border: 1px solid #ddd;
  font-size: 20px;
  font-weight: 500;
  resize: none;
}
.form_wrap .row .ipt_form .textarea_set textarea::placeholder {
  color: #888;
  font-weight: 400;
}

.form_wrap .row .ipt_form span.dash {
  width: 30px;
  min-width: 30px;
  text-align: center;
}
.form_wrap .row .ipt_form input {
  border: 0 none;
  line-height: 72px;
}
.form_wrap .row .ipt_form input::placeholder {
  color: #999;
  font-size: 18px;
  line-height: inherit;
}
.form_wrap .row .ipt_form .ipt_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.form_wrap .row .ipt_form .select_set {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
.form_wrap .row .ipt_form .select_set select {
  position: relative;
  width: 100%;
  height: 72px;
  padding: 0 24px;
  border: 0 none;
  color: #999;
  font-size: 20px;
  background: url('/images/web/ico_arrow_u.png') no-repeat right 24px center / 36px 36px;
}
.form_wrap .row .ipt_form .select_set select option {
  background-color: #fff;
  color: #000;
}
.form_wrap .row .ipt_form .select_set select.changed {
  color: #000;
}
.form_wrap .row .ipt_form .select_set select::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #ff6600;
}

@media screen and (max-width: 768px) {
  .customer_form {
    padding: 30px 0;
  }
  .form_wrap .row {
    flex-direction: column;
  }
  .form_wrap .row div.tit {
    padding-bottom: 0;
  }
  .form_wrap .row div.tit strong {
    height: 40px;
    font-size: 0.875em;
  }
  .form_wrap .row div.tit strong br {
    display: none;
  }
  .form_wrap .row .ipt_form .ipt_set {
    padding: 0;
  }
  .form_wrap .row .ipt_form .ipt_set input {
    padding: 0;
    font-size: 0.875em;
  }
  .form_wrap .row .ipt_form .ipt_set > div p.txt {
    padding-left: 10px;
    font-size: 0.875em;
  }
  .form_wrap .row .ipt_form .ipt_set span.txt {
    font-size: 14px;
    padding-right: 0.85714em;
  }
  .form_wrap .row .ipt_form .textarea_set {
    padding: 0;
  }
  .form_wrap .row .ipt_form .textarea_set textarea {
    width: 100%;
    height: 240px;
    padding: 10px;
    font-size: 0.875em;
  }
  .form_wrap .row .ipt_form input {
    height: 40px;
  }
  .form_wrap .row .ipt_form .ipt_set button.btn_address {
    height: 40px;
    width: auto;
    padding: 0 2em;
    font-size: 14px;
  }
  .form_wrap .row .ipt_form .select_set {
    padding: 0;
  }
  .form_wrap .row .ipt_form .select_set select {
    height: 40px;
    padding: 0;
    font-size: 14px;
  }
}
/* // 입력폼 */

/* 입력폼 관련 안내 문구 */
.form_alert {
  position: relative;
  padding: 10px 24px;
}
.form_alert p {
  position: relative;
  color: #555555;
  font-size: 1em;
  line-height: 1.75em;
}
.form_alert p.em {
  padding-bottom: 0.625em;
  color: #ff0000;
}
.form_alert p.txt {
  padding-left: 0.6875em;
}
.form_alert p.txt span {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.form_alert button.btn_tooltips {
  display: inline-flex;
  align-items: center;
  height: 1.5em;
  color: #999;
  font-size: 16px;
}
.form_alert button.btn_tooltips span {
}
.form_alert button.btn_tooltips span.icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.form_alert button.btn_tooltips span.icon img {
}
.form_alert button.btn_tooltips span.txt {
  display: inline-block;
  color: #999;
  font-size: 16px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .customer_form {
    padding: 20px;
  }
  .form_alert {
    padding: 4px 0;
  }
  .form_alert p {
    font-size: 0.75em;
  }
  .form_alert button.btn_tooltips {
    font-size: 14px;
  }
  .form_alert button.btn_tooltips span.icon {
    width: 20px;
    height: 20px;
  }
  .form_alert button.btn_tooltips span.txt {
    font-size: 14px;
    line-height: 1.42857em;
  }
}
/* // 입력폼 관련 안내 문구 */

/* 약관 동의 */
.customer_form .agree_wrap {
  margin-top: 2em;
}
.customer_form .agree_wrap div.chk_all {
  display: flex;
  align-items: center;
  gap: 0 0.875em;
  padding: 1em 1.5em;
  border: 1px solid #ddd;
}
.customer_form .agree_wrap div.chk_all button {
  display: inline-block;
}

.customer_form .agree_wrap input[type='text'] {
  border: 1px solid #ddd;
}
.customer_form .agree_wrap input[type='text']:optional {
  background-color: #f7f7f7;
} /* 선택옵션 */
.customer_form .agree_wrap input[type='text']:required {
  background-color: #ff0000;
} /* 필수옵션 */

.customer_form .agree_wrap label {
  display: inline-block;
  position: relative;
  padding-left: 2.375em;
  line-height: 1.75em;
  cursor: pointer;
}
.customer_form .agree_wrap label input[type='checkbox'] {
  position: absolute;
  width: 0;
  height: 0;
  border: 0 none;
  opacity: 0;
}
.customer_form .agree_wrap label input[type='checkbox'] + span.checkmark {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75em;
  height: 1.75em;
  background: url('/images/web/ico_check_on.png') no-repeat left top / contain;
  border: 1px solid #989898;
  vertical-align: top;
}
.customer_form .agree_wrap label input[type='checkbox']:checked + span.checkmark {
  /* border-color:#242424; */
  border: 0;
  background-color: #fff;
  background-image: url('/images/web/ico_check_s_on.png');
}
.customer_form .agree_wrap label em {
  margin-left: 0.25em;
  color: #ff0000;
}
.customer_form .agree_wrap label span.txt {
  display: inline-block;
  line-height: 1.75em;
  word-break: keep-all;
}

.customer_form .agree_wrap div.chk_all label {
  padding-left: 0;
}
.customer_form .agree_wrap div.chk_all label input[type='checkbox'] + span.checkmark {
  position: relative;
  border-radius: 100%;
}
.customer_form .agree_wrap div.chk_all label input[type='checkbox']:checked + span.checkmark {
  background-color: #000;
  background-image: url('/images/web/ico_check_on.png');
}
.customer_form .agree_wrap div.chk_all span.txt {
  width: 28px;
  height: 28px;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

.customer_form .agree_wrap .btn_group {
  margin-top: 72px;
  text-align: center;
}
.customer_form .agree_wrap .btn_group button {
  width: 284px;
  height: 80px;
  background-color: #333333;
  border-radius: 5px;
}
.customer_form .agree_wrap .btn_group button span {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .customer_form .agree_wrap {
    font-size: 0.875em;
  }
  .customer_form .agree_wrap div.chk_all {
    padding: 1em 1.25em;
  }
  .customer_form .agree_wrap div.chk_all span.txt {
    font-size: 14px;
  }
  .customer_form .agree_wrap div.chk_all label {
    display: flex;
    align-items: center;
    gap: 0 10px;
  }
  .customer_form .agree_wrap div.chk_all label input[type='checkbox'] + span.checkmark {
    width: 18px;
    height: 18px;
  }

  .customer_form .agree_wrap .btn_group {
    margin-top: 30px;
  }
  .customer_form .agree_wrap .btn_group button {
    width: 100%;
    height: 48px;
    border-radius: 4px;
  }
  .customer_form .agree_wrap .btn_group button span {
    font-size: 14px;
  }
}

/* 환불 페이지 */
* {
  box-sizing: border-box;
  font-family: 'Noto Sans KR';
  margin: 0;
  padding: 0;
  list-style: none;
  outline: 0;
}
input,
select,
button {
  border: 0 none;
  background-color: transparent;
}

.close_account_wrap div.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  height: 56px;
  background-color: #fff;
  z-index: 1;
}
.close_account_wrap div.header h2 {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.close_account_wrap div.header button.btn_close {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  overflow: hidden;
}
.close_account_wrap div.header button.btn_close::before,
.close_account_wrap div.header button.btn_close::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1.5px;
  border-radius: 1.5px;
  background-color: #000;
}
.close_account_wrap div.header button.btn_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.close_account_wrap div.header button.btn_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close_account_wrap div.header button.btn_close span {
  position: relative;
  z-index: -1;
  color: transparent;
}

/* 안내 텍스트 */
.guide_txt {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
  padding: 18px;
  background-color: #f8f8f8;
}
.guide_txt div.tit {
}
.guide_txt div.tit strong {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
.guide_txt div.txt_wrap p {
  position: relative;
  padding-left: 9px;
  color: #000;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  word-break: keep-all;
}
.guide_txt div.txt_wrap p a {
  color: #000;
}
.guide_txt div.txt_wrap p::before {
  content: '·';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
}

/* // 안내 텍스트 */

/* 약관 동의 */
.chk_wrap {
  padding: 12px 18px 20px;
}
.chk_wrap div {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.chk_wrap label {
  display: inline-block;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 24px;
  height: 24px;
}
.chk_wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.chk_wrap label span.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-10px, -10px);
  border: 1px solid #ddd;
  border-radius: 100%;
}
.chk_wrap label span.checkmark::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 30%;
  border-width: 0 0 2px 2px;
  border-style: solid;
  border-color: #ddd;
  transform: translate(-50%, -75%) rotate(-45deg);
}
.chk_wrap label input:checked + span.checkmark,
.chk_wrap label input:checked + span.checkmark::before {
  border-color: #009ddf;
}
.chk_wrap button {
  width: auto;
  height: 20px;
  line-height: 1em;
}
.chk_wrap button span {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
/* // 약관 동의 */

/* 페이지 입력폼 */
.input_form {
  padding-bottom: 20px;
}
.input_form .form_tit {
  padding: 10px 18px;
  background-color: #f8f8f8;
}
.input_form .form_tit strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.input_form div.list {
  padding: 0 18px;
}
.input_form div.list .item {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 20px 0 21px;
  border-bottom: 1px solid #ddd;
}
.input_form div.list .item div.tit {
  min-width: 60px;
}
.input_form div.list .item div.tit strong,
.input_form div.list .item div.tit span {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.input_form div.list .item div.tit strong {
  color: #000;
}
.input_form div.list .item div.tit span {
  color: #ff0000;
}
.input_form div.list .item div.tit select {
  background: url('/images/web/btn_arrow_list_d.png') no-repeat right center / 18px 18px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.input_form div.list .item div.tit select option {
  color: #000;
}
.input_form div.list .item div.set_ipt {
  flex: 1;
}
.input_form div.list .item div.set_ipt input {
  width: 100%;
  height: 20px;
  border: 0 none;
  background-color: #fff;
  outline: 0;
}
.input_form .txt_wrap {
  padding: 12px 18px 0;
}
.input_form .txt_wrap p {
  font-size: 12px;
  line-height: 15px;
}
.input_form .txt_wrap p.em {
  color: #ff0000;
}

.btn_group button {
  width: 100%;
  height: 48px;
  line-height: 1em;
}
.btn_group button.btn_next {
  background-color: #333333;
}
.btn_group button.btn_next span {
  color: #fff;
}
.btn_group button.btn_cancel {
  background-color: #eff0f2;
}
.btn_group button.btn_cancel span {
  color: #333333;
}
.btn_group button span {
  display: block;
  font-size: 16px;
  line-height: 24px;
}
/* // 페이지 입력폼 */

/* 약관 보기 팝업 */
.layer.full {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.layer.full div.inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.layer.full div.layer_header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 56px;
  padding: 0 42px;
  background-color: #fff;
  text-align: center;
}
.layer.full div.layer_header h2 {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.layer.full div.layer_header button.btn_close {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  overflow: hidden;
}
.layer.full div.layer_header button.btn_close::before,
.layer.full div.layer_header button.btn_close::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1.5px;
  border-radius: 1.5px;
  background-color: #000;
}
.layer.full div.layer_header button.btn_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.layer.full div.layer_header button.btn_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.layer.full div.layer_header button.btn_close span {
  position: relative;
  z-index: -1;
  color: transparent;
}
.layer.full div.layer_body {
  flex: 1;
  padding: 20px 18px;
  background-color: #f8f8f8;
  font-size: 12px;
  line-height: 22px;
  overflow-y: auto;
}

/* 얼랏형 팝업 */
.layer {
  position: relative;
  z-index: 2;
}
.layer div.dim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.layer.alert {
  text-align: center;
}

.layer.alert .layer_inner {
  min-width: 280px;
  max-width: 320px;
  width: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.375em;
  color: inherit;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.layer.alert .layer_inner .layer_content {
  padding: 36px 18px;
}
.layer.alert .layer_content p.txt {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}

/* 얼랏 형 닫기 */
.layer.alert .layer_inner div.close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
}
.layer.alert .layer_inner div.close button {
  position: relative;
  width: 20px;
  height: 20px;
  color: transparent;
  overflow: hidden;
}
.layer.alert .layer_inner div.close button::before,
.layer.alert .layer_inner div.close button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.layer.alert .layer_inner div.close button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.layer.alert .layer_inner div.close button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 레이어 팝업 하단 버튼 공통 */
.layer .btn_group {
  display: flex;
  justify-content: space-between;
  border-top: 0.5px solid #e7e7e7;
}
.layer .btn_group div {
  width: 100%;
}
.layer .btn_group div button {
  height: 3.75em;
  line-height: 1em;
}
.layer .btn_group div button span {
  display: block;
  font-size: 1.125em;
}
.layer .btn_group div button.btn_next span {
  color: #fff;
}
.layer .btn_group div button.btn_close span {
  color: #000;
}

/* 국가코드 관련 css 수정 적용 */
.iti__flag-container {
  height: 36px !important;
}

/* 버튼 구조를 div처럼 보이도록 스타일 조정 */
.iti__selected-country {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  min-width: 90px !important;
  height: 36px !important;
}

.iti__selected-country-primary {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.iti__arrow {
  position: relative !important;
  width: 20px !important;
  height: 20px !important;
  border: 0 none !important;
  margin: 0 !important;
}
.iti__arrow::before {
  content: '' !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  background: url('/images/web/ico_arrow_down.png') no-repeat left top / contain !important;
}
.iti--separate-dial-code .iti__selected-flag {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 6px !important;
  background-color: transparent !important;
  min-width: 90px !important;
  height: 36px !important;
  padding: 0 0 0 12px !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
  flex: 1 !important;
  margin: 0 !important;
  font-size: 14px !important;
}

/* 검색 입력 필드 스타일 */
.iti__search-input {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ccc !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
}

/* 국가 리스트 스타일 */
.iti__country-list {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2) !important;
}

.iti__country {
  background-color: #fff !important;
  color: #000 !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05) !important;
}

@media only screen and (min-width: 720px) {
  .iti__flag-container {
    height: 72px !important;
  }
  .iti--separate-dial-code .iti__selected-flag {
    min-width: 100px !important;
    height: 72px !important;
    padding: 0 10px !important;
  }
  .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 20px !important;
  }
}

/* 해외향 css 추가 */
body header .nav_lang {
  position: relative;
  padding: 27px 20px 16px;
}

.nav_lang .btn_lang {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 30px;
  border: 1px solid #b2b2b2;
  border-radius: 15px;
}
.nav_lang .btn_lang {
  display: block;
  color: #b2b2b2;
  font-size: 20px;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: -0.025em;
  text-align: center;
}

body header.active button.btn_lang {
  border-color: #000;
}
body header.active button.btn_lang {
  color: #000;
}

body header:not(.home) button.btn_lang {
  border-color: #000;
}
body header:not(.home) button.btn_lang {
  color: #000;
}

/* 국가코드 관련 css 수정 적용 */
.iti__flag-container {
  height: 36px;
}
.iti__arrow {
  position: relative;
  width: unset;
  height: unset;
  border: 0 none;
  margin: 0;
  width: 20px;
  height: 20px;
}
.iti__arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/images/web/ico_arrow_down.png') no-repeat left top / contain;
}
.iti--separate-dial-code .iti__selected-flag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  background-color: transparent !important;
  min-width: 90px;
  height: 36px;
  padding: 0 0 0 12px;
}
.iti--separate-dial-code .iti__selected-dial-code {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

@media only screen and (min-width: 720px) {
  .iti__flag-container {
    height: 72px;
  }
  /* .iti__arrow::before {width:30px; height:30px;} */
  .iti--separate-dial-code .iti__selected-flag {
    min-width: 100px;
    height: 72px;
    padding: 0 10px;
  }
  .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 20px;
  }
}
/* // 국가코드 관련 css 수정 적용 */

/* 해외버전 계정 삭제 영역 */
.del_account_wrap {
  max-width: 786px;
  margin: 0 auto;
  padding: 90px 0;
}
.del_account_wrap div.tit strong {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #111;
  color: #111;
  font-size: 40px;
  line-height: 1.5em;
  font-weight: bold;
}

.del_account_wrap .alert_txt_list {
  margin-bottom: 20px;
}
.del_account_wrap .alert_txt_list p.txt {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.del_account_wrap .alert_txt_list ul {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.del_account_wrap .alert_txt_list ul li {
  text-align: left;
}
.del_account_wrap .alert_txt_list ul li p {
  position: relative;
  padding-left: 0.75em;
  font-size: 1em;
  line-height: 1.25em;
  letter-spacing: 0;
}
.del_account_wrap .alert_txt_list ul li p::before {
  content: '·';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
  text-align: center;
}
.del_account_wrap .alert_txt_list ul li p.em {
  color: red;
}
@media only screen and (max-width: 720px) {
  .del_account_wrap {
    padding: 60px 0;
  }
  .del_account_wrap .alert_txt_list p.txt {
    font-size: 16px;
    word-break: keep-all;
  }
  .del_account_wrap .alert_txt_list ul li p {
    font-size: 0.875em;
  }
}

/* 계정 정보 입력 */
.del_account_wrap .form_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.del_account_wrap .form_wrap .row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 72px;
}
.del_account_wrap .form_wrap .row strong.tit {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  height: 72px;
  font-size: 20px;
  white-space: pre-line;
  padding-right: 20px;
}
.del_account_wrap .form_wrap .row .form_con {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label {
  display: inline-block;
  position: relative;
  padding-left: 2em;
  font-size: 20px;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input + span.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.28571em;
  height: 1.28571em;
  border: 1px solid #888;
  background-color: #fff;
  border-radius: 100%;
  transform: translateY(-50%);
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input + span.checkmark::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background-color: transparent;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input ~ span.txt {
  display: inline-block;
  color: #888;
  font-size: 20px;
  font-weight: 400;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input:checked + span.checkmark {
  background-color: #fff;
}
.del_account_wrap
  .form_wrap
  .row
  .form_con
  .check_wrap
  label
  input:checked
  + span.checkmark::before {
  background-color: #333;
}
.del_account_wrap .form_wrap .row .form_con .check_wrap label input:checked ~ span.txt {
  color: #000;
}

@media only screen and (max-width: 720px) {
  .del_account_wrap {
    padding: 20px;
  }
  .del_account_wrap div.tit strong {
    border-width: 1px;
    font-size: 24px;
  }
  .del_account_wrap .form_wrap {
    gap: 20px;
  }
  .del_account_wrap .form_wrap .row {
    flex-direction: column;
    gap: 12px;
    min-height: auto;
  }
  .del_account_wrap .form_wrap .row strong.tit {
    min-width: auto;
    height: auto;
    min-height: 36px;
    font-size: 16px;
  }
  .del_account_wrap .form_wrap .row .form_con {
  }
  .del_account_wrap .form_wrap .row .form_con .check_wrap {
  }
  .del_account_wrap .form_wrap .row .form_con .check_wrap label {
    font-size: 20px;
  }
  .del_account_wrap .form_wrap .row .form_con .check_wrap label input {
  }
  .del_account_wrap .form_wrap .row .form_con .check_wrap label input + span.checkmark {
  }
  .del_account_wrap .form_wrap .row .form_con .check_wrap label input ~ span.txt {
    font-size: 14px;
  }
}
/* // 계정 정보 입력 */

.del_account_wrap .phonenumber_wrap_test {
  padding: 20px 0;
}
.del_account_wrap .phonenumber_wrap_test .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.del_account_wrap .phonenumber_wrap_test .item strong.tit {
  font-size: 14px;
}
.del_account_wrap .phonenumber_input_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set > div:first-of-type {
  flex: 1;
  width: 100%;
  height: 36px;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set input {
  width: 100%;
  height: 36px;
  padding: 0 0 0 10px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 14px;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set button {
  width: 76px;
  height: 36px;
  background-color: #333;
  border-radius: 5px;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set button span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set button:disabled {
  background-color: #ddd;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set button:disabled span {
  color: #888;
}
.del_account_wrap .phonenumber_input_wrap .ipt_set span.timer {
  width: 76px;
  color: red;
  font-size: 12px;
  text-align: center;
}
.del_account_wrap .ipt_set .iti {
  width: 100%;
}

@media only screen and (min-width: 720px) {
  .del_account_wrap .phonenumber_wrap_test {
    padding: 0;
  }
  .del_account_wrap .phonenumber_wrap_test .item {
    gap: 20px;
    padding: 20px 0;
  }
  .del_account_wrap .phonenumber_wrap_test .item strong.tit {
    display: inline-flex;
    align-items: center;
    min-width: 118px;
    font-size: 20px;
    line-height: unset;
  }
  .del_account_wrap .phonenumber_input_wrap {
    flex: 1;
    gap: 10px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set {
    gap: 10px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set > div:first-of-type {
    height: 72px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set input {
    height: 72px;
    padding: 0 20px;
    font-size: 20px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set button {
    width: 168px;
    height: 72px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set button span {
    font-size: 20px;
  }
  .del_account_wrap .phonenumber_input_wrap .ipt_set span.timer {
    width: 168px;
    font-size: 1em;
  }
}

/* 가입/해지하기 버튼 */
.del_account_wrap .btn {
  margin-top: 40px;
  text-align: center;
}
.del_account_wrap .btn button {
  width: 100%;
  height: 48px;
  background-color: #333;
}
.del_account_wrap .btn button strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 500;
}
@media only screen and (min-width: 720px) {
  .del_account_wrap .btn {
    margin-top: 60px;
  }
  .del_account_wrap .btn button {
    width: 436px;
    height: 80px;
    border-radius: 5px;
  }
  .del_account_wrap .btn button strong {
    font-size: 20px;
  }
}
