@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #ee9336;
  --color-sub: #ffefd8;
  --color-error: #FF0000;
  --color-gray: #515151;
  --color-base: #222;
  --color-border: #e2e8f0;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error) !important;
}

.dim {
  color: var(--color-gray) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : sub.scss
 * 역할   : 서브페이지 레이아웃
 */
.visual {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual {
    padding: 1rem 1rem 2rem;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.visual .container {
  width: 65%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 1rem;
  padding: 3rem;
}
@media screen and (max-width: 1200px) {
  .visual .container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .visual .container {
    padding: 2rem;
  }
}
.visual .container > em {
  font-size: 1.125rem;
  font-weight: 600;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .visual .container > em {
    font-size: 0.95rem;
  }
}
.visual .container > h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .container > h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .container > h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.visual .container > h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #515151;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .visual .container > h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.visual .container > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.visual .container > ul li {
  display: flex;
  gap: 1rem;
}
.visual .container > ul li img {
  width: 30px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .visual .container > ul li img {
    width: 25px;
  }
}
.visual .container > ul li p {
  font-weight: 500;
  color: #222;
}
.visual .cs {
  width: 35%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .visual .cs {
    width: 100%;
  }
}
.visual .cs__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .visual .cs__title {
    font-size: 1.1rem;
  }
}
.visual .cs #csGender {
  width: 100%;
  height: 50px;
  display: flex;
  gap: 1rem;
}
.visual .cs #csGender input[type=radio] {
  display: none;
}
.visual .cs #csGender input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}
.visual .cs #csGender input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
.visual .cs__inputs {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .visual .cs__inputs {
    width: 100%;
  }
}
.visual .cs__input {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .visual .cs__input {
    width: 100%;
  }
}
.visual .cs__input > input {
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding-left: 10px;
}
.visual .cs__apply {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.visual .cs__apply .cs__info {
  display: flex;
  gap: 5px;
  margin: 0 0 1rem;
}
.visual .cs__apply .cs__info label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.visual .cs__apply .cs__info label input {
  width: 17px;
  height: 17px;
}
.visual .cs__apply .cs__info label span {
  font-size: 0.9rem;
}
.visual .cs__apply .cs__info > span {
  font-size: 0.9rem;
  color: cornflowerblue;
  text-decoration: underline;
  cursor: pointer;
}
.visual .cs__apply .cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.visual .cs__apply .cs__btn .submit {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 0.5rem;
  cursor: pointer;
}

.content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.content__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.content__title {
  width: 100%;
  height: auto;
  text-align: center;
  background-color: var(--color-sub);
  border-radius: 0.5rem;
  padding: 1rem;
}
@media screen and (max-width: 1200px) {
  .content__title {
    border-radius: 0;
  }
}
.content__title h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .content__title h2 {
    font-size: 1rem;
  }
}
.content__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.content__list > li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ccc;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .content__list > li {
    padding: 2rem;
  }
}
.content__list > li:nth-last-of-type(1) {
  border-bottom: none;
}
.content__list > li .title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .content__list > li .title {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .content__list > li .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.content__list > li .title img {
  width: 40px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .content__list > li .title img {
    width: 35px;
  }
}
.content__list > li .title h3 {
  font-size: 1.625rem;
}
@media screen and (max-width: 1200px) {
  .content__list > li .title h3 {
    font-size: 1.25rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
@media screen and (max-width: 767px) {
  .content__list > li .title h3 {
    font-size: 1.1rem;
  }
}
.content__list > li .title h3 b {
  font-weight: inherit;
  color: var(--color-main);
}
.content__list > li > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 1rem 0 0 56px;
}
@media screen and (max-width: 1200px) {
  .content__list > li > ul {
    padding: 1rem 0 0 72px;
  }
}
@media screen and (max-width: 767px) {
  .content__list > li > ul {
    padding: 1rem 0 0;
  }
}
.content__list > li > ul > li {
  font-weight: 400;
  color: #101010;
}
@media screen and (max-width: 767px) {
  .content__list > li > ul > li {
    font-size: 0.9rem;
    text-indent: -10px;
    padding-left: 10px;
  }
}