/* =========================
   기본 설정
========================= */
.healing-wrap,
.healing-wrap * {
  box-sizing: border-box;
}

.healing-wrap {
  width: 100%;
  overflow: hidden;
  color: #000;
  background: #fff;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}

.healing-wrap img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.healing-wrap a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   단락 좌우 배치
   flex 없이 grid 사용
========================= */
.healing-row {
  width: 100%;
  margin-top: 5%;
  background: #fff;
}

.healing-row-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "content image";

  width: 100%;
  max-width: 1700px;
  min-height: 500px;
  margin: 0 auto;
  padding-top: 6%;
}

/* 두 번째 단락은 이미지가 왼쪽 */
.healing-row-reverse .healing-row-inner {
  grid-template-areas: "image content";
}


/* =========================
   텍스트 영역
========================= */
.healing-content {
  grid-area: content;
  position: relative;

  min-width: 0;
  min-height: 500px;
  padding: 70px 4%;

  background: #fff;
}

.healing-content-inner {
  position: absolute;
  top: 50%;
  left: 50%;

  width: calc(100% - 80px);
  max-width: 600px;

  transform: translate(-50%, -50%);
}


/* =========================
   페이드 이미지 슬라이드
========================= */
.healing-image {
  grid-area: image;
  position: relative;

  min-width: 0;
  min-height: 500px;

  overflow: hidden;
  background: #eee;
}

/* 모든 슬라이드 이미지 */
.healing-image .healing-slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  width: 100%;
  height: 100%;
  min-height: 0;

  object-fit: cover;

  opacity: 0;
  visibility: hidden;
  transform: scale(1);

  transition:
      opacity 0.9s ease-in-out,
    visibility 0.9s ease-in-out,
    transform 6s ease !important;
}

/* 현재 활성화된 이미지 */
.healing-image .healing-slide.active {
   z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1.035);
}

/* 이미지가 한 장일 경우 */
.healing-image .healing-slide:only-child {
  position: absolute;
  opacity: 1;
  visibility: visible;
}


/* =========================
   아이콘
========================= */
.healing-icon {
  display: block;

  width: 100px;
  height: 100px;
  margin: 0 0 24px;
}

.healing-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.healing-icon svg {
  display: block;

  width: 100%;
  height: 100%;

  fill: none;
  stroke: #111;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.healing-icon-tent {
  width: 100px;
}


/* =========================
   제목과 내용
========================= */
.healing-title {
  margin: 0 0 10px;

  color: #111;
  font-size: clamp(30px, 2.6vw, 45px);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.healing-title strong {
  font-weight: 700;
}

.healing-subtitle {
  margin: 0;

  color: #111;
  font-size: clamp(19px, 1.4vw, 26px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.healing-line {
  display: block;

  width: 42px;
  height: 1px;
  margin: 22px 0 20px;

  background: #444;
}

.healing-description {
  max-width: 550px;
  margin: 0;
  padding-bottom: 3%;

  color: #444;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.015em;
}


/* =========================
   버튼
========================= */
.healing-buttons {
  display: block;
  margin-top: 22px;
  font-size: 0;
}

.healing-button {
  display: inline-block;

  min-width: 110px;
  min-height: 45px;
  margin: 0 8px 8px 0;
  padding: 10px 25px;

  border: 1px solid #555;
  border-radius: 50px;

  color: #222;
  background: #fff;

  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  vertical-align: top;
  letter-spacing: -0.035em;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.healing-button:hover {
  color: #fff;
  background: #ff6600;
  border-color: #ff6600;
  transform: translateY(-2px);
}


/* =========================
   1200px 이하
========================= */
@media screen and (max-width: 1200px) {
  .healing-row-inner {
    grid-template-columns: 46% 54%;
  }

  .healing-row-reverse .healing-row-inner {
    grid-template-columns: 54% 46%;
  }

  .healing-content {
    padding: 60px 40px;
  }

  .healing-content-inner {
    width: calc(100% - 70px);
  }

  .healing-description {
    font-size: 14px;
  }

  .healing-button {
    padding-right: 20px;
    padding-left: 20px;
  }
}


/* =========================
   1024px 이하
========================= */
@media screen and (max-width: 1024px) {
  .healing-row-inner,
  .healing-row-reverse .healing-row-inner {
    grid-template-columns: 50% 50%;
    min-height: 380px;
  }

  .healing-content,
  .healing-image {
    min-height: 380px;
  }

  .healing-content {
    padding: 45px 30px;
  }

  .healing-content-inner {
    width: calc(100% - 50px);
  }

  .healing-icon,
  .healing-icon-tent {
    width: 55px;
    height: 55px;
    margin-bottom: 17px;
  }

  .healing-title {
    font-size: 29px;
  }

  .healing-subtitle {
    font-size: 18px;
  }

  .healing-line {
    margin: 17px 0;
  }

  .healing-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .healing-button {
    padding: 9px 16px;
    font-size: 12px;
  }
}


/* =========================
   768px 이하
========================= */
@media screen and (max-width: 768px) {
  .healing-row {
    margin-top: 0;
    padding-bottom: 55px;
  }

  .healing-row-inner,
  .healing-row-reverse .healing-row-inner {
    grid-template-columns: 100%;
    grid-template-areas:
      "image"
      "content";

    min-height: 0;
    padding-top: 0;
  }

  .healing-image {
    width: auto;
    min-height: 0;
    margin: 0 16px;

    aspect-ratio: 16 / 10;
  }

  .healing-image .healing-slide {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .healing-content {
    min-height: 0;
    padding: 38px 24px 0;
  }

  .healing-content-inner {
    position: static;

    width: 100%;
    max-width: none;

    transform: none;
  }

  .healing-icon,
  .healing-icon-tent {
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
  }

  .healing-title {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .healing-subtitle {
    font-size: 18px;
  }

  .healing-description {
    max-width: none;
    font-size: 17px;
    line-height: 1.5;
  }

  .healing-buttons {
    margin-top: 20px;
  }

  .healing-button {
    min-height: 39px;
    padding: 9px 18px;

    font-size: 15px;
  }
}


/* =========================
   480px 이하
========================= */
@media screen and (max-width: 480px) {
  .healing-row {
    padding-bottom: 48px;

  }
  .mt75{padding-top:55px;}

  .healing-image {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
  }

  .healing-content {
    padding: 32px 20px 0;
  }

  .healing-title {
    font-size: 25px;
  }

  .healing-subtitle {
    font-size: 17px;
  }

  .healing-line {
    width: 35px;
    margin: 17px 0;
  }

  .healing-button {
    width: 100%;
    margin-right: 0;
  }
}


/* =========================
   움직임 최소화 설정
========================= */
@media (prefers-reduced-motion: reduce) {
  .healing-image .healing-slide {
    transform: none;
    transition: opacity 0.4s ease;
  }

  .healing-image .healing-slide.active {
    transform: none;
  }
}




/* =========================
   S-Core드림 웹폰트
   실제 폰트 파일 경로에 맞게 수정
========================= */
@font-face {
  font-family: "S-CoreDream";
  src:
    url("/theme/amazing/font/S-CoreDream-7ExtraBold.woff2") format("woff2"),
    url("/theme/amazing/font/S-CoreDream-7ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* =========================
   기본 설정
========================= */
.amazing-contact,
.amazing-contact * {
  box-sizing: border-box;
}

.amazing-contact {
  width: 100%;
  padding: 0px 0 55px;
  overflow: hidden;
  color: #fff;
  background: #fff;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}

.amazing-contact a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   전체 좌우 배치
========================= */
.amazing-contact-inner {
  display: grid;
  grid-template-columns: 50% 50%;

  width: 100%;
  max-width: 1920px;
  min-height: 550px;
  margin: 0 auto;
}


/* =========================
   공통 박스
========================= */
.amazing-contact-box {
  position: relative;
  min-width: 0;
  min-height: 550px;
  overflow: hidden;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 어두운 배경막 */
.amazing-contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(0, 0, 0, 0);
}

/* 왼쪽 배경 */
.contact-location {
  background-image:
    url("/theme/amazing/img/contact_location_bg.png");
}

/* 오른쪽 배경 */
.contact-reservation {
  background-image:
    url("/theme/amazing/img/contact_reservation_bg.png");
}


/* =========================
   내용 영역
========================= */
.amazing-contact-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;

  width: calc(100% - 80px);
  max-width: 650px;

  text-align: center;
  transform: translate(-50%, -50%);
}


/* =========================
   아이콘
========================= */
.amazing-contact-icon {
  width: 120px;

  margin: 0 auto 18px;
}

.amazing-contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================
   제목
========================= */
.amazing-contact-title {
  margin: 0 0 24px;

  color: #fff;
  font-size: clamp(29px, 2.1vw, 40px);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.amazing-contact-title strong {
  font-weight: 700;
}


/* =========================
   주소
========================= */
.amazing-address {
  margin-bottom: 30px;
}

.amazing-address p {
  margin: 0 0 8px;

  color: #fff;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.amazing-address p:last-child {
  margin-bottom: 0;
}

.amazing-address strong {
  font-weight: 700;
}


/* =========================
   전화번호
========================= */
.amazing-phone {
  margin-bottom: 27px;
}

.amazing-phone span {
  display: block;
  margin-bottom: 4px;

  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.amazing-phone a {
  display: inline-block;

  color: #fff;
  font-family: "S-CoreDream", "Pretendard", sans-serif;
  font-size: clamp(30px, 2.4vw, 43px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
}


/* =========================
   버튼
========================= */
.amazing-contact-button {
  display: inline-block;

  min-width: 300px;
  min-height: 66px;
  padding: 18px 35px;

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;

  color: #fff;
  background: rgba(0, 0, 0, 0.08);

  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.025em;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.amazing-contact-button:hover {
  color: #fff;
  background: #ff6600;
  border-color: #ff6600;
  transform: translateY(-3px);
}


/* =========================
   1200px 이하
========================= */
@media screen and (max-width: 1200px) {
  .amazing-contact-inner,
  .amazing-contact-box {
    min-height: 450px;
  }

  .amazing-contact-content {
    width: calc(100% - 60px);
  }

  .amazing-contact-icon {
    width: 70px;
    height: 70px;
  }

  .amazing-contact-title {
    font-size: 31px;
  }

  .amazing-address p {
    font-size: 16px;
  }

  .amazing-contact-button {
    min-width: 270px;
    min-height: 58px;
    padding: 14px 28px;
    font-size: 16px;
  }
}


/* =========================
   1024px 이하
========================= */
@media screen and (max-width: 1024px) {
  .amazing-contact-inner,
  .amazing-contact-box {
    min-height: 420px;
  }

  .amazing-contact-content {
    width: calc(100% - 40px);
  }

  .amazing-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .amazing-contact-title {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .amazing-address {
    margin-bottom: 25px;
  }

  .amazing-address p {
    font-size: 14px;
  }

  .amazing-phone span {
    font-size: 16px;
  }

  .amazing-phone a {
    font-size: 31px;
  }

  .amazing-contact-button {
    min-width: 230px;
    min-height: 54px;
    padding: 12px 23px;
    font-size: 15px;
  }
}


/* =========================
   768px 이하
========================= */
@media screen and (max-width: 768px) {
  .amazing-contact {
    padding: 0;
  }

  .amazing-contact-inner {
    grid-template-columns: 100%;
    min-height: 0;
  }

  .amazing-contact-box {
    min-height: 430px;
  }

  .amazing-contact-content {
    width: calc(100% - 40px);
    max-width: 520px;
  }

  .amazing-contact-title {
    font-size: 28px;
  }

  .amazing-address p {
    font-size: 15px;
  }

  .amazing-phone a {
    font-size: 34px;
  }

  .amazing-contact-button {
    min-width: 260px;
  }
}


/* =========================
   480px 이하
========================= */
@media screen and (max-width: 480px) {
  .amazing-contact-box {
    min-height: 390px;
  }

  .amazing-contact-box::before {
    background: rgba(0, 0, 0, 0);
  }

  .amazing-contact-content {
    width: calc(100% - 32px);
  }

  .amazing-contact-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }

  .amazing-contact-title {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .amazing-address {
    margin-bottom: 23px;
  }

  .amazing-address p {
    font-size: 13px;
    line-height: 1.6;
  }

  .amazing-phone {
    margin-bottom: 24px;
  }

  .amazing-phone span {
    font-size: 14px;
  }

  .amazing-phone a {
    font-size: 29px;
  }

  .amazing-contact-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 11px 20px;
    font-size: 14px;
  }
}





.maincommu{width:100%; position: relative; padding-bottom:70px;  text-align:center; overflow:hidden; }
.commuwrap{width:1200px; margin:0 auto; border:0px solid red; padding-top:0px ; min-height:450px;}


@media all and (max-width:980px) { 
.commuwrap{width:100%; margin:0 auto; border:0px solid red; padding:10px; min-height:auto;}
}



.taparea{border:0px solid red; overflow:hidden;}


#m_board1 {
   
    position: relative;
    width:100%;
    margin:0 auto;
    position: relative;
    margin: 0 auto;
    border:0px solid #ddd;
}

.tabs1 {
    width:60%;
    background:none;
    margin-top:0px;
    border:0px solid red;
    overflow:hidden;
    margin:0 auto;
    
}
.tabs1 li {
    display:inline-block;
    margin:0 auto;    
    
    color:#000;
    float:left;
    background:none;
   height:45px; 
      line-height:45px;   
    width:31%;
    margin:1%;
    text-align:center;       
    box-sizing:border-box;
    

}
.tabs1 li a {
  display:block;
    font-size:19px;
    color:#000;
    
     border:1px solid #000;
     border-radius:25px;

     
  
    
}
.tabs1 li a:hover {
    color: #fff;
    background:none;
    box-sizing: border-box;
    font-size:20px;
    font-weight: 500;
    text-decoration:none;
    
    background:#000
}

.tabs1 li.wd50per{width:50% !important;}

.tabs1 .active a {
    color: #fff;
    background:none;
    box-sizing: border-box;
    font-size:20px;
    font-weight: 500;
    text-decoration:none;
    
    background:#000;
    

}


#m_board1 .tab_container1 {
    border: 0px solid red;
    text-align: left;
    background: none;
     
    
    text-align:center;
    overflow:hidden;
}
#m_board1 .tab_content1 ul {margin-top:4%;border-top:1px solid #000;}
#m_board1 .tab_content1 ul li {
    display: inline-block;
    width:100%;
    float:left;
   
    border-bottom:1px solid #000;
    padding:0px;
    box-sizing: border-box;
    text-align:left;
    position:relative; 
    margin:0px;
    color:#000;
}



@media all and (max-width:980px) { 
.tabs1 {
    width:100%;
    background:none;
    margin-top:0px;
    border:0px solid red;
    overflow:hidden;
    margin:0 auto;
    
}

.tabs1 li a{ font-size:15px;}
.tabs1 li a:hover { font-size:15px;}
.tabs1 .active a {
    color: #fff;
    background:none;
    box-sizing: border-box;
    font-size:15px;
    font-weight: 500;
    text-decoration:none;
    
    background:#000;
    

}


}




/* =========================
   S-Core드림 웹폰트
   실제 폰트 경로에 맞게 수정
========================= */
@font-face {
  font-family: "S-CoreDream";
  src:
    url("/theme/amazing/font/S-CoreDream-7ExtraBold.woff2") format("woff2"),
    url("/theme/amazing/font/S-CoreDream-7ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* =========================
   기본 설정
========================= */
.amazing-main-visual,
.amazing-main-visual * {
  box-sizing: border-box;
}

.amazing-main-visual {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;

  color: #fff;
  background-image:
    url("/theme/amazing/img/main_visual_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}


/* =========================
   배경 어두운 효과
========================= */
.amazing-main-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.22) 100%
    );
}


/* =========================
   중앙 내용
========================= */
.amazing-main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;

  width: calc(100% - 40px);
  max-width: 900px;

  text-align: center;
  transform: translate(-50%, -45%);
}


/* =========================
   로고
========================= */
.amazing-main-logo {
  width: 300px;
  max-width: 100%;
  margin: 0 auto 18px;
}

.amazing-main-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


/* =========================
   제목
========================= */
.amazing-main-title {
  margin: 0 0 13px;

  color: #fff;
  font-size: clamp(25px, 3.3vw, 55px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.06em;

  text-shadow:    0 2px 6px rgba(0, 0, 0, 0.22);
}


/* =========================
   설명
========================= */
.amazing-main-description {
  margin: 0;

  color: #fff;
  font-size: clamp(18px, 1.65vw, 27px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.035em;

  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.35);
}


/* =========================
   전화번호 버튼
========================= */
.amazing-main-phone {
  display: inline-block;

  min-width: 510px;
  margin-top: 34px;
  padding: 15px 45px 17px;

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;

  color: #fff;
  background: rgba(0, 0, 0, 0.08);

  text-align: center;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.amazing-main-phone-label {
  display: inline-block;
  margin-right: 12px;

  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: -0.03em;
}

.amazing-main-phone strong {
  display: inline-block;

  color: #fff;
  font-family: "S-CoreDream", "Pretendard", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0.015em;
}

.amazing-main-phone:hover {
  background: #ff6600;
  border-color: #ff6600;
  transform: translateY(-3px);
}


/* =========================
   1440px 이하
========================= */
@media screen and (max-width: 1440px) {
  .amazing-main-visual {
    min-height: 700px;
  }

  .amazing-main-logo {
    width: 370px;
  }

  .amazing-main-content {
    transform: translate(-50%, -43%);
  }

  .amazing-main-phone {
    min-width: 460px;
    margin-top: 30px;
  }
}


/* =========================
   1024px 이하
========================= */
@media screen and (max-width: 1024px) {
  .amazing-main-visual {
    min-height: 620px;
  }

  .amazing-main-logo {
    width: 310px;
    margin-bottom: 15px;
  }

  .amazing-main-title {
    font-size: 42px;
  }

  .amazing-main-description {
    font-size: 22px;
  }

  .amazing-main-phone {
    min-width: 410px;
    margin-top: 27px;
    padding: 13px 35px 15px;
  }

  .amazing-main-phone-label {
    font-size: 17px;
  }

  .amazing-main-phone strong {
    font-size: 28px;
  }
}


/* =========================
   768px 이하
========================= */
@media screen and (max-width: 768px) {
  .amazing-main-visual {
    min-height: 600px;
    background-position: center center;
  }

  .amazing-main-overlay {
    background: rgba(0, 0, 0, 0.2);
  }

  .amazing-main-content {
    width: calc(100% - 40px);
    transform: translate(-50%, -42%);
  }

  .amazing-main-logo {
    width: 270px;
    max-width: 80%;
  }

  .amazing-main-title {
    margin-bottom: 14px;
    font-size: 35px;
  }

  .amazing-main-description {
    font-size: 19px;
    line-height: 1.55;
  }

  .amazing-main-phone {
    width: 100%;
    max-width: 410px;
    min-width: 0;
    margin-top: 28px;
  }

  .amazing-main-phone-label {
    font-size: 16px;
  }

  .amazing-main-phone strong {
    font-size: 26px;
  }
}


/* =========================
   480px 이하
========================= */


@media screen and (max-width: 480px) {
  .amazing-main-visual {

    min-height: 540px;
    background-position: center center;
  }


  .amazing-main-content {   
    top: 45%;
    width: calc(100% - 32px);
  }

  .amazing-main-logo {
    width: 230px;
    margin-bottom: 16px;
  }

  .amazing-main-title {
    font-size: 29px;
    line-height: 1.3;
  }

  .amazing-main-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .amazing-main-phone {
    margin-top: 25px;
    padding: 13px 18px 15px;
  }

  .amazing-main-phone-label {
    display: block;
    margin: 0 0 3px;
    font-size: 14px;
  }

  .amazing-main-phone strong {
    display: block;
    font-size: 25px;
  }
}



/* =========================
   카피라이트 영역
========================= */
.amazing-footer,
.amazing-footer * {
  box-sizing: border-box;

}

.amazing-footer {
  border-top:1px solid #ccc;
  width: 100%;
  min-height: 230px;
  padding: 52px 20px;
  color: #111;
  background: #fff;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}

.amazing-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


/* =========================
   업체 정보
========================= */
.amazing-footer-info {
  font-size: 0;
}

.amazing-footer-info span {
  display: inline-block;
  position: relative;
  margin-right: 36px;

  color: #111;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.025em;
  vertical-align: middle;
}

.amazing-footer-info span:last-child {
  margin-right: 0;
}

.amazing-footer-info strong {
  font-weight: 600;
}

.amazing-footer-info a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   저작권 문구
========================= */
.amazing-footer-copy {
  margin: 13px 0 0;

  color: #111;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.025em;
}


/* =========================
   1024px 이하
========================= */
@media screen and (max-width: 1024px) {
  .amazing-footer {
    min-height: 200px;
    padding: 45px 25px;
  }

  .amazing-footer-info span {
    margin-right: 24px;
    font-size: 15px;
  }

  .amazing-footer-copy {
    font-size: 15px;
  }
}


/* =========================
   768px 이하
========================= */
@media screen and (max-width: 768px) {
  .amazing-footer {
    min-height: 0;
    padding: 40px 20px;
  }

  .amazing-footer-info span {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
  }

  .amazing-footer-info span:last-child {
    margin-bottom: 0;
  }

  .amazing-footer-copy {
    margin-top: 16px;
    font-size: 13px;
  }
}


/* =========================
   480px 이하
========================= */
@media screen and (max-width: 480px) {
  .amazing-footer {
    padding: 34px 16px;
  }

  .amazing-footer-info span {
    font-size: 13px;
    line-height: 1.7;
  }

  .amazing-footer-copy {
    font-size: 12px;
    line-height: 1.6;
  }
}




.mapleft{width:100%; position: relative;  overflow: hidden;}
.mapdetail{position: absolute; left :2%; top:15%; border:0px solid red; z-index:5; width:25%; padding:25px;
 background:#f95e00;}
.mapdetail ul{width:100%;}
.mapdetail ul li{width:100%;  font-size:20px; border:0px solid red;   overflow: hidden; color:#fff; line-height: 35px;}
.mapdetail ul li dl{width:100%; }
.mapdetail ul li dl dt{width:20%; float:left;}
.mapdetail ul li dl dd{width:80%; float:left;}

@media all and (max-width:980px) { 
.mapdetail{display:none;}
}



.root_daum_roughmap .cont{display: none;}