@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  font-family: "Pretendard-Regular";
}

html, body {
  height: 100%;
}

ul, li, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.wrap {
  background: linear-gradient(110deg, #fff, #f2f2f2);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content .phone_wrap {
  display: none;
}

.phone_title {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 2rem 2rem 0;
  height: 160px;
}
header h1, header label {
  font-size: 2.3rem;
  font-weight: bold;
  font-family: "pretendard", "sans-serif", "Pretendard JP", "zitiq";
  font-style: normal;
  font-weight: 800;
  cursor: default;
  line-height: 1;
}
header nav ul {
  display: flex;
}
header nav ul li {
  padding-left: 1.5rem;
  font-weight: bold;
}
header nav ul li button {
  transition: all 0.3s;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
}
header nav ul li:hover button {
  color: #ff4628;
}

@media (max-width: 768px) {
  .wrap {
    background: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 1rem 0;
    height: 130px;
  }
  header h1, header label {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "pretendard", "sans-serif", "Pretendard JP", "zitiq";
    font-style: normal;
    font-weight: 800;
    cursor: default;
  }
  header nav.lang {
    display: none;
  }
  header nav ul {
    display: flex;
  }
  header nav ul li {
    padding-left: 1.5rem;
    font-weight: bold;
  }
  header nav ul li a {
    font-size: 0.7rem;
  }
  header nav ul li:first-child {
    display: none;
  }
  header nav ul li button {
    transition: all 0.3s;
    font-size: 0.7rem;
  }
  header nav ul li:hover button {
    color: #ff4628;
  }
}
.bg {
  width: 100%;
  height: 100vh;
  background-color: #6a6a6a;
}

.popup_wrap {
  position: relative;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  height: 60vh;
  width: 50vw;
}
.popup_wrap div:first-child {
  height: 60vh;
  padding: 2rem 3rem 0;
  text-align: center;
}
.popup_wrap div:first-child h5 {
  font-size: 1.1rem;
  line-height: 2.5;
}
.popup_wrap div:first-child p {
  margin-top: 1rem;
  text-align: left;
  overflow-y: scroll;
  height: 80%;
  font-size: 0.75rem;
  line-height: 1.5;
}
.popup_wrap div:first-child p::-webkit-scrollbar {
  display: none;
}
.popup_wrap div:first-child div {
  text-align: center;
  background-color: #fff;
  border: none;
}
.popup_wrap div:first-child div span {
  text-decoration: underline;
  font-size: 0.8rem;
  line-height: 1;
}
.popup_wrap div:last-child {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.popup_wrap div:last-child span {
  padding: 1rem 0;
  width: 50%;
  background-color: #f5f5f5;
  font-weight: bold;
  cursor: pointer;
}
.popup_wrap div:last-child span:first-child {
  border-right: 2px solid #fff;
}
.popup_wrap .ch_box {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 2;
  padding-bottom: 0;
  /* border: 1px solid #ff4628; */
  margin-bottom: 1rem;
  width:100%;
  
}
.popup_wrap .ch_box input {
  accent-color: #ff4628;
  outline: none;
}
.popup_wrap .ch_box span {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bg {
    width: 100%;
    height: 100vh;
    background-color: #6a6a6a;
  }
  .popup_wrap {
    width: 70vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
  }
  .popup_wrap div:first-child {
	height:50vh;
    padding: 2rem 1rem 0;
    text-align: center;
  }
  .popup_wrap div:first-child h5 {
    font-size: 0.9rem;
    line-height: 2.5;
  }
  .popup_wrap div:first-child p {
    font-size: 0.6rem;
    line-height: 1.5;
  }
  .popup_wrap div:last-child {
    display: flex;
    justify-content: space-around;
    text-align: center;
  }
  .popup_wrap div:last-child span {
    padding: 1rem 0;
    width: 50%;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .popup_wrap div:last-child span:first-child {
    border-right: 2px solid #fff;
  }
  .popup_wrap .ch_box {
    background-color: #fff;
    display: inline-block;
    width: 100%;
	margin-top:0;
    text-align: center;
    line-height: 1.5;
    padding: 0.5rem 0;
	margin-bottom: 0;
  }
  .popup_wrap .ch_box input {
    accent-color: #ff4628;
  }
  .popup_wrap .ch_box span {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    line-height: 2;
  }
}