/* 인트로 */

.introSection {
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
}

.introSection>.introSearch {
  width: 100%;
  max-width: 760px;
  height: 100vh;
  background-color: #F0F6F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.introSection>.introSearch>p {
  text-align: center;
  color: var(--Greyscale6);
  font-size: 18px;
  margin-bottom: 20px;
}

.introSection>.introSearch h1 {
  font-family: 'GmarketSans';
  font-size: 48px;
  color: var(--Greyscale8);
  margin-bottom: 40px;
}

.introSection>.introSearch h1>span {
  color: var(--Primary-darker);
}

.introSection>.introSearch>.searchInput {
  width: 100%;
  max-width: 600px;
  position: relative;
  margin-bottom: 30px;
}

.introSection>.introSearch>.searchInput>form>input { /* form 추가로 인한 수정(개발팀, 2023.06.14) */
  display: block;
  width: 100%;
  height: 64px;
  background-color: #fff;
  border: 1px solid var(--Default);
  border-radius: 0px 15px;
  padding: 0 30px;
  padding-right: 94px;
}

.introSection>.introSearch>.searchInput>form>button { /* form 추가로 인한 수정(개발팀, 2023.06.14) */
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-color: var(--Default);
  border-radius: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introSection>.introSearch>.searchRank {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 600px;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.introSection>.introSearch>.searchRank>p {
  font-size: 18px;
  font-weight: 700;
  color: var(--Default);
}

.introSection>.introSearch>.searchRank>a {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--Greyscale7);
}

.introSection>.introSearch>.searchRank>a::before {
  content: "#";
  color: var(--Default);
  margin-right: 5px;
  font-size: 18px;
}

.introSection>.introMenu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.introSection>.introMenu>div {
  height: 25%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 30px;
}

.introSection>.introMenu>.item01 {
  background-image: url(../assets/image/main/intro_img_01.jpg);
}

.introSection>.introMenu>.item02 {
  background-image: url(../assets/image/main/intro_img_02.jpg);
}

.introSection>.introMenu>.item03 {
  background-image: url(../assets/image/main/intro_img_03.jpg);
}

.introSection>.introMenu>.item04 {
  background-image: url(../assets/image/main/intro_img_04.jpg);
}

.introSection>.introMenu>div>.txtBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.introSection>.introMenu>div>.txtBox>h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.introSection>.introMenu>div>.txtBox>p {
  color: #fff;
  font-size: 24px;
}

.introSection>.introMenu>div>.iconBox {
  border-radius: 24px;
}

.introSection>.introMenu>div>.buttonBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.introSection>.introMenu>div>.buttonBox>button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 60px;
  padding: 8px 16px;
  color: #fff;
}

@media (max-width: 1480px) {
  .introSection>.introMenu {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .introSection>.introMenu>div {
    width: 50%;
    height: 50%;
    flex-direction: column;
  }

  .introSection>.introMenu>div>.txtBox>h3 {
    font-size: 32px;
  }

  .introSection>.introMenu>div>.txtBox>p {
    font-size: 18px;
  }

  .introSection>.introMenu>div>.buttonBox {
    align-items: center;
  }

  .introSection>.introSearch {
    padding: 0 30px;
  }

  .introSection>.introSearch h1 {
    font-size: 42px;
  }
}

@media (max-width: 1080px) {
  .introSection {
    flex-direction: column;
  }

  .introSection>.introSearch {
    max-width: unset;
  }

  .introSection>.introMenu>div {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .introSection>.introMenu>div {
    width: 100%;
  }

  .introSection>.introSearch>.searchRank {
    gap: 16px;
    flex-wrap: wrap;
  }

  .introSection>.introSearch>.searchRank>p {
    font-size: 16px;
    width: 100%;
  }

  .introSection>.introSearch>.searchRank>a {
    font-size: 14px;
  }

  .introSection>.introSearch>img {
    max-width: 526px;
    width: 100%;
  }

  .introSection>.introSearch>p {
    font-size: 16px;
  }

  .introSection>.introSearch h1>span {
    display: block;
  }
}

/* 메인 비주얼 슬라이드 */

.visualSec {
  padding: 0;
  position: relative;
}

.visualSec .mainVisual .slick-slide {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.mainVisual .slick-slide>img {
  position: absolute;
  top: 0;
  left: calc(50% - 110px);
  transform: translateX(-50%);
}

.mainVisual .slick-slide>img.mobile {
  display: none;
}

.visualSec .control_box {
  position: absolute;
  bottom: 30px;
  left: 50%;
}

.visualSec .control_box .paging {
  position: absolute;
  top: 0;
  left: 42px;
  height: 26px;
  min-width: 36px;
  line-height: 26px;
  text-align: right;
}

.visualSec .controller {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.visualSec .control_box .controller .prev {
  margin-right: 60px;
}

.visualSec .control_box .controller .prev,
.visualSec .control_box .controller .next,
.visualSec .control_box .controller .stop,
.visualSec .control_box .controller .play,
.visualSec .control_box .paging {
  font-size: 0;
  color: transparent;
  display: inline-block;
}

.visualSec .control_box .paging>span {
  font-family: 'GmarketSans';
  font-size: 18px;
  color: var(--Greyscale9);
  opacity: 0.6;
}

.visualSec .control_box .paging>.this {
  color: var(--Greyscale9);
  opacity: 1;
}

.visualSec .control_box .paging>.this::after {
  content: "/";
  display: inline-block;
  color: var(--Greyscale9);
  opacity: 0.6;
  margin: 0 5px;
}

/* 군수님 섹션 */
.mayorSec {
  position: relative;
}

.mayorSec .snsWrap {
  display: flex;
  flex-direction: row;
  padding-top: 30px;
  padding-right: 30px;
  align-items: center;
}

.mayorSec .snsWrap>h3 {
  font-family: 'GmarketSans';
  font-size: 38px;
  color: var(--Default);
}

.mayorSec .snsWrap>h3>.accentTit {
  color: var(--Primary-darken);
}

.mayorSec .snsBox {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.mayorSec .snsBox>a {
  width: 47px;
  height: 46px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mayorSec .snsBox>a>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 군수님 소개 */
.mayorBox {
  position: absolute;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.mayorBox .mayorVisual {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 290px;
  position: relative;
  box-sizing: border-box;
  backdrop-filter: blur(15px);
}

.mayorBox .mayorVisual>a {
  border: 1px solid rgba(32, 159, 132, 0.5);
  border-radius: 60px;
  font-family: 'GmarketSans';
  font-size: 18px;
  color: var(--Default);
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  width: fit-content;
}

.mayorBox .mayorVisual>.mayorImg {
  position: absolute;
  right: 10px;
  bottom: 0;
}

.mayorBox .mayorVisual>.mayorIntro {
  font-family: 'GmarketSans';
  font-size: 32px;
  color: var(--Greyscale9);
  font-weight: 700;
}

.mayorBox .mayorVisual>.mayorIntro>.name {
  color: var(--Default);
}

.mayorBox .mayorVisual>.mayorIntro>.sm {
  font-size: 24px;
}

.mayorBox .mayorLink {
  background-color: var(--Default);
}

.mayorBox .mayorLink ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.mayorBox .mayorLink li {
  width: 100%;
}

.mayorBox .mayorLink a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  font-family: 'GmarketSans';
  font-size: 16px;
  gap: 6px;
}

/* 공지사항 게시판 */

.noticeSec .tab-area {
  position: relative;
}

.noticeSec .tab-area .tab {
  display: flex;
  flex-direction: column;
  height: fit-content;
  border: none;
  justify-content: flex-end;
  line-height: 100%;
  position: absolute;
  top: 25px;
  left: 0;
}

.noticeSec .tab-area .tab::before {
  content: "";
  display: block;
  background-color: var(--Greyscale1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
}

.noticeSec .tab-area .tab .tabBtn {
  margin-top: 0;
  padding: 5px 0px;
  width: 100%;
  height: fit-content;
  border: none;
  border-bottom: 1px solid #CED3D6;
  z-index: 1;
  border-radius: 0;
}

.noticeSec .tab-area .tab .tabBtn a {
  padding: 10px 0px;
  width: 100%;
  font-family: 'GmarketSans';
  font-size: 18px;
  color: var(--Greyscale8);
}

.noticeSec .tab-area .tab .tabBtn:last-child {
  border-right: 0 !important;
  border-radius: 0 !important;
  border-bottom: none;
  box-sizing: border-box;
}

.noticeSec .tab-area .tab .tabBtn.active {
  background-color: var(--Default);
  color: #fff;
  border-radius: 6px;
  width: 130px;
  border-bottom: none;
}

.noticeSec .tab-area .tab .tabBtn:last-child.active {
  border-radius: 6px !important;
}

.noticeSec .tab-area .tab .tabBtn:last-child.active {
  border-radius: 0 16px 0 0 !important;
}

.noticeSec .tab-area .tab .tabBtn.active a {
  display: block;
  color: #fff;
}

.noticeSec .tab-area .tabCon {
  background-color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  margin-left: 50px;
  padding: 30px;
  padding-left: 110px;
  width: calc(100% - 50px);
  box-sizing: border-box;
}

.noticeSec .tab-area .tabCon .noticeTbl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.noticeSec .tab-area .tabCon .noticeTbl .moreViewBtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.noticeSec .tab-area .tabCon .noticeTbl .moreViewBtn h3 {
  font-family: 'GmarketSans';
  font-size: 26px;
  font-weight: 700;
}

.noticeSec .tab-area .tabCon .noticeTbl .moreViewBtn a {
  width: fit-content;
  color: var(--Greyscale9);
  font-size: 15px;
}

.noticeSec .tab-area .tabCon .noticeTbl .noticeTblBody {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Greyscale3);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.noticeSec .tab-area .tabCon .noticeTbl .noticeTblBody:last-child {
  padding-bottom: 0px;
  border-bottom: 0;
}

.noticeSec .tab-area .tabCon .noticeTbl .noticeTblBody p,
.noticeSec .tab-area .tabCon .noticeTbl .noticeTblBody a {
  font-family: 'GmarketSans';
  font-size: 16px;
  font-weight: 500;
  color: var(--Greyscale9);
}

.noticeSec .tab-area .tabCon .noticeTbl .noticeTblBody p {
  font-size: 14px;
  flex-shrink: 0;
}

/* 자주찾는 메뉴 */
.qckMenu {
  background: #F1F5F5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  margin-top: 40px;
}

.qckMenu .qckMenuTit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'GmarketSans';
  color: var(--Greyscale9);
}

.qckMenu .qckMenuTit>h3 {
  font-size: 26px;
  font-weight: 700;
}

.qckMenu .qckMenuTit>p {
  font-size: 14px;
}

.qckMenu .qckMenuLink {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
}

.qckMenu .qckMenuLink li {
  width: calc(25% - 15px);
  height: 108px;
}

.qckMenu .qckMenuLink li>a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: 'GmarketSans';
  color: var(--Greyscale9);
  font-size: 16px;
  text-align: center;
}

.qckMenu .qckMenuLink li.active>a {
  background-color: var(--Default);
  color: #fff;
}

/* 사용자 맞춤메뉴 아코디언 */

.usrMenuSec {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--Greyscale3);
  border-bottom: 1px solid var(--Greyscale3);
  padding-left: 220px;
}

.usrMenuSec h3 {
  font-family: 'GmarketSans';
  color: var(--Greyscale8);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.acrd-area .acrd {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.acrd-area .acrd>li {
  display: flex;
  flex-direction: row;
  padding: 16px 30px;
  height: 130px;
  gap: 30px;
}

.acrd-area .acrd li.active {
  width: 100%;
  background-color: var(--Greyscale1);
  border-radius: 8px;
}

.acrd-area .acrd li .acrdBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80px;

  font-family: 'GmarketSans';
  color: var(--Greyscale8);
  font-size: 24px;
  text-align: center;
}

.acrd-area .acrd li.active .acrdBtn {
  font-weight: 700;
}

.acrd-area .acrd .acrdCon {
  overflow: hidden;
  width: 100%;
  display: none;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.acrd-area .acrd li.active .acrdCon {
  display: flex;
}

.acrd-area .acrd li .acrdCon li {
  width: 23%;
}

.acrd-area .acrd>li:first-child .acrdCon li {
  width: 16%;
}

.acrd-area .acrd .acrdCon a {
  font-family: 'GmarketSans';
  color: var(--Greyscale9);
  font-size: 17px;
}

/* 사용자 맞춤 슬라이드 */

.userMenuSlideBox {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.userMenuSlideBox>button {
  pointer-events: auto;
  font-size: 0;
  color: transparent;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  border: 1px solid var(--Greyscale3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.userMenuSlideBox>.userMenuSlide {
  width: calc(100% - 104px);
  margin: 0 auto;
}

.userMenuSlideBox>.userMenuSlide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  text-align: center;
  font-family: 'GmarketSans';
  color: var(--Greyscale9);
  font-size: 16px;
}

.userMenuSlideBox>.userMenuSlide a>.imgbox {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userMenuSlideBox>.userMenuSlide a>.imgbox img {
  width: 60px;
  height: auto;
}

/* 소통 담양 SNS + 온라인현수막 통합 */

.plusSec {
  padding: 60px 0;
  margin-left: 220px;
}

/* 소통 담양 SNS */

.snsSec {
  position: relative;
  z-index: 1;
}

.snsSec>.bg {
  position: absolute;
  height: 250px;
  width: 100%;
  background-color: var(--Greyscale1);
  z-index: 0;
  bottom: 0px;
  right: 60%;
}

.snsSec>.con-wrap {
  position: relative;
}

.plusSec h3 {
  font-family: 'GmarketSans';
  color: var(--Greyscale8);
  font-size: 32px;
  line-height: 130%;
}

.snsSec .snsDLink {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 0;
  box-sizing: border-box;
  justify-content: end;
  height: 100%;
}

.snsSec .snsDLink a {
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-family: 'GmarketSans';
  color: var(--Greyscale8);
  font-size: 21px;
}

.snsSec .snsDLink a img {
  width: 32px;
}

.snsSec .prev,
.snsSec .next {
  /* position: absolute; */
  /* top: 40px;
  left: 150px; */
  /* display: flex; */
  flex-direction: row;
  gap: 10px;
  font-size: 0;
  color: transparent;
}

.plusSec .slideHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.snsSec .next {
  left: 190px;
}

.snsSec .controlBox .slick-arrow.slick-hidden {
  display: block;
  opacity: 0.5;
}

.snsSec .snsSlider .snsSlideItem {
  display: block;
  border: 1px solid #E1E4E6;
  border-radius: 16px;
  margin: 0 5px;
  background-color: #fff;
  overflow: hidden;
}

.snsSec .snsSlider .snsSlideItem .imgbox {
  padding-top: 100%;
  position: relative;
  margin-bottom: 0px;
}

.snsSec .snsSlider .snsSlideItem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.snsSec .snsSlider .snsSlideItem .contentbox {
  padding: 16px 16px 20px;
  width: 100%;
  box-sizing: border-box;
}

.snsSec .snsSlider .snsSlideItem .contentbox p.txt {
  width: 100%;
  white-space: unset;
  margin-bottom: 10px;
  font-family: 'GmarketSans';
  color: var(--Greyscale7);
  font-size: 17px;
  line-height: 130%;
}

.snsSec .snsSlider .snsSlideItem .contentbox p.date {
  font-family: 'GmarketSans';
  color: var(--Greyscale6);
  font-size: 14px;
}

/* 온라인 현수막 */

.bannerSec {
  padding: 0;
  position: relative;
}

.bannerSec .bannerSlide {
  width: 100%;
  height: 330px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.bannerSec .bannerSlide a.slick-slide {
  height: 330px;
}

.bannerSec .bannerSlide a.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerSec .controlBox {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px 0px 0px 0px;
  padding: 8px 16px;
}

.bannerSec .controlBox .stop,
.bannerSec .controlBox .play {
  font-size: 0;
  color: transparent;
}

.bannerSec .controlBox .slick-dots {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.bannerSec .controlBox .slick-dots button {
  font-size: 0;
  color: transparent;
  width: 16px;
  height: 16px;
  background-color: var(--Greyscale4);
  border-radius: 8px;
}

.bannerSec .controlBox .slick-dots li.slick-active button {
  background-color: var(--Secondary);
  width: 48px;
}

/* 담양 여행안내 */
.tourSec {
  position: relative;
  padding-top: 100px;
}

.tourSec>.bg {
  background: linear-gradient(180deg, rgba(241, 245, 245, 0) 0%, #F1F5F5 100%);
  width: 100%;
  height: 425px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.tourSec>.container {
  position: relative;
  z-index: 1;
}

.tourSec .con-wrap>.row:first-child {
  flex-direction: row-reverse;
}

.tourSec .tourTit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.tourSec .tourTit img {
  width: 72px;
}

.tourSec .tourTit>.txt {
  font-family: 'GmarketSans';
}

.tourSec .tourTit h3 {
  color: var(--Greyscale8);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tourSec .tourTit p {
  color: var(--Greyscale6);
  font-size: 18px;
  font-weight: 300;
  word-break: keep-all;
}

.tourSec .tourTapMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.tourSec .tourTapMenu>.tourTapBtn {
  padding: 14px 20px;
  background-color: var(--Greyscale4);
  border-radius: 8px;
  font-family: 'GmarketSans';
  font-size: 21px;
  color: var(--Greyscale8);
}

.tourSec .tourTapMenu>.tourTapBtn.active {
  background-color: var(--Default);
  color: #fff;
}

.tourTapCon {
  position: relative;
}

.tourTapCon .conBox {
  display: none;
  margin-left: -10px;
}

.tourTapCon .conBox.active {
  display: block;
}

.tourTapCon .conBox a {
  display: block;
  border-radius: 0px 0px 30px 0px;
  overflow: hidden;
  position: relative;
  height: 200px;
  margin: 0 10px;
}

.tourTapCon .conBox a>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourTapCon .conBox a>p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  box-sizing: border-box;
  font-family: 'GmarketSans';
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tourTapCon .slick-prev::before {
  content: "";
  display: block;
  height: 39px;
  width: 29px;
  background: url(../assets/icon/main/sns_slide_prev.svg) no-repeat;
}

.tourTapCon .slick-next::before {
  content: "";
  display: block;
  height: 39px;
  width: 29px;
  background: url(../assets/icon/main/sns_slide_next.svg) no-repeat;
}

.tourTapCon .slick-prev,
.tourTapCon .slick-next {
  position: absolute;
  bottom: -70px;
  left: 0;
  font-size: 0;
  color: transparent;
}

.tourTapCon .slick-next {
  left: 40px;
}

.tourPageList {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 30px;
  gap: 30px;
}

.tourPageList a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-family: 'GmarketSans';
  font-size: 18px;
  color: var(--Greyscale8);
  text-align: center;
  padding-top: 20px;
}

.tourPageList a img {
  width: 72px;
  height: auto;
}

.tourLink {
  margin-left: auto;
  display: block;
  width: fit-content;
  font-family: 'GmarketSans';
  font-size: 18px;
  color: var(--Greyscale8);
  margin-top: 40px;
  text-align: right;
}

.tourLink>img {
  margin-left: 16px;
}

.tourSec .con-wrap>.row:first-child {
  align-items: flex-end;
}

.tourSec .con-wrap>.row:first-child .tourPageList {
  display: flex;
}

.tourSec .con-wrap>.row:last-child .tourPageList {
  display: none;
}


/* 반응형 작업 */

@media (max-width: 1680px) {

  .mainVisual .slick-slide>img {
    left: calc(50% - 40px);
  }

  /* 군수님 섹션 */
  .mayorSec .snsWrap>h3 {
    font-size: 32px;
  }

  .mayorSec .snsBox>a {
    width: 42px;
    height: 42px;
  }

  .container {
    max-width: 1200px;
  }

  .mayorBox {
    bottom: 2px;
  }

  .mayorBox .mayorVisual {
    padding: 20px;
  }

  .mayorBox .mayorVisual>.mayorImg {
    width: 200px;
  }

  /* 사용자 맞춤메뉴 */
  .acrd-area .acrd .acrdCon a {
    font-size: 16px
  }

  .acrd-area .acrd>li:first-child .acrdCon li {
    width: 25%;
  }

  .bannerSec .bannerSlide,
  .bannerSec .bannerSlide a.slick-slide {
    height: 296px;
  }

  /* 소통담양 SNS */
  .snsSec h3 {
    font-size: 30px;
  }

  .snsSec>.bg {
    height: 220px;
  }

  .snsSec .prev {
    left: 128px;
  }

  .snsSec .next {
    left: 160px;
  }

  /* 담양 여행 */
  .tourSec .tourTit p {
    font-size: 16px;
  }
}

@media (max-width: 1480px) {

  .mainVisual .slick-slide>img {
    left: calc(50% - 140px);
  }

  section,
  .usrMenuSec {
    padding-left: unset;
  }

  .plusSec {
    margin-left: unset;
  }
}

@media (max-width: 1200px) {

  .mainVisual .slick-slide>img {
    left: unset;
    top: unset;
    position: unset;
    transform: translateX(0);
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .visualSec .control_box {
    left: unset;
    right: 32px;
  }

  .mayorSec .snsWrap {
    margin-bottom: 30px;
  }

  .mayorBox {
    position: relative;
    bottom: unset;
  }

  .acrd-area {
    margin-bottom: 170px;
  }

  .acrd-area .acrd {
    width: 100%;
    position: relative;
    justify-content: space-between;
  }

  .acrd-area .acrd>li {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .acrd-area .acrd li.active {
    border-radius: 8px 8px 0px 0px;
  }

  .acrd-area .acrd .acrdCon {
    position: absolute;
    top: 130px;
    left: 0;
    background-color: var(--Greyscale1);
    padding: 30px;
    box-sizing: border-box;
    gap: 16px;
  }

  .acrd-area .acrd>li:first-child .acrdCon li {
    width: calc(25% - 12px);
  }

  .snsSec {
    margin-bottom: 20px;
  }

  .snsSec .col.d4.sm12 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .snsSec .prev,
  .snsSec .next {
    position: relative;
    top: unset;
    left: unset;
  }

  .snsSec h3 {
    /* margin-bottom: 16px; */
  }

  .snsSec h3>br {
    display: inline-block;
    content: " ";
    padding: 0 2px;
  }

  .snsSec .snsDLink {
    flex-direction: row;
    padding: 0;
    margin-bottom: 16px;
  }

  .snsSec .col.d8.sm12 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .bannerSec .bannerSlide,
  .bannerSec .bannerSlide a.slick-slide {
    height: auto;
  }

  .snsSec .col.d8.sm12 .snsSlider {
    width: calc(100% - 80px);
  }

  .snsSec>.bg {
    display: none;
  }

  .tourSec .con-wrap>.row:first-child .tourPageList {
    display: none;
  }

  .tourSec .con-wrap>.row:last-child .tourPageList {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .tourTapCon .conBox .slick-list {
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  .tourTapCon .slick-prev,
  .tourTapCon .slick-next {
    bottom: unset;
    top: calc(50% - 20px);
  }

  .tourTapCon .slick-next {
    left: unset;
    right: 0;
  }

  .tourLink {
    margin: 0 auto;
  }

  .tourTapCon .conBox {
    margin-left: unset;
  }
}

@media (max-width: 960px) {
  .visualSec .mainVisual .slick-slide {
    height: 260px;
  }

  .mayorSec .snsWrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .acrd-area {
    margin-bottom: 210px;
  }

  .acrd-area .acrd>li:first-child .acrdCon li,
  .acrd-area .acrd li .acrdCon li {
    width: calc(33.33% - 11px);
  }

  .plusSec>.container>.con-wrap>.row {
    flex-direction: column;
  }

  .snsSec .col.d8.sm12 {
    margin-bottom: 0;
  }

  .bannerSec {
    margin-bottom: 60px;
  }

}

@media (max-width: 600px) {
  .visualSec .control_box {
    right: 16px;
  }

  .visualSec .mainVisual .slick-slide {
    height: 360px;
  }

  .mainVisual .slick-slide>img:not(.mobile) {
    display: none;
  }

  .mainVisual .slick-slide>img.mobile {
    display: block;
  }

  .mayorSec .snsWrap {
    padding-right: 6px;
  }

  .mayorSec .snsWrap>h3 {
    text-align: center;
  }

  .mayorSec .snsBox>a {
    width: 36px;
    height: 36px;
  }

  .mayorSec .snsWrap>h3>.accentTit {
    display: block;
  }

  .mayorBox .mayorVisual {
    height: 200px;
  }

  .mayorBox .mayorVisual>a {
    font-size: 16px;
    padding: 5px 8px;
  }

  .mayorBox .mayorVisual>.mayorImg {
    width: 160px;
  }

  .mayorBox .mayorVisual>.mayorIntro {
    font-size: 21px;
  }

  .mayorBox .mayorVisual>.mayorIntro>.sm {
    font-size: 18px;
  }

  .mayorBox .mayorLink a {
    font-size: 14px;
  }

  .mayorBox .mayorLink a img {
    width: 24px;
  }

  .noticeSec .tab-area {
    display: flex;
    flex-direction: column;
  }

  .noticeSec .tab-area .tab {
    position: relative;
    top: unset;
    left: unset;
    flex-direction: row;
    background-color: var(--Greyscale1);
    padding: 0;
    margin-bottom: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .noticeSec .tab-area .tab::before {
    display: none;
  }

  .noticeSec .tab-area .tab .tabBtn {
    width: calc(100% / 5);
    margin-top: 0;
    border-bottom: unset;
    padding: 8px;
    padding-top: 10px;
  }

  .noticeSec .tab-area .tab .tabBtn a {
    font-size: 14px;
  }

  .noticeSec .tab-area .tab .tabBtn.active,
  .noticeSec .tab-area .tab .tabBtn:last-child.active {
    width: calc(100% / 5);
    border-radius: 8px !important;
  }

  .noticeSec .tab-area .tabCon .noticeTbl .moreViewBtn a {
    font-size: 14px;
  }

  .noticeSec .tab-area .tabCon {
    margin-left: 0;
    width: 100%;
    padding: 0;
    box-shadow: none;
    background-color: unset;
    border-radius: 0;
  }

  .qckMenu {
    padding: 16px;
  }

  .qckMenu .qckMenuTit {
    flex-direction: column;
  }

  .qckMenu .qckMenuLink {
    gap: 16px;
  }

  .qckMenu .qckMenuLink li {
    width: calc(50% - 8px);
  }

  .acrd-area .acrd>li {
    height: 107px;
    padding: 16px 0;
  }

  .acrd-area .acrd .acrdCon {
    top: 107px;
  }

  .acrd-area .acrd li .acrdBtn {
    font-size: 18px;
  }

  .acrd-area .acrd li .acrdBtn>img {
    width: 42px;
  }

  .acrd-area {
    margin-bottom: 300px;
  }

  .acrd-area .acrd>li:first-child .acrdCon li,
  .acrd-area .acrd li .acrdCon li {
    width: calc(50% - 8px);
  }

  .snsSec .snsDLink a {
    font-size: 16px;
  }

  .snsSec .snsSlider .snsSlideItem .contentbox p.txt {
    font-size: 18px;
  }

  .tourSec {
    padding-top: 0;
  }

  .tourSec .tourTit h3 {
    font-size: 21px;
  }

  .tourSec .tourTit p {
    font-size: 15px;
  }

  .tourTapCon .conBox a {
    height: 220px;
    margin: 0 5px;
  }

  .tourSec>.bg {
    display: none;
  }

  .tourTapCon .conBox {
    margin-left: 0;
  }

  .tourSec .tourTapMenu>.tourTapBtn {
    font-size: 16px;
    padding: 10px 16px;
  }

  .tourTapCon .conBox .slick-list {
    width: 100%;
  }

  .tourTapCon .slick-prev,
  .tourTapCon .slick-next {
    background-color: #fff;
    z-index: 1;
  }

  .tourPageList {
    gap: 10px;
  }

  .tourPageList a {
    font-size: 14px;
  }

  .tourPageList a img {
    width: 42px;
  }

  .tourTapCon .conBox a>p {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .snsSec .snsDLink {
    flex-wrap: wrap;
    padding: 0 40px;
  }

  .snsSec .snsDLink>li {
    width: calc(50% - 8px);
  }

  .snsSec .snsDLink>li>a {
    justify-content: center;
  }

  .tourSec .tourTapMenu {
    gap: 10px;
  }

  .tourSec .tourTapMenu>.tourTapBtn {
    font-size: 14px;
    padding: 5px 8px;
    letter-spacing: -1px;
  }
}

@media (max-width: 400px) {
  .acrd-area .acrd .acrdCon {
    padding: 16px;
  }

  .acrd-area .acrd .acrdCon a {
    font-size: 14px;
  }
}