.com_title {
  text-align: center;
}
.com_title h3 {
  font-size: 26px;
  font-weight: 400;
  color: #003e2f;
  letter-spacing: 13px;
}
.com_title h3 strong {
  font-weight: 700;
}
.com_title h2 {
  font-size: 46px;
  font-weight: 700;
  color: #003e2f;
  margin: 32px 0 90px;
}
.com_title h2 span {
  font-weight: 400;
}

.visual {
  width: 100%;
  height: 100vh;
  background: url("../image/visual_bg.png") no-repeat center bottom;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;

  animation: load_bg 2s both;
  animation-delay: 0.2s;
}

.scroll-indicator {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #333;

  display: flex;
  justify-content: center;
  align-items: center;
  /*   position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999; */
}
.scroll_line {
  width: 1px;
  height: 120px;
  background: #000;
  margin-top: 16px;
  position: relative;
}
.scroll_line::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.visual .title {
  /* position: absolute;
  right: 0;
  top: 0; */
  margin: 11% 73% 0 0;
  font-family: "Nanum Gothic", sans-serif;
}
.visual .title span {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  display: block;

  animation: load_L 1.5s both;
  animation-delay: 1s;
}
.visual .title h2 {
  font-size: 56px;
  line-height: 62px;
  font-weight: 300;
  color: #fff;
  margin: 28px 0;

  animation: load_L 1.5s both;
  animation-delay: 1.2s;
}
.visual .title h2 strong {
  font-weight: 800;
  color: #003e2f;
}
.visual .title p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;

  animation: load_L 1.5s both;
  animation-delay: 1.4s;
}
.visual .title .visual_logo {
  width: 390px;
  margin-top: 38px;

  animation: load_L 1.5s both;
  animation-delay: 1.6s;
}

.visual_cg {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 74%;

  animation: load_T 1.5s both;
  animation-delay: 1.6s;
}

/* premium */
.premium {
  padding: 150px 0;
}
/* .premium .title {
  text-align: center;
}
.premium .title h3 {
  font-size: 26px;
  font-weight: 400;
  color: #003e2f;
  letter-spacing: 13px;
}
.premium .title h3 strong {
  font-weight: 700;
}
.premium .title h2 {
  font-size: 46px;
  font-weight: 700;
  color: #003e2f;
  margin: 32px 0 90px;
}
.premium .title h2 span {
  font-weight: 400;
} */

.premium .inner {
  width: 76%;
  /* height: 950px; */
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: pink; */
}
.premium .items {
  width: 56.2%;
}
.premium .items .dummy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #003e2f;
}
.premium .items .dummy.dummy01 {
  border-top: 1px solid #003e2f;
}
.premium .dummy .item {
  width: 100%;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.premium .dummy .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.8s;
  opacity: 0;
  width: 30%;
  height: 100%;
  display: block;
  background: rgba(0, 62, 46, 0.25);
}
.premium .dummy02 .item::after,
.premium .dummy04 .item::after,
.premium .dummy06 .item::after {
  background: rgba(185, 159, 111, 0.25);
}

.premium .dummy .item:hover::after,
.premium .dummy.selected .item::after {
  width: 100%;
  opacity: 1;
}
.premium .dummy .item div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 32px;
}
.premium .dummy .item .pre_icon {
  width: 44px;
}
.premium .dummy .item .txt {
  align-items: flex-start;
  flex-direction: column;
  margin-left: 32px;
}
.premium .dummy .item .txt h3 {
  font-size: 24px;
  font-weight: 700;
  color: #003e2f;
}
.premium .dummy .item .txt h3 span {
  font-size: 20px;
  font-weight: 400;
  color: #333;
}
.premium .dummy .item .txt h3 b {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.premium .dummy.dummy02 .item .txt h3,
.premium .dummy.dummy04 .item .txt h3,
.premium .dummy.dummy06 .item .txt h3 {
  color: #b99f6f;
}
.premium .dummy .item .txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #4d4d4f;
  margin-top: 14px;
}
.premium .dummy .item .pre_point {
  margin-right: 60px;
}

.pre_item {
  width: 36%;
  height: 760px;
  position: relative;

  box-shadow: 4px 5px 15px rgba(0, 0, 0, 0.3);
}
.pre_item .sauce {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  transition: opacity 1.2s ease;
  opacity: 0;
  pointer-events: none;
  /* display: none; */
  visibility: hidden;
  transition: all 0.3s ease;
}
.pre_item .sauce.active {
  z-index: 5000;
  opacity: 1;
  pointer-events: auto;
  z-index: 5000;
  /* display: block; */
  opacity: 1;
  visibility: visible;
}
.pre_item .sauce.sauce01 {
  background: url("../image/pre_item01.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce02 {
  background: url("../image/pre_item02.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce03 {
  background: url("../image/pre_item03.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce04 {
  background: url("../image/pre_item04.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce05 {
  background: url("../image/pre_item05.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce06 {
  background: url("../image/pre_item06.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce.sauce07 {
  background: url("../image/pre_item07.png") no-repeat center center;
  background-size: cover;
}
.pre_item .sauce .img_cat {
  top: 12px;
}
.pre_item .sauce.sauce05 .img_cat ,
.pre_item .sauce.sauce06 .img_cat ,
.pre_item .sauce.sauce07 .img_cat {
  color: #333;
}

.pre_point01 {
  position: absolute;
  left: -1%;
  top: 7%;
  width: 13%;
}
.pre_point02 {
  position: absolute;
  bottom: -18%;
  right: -50%;
  z-index: 6666;
  width: 135%;
}

/* banner */
.banner {
  height: 650px;
  background: url("../image/banner_bg.png") no-repeat top left;
  background-size: cover;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.banner .title {
  margin-right: 14vw;
}
.banner .title .top {
}
.banner .title .top h2 {
  font-size: 36px;
  font-weight: 400;
  color: #4d4d4f;
}
.banner .title .top h2 strong {
  font-size: 46px;
  font-weight: 700;
  color: #003e2f;
  display: block;
  margin: 16px 0 32px;
}
.banner .title .top p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #4d4d4f;
}
.banner .title .top p span {
  font-weight: 700;
}

.banner .title .line {
  width: 20px;
  height: 2px;
  background: #4b4948;
  display: block;
  margin: 32px 0;
}

.banner .title .btm {
}
.banner .title .btm h3 {
  font-size: 26px;
  font-weight: 400;
  color: #4d4d4f;
}
.banner .title .btm h3 span {
  font-weight: 700;
  color: #003e2f;
}
.banner .title .btm p {
  font-size: 18px;
  font-weight: 400;
  color: #4d4d4f;
  margin: 16px 0 12px;
}
.banner .title .btm strong {
  font-size: 22px;
  font-weight: 700;
  color: #003e2f;
  display: block;
}

.fix_bnner {
  position: absolute;
  top: 24%;
  left: 56%;
  transform: translateX(-50%);
  text-align: center;
  /* box-shadow: 4px 5px 15px rgba(0, 0, 0, 0.3); */
}
.fix_bnner .banner_item {
  /* width: 140px; */
  width: 200px;
  display: block;
  margin: 0 auto;
  /* margin: 32px 0 16px; */
}
.fix_bnner h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: #4d4d4f;
  margin-top: 16px;
}
.fix_bnner h4 strong {
  font-size: 26px;
  font-weight: 700;
  color: #003e2f;
  display: block;
}

/* location */
.location {
  padding: 140px 0;
}
.location .inner {
  width: 85.2%;
  /* max-width: 1620px; 추가 가능 (선택사항) */
  margin: 0 auto;
}
.location .map {
  width: 100%;
  /* border: 1px solid #003e2f; */
  box-sizing: border-box;
}
.root_daum_roughmap .cont,
.wrap_controllers {
  display: none;
}
.location .map .root_daum_roughmap {
  width: 100% !important; /* 중요 */
}

.location .items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
}
.location .items .item {
  width: 370px;
}
.location .items .item .loc_img {
  width: 100%;
  height: 224px;
  position: relative;
}
.location .items .item .loc_img.loc_img01 {
  background: url("../image/loc_img01.png") no-repeat center center;
  background-size: cover;
}
.location .items .item .loc_img.loc_img02 {
  background: url("../image/loc_img02.png") no-repeat center center;
  background-size: cover;
}
.location .items .item .loc_img.loc_img03 {
  background: url("../image/loc_img03.png") no-repeat center center;
  background-size: cover;
}
.location .items .item .loc_img.loc_img04 {
  background: url("../image/loc_img04.png") no-repeat center center;
  background-size: cover;
}

.location .items .item .loc_txt {
  text-align: center;
}
.location .items .item .loc_txt h3 {
  font-size: 26px;
  font-weight: 400;
  color: #003e2f;
  margin: 36px 0 20px;
}
.location .items .item .loc_txt h3 strong {
  font-weight: 700;
  color: #003e2f;
}
.location .items .item .loc_txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #4d4d4f;
}
@media all and (min-width: 1250px) and (max-width: 1770px) {
  .com_title {
  }
  .com_title h3 {
    font-size: 22px;
    letter-spacing: 10px;
  }
  .com_title h3 strong {
  }
  .com_title h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 22px 0 62px;
  }
  .com_title h2 span {
  }

  /* visual */

  .visual .title {
    margin: 15% 71% 0 0;
    font-family: "Gothic A1", sans-serif;
  }
  .visual .title span {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
  }
  .visual .title h2 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 300;
    color: #fff;
    margin: 28px 0;
  }
  .visual .title h2 strong {
    font-weight: 800;
    color: #fff;
  }
  .visual .title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
  }
  .visual .title .visual_logo {
    margin-top: 38px;
  }

  .visual_cg {
    position: absolute;
    left: 10px;
    bottom: -52px;
    width: 63%;
  }

  /* premium */
  .premium {
    padding: 120px 0;
  }

  .premium .inner {
    width: 90%;
  }
  .premium .items {
    width: 55%;
  }
  .premium .items .dummy {
  }
  .premium .items .dummy.dummy01 {
  }
  .premium .dummy .item {
    width: 100%;
    padding: 32px 0;
  }
  .premium .dummy .item div {
    margin-left: 52px;
  }
  .premium .dummy .item .pre_icon {
  }
  .premium .dummy .item .txt {
    margin-left: 62px;
  }
  .premium .dummy .item .txt h3 {
    font-size: 24px;
  }
  .premium .dummy .item .txt p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 11px;
  }
  .premium .dummy .item .pre_point {
    margin-right: 52px;
  }

  .pre_item {
    width: 36%;
    height: 700px;
  }
  .pre_item .sauce {
  }
  .pre_item .sauce.active {
  }

  .pre_point01 {
    top: 10%;
    width: 13%;
  }
  .pre_point02 {
    bottom: -10%;
    right: -20%;
    z-index: 6666;
    width: 110%;
  }

  /* banner */
  .banner {
    height: 500px;
    background: url("../image/banner_bg.png") no-repeat top left;
    background-size: cover;

    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .banner .title {
    margin-right: 10vw;
  }
  .banner .title .top {
  }
  .banner .title .top h2 {
    font-size: 32px;
  }
  .banner .title .top h2 strong {
    font-size: 42px;
    margin: 12px 0 26px;
  }
  .banner .title .top p {
    font-size: 16px;
    line-height: 26px;
  }
  .banner .title .top p span {
  }
  .banner .title .line {
    margin: 26px 0;
  }
  .banner .title .btm {
  }
  .banner .title .btm h3 {
    font-size: 24px;
  }
  .banner .title .btm h3 span {
    font-weight: 700;
  }
  .banner .title .btm p {
    font-size: 16px;
    margin: 16px 0 12px;
  }
  .banner .title .btm strong {
    font-size: 20px;
  }

  /* location */
  .location {
    padding: 120px 0;
  }
  .location .inner {
    width: 90%;
  }
  .location .map {
  }
  .location .map .root_daum_roughmap {
  }

  .location .items {
    margin-top: 36px;
  }
  .location .items .item {
    width: 310px;
  }
  .location .items .item .loc_img {
    height: 220px;
  }
  .location .items .item .loc_txt {
  }
  .location .items .item .loc_txt h3 {
    margin: 26px 0 12px;
  }
  .location .items .item .loc_txt h3 strong {
  }
  .location .items .item .loc_txt p {
    font-size: 15px;
    line-height: 22px;
  }
}
