/* COMMON */
:root {
  --main-color: #1d47d1;
}

#wrap {
  margin-bottom: 131px;
}

.inner {
  padding: 0 16px;
  margin: 0 auto;
}

.notice_container {
  background: #6b7076;
  text-align: center;
  padding: 12px 0;
}
.notice_container p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  line-height: 18px;
}
.notice_container.fixed {
  position: fixed;
  bottom: 71px;
  left: 0;
  width: 100%;
}

main {
  margin-top: 73px;
}

/* HEADER */
header {
  text-align: center;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99;
  width: 100%;
}

/* FOOTER */
footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 99;
  border-top: 1px solid var(--main-color);
}
footer ul {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}
footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
}
footer ul li a img {
  width: 24px;
  aspect-ratio: 1 / 1;
}
footer ul li a p {
  font-size: 12px;
  font-weight: 600;
  color: #9ba8d0;
  white-space: nowrap;
}
footer ul li.active a p {
  color: var(--main-color);
}

/* index.php */
.home {
  margin-bottom: 153px;
}
.home .title_wrap {
  margin-bottom: 26px;
}
.home .title_wrap h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}
.home .title_wrap h1 b {
  color: var(--main-color);
}
.home .title_wrap p {
  font-size: 16px;
  font-weight: 300;
  color: #232323;
  line-height: 24px;
}
.home .menu_wrap {
  margin-bottom: 24px;
}
.home .menu_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.home .menu_wrap ul li a {
  display: block;
  height: 170px;
  border-radius: 20px;
  background: #dfebff;
  padding: 24px;
  position: relative;
}
.home .menu_wrap ul li a h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #232323;
}
.home .menu_wrap ul li a img {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.home .menu_wrap ul li.red a {
  background: #ffe0df;
}
.home .list_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home .list_wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ebeef3;
  border-radius: 20px;
  padding: 22px 24px;
}
.home .list_wrap ul li a p {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
}

/* MODAL */
.modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
}
.modal.active {
  display: block;
}
.modal .header_wrap {
  display: flex;
  justify-content: flex-end;
  padding: 16px 0 8px;
}

.modal .info_wrap {
  margin-bottom: 36px;
}
.modal .info_wrap h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 24px;
}
.modal .info_wrap h2 b {
  color: var(--main-color);
}
.modal .info_wrap p {
  background: #ebeef3;
  border-radius: 20px;
  padding: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.modal .info_wrap p b {
  font-weight: 500;
}
.modal_info .prepare_wrap h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #232323;
  margin-bottom: 16px;
}
.modal_info .prepare_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal_info .prepare_wrap ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ebeef3;
  border-radius: 20px;
  padding: 20px 24px;

}
.modal_info .prepare_wrap ul li .text_wrap h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
  color: #232323;
  word-break: keep-all;
}
.modal_info .prepare_wrap ul li .text_wrap p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #232323;
}
.modal .link_wrap {
  margin-bottom: 48px;
  margin-top: 36px;
}
.modal .link_wrap a {
  display: block;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border-radius: 20px;
  padding: 23px 0;
}
.modal .link_wrap p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-top: 8px;
  color: #232323;
}
.modal_forget .method_wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 16px;
}
.modal_forget .method_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal_forget .method_wrap ul li {
  padding: 18px 24px;
  border-radius: 20px;
  position: relative;
}
.modal_forget .method_wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.modal_forget .method_wrap ul li:nth-child(1) {
  background: #ebeef3;
}
.modal_forget .method_wrap ul li:nth-child(2) {
  background: #dee6f4;
}
.modal_forget .method_wrap ul li:nth-child(3) {
  background: #cddbf4;
}
.modal_forget .method_wrap ul li:nth-child(4) {
  background: #b2cefe;
}
.modal_forget .method_wrap ul li:nth-child(1)::after {
  border-top: 12px solid #ebeef3;
}
.modal_forget .method_wrap ul li:nth-child(2)::after {
  border-top: 12px solid #dee6f4;
}
.modal_forget .method_wrap ul li:nth-child(3)::after {
  border-top: 12px solid #cddbf4;
}
.modal_forget .method_wrap ul li h3 {
  font-size: 16px;
  font-weight: 300;
  color: #232323;
  line-height: 24px;
}
.modal_forget .method_wrap ul li h3 b {
  font-weight: 400;
}
.modal_forget .method_wrap ul li p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-top: 4px;
}

.modal_checklist .list_wrap h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 24px;
}
.modal_checklist .list_wrap h2 b {
  color: #d13b1d;
}
.modal_checklist .list_wrap .list_box {
  background: #fff0ef;
  padding: 30px 24px;
  border-radius: 20px;
}
.modal_checklist .list_wrap .list_box h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}
.modal_checklist .list_wrap .list_box ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal_checklist .list_wrap .list_box ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.modal_checklist .list_wrap .list_box ul li img {
  padding-top: 2px;
}
.modal_checklist .list_wrap .list_box ul li p {
  font-size: 16px;
  line-height: 24px;
  color: #232323;
}
.modal_checklist .link_wrap a {
  background: #d1381d;
}



/* 주소 검색 overlay */
#address_layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
}
#address_layer[style*="block"] {
  display: flex;
}
#address_close {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  font-size: 20px;
  color: #232323;
  background: none;
  border: none;
  cursor: pointer;
}
#address_embed {
  flex: 1;
  width: 100%;
  height: 100%;
}

/* myinfo.php */
.myinfo {
  padding-bottom: 48px;
}
.myinfo h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #232323;
  margin-bottom: 24px;
}
.myinfo .info_wrap {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 30px 24px;
  border-radius: 20px;
  background: #eff4fb;
  margin-bottom: 16px;
}
.myinfo .info_wrap .info_box span {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #232323;
  margin-bottom: 12px;
}
.myinfo .info_wrap .info_box .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.myinfo .info_wrap .info_box .info p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #232323;
  word-break: keep-all;
}
.myinfo .info_wrap .info_box .info input[type="tel"] {
  display: none;
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #232323;
  border: none;
  outline: none;
  background: #fff;
  padding: 10px 16px;
  min-width: 0;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 6px 0px;
}
.myinfo .info_wrap .info_box .info button {
  font-size: 16px;
  font-weight: 300;
  padding: 8px;
  border: 1px solid #6b7076;
  border-radius: 10px;
  white-space: nowrap;
  color: #6b7076;
}
.myinfo .warn_wrap a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 20px;
  background: #fff0ef;
  margin-bottom: 16px;
}
.myinfo .warn_wrap .text_wrap h2 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}
.myinfo .warn_wrap .text_wrap p {
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}
.myinfo .request_wrap {
  margin-bottom: 24px;
}
.myinfo .request_wrap a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 20px;
  background: #ebeef3;
}
.myinfo .request_wrap a h2 {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
}
.myinfo .notice_wrap h2 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #232323;
  margin-bottom: 6px;
}
.myinfo .notice_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.myinfo .notice_wrap ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding-left: 24px;
  position: relative;
}
.myinfo .notice_wrap ul li b {
  font-weight: 500;
}
.myinfo .notice_wrap ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #232323;
  position: absolute;
  top: 8px;
  left: 13px;
}

/* steal.php */
.steal {
  padding-bottom: 48px;
}
.steal .title_wrap {
  margin-bottom: 36px;
}
.steal .title_wrap h1 {
  font-size: 28px;
  font-weight: 700;
  color: #232323;
  line-height: 36px;
  margin-bottom: 24px;
}
.steal .title_wrap h1 b {
  color: #d1381d;
}
.steal .title_wrap button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff0ef;
  border-radius: 20px;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  letter-spacing: -1px;
}
.steal .sequence_wrap > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #232323;
  padding: 0 12px;
  margin-bottom: 16px;
}
.steal .sequence_wrap > p b {
  font-weight: 500;
}
.steal .sequence_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steal .sequence_wrap ul li {
  padding: 22px 24px;
  border-radius: 20px;
  position: relative;
}
.steal .sequence_wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.steal .sequence_wrap ul li:nth-child(1) {
  background: #f3ebeb;
}
.steal .sequence_wrap ul li:nth-child(2) {
  background: #f4dede;
}
.steal .sequence_wrap ul li:nth-child(3) {
  background: #f4cfcd;
}
.steal .sequence_wrap ul li:nth-child(4) {
  background: #feb5b2;
}
.steal .sequence_wrap ul li:nth-child(1)::after {
  border-top: 12px solid #f3ebeb;
}
.steal .sequence_wrap ul li:nth-child(2)::after {
  border-top: 12px solid #f4dede;
}
.steal .sequence_wrap ul li:nth-child(3)::after {
  border-top: 12px solid #f4cfcd;
}
.steal .sequence_wrap ul li h2 {
  font-size: 16px;
  margin-bottom: 12px;
}
.steal .sequence_wrap ul li p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.steal .link_wrap {
  margin-top: 36px;
}
.steal .link_wrap a {
  display: block;
  background: #d13b1d;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border-radius: 20px;
  padding: 23px 0;
}
.steal .link_wrap p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-top: 8px;
  color: #232323;
}

/* faq.php */
.faq {
  padding-bottom: 48px;
}
.faq h1 {
  font-size: 28px;
  font-weight: 700;
  color: #232323;
  line-height: 36px;
  margin-bottom: 24px;
}
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq ul li .q_wrap {
  background: #eff4fb;
  padding: 20px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq ul li .q_wrap .text_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq ul li .q_wrap .text_wrap h2 {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  line-height: 22px;
  word-break: keep-all;
}
.faq ul li .a_wrap {
  display: none;
  background: #d5e3fa;
  padding: 24px;
  border-radius: 20px;
  margin-top: 8px;
}
.faq ul li .a_wrap p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #232323;
  word-break: keep-all;
}

/* validate.php */
.validate {
  padding-bottom: 48px;
}
.validate .title_wrap {
  margin-bottom: 24px;
}
.validate .title_wrap h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}
.validate .title_wrap h1 b {
  color: var(--main-color);
}
.validate .title_wrap p {
  font-size: 16px;
  font-weight: 300;
  color: #232323;
  line-height: 24px;
}
.validate .insert_wrap {
  background: #eff4fb;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.validate .insert_wrap h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #232323;
}
.validate .insert_wrap input[type="text"] {
  width: 100%;
  background: #fff;
  border: 0;
  outline: none;
  padding: 24px;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.validate .insert_wrap input[type="text"]::placeholder {
  color: #9ea4ac;
}
.validate .insert_wrap button {
  display: block;
  width: 100%;
  background: var(--main-color);
  border-radius: 20px;
  padding: 20px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.validate .result_wrap {
  display: none;
  background: #e3faec;
  padding: 24px;
  border-radius: 20px;
}
.validate .result_wrap.invalid {
  background: #fae3e3;
}
.validate .result_wrap h2 {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 24px;
}
.validate .result_wrap .result_box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
.validate .result_wrap .result_box .text_box p {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 5px;
}
.validate .result_wrap .result_box .text_box span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #232323;
  line-height: 16px;
  word-break: keep-all;
}
.validate .result_wrap .copy_wrap {
  height: 60px;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 20px;
}
.validate .result_wrap .copy_wrap input[type="text"] {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #232323;
  outline: none;
  border: 0;
}
.validate .result_wrap .copy_wrap button {
  font-size: 16px;
  color: #6b7076;
  border: 1px solid #6b7076;
  border-radius: 10px;
  padding: 8px;
  white-space: nowrap;
}
.validate .notice_wrap {
  margin-top: 24px;
}
.validate .notice_wrap h2 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #232323;
  margin-bottom: 6px;
}
.validate .notice_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.validate .notice_wrap ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding-left: 24px;
  position: relative;
}
.validate .notice_wrap ul li b {
  font-weight: 500;
}
.validate .notice_wrap ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #232323;
  position: absolute;
  top: 8px;
  left: 13px;
}