/* bones.css - 뼈이식 임플란트 페이지 */

/* --------------------- bones main section container */
#bones_main section .container {
  padding: 90px 20px;
}

#bones_main section .container .wrapper h2 {
  font-size: var(--text-lg);
  padding-bottom: 20px;
}

#bones_main section .container .wrapper p {
  line-height: 1.3;
}

#bones_main section .container .wrapper .content {
  padding-top: 35px;
}

/* --------------------- header */
#bones_header {
}
#bones_header .container {
}
#bones_header .container .wrapper {
}
#bones_header .container .wrapper .main-banner {
}
#bones_header .container .wrapper .main-banner img {
  position: relative;
}
#bones_header .container .wrapper .main-banner .txt {
  position: absolute;
  width: 100%;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: "BMDOHYEON";
}

#bones_header .container .wrapper .main-banner .txt h1 {
  font-size: var(--text-xl);
}
#bones_header .container .wrapper .main-banner .txt h1 span {
  color: #00d8b5;
}

/* --------------------- bones section 1 */

#bones_1 {
  background: #ccfef5;
  background: linear-gradient(
    109deg,
    rgba(230, 254, 249, 1) 0%,
    rgba(225, 229, 224, 1) 100%
  );
}

#bones_1 .container .wrapper .sub-desc {
  text-align: center;
  font-size: var(--text-sm);
  color: #666;
  margin-bottom: 40px;
}

#bones_1 .container .wrapper .candidates {
  text-align: center;
  padding: 50px 0;
  position: relative;
  display: inline-block;
}

#bones_1 .container .wrapper .candidates img.base-img {
  display: block;
  max-width: 100%;
  height: auto;
}

#bones_1 .container .wrapper .candidates img.overlay-img {
  position: absolute;
  height: auto;
}

#bones_1 .container .wrapper .candidates img.overlay-img.center {
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 570px;
}

#bones_1 .container .wrapper .candidates img.overlay-img.left-top {
  top: 28%;
  left: 12%;
  transform: translate(-50%, -50%);
  max-width: 120px;
}

#bones_1 .container .wrapper .candidates img.overlay-img.right-top {
  top: 28%;
  right: 12%;
  transform: translate(50%, -50%);
  max-width: 120px;
}

#bones_1 .container .wrapper .candidates img.overlay-img.left-bottom {
  top: 58%;
  left: 26%;
  transform: translate(-50%, -50%);
  max-width: 120px;
}

#bones_1 .container .wrapper .candidates img.overlay-img.right-bottom {
  top: 58%;
  right: 26%;
  transform: translate(50%, -50%);
  max-width: 120px;
}

#bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 120px;
}

#bones_1 .container .wrapper .candidates .candidate-texts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bones_1 .container .wrapper .candidates .text-item {
  position: absolute;
  text-align: center;
  font-size: var(--text-md);
  color: #333;
}

#bones_1 .container .wrapper .candidates .text-item p {
  margin: 0;
  line-height: 1.5;
}

#bones_1 .container .wrapper .candidates .text-left-top {
  top: 40%;
  left: 6%;
}

#bones_1 .container .wrapper .candidates .text-right-top {
  top: 40%;
  right: 6%;
}

#bones_1 .container .wrapper .candidates .text-left-bottom {
  top: 69%;
  left: 22%;
}

#bones_1 .container .wrapper .candidates .text-right-bottom {
  top: 69%;
  right: 16%;
}

#bones_1 .container .wrapper .candidates .text-center-bottom {
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
}

/* --------------------- bones section 2 */

#bones_2 .container .wrapper .content {
}
#bones_2 .container .wrapper .content ul.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: center;
  align-items: center;
}
#bones_2 .container .wrapper .content ul.steps li.step {
  width: calc((100% - 200px) / 3);
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

#bones_2 .container .wrapper .content ul.steps li.step:after {
  position: absolute;
  content: "▶";
  top: 45%;
  right: -10%;
  font-size: var(--text-md);
  color: #3a3a3a;
}

#bones_2 .container .wrapper .content ul.steps li.step:nth-child(3):after,
#bones_2 .container .wrapper .content ul.steps li.step:nth-child(6):after {
  content: " ";
}
#bones_2 .container .wrapper .content ul.steps li.step .title {
  background: #019982;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  font-size: var(--text-md);
  margin: 0 5px;
}
#bones_2 .container .wrapper .content ul.steps li.step img {
  border-radius: 20px;
  margin: 15px 0 20px;
}
#bones_2 .container .wrapper .content ul.steps li.step .desc {
  font-size: var(--text-md);
  font-weight: 600;
}

/* --------------------- full process section */

#full_process .container .wrapper .content {
}
#full_process .container .wrapper .content ul.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#full_process .container .wrapper .content ul.steps li.step {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

#full_process .container .wrapper .content ul.steps li.step:nth-child(1):after {
  position: absolute;
  content: "▶";
  top: 45%;
  right: -20px;
  font-size: var(--text-md);
  color: #3a3a3a;
}
#full_process .container .wrapper .content ul.steps li.step:nth-child(3):after {
  position: absolute;
  content: "▶";
  top: 45%;
  right: -20px;
  font-size: var(--text-md);
  color: #3a3a3a;
}

#full_process .container .wrapper .content ul.steps li.step .title {
  background: #019982;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  font-size: var(--text-md);
  margin: 0 5px;
}
#full_process .container .wrapper .content ul.steps li.step img {
  border-radius: 20px;
  margin: 15px 0 20px;
  width: 100%;
  max-width: 500px;
  height: auto;
}
#full_process .container .wrapper .content ul.steps li.step .desc {
  font-size: var(--text-md);
  font-weight: 600;
}

#full_process .container .wrapper h2 span {
  color: #00d9b6;
}

/* --------------------- full differentiation section */

#full_differentiation {
  background-color: #e7fcf7;
}

#full_differentiation .container .wrapper {
  padding: 80px 20px;
}

#full_differentiation .container .wrapper .title-box {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 25px 40px;
  border: 1px solid #333;
  text-align: center;
  font-size: var(--text-md);
  font-weight: 600;
  color: #292929;
  background-color: #fff;
}

#full_differentiation .container .wrapper .content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

#full_differentiation .container .wrapper .content .content-image {
  flex: 0 0 50%;
  width: 50%;
}

#full_differentiation .container .wrapper .content .content-image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

#full_differentiation .container .wrapper .content .content-text-box {
  flex: 1;
  padding: 40px 50px;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 10px;
}

#full_differentiation .container .wrapper .content .content-text-box .differentiation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#full_differentiation .container .wrapper .content .content-text-box .differentiation-list li {
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.8;
  color: #292929;
  padding-left: 30px;
  position: relative;
}

#full_differentiation .container .wrapper .content .content-text-box .differentiation-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d9b6;
  font-weight: 700;
  font-size: var(--text-md);
}

/* ---------------------bones section 03,04 */

#bones_4 {
  background: url("../assets/images/one_day/section4.jpg");
  background-repeat: no-repeat;
}
#bones_3 {
  background: url("../assets/images/one_day/section5.jpg");
  background-repeat: no-repeat;
}

#bones_4 .container,
#bones_3 .container {
  padding: 0;
  padding-top: 77px;
  max-width: 1920px;
}

#bones_main #bones_4 .container {
  padding-bottom: 0;
}

#bones_4 .container .wrapper .num,
#bones_3 .container .wrapper .num {
  text-align: center;
  font-size: var(--text-sm);
  padding-bottom: 50px;
  color: #fff;
  font-weight: 500;
}

#bones_4 .container .wrapper .num span,
#bones_3 .container .wrapper .num span {
  background-color: #00d9b6;
  border-radius: 50%;
  padding: 12px 13px;
}

#bones_4 .container .wrapper .content,
#bones_3 .container .wrapper .content {
  text-align: center;
  padding-top: 10px;
  font-weight: 300;
}

#bones_4 .container .wrapper .content p,
#bones_3 .container .wrapper .content p {
  line-height: 1.3;
  font-size: var(--text-md);
  font-weight: 300;
  padding-bottom: 20px;
}
#bones_4 .container .wrapper .content p:nth-child(2) {
  padding: 30px 0 50px;
}

#bones_3 .container .wrapper .content p span {
  font-weight: 600;
}

#bones_4 .container .wrapper .content img {
  max-width: 800px;
}

#bones_3 .container .wrapper .content .images {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

#bones_3 .container .wrapper .content .images img {
  max-width: calc(980px / 2);
  margin: 0 80px;
}

#bones_3 .container .wrapper .content .images img:first-child {
  margin-right: 10px;
}
#bones_3 .container .wrapper .content .images img:last-child {
  margin-left: 10px;
}

/* --------------------- section 05, 06 */

#bones_5 {
  background-color: #dcf3ed;
}

#bones_5 .container .wrapper .content {
  text-align: center;
}

#bones_5 .container .wrapper .content p {
  font-weight: 300;
  padding: 20px 0;
  line-height: 1.5;
}

#bones_5 .container .wrapper .content p span {
  font-weight: 600;
}

#bones_5 .container .wrapper .content img {
  border-radius: 40px;
  margin: 45px 0;
  max-width: 800px;
}

/* --------------------- bones section 06 (M치과 뼈이식 임플란트란?) */

#bones_6 {
  background: #ffffff;
  padding: 90px 0;
}

#bones_6 .container .wrapper {
  text-align: center;
}

#bones_6 .container .wrapper h2 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 60px;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

#bones_6 .container .wrapper .content p {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 38px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}

#bones_6 .container .wrapper .content .section-image {
  display: flex;
  justify-content: center;
}

#bones_6 .container .wrapper .content .section-image img {
  max-width: 900px;
  width: 100%;
  border-radius: 30px;
  margin: 0;
}

/* --------------------- bones section 07 (care-cards) */

#bones_main #bones_7 {
  background: #E2FCF9;
}

#bones_main #bones_7 .container .wrapper .content {
  text-align: center;
}

#bones_main #bones_7 .container .wrapper .content .care-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#bones_main #bones_7 .container .wrapper .content .care-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 64px 26px;
  gap: 10px;
  width: 280px;
  height: 340px;
  background: #FFFFFF;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

#bones_main #bones_7 .container .wrapper .content .care-card .care-line {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 13px;
  background: #E2FCF9;
  z-index: 2;
}

#bones_main #bones_7 .container .wrapper .content .care-card .card-icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 4;
}

#bones_main #bones_7 .container .wrapper .content .care-card .card-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #E2FCF9;
  border-radius: 50%;
  z-index: 3;
}

#bones_main #bones_7 .container .wrapper .content .care-card .card-icon img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 4;
}

#bones_main #bones_7 .container .wrapper .content .care-card .card-text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 42px;
  text-align: center;
  color: #292929;
}

/* --------------------- bones section 08 (Q&A) */

#bones_8 {
  background: #f0f0f0;
}

#bones_8 h2 {
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
}

#bones_8 .questions {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}

#bones_8 .question {
  display: flex;
  background: #fff;
  padding: 30px 40px;
  border-radius: 60px;
  gap: 25px;
  margin-bottom: 30px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#bones_8 .question .bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C898D;
  color: white;
  font-weight: 700;
  font-size: var(--text-md);
  min-width: 60px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

#bones_8 .question .answer {
  flex: 1;
}

#bones_8 .question .answer .title {
  font-weight: 700;
  font-size: var(--text-md);
  padding-bottom: 10px;
  color: #222;
}

#bones_8 .question .answer .txt {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet (1024px 이하) */
@media screen and (max-width: 1024px) {
  /* Header */
  #bones_header .container .wrapper .main-banner {
    height: 600px;
  }

  #bones_header .container .wrapper .main-banner img {
    height: 100%;
    object-fit: cover;
  }

  #bones_header .container .wrapper .main-banner .txt h1 {
    font-size: 55px;
  }

  /* Section 1 */
  #bones_1 .container .wrapper .sub-desc {
    font-size: 18px;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.center {
    max-width: 400px;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.left-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
    max-width: 90px;
  }

  /* Section 2 */
  #bones_2 .container .wrapper .content ul.steps li.step {
    width: calc((100% - 60px) / 3);
  }

  #bones_2 .container .wrapper .content ul.steps li.step .title {
    font-size: 24px;
    padding: 15px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step .desc {
    font-size: 22px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step:after {
    font-size: 20px;
    right: -8%;
  }

  /* Section 3, 4 */
  #bones_3 .container .wrapper .content p,
  #bones_4 .container .wrapper .content p {
    font-size: 22px;
  }

  #bones_3 .container .wrapper .content .images img {
    max-width: 350px;
    margin: 0 30px;
  }

  #bones_4 .container .wrapper .content img {
    max-width: 600px;
  }

  /* Section 5 */
  #bones_5 .container .wrapper .content img {
    max-width: 600px;
  }

  /* Section 6 */
  #bones_6 .container .wrapper h2 {
    font-size: 40px;
    line-height: 50px;
  }

  #bones_6 .container .wrapper .content p {
    font-size: 20px;
    line-height: 32px;
  }

  /* Section 7 */
  #bones_main #bones_7 .container .wrapper .content .care-card {
    width: 240px;
    height: 300px;
    padding: 50px 20px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-text {
    font-size: 20px;
    line-height: 34px;
  }

  /* Section 8 */
  #bones_8 h2 {
    font-size: 32px;
  }

  #bones_8 .question {
    padding: 25px 30px;
    border-radius: 40px;
  }

  #bones_8 .question .bubble {
    font-size: 20px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  #bones_8 .question .answer .title {
    font-size: 20px;
  }

  #bones_8 .question .answer .txt {
    font-size: 16px;
  }
}

/* Mobile (768px 이하) */
@media screen and (max-width: 768px) {
  /* Header - m_implant 스타일 적용 */
  #bones_header .container {
    padding: 0;
    max-width: 100%;
  }

  #bones_header .container .wrapper {
    width: 100%;
  }

  #bones_header .container .wrapper .main-banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  #bones_header .container .wrapper .main-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  #bones_header .container .wrapper .main-banner .txt h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* Section 1 */
  #bones_1 {
    padding: 50px 0;
  }

  #bones_1 .container .wrapper h2 {
    font-size: 26px;
    line-height: 36px;
  }

  #bones_1 .container .wrapper h2 br {
    display: none;
  }

  #bones_1 .container .wrapper .sub-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  #bones_1 .container .wrapper .candidates {
    padding: 20px 0;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.center {
    max-width: 50%;
    top: 24%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.left-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
    max-width: 50px;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-top {
    top: 29%;
    left: 12%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.right-top {
    top: 29%;
    right: 12%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-bottom {
    top: 60%;
    left: 24%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.right-bottom {
    top: 60%;
    right: 24%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
    top: 70%;
  }

  /* Section 2 */
  #bones_2 {
    padding: 50px 0;
  }

  #bones_2 .container .wrapper h2 {
    font-size: 26px;
    line-height: 36px;
  }

  #bones_2 .container .wrapper .content ul.steps {
    gap: 15px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step {
    width: calc((100% - 30px) / 2);
    padding-bottom: 20px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step:after {
    display: none;
  }

  #bones_2 .container .wrapper .content ul.steps li.step .title {
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 10px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step img {
    border-radius: 15px;
    margin: 10px 0 15px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step .desc {
    font-size: 15px;
  }

  /* Section 3, 4 */
  #bones_3,
  #bones_4 {
    background-size: cover;
    background-position: center;
  }

  #bones_4 .container,
  #bones_3 .container {
    padding: 50px 20px;
  }

  #bones_4 .container .wrapper .num,
  #bones_3 .container .wrapper .num {
    padding-bottom: 30px;
    font-size: 16px;
  }

  #bones_4 .container .wrapper .num span,
  #bones_3 .container .wrapper .num span {
    padding: 10px 11px;
  }

  #bones_3 .container .wrapper h2,
  #bones_4 .container .wrapper h2 {
    font-size: 24px;
    line-height: 34px;
  }

  #bones_3 .container .wrapper .content p,
  #bones_4 .container .wrapper .content p {
    font-size: 15px;
    line-height: 1.6;
  }

  #bones_3 .container .wrapper .content p br,
  #bones_4 .container .wrapper .content p br {
    display: none;
  }

  #bones_3 .container .wrapper .content .images {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
  }

  #bones_3 .container .wrapper .content .images img {
    max-width: 100%;
    margin: 0;
  }

  #bones_3 .container .wrapper .content .images img:first-child,
  #bones_3 .container .wrapper .content .images img:last-child {
    margin: 0;
  }

  #bones_4 .container .wrapper .content img {
    max-width: 100%;
    border-radius: 20px;
  }

  /* Section 5 */
  #bones_5 {
    padding: 50px 0;
  }

  #bones_5 .container .wrapper h2 {
    font-size: 24px;
    line-height: 34px;
  }

  #bones_5 .container .wrapper .content p {
    font-size: 15px;
    line-height: 1.6;
  }

  #bones_5 .container .wrapper .content p br {
    display: none;
  }

  #bones_5 .container .wrapper .content img {
    max-width: 100%;
    border-radius: 20px;
    margin: 30px 0;
  }

  /* Section 6 */
  #bones_6 {
    padding: 50px 20px;
  }

  #bones_6 .container .wrapper h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  #bones_6 .container .wrapper .content p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  #bones_6 .container .wrapper .content p br {
    display: none;
  }

  #bones_6 .container .wrapper .content .section-image img {
    border-radius: 20px;
  }

  /* Section 7 */
  #bones_main #bones_7 {
    padding: 50px 20px;
  }

  #bones_main #bones_7 .container .wrapper h2 {
    font-size: 24px;
    line-height: 34px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-cards {
    gap: 15px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card {
    width: calc(50% - 10px);
    height: 260px;
    padding: 40px 15px;
    border-radius: 20px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .care-line {
    top: 60px;
    height: 10px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-icon::before {
    width: 55px;
    height: 55px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-icon img {
    width: 40px;
    height: 40px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-icon {
    margin-bottom: 20px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-text {
    font-size: 15px;
    line-height: 24px;
  }

  /* Section 8 */
  #bones_8 {
    padding: 50px 20px;
  }

  #bones_8 h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
  }

  #bones_8 .questions {
    padding-top: 0;
  }

  #bones_8 .question {
    flex-direction: column;
    padding: 25px;
    border-radius: 20px;
    gap: 15px;
    margin-bottom: 20px;
  }

  #bones_8 .question .bubble {
    font-size: 18px;
    min-width: 45px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  #bones_8 .question .answer .title {
    font-size: 17px;
    padding-bottom: 8px;
  }

  #bones_8 .question .answer .txt {
    font-size: 14px;
  }

  #bones_8 .question .answer .txt br {
    display: none;
  }
}

/* Small Mobile (480px 이하) */
@media screen and (max-width: 480px) {
  /* Header */
  #bones_header .container .wrapper .main-banner {
    height: 350px;
  }

  #bones_header .container .wrapper .main-banner .txt h1 {
    font-size: 24px;
  }

  /* Section 1 */
  #bones_1 .container .wrapper h2 {
    font-size: 22px;
    line-height: 32px;
  }

  #bones_1 .container .wrapper .sub-desc {
    font-size: 14px;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.center {
    max-width: 45%;
    top: 22%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-top,
  #bones_1 .container .wrapper .candidates img.overlay-img.left-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.right-bottom,
  #bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
    max-width: 38px;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-top {
    top: 29%;
    left: 12%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.right-top {
    top: 29%;
    right: 12%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.left-bottom {
    top: 58%;
    left: 26%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.right-bottom {
    top: 58%;
    right: 26%;
  }

  #bones_1 .container .wrapper .candidates img.overlay-img.center-bottom {
    top: 68%;
  }

  /* Section 2 */
  #bones_2 .container .wrapper h2 {
    font-size: 22px;
    line-height: 32px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step .title {
    font-size: 14px;
    padding: 10px 8px;
  }

  #bones_2 .container .wrapper .content ul.steps li.step .desc {
    font-size: 13px;
  }

  /* Section 3, 4 */
  #bones_3 .container .wrapper h2,
  #bones_4 .container .wrapper h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #bones_3 .container .wrapper .content p,
  #bones_4 .container .wrapper .content p {
    font-size: 14px;
  }

  /* Section 5 */
  #bones_5 .container .wrapper h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #bones_5 .container .wrapper .content p {
    font-size: 14px;
  }

  /* Section 6 */
  #bones_6 .container .wrapper h2 {
    font-size: 22px;
    line-height: 32px;
  }

  #bones_6 .container .wrapper .content p {
    font-size: 14px;
    line-height: 24px;
  }

  /* Section 7 */
  #bones_main #bones_7 .container .wrapper h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 35px 20px;
  }

  #bones_main #bones_7 .container .wrapper .content .care-card .card-text {
    font-size: 16px;
    line-height: 26px;
  }

  /* Section 8 */
  #bones_8 h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #bones_8 .question {
    padding: 20px;
  }

  #bones_8 .question .bubble {
    font-size: 16px;
    min-width: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  #bones_8 .question .answer .title {
    font-size: 15px;
  }

  #bones_8 .question .answer .txt {
    font-size: 13px;
  }
}

/********************************************* LOCATION ************************************
*/

