@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::after, ::before{
	box-sizing: border-box;
}

:root{
--cream:#FFF9F0;
--ink:#2B2420;
--ink-soft:#6B5F54;
--line:#EAE1D3;
--yellow:#FFC23B;
--blue:#3B82F6;
--red:#FF4747;
--card:#FFFFFF;
--accent-warm:#FF8A4C;
--radius:18px;
}
html{
	margin:0;
	padding:0;
	font-size:14px;
	font-family: 'Nanum';
}
body{
	margin:0;
	padding:0;
	font-family:"Pretendard","Apple SD Gothic Neo","Noto Sans KR",sans-serif;
	background:var(--cream);
	color:var(--ink);
	line-height:1.7;
	-webkit-font-smoothing:antialiased;
	padding-top:138px;
	padding-bottom: 130px;
}
div, ul, li, a{
	box-sizing: border-box;
}
form{
	margin:0;
}
button{
	cursor:pointer;
}
ul{
	list-style:none;
	padding:0;
	margin:0;
}
input:not([type="image" i]) {
    box-sizing: border-box;
}
input[type="text" i] {
    padding: 1px 2px;
}
input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
}
@keyframes infi_slide_ac1{
	0% {
		transform: translate(0);
	}
	100% {
		transform: translate(-100%);
	}
}
@keyframes infi_slide_ac2{
	0% {
		transform: translate(100%);
	}
	100% {
		transform: translate(0);
	}
}
.txt_left{
	text-align:left;
}
.txt_center{
	text-align:center;
}
.txt_right{
	text-align:right;
}
.main_wrap{
	width:100%;
}
.contents_wrap_1800{
	max-width:1800px;
	width:100%;
	margin:auto;
}
.contents_wrap_1600{
	max-width:1600px;
	width:100%;
	margin:auto;
}
.contents_wrap_1400{
	max-width:1400px;
	width:100%;
	margin:auto;
}
.contents_wrap_1200{
	max-width:1200px;
	width:100%;
	margin:auto;
}
.contents_wrap_1000{
	max-width:1000px;
	width:100%;
	margin:auto;
}
/* 페이징 */
.tb_bottom{
	width:100%;
	text-align:center;
	padding:10px 0;
	line-height: 1.1;
	font-size:14px;
}

.tb_bottom .paging_arrow {
    display: inline-block;
    padding: 15px 0px;
    color: #888;
    width: 45px;
    height: 45px;
    text-align: center;
}
.tb_bottom .paging_arrow i {
	line-height: 1.2;
}
.tb_bottom .paging_num{
	display: inline-block;
    padding: 15px 0px;
    color: #888;
    width: 45px;
    height: 45px;
    text-align: center;
	text-decoration:none;
}

.tb_bottom .active_page {
    color: #000;
	font-weight:800;
}
/* 페이지 */
.top_img{
	background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 500px;
    position: relative;
}
.page_wrap{
	width:100%;
}
.page_wrap .page_sub{
	margin:30px 0;
	padding:15px;
	font-size:30px;
	font-weight:400;
	border-bottom:2px solid #555;
}
.page_wrap .top_contents{
	width:100%;
	margin:30px 0 15px;
}
.page_wrap .top_contents img{
	max-width:100%;
}
.page_wrap .dog_cat_wrap{
	display:inline-block;
	width:100%;
	margin:15px 0;
}
.page_wrap .dog_cat_wrap .dog_contents{
	float:left;
	width:calc(50% - 2px);
	margin-right:2px;
}
.page_wrap .dog_cat_wrap .dog_contents img{
	max-width:100%;
}
.page_wrap .dog_cat_wrap .cat_contents{
	float:left;
	width:calc(50% - 2px);
	margin-left:2px;
}
.page_wrap .dog_cat_wrap .cat_contents img{
	max-width:100%;
}
.page_wrap .bottom_contents{
	width:100%;
	margin:15px 0 30px;
}
.page_wrap .bottom_contents img{
	max-width:100%;
}
/* 푸터 */
.footer{
	width:100%;
	padding:20px 0;
	background:#D0413E;
}
.footer .menu{
	display:inline-block;
	width:100%;
	padding:10px;
}
.footer .menu a{
	font-size:14px;
	color:#fff;
	text-decoration:none;
	margin-right:30px;
}
.footer .info{
	display:inline-block;
	width:100%;
	padding:10px;
	font-size:14px;
	color:#fff;
	line-height:1.7;
}
.footer .info address{
	font-style: normal;
}
.footer .info span{
	display:inline-block;
	margin-right:10px;
}
.footer .copyright{
	display:inline-block;
	width:100%;
	padding:10px;
	font-size:14px;
	color:#fff;
}
/* ===================== 하단 고정 버튼바 ===================== */
.fixed-bottom-bar{
	width:100%;
	position:fixed;
	left:0; right:0; bottom:0;
	z-index:500;
	background:var(--cream);
	border-top:1px solid var(--line);
	padding:10px 16px calc(10px + env(safe-area-inset-bottom));
	box-shadow:0 -6px 18px rgba(0,0,0,0.06);
	/*box-shadow: 1px 5px 5px #ddd;*/
}
.fixed-bottom-bar .row-top{
	display:flex;
	gap:8px;
	margin-bottom:8px;
}
.fixed-bottom-bar a.btn{
	flex:1;
	display:flex;
	align-items:center;
	justify-content:center;
	height:48px;
	border-radius:30px;
	font-size:20px;
	font-weight:800;
	color:#fff;
	transition:transform .12s ease, filter .12s ease;
	text-decoration:none;
}
.fixed-bottom-bar a.btn:active{
	transform:scale(0.97);
	filter:brightness(0.95);
}
.btn-dog{ background:#F89285;}
.btn-cat{ background:#F89285;}
.btn-call{
	width:100%;
	background:var(--red);
	height:50px;
	border-radius:30px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-weight:800;
	font-size:20px;
	gap:8px;
	text-decoration:none;
}
.btn-call svg{width:18px; height:18px;}

/* focus visibility */
a:focus-visible, summary:focus-visible{
	outline:3px solid var(--blue);
	outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
	*{transition:none !important;}
}

@media (max-width:380px){
	header.intro h1{font-size:22px;}
	.process-step{min-width:80px; font-size:12.5px;}
}

@media (min-width:760px){
	.fixed-bottom-bar{
	  max-width:968px;
	  left:50%;
	  transform:translateX(-50%);
	  border-radius:24px 24px 0 0;
	}
}
/* 헤드2 */
.header2{
	width:100%;
	/*
	border-bottom:1px solid #ddd;
	*/
	box-shadow:1px 2px 3px #ddd;
	background:#fff;
	overflow:hidden;
	position:fixed;
	top:0;
	z-index:2000;
}
.header2 .logo_wrap{
	width: 100%;
    padding: 15px 10px 7px;
	text-align:center;
}
.header2 .logo_wrap .logo_wrap_inner{
	position:relative;
}
.header2 .logo_wrap .left{
	position:absolute;
	left:0;
}
.header2 .logo_wrap .left ul{
}
.header2 .logo_wrap .left ul li{
	float:left;
}
.header2 .logo_wrap .left ul li a{
    display: inline-block;
	font-size:16px;
	font-weight:600;
	color:#666;
	padding: 15px;
	text-decoration:none;
}
.header2 .logo_wrap .left ul li a.btn_event{
	color:#D0413E;
}
.header2 .logo_wrap .logo{
	margin:auto;
	width:120px;
}
.header2 .logo_wrap .logo img{
	width:100%;
}
.header2 .logo_wrap .right{
	position:absolute;
	top:0;
	right:0;
}
.header2 .logo_wrap .right ul{
}
.header2 .logo_wrap .right ul li.btn_kakao_plus{
	float:right;
}
.header2 .logo_wrap .right ul li.btn_idpet{
	float:right;
}
.header2 .logo_wrap .right ul li a{
	display:inline-block;
	font-size:16px;
	font-weight:600;
	color:#666;
	padding: 15px;
	text-decoration:none;
	
}
.header2 .logo_wrap .right ul li.btn_kakao_plus a{
	color:#ebd50c;
}
.header2 .logo_wrap .right ul li.btn_idpet a{
	color:#ed6f00;
	line-height:1;
	font-size:18px;
	padding-top:10px;
	padding-bottom:20px;
}
.header2 .logo_wrap .right ul li.btn_idpet a .idpet_left{
	float:left;
	font-size:34px;
	padding-right:10px;
}
.header2 .logo_wrap .right ul li.btn_idpet a .idpet_right{
	float:right;
}
.header2 .logo_wrap .right ul li.btn_idpet a .cont{
	font-size:14px;
	font-weight:400;
}
.header2 .menu{
	width:100%;	
	border-top:1px solid #ddd;
	position:relative;
}
.header2 .menu .menu_inline{
	margin:auto;
}
.header2 .menu .ul_1dept{
	display: flex;
    justify-content: center;
	margin:auto;
	overflow-x:auto;
}
.header2 .menu .ul_1dept > li{
	flex-shrink:0;
}
.header2 .menu .ul_1dept > li > a{
	text-decoration:none;
	padding:15px 20px;
	display:inline-block;
	color:#555;
	font-weight:600;
	position:relative;
}
.header2 .menu .ul_1dept > li:hover > a{
	color:#D0413E;
}
.header2 .menu .ul_1dept > li > a:after{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	content: '';
	border-bottom: 3px solid #D0413E;
	transform: scaleX(0);
	transition: transform 300ms ease-in-out; 
}
.header2 .menu .ul_1dept > li:hover > a:after{
	transform: scaleX(1);
}
.header2 .menu .ul_1dept > li.menu_active > a{
	color:#D0413E;
}
.header2 .menu .ul_1dept > li.menu_active > a:after{
	transform: scaleX(1);
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap{
	display:none;
	position:fixed;
	left:0;
	width:100%;
	background-color: #fff;
	border-top: 1px solid #ddd;
    box-shadow: 1px 2px 3px #ddd;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth{
	display: flex;
    justify-content: center;
	margin:auto;
	overflow-x:auto;
	width:1000px;
}

.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li{
	/*width:400px;*/
	width:250px;
	padding:15px 0 30px;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a{
	color: #999;
	text-decoration:none;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .img_wrap{
	width:100%;
	padding:15px 15px 0 15px;
	margin:0;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .img_wrap img{
	width:100%;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .img_wrap .on_img{
	display:none;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .img_wrap .off_img{
	display:block;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .cont{
	width:100%;
	padding:15px;
	margin:0;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .cont p{
	width:100%;
	margin:0;
	text-align:center;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .cont p.sub{
	color: #333;
	font-weight:600;
	font-size:16px;
	margin-bottom:3px;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .cont p.sub2{
	font-size:14px;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li > a .cont p.arrow{
	font-size:20px;
}
.header2 .menu .ul_1dept > li:hover .menu_2depth_wrap{
	display:block;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li:hover > a{
	color:#333;
	font-weight:600;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li:hover > a .cont p.sub{
	/*color:#D0413E;*/
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li:hover > a .img_wrap .on_img{
	display:block;
}
.header2 .menu .ul_1dept > li .menu_2depth_wrap .ul_2depth > li:hover > a .img_wrap .off_img{
	display:none;
}
.header2 .menu .ul_1dept > li.menu_active .menu_2depth_wrap .ul_2depth > li.active_2depth > a{
	color:#333;
	font-weight:600;
}
.header2 .menu .ul_1dept > li.menu_active .menu_2depth_wrap .ul_2depth > li.active_2depth > a .cont p.sub{
	/*color:#D0413E;*/
}
.header2 .menu .ul_1dept > li.menu_active .menu_2depth_wrap .ul_2depth > li.active_2depth > a .img_wrap .on_img{
	display:block;
}
.header2 .menu .ul_1dept > li.menu_active .menu_2depth_wrap .ul_2depth > li.active_2depth > a .img_wrap .off_img{
	display:none;
}
/* 모바일 헤드2 */
.mobile_header2{
	width:100%;
	display:none;
	position:fixed;
	z-index:1000;
	background:#fff;
	top:0;
	box-shadow:1px 2px 3px #ddd;
}
.mobile_header2 .logo{
	width: 140px;
    height: 60px;
    padding: 7px 15px 6px;
    position: absolute;
    left: calc(50% - 70px);
    top: 0;
}
.mobile_header2 .logo img{
	width:100%;
}
.mobile_header2 .hamberger_menu{
	position:relative;
	float:right;
	width:60px;
	height:60px;
	cursor:pointer;
}
.mobile_header2 .hamberger_menu .line1{
	position:absolute;
	top:30%;
	left:25%;
	width:50%;
	border:1px solid #444;
	border-radius:5px;
}
.mobile_header2 .hamberger_menu .line2{
	position:absolute;
	top:calc(50% - 1px);
	left:25%;
	width:50%;
	border:1px solid #444;
	border-radius:5px;
}
.mobile_header2 .hamberger_menu .line3{
	position:absolute;
	bottom:30%;
	left:25%;
	width:50%;
	border:1px solid #444;
	border-radius:5px;
}
.mobile_menu2{
	position:fixed;
	top:0;
	right:-280px;
	width:280px;
	height:100vh;
	background:#fff;
	z-index:100001;
	box-shadow:1px 2px 4px #000;
}
.mobile_menu2 .head{
	width:100%;
	height:60px;
}
.mobile_menu2 .head .btn_close{
	width:60px;
	height:60px;
	font-size:20px;
	border:none;
	background:none;
	float:right;
	cursor:pointer;
}
.mobile_menu2 .menu_list{
	width:100%;
	height:calc(100% - 60px);
	background:#222;
	overflow:auto;
}
.mobile_menu2 .menu_list ul{
	width:100%;
	display:inline-block;
}
.mobile_menu2 .menu_list ul li{
	width:100%;
	border-bottom:1px solid #3a3a3a;
	position:relative;
}
.mobile_menu2 .menu_list ul li a{
	text-decoration:none;
	padding:15px 20px;
	display:inline-block;
	width:100%;
	font-size:16px;
	color:#fff;
}
.mobile_menu2 .menu_list ul li.menu_active > a{
	background:#D0413E;
	font-weight:600;
}
.mobile_menu2 .menu_list ul li .btn_2depth{
	position: absolute;
    right: 0;
    height: 50px;
    width: 50px;
    padding: 15px 0;
	line-height:1.5;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}
.mobile_menu2 .menu_list ul li .ul_2dept{
	width:100%;
	background:#fff;
	display:none;
}
.mobile_menu2 .menu_list ul li .ul_2dept.active{
	display:block;
}
.mobile_menu2 .menu_list ul li .ul_2dept li{
	width:100%;
	border-bottom: 1px solid #ddd;
}
.mobile_menu2 .menu_list ul li .ul_2dept li a{
	padding:12px 24px;
	color:#555;
}
.mobile_menu2 .menu_list ul li.menu_active .ul_2dept{
	display:block;
}
.mobile_menu2 .menu_list ul li.menu_active .ul_2dept .active_2depth{
    color: #FA5858;
	font-weight:600;
}
.mobile_menu2 .menu_list ul li.add_menu a{
	color:#FA5858;
}
/* 일반페이지 */
.subvis{
	background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display:block;
    width: 100%;
    height: 500px;
	position:relative;
}
.subvis::after {
	content: '';
	position: absolute;
	inset: 0;
	background:rgba(0,0,0,0.3);
	width:100%;
	height:100%;
	z-index:1;
}
.subvis .subvis_title{
	position:absolute;
	left:0;
	top:0;
	display:flex;
	flex-direction:column;
	justify-content:center;
	width:100%;
	height:100%;
	z-index:2;
}
.subvis .subvis_title .subvis_sub{
	width:100%;
	font-size: 24px;
	text-align:center;
	color:#fff;
	margin: 0 0 15px;
}
.subvis .subvis_title .subvis_cont{
	width:100%;
	font-size: 24px;
	font-weight:400;
	text-align:center;
	color:#f7f7f7;
	margin:0;
}
.page_content{
	width:100%;
	padding:50px 0;
}
/* 회사소개 */
.intro_wrap .subvis{
	background-image: url('/images/intro_vis.jpg');
}
.intro_wrap .section{
	padding:50px;
}
.intro_wrap .section1 .sub{
	font-size:40px;
	font-weight:600;
	line-height:1.5;
	color:#333;
	margin:0;
	margin-bottom:30px;
	word-break:keep-all;
}
.intro_wrap .section1 .cont{
	font-size:28px;
	line-height:1.5;
	color:#555;
	margin:0;
	word-break:keep-all;
}
.intro_wrap .section2 .infi_slide_list_wrap{
	position: relative;
    width: 100%;
	height: 365px;
	overflow:hidden;
}
.intro_wrap .section2 .infi_slide_list_wrap .infi_slide_list{
	display:flex;
	animation:infi_slide_ac1 60s linear infinite;
	position:absolute;
}
.intro_wrap .section2 .infi_slide_list_wrap .infi_slide_list img {
	width:365px;
	border-radius:8px;
}
.intro_wrap .section2 .infi_slide_list_wrap .infi_slide_list:nth-child(2){
	animation:infi_slide_ac2 60s linear infinite;
	transform: translate(100%);
	position:absolute;
}
.intro_wrap .section2 .infi_slide_list_wrap .infi_slide_list .infi_slide{
	min-width:385px;
}
.intro_wrap .section3{
	border-bottom:1px solid #ddd;
}
.intro_wrap .section3 .sub{
	font-size:32px;
	font-weight:600;
	color:#333;
	text-align:center;
	margin:0;
	line-height:1.5;
	margin-bottom:50px;
	word-break:keep-all;
}
.intro_wrap .section3 .cont_list{
	width:100%;
}
.intro_wrap .section3 .cont_list ul{
	width:100%;
}
.intro_wrap .section3 .cont_list ul li{
	width:100%;
	display:inline-block;
}
.intro_wrap .section3 .cont_list ul li .img{
	width:50%;
	padding:30px;
	float:left;
}
.intro_wrap .section3 .cont_list ul li .img img{
	width:100%;
}
.intro_wrap .section3 .cont_list ul li .cont{
	width:50%;
	padding:30px;
	float:left;
}
.intro_wrap .section3 .cont_list ul li .cont p{
	margin:0;
	font-size:20px;
	line-height:1.5;
	color:#555;
	word-break:keep-all;
}
.intro_wrap .section3 .cont_list ul li .cont p.list_sub{
	padding:60px 0 30px;
	font-size:28px;
	font-weight:600;
	color:#333;
}
.intro_wrap .section4 .title_wrap{
	text-align:center;
	margin-bottom:50px;
}
.intro_wrap .section4 .title_wrap p{
    margin: 0;
}
.intro_wrap .section4 .title_wrap .title_sub{
	font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}
.intro_wrap .section4 .title_wrap .title_cont{
	font-size: 24px;
    color: #555;
    text-align: center;
    margin: 0;
}
.intro_wrap .section4 .map{
	width:100%;
	margin-bottom:50px;
}
.intro_wrap .section4 .map img{
	width:100%;
}
.intro_wrap .section4 .map_info{
	width:100%;
	display: flex;
	justify-content: space-between;
}
.intro_wrap .section4 .map_info .each .map_info_sub{
	font-size:28px;
	font-weight:600;
	color:#333;
	margin-bottom:5px;
}
.intro_wrap .section4 .map_info .each .map_info_cont{
	font-size:20px;
	color:#555;
}
/* 분양 정보 및 절차 */
.procedure_wrap .section {
    padding: 50px;
}
.procedure_wrap .section1 .sub {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
	line-height:1.5;
    margin-bottom: 30px;
	word-break:keep-all;
}
.procedure_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
	line-height:1.5;
	word-break:keep-all;
}
.procedure_wrap .section1 .btn_wrap{
	width: 100%;
    padding: 30px 0 0;
}
.procedure_wrap .section1 .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
.procedure_wrap .section1 .btn_wrap .btn_red:first-child{
	margin-right:10px;
}
.procedure_wrap .section2 .infi_slide_list_wrap{
	position: relative;
    width: 100%;
	height: 365px;
	overflow:hidden;
}
.procedure_wrap .section2 .infi_slide_list_wrap .infi_slide_list{
	display:flex;
	animation-duration:100s;
	animation:infi_slide_ac1 60s linear infinite;
	position:absolute;
}
.procedure_wrap .section2 .infi_slide_list_wrap .infi_slide_list img {
	width:365px;
	border-radius:8px;
}
.procedure_wrap .section2 .infi_slide_list_wrap .infi_slide_list:nth-child(2){
	animation:infi_slide_ac2 60s linear infinite;
	transform: translate(100%);
	position:absolute;
}
.procedure_wrap .section2 .infi_slide_list_wrap .infi_slide_list .infi_slide{
	min-width:385px;
}
.procedure_wrap .section3 .cont_list{
	width:100%;
}
.procedure_wrap .section3 .cont_list ul{
	width:100%;
}
.procedure_wrap .section3 .cont_list ul li{
	width:100%;
	display:inline-block;
}
.procedure_wrap .section3 .cont_list ul li .img_wrap{
	float:left;
	width:50%;
	padding:30px 15px;
}
.procedure_wrap .section3 .cont_list ul li .img_wrap img{
	width:100%;
}
.procedure_wrap .section3 .cont_list ul li .cont_wrap{
	float:left;
	width:50%;
	padding:30px 15px;
}
.procedure_wrap .section3 .cont_list ul li .cont_wrap p{
	margin:0;
	font-size:20px;
	line-height:1.5;
	word-break:keep-all;
}
.procedure_wrap .section3 .cont_list ul li .cont_wrap .cont_sub{
	font-size:28px;
	font-weight:600;
	margin-bottom:15px;
	padding-top:100px;
}
.procedure_wrap .section3 .cont_list ul li .cont_wrap .cont_sub span{
	font-size:32px;
}
/* 혜택 */
.benefits_wrap .section{
	padding: 50px;
}
.benefits_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
}
.benefits_wrap .section1 img{
	width:100%;
}
.benefits_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
}
.benefits_wrap .section1 .btn_wrap {
    width: 100%;
    padding: 30px 0 0;
}
.benefits_wrap .section1 .btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
.benefits_wrap .section1 .btn_wrap .btn_red:first-child {
    margin-right:10px;
}
.benefits_wrap .section3 .list_wrap{
	width:100%;
	display:inline-block;
}
.benefits_wrap .section3 .list_wrap .list{
	width:calc(100% / 4);
	float:left;
	padding:8px;
}
.benefits_wrap .section3 .list_wrap .list img{
	width:100%;
	text-align:center;
}
/* 지점안내 페이지 */
.branch_wrap{
	width:100%;
	padding:60px 0;
	display:inline-block;
}
.branch_wrap .section {
    padding: 50px;
}
.branch_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
	padding:0 10px;
    margin-bottom: 30px;
    word-break: keep-all;
}
.branch_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
	padding:0 10px;
    line-height: 1.5;
    word-break: keep-all;
}
.branch_wrap .section1 .btn_wrap {
    width: 100%;
    padding: 30px 10px 0;
}
.branch_wrap .section1 .btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
.branch_wrap .section1 .img_wrap {
	width:100%;
	padding:30px 10px;
}
.branch_wrap .section1 .img_wrap img{
	width:100%;
}
.branch_wrap{
	min-height:calc(100vh - 100px);
	padding:50px 0;
}
.branch_wrap .branch_list{
	width:100%;
	padding:15px;
	display:inline-block;
}
.branch_wrap .branch_list .branch_list_ul{
	width:100%;
	list-style:none;
	padding:0;
	display:inline-block;
}
.branch_wrap .branch_list .branch_each{
	width:calc(100% / 4);
	float:left;
	padding:10px;
	/*margin-bottom:15px;*/
}
.branch_wrap .branch_list .branch_each a{
	text-decoration:none;
}
.branch_wrap .branch_list .branch_each .branch_img_wrap{
	width:100%;
	padding-bottom:100%;
	position:relative;
	border-top-left-radius:8px;
	border-top-right-radius:8px;
}
.branch_wrap .branch_list .branch_each .branch_img_wrap img{
	display:none;
}
.branch_wrap .branch_list .branch_each .branch_info_wrap{
	width:100%;
	padding:15px;
	background: #D0413E;
	border-bottom-left-radius:8px;
	border-bottom-right-radius:8px;
}
.branch_wrap .branch_list .branch_each .branch_info_wrap .info{
	width:100%;
}
.branch_wrap .branch_list .branch_each .branch_info_wrap .info1{
	width:100%;
	height:24px;
	line-height:1.5;
	font-size:16px;
	color:#fff;
	font-weight:600;
	margin-bottom:10px;
}
.branch_wrap .branch_list .branch_each .branch_info_wrap .info2{
	width: 100%;
    height: 48px;
	line-height:1.5;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 커뮤니티 페이지 */
.community_wrap .section{
	padding: 50px;
}
.community_wrap .section1{
	padding-bottom:60px;
}
.community_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
	text-align:center;
}
.community_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
	text-align:center;
}
.community_wrap .section2 table{
	margin-top: 30px;
    table-layout: fixed;
	border-collapse:collapse;
    width: 100%;
    border-top: 1px solid #474b53;
    border-bottom: 1px solid #ddd;
    text-align: center;
    word-break: break-all;
}
.community_wrap .section2 table th {
    padding: 13px 2px;
    position: relative;
}
.community_wrap .section2 table td {
    padding: 15px 5px;
    border-top: 1px solid #ddd;
    vertical-align: top;
}
.community_wrap .section2 table td a{
	color:#000;
	text-decoration:none;
}
.community_wrap .section2 table td .reply{
	color:red;
}
.community_wrap .section2 table td a{
	color:#000;
	text-decoration:none;
}
.community_wrap .section2 .search_wrap{
	width:100%;
	padding:20px 0;
	text-align:center;
}
.community_wrap .section2 .search_wrap select{
	width: 80px;
    height: 40px;
	border: solid 1px #ddd;
	color: #333;
	padding-left:5px;
	font-weight:600;
}
.community_wrap .section2 .search_wrap input[type=text]{
    padding: 0 5px;
	width: 150px;
    height: 40px;
	border: solid 1px #ddd;
	color: #333;
}
.community_wrap .section2 .search_wrap .btn_submit{
	display: inline-block;
    vertical-align: top;
    line-height: 40px;
	width:70px;
    height: 40px;
    line-height: normal;
	color: #333;
	background-color: #f6f6f6;
    border: solid 1px #ddd;
	font-weight:600;
}:
   
/* 커뮤니티 상세페이지 */
.community_desc_wrap .section{
	padding: 50px;
}
.community_desc_wrap .section .desc{
	width: 100%;
}
.community_desc_wrap .section table{
	width: 100%;
	border-collapse:collapse;
	border-top:2px solid #777;
	border-bottom:2px solid #777;
	table-layout:fixed;
}
.community_desc_wrap .section table tr td{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
	line-height:2;
	font-size:16px;
}
.community_desc_wrap .section table tr td.sub{
	padding:30px 60px;
}
.community_desc_wrap .section table tr td.cont{
	padding:60px;
	font-size:16px;
}
.community_desc_wrap .section table tr td.rep{
	padding:60px;
	background:#f5fcff;
	font-size:16px;
	color:#483ca3;
}
.community_desc_wrap .section table tr td h1{
	font-size: 32px;
    font-weight: 600;
	margin:0;
	line-height:1.5;
	margin-bottom:10px;
}
.community_desc_wrap .section table tr td.sub p{
	font-size: 16px;
	margin:0;
	line-height:2;
	color:#777;
}
.community_desc_wrap .section table tr td .img_wrap{
	width:100%;
	margin-bottom:30px;
}
.community_desc_wrap .section table tr td .img_wrap img{
	max-width:100%;
}
.community_desc_wrap .section table tr td .cont_wrap{
	width:100%;
}
.community_desc_wrap .section table tr td .cont_wrap img{
	max-width:100%;
}
.community_desc_wrap .section table tr td.community_an{
	padding:10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.community_desc_wrap .section table tr td.community_an a{
	text-decoration:none;
	color:#555;
}
.community_desc_wrap .section table tr td.community_an b{
	text-decoration:none;
	color:#000;
}
.community_desc_wrap .section table tr td.community_an .sub{
	margin-left:20px;
}
.community_desc_wrap .section .btn_wrap{
	text-align:right;
	padding:30px 0;
}
.community_desc_wrap .section .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
    margin: 5px 0 10px 0;
	text-align:center;
}
/* 이달의 소식 페이지 */
.notice_wrap .section{
	padding: 50px;
}
.notice_wrap .section1{
	padding-bottom:60px;
}
.notice_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
	text-align:center;
}
.notice_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
	text-align:center;
}
.notice_wrap .section2 table{
	margin-top: 30px;
	border-collapse:collapse;
    width: 100%;
    border-top: 1px solid #474b53;
    border-bottom: 1px solid #ddd;
    text-align: center;
    word-break: break-all;
}
.notice_wrap .section2 table th {
    padding: 13px 2px;
    position: relative;
}
.notice_wrap .section2 table td {
    padding: 15px 5px;
    border-top: 1px solid #ddd;
    vertical-align: top;
}
.notice_wrap .section2 table td a{
	color:#000;
	text-decoration:none;
}
.notice_wrap .section2 table td .reply{
	color:red;
}
.notice_wrap .section2 table td a{
	color:#000;
	text-decoration:none;
}
.notice_wrap .section2 .search_wrap{
	width:100%;
	padding:20px 0;
	text-align:center;
}
.notice_wrap .section2 .search_wrap select{
	width: 80px;
    height: 40px;
	border: solid 1px #ddd;
	color: #333;
	padding-left:5px;
	font-weight:600;
}
.notice_wrap .section2 .search_wrap input[type=text]{
    padding: 0 5px;
	width: 150px;
    height: 40px;
	border: solid 1px #ddd;
	color: #333;
}
.notice_wrap .section2 .search_wrap .btn_submit{
	display: inline-block;
    vertical-align: top;
    line-height: 40px;
	width:70px;
    height: 40px;
    line-height: normal;
	color: #333;
	background-color: #f6f6f6;
    border: solid 1px #ddd;
	font-weight:600;
}:
   
/* 이달의 소식 상세페이지 */
.notice_desc_wrap .section{
	padding: 50px;
}
.notice_desc_wrap .section .desc{
	width: 100%;
}
.notice_desc_wrap .section table{
	width: 100%;
	border-collapse:collapse;
	border-top:2px solid #777;
	border-bottom:2px solid #777;
	table-layout:fixed;
}
.notice_desc_wrap .section table tr td{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
	line-height:2;
	font-size:16px;
}
.notice_desc_wrap .section table tr td.sub{
	padding:30px 60px;
}
.notice_desc_wrap .section table tr td.cont{
	padding:60px;
	font-size:16px;
}
.notice_desc_wrap .section table tr td.rep{
	padding:60px;
	background:#f5fcff;
	font-size:16px;
	color:#483ca3;
}
.notice_desc_wrap .section table tr td h1{
	font-size: 32px;
    font-weight: 600;
	margin:0;
	line-height:1.5;
	margin-bottom:10px;
}
.notice_desc_wrap .section table tr td img{
	max-width:100%;
}
.notice_desc_wrap .section table tr td.sub p{
	font-size: 16px;
	margin:0;
	line-height:2;
	color:#777;
}
.notice_desc_wrap .section table tr td .img_wrap{
	width:100%;
	margin-bottom:30px;
}
.notice_desc_wrap .section table tr td .img_wrap img{
	max-width:100%;
}
.notice_desc_wrap .section table tr td .cont_wrap{
	width:100%;
}
.notice_desc_wrap .section table tr td .cont_wrap img{
	max-width:100%;
}
.notice_desc_wrap .section table tr td.notice_an{
	padding:10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.notice_desc_wrap .section table tr td.notice_an a{
	text-decoration:none;
	color:#555;
}
.notice_desc_wrap .section table tr td.notice_an b{
	text-decoration:none;
	color:#000;
}
.notice_desc_wrap .section table tr td.notice_an .sub{
	margin-left:20px;
}
.notice_desc_wrap .section .btn_wrap{
	text-align:right;
	padding:30px 0;
}
.notice_desc_wrap .section .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
    margin: 5px 0 10px 0;
	text-align:center;
}

/* overseas 페이지 */
.overseas_wrap .section{
	padding: 50px;
}
.overseas_wrap .section1{
	border-bottom:1px solid #aaa;
	padding-bottom:120px;
}
.overseas_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
}
.overseas_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
}
.overseas_wrap .section1 .btn_wrap {
    width: 100%;
    padding: 30px 0 0;
}
.overseas_wrap .section1 .btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
.overseas_wrap .section1 .btn_wrap .btn_red:first-child {
    margin-right:10px;
}
.overseas_wrap .section2{
	padding-bottom:120px;
	border-bottom:1px solid #aaa;
}
.overseas_wrap .section2 .sub{
	font-size: 40px;
    font-weight: 600;
	text-align:center;
	margin:60px 0;
}
.overseas_wrap .section2 .list_wrap{
	width:100%;
	display:inline-block;
}
.overseas_wrap .section2 .list_wrap .list{
	width:calc(100% / 3);
	float:left;
	padding:30px;
}
.overseas_wrap .section2 .list_wrap .img_wrap{
	width:100%;
}
.overseas_wrap .section2 .list_wrap .img_wrap img{
	width:100%;
	margin-bottom:30px;
}
.overseas_wrap .section2 .list_wrap .cont_wrap{
	text-align:center;
	font-size:16px;
}
.overseas_wrap .section3 .sub{
	font-size: 40px;
    font-weight: 600;
	text-align:center;
	margin:60px 0;
}
.overseas_wrap .section3 .list_wrap{
	width:100%;
	display:inline-block;
}
.overseas_wrap .section3 .list_wrap .list{
	width:calc(100% / 4);
	float:left;
	margin-bottom: 15px;
    padding: 0 5px;
}
.overseas_wrap .section3 .list_wrap .list .ovr_img_wrap{
	width: 100%;
    padding-bottom: calc(100% / 3* 2);
    position: relative;
    background: #D9D9D9;
}
.overseas_wrap .section3 .list_wrap .list .ovr_info_wrap{
	width: 100%;
    padding: 15px;
    background: #eee;
}
.overseas_wrap .section3 .list_wrap .list .ovr_info_wrap .info1{
	width:100%;
	height:24px;
	line-height:1.5;
	font-size:20px;
	color:#000;
	font-weight:600;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
	margin-bottom:10px;
}
.overseas_wrap .section3 .list_wrap .list .ovr_info_wrap .info2{
	width:100%;
	height: 64px;
	line-height:1.5;
	font-size:14px;
	color:#000;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:normal;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.overseas_wrap .section3 .list_wrap .list .ovr_info_wrap .btn_wrap{
	width:100%;
	margin-top:15px;
	display:inline-block;
}
.overseas_wrap .section3 .list_wrap .list .ovr_info_wrap .btn_wrap .btn_desc{
	float:right;
	font-size:14px;
	color:#757575;
	text-decoration:none;
}
.overseas_wrap .section3 .more_btn_wrap {
    width: 100%;
    padding: 30px 0 0;
	text-align:center;
}
.overseas_wrap .section3 .more_btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
	width:200px;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
/* overseas 상세페이지 */
.overseas_desc_wrap .section{
	padding: 50px;
}
.overseas_desc_wrap .section .desc{
	width: 100%;
}
.overseas_desc_wrap .section table{
	width: 100%;
	border-collapse:collapse;
	border-top:2px solid #777;
	border-bottom:2px solid #777;
	table-layout:fixed;
}
.overseas_desc_wrap .section table tr td{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
	line-height:2;
	font-size:16px;
}
.overseas_desc_wrap .section table tr td.sub{
	padding:30px 60px;
}
.overseas_desc_wrap .section table tr td.cont{
	padding:60px;
	text-align:center;
	font-size:16px;
}
.overseas_desc_wrap .section table tr td h1{
	font-size: 32px;
    font-weight: 600;
	margin:0;
	line-height:1.5;
	margin-bottom:10px;
}
.overseas_desc_wrap .section table tr td.sub p{
	font-size: 16px;
	margin:0;
	line-height:2;
	color:#777;
}
.overseas_desc_wrap .section table tr td .img_wrap{
	width:100%;
	margin-bottom:30px;
}
.overseas_desc_wrap .section table tr td .img_wrap img{
	max-width:100%;
}
.overseas_desc_wrap .section table tr td .cont_wrap{
	width:100%;
}
.overseas_desc_wrap .section table tr td.ovr_an{
	padding:10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.overseas_desc_wrap .section table tr td.ovr_an a{
	text-decoration:none;
	color:#555;
}
.overseas_desc_wrap .section table tr td.ovr_an b{
	text-decoration:none;
	color:#000;
}
.overseas_desc_wrap .section table tr td.ovr_an .sub{
	margin-left:20px;
}
.overseas_desc_wrap .section .btn_wrap{
	text-align:right;
	padding:30px 0;
}
.overseas_desc_wrap .section .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
    margin: 5px 0 10px 0;
	text-align:center;
}
/* 입양후기 페이지 */
.review_wrap .section{
	padding: 50px;
}
.review_wrap .section1{
	padding-bottom:100px;
}
.review_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
	text-align:center;
}
.review_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
	text-align:center;
}
.review_wrap .section2 .list_wrap{
	width:100%;
	display:inline-block;
}
.review_wrap .section2 .list_wrap .list{
	width:calc(100% / 4);
	float:left;
	margin-bottom: 15px;
    padding: 0 5px;
}
.review_wrap .section2 .list_wrap .list .rev_img_wrap{
	width: 100%;
    padding-bottom: calc(100% / 3* 2);
    position: relative;
    background: #D9D9D9;
}
.review_wrap .section2 .list_wrap .list .rev_info_wrap{
	width: 100%;
    padding: 15px;
    background: #eee;
}
.review_wrap .section2 .list_wrap .list .rev_info_wrap .info1{
	width:100%;
	height:24px;
	line-height:1.5;
	font-size:20px;
	color:#000;
	font-weight:600;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
	margin-bottom:10px;
}
.review_wrap .section2 .list_wrap .list .rev_info_wrap .info2{
	width:100%;
	height: 64px;
	line-height:1.5;
	font-size:14px;
	color:#000;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:normal;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.review_wrap .section2 .list_wrap .list .rev_info_wrap .btn_wrap{
	width:100%;
	margin-top:15px;
	display:inline-block;
}
.review_wrap .section2 .list_wrap .list .rev_info_wrap .btn_wrap .btn_desc{
	float:right;
	font-size:14px;
	color:#757575;
	text-decoration:none;
}
.review_wrap .section2 .more_btn_wrap {
    width: 100%;
    padding: 30px 0 0;
	text-align:center;
}
.review_wrap .section2 .more_btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
	width:200px;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}
/* 입양후기 상세페이지 */
.review_desc_wrap .section{
	padding: 50px;
}
.review_desc_wrap .section .desc{
	width: 100%;
}
.review_desc_wrap .section table{
	width: 100%;
	border-collapse:collapse;
	border-top:2px solid #777;
	border-bottom:2px solid #777;
	table-layout:fixed;
}
.review_desc_wrap .section table tr td{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
	line-height:2;
	font-size:16px;
}
.review_desc_wrap .section table tr td.sub{
	padding:30px 60px;
}
.review_desc_wrap .section table tr td.cont{
	padding:60px;
	text-align:center;
	font-size:16px;
}
.review_desc_wrap .section table tr td h1{
	font-size: 32px;
    font-weight: 600;
	margin:0;
	line-height:1.5;
	margin-bottom:10px;
}
.review_desc_wrap .section table tr td.sub p{
	font-size: 16px;
	margin:0;
	line-height:2;
	color:#777;
}
.review_desc_wrap .section table tr td .img_wrap{
	width:100%;
	margin-bottom:30px;
}
.review_desc_wrap .section table tr td .img_wrap img{
	max-width:100%;
}
.review_desc_wrap .section table tr td .cont_wrap{
	width:100%;
}
.review_desc_wrap .section table tr td.rev_an{
	padding:10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.review_desc_wrap .section table tr td.rev_an a{
	text-decoration:none;
	color:#555;
}
.review_desc_wrap .section table tr td.rev_an b{
	text-decoration:none;
	color:#000;
}
.review_desc_wrap .section table tr td.rev_an .sub{
	margin-left:20px;
}
.review_desc_wrap .section .btn_wrap{
	text-align:right;
	padding:30px 0;
}
.review_desc_wrap .section .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
    margin: 5px 0 10px 0;
	text-align:center;
}
/* 반려동물 정보 페이지 */
.p_info_wrap .section{
	padding: 50px;
}
.p_info_wrap .section1{
	padding-bottom:100px;
}
.p_info_wrap .section1 .sub{
	font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
	text-align:center;
}
.p_info_wrap .section1 .cont {
    font-size: 28px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    word-break: keep-all;
	text-align:center;
}
.p_info_wrap .section2 .list_wrap{
	width:100%;
	display:inline-block;
}
.p_info_wrap .section2 .list_wrap .list{
	width:calc(100% / 4);
	float:left;
	margin-bottom: 15px;
    padding: 0 5px;
}
.p_info_wrap .section2 .list_wrap .list .pin_img_wrap{
	width: 100%;
    padding-bottom: calc(100% / 3* 2);
    position: relative;
    background: #D9D9D9;
}
.p_info_wrap .section2 .list_wrap .list .pin_info_wrap{
	width: 100%;
    padding: 15px;
    background: #eee;
}
.p_info_wrap .section2 .list_wrap .list .pin_info_wrap .info1{
	width:100%;
	height:24px;
	line-height:1.5;
	font-size:20px;
	color:#000;
	font-weight:600;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
	margin-bottom:10px;
}
.p_info_wrap .section2 .list_wrap .list .pin_info_wrap .info2{
	width:100%;
	height: 64px;
	line-height:1.5;
	font-size:14px;
	color:#000;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:normal;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.p_info_wrap .section2 .list_wrap .list .pin_info_wrap .btn_wrap{
	width:100%;
	margin-top:15px;
	display:inline-block;
}
.p_info_wrap .section2 .list_wrap .list .pin_info_wrap .btn_wrap .btn_desc{
	float:right;
	font-size:14px;
	color:#757575;
	text-decoration:none;
}
.p_info_wrap .section2 .more_btn_wrap {
    width: 100%;
    padding: 30px 0 0;
	text-align:center;
}
.p_info_wrap .section2 .more_btn_wrap .btn_red {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
	width:200px;
    border-radius: 30px;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
	margin: 5px 0 10px 0;
}

/* 반려동물 정보 상세페이지 */
.p_info_desc_wrap .section{
	padding: 50px;
}
.p_info_desc_wrap .section .desc{
	width: 100%;
}
.p_info_desc_wrap .section table{
	width: 100%;
	border-collapse:collapse;
	border-top:2px solid #777;
	border-bottom:2px solid #777;
	table-layout:fixed;
}
.p_info_desc_wrap .section table tr td{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
	line-height:2;
	font-size:16px;
}
.p_info_desc_wrap .section table tr td.sub{
	padding:30px 60px;
}
.p_info_desc_wrap .section table tr td.cont{
	padding:60px;
	font-size:16px;
}
.p_info_desc_wrap .section table tr td h1{
	font-size: 32px;
    font-weight: 600;
	margin:0;
	line-height:1.5;
	margin-bottom:10px;
}
.p_info_desc_wrap .section table tr td.sub p{
	font-size: 16px;
	margin:0;
	line-height:2;
	color:#777;
}
.p_info_desc_wrap .section table tr td .img_wrap{
	width:100%;
	margin-bottom:30px;
}
.p_info_desc_wrap .section table tr td .img_wrap img{
	max-width:100%;
}
.p_info_desc_wrap .section table tr td .cont_wrap{
	width:100%;
}
.p_info_desc_wrap .section table tr td .cont_wrap img{
	max-width:100%;
}
.p_info_desc_wrap .section table tr td.p_info_an{
	padding:10px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p_info_desc_wrap .section table tr td.p_info_an a{
	text-decoration:none;
	color:#555;
}
.p_info_desc_wrap .section table tr td.p_info_an b{
	text-decoration:none;
	color:#000;
}
.p_info_desc_wrap .section table tr td.p_info_an .sub{
	margin-left:20px;
}
.p_info_desc_wrap .section .btn_wrap{
	text-align:right;
	padding:30px 0;
}
.p_info_desc_wrap .section .btn_wrap .btn_red{
	text-decoration: none;
    font-size: 20px;
    color: #fff;
    background: #D0413E;
    padding: 15px 30px;
    display: inline-block;
    margin: 5px 0 10px 0;
	text-align:center;
}