/* scrollReveal 요소를 미리 숨기기 */
html.sr .reveal {
  visibility: hidden;
}

#top_nav {
  width: 100%;
  padding: 10px 0;
  position: fixed;
  /* ★ 유리효과 핵심 */
  background: rgba(255, 255, 255, 0.45); /* 반투명 */
  backdrop-filter: blur(12px);           /* 유리처럼 흐림 효과 */
  -webkit-backdrop-filter: blur(12px);   /* 사파리 대응 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 살짝 라인 */
  z-index: 999;
}

/* 네비 구조 */
#top_nav .nav_wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* 왼쪽 메뉴 */
#top_nav .gnb {
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

#top_nav .gnb a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
}
.search_box {
  display: flex;
  align-items: center;
  width: 300px;
  background: #efefef;
  padding: 10px 20px;
  border-radius: 30px;
}

.search_box input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 15px;
  padding-right: 10px;
  position: relative;
  z-index: 999;
}

.search_box span {
  font-size: 20px;
  color: #777;
}

/* 오른쪽 아이콘 */
.icons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.icons span {
  font-size: 24px;
  cursor: pointer;
}

/* 메뉴 리스트 */
#top_nav .gnb ul {
  display: flex;
  gap: 60px;
  padding: 18px 0;
  list-style: none;
}

/* 메뉴 링크 스타일 */
#top_nav .gnb a {
  text-decoration: none;
  font-size: 14px;
  color: var(--font-main-black);
  letter-spacing: 0.04em;
}

#top_nav .gnb a:hover {
  opacity: 0.6;
}

/* hero 스타일 */
#hero {
  position: relative;
  height: 90vh;
}

.delay_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
  margin-bottom: 50px;

}

#hero .dot_grid {
  width: 100%;
  height: 80vh;
  margin: -50px auto 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
  position: absolute;
  z-index: 998;
  padding-top: 150px;


}

.dot_grid .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  /* opacity: 0;       
  transform: scale(0); */
}


.hero_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 250px;
  color: var(--font-main-black);
}

.hero_desc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero_btn {
  text-align: center;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2em;
}

.shopnow_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 30px;
  background-color: rgba(255, 98, 0, 0.8);
  color: var(--font-main-white);
  border-radius: 50px;
  margin-top: 20px;

}

/* ★ 인사말 색션 */
#info .info_title,
#info .info_img ._1,
#info .info_img ._2 {
  position: relative;
}

#info .info_title {
  font-size: 54px;
  color: #FF6200;
}

#info_2 {
  background: url(./img/section3/backgrounds.png) no-repeat center/cover;
  margin-top: 200px;
}

#info_2 .info_title {
  text-align: center;
  font-size: 30px;
  color: var(--font-main-black);
  margin-top: 150px;

}

#info_2 .info_title span {
  font-size: 18px;
}

.info_img {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 50px;
}

.info_img1 img {
  width: 650px;
}

.info_img2 {
  margin-top: 50px;
}

.info_img3 img {
  width: 550px;
}

.info_img4 {
  width: 450px;
  height: 550px;
  overflow: hidden;
  object-fit: cover;
  margin-left: 50px;
}

.info_hello {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  line-height: 2em;
  font-size: 16px;
  margin-top: 60px;
  color: var(--font-main-black);
}

.sign {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.dot_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.dot {
  width: 3px;
  height: 3px;
  background-color: #424242;
  border-radius: 50%;
}

/* 그리드 LP 색션 */
#grid_lp {
  padding: 50px;
}

#grid_lp .grid_box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

#grid_lp .grid {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50%;
}

#grid_lp .grid1,
#grid_lp .grid5,
#grid_lp .grid7,
#grid_lp .grid11 {
  aspect-ratio: auto;
  border-radius: 999px;
}

.grid1 {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
  position: relative;
  overflow: hidden;
  background: none;
}

.grid1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.grid2 {
  grid-row: 1;
  grid-column: 2;
  background: url(./img/section4/2.png) no-repeat center/cover;
}

.grid3 {
  grid-row: 1;
  grid-column: 3;
  background: url(./img/section4/round.png) no-repeat center/cover;
}

.grid4 {
  grid-row: 1;
  grid-column: 4;
  background: url(./img/section4/4.png) no-repeat center/cover;
}

.grid5 {
  grid-row: 1;
  grid-column: 5 / span 2;
  background: url(./img/section4/5.png) no-repeat center/cover;
}

.grid6 {
  grid-row: 2;
  grid-column: 2;
  background: url(./img/section4/round.png) no-repeat center/cover;
}

.grid7 {
  grid-row: 2;
  grid-column: 3 / span 2;
  background: no-repeat center/cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid7 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.grid7 video:hover {
  filter: brightness(50%);
}

.grid7 p {
  position: relative;
  z-index: 2;
  font-size: 60px;
  color: #e3e3e3;
}

.grid7 span {
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #e3e3e3;
}

/* LP Shop 큰 타원 */
.grid8 {
  grid-row: 2;
  grid-column: 5;
  background: url(./img/section4/7.png) no-repeat center/cover;
}

.grid9 {
  grid-row: 2;
  grid-column: 6;
  background: url(./img/section4/round.png) no-repeat center/cover;
}


.grid10 {
  grid-row: 3;
  grid-column: 1;
  background: url(./img/section4/8.png) no-repeat center/cover;
}

.grid11 {
  grid-row: 3;
  grid-column: 2 / span 2;
  background: no-repeat center/cover;
  position: relative;
  overflow: hidden;
}

.grid11 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


/* 가로 긴 타원 */
.grid12 {
  grid-row: 3;
  grid-column: 4;
  background: url(./img/section4/10.png) no-repeat center/cover;
}

.grid13 {
  grid-row: 3;
  grid-column: 5;
  background: url(./img/section4/round.png) no-repeat center/cover;
}

.grid14 {
  grid-row: 3;
  grid-column: 6;
  background: url(./img/section4/11.png) no-repeat center/cover;
}


@keyframes lp-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes lp-rotate-re {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* 12번 동그라미 계속 회전 */
#grid_lp .grid2,
.grid12 {
  animation: lp-rotate 8s linear infinite;
}

#grid_lp .grid2 {
  animation: lp-rotate 2s linear infinite;
}

#grid_lp .grid8,
.grid10 {
  animation: lp-rotate-re 5s linear infinite;
}

#grid_lp .grid3,
.grid6,
.grid9,
.grid13 {
  animation: lp-rotate 15s linear infinite;
}

/* ★ DJ픽 색션 */
/* 위/아래 줄 래퍼 */
#dj_pick .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
}

#dj_pick .title_wrap .shop_now {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #FF6200;
  gap: 20px;
  cursor: pointer;
}

#dj_pick .title_wrap .shop_now img {
  height: 8px;
}

#dj_pick .lp_wrap1,
#dj_pick .lp_wrap2,
#dj_pick .lp_wrap3 {
  display: flex;
  gap: 14px;
  font-family: 'pretendard';
  align-items: stretch;
}

#dj_pick .lp_wrap2,
#dj_pick .lp_wrap3 {
  margin-top: 24px;
}

/* 개별 앨범 카드 박스 */
#dj_pick .lp_box {
  flex: 1;
  background: #fff;
  border: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
}

/* 부모는 반드시 relative */
#dj_pick .lp_img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* 배경 이미지 두 장을 겹치기 위한 공통 설정 */
#dj_pick .lp_img .img_bf,
#dj_pick .lp_img .img_af {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
}

/* 실제 img 태그 공통 사이즈 */
#dj_pick .lp_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 기본 노출 이미지 (before) */
#dj_pick .lp_img .img_bf img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* 기본 숨김 이미지 (after) */
#dj_pick .lp_img .img_af img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover 시 이미지 전환 */
#dj_pick .lp_img:hover .img_bf img {
  opacity: 0;
}

#dj_pick .lp_img:hover .img_af img {
  opacity: 1;
}

/* 앨범 텍스트 영역 */
#dj_pick .lp_text {
  height: 40px;
  padding: 20px 30px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eee;
  background-color: rgba(190, 190, 190, 0.2);
  gap: 14px;
}

#dj_pick .lp_text:hover {
  font-weight: 500;
}

/* 앨범명 / 가격 등 세부 텍스트 넣을 때 예시 */
#dj_pick .lp_text .title {
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ◀ 두 줄만 보이게 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#dj_pick .lp_text .price {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

/* ★ 턴테이블 섹션 */
#turn_table {
  position: relative;
}

#turn_table .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#turn_table .title_wrap .shop_now {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #FF6200;
  gap: 20px;
  cursor: pointer;
}

#turn_table .title_wrap .shop_now img {
  height: 8px;
}

/* Swiper 컨테이너 */
#turn_table .slide {
  width: 100%;
}

/* 각 슬라이드 카드 */
#turn_table .turn_box {
  background: #fff;
  border: 1px solid #e3e3e3;
  cursor: pointer;
}

/* 앨범 이미지는 정사각형 */
#turn_table .turn_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: 1s;
}

/* hover 시 이미지 박스 안에서만 확대 */
#turn_table .turn_img:hover {
  background-size: 110%;
}

#turn_table .turn_text {
  height: 40px;
  padding: 20px 30px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eee;
  gap: 14px;
  color: #333;
    background-color: rgba(190, 190, 190, 0.2);
}

#turn_table .turn_text:hover {
  font-weight: 500;
}

#turn_table .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ◀ 두 줄만 보이게 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#turn_table .price {
  font-size: 16px;
  font-weight: 600;
}

#turn_table .img1 {
  background-image: url("./img/section6/1.png");
}

#turn_table .img2 {
  background-image: url("./img/section6/2.png");
}

#turn_table .img3 {
  background-image: url("./img/section6/3.png");
}

#turn_table .img4 {
  background-image: url("./img/section6/4.png");
}

#turn_table .img5 {
  background-image: url("./img/section6/5.png");
}

#turn_table .img6 {
  background-image: url("./img/section6/6.png");
}

#turn_table .img7 {
  background-image: url("./img/section6/7.png");
}

#turn_table .img8 {
  background-image: url("./img/section6/8.png");
}

#turn_table .img9 {
  background-image: url("./img/section6/9.png");
}

#turn_table .btn_box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1550px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

#turn_table .btn_prev,
#turn_table .btn_next {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: var(--font-main-white);
  background-color: rgba(173, 173, 173, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#turn_table .btn_prev .material-symbols-outlined,
#turn_table .btn_next .material-symbols-outlined {
  font-size: 26px;
}

/* =========================================
           (5) 뮤직 펍 섹션 (#music_pub)
 ========================================= */
#music_pub {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 250px;
}

/* --- 왼쪽: 텍스트 영역 컨테이너 --- */
.text_col {
  flex: 1;
  /* 남은 공간 차지 */
}

/* 타이틀 디자인 */
.section_title {
  margin-bottom: 60px;
  color: #252424;
}

.section_title p {
  font-size: 130px;
  line-height: 0.8;
  letter-spacing: -4px;
}

.section_title .sub_title {
  font-weight: 200;
  font-size: 90px;
  display: inline-block;
  line-height: 0.8;
}

/* 3단 설명 텍스트 (Flex) */
.desc_row {
  display: flex;
  gap: 30px;
  margin-bottom: 75px;
}

.desc_item {
  flex: 1;
  font-size: 16px;
  font-weight: 100;
  color: #555;
  word-break: keep-all;
}

/* 회색 라인 */
.gray_line {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

/* --- 오른쪽: 이미지 영역 --- */
.img_col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.pub_main_img {
  width: 100%;
  height: 410px;
}

.pub_main_img video{
  height: 100%;
}

/* 추천메뉴 아코디언 */
#reco_menu #menu_toggle {
  display: none;
}

/* 제목 영역 */
#reco_menu .menu_header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 40px auto 50px;
  color: #ff6200;
  font-size: 28px;
  font-weight: 500;
}

/* 제목 가운데 정렬 */
#reco_menu {
  text-align: center;
  margin-bottom: 20px;
}

/* 화살표 아이콘 회전 애니메이션 */
#reco_menu .arrow_icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

/* 체크되면 아이콘 180도 회전 */
#reco_menu #menu_toggle:checked+.menu_header .arrow_icon {
  transform: rotate(180deg);
}

/* 아코디언 바디 (처음엔 닫힘) */
#reco_menu .menu_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* 체크되면 열림 */
#reco_menu #menu_toggle:checked~.menu_body {
  max-height: 600px;
  /* 필요에 따라 더 크게 조정 */
}

/* 메뉴 카드 리스트 */
#reco_menu .menu_list {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0 40px;
}

/* 개별 카드 */
#reco_menu .menu_item {
  width: 180px;
  text-align: left;
  border-right: 1px solid #eee;
  padding-right: 24px;
}

#reco_menu .menu_item:last-child {
  border-right: none;
  padding-right: 0;
}

/* 번호, 텍스트 스타일 */
#reco_menu .menu_no {
  font-size: 32px;
  color: #d4d4d4;
  margin-bottom: 8px;
}

#reco_menu .menu_name_kr {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
    font-family: 'pretendard';
}

#reco_menu .menu_name_en {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
    font-family: 'pretendard';
}

/* 이미지 박스 (배경이미지로 사용 예시) */
#reco_menu .menu_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  /* 테스트용 */
}

/* 예시 - 각 카드별 이미지(원하는 경로로 변경) */
#reco_menu .menu_item:nth-child(1) .menu_img {
  background-image: url("./img/section8/1.png");
}

#reco_menu .menu_item:nth-child(2) .menu_img {
  background-image: url("./img/section8/2.png");
}

#reco_menu .menu_item:nth-child(3) .menu_img {
  background-image: url("./img/section8/3.png");
}

#reco_menu .menu_item:nth-child(4) .menu_img {
  background-image: url("./img/section8/4.png");
}

#reco_menu .menu_item:nth-child(5) .menu_img {
  background-image: url("./img/section8/5.png");
}


/* ★ All Menu 섹션 전체 래퍼 */
#all_menu {
  width: 100%;
  margin-top: 100px;
}

/* 토글 체크박스 숨기기 */
#all_menu #allmenu_toggle {
  display: none;
}

/* 헤더 (All Menu + 화살표) */
/* 제목 영역 */
#all_menu .allmenu_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin: 40px auto 40px;
  color: #ff6200;
  font-size: 28px;
  font-weight: 500;
}

#all_menu .allmenu_header .arrow_icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

/* 체크되면 화살표 회전 */
#all_menu #allmenu_toggle:checked+.allmenu_header .arrow_icon {
  transform: rotate(180deg);
}

/* 아코디언 바디 기본 닫힘 */
#all_menu .allmenu_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 70px;
}

/* 체크되면 열림 */
#all_menu #allmenu_toggle:checked~.allmenu_body {
  max-height: 2000px;
  /* 내용에 맞게 조절 */
}

/* ========================= */
/* 리스트 레이아웃           */
/* ========================= */

#all_menu .allmenu_groups {
  text-align: left;
  padding: 8px 0 40px;
}

/* 카테고리 블록 하나 */
#all_menu .menu_group {
  margin-bottom: 40px;
}

/* ONLY SEOUL VINYL / CRAFT BEER 헤더 */
#all_menu .group_header_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

#all_menu .group_title {
  width: 48%;
  font-size: 24px;
  font-weight: 400;
  color: #333;
  border-bottom: 1px solid #dbdbdb;
  padding: 10px;
  font-family: 'pretendard';
  letter-spacing: -1.5px;
}

/* COCKTAIL / SHOT / FOOD 헤더 */
#all_menu .group_header_single {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  border-bottom: 1px solid #dbdbdb;
  padding: 10px 0;
  margin-bottom: 20px;
  font-family: 'pretendard';
  letter-spacing: -1.5px;
}

/* 좌우 컬럼 */
#all_menu .group_cols {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

#all_menu .group_cols .col {
  width: 48%;
}

.menu_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 메뉴 한 줄 */
#all_menu .menu_row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  line-height: 3em;
}

#all_menu .menu_name {
  flex: 1;
  color: #575757;
  font-size: 18px;
  font-weight: 300;
}

#all_menu .menu_price {
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
    color: #575757;
}


#notice {
  width: 100%;
  margin: 80px auto;
}

/* 체크박스 숨기기 */
#notice #notice_toggle {
  display: none;
}

/* 헤더 */
#notice .notice_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  cursor: pointer;
}

#notice .notice_title {
  font-size: 40px;
  color: #252424;
}

#notice .arrow_icon {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

/* 열리면 화살표 회전 */
#notice #notice_toggle:checked+.notice_header .arrow_icon {
  transform: rotate(180deg);
}

/* 아코디언 바디 초기 상태 */
#notice .notice_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* 열렸을 때 */
#notice #notice_toggle:checked~.notice_body {
  max-height: 800px;
}

/* 내부 레이아웃 (두 컬럼) */
#notice .notice_wrap {
  display: flex;
  gap: 130px;
  padding: 40px 40px 0px 40px;
  justify-content: center;
}

/* 왼쪽 이미지 */
#notice .notice_img {
  width: 50%;
  aspect-ratio: 4 / 3;
  background: url("./img/section9/1.png") no-repeat center/cover;
}

/* 오른쪽 텍스트 */
#notice .notice_text {
  display: flex;
  width: 70%;
  line-height: 2;
  font-size: 18px;
}

#notice .notice_sub {
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 150px;
}

#directions {
  width: 100%;
  margin: 80px auto;
  padding-bottom: 40px;
}

/* 체크박스 숨기기 */
#directions #directions_toggle {
  display: none;
}

/* 상단 헤더 */
#directions .directions_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

#directions .directions_title {
  font-size: 40px;
}

#directions .arrow_icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

/* 체크되면 화살표 위로 */
#directions #directions_toggle:checked+.directions_header .arrow_icon {
  transform: rotate(180deg);
}

/* 아코디언 기본 닫힘 */
#directions .directions_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* 열렸을 때 */
#directions #directions_toggle:checked~.directions_body {
  max-height: 800px;
  /* 내용에 맞게 조절 */
}

/* 내용 래퍼 */
#directions .directions_wrap {
  padding-top: 40px;
}

/* 지도 placeholder 박스 */
#directions .map_box {
  width: 100%;
  height: 380px;
  background-color: #f5f5f5;
  /* 지도 영역 색깔 */
  border: 1px solid #eee;
}

/* 주소/설명 텍스트 */
#directions .directions_text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}

#directions .directions_text .address {
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 6px;
}

#directions .directions_text .desc{
  font-size: 18px;
}