section{
	position: relative;
}

/* ===== 타이틀 이미지 슬라이드 ===== */
.swiper {
	position: fixed !important;
	top:0;
	left:0;
    width:100%; 
    height:275px;     /* 눈으로 보이는 image 영역 설정 */
    margin:0 auto;
    overflow: hidden;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 페이지네이션 */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, 
.swiper-pagination-fraction{
	bottom:50px !important;
}

.swiper-pagination-bullet{
	background:rgba(255, 255, 255, 0.9) !important;
}

.swiper-pagination-bullet-active{
	background:#fff !important;
}

/* ===== 화이트 박스 ===== */
article{
	display: block;
	padding-top:200px;
}

.white_box{
	position: relative;
	z-index:10;
	margin-top: 10px;
	margin-bottom:15px;
	padding:20px 15px;
	background:#fff;
	border-radius:15px;
	-webkit-appearance: none;
	box-shadow:var(--box-shadow-color);
	-webkit-box-shadow: var(--box-shadow-color);
	-moz-box-shadow:var(--box-shadow-color);
}

/* 샵 정보 */
.white_box .shop_info .title{
	font-weight: bold;
	margin-bottom:15px;
}

.white_box .shop_info .star_rating{
	display: flex;
	align-items: center;
	gap:3px;
}

.white_box .shop_info .star_rating img{
	width:13px;
}

.white_box .shop_info .star_rating .body{
	margin-left: 5px;
	margin-top: 3px;
}

.white_box .shop_info .store_info{
	margin-bottom:15px;
}

.white_box .shop_info .store_info .chip{
	margin-bottom:10px;
}

.white_box .shop_info .store_info p.body{
	margin-left:5px;
}

.white_box .shop_info .navi{
	display: flex;
	align-items: center;
	padding:0;
	list-style: none;
}

.white_box .shop_info .navi li{
	position: relative;
	width:100%;
	height:80px;
}

.white_box .shop_info .navi li:after{
	content:'';
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	display: block;
	width:1px;
	height:30px;
	background:var(--bg-color);
}

.white_box .shop_info .navi li:last-child:after{
	display: none;
}

.white_box .shop_info .navi li a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap:7px;
	width:100%;
	height:100%;
}

.white_box .shop_info .navi li a i{
	font-size:18px;
}

/* 예약 리스트 */
.white_box .book_list .chip{
	margin:10px 0 0;
}

.white_box .book_list .headline{
	font-size:15px;
}

.white_box .book_list .post-webzine{
	padding:0;
	list-style: none;
}

.white_box .book_list .post-webzine li{
	padding:15px 10px;
	border-bottom:1px solid #eee;
}

.white_box .book_list .post-webzine li .font-12{
	line-height: 1.5em;
}

.white_box .book_list .post-webzine li .before_after_wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:10px;
	margin-top:10px;
}

.white_box .book_list .post-webzine li .before_after_wrap .img_box{
	position: relative;
	width:100%;
	height:100px;
}

.white_box .book_list .post-webzine li .before_after_wrap .img_box img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius: 5px;
}

.white_box .book_list .post-webzine li .before_after_wrap .img_box .tag{
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: block;
	padding:2px 8px;
	color:#fff;
	background: rgba(0,0,0,0.5);
	border-radius: 30px;
	font-size:10px;
}

/* ===== 리뷰 ===== */

/* 리뷰 - nick_star_wrap */
.review .nick_star_wrap{
	display: flex;
	align-items: center;
	gap:10px;
}

/* 리뷰 - nick_star_wrap - star_box */
.review  .nick_star_wrap .star_box{
	display: flex;
	align-items: center;
	gap:2px;
	padding:0px;
	list-style: none;
}

.review  .nick_star_wrap .star_box li{
	padding:0 !important;
	border-bottom:0 !important;
}

.review  .nick_star_wrap .star_box li i{
	color:var(--point-color);
}

/* 리뷰 - 텍스트 */
.review .font-12{
	margin:10px 0;
	line-height: 1.5em;
}

/* 리뷰 - date */
.review .date{
	display: inline-flex;
	align-items: center;
	gap:5px;
	padding:5px 8px;
	background:#D6E0E8;
	border-radius: 5px;
}

.review .date i{
	color:#809FB8;
	font-size: 15px;
}

.review .date span{
	color:#809FB8;
	font-size: 11px;
}

/* ===== 예약하기 버튼 ===== */
.book_btn{
	width: 100%;
    height: 100%;
    margin-top: 20px;
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    border-radius: 3px;
    border:none;
	background-color: var(--main-color);
	-webkit-appearance: none;
	box-shadow:var(--box-shadow-color);
	-webkit-box-shadow: var(--box-shadow-color);
	-moz-box-shadow:var(--box-shadow-color);
}

/* ===== 뒤로가기 버튼 ===== */
.back_btn_box {
	position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    z-index:100;
}

.back_btn_box button {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: none;
    background: #FFFFFF;
    border: 1px solid #F4F4F4;
}

.back_btn_box button a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.back_btn_box button object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

