﻿ 
/* 202511.06 신규 수정사항으로 인해 css  추가함 -hss */

<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400; rel="stylesheet">
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" rel="stylesheet">

  /* 페이지 전체 기본 스타일 설정 */
    body {
    font-family: "Noto Sans KR";
  }
 
  /* 공통: 살짝 부드럽게 보이게 하려고 */
  .soft-text {
    /* 아주 얇은 그림자(가벼운 블러)로 선명도를 낮춤 */
    text-shadow: 0 var(--soft-shadow-y) var(--soft-shadow-blur) var(--soft-shadow-color);
    /* 필요 시 더 부드럽게 하려면 아래 filter 주석 해제 (주의: 성능/가독성 영향) */
     filter: blur(0.15px); 
    /* 글자 굵기가 너무 강하면 약간 낮춤 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* 제목 */
  .title {
    font-family:  "Noto Sans KR", Arial;
    font-size: 1.1rem;
    font-weight: 600;    
    letter-spacing: -0.04em; line-height: 1.05;
    /* 제목은 약간 더 강한 그림자 대신 투명도를 이용해 '선명하지 않게' 보이게 */
    color: rgba(17,17,17,0.95);
  }

  /* 소제목 */
  .subtitle {
   font-family: "Noto Sans KR";
   font-size: 0.98rem;    /* 폰트 크기 작게 */
   font-weight: 400;          /* 살짝 두껍게*/
   margin: 0 0 1.5rem 0;
   letter-spacing: -0.08em;   /* 글자 가로 폭 줄임 */
   color: rgba(34,34,34,0.94);
   text-shadow: 0 0.3px 1px rgba(0,0,0,0.06); /* 살짝 진한 그림자 */
  } 


  .btn, .btn:link, .btn:visited {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;font-family: "Noto Sans KR";
   font-size: 0.96rem;
   font-weight: 500;
   text-decoration: none; /* 링크 밑줄 제거 */
   letter-spacing: -0.07em;   /* 글자 가로 폭 줄임 */
   cursor: pointer;
   user-select: none;
   border: none;
   transition: all 0.25s ease;
   padding: 0.5rem 1rem;  /* 위아래여백 */
   color: #fff; /*폰트색상*/
   background: #13294B; /*버튼색상*/
   border-radius: 5px !important; /*라운드*/
   width: 337px;      
   justify-content: center; /* 텍스트 중앙 정렬 */
  }


/* ===== 골프장 설명 부분 시작 */
/* 배경 이미지 세팅 ===== */
.gr_hero_bg { /*이천 내용뺀 배경 이미지*/
  position: relative;
  width: 940px;
  height: 132px;  /* 이미지 높이와 동일 */
  background-image: url('../images/content/business/img_golf_gr_1_1.gif'); 
  background-size: contain;/* 섹션에 맞춤, 늘어나도 비율 유지 */
  background-repeat: no-repeat;
  background-position: center;
}

.gc_hero_bg { /*청평 내용뺀 배경 이미지*/
  position: relative;
  width: 940px;
  height: 132px;  /* 이미지 높이와 동일 */
  background-image: url('../images/content/business/img_golf_gc_1_1.gif'); 
  background-size: contain;/* 섹션에 맞춤, 늘어나도 비율 유지 */
  background-repeat: no-repeat;
  background-position: center;
}

.cs_hero_bg { /*고객센터  내용뺀 배경 이미지*/
  position: relative;
  width: 940px;
  height: 132px;  /* 이미지 높이와 동일 */
  background-image: url('../images/content/txt_qna_1.gif'); 
  background-size: contain;/* 섹션에 맞춤, 늘어나도 비율 유지 */
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -25px; /* 배경박스를 위로 끌어올림 */
}

/* 설명 내용 박스 */
.hero {
  display: flex;
  align-items: center;       /* 세로 중앙 정렬 */
  justify-content: flex-start; /* 왼쪽 정렬 */
  overflow: hidden;
  text-align: left;
  margin-bottom: 2rem; /* 하단 여백 추가, 필요에 따라 조절 */
}

/* =====  내용 리스트 ===== */
.bullet-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 항목 위/아래 여백 */
  padding-left: 2.5rem;  /* 전체 오른쪽으로 이동 */
}

.bullet-list_cs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 항목 위/아래 여백 */
  padding-left: 8.5rem;  /* 전체 오른쪽으로 이동 */
}
/* 내용 라인 정렬 */
.bullet-item {
  display: flex;
  align-items: center; /* 세로 가운데 정렬 */
}

/*빨간 점 표시 */
.bullet-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: red;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/*골프장 설명 내용 부분  */
.bullet-text {
  font-family: "Noto Sans KR";
  font-size: 0.95rem;    /* 폰트 크기 작게 */
  /*color: #000; *//* 배경 이미지 위에서 가독성을 위해 흰색 */
  color: rgba(34,34,34,0.94);  /* 폰트색상.. 흰색보다 조금 흐리게함 */
  line-height: 0.5; /*커지면 점과 글자의 사이가 벌어짐*/
  letter-spacing: -0.07em;   /* 글자 가로 폭 줄임 */
  font-weight: 400;          /* 글자 두께...  살짝 얇게 400, 보통 500 두껍게 600 등*/
}

/*탭사이즈가 달라서 별도로 만듬 */
ul.tabs { height:45px;}
ul.tabs li { width:262px; height:45px; float:left; margin-left:1px; cursor:pointer}
ul.tabs li.golf1_2 { background:url(../images/content/tab/tab_biz_golf1_1.gif) no-repeat 0 0} /* 골프레저>청평마이다스 */
ul.tabs li.golf2_2 { background:url(../images/content/tab/tab_biz_golf2_1.gif) no-repeat 0 0} /* 골프레저>이천마이다스 */
ul.tabs li.active { width:262; float:left; background-position:0 100%; }
ul.tabs li.active a:link { width:262; float:left; background-position:0 100% }