@charset "utf-8";

html, body {
  font-size: 10px;
  overflow-x:hidden;
}

@media all and (max-width:1280px) {
  html, body {
    font-size: 8px;
  }
}

@media all and (max-width:960px) {
  html, body {
    font-size: 6px;
  }
}

@media all and (max-width:425px) {
  html, body {
    font-size: 5px;
  }
}

body {
  position: relative;
  font-family: "Pretendard Variable", sans-serif;
  color:#000;
  -webkit-text-size-adjust: none;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
}

body, h1, h2, h3, h4, h5, h6, ul, p, button, input, td{
  margin:0;
  padding:0
}

h1, h2, h3, h4, h5, h6{
  font-size:inherit;
  font-weight:normal;
  font-family:inherit;
}

ul{
  list-style:none;
}

a{
  text-decoration:none;
}

a:link, a:visited, a:hover, a:active{
  color:inherit;
  text-decoration:none;
}

strong {
    font-weight: normal;
}

button{
  border:0px;
  background:none;
  cursor:pointer;
  font-family:inherit;
  font-size: inherit;
}

img{
  border:0px;
  vertical-align:top;
}

address{
  font-style:normal;
}

header, nav, section, article, footer{
  display:block;
}

legend {
  position:absolute;
  margin:0;
  padding:0;
  font-size:0;
  line-height:0;
  text-indent:-9999em;
  overflow:hidden;
}

label, input, button, select{
  vertical-align:middle;
}

input, textarea{
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

hr {
  display:none;
}

pre {
  overflow-x:scroll;
  font-size:1.1em;
}

table{
  border-spacing:0px;
  border-collapse:collapse;
}

em{
  font-style:normal;
}

fieldset{
  border:0;
}

select::-ms-expand {
  display:none;
}

input:focus {
  outline:none;
}

input[type="date"]{
  position:relative;
  padding-right:20px;
  background:url("../images/cal_arrow.png") no-repeat right 10px center;
  padding-left:0;
}

input[type="date"]::-webkit-clear-button,
input[type="date"]::-webkit-inner-spin-button{
  display:none;
}

input[type="date"]::-webkit-calendar-picker-indicator{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:transparent;
  color:transparent;
  cursor:pointer;
}

input[type="date"]::before{
  content:attr(data-placeholder);
  width:100%;
}

input[type="date"]:valid::before{
  display:none;
}

input[data-placeholder]::before{
  color:#999;
  font-size:13px;
}

.clear:after{
  display:block;
  content:"";
  clear:both;
}

.area {
  width: 1540px;
  margin: 0 auto;
}

.mo-only {
  display: none;
}

.only-550 {
  display: none;
}

@media all and (max-width:1500px) {
  .area {
    width: 94%;
  }
}

@media all and (max-width:760px) {
  .pc-only {
    display: none;
  }

  .mo-only {
    display: block;
  }

  .area,
  .mo-area {
    width: calc(100% - 8rem) !important;
    margin: 0 auto;
  }
}

@media all and (max-width:550px) {
  .only-550 {
    display: block;
  }
}


#black {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 99;
}

#quickMenu {
  position: fixed;
  top: 50%;
  right: 0;
  width: 12.6rem;
  height: 50.4rem;
  transform: translateY(-50%);
  z-index: 98;
  transition: right 0.5s;
}

#quickMenu.on {
  right: -12.6rem;
}

#quickMenu .menu-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 3rem 0 0 3rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  background-color: #fff;
}

#quickMenu .menu-wrap ul li {
  position: relative;
  padding-top: 2.6rem;
  margin-top: 2.5rem;
}

#quickMenu .menu-wrap ul li:first-child {
  padding-top: 0;
  margin-top: 0;
}

#quickMenu .menu-wrap ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4rem;
  height: 1px;
  background-color: #C9CDD2;
  transform: translateX(-50%);
}

#quickMenu .menu-wrap ul li:first-child::before {
  display: none;
}

#quickMenu .menu-wrap ul li a {
  display: block;
  width: 100%;
}

#quickMenu .menu-wrap ul li a .icon {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1.2rem;
}

#quickMenu .menu-wrap ul li a .icon img {
  width: 100%;
  height: auto;
}

#quickMenu .menu-wrap ul li a p {
  font-size: 1.6rem;
  text-align: center;
  color: #5D646A;
}

#quickMenu .open-btn {
  position: absolute;
  top: 50%;
  left: -2.8rem;
  width: 2.8rem;
  height: 5.6rem;
  background-color: #fff;
  transform: translateY(-50%);
  border-radius: 2.8rem 0 0 2.8rem;
  box-shadow: -3px 0 6px rgba(0,0,0,0.16);
  z-index: 1;
  cursor: pointer;
}

#quickMenu .open-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 5.6rem;
  background-color: #fff;
}

#quickMenu .open-btn img {
  position: absolute;
  top: 2rem;
  left: 1.2rem;
  width: 1.1rem;
  height: auto;
  transform: rotate(180deg);
  transition: transform 0.5s;
}

#quickMenu.on .open-btn img {
  transform: rotate(0);
}

@media all and (max-width:760px) {
  #quickMenu {
    top: auto;
    bottom: 10rem;
    width: 10.667rem;
    height: 35.667rem;
    transform: translateY(0);
  }

  #quickMenu .menu-wrap {
    border-radius: 3.333rem 0 0 3.333rem;
  }

  #quickMenu .menu-wrap ul li {
    padding-top: 1.167rem;
    margin-top: 1.167rem;
  }

  #quickMenu .menu-wrap ul li::before {
    display: none;
  }

  #quickMenu .menu-wrap ul li a .icon {
    width: 5.333rem;
    height: 5.333rem;
    margin-bottom: 0;
  }

  #quickMenu .menu-wrap ul li a p {
    display: none;
  }

  #quickMenu .open-btn {
    display: none;
  }
}


#topBtn {
  position: fixed;
  bottom: 7rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 98;
  min-width: 8.2rem;
}

#topBtn button {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 3rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#topBtn button img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}

#topBtn.on button img {
  transform: rotate(180deg);
}

#topBtn p {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#topBtn.on p {
  opacity: 0
}

#topBtn.on p.off {
  display: none;
}

#topBtn.on p.on {
  display: block;
}

@media all and (max-width:760px) {
  #topBtn {
    display: none;
  }
}


#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: #fff;
  z-index: 98;
}

#header .hd-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1570px;
  height: 100%;
  margin: 0 auto;
}

#header .hd-area .hd-logo a {
  display: block;
}

#header .hd-area .hd-logo a img {
  width: 29.7rem;
  height: auto;
}

#header .hd-area .gnb-wrap {
  display: flex;
  align-items: center;
}

#header .hd-area .gnb-wrap ul {
  display: flex;
  gap: 9rem;
}

#header .hd-area .gnb-wrap ul li a {
  font-size: 1.8rem;
  font-weight: 700;
}

#header .hd-area .gnb-wrap ul li.on a {
  color: #55964E;
}

#header .hd-area .gnb-wrap .call-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 25.6rem;
  height: 4.4rem;
  background-color: #fff;
  border-radius: 5rem;
  margin-left: 7.8rem;
  border: 2px solid #55964E;
  box-sizing: border-box;
}

#header .hd-area .gnb-wrap .call-group .icon {
  width: 2.1rem;
  height: 2.1rem;
}

#header .hd-area .gnb-wrap .call-group img {
  width: 100%;
  height: auto;
}

#header .hd-area .gnb-wrap .call-group a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: #55964E;
}

#header .hd-area .gnb-wrap .call-group a strong {
  font-size: 2rem;
  font-weight: 800;
  margin-top: -0.25rem;
}

#header .hd-area .gnb-wrap .util-group {
  display: flex;
  align-items: center;
  margin-left: 4rem;
}

#header .hd-area .gnb-wrap .util-group a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #72787F;
}

#header .hd-area .gnb-wrap .util-group a img {
  width: 3.2rem;
  height: auto;
  margin-left: 0.8rem;
}

@media all and (max-width:1700px) {
  #header .hd-area .gnb-wrap ul {
    gap: 6rem;
  }

  #header .hd-area .gnb-wrap .call-group {
    margin-left: 5rem;
  }
}

@media all and (max-width:1570px) {
  #header .hd-area {
    width: 94%;
  }
}

@media all and (max-width:1280px) {
  #header .hd-area .gnb-wrap ul {
    gap: 4rem;
  }

  #header .hd-area .gnb-wrap .call-group {
    margin-left: 3rem;
  }
}

@media all and (max-width:760px) {
  #header {
    height: 10.667rem;
  }

  #header .hd-area {
    width: calc(100% - 4rem);
  }

  #header .hd-area .gnb-wrap ul {
    display: none;
  }

  #header .hd-area .hd-logo a img {
    width: 31.333rem;
  }

  #header .hd-area .gnb-wrap .call-group {
    gap: 0;
    width: 26.833rem;
    height: 4.833rem;
    margin-left: 0;
  }

  #header .hd-area .gnb-wrap .call-group a {
    gap: 2rem;
    font-size: 2.667rem;
  }
}


#main .video-con {
  width: 100%;
  height: calc(100vh - 10rem);
  margin-top: 10rem;
  background: url("../img/video_con_img.png") no-repeat center;
  background-size: cover;
}

#main .video-con .area {
  position: relative;
  height: 100%;
}

#main .video-con .area .txt-wrap {
  position: absolute;
  left: 5rem;
  bottom: 8.2rem;
  color: #fff;
}

#main .video-con .area .txt-wrap > * {
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

#main .video-con .area .txt-wrap h3 {
  font-size: 1.4rem;
  padding-bottom: 2.6rem;
}

#main .video-con .area .txt-wrap h3 span {
  letter-spacing: 0.45rem;
}

#main .video-con .area .txt-wrap h2 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 5.6rem;
  padding-bottom: 2.4rem;
}

#main .video-con .area .txt-wrap p {
  font-size: 2rem;
}

@media all and (max-width:760px) {
  #main .video-con .area .txt-wrap {
    left: 0;
  }

  #main .video-con .area .txt-wrap h3 {
    font-size: 2rem;
    padding-bottom: 5.167rem;
  }

  #main .video-con .area .txt-wrap h3 span {
    letter-spacing: 0.2rem;
  }

  #main .video-con .area .txt-wrap h2 {
    font-size: 6.667rem;
    line-height: 9rem;
    padding-bottom: 7rem;
  }

  #main .video-con .area .txt-wrap p {
    font-size: 2.667rem;
    line-height: 4.333rem;
  }
}


#main .intro-con {
  padding: 26.9rem 0 13.7rem;
}

#main .intro-con .area .ci {
  display: block;
  width: 11rem;
  height: 11rem;
  margin: 0 auto 3.8rem;
}

#main .intro-con .area .ci img {
  width: 100%;
  height: auto;
}

#main .intro-con .area h3 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  text-align: center;
  font-weight: 700;
  padding-bottom: 3.2rem;
}

#main .intro-con .area h3 span {
  color: #55964E;
}

#main .intro-con .area p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
  color: #33383C;
}

#main .intro-con .area p strong {
  font-weight: 700;
}

@media all and (max-width:760px) {
  #main .intro-con {
    padding: 22.5rem 0 15rem;
  }

  #main .intro-con .area .ci {
    width: 15rem;
    height: 15rem;
    margin: 0 auto 4.167rem;
  }

  #main .intro-con .area h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 5rem;
  }

  #main .intro-con .area p {
    font-size: 2.667rem;
    line-height: 4rem;
  }
}


#main .point-con {
  background-color: #F8F9FA;
  padding: 14.7rem 0 18.5rem;
}

#main .point-con .area .point {
  display: flex;
  gap: 8.6rem;
}

#main .point-con .area .point1 {
  padding-left: 4.6rem;
}

#main .point-con .area .point2 {
  justify-content: right;
  gap: 12.4rem;
  padding-right: 10.8rem;
  padding-top: 11rem;
}

#main .point-con .area .point .img {
  width: 65rem;
}

#main .point-con .area .point .img img {
  width: 100%;
  height: auto;
}

#main .point-con .area .point .cont-tit {
  padding-top: 10.5rem;
}

#main .point-con .area .point .cont-tit h5 {
  font-size: 2.4rem;
  color: #55964E;
  padding-bottom: 1.2rem;
}

#main .point-con .area .point .cont-tit h4 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 700;
  padding-bottom: 3rem;
}

#main .point-con .area .point .cont-tit h4 span {
  color: #55964E;
}

#main .point-con .area .point .cont-tit .bar {
  display: block;
  width: 9.8rem;
  height: 2px;
  background-color: #C9CDD2;
  margin-bottom: 2.3rem;
}

#main .point-con .area .point .cont-tit p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #33383C;
}

#main .point-con .area .point .cont-tit p strong {
  font-weight: 700;
}

#main .point-con .swiper {
  position: relative;
}

#main .point-con .swiper-wrapper {
  display: block;
}

#main .point-con .swiper-slide {
  width: auto;
}

#main .point-con .swiper-pagination5 {
  display: none !important;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

#main .point-con .swiper-pagination5 {
  display: flex;
  gap: 14px;
  width: auto;
}

#main .point-con .swiper-pagination5 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #C9CDD2;
  opacity: 1;
  margin: 0;
}

#main .point-con .swiper-pagination5 .swiper-pagination-bullet-active {
  background-color: #55964E;
}

@media all and (max-width:1280px) {
  #main .point-con .area .point1 {
    padding-left: 0;
  }

  #main .point-con .area .point2 {
    padding-right: 0;
  }
}

@media all and (max-width:760px) {
  #main .point-con {
    padding: 12rem 0 14.833rem;
  }

  #main .point-con .area .point{
    flex-direction: column;
    gap: 0;
  }

  #main .point-con .area .point1 {
    padding-left: 0;
  }

  #main .point-con .area .point2 {
    padding-right: 0;
    padding-top: 0;
  }

  #main .point-con .area .point .img {
    width: 100%;
    order: 1;
  }

  #main .point-con .area .point .cont-tit {
    order: 2;
    background-color: #fff;
    padding: 5.333rem 2rem 0 2rem;
    height: 61.667rem;
  }

  #main .point-con .area .point .cont-tit h5 {
    font-size: 3.333rem;
    padding-bottom: 2.167rem;
  }

  #main .point-con .area .point .cont-tit h4 {
    font-size: 5rem;
    line-height: 6.667rem;
    padding-bottom: 3.667rem;
  }

  #main .point-con .area .point .cont-tit .bar {
    width: 23rem;
    margin-bottom: 2.833rem;
  }

  #main .point-con .area .point .cont-tit p {
    font-size: 2.667rem;
    line-height: 4.333rem;
    word-break: keep-all;
  }

  #main .point-con .swiper-pagination5 {
    display: flex !important;
  }

  #main .point-con .swiper-wrapper {
    display: flex;
  }

  #main .point-con .swiper-slide {
    width: 100%;
  }
}


#main .clinic-con {
  position: relative;
  width: 100%;
  height: 90rem;
}

#main .clinic-con .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#main .clinic-con .bg-overlay ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

#main .clinic-con .bg-overlay ul li:first-child {
  display: block;
}

#main .clinic-con .bg-overlay ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main .clinic-con .area {
  position: relative;
  height: 100%;
}

#main .clinic-con .area .tit-wrap {
  position: absolute;
  top: 10rem;
  left: 0;
  z-index: 10;
}

#main .clinic-con .area .tit-wrap h5 {
  font-size: 1.6rem;
  color: #B3D9AD;
  padding-bottom: 1.6rem;
}

#main .clinic-con .area .tit-wrap h4 {
  font-size: 2rem;
  line-height: 2.6rem;
  color: #fff;
}

#main .clinic-con .area .ul1 {
  position: absolute;
  bottom: 10rem;
  left: 0;
  z-index: 10;
}

#main .clinic-con .area .ul1 li {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#main .clinic-con .area .ul1 li.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#main .clinic-con .area .ul1 li h4 {
  font-size: 1.8rem;
  color: #C9CDD2;
  padding-bottom: 1.2rem;
}

#main .clinic-con .area .ul1 li h3 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 3.2rem;
}

#main .clinic-con .area .ul1 li .p-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#main .clinic-con .area .ul1 li .p-wrap p {
  font-size: 2rem;
  color: #fff;
}

#main .clinic-con .area .ul1 li .p-wrap p strong {
  font-weight: 700;
  color: #B3D9AD;
}

#main .clinic-con .ul2 {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 100%;
  z-index: 10;
}

#main .clinic-con .ul2 li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 26.8rem;
  border-left: 1px solid #86898B;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
}

#main .clinic-con .ul2 li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(85,150,78,0.52);
  transition: 0.5s;
}

#main .clinic-con .ul2 li:hover::after {
  height: 100%;
}

#main .clinic-con .ul2 li h4 {
  position: relative;
  font-size: 1.6rem;
  color: #C9CDD2;
  padding-bottom: 1rem;
  z-index: 1;
}

#main .clinic-con .ul2 li h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  z-index: 1;
}

@media all and (max-width:760px) {
  #main .clinic-con {
    height: auto;
    background: none;
    padding: 16.667rem 0;
  }

  #main .clinic-con .bg-overlay {
    display: none;
  }

  #main .clinic-con .area .tit-wrap {
    position: static;
    text-align: center;
    margin-bottom: 5.4rem;
  }

  #main .clinic-con .area .tit-wrap h5 {
    font-size: 2.333rem;
    padding-bottom: 4rem;
  }

  #main .clinic-con .area .tit-wrap h4 {
    font-size: 6rem;
    line-height: 7.667rem;
    color: #000;
    font-weight: 700;
  }

  #main .clinic-con .area .tit-wrap h4 span {
    color: #55964E;
  }

  #main .clinic-con .area .ul1 {
    position: static;
    display: flex;
    flex-direction: column;
  }

  #main .clinic-con .area .ul1 li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 33.667rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
    transform: translateY(0);
  }

  #main .clinic-con .area .ul1 li:first-child {
    display: flex;
  }

  #main .clinic-con .area .ul1 li:nth-child(1) {
    background-image: url("../img/mo_clinic_con_img1.png");
  }

  #main .clinic-con .area .ul1 li:nth-child(2) {
    background-image: url("../img/mo_clinic_con_img2.png");
  }

  #main .clinic-con .area .ul1 li:nth-child(3) {
    background-image: url("../img/mo_clinic_con_img3.png");
  }

  #main .clinic-con .area .ul1 li:nth-child(4) {
    background-image: url("../img/mo_clinic_con_img4.png");
  }

  #main .clinic-con .area .ul1 li h4 {
    position: absolute;
    top: 8rem;
    right: 4.5rem;
    font-size: 5.333rem;
    color: #B3D9AD;
    padding-bottom: 0;
  }

  #main .clinic-con .area .ul1 li h3 {
    font-size: 4rem;
    line-height: 1;
    padding-bottom: 3.333rem;
    padding-left: 3.833rem;
  }

  #main .clinic-con .area .ul1 li .p-wrap {
    padding-left: 3.833rem;
    gap: 0;
  }

  #main .clinic-con .area .ul1 li .p-wrap p {
    font-size: 2.333rem;
    line-height: 4rem;
    padding-right: 2rem;
    word-break: keep-all;
  }

  #main .clinic-con .ul2 {
    display: none;
  }
}


#main .doctor-con {
  position: relative;
  padding: 24.8rem 0 18.2rem;
}

#main .doctor-con::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 54.8rem;
  background: url("../img/doctor_con_grd.png") no-repeat center;
  background-size: cover;
}

#main .doctor-con .area .tit-wrap {
  text-align: center;
  margin-bottom: 4.4rem;
}

#main .doctor-con .area .tit-wrap h4 {
  font-size: 2.4rem;
  color: #55964E;
  padding-bottom: 5.2rem;
}

#main .doctor-con .area .tit-wrap h4 span {
  letter-spacing: 0.4rem;
}

#main .doctor-con .area .tit-wrap h3 {
  font-size: 5.6rem;
  line-height: 7.2rem;
  font-weight: 700;
}

#main .doctor-con .area .tit-wrap h3 span {
  color: #55964E;
}

#main .doctor-con .txt-wrap {
  position: relative;
}

#main .doctor-con .txt-wrap .ci {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 41.8rem;
}

#main .doctor-con .txt-wrap .ci img {
  width: 100%;
  height: auto;
}

#main .doctor-con .txt-wrap .doctor-img {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 7.4rem;
  z-index: 1;
}

#main .doctor-con .txt-wrap .doctor-img .img {
  width: 100.2rem;
}

#main .doctor-con .txt-wrap .doctor-img .img img {
  width: 100%;
  height: auto;
}

#main .doctor-con .txt-wrap .doctor-info {
  position: relative;
  z-index: 1;
}

#main .doctor-con .txt-wrap .doctor-info ul {
  display: flex;
  justify-content: center;
}

#main .doctor-con .txt-wrap .doctor-info ul li {
  position: relative;
  display: flex;
  padding-left: 5rem;
  margin-left: 4.9rem;
}

#main .doctor-con .txt-wrap .doctor-info ul li:first-child {
  padding-left: 0;
  margin-left: 0;
}

#main .doctor-con .txt-wrap .doctor-info ul li::before {
  content: '';
  width: 1px;
  height: 8.9rem;
  background-color: #C9CDD2;
  position: absolute;
  top: 0;
  left: 0;
}

#main .doctor-con .txt-wrap .doctor-info ul li:first-child::before {
  display: none;
}

#main .doctor-con .txt-wrap .doctor-info ul li h4 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #222527;
  padding-right: 1.6rem;
}

#main .doctor-con .txt-wrap .doctor-info ul li .type-group {
  padding-right: 6.4rem;
}

#main .doctor-con .txt-wrap .doctor-info ul li .type-group p {
  font-size: 2rem;
  color: #33383C;
}

#main .doctor-con .txt-wrap .doctor-info ul li .type-group p span {
  color: #55964E;
}

#main .doctor-con .txt-wrap .doctor-info ul li .view-more .icon {
  display: block;
  width: 4.4rem;
  margin: 0 auto 0.9rem;
}

#main .doctor-con .txt-wrap .doctor-info ul li .view-more .icon img {
  width: 100%;
  height: auto;
}

#main .doctor-con .txt-wrap .doctor-info ul li .view-more p {
  font-size: 1.4rem;
  color: #C9CDD2;
  text-decoration: underline;
}

#main .doctor-con .pu-wrap .pu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 128rem;
  height: 68rem;
  background-color: #fff;
  border-radius: 3rem;
  z-index: 100;
  overflow: hidden;
}

#main .doctor-con .pu-wrap .pu .close-btn {
  position: absolute;
  top: 4.6rem;
  right: 5.7rem;
  width: 2.8rem;
  height: 2.8rem;
}

#main .doctor-con .pu-wrap .pu .close-btn img {
  width: 100%;
  height: auto;
}

#main .doctor-con .pu-wrap .pu .flex-box {
  display: flex;
  gap: 5.5rem;
  align-items: end;
  width: 100%;
  height: 100%;
}

#main .doctor-con .pu-wrap .pu .flex-box .img {
  width: 49.8rem;
  margin-left: 9.6rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .img img {
  width: 100%;
  height: auto;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec {
  position: relative;
  padding-bottom: 12.2rem;
  z-index: 10;
}

#main .doctor-con .pu-wrap .pu3 .flex-box .pu-spec {
  padding-bottom: 8rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec > strong {
  display: block;
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #55964E;
  padding-bottom: 5.4rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec > strong span {
  font-weight: 700;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  color: #33383C;
  padding-bottom: 3.4rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name h5 {
  font-size: 4.8rem;
  font-weight: 700;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name p {
  font-size: 2.4rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec .spec-list ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#main .doctor-con .pu-wrap .pu .flex-box .pu-spec .spec-list ul li {
  display: flex;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #33383C;
}

#main .doctor-con .pu-wrap .pu .pu-ci {
  position: absolute;
  bottom: 7rem;
  right: 8rem;
  width: 23.1rem;
}

#main .doctor-con .pu-wrap .pu .pu-ci img {
  width: 100%;
  height: auto;
}

@media all and (max-width:1280px) {
  #main .doctor-con .pu-wrap .pu {
    width: 90%;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .img {
    margin-left: 0;
  }
}

@media all and (max-width:760px) {
  #main .doctor-con {
    padding: 10rem 0 13.833rem;
  }

  #main .doctor-con .area .tit-wrap {
    margin-bottom: 0;
  }

  #main .doctor-con .area .tit-wrap h4 {
    font-size: 2.667rem;
    padding-bottom: 6rem;
  }

  #main .doctor-con .txt-wrap {
    padding: 0 4rem;
  }

  #main .doctor-con .txt-wrap .ci {
    display: none;
  }

  #main .doctor-con .txt-wrap .doctor-img {
    padding-top: 0;
  }

  #main .doctor-con .txt-wrap .doctor-img .img {
    width: 100%;
  }

  #main .doctor-con .txt-wrap .doctor-info {
    margin-top: -4.667rem;
  }

  #main .doctor-con .txt-wrap .doctor-info ul {
    flex-direction: column;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li {
    align-items: center;
    padding-left: 0;
    margin-left: 0;
    height: 20rem;
    border-top: 1px solid #C9CDD2;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li:first-child {
    border-top: 0;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li::before {
    display: none;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li h4 {
    font-size: 4.667rem;
    padding-right: 2.167rem;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li .type-group {
    padding-right: 0;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li .type-group p {
    font-size: 2.333rem;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li .view-more {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  #main .doctor-con .txt-wrap .doctor-info ul li .view-more .icon {
    width: 7.333rem;
    margin: 0 auto 0.833rem;
  }

  #main .doctor-con .txt-wrap .doctor-info ul li .view-more p {
    font-size: 2.333rem;
  }

  #main .doctor-con .pu-wrap .pu {
    height: 90%;
    overflow: auto;
  }

  #main .doctor-con .pu-wrap .pu .flex-box {
    width: calc(100% - 8rem);
    flex-direction: column;
    align-items: center;
    gap: 2.7rem 0;
    padding: 10rem 0;
    margin: 0 auto;
    height: auto;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec {
    width: 100%;
    padding-bottom: 0;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec > strong {
    font-size: 3rem;
    line-height: 4.667rem;
    padding-bottom: 3.667rem;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name {
    gap: 1.667rem;
    padding-bottom: 3rem;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name h5 {
    font-size: 5.333rem;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec .pu-name p {
    font-size: 3.333rem;
  }

  #main .doctor-con .pu-wrap .pu .flex-box .pu-spec .spec-list ul li {
    font-size: 2.667rem;
    line-height: 1.3;
    word-break: keep-all;
  }

  #main .doctor-con .pu-wrap .pu .pu-ci {
    display: none;
  }
}


#main .equip-con {
  padding: 23.6rem 0 22rem;
}

#main .equip-con .area .tit-wrap {
  text-align: center;
  margin-bottom: 8.8rem;
}

#main .equip-con .area .tit-wrap h4 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

#main .equip-con .area .tit-wrap h3 {
  font-size: 5.4rem;
  font-weight: 700;
  padding-bottom: 2.8rem;
}

#main .equip-con .area .tit-wrap h3 span {
  color: #55964E;
}

#main .equip-con .area .tit-wrap p {
  font-size: 1.8rem;
  color: #33383C;
}

#main .equip-con .txt-wrap {
  position: relative;
  border-top: 1px solid #B3D9AD;
  padding-top: 8rem;
}

#main .equip-con .txt-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5rem;
  width: 100%;
  height: 1px;
  background-color: #B3D9AD;
}

#main .equip-con .txt-wrap ul {
  display: flex;
}

#main .equip-con .txt-wrap ul li .img {
  width: 37rem;
  margin: 0 auto 9.7rem;
}

#main .equip-con .txt-wrap ul li .img img {
  width: 100%;
  height: auto;
}

#main .equip-con .txt-wrap ul li p {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

@media all and (max-width:760px) {
  #main .equip-con {
    padding: 19rem 0 18rem;
  }

  #main .equip-con .area .tit-wrap {
    margin-bottom: 11.167rem;
  }

  #main .equip-con .area .tit-wrap h4 {
    font-size: 3rem;
    padding-bottom: 5rem;
  }

  #main .equip-con .area .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 4.333rem;
  }

  #main .equip-con .area .tit-wrap p {
    font-size: 2.667rem;
    line-height: 4.333rem;
  }

  #main .equip-con .txt-wrap {
    border-top: 1px solid #C9CDD2;
  }

  #main .equip-con .txt-wrap::after {
    bottom: 8rem;
    background-color: #C9CDD2;
  }

  #main .equip-con .txt-wrap ul li .img {
    width: 50.833rem;
    margin: 0 auto 11.467rem;
  }

  #main .equip-con .txt-wrap ul li p {
    font-size: 4rem;
  }
}


#main .orth-con {
  background-color: #F8F9FA;
  padding: 17rem 0;
}

#main .orth-con .area .tit-wrap {
  text-align: center;
  margin-bottom: 6.6rem;
}

#main .orth-con .area .tit-wrap h4 {
  font-size: 1.6rem;
  color: #55964E;
  padding-bottom: 3rem;
}

#main .orth-con .area .tit-wrap h4 span {
  letter-spacing: 0.8rem;
}

#main .orth-con .area .tit-wrap h3 {
  font-size: 5.4rem;
  line-height: 7.2rem;
}

#main .orth-con .area .tit-wrap h3 strong {
  font-weight: 700;
}

#main .orth-con .area .tit-wrap h3 strong span {
  color: #55964E;
}

#main .orth-con .txt-wrap .img {
  width: calc(100% - 10.4rem);
  margin: 0 auto 23.7rem;
}

#main .orth-con .txt-wrap .img img {
  width: 100%;
  height: auto;
}

#main .orth-con .txt-wrap .list-group ul {
  display: flex;
  justify-content: center;
}

#main .orth-con .txt-wrap .list-group ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36.2rem;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
}

#main .orth-con .txt-wrap .list-group ul li:nth-child(odd) {
  background-image: url("../img/orth_con_cc1.png");
}

#main .orth-con .txt-wrap .list-group ul li:nth-child(even) {
  background-image: url("../img/orth_con_cc2.png");
}

#main .orth-con .txt-wrap .list-group ul li h4 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #55964E;
  padding-bottom: 2.4rem;
}

#main .orth-con .txt-wrap .list-group ul li p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #33383C;
}

#main .orth-con .txt-wrap .list-group ul li .dot {
  position: absolute;
  top: 50%;
  border-radius: 3rem;
}

#main .orth-con .txt-wrap .list-group ul li .dot-1 {
  left: -1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #B3D9AD;
  transform: translateY(-50%);
}

#main .orth-con .txt-wrap .list-group ul li .dot .dot-2 {
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #55964E;
  transform: translate(-50%,-50%);
}

@media all and (max-width:760px) {
  #main .orth-con {
    padding: 15rem 0 22.167rem;
  }

  #main .orth-con .area .tit-wrap h4 {
    font-size: 2rem;
    padding-bottom: 4rem;
  }

  #main .orth-con .area .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
  }

  #main .orth-con .txt-wrap .img {
    width: 100%;
    height: auto;
    margin-bottom: 12.667rem;
  }

  #main .orth-con .txt-wrap .list-group ul {
    flex-direction: column;
  }

  #main .orth-con .txt-wrap .list-group ul li {
    width: 46.667rem;
    margin: -5.833rem auto 0;
  }

  #main .orth-con .txt-wrap .list-group ul li:first-child {
    margin-top: 0;
  }

  #main .orth-con .txt-wrap .list-group ul li:nth-child(even) {
    background-image: url("../img/orth_con_cc1.png");
  }

  #main .orth-con .txt-wrap .list-group ul li h4 {
    font-size: 4rem;
    padding-bottom: 3rem;
  }

  #main .orth-con .txt-wrap .list-group ul li p {
    font-size: 2.667rem;
    line-height: 4.333rem;
  }

  #main .orth-con .txt-wrap .list-group ul li .dot {
    display: none;
  }
}


#main .dss-con {
  position: relative;
  background-color: #F8F9FA;
  padding: 13rem 0 20rem;
}

#main .dss-con::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50.9rem;
  background-color: #55964E;
}

#main .dss-con .area .tit-wrap {
  text-align: center;
  margin-bottom: 6.6rem;
}

#main .dss-con .area .tit-wrap h4 {
  font-size: 2.4rem;
  padding-bottom: 1.7rem;
}

#main .dss-con .area .tit-wrap h4 span {
  letter-spacing: 0.8rem;
}

#main .dss-con .area .tit-wrap h3 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 700;
  padding-bottom: 1.9rem;
}

#main .dss-con .area .tit-wrap h3 span {
  color: #55964E;
}

#main .dss-con .area .tit-wrap p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

#main .dss-con .txt-wrap ul li .img {
  position: relative;
  width: 100%;
  height: 46.4rem;
  margin: 0 auto;
}

#main .dss-con .txt-wrap ul li .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main .dss-con .txt-wrap ul li .img img.on {
  opacity: 0;
}

#main .dss-con .txt-wrap ul li .box {
  position: relative;
  width: 80%;
  height: 23.6rem;
  background-color: #fff;
  margin: -11.8rem auto 0;
  z-index: 1;
}

#main .dss-con .txt-wrap ul li .box .inner {
  padding: 4rem;
}

#main .dss-con .txt-wrap ul li .box .inner h4 {
  font-size: 3.6rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

#main .dss-con .txt-wrap ul li .box .inner p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #33383C;
  padding-bottom: 1.6rem;
}

#main .dss-con .txt-wrap ul li .box .inner strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #55964E;
}

#main .dss-con .txt-wrap .swiper-slide-active .img img.pc-off {
  opacity: 0;
}

#main .dss-con .txt-wrap .swiper-slide-active .img img.pc-on {
  opacity: 1;
}

#main .dss-con .txt-wrap .swiper-arrow {
  position: absolute;
  top: 20rem;
  width: 5.2rem;
  height: 5.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 10;
  cursor: pointer;
}

#main .dss-con .txt-wrap .swiper-button-prev2 {
  background-image: url("../img/dss_con_prev.png");
  left: 23vw;
}

#main .dss-con .txt-wrap .swiper-button-next2 {
  background-image: url("../img/dss_con_next.png");
  right: 23vw;
}

@media all and (max-width:1920px) {
  #main .dss-con .txt-wrap .swiper-button-prev2 {
    left: 22vw;
  }

  #main .dss-con .txt-wrap .swiper-button-next2 {
    right: 22vw;
  }
}

@media all and (max-width:1280px) {
  #main .dss-con .txt-wrap .swiper-button-prev2 {
    left: 22.5vw;
  }

  #main .dss-con .txt-wrap .swiper-button-next2 {
    right: 22.5vw;
  }
}

@media all and (max-width:960px) {
  #main .dss-con .txt-wrap .swiper-button-prev2 {
    left: 15vw;
  }

  #main .dss-con .txt-wrap .swiper-button-next2 {
    right: 15vw;
  }
}

@media all and (max-width:760px) {
  #main .dss-con {
    padding: 0 0 18.833rem;
  }

  #main .dss-con .area .tit-wrap {
    margin-bottom: 5.333rem;
  }

  #main .dss-con .area .tit-wrap h4 {
    font-size: 3.333rem;
    padding-bottom: 3rem;
  }

  #main .dss-con .area .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 3.667rem;
  }

  #main .dss-con .area .tit-wrap p {
    font-size: 2.667rem;
    line-height: 4.333rem;
  }

  #main .dss-con .txt-wrap ul li .img {
    height: 70rem;
  }

  #main .dss-con .txt-wrap ul li .box {
    width: calc(100% - 5.333rem);
    height: 50.333rem;
    margin: -25.167rem auto 0;
  }

  #main .dss-con .txt-wrap ul li .box .inner {
    padding: 0 3.667rem;
  }

  #main .dss-con .txt-wrap ul li .box .inner h4 {
    font-size: 4.667rem;
    padding-top: 8.333rem;
    padding-bottom: 2rem;
  }

  #main .dss-con .txt-wrap ul li .box .inner p {
    font-size: 2.667rem;
    line-height: 4.333rem;
    padding-bottom: 2.667rem;
    word-break: keep-all;
  }

  #main .dss-con .txt-wrap ul li .box .inner p br {
    display: none;
  }

  #main .dss-con .txt-wrap ul li .box .inner strong {
    font-size: 2.667rem;
    line-height: 4.333rem;
  }

  #main .dss-con .txt-wrap .swiper-arrow {
    display: none;
  }
}


#main .isfm-con {
  position: relative;
  background-color: #222527;
  padding: 20.5rem 0 25.7rem;
}

#main .isfm-con .ci {
  position: absolute;
  top: 12rem;
  right: 8.7rem;
  width: 46.6rem;
  height: 46.6rem;
}

#main .isfm-con .ci img {
  width: 100%;
  height: auto;
}

#main .isfm-con .area .tit-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 8.7rem;
  z-index: 1;
}

#main .isfm-con .area .tit-wrap h3 {
  font-size: 5.6rem;
  line-height: 7.2rem;
  color: #fff;
  font-weight: 700;
  padding-bottom: 3.2rem;
}

#main .isfm-con .area .tit-wrap h3 span {
  color: #FFD980;
}

#main .isfm-con .area .tit-wrap p {
  font-size: 2rem;
  line-height: 3.2rem;
  color: #fff;
  font-weight: 700;
}

#main .isfm-con .area .tit-wrap p span {
  color: #FFD980;
}

#main .isfm-con .area .txt-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}

#main .isfm-con .area .txt-wrap > .img {
  width: 69rem;
}

#main .isfm-con .area .txt-wrap > .img img {
  width: 100%;
  height: auto;
}

#main .isfm-con .area .txt-wrap .cont-group {
  width: 62.7rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 21.6rem;
  background-color: #454C53;
  border-radius: 2rem;
  color: #fff;
  margin-bottom: 4.4rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit .img {
  position: absolute;
  top: -9.25rem;
  right: 0;
  width: 18.5rem;
  height: 18.5rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit .img img {
  width: 100%;
  height: auto;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box {
  padding-left: 4.1rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box h4 {
  font-size: 3.6rem;
  font-weight: 700;
  padding-bottom: 1.8rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li {
  display: flex;
  font-size: 2.2rem;
  padding: 4rem 0;
  border-top: 1px solid #fff;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li:first-child {
  border-top: 0;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li h5 {
  font-weight: 700;
  color: #FFD980;
  min-width: 2.9rem;
  margin-right: 2.1rem;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li p {
  color: #fff;
}

#main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li p strong {
  font-weight: 700;
}

@media all and (max-width:760px) {
  #main .isfm-con {
    padding: 30.333rem 0 16.333rem;
  }

  #main .isfm-con .ci {
    top: 6.333rem;
    right: 4.167rem;
    width: 36.5rem;
    height: 36.5rem;
  }

  #main .isfm-con .area .tit-wrap {
    margin-bottom: 8.333rem;
  }

  #main .isfm-con .area .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 3.5rem;
  }

  #main .isfm-con .area .tit-wrap p {
    font-size: 3rem;
    line-height: 4.667rem;
  }

  #main .isfm-con .area .txt-wrap {
    flex-direction: column;
    gap: 16.167rem;
  }

  #main .isfm-con .area .txt-wrap > .img {
    width: 100%;
  }

  #main .isfm-con .area .txt-wrap .cont-group {
    width: 100%;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-tit {
    align-items: start;
    justify-content: center;
    height: 41.667rem;
    border-radius: 3.333rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-tit .img {
    top: -10.833rem;
    left: 50%;
    transform: translateX(-50%);
    width: 21.667rem;
    height: 21.667rem;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box {
    padding-left: 0;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box h4 {
    font-size: 4.667rem;
    padding-top: 15.833rem;
    padding-bottom: 2.667rem;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-tit .flex-box p {
    font-size: 2.333rem;
    line-height: 4rem;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li {
    font-size: 2.667rem;
    padding: 5.333rem 0;
  }

  #main .isfm-con .area .txt-wrap .cont-group .cont-txt ul li h5 {
    min-width: auto;
    margin-right: 4.333rem;
    padding-left: 1.333rem;
  }
}


#main .space-con .cont {
  position: relative;
}

#main .space-con .cont ul li .img img {
  width: 100%;
  height: auto;
}

#main .space-con .cont ul li .mo {
  display: none;
}

#main .space-con .swiper-pagination3 {
  position: absolute;
  bottom: 11%;
  left: 15.8%;
  z-index: 10;
  display: flex;
  gap: 1.6rem;
}

#main .space-con .swiper-pagination3 .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 1rem;
  background-color: #C9CDD2;
  margin: 0;
  opacity: 1;
}

#main .space-con .swiper-pagination3 .swiper-pagination-bullet-active {
  background-color: #55964E;
}

@media all and (max-width:760px) {
  #main .space-con {
    background-color: #F6F7F9;
    padding: 8rem 0 0;
  }

  #main .space-con .cont {
    padding-bottom: 17.333rem;
  }

  #main .space-con .cont ul li .mo {
    display: block;
    width: calc(100% - 11rem);
    padding-left: 11rem;
  }

  #main .space-con .cont ul li .mo .img {
    margin-bottom: 4.5rem;
  }

  #main .space-con .cont ul li .mo .img img{
    width: 100%;
    height: auto;
  }

  #main .space-con .cont ul li .mo h5 {
    font-size: 2.333rem;
    color: #55964E;
    padding-bottom: 1rem;
  }

  #main .space-con .cont ul li .mo h4 {
    font-size: 5.333rem;
    color: #33383C;
    font-weight: 700;
    padding-bottom: 2.5rem;
  }

  #main .space-con .cont ul li .mo p {
    font-size: 2.333rem;
    line-height: 3.667rem;
    color: #33383C;
  }

  #main .space-con .swiper-pagination3 {
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
}


#main .hc-con {
  padding: 31rem 0;
}

#main .hc-con .area {
  position: relative;
  display: flex;
  justify-content: space-between;
}

#main .hc-con .area .ci {
  position: absolute;
  top: 14.1rem;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -10rem;
  width: 40.7rem;
}

#main .hc-con .area .ci img {
  width: 100%;
  height: auto;
}

#main .hc-con .area .tit-wrap {
  position: relative;
  padding-left: 5rem;
  z-index: 10;
}

#main .hc-con .area .tit-wrap h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #B3D9AD;
  padding-bottom: 2rem;
}

#main .hc-con .area .tit-wrap h3 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 700;
  padding-bottom: 4.2rem;
}

#main .hc-con .area .tit-wrap > strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #55964E;
  padding-bottom: 1.8rem;
}

#main .hc-con .area .tit-wrap p {
  font-size: 2rem;
  line-height: 3.2rem;
  color: #33383C;
}

#main .hc-con .area .tit-wrap p strong {
  font-weight: 700;
}

#main .hc-con .area .txt-wrap {
  position: relative;
  z-index: 10;
}

#main .hc-con .area .txt-wrap .img {
  width: 74.6rem;
}

#main .hc-con .area .txt-wrap .img img {
  width: 100%;
  height: auto;
}

@media all and (max-width:760px) {
  #main .hc-con {
    position: relative;
    padding: 28.5rem 0 24.333rem;
  }

  #main .hc-con .area {
    position: static;
    flex-direction: column;
  }

  #main .hc-con .area .ci {
    top: 12.917rem;
    left: auto;
    right: 7rem;
    transform: translateX(0);
    margin-left: 0;
    width: 27.667rem;
  }

  #main .hc-con .area .tit-wrap {
    padding-left: 0;
    margin-bottom: 8rem;
  }

  #main .hc-con .area .tit-wrap h4 {
    font-size: 3.333rem;
    line-height: 5.333rem;
    padding-bottom: 4.667rem;
  }

  #main .hc-con .area .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 6.5rem;
    word-break: keep-all;
  }

  #main .hc-con .area .tit-wrap > strong {
    font-size: 3rem;
    line-height: 4.667rem;
    padding-bottom: 4.167rem;
  }

  #main .hc-con .area .tit-wrap p {
    font-size: 3rem;
    line-height: 4.667rem;
  }

  #main .hc-con .area .txt-wrap .img {
    width: 100%;
  }
}


#main .hc2-con {
  padding: 8rem 0 30.2rem;
}

#main .hc2-con .tit-wrap {
  text-align: center;
  margin-bottom: 11.1rem;
}

#main .hc2-con .tit-wrap h4 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
}

#main .hc2-con .tit-wrap h3 {
  font-size: 5.6rem;
  line-height: 7.2rem;
  font-weight: 700;
}

#main .hc2-con .tit-wrap h3 span {
  color: #55964E;
}

#main .hc2-con .txt-wrap {
  position: relative;
}

#main .hc2-con .txt-wrap .img {
  width: 119.2rem;
}

#main .hc2-con .txt-wrap .img img {
  width: 100%;
  height: auto;
}

#main .hc2-con .txt-wrap ul {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  transform: translateY(-50%);
  gap: 3rem;
  width: 66.2rem;
}

#main .hc2-con .txt-wrap ul li {
  position: relative;
  width: calc((100% - 3rem) / 2);
  height: 36.6rem;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#main .hc2-con .txt-wrap ul li:nth-child(1),
#main .hc2-con .txt-wrap ul li:nth-child(2) {
  right: -8.6rem;
}

#main .hc2-con .txt-wrap ul li .icon {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  width: 8.2rem;
}

#main .hc2-con .txt-wrap ul li .icon img {
  width: 100%;
  height: auto;
}

#main .hc2-con .txt-wrap ul li h5 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 700;
  padding: 13.8rem 0 2.2rem 3.2rem;
}

#main .hc2-con .txt-wrap ul li h5 span {
  color: #55964E;
}

#main .hc2-con .txt-wrap ul li p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #454C53;
  padding-left: 3.2rem;
}

@media all and (max-width:760px) {
  #main .hc2-con {
    padding: 0 0 20rem 0;
  }

  #main .hc2-con .tit-wrap {
    margin-bottom: 9.167rem;
  }

  #main .hc2-con .tit-wrap h4 {
    font-size: 3.333rem;
    line-height: 5.333rem;
    padding-bottom: 3.333rem;
  }

  #main .hc2-con .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
  }

  #main .hc2-con .txt-wrap {
    width: calc(100% - 8rem);
    margin: 0 auto;
  }

  #main .hc2-con .txt-wrap .img {
    width: 100%;
  }

  #main .hc2-con .txt-wrap ul {
    position: static;
    transform: translateY(0);
    gap: 3rem;
    width: calc(100% - 11rem);
    margin: -31.667rem auto 0;
  }

  #main .hc2-con .txt-wrap ul li {
    width: 100%;
    height: auto;
    padding: 3.667rem 0 6.667rem;
  }

  #main .hc2-con .txt-wrap ul li:nth-child(1),
  #main .hc2-con .txt-wrap ul li:nth-child(2) {
    right: 0;
  }

  #main .hc2-con .txt-wrap ul li .icon {
    position: static;
    display: block;
    width: 10rem;
    margin-left: 4rem;
    margin-bottom: 1.333rem;
  }

  #main .hc2-con .txt-wrap ul li h5 {
    font-size: 4rem;
    line-height: 5.667rem;
    padding: 0 4rem 3.667rem 4rem;
  }

  #main .hc2-con .txt-wrap ul li p {
    font-size: 2.667rem;
    line-height: 4.333rem;
    padding-left: 4rem;
  }
}


#main .slg-con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84rem;
  background: url("../img/slg_con_img.png") no-repeat center;
  background-size: cover;
}

#main .slg-con .tit-wrap {
  text-align: center;
}

#main .slg-con .tit-wrap .ci {
  display: block;
  width: 9rem;
  margin: 0 auto 2.8rem;
}

#main .slg-con .tit-wrap .ci img {
  width: 100%;
  height: auto;
}

#main .slg-con .tit-wrap h3 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 4.6rem;
}

#main .slg-con .tit-wrap h3 span {
  color: #B3D9AD;
}

#main .slg-con .tit-wrap .p-wrap p {
  font-size: 2rem;
  line-height: 3.2rem;
  color: #fff;
}

#main .slg-con .tit-wrap .p-wrap p:first-child {
  padding-bottom: 2.8rem;
}

#main .slg-con .tit-wrap .p-wrap p strong {
  font-weight: 700;
}

@media all and (max-width:760px) {
  #main .slg-con {
    height: auto;
    padding: 22rem 0 23rem;
  }

  #main .slg-con .tit-wrap .ci {
    width: 11.667rem;
    margin-bottom: 5rem;
  }

  #main .slg-con .tit-wrap h3 {
    font-size: 6rem;
    line-height: 7.667rem;
    padding-bottom: 6.5rem;
  }

  #main .slg-con .tit-wrap .p-wrap p {
    font-size: 3rem;
    line-height: 4.667rem;
  }
}


#main .interior-con {
  padding: 19.5rem 0 26.6rem;
}

#main .interior-con .area .tit-wrap {
  text-align: center;
  margin-bottom: 6rem;
}

#main .interior-con .area .tit-wrap h4 {
  font-size: 2rem;
  padding-bottom: 2.5rem;
  color: #A4AAB1;
}

#main .interior-con .area .tit-wrap h4 span {
  letter-spacing: 0.55rem;
}

#main .interior-con .area .tit-wrap h3 {
  font-size: 5.6rem;
  line-height: 7.2rem;
  font-weight: 700;
  padding-bottom: 3.6rem;
}

#main .interior-con .area .tit-wrap h3 span {
  color: #55964E;
}

#main .interior-con .area .tit-wrap p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #33383C;
}

#main .interior-con .area .txt-wrap {
  position: relative;
}

#main .interior-con .area .txt-wrap .swiper-slide img {
  width: 100%;
  height: auto;
}

#main .interior-con .area .arrow-wrap .swiper-arrow {
  position: absolute;
  top: 21.5rem;
  width: 1.3rem;
  height: 2.3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

#main .interior-con .area .arrow-wrap .swiper-button-prev4 {
  left: -4.8rem;
  background-image: url("../img/interior_con_prev.png");
}

#main .interior-con .area .arrow-wrap .swiper-button-next4 {
  right: -4.8rem;
  background-image: url("../img/interior_con_next.png");
}

#main .interior-con .area .swiper-pagination4 {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 5.75rem;
}

#main .interior-con .area .swiper-pagination4 .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  background-color: #C9CDD2;
  opacity: 1;
}

#main .interior-con .area .swiper-pagination4 .swiper-pagination-bullet-active {
  background-color: #297853;
}

@media all and (max-width:760px) {
  #main .interior-con {
    padding: 15.667rem 0 16.333rem;
  }

  #main .interior-con .area .tit-wrap h4 {
    font-size: 2.667rem;
    line-height: 3.667rem;
    padding-bottom: 5rem;
  }

  #main .interior-con .area .tit-wrap h3 {
    font-size: 6.667rem;
    line-height: 8.667rem;
    padding-bottom: 2.833rem;
  }

  #main .interior-con .area .tit-wrap p {
    font-size: 2.667rem;
    line-height: 4rem;
  }

  #main .interior-con .area .arrow-wrap .swiper-arrow {
    display: none;
  }

  #main .interior-con .area .swiper-pagination4 {
    margin-top: 4rem;
  }

  #main .interior-con .area .swiper-pagination4 .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}


#main .contact-con {
  background-color: #F6F7F9;
  padding: 12.8rem 0 8rem;
}

#main .contact-con .area {
  display: flex;
  justify-content: space-between;
}

#main .contact-con .area .info-wrap {
  padding-top: 2.1rem;
}

#main .contact-con .area .info-wrap > * {
  margin-left: 6.8rem;
}

#main .contact-con .area .info-wrap .depth-1 > li {
  display: flex;
  align-items: start;
  margin-top: 6.4rem;
}

#main .contact-con .area .info-wrap .depth-1 > li h5 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #33383C;
  width: 10rem;
  margin-right: 6.5rem;
}

#main .contact-con .area .info-wrap .depth-1 > li h5 img {
  width: 2.4rem;
  height: auto;
  margin-right: 0.4rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-1 {
  align-items: center;
  margin-top: 0;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-1 .text-group p {
  font-size: 3.6rem;
  color: #55964E;
  font-weight: 700;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 {
  margin-top: 4.4rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 h5 {
  margin-top: 0.5rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group {
  font-size: 1.8rem;
  color: #33383C;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group .kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 24rem;
  height: 3.2rem;
  background-color: #fff;
  border-radius: 2rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group .kakao p {
  font-weight: 700;
  color: #33383C;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group .kakao img  {
  width: 1.6rem;
  height: 1.6rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group > p {
  line-height: 2.8rem;
  padding-top: 1.6rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group > p strong {
  color: #55964E;
  font-weight: 700;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li {
  display: flex;
  font-size: 1.8rem;
  color: #33383C;
  margin-top: 1.2rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li:first-child {
  margin-top: 0;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li h6 {
  width: 7.8rem;
  margin-right: 2rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-1 h6 span {
  letter-spacing: 4.5rem;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-2 {
  color: #A4AAB1;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-2 h6 span {
  letter-spacing: 0.25em;
}

#main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-3 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #94111C;
}

#main .contact-con .area .info-wrap .depth-1 .adrs-1 {
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  color: #33383C;
}

#main .contact-con .area .info-wrap .depth-1 .adrs-1.mo-only {
  display: none;
}

#main .contact-con .area .info-wrap .depth-1 .adrs-1 h6 {
  display: flex;
  margin-right: 4rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

#main .contact-con .area .info-wrap .depth-1 .adrs-1 h6 img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
  margin-top: -0.2rem;
}

#main .contact-con .area .info-wrap .depth-1 .adrs-1 p {
  line-height: 2.8rem;
}

#main .contact-con .area .info-wrap .link-group {
  display: flex;
  gap: 1.2rem;
  margin-top: 11.6rem;
}

#main .contact-con .area .info-wrap .link-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.4rem;
  height: 6.4rem;
  background-color: #33383C;
  font-size: 1.8rem;
  color: #fff;
}

#main .contact-con .area .info-wrap .link-group a img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
}

#main .contact-con .area .map-wrap .inner {
  width: 64.2rem;
  margin-right: 3rem;
}

#main .contact-con .area .map-wrap .inner .map-img img {
  width: 100%;
  height: auto;
}

#main .contact-con .area .map-wrap .inner ul {
  margin-top: 3.4rem;
}

#main .contact-con .area .map-wrap .inner ul li.adrs-1 {
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  color: #33383C;
}

#main .contact-con .area .map-wrap .inner ul li.adrs-1 h6 {
  display: flex;
  margin-right: 4rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

#main .contact-con .area .map-wrap .inner ul li.adrs-1 h6 img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
  margin-top: -0.2rem;
}

#main .contact-con .area .map-wrap .inner ul li.adrs-1 p {
  line-height: 2.8rem;
}

@media all and (max-width:1500px) {
  #main .contact-con .area {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 7.6rem;
  }

  #main .contact-con .area > div {
    width: 100%;
  }

  #main .contact-con .area .info-wrap > *,
  #main .contact-con .area .map-wrap .inner {
    width: 64.2rem;
    margin: 0 auto;
  }

  #main .contact-con .area .info-wrap {
    order: 2;
  }

  #main .contact-con .area .info-wrap .depth-1 {
    padding-top: 8rem;
  }

  #main .contact-con .area .info-wrap .link-group {
    margin-top: 5rem;
  }

  #main .contact-con .area .map-wrap {
    order: 1;
  }

  #main .contact-con .area .map-wrap .nvmap-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64.2rem;
  }
}

@media all and (max-width:760px) {
  #main .contact-con {
    padding: 4.333rem 0 17rem;
  }

  #main .contact-con .area .info-wrap > *,
  #main .contact-con .area .map-wrap .inner {
      width: 100%;
  }

  #main .contact-con .area .info-wrap .depth-1 > li {
      flex-wrap: wrap;
      margin-top: 7rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-2 {
    margin-top: 6.667rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li h5 {
      font-size: 3rem;
      width: 100%;
      margin-right: 0;
  }

  #main .contact-con .area .info-wrap .depth-1 > li .text-group {
      margin-top: 2rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li h5 img {
      width: 4rem;
      margin-right: 1rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-1 .text-group p {
      font-size: 6rem;
      padding-left: 5rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group {
      font-size: 3rem;
      padding-left: 5rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group .kakao {
      width: 38.333rem;
      height: 5.333rem;
      border-radius: 3rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group .kakao img  {
      width: 2.667rem;
      height: 2.667rem;
      margin-left: 1.5rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-2 .text-group > p {
      line-height: 4.667rem;
      padding-top: 2.667rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group {
      padding-left: 5rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li {
      font-size: 3rem;
      margin-top: 2rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li h6 {
      width: 13rem;
      margin-right: 3.667rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-1 h6 span {
      letter-spacing: 7.5rem;
  }

  #main .contact-con .area .info-wrap .depth-1 > li.info-3 .text-group .depth-2 li.time-3 {
    font-size: 2.667rem;
    line-height: 4.5rem;
  }

  #main .contact-con .area .info-wrap .link-group {
      display: flex;
      flex-direction: column;
      margin-top: 7.667rem;
  }

  #main .contact-con .area .info-wrap .link-group a {
      width: 45.333rem;
      height: 10.667rem;
      font-size: 3rem;
      margin: 0 auto;
  }

  #main .contact-con .area .info-wrap .link-group a.blog-btn {
    order: 1;
  }

  #main .contact-con .area .info-wrap .link-group a img {
      width: 4rem;
      height: 4rem;
      margin-right: 0.667rem;
  }

  #main .contact-con .area .map-wrap .inner ul {
      margin-top: 8rem;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1 {
      flex-wrap: wrap;
      font-size: 3rem;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1.mo-only {
    display: flex;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1 h6 {
      margin-right: 0;
      width: 100%;;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1 h6 img {
      width: 4rem;
      height: 4rem;
      margin-right: 1rem;
      margin-top: -0.4rem;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1 p {
      padding-top: 2.667rem;
      padding-left: 5rem;
      line-height: 4rem;
  }

  #main .contact-con .area .info-wrap .depth-1 .adrs-1 p span {
      font-size: 2.333rem;
  }
}


#footer {
  width: 100%;
  height: 17.9rem;
  background-color: #33383C;
  color: #A4AAB1;
}

#footer .area > * {
  padding-left: 15.5rem;
}

#footer .area .ft-logo {
  font-size: 2rem;
  font-weight: 700;
  padding-top: 4rem;
}

#footer .area p {
  font-size: 1.4rem;
  padding-top: 1.6rem;
}

#footer .area address {
  display: block;
  font-size: 1.4rem;
  padding-top: 0.8rem;
}

@media all and (max-width:760px) {
  #footer {
    height: auto;
    padding-bottom: 6.667rem;
  }

  #footer .area {
    width: calc(100% - 8rem);
  }

  #footer .area > * {
    padding-left: 0;
  }

  #footer .area .ft-logo {
    font-size: 3.333rem;
    padding-top: 6.667rem;
  }

  #footer .area p {
    font-size: 2rem;
    line-height: 3.667rem;
    padding-top: 2.667rem;
  }

  #footer .area address {
    font-size: 2rem;
    line-height: 3.667rem;
    padding-top: 2.667rem;
  }
}
