a {
  color: #333;
  text-decoration: none;
}
.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
.notScroll {
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* Select box 스타일 초기화 */
select {
  padding: 0 10px 0 4px;
  background: #fff url("arrow.png") no-repeat 100% 50% !important;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-family: inherit;
}

select option {
  color: #000;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
  display: none;
}

/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
  display: none;
}

/* placeholder 초기화 */
input::-webkit-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
input:-ms-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
textarea::-webkit-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
textarea:-ms-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
input::placeholder {
  font-weight: 400;
  color: #aaa;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px none inset !important;
}

/* alert 버튼 */
.btn-box2 {
  top: 2764px;
  left: 737px;
  width: 264px;
  height: 56px;
  position: absolute;
  cursor: pointer;
}
.btn-box1 {
  top: 1630px;
  left: 29px;
  width: 196px;
  height: 42px;
  position: absolute;
  cursor: pointer;
}

/* header */
header {
  background: #fbfdff;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: inline-block;
  padding: 20px 0;
  width: 168px;
}
header .logo img {
  width: 100%;
}
header .sub_menu_list {
  display: flex;
  gap: 25px;
}
header .sub_menu_list .sub_menu_item a {
  font-size: 18px;
  color: #fbfdff;
}

/* section1 */
.section1 {
  background: #fbfdff;
  padding: 40px 0 75px;
}
.section1 .title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}
.section1 .title_wrap .text_box p {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: #333;
  margin-bottom: 35px;
}
.section1 .title_wrap .text_box h1 {
  font-size: 84px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #333;
}
.section1 .title_wrap .text_box h1 b {
  font-weight: inherit;
  color: #2573e2;
}
.section1 .title_wrap .img_box {
  width: 45%;
}
.section1 .title_wrap .img_box img {
  width: 100%;
}

.section1 .info_list_wrap {
  margin-bottom: 60px;
}
.section1 .info_list_wrap ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section1 .info_list_wrap ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.section1 .info_list_wrap ul li img {
  width: 75px;
}
.section1 .info_list_wrap ul li p {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1px;
  color: #333;
}

.section1 .form_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.section1 .form_wrap form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.section1 .form_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-sizing: border-box;
  gap: 15px 30px;
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #ddd;
}
.section1 .form_wrap ul li,
.section1 .form_wrap .name_cover {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.section1 .form_wrap ul li:first-child {
  flex-direction: row;
}
.section1 .form_wrap label {
  font-size: 22px;
  font-weight: 600;
  min-width: 100px;
}
.section1 .form_wrap input[type="radio"] {
  display: none;
}
.section1 .form_wrap input[type="text"],
.section1 .form_wrap input[type="tel"] {
  border: 1px solid #cccccc;
  font-size: 20px;
  padding: 12px;
  outline: none;
  background: #fff;
  width: 100%;
  border-radius: 6px;
  font-family: "Pretendard";
  font-weight: 600;
}
.section1 .form_wrap input[type="text"]::placeholder,
.section1 .form_wrap input[type="tel"]::placeholder {
  color: #777;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -1px;
}
.section1 .form_wrap .tel_cover {
  display: flex;
  width: 305px;
}
.section1 .form_wrap select {
  font-size: 20px;
  padding-left: 12px;
  padding-right: 28px;
  appearance: none;
  background: #fff url("./arrow_tel.png") no-repeat 85% 50% !important;
  border: 1px solid #cccccc;
  margin-right: 8px;
  border-radius: 6px;
  font-family: "Pretendard";
  font-weight: 600;
  letter-spacing: -1px;
}
.section1 .form_wrap input[type="radio"] {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 1px solid #bbb;
  margin: 0;
  margin-right: 8px;
  appearance: none;
  position: relative;
  cursor: pointer;
}
.section1 .form_wrap input[type="radio"]:checked + label {
  background: #2573e2;
}
.section1 .form_wrap input[type="radio"]:not(:checked) + label {
  color: #777;
  background-color: #fff;
  border: 1px solid #cccccc;
  box-sizing: border-box;
}
.section1 .form_wrap .sex_cover {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section1 .form_wrap .sex_cover .sex_box label {
  margin-bottom: 0;
  font-size: 20px;
  cursor: pointer;
  background: #ccc;
  min-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 120px;
  color: #fff;
  border-radius: 6px;
}
.section1 .privacy_wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-weight: 600;
  white-space: nowrap;
}
.section1 .privacy_wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer; /*accent-color: #fff;*/
}
.section1 .privacy_wrap label {
  font-size: 18px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.section1 .privacy_wrap button {
  font-family: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}
.btn_submit {
  border: 0;
  font-family: inherit;
  font-size: 26px;
  font-weight: 600;
  background: #2573e2;
  color: #fff;
  padding: 17px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  border-radius: 6px;
  width: 100%;
  height: 195px;
  border-radius: 30px;
  white-space: nowrap;
  line-height: 1.3;
}
.btn_submit img {
  width: 40px;
}

/* section2 */
.section2 {
  background: #fbfdff;
}
.section2 h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 25px;
  letter-spacing: -1px;
  margin-bottom: 30px;
  background: #fff;
}
.section2 h2 b {
  color: #005daa;
  font-weight: 800;
}
.section2 ul {
  height: fit-content;
}
.section2 ul li {
  border: 1px solid #ddd;
  padding: 30px 35px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  height: fit-content;
}
.section2 ul li .img_wrap {
  width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section2 ul li img {
}
.section2 ul li p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  padding-top: 25px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}
.section2 ul li p b {
  color: #ff481d;
  font-weight: 800;
}

/* section3 */
.section3 {
  padding: 65px 0;
  background: #fbfdff;
}
.section3 ul li {
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
.section3 ul li:last-child {
  border-bottom: 0;
}
.section3 ul li img {
  width: 160px;
  height: 50px;
}
.section3 ul li p {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  letter-spacing: -1px;
}
.section3 ul li button {
  background: #2573e2;
  padding: 12px;
  color: #fff;
  letter-spacing: -1px;
  font-weight: 600;
  font-size: 21px;
  border-radius: 30px;
  width: 320px;
  margin-left: auto;
}

/* section5 */
.section5 {
  background: #fff;
  color: #333;
  padding: 50px 0;
}
.section5 h3 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}
.section5 ul {
  margin-bottom: 15px;
}
.section5 ul li {
  color: #666;
  position: relative;
  padding-left: 15px;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section5 ul li::before {
  position: absolute;
  left: 0;
  content: "-";
}
.section5 p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

/* 푸터 */
.footer {
  background: #282a29;
  box-sizing: border-box;
  padding: 30px 0;
}
.footer h4 {
  color: #999;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 25px;
}
.footer p {
  color: #999;
  font-size: 14px;
  line-height: 1.4;
  margin: 10px 0;
}
.footer p:last-of-type {
  margin-bottom: 0;
}
.footer_inner {
  width: 1000px;
  margin: 0 auto;
}
