@font-face {
  font-family: "GangwonEduPowerExtraBoldA";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 16px;
  font-weight: 300;
  /* font-family: "Roboto", "Pretendard", "-apple-system", "system-ui",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "sans-serif"; */
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

/* index.html -----------------------------------------*/

/* 로고 및 제목 타이틀 부분 --------------------------- */

.section-bigtitle {
  background-color: #000;
  position: relative;
}

.section-bigtitle .inner {
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}

.title-logo {
  text-align: center;
  padding-bottom: 42px;
}

.title-logo img {
  width: 196px;
}

.title-h1 {
  text-align: center;
  font-weight: 600;
  /* color: #c6a68d; */
  color: #fff;
  font-size: 30px;
  font-family: "Pretendard", "-apple-system", "system-ui", "Roboto",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "sans-serif";
}

.title-h1 .bb {
  padding: 2px 5px;
  border-radius: 5px;
  font-weight: 700;
}

.title-h1 .bb.jj {
  background-color: #c6a68d;
}
.title-h1 .bb.ic {
  background-color: #1b3662;
}
.title-h1 .bb.yp {
  background-color: #67071f;
}

.title-h2 {
  text-align: center;
  /* color: #c6a68d; */
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  font-family: "Pretendard", "-apple-system", "system-ui", "Roboto",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "sans-serif";
  padding-bottom: 60px;
}

@media (max-width: 576px) {
  .title-logo img {
    width: 30vw;
  }
  .title-h1 {
    font-size: 25px;
  }
  .title-h2 {
    font-size: 15px;
  }
}

/* blog page ------------------------------------------ */
/* 
.blog__page {
  padding: 0px 0;
}

@media (max-width: 576px) {
  .blog__page {
    padding: 30px 0 55px;
  }
}

.blog__warp {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.blog__item {
  height: 248px;
  position: relative;
  margin-bottom: 22px;
  background-position: center;
  background-size: cover;
}

.blog__item.blog__item--long {
  height: 518px;
}

.blog__item:hover {
  cursor: pointer;
}

.blog__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;

  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 43%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 43%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

@media (max-width: 576px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__item h3 {
    font-size: 22px;
  }
}

.blog__content {
  position: absolute;
  bottom: 18px;
  padding: 0 30px;
  z-index: 2;
}

.blog__content h3 {
  font-size: 29px;
}

.blog__date {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
} */

/* Preloder  ----------------------------------------------- */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/* footer  -----------------------------------------------  */

footer {
  position: relative;
  /* margin-top: 70px; */
  color: #fff;
  font-size: 12px;
  bottom: 0;
  left: 0;

  z-index: 20;
  padding: 36px 0;
  background-color: #000;
}
/* 
@media (min-height: 1100px) {
  footer {
    position: fixed;
    width: 100%;
  }
} */

footer .inner {
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 1260px) {
  footer {
    width: 100%;
  }
}

@media (max-width: 991px) {
  footer {
    position: relative;
  }
}

/* main.html ----------------------------------------*/

/* header - menu ---------------------------------- */

header {
  width: 100%;
  height: 58px;
  padding: 20px 20px;
  position: fixed;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

header.down {
  background-color: rgba(255, 255, 255, 1);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
}

header.border {
  box-shadow: 0px 2px 3px #ececec;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header-logo */

.header-inner .header-logo {
  position: absolute;
  top: 17px;
  left: 38px;
  height: 45px;
  width: 45px;
}

@media (max-width: 991px) {
  .header-inner .header-logo {
    left: 20px;
  }
}

.header-inner .header-logo .logo-black {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -8px;
  width: 40px;
  left: -8px;
}

.header-inner .header-logo .logo-white,
header.down .header-inner .header-logo .logo-black,
.header-inner .header-logo.active .logo-white {
  visibility: visible;
  opacity: 1;
}

header.down .header-inner .header-logo .logo-white,
.header-inner .header-logo.active .logo-black {
  visibility: hidden;
  opacity: 0;
}

/* header-navigation ------------------------------ */

/* 상단 지역 버튼 평상시 */
.header-inner .header-navigation a,
.header-inner .header-right a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 2px 8px;
}

/* 내려가면 글자색 검정 */
header.down .header-inner .header-navigation a {
  color: #000;
}

/* 마우스 올리면 버튼 검정 배경 */
.header-inner .header-navigation a:hover,
.header-inner .header-right a:hover {
  color: #fff !important;
  background-color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}

/* 제주 페이지에서만 상시 색 */
.header-navigation .jj {
  color: #fff !important;
  background-color: #c6a68d !important;
}

.header-navigation .ic {
  color: #fff !important;
  background-color: #1b3662 !important;
}

.header-navigation .yp {
  color: #fff !important;
  background-color: #67071f !important;
}

.header-navigation .jp {
  color: #fff !important;
  background-color: #096959 !important;
}

.header-inner .header-navigation a::after {
  width: 0;
  height: 2px;
  background: #c6a68d;
  left: 50%;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.header-inner .header-navigation a.line::after {
  width: 100%;
  left: 0;
  transition: all 0.3s;
}

/* mobiletitle */

.mobiletitle {
  display: none;
  opacity: 0;
  position: absolute;
  top: 15px;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
}
.mobiletitle .bb {
  color: #fff;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 3px;
}
.mobiletitle .bb.jj {
  background-color: #c6a68d;
}
.mobiletitle .bb.ic {
  background-color: #1b3662;
}
.mobiletitle .bb.yp {
  background-color: #67071f;
}
.mobiletitle .bb.jp {
  background-color: #096959;
}

/* header-right */

.header-inner .header-right {
  width: auto;
  position: absolute;
  right: 38px;
}
@media (max-width: 576px) {
  .header-inner .header-right a {
    position: absolute;
    right: 20x;
    text-align: right;
  }
}

.header-inner .header-right.dishes {
  margin-top: 25px;
}

.header-inner .header-right.dishes a {
  right: 20px;
}

.header-inner .header-right a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

header.down .header-inner .header-right a {
  color: #000;
}

/* more-btn */

.more-btn {
  display: none;
  border: none;
}

@media (max-width: 991px) {
  header {
    background-color: #fff;
    padding: 0;
    margin: 0;
    height: 58px;
  }

  .header-inner .header-logo img {
    position: absolute;
    height: 40px; /* logo 크기 */
    z-index: 4;
  }

  header .header-inner .header-logo .logo-black {
    visibility: visible;
    opacity: 1;
  }

  header .header-inner .header-logo .logo-white,
  header .header-inner .header-logo.active .logo-white {
    visibility: hidden;
    opacity: 0;
  }
  header .header-inner .header-logo.active .logo-black,
  header.down .header-inner .header-logo.active .logo-black {
    visibility: visible;
    opacity: 1;
  }

  .header-navigation {
    position: fixed;
    left: 60%;
    top: 0;
    padding: 80px 20px;
    width: 40%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
  }
  .header-navigation.active {
    opacity: 1;
    visibility: visible;
  }

  .header-navigation a {
    color: #fff;
    display: block;
    margin: auto;
    margin-bottom: 8px;
    padding: 12px;
  }

  header.down .header-navigation a,
  header.down .header-navigation.active a {
    color: #fff;
  }

  .header-navigation a:hover {
    color: #fff;
  }

  .mobiletitle {
    display: block;
    opacity: 1;
  }

  /* more-btn */

  .more-btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: url(../img/menu_icon.svg) no-repeat center;
    background-size: contain;
    z-index: 3;
  }

  .more-btn.active {
    background: url(../img/menu_close.svg) no-repeat center;
    background-size: contain;
    color: #fff;
  }

  .header-inner .header-right a {
    display: none;
  }
}

@media (max-width: 650px) {
  .mobiletitle {
    font-size: 15px;
    margin-top: 3px;
  }
}

/* common ------------------------------ */

section {
  position: relative;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.topmargin {
  margin-top: 100px;
}

.toppadding {
  padding-top: 80px;
}

.bottommargin {
  margin-bottom: 100px;
}

.bottompadding {
  padding-bottom: 80px;
}

.graybackcolor {
  background-color: #f5f5f5;
}

/* 클릭한 흔적 파란테두리 박스 삭제  */
*:focus {
  box-shadow: none !important;
}

/* 단어 잘리지 않게 */
* {
  word-break: keep-all;
}

.video-box {
  height: 700px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.video-box .titlebg {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.6;
  overflow: hidden;
}

@media only screen and (min-width: 1261px) {
  .video-box .titlebg {
    width: 100%;
  }
}

@media only screen and (max-width: 1260px) {
  .section-bigtitle {
    /*지우지 말것*/
    overflow: hidden;
  }
}

@media only screen and (max-width: 1058px) {
  .video-box .titlebg {
    height: 100%;
    overflow: hidden;
  }
}

@media (max-width: 1260px) {
  .inner {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }
}

/* section-title */

.section-title.white {
  background-color: #000;
}

.section-title .h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.section-title .t1 {
  font-size: 22px;
  font-weight: 700;
}

.section-title.white .t1 {
  font-weight: 600;
}

.section-title .t2 {
  font-size: 15px;
  font-weight: 600;
}

.section-title .l1 {
  border-bottom: 0.2px solid #000;
  margin-bottom: 40px;
}

.section-title .l1.white {
  border-bottom: 0.2px solid #fff;
}

.section-title .btn {
  font-size: 14px;
}

/* section-title end ------------------------------------ */

/* section-title .fixed */

.fixtitle {
  display: none;
  opacity: 0;
  position: fixed;
  top: 58px;
  text-align: center;
  background-color: #fff;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid #000;
  transition: 0.5s;
}

.fixtitle.white {
  background-color: #000;
  border-bottom: 1px solid #fff;
}

.fixtitle .inner {
  padding: 10px 0px 0px;
}

@media (max-width: 1260px) {
  .fixtitle .inner {
    padding: 10px 20px 0px;
  }
}

.fixtitle .l1 {
  margin-bottom: 0px;
}

.fixtitle .section-title {
  width: 1200px;
}

.fixtitle0.fixed,
.fixtitle1.fixed,
.fixtitle2.fixed,
.fixtitle3.fixed,
.fixtitle4.fixed,
.fixtitle5.fixed,
.fixtitle6.fixed,
.fixtitle7.fixed,
.fixtitle8.fixed {
  display: block;
  opacity: 1;
  transition: 0.5s;
}

@media (max-width: 1260px) {
  .fixtitle,
  .fixtitle .section-title {
    width: 100%;
  }
}

/* section-title .fixed end --------------------------------------- */

/* .section-content */

.section-content {
  position: relative;
}

.section-content-title {
  padding-bottom: 12px;
}

.section-content-title.white {
  color: #fff;
}

.section-content-title.flex {
  display: flex;
}

.section-content-title.gold {
  color: #c6a68d;
}

@media only screen and (max-width: 500px) {
  .section-content-title.flex {
    justify-content: space-between;
  }
}

.section-content-title-sub1 {
  font-size: 19px;
  font-weight: 700;
  /* padding: 6px 0px 6px; */
}

.section-content-title-sub2 {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.flex .section-content-title-sub2 {
  margin-bottom: 0px;
}

.boldfont {
  margin-top: 5px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.8rem;
}

.boldfont.jj {
  background-color: #c6a68d;
}
.boldfont.ic {
  background-color: #1b3662;
}
.boldfont:first-child {
  margin-top: 0;
}

.orgfont {
  padding: 5px 10px;
}

.space-margin {
  height: 50px;
}
.space-margin.width {
  height: 10px;
  width: 20px;
}

.space-margin20 {
  height: 40px;
}

.space-margin10 {
  height: 20px;
}

.verti {
  width: 100%;
  height: 100%;
  line-height: 25px;
}

.verti.alignleft {
  padding: 10px;
  text-align: left;
  word-break: normal;
}

/* section-backimg */

.section-backimg {
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  height: 500px;
  width: 100%;
  position: relative;
}

.section-backimg .inner {
  padding: 13px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  /* border-radius: 10px; */
  width: 600px;
  position: relative;
}

@media (max-width: 650px) {
  .section-backimg .inner {
    width: auto;
    margin: 0 20px;
  }
}

.section-title-h1 {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 25px;
}

.section-title-h2 {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.section-backimg.jeju1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgjeju1.webp);
  width: 100%;
}
.section-backimg.jeju2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgjeju2.webp);
  width: 100%;
}
.section-backimg.jeju3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgjeju3.webp);
  width: 100%;
}
.section-backimg.icheon1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgicheon2.webp);
  width: 100%;
}

.section-backimg.icheon2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgicheon2.webp);
  width: 100%;
}

.section-backimg.belleforet1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/belle.webp);
  width: 100%;
}

/* title-location-btn */

.title-location-btn {
}

.title-location-btn .btn {
  font-size: 14px;
  font-weight: 700;
  padding: 3px 20px;
}

/* .title-location-btn .btn.jj {
  color: #af8f64;
  border-left: 2px solid #af8f64;
  border-right: 2px solid #af8f64;
}

.title-location-btn .btn.ic {
  color: #bdbdbd;
  border-left: 2px solid #bdbdbd;
  border-right: 2px solid #bdbdbd;
}

.title-location-btn .btn.yp {
  color: #ff1953;
  border-left: 2px solid #ff1953;
  border-right: 2px solid #ff1953;
} */

.title-location-btn .btn.jj {
  color: #fff;
  background-color: #af8f64;
}

.title-location-btn .btn.ic {
  color: #fff;
  background-color: #1b3662;
}

.title-location-btn .btn.yp {
  color: #fff;
  background-color: #67071f;
}

/* location-btn */

.location-btn {
  display: flex;
}

.location-btn .btn {
  font-weight: 600;
  width: 80px;
  height: 34px;
  margin: 0;
  border-radius: 5px 5px 0px 0px;
}

.location-btn .btn.active,
.location-btn .btn.active:hover {
  background-color: #151516;
  color: #fff;
}

.location-btn .btn:hover {
  background-color: #c6a68d;
  color: #fff;
}

/* calendar */

.section-backimg-calendar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/backimgcalendar.webp);
}
.section-backimg-calendar .grid .tab .tr1 {
  background-color: #c6a68d;
}

/* twoplayer */

.section-backimg-twoplayer {
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  background-image: url(../img/twoplayer.webp);
}

@media (max-width: 1260px) {
  .section-backimg-twoplayer {
    background-position: center;
    background-size: cover;
    background-image: linear-gradient(
        0.25turn,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.5)
      ),
      url(../img/twoplayer.webp);
  }
}

/* hotelroom */

.section-backimg-hotelroom {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(
      0.25turn,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url(../img/hotelroom.webp);
}

/* grid -------------------------------------- */

.grid {
  display: grid;
  gap: 40px 24px;
  margin: 0 auto;
}
.inner .grid.gold .tr1 {
  background-color: #fff;
  color: #000;
}

.grid .img {
  height: 400px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid img {
  width: 100%;
}

.grid .tab {
  border: none;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.grid .tab .tr1 {
  background-color: #000;
  color: #fff;
  padding: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.grid .tab .tr1.gold {
  background-color: #c6a68d;
}

.grid .tab .tr1.belle {
  background-color: #009c90;
}

@media (max-width: 500px) {
  .grid .tab .tr1 {
    padding: 8px;
  }

  .grid .tab .tr1 .grid-table-h1 {
    font-size: 13px;
    font-weight: 600;
  }
}

.grid .tab .tr1 .grid-table-h1 {
  font-size: 15px;
  font-weight: 600;
}
.grid .tab .tr1 .grid-table-h2 {
  font-size: 12px;
}

.grid .tab .tr1 .grid-table-h3 {
  font-size: 14px;
  text-align: left;
  padding-left: 10px;
}
.grid .tab .tr2 {
  font-size: 15px;
  font-weight: 500;
  padding: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #000;
}

/* 표가 있는 경우 패딩 제거 */
.grid .tab .tr2:has(.tee-off-table) {
  padding: 0;
}

.grid .tab2 {
  margin-top: 14px;
  margin-bottom: 14px;
  border: none;
  border-radius: 5px;
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  /* line-height: 25px; */
  display: flex;
  align-items: center;
  background-color: #fff;
}

.grid .tab2.tabopacity70 {
  background-color: rgba(255, 255, 255, 0.85);
}
.tab,
.tab2 {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-1 {
  grid-template-columns: 1fr;
}

@media only screen and (max-width: 1260px) {
  .grid {
    gap: 20px;
  }
  .grid .img {
    height: 35vw;
  }
  .grid-6 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 940px) {
  .grid .img {
    height: 50vw;
  }
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 500px) {
  .grid {
    gap: 13px;
  }

  .grid .img {
    height: 40vw;
  }
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* grid table----------------------------------- */

/* 표 가로 스크롤 컨테이너 */
.table-scroll-container {
  width: 100%;
  overflow-x: hidden; /* 기본적으로 숨김, JavaScript로 활성화 */
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  padding: 2px;
}

/* JavaScript로 활성화된 경우에만 스크롤 표시 */
.table-scroll-container.scroll-enabled {
  overflow-x: auto !important;
}

/* 스크롤 애니메이션 중에는 스크롤바 숨김 */
.scroll-spy:not(.show) .table-scroll-container::-webkit-scrollbar,
.scroll-spy.show
  .table-scroll-container:not(.scroll-enabled)::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.scroll-spy:not(.show) .table-scroll-container,
.scroll-spy.show .table-scroll-container:not(.scroll-enabled) {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* 애니메이션 완료 후 스크롤바 표시 */
.table-scroll-container.scroll-enabled::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.table-scroll-container.scroll-enabled::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.table-scroll-container.scroll-enabled::-webkit-scrollbar-thumb {
  background: #c6a68d;
  border-radius: 3px;
}

.table-scroll-container.scroll-enabled::-webkit-scrollbar-thumb:hover {
  background: #a58d7a;
}

.table-scroll-container.scroll-enabled {
  scrollbar-width: thin; /* Firefox */
  -ms-overflow-style: auto; /* IE and Edge */
}

table {
  border: 1px #a39485 solid;
  font-size: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.table-scroll-container table {
  min-width: 400px;
}

thead {
  font-weight: bold;
  color: #fff;
  background: #000;
}

td,
th {
  padding: 1em 0.5em;
  vertical-align: middle;
  width: 1fr;
}

table.gold thead {
  background-color: #c6a68d;
}

td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

a {
  color: #73685d;
}

table.gridtable3 .thead {
  float: none;
}

.section-notice table.orgtable th,
.section-notice table.orgtable td {
  width: 50%;
}

/* TEE-OFF TIME 테이블 스타일 */
.tee-off-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.tee-off-table td {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.tee-off-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.tee-off-table tbody tr:hover {
  background-color: #f5f5f5;
}

@media all and (max-width: 768px) {
  /* table-scroll-container 안의 테이블은 원래 테이블 형태 유지 - block 변경 안함 */
  .table-scroll-container table.orgtable,
  .table-scroll-container table.orgtable thead,
  .table-scroll-container table.orgtable tbody,
  .table-scroll-container table.orgtable th,
  .table-scroll-container table.orgtable td,
  .table-scroll-container table.orgtable tr {
    display: revert !important;
  }

  .section-notice table.orgtable th,
  .section-notice table.orgtable td {
    width: auto;
  }

  /* table-scroll-container 밖의 테이블만 모바일 스타일 적용 */
  table:not(.table-scroll-container table) {
    position: relative;
    padding-bottom: 0;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  thead:not(.table-scroll-container thead) {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
  }

  tbody:not(.table-scroll-container tbody) {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
  }

  tr:not(.table-scroll-container tr) {
    vertical-align: top;
  }
  /* gridtable2 */
  table.gridtable2 tr,
  table.gridtable3 tr {
    display: inline-block;
  }

  th:not(.table-scroll-container th) {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid #dbdbdb;
  }

  th:not(.table-scroll-container th):last-child {
    border-bottom: none;
  }

  td:not(.table-scroll-container td) {
    border-bottom: 1px solid #e5e5e5;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* gridtable3 */

.gridtable3,
.gridtable3 thead,
.gridtable3 tbody,
.gridtable3 th,
.gridtable3 td,
.gridtable3 tr {
  display: block;
}

table.gridtable3 {
  position: relative;
  padding-bottom: 0;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

table.gridtable3 thead {
  float: left;
  white-space: nowrap;
}

table.gridtable3 tbody {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  white-space: nowrap;
}

table.gridtable3 tr {
  vertical-align: top;
}

table.gridtable3 tr {
  display: inline-block;
}

table.gridtable3 th {
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: 1px solid #a39485;
}

table.gridtable3 td {
  /* border-bottom: 1px solid #e5e5e5; */
  border-bottom: none;
  padding-left: 30px;
  padding-right: 30px;
}

/* section notice -------------------------------------- */

.section-notice {
  background-color: #fff;
  padding-top: 37px;
  position: relative;
}

.section-notice .t1.jj,
.section-notice .t2.jj {
  color: #c6a68d;
}

.section-notice .t1.ic,
.section-notice .t2.ic {
  color: #1b3662;
}

.section-notice .t1.yp,
.section-notice .t2.yp {
  color: #67071f;
}

.section-notice .l1.jj {
  border-bottom: 0.2px solid #c6a68d;
}
.section-notice .l1.ic {
  border-bottom: 0.2px solid #1b3662;
}
.section-notice .l1.yp {
  border-bottom: 0.2px solid #67071f;
}

.section-notice .section-title .h1 {
  margin-bottom: 8px;
}

.section-notice .section-content .image {
  width: 100%;
  position: relative;
  max-height: 600px; /* 높이 제한 */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  --bg-image: none; /* CSS 변수 초기화 */
}

/* 배경 이미지에 블러 효과 적용 */
.section-notice .section-content .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg-image);
  background-size: cover; /* 좌우 너비 꽉 채우고 상하는 잘리게 */
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: 0;
  transform: scale(1.1); /* 블러 영역 확장으로 가장자리 블러 효과 개선 */
}

.section-notice .section-content .image img {
  max-width: 100%;
  max-height: 600px; /* 높이 제한 */
  width: auto;
  height: auto;
  object-fit: contain; /* 비율 유지 */
  position: relative;
  z-index: 1;
}

.section-notice .section-content .image .small {
  width: 290px;
  height: 290px;
  position: absolute;
  bottom: 5%;
  right: 5%;
  border-radius: 50%; /* Make the container circular */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 그림자 효과 추가 */
  transition: box-shadow 0.3s ease; /* 부드러운 전환 효과 */
  overflow: hidden; /* 원형 컨테이너 내부 이미지가 넘치지 않도록 */
}

.section-notice .section-content .image .small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* 이미지만 부드러운 전환 효과 */
  transform: scale(1.1); /* 평소에는 이미지가 1.1배 크기 */
}

.section-notice .section-content .image .small:hover img {
  transform: scale(1); /* 호버 시 이미지가 1.0배로 축소 */
}

.section-notice .section-content .image .small:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 호버 시 그림자 강화 */
}

/* 이미지 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative !important;
  margin: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  pointer-events: none !important;
  color: transparent !important;
  background-clip: unset !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-direction: row !important;
}

.modal-content img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover {
  color: #c6a68d;
}

/* 작은 원형 이미지에 커서 포인터 추가 */
.section-notice .section-content .image .small {
  cursor: pointer;
}

/* 모달 배경 클릭 영역 명확화 */
.modal {
  cursor: pointer;
}

.modal-content {
  cursor: pointer;
}

@media (max-width: 1260px) {
  .section-notice .section-content .image .small {
    width: 23vw;
    height: 23vw;
  }
}

.section-notice .img-caption {
  margin: 10px 0px 10px;
  font-weight: 500;
  font-size: 14px;
  text-align: right;
}

.section-notice .title {
  color: #c6a68d;
  font-size: 22px;
  font-weight: 600;
}

.section-notice .notice-content {
  margin-top: 20px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .section-notice .notice-content {
    font-size: 14px;
    font-weight: 400;
  }
}

/* 공지 부분 스크롤 올릴때 고정 타이틀 하단 색상 */
.section-notice .fixtitle.jj {
  border-bottom: 1px solid #c6a68d;
}
.section-notice .fixtitle.ic {
  border-bottom: 1px solid #1b3662;
}
.section-notice .fixtitle.yp {
  border-bottom: 1px solid #67071f;
}
.section-notice .fixtitle.jp {
  border-bottom: 1px solid #096959;
}

.section-notice .fixtitle .btn {
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  margin-right: -10px;
}

.section-notice .fixtitle .btn.jj,
.section-notice .title.jj {
  color: #c6a68d;
}
.section-notice .fixtitle .btn.ic,
.section-notice .title.ic {
  color: #1b3662;
}
.section-notice .fixtitle .btn.yp {
  color: #67071f;
}
.section-notice .fixtitle .btn.jp {
  color: #096959;
}

.inner.notice {
  background-repeat: no-repeat;
  background-position: calc(100% - 70px);
  background-size: contain;
}

@media (max-width: 1260px) {
  .inner.notice {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.section-notice .tab {
  text-align: left;
}

.section-notice .tab .tr2 {
  padding-left: 30px;
  font-size: 14px;
}

.section-notice .tab .tr1 {
  padding-left: 30px;
}

.section-notice .tab .tr1.jj,
.section-notice thead.jj {
  background-color: #c6a68d;
}
.section-notice .tab .tr1.ic,
.section-notice thead.ic {
  background-color: #1b3662;
}
.section-notice .tab .tr1.yp,
.section-notice thead.yp {
  background-color: #67071f;
}
.section-notice .tab .tr1.jp,
.section-notice thead.jp {
  background-color: #096959;
}

/* section dishes -------------------------------------- */

.section-dishes {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  position: relative;
}

.section-dishes .section-title .h1 {
  margin-bottom: 8px;
}

.section-dishes .section-content .content {
  display: flex;
  flex-wrap: wrap;
  background-color: #673ab7;
}

.section-dishes .section-content .content .m1 {
  width: 25%;
  height: 209px;
  background-color: #333;
  margin-right: 10px;
  margin-bottom: 10px;
}

.section-dishes .item:hover {
  text-decoration: none;
}

.section-dishes .item img {
  transform: scale(1.1);
  transition: transform 0.5s;
}

.section-dishes .item img:hover {
  transform: scale(1);
  transition: transform 0.5s;
}

.dishes-item-title1 {
  padding-top: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.dishes-item-title2 {
  font-size: 13px;
  font-weight: 400;
  color: #c6a68d;
}

@media only screen and (max-width: 500px) {
  .dishes-item-title2 {
    padding-bottom: 25px;
  }
}
.section-footer .l1 {
  border-bottom: 0.1px solid #c6c6c6;
  margin-top: 100px;
  margin-bottom: 100px;
}

.section-footer.white .l2 {
  margin-top: 50px;
  border-bottom: 0.1px solid #757575;
}

.section-footer .footer-text {
  padding-top: 20px;
  font-size: 13px;
  color: #a8a8a8;
  padding-bottom: 60px;
}

/* golfbag */

.section-content.width70 {
  width: 70%;
}

.inner.golfbag {
  background-image: url(../img/golfbag.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 70px);
  background-size: contain;
}

@media (max-width: 1260px) {
  .section-content.width70 {
    width: 100%;
  }
  .inner.golfbag {
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.7)
      ),
      url("../img/golfbag.png");

    background-position: calc(100% - 30px);
  }
}

/* addimg */

.addimg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  position: absolute;
}

.busimg {
  background-image: url(../img/bus.webp);
}

@media (max-width: 1260px) {
  .addimg {
    z-index: -1;
  }
}

/* section-special-issue ------------------------ */

.section-special_issue {
}

#special-issue2-btn {
  height: 100vh;
}

.section-special_issue .orgbackcolor .section-backimg .inner {
  top: 0;
  transform: translateY(0);
}

.section-special_issue .section-backimg.yangpyeong1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../data/yp/red1.webp);
}

.section-special_issue .orgbackcolor .section-backimg .wedding-title {
  position: absolute;
  background-color: #fff;
  border-left: 10px solid #c6a68d;
  text-align: left;
  padding: 25px 40px 22px;
  top: 180px;
}

/* 세미나 관련 */

.testColor {
  background-color: #009c90;
}

.section-backimg.semi1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../data/yp/semi1.webp);
  height: 100%;
}

.section-backimg.semi1 .inner {
  width: 1200px;
  border: none;
  transform: translateY(0%);
}

@media only screen and (max-width: 1260px) {
  .section-backimg.semi1 .inner {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }
}

@media (max-width: 650px) {
  .section-backimg.semi1 .inner {
    position: relative;
    width: 100%;
    margin: 0;
  }
}

.semi {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.semititle {
  margin-top: 200px;
  top: 180px;
  text-align: left;
  color: #fff;
  width: 100%;
}

.semititle .t1 {
  font-size: 2.7em;
  font-family: "GangwonEduPowerExtraBoldA", "Roboto", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", "sans-serif";
}

.semititle .t2 {
  color: #c6a68d;
  font-weight: 700;
  font-size: 1.1em;
}

.semititle .contextnumber {
  margin-top: 13px;
  font-size: 1.1em;
  justify-content: center;
  font-weight: 600;
}
.semititle .contextnumber b {
  background-color: #67071f;
  color: #fff;
  padding: 3px 5px;
  margin-right: 6px;
  border-radius: 4px;
  font-weight: 600;
}

.semitext {
  width: 600px;
  position: absolute;
  margin-top: 100px;
  right: 0;
  text-align: right;
  color: #ebebeb;
  font-weight: 500;
  font-size: 1em;
}

@media (max-width: 650px) {
  .semitext {
    width: 100%;
  }
}

.semi .grid {
  margin: 200px 0 100px;
}

.semi img {
  transform: scale(1.1);
}

/* 서서히 나타나는 스타일 -------------------------- */

.back-to-position {
  opacity: 0;
  transition: 1s;
}
.back-to-position.to-right {
  transform: translateX(-250px);
}
.back-to-position.to-left {
  transform: translateX(150px);
}
.back-to-position.to-bottom {
  transform: translateY(250px);
}

.show .back-to-position {
  opacity: 1;
  transform: translateX(0);
}

.show .back-to-position.delay-0 {
  transition-delay: 0s;
}
.show .back-to-position.delay-1 {
  transition-delay: 0.1s;
}
.show .back-to-position.delay-2 {
  transition-delay: 0.2s;
}
.show .back-to-position.delay-3 {
  transition-delay: 0.3s;
}
.show .back-to-position.delay-4 {
  transition-delay: 0.4s;
}
.show .back-to-position.delay-5 {
  transition-delay: 0.5s;
}
.show .back-to-position.delay-6 {
  transition-delay: 0.6s;
}

/* dishes page -------------------------------------------------- */

.mobiletitle.dishes {
  display: block;
  opacity: 1;
}

section.dishes-page {
}

section.dishes-page .item {
  display: flex;
  padding: 50px 0;
  position: relative;
}

section.dishes-page .item .img {
  /* width: 700px; */

  border-radius: 9px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* box-shadow: #000 3px 3px 4px; */
}

section.dishes-page .item .img img {
  width: 100%;
  border-radius: 9px;
  display: block;
}

section.dishes-page .item .content {
  padding-left: 20px;
}

section.dishes-page .item .content .title {
  border-radius: 5px;
  display: flex;
  color: #fff;
  padding: 20px 26px 8px;
  align-items: center;
  justify-content: space-between;
}

section.dishes-page .item .content .title.jj {
  background-color: #c6a68d;
}

section.dishes-page .item .content .title.ic {
  background-color: #1b3662;
}

section.dishes-page .item .content .title.yp {
  background-color: #67071f;
}

section.dishes-page .item .content .title .item-name {
}

section.dishes-page .item .content .title .item-name .h1 {
  font-size: 18px;
  font-weight: 800;
}
section.dishes-page .item .content .title .item-name .h2 {
  font-size: 13px;
  font-weight: 200;
}

section.dishes-page .item .content .title .location {
  font-size: 15px;
  font-weight: 500;
  align-items: center;
}

section.dishes-page .item .content .explanation {
  padding: 17px;
  width: 700px;
  line-height: 27px;
}

@media (max-width: 1260px) {
  section.dishes-page .item .content .explanation {
    width: 57vw;
  }
}

@media (max-width: 991px) {
  .header-inner .header-right.dishes {
    position: absolute;
    top: -10px;
    right: -12px;
  }
  .header-inner .header-right.dishes a {
    display: block;
  }
}

@media (max-width: 991px) {
  section.dishes-page .item {
    display: block;
  }

  section.dishes-page .item .content {
    padding-top: 20px;
    padding-left: 0;
  }

  section.dishes-page .item .content .explanation {
    width: 100%;
  }

  section.dishes-page .graybackcolor {
    background-color: #fff;
  }
}

@media (max-width: 600px) {
  section.dishes-page .item .content .explanation {
    font-size: 14px;
  }
}
section.dishes-page .section-backimg {
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  height: 200px;
  width: 100%;
  position: relative;
}

section.dishes-page .section-backimg .inner {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}

section.dishes-page .section-backimg.jeju1 {
  background-image: linear-gradient(
      rgba(198, 166, 141, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url(../img/backimgjeju_res.webp);
  width: 100%;
}

section.dishes-page .section-backimg.icheon1 {
  background-image: linear-gradient(rgba(27, 54, 98, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgicheon_res.webp);
  width: 100%;
}

section.dishes-page .section-backimg.yangpyeong1 {
  background-image: linear-gradient(rgba(103, 7, 31, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/backimgyangpyeong_res.webp);
  width: 100%;
}

/* 인덱스 버튼 (우측 하단) */
.index-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.index-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.index-button span:first-child {
  font-size: 24px;
  line-height: 1;
}

.index-button-text {
  font-size: 10px;
  margin-top: 2px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .index-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }

  .index-button span:first-child {
    font-size: 20px;
  }

  .index-button-text {
    font-size: 9px;
  }
}
