@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
body {
  font-family: "Pretendard Variable", sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

/* ===== 모바일 네비 열렸을 때 스크롤 방지 ===== */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

header {
  overflow-x: hidden;
}
header .h_top {
  width: 100%;
  height: 45px;
  background: #333;
  text-align: center;
  color: #fff;
}
header .h_top > .slide_wrapper {
  position: relative;
  width: 450px;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
}
header .h_top > .slide_wrapper > .h_slide {
  width: 1350px;
  display: flex;
  position: absolute;
  left: 0px;
  top: 0px;
}
header .h_top > .slide_wrapper > .h_slide > li {
  width: 450px;
}
header .h_top > .slide_wrapper > .h_slide > li > div {
  line-height: 40px;
  font-size: 0.75rem;
}
header .h_top .btn-group {
  cursor: pointer;
}
header .h_top .btn-group > .fa-angle-left {
  position: absolute;
  top: 10px;
  left: 0px;
}
header .h_top .btn-group > .fa-angle-right {
  position: absolute;
  top: 10px;
  right: 0px;
}
header .h_bottom {
  width: 100%;
  height: 80px;
  top: 45px;
  left: 0;
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid #aaa;
  background: rgba(255, 255, 255, 0.8);
  z-index: 200;
}
header .h_bottom .h_inner {
  max-width: 1480px;
  height: 80px;
  padding: 25px 0;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .h_bottom .h_inner .btn-menu-open {
  display: none;
}
header .h_bottom .h_inner h1 {
  width: 150px;
  height: 30px;
}
header .h_bottom .h_inner h1 > a {
  display: inline-block;
}
header .h_bottom .h_inner h1 > a img {
  width: 100%;
  height: 100%;
}
header .h_bottom .h_inner .gnb > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .h_bottom .h_inner .gnb > ul > li {
  position: relative;
}
header .h_bottom .h_inner .gnb > ul > li > a {
  padding: 20px 20px;
  font-weight: 500;
  font-size: 1.25rem;
}
header .h_bottom .h_inner .gnb > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 80%;
  height: 2px;
  background: #00BAC6;
  transform: translateX(-50%) scaleX(0);
  transition: 0.3s;
}
header .h_bottom .h_inner .gnb > ul > li > a:hover {
  color: #00BAC6;
}
header .h_bottom .h_inner .gnb > ul > li > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
header .h_bottom .h_inner .gnb > ul > li .sub {
  display: block;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 0;
  z-index: 999;
}
header .h_bottom .h_inner .gnb > ul > li .sub > li {
  width: 100%;
}
header .h_bottom .h_inner .gnb > ul > li .sub > li > a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
  font-size: 1rem;
  color: #555;
}
header .h_bottom .h_inner .gnb > ul > li .sub > li > a:hover {
  color: #000;
  text-decoration: underline;
}
header .h_bottom .h_inner .icon_box {
  width: 130px;
}
header .h_bottom .h_inner .icon_box ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .h_bottom .h_inner .icon_box ul li {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  /* 장바구니 숫자 뱃지 */
}
header .h_bottom .h_inner .icon_box ul li img {
  width: 100%;
  height: 100%;
  display: block;
}
header .h_bottom .h_inner .icon_box ul li .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #00BAC6;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
header .h_bottom.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
}
header .search-layer {
  position: absolute;
  left: 0;
  top: 125px;
  border: 1px solid #333;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  display: none;
  z-index: 9000;
  overflow-y: auto;
  /* 내부 패널 */
}
header .search-layer > .search-layer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  /* 검색 박스 */
}
header .search-layer > .search-layer-inner .search-box {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 50px;
  padding: 20px 30px;
}
header .search-layer > .search-layer-inner .search-box .search-input {
  flex: 1;
  border: none;
  font-size: 1.875rem;
  background: none;
  outline: none;
}
header .search-layer > .search-layer-inner .btn-search-close,
header .search-layer > .search-layer-inner .btn-search-submit {
  font-size: 1.875rem;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}
header .search-layer > .search-layer-inner .search_content {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  line-height: 30px;
}
header .search-layer.fixed {
  position: fixed !important;
  left: 0;
  top: 80px !important;
}

.mobile_nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99999;
  /* 상단 버튼 */
  /* 로그인 / 회원가입 */
}
.mobile_nav .mobile_nav_inner {
  width: 90%;
  max-width: 767px;
  height: 100%;
  background: #fff;
  padding: 24px;
  box-sizing: border-box;
  transform: translateX(-100%);
  /* 숨김 상태 */
  transition: 0.35s ease;
}
.mobile_nav.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile_nav.active .mobile_nav_inner {
  transform: translateX(0);
  /* 왼쪽에서 등장 */
}
.mobile_nav .nav_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile_nav .nav_top .btn-menu-close {
  background: none;
  border: none;
  font-size: 1.875rem;
  cursor: pointer;
}
.mobile_nav .nav_top .cart-icon {
  position: relative;
  font-size: 1.5rem;
}
.mobile_nav .nav_top .cart-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #00BAC6;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
}
.mobile_nav .nav_member {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  margin-bottom: 30px;
}
.mobile_nav .nav_member a {
  font-size: 1rem;
  color: #333;
}
.mobile_nav .nav_menu {
  /* 상위 메뉴 항목 */
}
.mobile_nav .nav_menu .has-sub {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  /* MEN / WOMEN / ... 제목행 */
  /* 서브 메뉴 (슬리퍼/샌들 등) — 기본 접힘 상태 */
  /* ========= 열렸을 때(open) 상태 ========= */
}
.mobile_nav .nav_menu .has-sub .menu_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_nav .nav_menu .has-sub .menu_title span {
  font-size: 1.125rem;
  color: #333;
}
.mobile_nav .nav_menu .has-sub .menu_title .toggle {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}
.mobile_nav .nav_menu .has-sub .sub_menu {
  max-height: 0;
  /* 기본 접힘 */
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 10px;
  /* 들여쓰기 */
}
.mobile_nav .nav_menu .has-sub .sub_menu li {
  padding: 10px 0;
}
.mobile_nav .nav_menu .has-sub .sub_menu li a {
  font-size: 1rem;
  color: #555;
}
.mobile_nav .nav_menu .has-sub.open .sub_menu {
  max-height: 500px;
  /* 충분한 높이 */
}
.mobile_nav .nav_menu .has-sub.open .menu_title .toggle {
  transform: rotate(45deg);
  /* + → X 모양 */
}

footer {
  position: relative;
  color: #fff;
  margin: 0 auto;
}
footer .footer_top {
  padding: 50px 0px;
  background: #333;
  margin: 0 auto;
}
footer .footer_top .f_inner_top {
  max-width: 1480px;
  padding: 0px 30px;
  padding-bottom: 65px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
footer .footer_top .f_inner_top .footer_sns {
  display: flex;
}
footer .footer_top .f_inner_top .footer_sns li {
  padding-right: 24px;
}
footer .footer_top .f_inner_top .footer_sns li a {
  font-size: 1.5rem;
  padding: 0px 2px;
}
footer .footer_top .f_inner_top .footer_sns li a i {
  font-size: 1.25rem;
}
footer .footer_top .f_lnb {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0px 30px;
}
footer .footer_top .f_lnb ul {
  display: flex;
  gap: 36px;
  font-size: 1.25rem;
}
footer .footer_top h4 {
  padding-bottom: 36px;
  font-size: 1.25rem;
  font-weight: 600;
}
footer .footer_top ul li:not(:last-child) {
  padding-bottom: 24px;
}
footer .footer_top .txt_color {
  color: #00BAC6;
}
footer .footer_bottom {
  background: #000;
  font-size: 1rem;
}
footer .footer_bottom .f_bottom_inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0px 30px;
}
footer .footer_bottom .f_bottom_inner address {
  padding: 80px 0px;
  font-style: normal;
  display: flex;
  width: 77%;
  justify-content: space-between;
}
footer .footer_bottom .f_bottom_inner address .customer {
  padding-top: 68px;
}
footer .footer_bottom .f_bottom_inner address h4 {
  padding-bottom: 48px;
  font-size: 1.25rem;
  font-weight: 600;
}
footer .footer_bottom .f_bottom_inner address ul li:not(:last-child) {
  padding-bottom: 18px;
}
footer .footer_bottom .f_bottom_inner address .bank span {
  display: inline-block;
  width: 55px;
  padding-right: 24px;
  font-weight: 600;
}
footer .footer_bottom .f_bottom_inner address .info span,
footer .footer_bottom .f_bottom_inner address .customer span {
  display: inline-block;
  width: 125px;
  padding-right: 24px;
  font-weight: 600;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}

.time_info {
  line-height: 1.3rem;
}

/* --- PC: 1480px 이하 --- */
@media screen and (min-width: 1025px) and (max-width: 1480px) {
  header {
    width: 100%;
  }
  header .h_bottom .h_inner {
    max-width: 1025px;
    width: 100%;
  }
  header .h_bottom .h_inner h1 > a img {
    width: 90%;
  }
  header .h_bottom .h_inner .gnb {
    display: flex;
    justify-content: center;
  }
  header .h_bottom .h_inner .gnb > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  header .h_bottom .h_inner .gnb > ul > li {
    position: relative;
    text-align: center;
  }
  header .h_bottom .h_inner .gnb > ul > li > a {
    padding: 10px;
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
  }
  header .h_bottom .h_inner .gnb > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 80%;
    height: 2px;
    background: #00BAC6;
    transform: translateX(-50%) scaleX(0);
    transition: 0.3s;
  }
  header .h_bottom .h_inner .gnb > ul > li > a:hover {
    color: #00BAC6;
  }
  header .h_bottom .h_inner .gnb > ul > li > a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li {
    width: 100%;
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li > a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 0.813rem;
    color: #555;
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li > a:hover {
    color: #000;
    text-decoration: underline;
  }
  header .h_bottom .h_inner .icon_box {
    width: 100px;
  }
  header .h_bottom .h_inner .icon_box ul {
    display: flex;
    justify-content: space-between;
  }
  header .h_bottom .h_inner .icon_box ul li {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  header .h_bottom .h_inner .icon_box ul li img {
    width: 100%;
    height: 100%;
  }
  header .search-layer {
    /* 내부 패널 */
  }
  header .search-layer > .search-layer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
    /* 검색 박스 */
  }
  header .search-layer > .search-layer-inner .search-box {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 50px;
    padding: 10px 20px;
  }
  header .search-layer > .search-layer-inner .search-box .search-input {
    flex: 1;
    border: none;
    font-size: 1.25rem;
    background: none;
    outline: none;
  }
  header .search-layer > .search-layer-inner .btn-search-close,
  header .search-layer > .search-layer-inner .btn-search-submit {
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    margin-left: 5px;
  }
  header .search-layer > .search-layer-inner .search_content {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    line-height: 30px;
  }
  header .search-layer.fixed {
    left: 0;
    top: 80px !important;
  }
}
/* --- Tablet: 1024px 이하 --- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    width: 100%;
  }
  header .h_bottom {
    font-size: 0.813rem;
  }
  header .h_bottom .h_inner {
    max-width: 768px;
    width: 100%;
    gap: 30px !important;
  }
  header .h_bottom .h_inner h1 {
    width: 150px;
    height: 30px;
  }
  header .h_bottom .h_inner h1 > a {
    display: inline-block;
  }
  header .h_bottom .h_inner h1 > a img {
    width: 100%;
    height: 100%;
  }
  header .h_bottom .h_inner .gnb {
    width: 100%;
  }
  header .h_bottom .h_inner .gnb > ul {
    width: 100%;
    gap: 10px;
  }
  header .h_bottom .h_inner .gnb > ul > li {
    position: relative;
    text-align: center;
  }
  header .h_bottom .h_inner .gnb > ul > li > a {
    padding: 10px;
    font-weight: 500;
    font-size: 1rem !important;
    text-align: center;
  }
  header .h_bottom .h_inner .gnb > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 80%;
    height: 2px;
    background: #00BAC6;
    transform: translateX(-50%) scaleX(0);
    transition: 0.3s;
  }
  header .h_bottom .h_inner .gnb > ul > li > a:hover {
    color: #00BAC6;
  }
  header .h_bottom .h_inner .gnb > ul > li > a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li {
    width: 100%;
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li > a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 0.813rem;
    color: #555;
  }
  header .h_bottom .h_inner .gnb > ul > li .sub > li > a:hover {
    color: #000;
    text-decoration: underline;
  }
  header .h_bottom .h_inner .icon_box {
    width: 100px;
  }
  header .h_bottom .h_inner .icon_box ul {
    display: flex;
    justify-content: space-between;
  }
  header .h_bottom .h_inner .icon_box ul li {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  header .h_bottom .h_inner .icon_box ul li img {
    width: 100%;
    height: 100%;
  }
  header .search-layer {
    /* 내부 패널 */
  }
  header .search-layer > .search-layer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
    /* 검색 박스 */
  }
  header .search-layer > .search-layer-inner .search-box {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 50px;
    padding: 10px 20px;
  }
  header .search-layer > .search-layer-inner .search-box .search-input {
    flex: 1;
    border: none;
    font-size: 1.25rem;
    background: none;
    outline: none;
  }
  header .search-layer > .search-layer-inner .btn-search-close,
  header .search-layer > .search-layer-inner .btn-search-submit {
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    margin-left: 5px;
  }
  header .search-layer > .search-layer-inner .search_content {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    line-height: 30px;
  }
  header .search-layer.fixed {
    left: 0;
    top: 80px;
  }
  .footer_top {
    padding: 50px 0px;
    background: #333;
    margin: 0 auto;
  }
  .footer_top .f_inner_top {
    padding-bottom: 65px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    font-size: 13px !important;
  }
  .footer_top .f_inner_top .footer_sns {
    display: flex;
  }
  .footer_top .f_inner_top .footer_sns li {
    padding-right: 10px !important;
  }
  .footer_top .f_inner_top .footer_sns li a {
    font-size: 1.5rem;
    padding: 0px 2px;
  }
  .footer_top .f_lnb {
    margin: 0 auto;
  }
  .footer_top .f_lnb ul {
    display: flex;
    gap: 36px;
    font-size: 1rem !important;
  }
  .footer_top h4 {
    padding-bottom: 36px;
    font-size: 1rem !important;
    font-weight: 600;
  }
  .footer_top ul li:not(:last-child) {
    padding-bottom: 24px;
  }
  .footer_top .txt_color {
    color: #00BAC6;
  }
  .footer_bottom {
    font-size: 12px !important;
  }
  .footer_bottom .f_bottom_inner {
    width: 100% !important;
  }
  .footer_bottom .f_bottom_inner address {
    display: flex;
    width: 100% !important;
    justify-content: space-between;
  }
  .footer_bottom .f_bottom_inner address .customer {
    padding-top: 68px;
  }
  .footer_bottom .f_bottom_inner address h4 {
    padding-bottom: 48px;
    font-size: 1rem !important;
    font-weight: 600;
  }
  .footer_bottom .f_bottom_inner address ul li:not(:last-child) {
    padding-bottom: 18px;
  }
  .footer_bottom .f_bottom_inner address .bank span {
    display: inline-block;
    width: 55px;
    padding-right: 24px;
    font-weight: 600;
  }
  .footer_bottom .f_bottom_inner address .info span,
  .footer_bottom .f_bottom_inner address .customer span {
    display: inline-block;
    width: 125px;
    padding-right: 24px;
    font-weight: 600;
  }
}
/* --- Mobile: 767px 이하 --- */
@media screen and (max-width: 767px) {
  header {
    /* --- Header Top Slide (공지 슬라이드) --- */
  }
  header .h_bottom .h_inner {
    position: relative;
    height: 60px;
    /* 메뉴 버튼 */
    /* 로고 */
    /* 오른쪽 아이콘 */
    /* GNB 숨김 */
  }
  header .h_bottom .h_inner .btn-menu-open {
    position: absolute;
    left: 15px;
    top: 65%;
    transform: translateY(-50%);
    display: block !important;
    font-size: 24px;
    background: none;
    border: none;
    z-index: 100;
  }
  header .h_bottom .h_inner h1 {
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    width: 120px;
    margin: 0;
  }
  header .h_bottom .h_inner h1 a img {
    width: 100%;
  }
  header .h_bottom .h_inner .icon_box {
    position: absolute;
    right: 15px;
    top: 60%;
    transform: translateY(-50%);
    width: 150px;
  }
  header .h_bottom .h_inner .icon_box ul {
    display: flex;
    justify-content: space-between;
    /* 검색 아이콘 숨김 */
    /* 장바구니 위치 조정 */
  }
  header .h_bottom .h_inner .icon_box ul li:last-child {
    display: none;
  }
  header .h_bottom .h_inner .icon_box ul li:first-child {
    position: relative;
    right: -50%;
  }
  header .h_bottom .h_inner .gnb {
    display: none;
  }
  header .h_top > .slide_wrapper {
    width: 100%;
    text-align: center;
  }
  header .h_top > .slide_wrapper > .h_slide {
    width: 300% !important;
  }
  header .h_top > .slide_wrapper > .h_slide > li {
    width: 100%;
  }
  /* Footer */
  footer {
    /* --- Footer Top --- */
    /* --- Footer Bottom --- */
  }
  footer .footer_top {
    padding: 10px;
  }
  footer .footer_top .f_inner_top {
    flex-wrap: wrap;
    padding: 10px;
    /* 전체 h4 폰트 */
  }
  footer .footer_top .f_inner_top > div {
    /* 첫 번째 div 안의 h4 숨김 */
    /* 마지막 div 안의 h4 숨김 */
  }
  footer .footer_top .f_inner_top > div:not(:first-child):not(:last-child) {
    flex-basis: 100%;
    padding-bottom: 20px;
  }
  footer .footer_top .f_inner_top > div:first-child > h4 {
    display: none;
  }
  footer .footer_top .f_inner_top > div:first-child > ul {
    display: flex;
    gap: 15px;
    font-size: 1rem;
  }
  footer .footer_top .f_inner_top > div:last-child > h4 {
    display: none;
  }
  footer .footer_top .f_inner_top h4 {
    font-size: 1rem;
  }
  footer .footer_top .f_lnb ul {
    font-size: 1rem;
  }
  footer .footer_bottom .f_bottom_inner address {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  footer .footer_bottom .f_bottom_inner address > div {
    flex-basis: 100%;
    padding-bottom: 30px;
  }
  footer .footer_bottom .f_bottom_inner address > div > h4 {
    font-size: 1rem;
    padding-bottom: 20px;
  }
  footer .footer_bottom .f_bottom_inner address > div > ul {
    font-size: 0.813rem;
  }
  footer .footer_bottom .f_bottom_inner address > div.customer {
    padding-top: 20px;
  }
}
main form {
  padding: 150px 10px;
}
main form fieldset {
  border: 1px solid #333;
  max-width: 565px;
  width: 100%;
  margin: 0 auto;
  border: none;
}
main form fieldset legend {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  padding-bottom: 50px;
}
main form fieldset label {
  font-size: 0;
}
main form fieldset input {
  width: 98.9%;
  height: 50px;
  border: 1px solid #777;
  text-indent: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}
main form fieldset input:focus {
  border-color: #00BAC6;
  outline: none;
}
main form fieldset #mb_pw {
  margin-bottom: 0px;
}
main form fieldset .id_save {
  display: flex;
  width: 25%;
  padding-top: 15px;
}
main form fieldset .id_save > #id_check {
  width: 1.5rem !important;
  height: 1.5vh !important;
}
main form fieldset .id_save > label[for=id_check] {
  line-height: 2vh;
  font-size: 0.813rem !important;
  width: 100%;
}
main form fieldset .btn_login {
  margin-top: 0px !important;
}
main form fieldset .find_box a {
  font-size: 0.813rem;
  color: #555;
  padding: 0px 10px 0px 0px;
}
main form fieldset .find_box a:hover {
  text-decoration: underline;
}
main form fieldset .btn {
  color: #333;
  background: #fff;
  border: 1px solid #333;
  width: 100%;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}
main form fieldset .btn_login {
  background: #000;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
main form fieldset .btn_login:hover {
  background: #fff;
  color: #000;
}
main form fieldset .btn_kakao {
  background: #FAE100;
  border: none;
  font-weight: 600;
}
main form fieldset .btn_kakao:hover {
  opacity: 0.7;
}
main form fieldset .btn_kakao img {
  position: relative;
  top: 4px;
  padding-right: 5px;
}
main form fieldset .btn_naver {
  background: #00DE5A;
  border: none;
  font-weight: 600;
}
main form fieldset .btn_naver:hover {
  opacity: 0.7;
}
main form fieldset .btn_naver img {
  position: relative;
  top: 3px;
  padding-right: 5px;
}
main form fieldset .btn_check {
  border-color: #555;
  color: #555;
}

@media screen and (max-width: 767px) {
  form fieldset {
    width: 100%;
    margin: 0 auto;
  }
  form fieldset legend {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  form fieldset input {
    height: 45px;
    font-size: 0.9rem;
  }
  form fieldset .btn {
    height: 48px;
    line-height: 48px;
    font-size: 0.9rem;
  }
  form fieldset .find_box {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  form fieldset legend {
    font-size: 1.875rem;
  }
  form fieldset .btn {
    height: 50px;
    line-height: 50px;
  }
}/*# sourceMappingURL=login.css.map */