@charset "utf-8";

/* ////////////////////////////////////////////
 *                 base & layout
 * //////////////////////////////////////////// */

/* Typography
------------------------------------------*/
html {
	background: #fff;
	font-size: 16px;
}
body {
	line-height: 1.8;
	/* font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; */
	font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
}
a {
	color: #c03061;
	text-decoration: none;
}
a:hover,
a:focus {
	color: inherit;
	text-decoration: underline;
}

/* use hover animation */
/*
a, a:hover {
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
		 -o-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}
*/


/* Layout
------------------------------------------*/
body {
	min-width: 1080px;
	text-align: center;
}
body.home {
	word-break: break-all;
}
#container {
	overflow: hidden;
}


/* header
------------------------------------------*/
#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	&.bg-on{
		background: linear-gradient(180deg,rgba(39, 26, 16, .35) 0%, rgba(39, 26, 16, .35) 77%, rgba(39, 26, 16, 0) 100%);
	}
}

#header-inner {
	display: flex;
	align-items: center;
	height: 100px;
	padding-left: 30px;
	padding-right: 100px;
}
.header-logo {
	margin-right: auto;
}
.header-mail {
	margin: 0 6px 0 15px;
}
.gnav {
	height: 62px;
	overflow: hidden;
}


@media screen and (max-width: 1300px) {
.gnav{
	display: none;
}
}

.gnav-list > li > a{
	display: block;
	padding: 15px;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	&:hover{
		opacity: 0.7;
	}
}

/* droppy */
.gnav-list { position: relative; text-align: left; zoom: 1; }
.gnav-list li { float: left; display: block; position: relative; z-index: 20; }
.gnav-list ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255,255,255,.8); }
.gnav-list ul li { float: none; }
.gnav-list ul li a { display: block; padding: 5px 10px; color: inherit; font-size: 14px; zoom: 1; }
.gnav-list ul li a:hover { text-decoration: none; background: #fff; }
.gnav-list ul ul { top: 0; left: 100%; width: 100%; }
.gnav-list a, .gnav-ul img{ display: block; }


.hamburger-wrap{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 300;
}
.hamburger {
	display: block;
	width: 100px;
	height: 100px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	&:focus,
	&:active{
		outline: none;
	}
}
/* 3本線 */
.hamburger{
	& span{
		position: absolute;
		left: 50%;
		width: 33px;
		height: 2px;
		background: #fff;
		border-radius: 1px;
		transition: all 0.3s ease;
		transform: translateX(-50%);
		transform-origin: center;
		&:nth-child(1) {top: 35%;}
		&:nth-child(2) {top: 49%;}
		&:nth-child(3) {top: 63%;}
	}
	&.active span{
		&:nth-child(1) {
			top: 49%;
			transform: translateX(-50%) rotate(45deg);		
		}
		&:nth-child(2) {
			opacity: 0;
		}
		&:nth-child(3) {
			top: 49%;
			transform: translateX(-50%) rotate(-45deg);
		}
	}
} 

/* メニュー（右からスライド） */
.menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	max-width: 320px;
	height: 100%;
	background: rgba(0,0,0,.9);
	transition: right 0.5s ease;
	padding: 120px 40px 40px;
	z-index: 200;
	text-align: left;
	color: #fff;
	&.active {right: 0;}
}
.menu-list{
	& a {
		color: inherit;
		text-decoration: none;	
	}
	& > li{
		margin-bottom: 15px;
		font-size: 18px;
	}
	& > li > ul {
		font-size: 16px;
		& li a::before{
			content: '\f105';
			color: #c03061;
			padding-right: 5px;
			transform: scale(0.8);
			transform-origin: center;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
		}
	}
}
	

/* mainimage
------------------------------------------*/
/* 横スライド
.slideshow .slick-list {overflow: visible;}
*/

#mainimage {
	position: relative;
	overflow: hidden;
	margin-bottom: 178px;
}
#mainimage-inner {
	margin: 0 auto;
}

/* slideshow */
.slideshow {}
.slideshow .slick-slide {
	backface-visibility: hidden;
}
.slideshow .slick-slide img {
	width: 100%;
}

/* arrows */
.slideshow .slick-arrow,
.slideshow .slick-arrow::before {
	width: 20px;
	height: 30px;
}
.slideshow .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -15px;
}
.slideshow .slick-arrow.slick-prev {
	left: 30px;
}
.slideshow .slick-arrow.slick-prev::before {
	content: "";
	background: url(/images/default/slideshow-prev.png) no-repeat center center;
}
.slideshow .slick-arrow.slick-next {
	right: 30px;
}
.slideshow .slick-arrow.slick-next::before {
	content: "";
	background: url(/images/default/slideshow-next.png) no-repeat center center;
}

/* dots */
.slideshow .slick-dotted {
	margin-bottom: 30px;
}
.slideshow .slick-dots {
	bottom: -30px;
}
.slideshow .slick-dots li {
}
.slideshow .slick-dots li button::before {
	color: #ccc;
}
.slideshow .slick-dots li button:hover::before,
.slideshow .slick-dots li button:focus::before,
.slideshow .slick-dots li.slick-active button::before {
	color: #666;
}


/* content main
------------------------------------------*/
#content-inner {
	width: 1080px;
	margin: 0 auto;
	padding-bottom: 60px;
}
.home #content-inner {
	width: 100%;
	padding: 0;
}

#main {
	text-align: left;
}

.main-message {
	margin: 0 auto 69px;
}
.main-message-once{
	display: flex;
	align-items: center;
}
.main-message-text {
	position: relative;
	line-height: 2.2;
	& p + p{
		margin-top: 15px;
	}
}
.message1{
	margin-bottom: 60px;
	padding-left: calc(50vw - 510px);
	.main-message-text {
		margin-right: 90px;
		order: -1;
		&::after{
			content:"";
			display: block;
			width: 210px;
			height: 260px;
			position: absolute;
			top: -90px;
			left: -340px;
			background: url(/images/default/message1.jpg) no-repeat 0 0;
		}
	}
	.main-message-title {
		margin: 0 0 60px -30px;
	}
}
.message2{
	flex-flow: row-reverse;
	padding-right: calc(50vw - 510px);
	.main-message-text {
		margin-left: 90px;
		padding-bottom: 80px;
		order: -1;
		&::after{
			content:"";
			display: block;
			width: 350px;
			height: 260px;
			position: absolute;
			bottom: -210px;
			right: -290px;
			background: url(/images/default/message4.jpg) no-repeat 0 0;
		}
	}
}

.main-con{
	background: #f8f5ee;
	padding: 115px 0 120px calc(50% - 540px);
}
.main-con-inner{
	position: relative;
	overflow: hidden;
}
.main-con-title {
	margin-bottom: 70px;
}
.main-con-list li::before,
.main-feature-list li::before{
	content: '\f061';
	background: #c03061;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 4;
	font-size: 22px;
	color: #fff;
	transform-origin: center;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.main-con-list {
	display: flex;
	/* gap: 50px; */
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	&::-webkit-scrollbar{
		display: none;
	}
	/* スライドの位置調整 */
	&::after{
		content:"";
		display: block;
		width: 1000px;
		height: 100px;
	}
}
  
.main-con-list li{
	position: relative;
	width: 800px;
	margin-right: 50px;
	&::before{
		width: 80px;
		height: 80px;
		padding: 45px 10px 5px 0;
	}
	& a{
		position: absolute;
		top: 0;
		left: 0;
		z-index: 5;
		display: block;
		width: 100%;
		height: 100%;
		transition: all .3s ease;
		&:hover{
			background-color: rgba(255, 255, 255, 0.3);
		}
	}
	.main-con-text{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 120px 55px 45px;
		background: linear-gradient(to top, rgba(39, 26, 16, 1), rgba(39, 26, 16, 0)) no-repeat center;
		color: #fff;
		& > h3{
			font-size: 26px;
			/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
		}
	}
}

.main-gallery {
	padding: 113px 0 102px;
}
.main-gallery-title {
	margin-bottom: 60px;
}
.main-gallery-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-gallery-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.main-gallery-list-item {
}
.main-gallery-list-img {
	margin-bottom: 20px;
}
.main-gallery-list-title > a {
	font-size: 18px;
	/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
	font-weight: bold;
	color: inherit;
}
.main-gallery-more {
	margin-top: 50px;
	text-align: center;
}

.main-feature {
	padding: 100px 0 136px;
	background: url(/images/default/feature-bg.jpg) no-repeat center center / cover;
}
.main-feature-title {
	margin-bottom: 62px;
}
.main-feature-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-feature-list{}
.main-feature-list > li{
	position: relative;
	display: flex;
	align-items: center;
	gap: 45px;
	padding: 20px;
	background: #fff;
	&::before{
		width: 60px;
		height: 60px;
		padding: 30px 10px 5px 0;
	}
	& + li{
		margin-top: 30px;
	}
	& > a{
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		z-index: 5;
		transition: all .3s ease;
		&:hover{
			background-color: rgba(255, 255, 255, 0.3);
		}
	}
}
.main-feature-text {
	margin-bottom: 20px;
	& > h3{
		font-size: 35px;
		/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
	}
}
.main-feature-more{
	margin-top: 30px;
	text-align: center;
}

.main-blog {
	max-width: 1080px;
	margin: 120px auto 110px;
}
.main-blog-title {
	margin-bottom: 45px;
	text-align: center;
}
.main-blog-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.main-blog-list-item {}
.main-blog-list-img {
	margin-bottom: 20px;
}
.main-blog-list-title {
	overflow: hidden;
}
.main-blog-list-title > a {
	display: block;
	font-size: 18px;
	/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
	color: inherit;
}
.main-blog-list-date {
	font-size: 15px;
	/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
}
.main-blog-more {
	margin-top: 40px;
	text-align: center;
}

.main-insta{
	max-width: 1080px;
	margin: 0 auto;
	padding: 99px 0 93px;
}
.main-insta-title{
	margin-bottom: 45px;
	text-align: center;
}

.main-info {
	margin: 0 auto 80px;
	padding: 99px 0 93px;
	background: url(/images/default/info-bg.jpg) no-repeat center center / cover;
	text-align: left;
}
.main-info-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-info-title {
	margin-bottom: 55px;
}
.main-addr {
	display: flex;
	margin: 45px 0;
	&::before{
			content: '\f3c5';
			color: #c03061;
			padding-right: 5px;
			transform: scale(0.8);
			transform-origin: center;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
	}
}
.main-info-con{
	display: flex;
	gap: 40px;
	align-items: center;
}
.main-info-text p {
	margin-bottom: 5px;
}

.main-area {
	max-width: 1080px;
	margin: 0 auto 80px;
}
.main-area-title {
	margin-bottom: 50px;
}
.main-area-text {
}
.main-area-text h3 {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: bold;
}
.main-area-text * + h3{
	padding-top: 30px;
}
.main-area-text p {
	margin-bottom: 5px;
}


/* content sidebar
------------------------------------------*/
#sidebar {
	float: left;
	width: 220px;
	text-align: left;
}

.side-search {
	margin-bottom: 20px;
}

.side-nav {
	margin-bottom: 20px;
}
.side-nav-title {
	margin-bottom: 10px;
}
.side-nav li a {
}
.side-nav-list > li > a {
	display: block;
	padding: 5px;
	border-bottom: 1px dashed rgba(185,185,185,0.5);
	font-size: 13px;
}
.side-nav-list > li > a::before{
	content: '\f105';
	padding-right: 5px;
	transform: scale(0.8);
	transform-origin: center;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #333;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.side-nav-list > li > ul {
	padding: 10px;
}
.side-nav-list > li > ul > li > a {
	display: block;
	padding: 2px;
	font-size: 12px;
}

.side-about {
	margin-bottom: 20px;
	padding: 10px;
	background: #222;
	font-size: 12px;
	color: #fff;
}

.side-banner {
}
.side-banner-list {
}
.side-banner-list > li {
	margin-bottom: 10px;
}


/* footer
------------------------------------------*/
#footer {
	background: #f8f5ee;
}
#footer-inner {
	position: relative;
	width: 1080px;
	padding: 60px 0 103px;
	margin: 0 auto;
}

.footer-nav {
	margin-bottom: 75px;
	font-size: 18px;
}
.footer-nav-list {
	display: flex;
	justify-content: center;
	gap: 30px;
}
.footer-nav li a {
	color: inherit;
}
.footer-nav li ul {
	display: none;
}

.footer-copyright {
	background: #44372c;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 20;
}


/* Lower
------------------------------------------*/
.entry {
	margin: 0 0 20px;
}
.entry-content {}


/* heading */
.page-title-wrap{
	margin-bottom: 50px;
	padding-top: 100px;
	background: url(/images/default/page-title-bg.jpg) no-repeat center center / cover;
}
.page-title-wrap2{
	max-width: 1080px;
	margin: 0 auto;
	padding: 120px 0;
}
.page-title {
	display: none;
	font-size: 42px;
	font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: bold;
	color: #fff;
}
.entry-title, .entry-content h2:not([class]) {
	margin: 0 0 25px;
	padding: 25px 20px;
	border-left: 6px solid #c03061;
	background: #44372c;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}
.h3, .entry-content h3:not([class]) {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 2px solid #d9d9d9;
	font-size: 21px;
	font-weight: bold;
	&::before{
		content:"";
		display: block;
		width: 8px;
		height: 20px;
		background: #c03061;
		border-radius: 4px;
		margin-right: 15px;
	}
}
.h4, .entry-content h4:not([class]) {
	display: flex;
	align-items: center;
	font-size: 19px;
	font-weight: bold;
	&::before{
		content:"";
		display: block;
		width: 25px;
		height: 2px;
		background: #c03061;
		margin-right: 10px;
	}
}
.h5, .entry-content h5:not([class]) {
	padding: 5px;
	border-bottom: 1px dashed #ccc;
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}
.breadcrumb {
	justify-content: center;
	padding: 0;
	background: none;
	font-size: 12px;
	color: #fff;
	& a{
		color: #c03061;
	}
}
.breadcrumb-item + .breadcrumb-item:before {
	content: '>';
	color: inherit;
}
.breadcrumb-item.home:before {
	display: none;
	content: '\f015';
	padding: 0 5px 0 0;
	font-size: 11px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* common-nav
------------------------------------------*/
.common-nav-list li {
	display: block;
	padding: 5px;
	border-bottom: 1px dashed rgba(186,186,186,0.5);
}
.common-nav-list li a {
	padding: 5px;
	font-size: 13px;
}

/* blog-nav
------------------------------------------*/
/* 1カラム
.blog-nav-group {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.blog-nav {width: 23%;}
.blog-nav-title{text-align: center;}
*/

.blog-nav {
	margin: 0 0 20px 0;
	text-align: left;
}
.blog-nav-title {
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(186,186,186,0.5);
	font-size: 15px;
	font-weight: bold;
}
.blog-nav-list li a {
	position: relative;
	display: block;
	padding: 0.8rem 0.8rem 0.8rem 2.5rem;
	border-bottom: 1px solid rgba(186,186,186,0.5);
	font-size: 0.8rem;
	color: inherit;
}
.blog-nav-list li a::after {
	position: absolute;
	top: 1rem;
	left: 0.75rem;
	width: 1rem;
	height: 1rem;
	text-align: center;
	content: '\f105';
	font-size: 12px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.blog-nav-list li li a {
	padding-left: 3.5rem;
}
.blog-nav-list li li a::after {
	left: 2.25rem;
}
.blog-nav-list li li li a {
	padding-left: 4rem;
}

.blog-nav .scroll-area{
	max-height: 200px;
}


/* Gallery
------------------------------------------*/
/* archive */
.gal-nav{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 34px;
	background: #f8f5ee;
	& h2{
		margin-right: 40px;
		font-size: 24px;
		/* font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
	}
}
.gal-nav-list{
	display: flex;
	gap: 5px;
	& a{
		display: flex;
		align-items: center;
		padding: 0 15px;
		border: 1px solid #dcd4c2;
		background: #fff;
		font-size: 14px;
		text-decoration: none;
		transition: all .3s ease;
		&:hover{
			opacity: 0.7;
		}
		&::before{
			content: '\f105';
			color: #c03061;
			padding-right: 5px;
			transform: scale(0.8);
			transform-origin: center;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
		}
	}
}


.gallery-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.gallery-list-item{
	position: relative;
}
.gallery-list-cat{
	position: absolute;
	top: 20px;
	left: 20px;
	& a{
		display: block;
		padding: 0 10px;
		background: #fff;
		color: #000;
		text-decoration: none;
		transition: all .3s ease;
		&:hover{
			opacity: 0.7;
		}
	}
}
.gallery-list-img {
	margin-bottom: 15px;
}
.gallery-list-title {
	font-size: 18px;
}
.gallery-list-more {
	text-align: right;
}

/* single */
.gallery-detail {
	margin-bottom: 20px;
	/* text-align: center; */
}
.gallery-detail-mainimage{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
	& > div{
		position: relative;
		flex: 1 1 auto;
		&::before{
			position: absolute;
			top: 30px;
			left: 30px;
			min-width: 120px;
			padding: 5px 10px;
			text-align: center;
			font-size: 18px;
			z-index: 5;
		}
		&.gallery-detail-before::before{
			content:"BEFORE";
			background: #fff;
			color: #c03061;
		}
		&.gallery-detail-after::before{
			content:"AFTER";
			background: #c03061;
			color: #fff;
		}
	}
}
.gallery-detail-title{
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px dotted #bebebe;
	font-size: 28px;
	font-weight: bold;
}
.gallery-detail-subtext{
	margin-bottom: 70px;
}
.gallery-detail-subimage {
	margin-bottom: 50px;
	& ul{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		& li{
			position: relative;
			& a{
				position: absolute;
				top: 0;
				left: 0;
				z-index: 5;
				display: block;
				width: 100%;
				height: 100%;
				transition: all .3s ease;
				&:hover{
					background-color: rgba(255, 255, 255, 0.3);
				}
			}
			.subimage-alt{
				position: absolute;
				top: 20px;
				left: 20px;
				display: inline-block;
				max-width: calc(100% - 40px);
				padding: 5px 8px;
				background: rgba(255,255,255,.9);
				text-align: left;
			}
		}
	}
}
.gal-title{
	margin-bottom: 30px;
}
.gal-con{
	margin-top: 30px;
	padding: 80px 120px;
	background: url(/images/default/gal-con-bg.jpg) no-repeat center center / cover;
}
.gal-con-inner{
	padding: 55px 50px 50px;
	background: rgba(255,255,255,.7);
	text-align: center;
}
.gal-con-title{
	margin-bottom: 39px;
}
.gal-con-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
}

/* before-after */
.ba-detail {
	padding: 0 0px 20px;
}
.ba-detail-once {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.ba-detail-before,
.ba-detail-after {
	position: relative;
	width: 45%;
}
.ba-detail-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10%;
}
.ba-detail-arrow i {
	font-size: 30px;
}
.ba-detail-sub li {
	padding: 0 15px 15px;
}


/* Colors
------------------------------------------*/
/* arrows */
.slick-next::before,
.slick-prev::before {
	color: #fff;
}

/* dots */
.slick-dots li button::before {
	color: #ccc;
}
.slick-dots li button:hover::before,
.slick-dots li button:focus::before,
.slick-dots li.slick-active button::before {
	color: #666;
}

/* SimpleBar */
.scroll-area{
	overflow: auto;
}
.simplebar-track.simplebar-vertical{
	width: 11px;
}
.simplebar-track.simplebar-horizontal {
	height: 11px;
}
.scroll-area .simplebar-scrollbar::before {
	background: #aaa;
}

/* btns */
.btn-primary.disabled:hover,
.btn-primary:disabled:hover,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary.active:hover,
.btn-primary:active:hover,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary {
	border-color: #c03061;
	background-color: #c03061;
	color: #fff;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.btn-secondary.active:hover,
.btn-secondary:active:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary {
	border-color: #ccc;
	background-color: #fff;
	color: #333;
}

.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled:hover,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active:hover,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary {
	border-color: #202020;
	background-color: #fff;
	color: #202020;
}

/* pagination */
.page-link {
	border-color: #9e9e9e;
	color: #333;
}
.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover,
.page-link:focus,
.page-link:hover {
	border-color: #999999;
	background-color: #c03061;
	color: #fff;
}
