@charset "UTF-8";

/* 기본 설정들 */
html {
  overflow-x: hidden;
}

html * {
  word-break: keep-all;
  box-sizing: border-box;
}

html,
body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

/* 기본 설정들 */

:root {
  --maincolor: #eaa150;
  --black: #303030;
  --light-black: #474747;
  --score: "S-Core Dream";
  --pret: "Pretendard";
  --nanum: "Nanum Gothic";
  --poppins: "Poppins";
}

/* 전체 공통 css */
.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.none_960 {
  display: block;
}
.block_960 {
  display: none;
}
.none_768 {
  display: block;
}
.block_768 {
  display: none;
}
.bold {
  font-weight: 700;
}
.py_160 {
  padding: 160px 0;
}

.sub_w {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.point_color {
  color: var(--maincolor);
}

@media screen and (max-width: 960px) {
  .none_960 {
    display: none;
  }
  .block_960 {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .none_768 {
    display: none;
  }
  .block_768 {
    display: block;
  }

  .py_160 {
    padding: 80px 0;
  }
}

/* main_counsel */
.main_counsel {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  padding: 20px 0;
  box-sizing: border-box;
  z-index: 9999;
  transition: all 0.6s;
}
.main_counsel.on {
  bottom: 0;
  transition: all 0.6s;
}
.w_main_conunsel {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
.main_counsel_flex {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.main_counsel_flex > .left {
}
.main_counsel_flex > .left a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.main_counsel_flex > .left a p {
  color: #fff;
  text-align: center;
  font-family: var(--pret);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.main_counsel_flex > .right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
}
.main_counsel_flex > .right .info_box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main_counsel_flex > .right .info_box > div {
  width: 33.333%;
}
.main_counsel_flex > .right .info_box > div input,
.main_counsel_flex > .right .info_box > div select {
  width: 100%;
  box-sizing: border-box;
}
.main_counsel_flex > .right .info_box > div input[type="text"] {
  padding: 12px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--pret);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  outline: none;
}
.main_counsel_flex > .right .info_box > div select {
  padding: 12px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--pret);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  outline: none;
  background: url(/img/select_arrow.svg) no-repeat 95% 50%
    rgba(255, 255, 255, 0.1);
}
.main_counsel_flex > .right .info_box > div select option {
  background: rgba(0, 0, 0, 0.6);
}
.main_counsel_flex > .right .info_box > div input[type="text"]::placeholder {
  color: #fff;
  font-weight: 300;
}
.main_counsel_flex > .right .btn_box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main_counsel_flex > .right .btn_box ._1 {
  display: flex;
  align-items: center;
  gap: 6px;
  row-gap: 5px;
  text-align: right;
}
.main_counsel_flex > .right .btn_box ._1 .go_personal {
  display: flex;
  flex-direction: column;
}
.main_counsel_flex > .right .btn_box ._1 label {
  display: block;
  color: #fff;
  font-family: var(--pret);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.main_counsel_flex > .right .btn_box ._1 a {
  display: block;
  color: #fff;
  font-family: var(--pret);
  font-size: 14px;
  font-weight: 400;
}
.main_counsel_flex > .right .btn_box ._1 input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: white;
  position: relative;
}
.main_counsel_flex > .right .btn_box ._1 input[type="checkbox"]:checked {
  background-color: #eaa150;
}
.main_counsel_flex > .right .btn_box ._1 input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 14px;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_counsel_flex > .right .btn_box ._2 button {
  border: none;
  outline: none;
  color: #fff;
  text-align: center;
  font-family: var(--pret);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0;
  box-sizing: border-box;
  min-width: 160px;
  width: 100%;
  border-radius: 6px;
  background: #eaa150;
  display: block;
  cursor: pointer;
  transition: background 0.2s ease;
}
.main_counsel_flex > .right .btn_box ._2 button:hover {
  background: rgb(224, 141, 46);
}

.mo_open_btn {
  display: none;
}
.mo_open_btn p {
  border-radius: 10px 10px 0px 0px;
  background: var(--maincolor);
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 6px 30px;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 1360px) {
  .w_main_conunsel {
    width: 90%;
  }
}
@media screen and (max-width: 1280px) {
  .main_counsel_flex > .left a p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .main_counsel {
    border-radius: 20px 20px 0 0;
  }
  .main_counsel_flex {
    flex-direction: column;
    position: relative;
  }
  .main_counsel_flex .mo_open_btn {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
  }
  .mo_open_btn {
    display: block;
  }
  .main_counsel {
    bottom: -151px;
  }
}

@media screen and (max-width: 768px) {
  .main_counsel {
    padding: 10px 0;
    bottom: 0;
    background: linear-gradient(
      180deg,
      rgba(34, 34, 34, 0.95) 0%,
      rgba(34, 34, 34, 0.64) 100%
    );
  }
  .main_counsel.on {
    transform: translate(0, 100%);
  }
  .main_counsel_flex .mo_open_btn {
    top: -38px;
  }
  .main_counsel_flex {
    gap: 10px;
  }
  .main_counsel_flex > .right {
    flex-direction: column;
  }
  .main_counsel_flex > .right .btn_box {
    flex-direction: column;
    width: 100%;
  }
  .main_counsel_flex > .right .btn_box ._1 .go_personal {
    flex-direction: row;
    gap: 5px;
  }
  .main_counsel_flex > .right .info_box > div input[type="text"],
  .main_counsel_flex > .right .info_box > div select {
    font-size: 16px;
    padding: 8px 10px;
  }
  .main_counsel_flex > .right .btn_box ._2 {
    width: 100%;
  }
  .main_counsel_flex > .right .btn_box ._2 button {
    min-width: auto;
    width: 100%;
    display: block;
  }
}

/* 서브페이지 섹션 공통 타이틀 텍스트 */
.sub_sec_common_title {
  width: 90%;
  margin: 0 auto;
}
.sub_sec_common_title h4 {
  color: var(--maincolor);
  font-family: "Poppins";
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.2px;
  text-align: center;
}
.sub_sec_common_title h3 {
  margin-top: 10px;
  color: var(--black);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1.6px;
}
.sub_sec_common_title p {
  margin-top: 20px;
  color: var(--light-black);
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {
  .sub_sec_common_title h4 {
    font-size: 22px;
  }
  .sub_sec_common_title h3 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }
  .sub_sec_common_title p {
    font-size: 16px;
    letter-spacing: -0.64px;
  }
}

/* 서브 페이지 섹션 좌우 텍스트 위아래 css */
.gsap_text_layout {
}
.gsap_text {
  color: var(--maincolor);
  font-family: "Poppins";
  font-size: 150px;
  font-weight: 800;
  opacity: 0.1;
  position: absolute;
  width: max-content;
  z-index: -1;
}
.gsap_text_left {
  top: -83%;
  left: -40%;
  transform: rotate(-90deg);
}
.gsap_text_right {
  bottom: -70%;
  right: -40%;
  transform: rotate(90deg);
}
@media screen and (max-width: 1650px) {
  .gsap_text_left {
    left: -50%;
  }
  .gsap_text_right {
    right: -50%;
  }
}
@media screen and (max-width: 1480px) {
  .gsap_text_left {
    left: -55%;
  }
  .gsap_text_right {
    right: -55%;
  }
}
@media screen and (max-width: 1350px) {
  .gsap_text_left {
    left: -60%;
  }
  .gsap_text_right {
    right: -60%;
  }
}
@media screen and (max-width: 1300px) {
  .gsap_text_left,
  .gsap_text_right {
    display: none;
  }
}

/* 커뮤니티 공통 부분 */

.comm_tit {
  text-align: center;
}
.comm_tit h3 {
  color: var(--maincolor);
  font-size: 30px;
  font-family: "Poppins";
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.2px;
}
.comm_tit h2 {
  color: var(--black);
  text-align: center;
  font-family: var(--pret);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1.6px;
  margin-top: 10px;
}

.comm_tit .reserve-desc {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 80px;
}

.comm_tit .reserve-desc span.highlight_or {
  font-size: inherit;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  display: inline;
  padding: 2px;
  background-color: var(--maincolor);
}

.comm_tit .date_tit {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.comm_tit .date_tit p {
  color: #474747;
  font-family: var(--pret);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 768px) {
  .comm_tit h3 {
    font-size: 24px;
  }
  .comm_tit h2 {
    font-size: 30px;
  }

  .comm_tit .reserve-desc {
    margin-top: 40px;
    font-size: 15px;
  }
}

.comm_search_form {
  border-radius: 12px;
  background: #f8f8f8;
  padding: 23px 0;
  box-sizing: border-box;
  margin-top: 60px;
}
.comm_search_box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
}
.comm_search_box .selet_box {
  max-width: 257px;
  width: 100%;
  flex: 1;
}
.comm_search_box .selet_box select {
  width: 100%;
  color: var(--black);
  font-family: var(--pret);
  font-size: 18px;
  font-weight: 200;
  letter-spacing: -0.72px;
  padding: 13.5px 24px;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  background: url("/img/community/select_arrow.png") no-repeat 95% 50% #fff;
}
.comm_search_box .selet_box select:focus {
  border-color: var(--maincolor);
}
.comm_search_box .search_input {
  max-width: 730px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}
.comm_search_box .search_input input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  color: var(--black);
  font-family: var(--pret);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.72px;
  border: none;
  outline: none;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  padding: 13.5px 24px;
  box-sizing: border-box;
}
.comm_search_box .search_input input[type="text"]:focus {
  border-color: var(--maincolor);
}
.comm_search_box .search_btn {
}
.comm_search_box .search_btn button {
  color: #fff;
  font-family: var(--pret);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.72px;
  padding: 13.5px 60px;
  box-sizing: border-box;
  background-color: var(--maincolor);
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
}
.comm_search_box .search_btn button:hover,
.comm_search_box .search_btn button:focus {
  background-color: #fff;
  color: var(--maincolor);
  border: solid 1px var(--maincolor);
}
@media screen and (max-width: 1160px) {
  .comm_search_box {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .comm_search_form {
    margin-top: 30px;
    padding: 12px 0;
  }
  .comm_search_box {
    flex-direction: column;
  }
  .comm_search_box .selet_box {
    max-width: none;
    width: 100%;
  }
  .comm_search_box .search_btn {
    width: 100%;
  }
  .comm_search_box .search_btn > button {
    width: 100%;
    padding: 7.5px 12px;
    font-size: 16px;
  }
  .comm_search_box .selet_box select {
    padding: 7.5px 12px;
    font-size: 16px;
  }
  .comm_search_box .search_input input[type="text"] {
    padding: 7.5px 12px;
    font-size: 16px;
  }
}

.comm_pagenation {
  margin-top: 80px;
}
.comm_pagenation > ul {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.comm_pagenation > ul li {
}
.comm_pagenation > ul li.on a {
  background-color: var(--maincolor);
  color: #fff;
  border-color: var(--maincolor);
}
.comm_pagenation > ul li a {
  color: #474747;
  text-align: center;
  font-family: var(--pret);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.64px;
  height: 32px;
  width: 32px;
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.comm_pagenation > ul li a:hover {
  background-color: var(--maincolor);
  color: #fff;
}
.comm_pagenation > ul li a:hover img {
  filter: grayscale(100%) brightness(1000%) contrast(100%);
}
.comm_pagenation > ul li a img {
}

.view_btn_list {
  position: relative;

  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.view_cont img {
  max-width: 100%;
}
.view_btn_list .other_page_btn a {
  display: flex;
  gap: 10px;
}

.view_btn_list .list_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.view_btn_list .list_btn a {
  color: var(--maincolor, #eaa150);
  text-align: center;
  font-family: var(--pret);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.view_btn_list .other_page_btn a p {
  color: #474747;
  font-family: var(--pret);
  font-size: 18px;
  font-weight: 200;
  letter-spacing: -0.72px;
  line-height: 1.3;
}
.view_btn_list .other_page_btn a > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .view_btn_list .list_btn a {
    font-size: 16px;
  }
  .view_btn_list {
    gap: 10px;
  }
  .view_btn_list .other_page_btn a p {
    font-size: 14px;
    white-space: nowrap; /* 텍스트가 한 줄로 제한 */
    overflow: hidden; /* 넘치는 텍스트 숨기기 */
    text-overflow: ellipsis; /* 넘치는 텍스트를 ... 으로 처리 */
    width: 100%; /* 부모 요소의 너비에 맞추기 */
    display: block;
    max-width: 100px;
  }
  .view_btn_list .other_page_btn a span {
    display: none;
  }
}

/* 비급여,개인정보 처리방침,환자의 의무와권리 */

.required_info_se {
  padding: 100px 0;
}

.required_info_se .cont_01 .tab_menu2 {
  display: flex;
  gap: 20px;
}

.sub_title_box h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 40px;
  line-height: 70px;
  font-family: "Noto Sans KR", sans-serif;
  border-bottom: solid 1px #a9c9f2;
  margin-bottom: 20px;
}

.obligations_box h3 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 30px;
  line-height: 40px;
  color: #a9c9f2;
  font-weight: 700;
  margin-bottom: 30px;
}

.required_info_se .cont_01 .tab_menu2 li {
  font-size: 20px;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 30px;
  font-weight: 500;
  color: #a9c9f2;
  border-bottom: none;
  cursor: pointer;
}

.required_info_se .cont_01 .tab_menu2 li:hover {
  border-bottom: solid 2px #a9c9f2;
}

.required_info_se .cont_01 .tab_menu2 li.on {
  color: #222;
  border-bottom: solid 2px #a9c9f2;
}

.w_1350 {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}

.obligations_box .small_text {
  font-size: 16px;
  line-height: 25px;
  color: #222;
  margin-bottom: 30px;
  font-family: "Noto Sans KR", sans-serif;
}

.obligations_box h4 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #222;
  font-weight: 600;
  margin-bottom: 20px;
}

.bg_layout {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 5%;
  box-sizing: border-box;
}

.left_fixed_se {
  background: #ecf4ff;
}

@media screen and (max-width: 1350px) {
  .w_1350 {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .subvs .bgtxt p {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 768px) {
  .required_info_se {
    padding: 50px 0;
  }

  .sub_title_box h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
  }

  .obligations_box h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.tab_container2 {
  margin-top: 40px;
}

.tab_container2 .table_1 table {
  width: 100%;
  border: solid 1px #a9c9f2;
}

.tab_container2 .table_1 table tr {
}

.tab_container2 .table_1 table th {
  border: solid 1px #a9c9f2;
  padding: 10px 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  background-color: #a9c9f2;
  color: #ccc;
  font-family: "Noto Sans KR", sans-serif;
}

.tab_container2 .table_1 table td {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  border: solid 1px #a9c9f2;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  color: #333;
  font-family: "Noto Sans KR", sans-serif;
}

.obligations_box h3 {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
}

.obligations_box h4 {
  font-size: 22px;
  line-height: 30px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.obligations_box .small_text {
  font-size: 16px;
  line-height: 25px;
  color: #333;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .tab_container2 .table_1 table th {
    font-size: 16px;
    line-height: 20px;
  }

  .tab_container2 .table_1 table td {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }

  .required_info_se {
    padding-top: 50px 0;
  }

  .obligations_box h3 {
    font-size: 20px;
  }

  .obligations_box .small_text {
    font-size: 14px;
  }

  .obligations_box h4 {
    font-size: 18px;
  }
}
