@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: var(--bodyBgColor);
	font-size: 16px;
}
body {
	line-height: 1.8;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--textColor);
}
a {
	color: var(--textColorSub);
	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;
}
*/

.tsuku{
	font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
}
.noto{
	font-family: "Noto Sans JP", sans-serif;
}

.grecaptcha-badge { visibility: hidden; }

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

.tab-parts{
	display: none;
}

/* fixed
------------------------------------------*/
#fixed-btn {
    position: fixed;
    top: calc((185 / 1920) * 100vw);
    right: 0;
    z-index: 999;
}

#fixed-btn ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

#fixed-btn ul li {}

#fixed-btn ul li a {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
	text-align: center;
	padding-bottom: .5em;
    color: var(--bodyBgColor);
    background: #F0B900;
    font-size: calc((24 / 1920) * 100vw);
    font-weight: 500;
    width: calc((70 / 1920) * 100vw);
    height: calc((280 / 1920) * 100vw);
    line-height: calc((70 / 1920) * 100vw);
    -webkit-border-top-left-radius: calc((5 / 1920) * 100vw);
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: calc((5 / 1920) * 100vw);
    -moz-border-radius-topleft: calc((5 / 1920) * 100vw);
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: calc((5 / 1920) * 100vw);
}
#fixed-btn ul li a i{
	margin-bottom: 1.0em;
	width: calc((27 / 1920) * 100vw);
	height: calc((27 / 1920) * 100vw);
	line-height: calc((27 / 1920) * 100vw);
	text-align: center;
	background: var(--bodyBgColor);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: var(--textColorSub);
}


/* header
------------------------------------------*/
#header {
	background: var(--bodyBgColor);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	padding: 0 calc((80 / 1920) * 100vw);
	z-index: 9999;
}

#header-inner {
    position: relative;
    max-width: 100%;
    height: 80px;
    margin: 0 auto;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-inner a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#header-inner a:hover {
    opacity: 0.7;
}

#header-inner .logo {
	width: auto;
    height: 73px;
    line-height: 73px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	white-space: nowrap;
}
#header-inner .logo a{
	color: inherit;
}

#header-inner .logo img {
    height: 73px;
	margin-right: 10px;
}

#header-inner .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    gap: calc((60 / 1920) * 100vw);
}

#header-inner .nav .tel a {
    display: block;
    color: inherit;
}

#header-inner .mail a{
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: calc((244 / 1920) * 100vw);
	color: var(--bodyBgColor) !important;
	font-size: max(calc((18 / 1920) * 100vw),15px);
	background: linear-gradient(to bottom, #f5b36e, #cd8d4b);
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
}

/* gnav
------------------------------------------*/
.gnav ul {
    position: relative;
    text-align: left;
    zoom: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc((30 / 1920) * 100vw);
}

.gnav ul li {
    display: block;
    position: relative;
    z-index: 20;
}
.gnav ul li a{
	font-size: max(calc((16 / 1920) * 100vw),14px);
}

.gnav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    background: rgba(255, 255, 255, 0.8);
}

.gnav ul li ul li {
    float: none;
}

.gnav ul li ul li a {
    display: block;
    padding: 5px 10px;
    color: inherit;
    font-size: 14px;
    zoom: 1;
}

.gnav ul li ul li a:hover {
    text-decoration: none;
    background: var(--bodyBgColor);
}

.gnav ul li ul li ul {
    top: 0;
    left: 100%;
    width: 100%;
}

.gnav ul a {
    color: inherit;
    display: block;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.gnav ul a span {
    display: block;
}

.gnav ul a .en {
    font-size: 20px;
    font-weight: 700;
}

.gnav ul a .ja {
    font-size: 12px;
}

.gnav ul a:hover {
    opacity: 0.7;
}

.gnav ul img {
    display: block;
}




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

#mainimage {
    position: relative;
    margin: 0 auto calc((230 / 1920) * 100vw);
}

#mainimage #mainimage-inner {
    margin: 0 auto;
    width: 100%;
}

#mainimage #mainimage-inner .slideshow {
    width: 100%;
}

#mainimage #mainimage-inner .slideshow .slick-slide {
    backface-visibility: hidden;
    width: 100%;
}

#mainimage #mainimage-inner .slideshow .slick-slide img {
    width: 100%;
}


#mainimage .mv-contents {
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    font-weight: 700;
}
#mainimage .mv-contents .main{
	margin: 0 auto;
	max-width: 1090px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}
#mainimage .mv-contents .main .mv-lead{
	margin-bottom: calc((25 / 1920) * 100vw);
	width: calc((534 / 1920) * 100vw);
}
#mainimage .mv-contents .main .mv-catch{
	margin-bottom: calc((30 / 1920) * 100vw);
	font-size: calc((86 / 1920) * 100vw);
	color: var(--textColorSub02);
	line-height: 1.2;
	text-shadow: 2px 2px 6px #fff, -2px 2px 6px #fff, 2px -2px 6px #fff, -2px -2px 6px #fff, 2px 0px 6px #fff, 0px 2px 6px #fff, -2px 0px 6px #fff, 0px -2px 6px #fff;
}
#mainimage .mv-contents .main .mv-appeal ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: calc((30 / 1920) * 100vw);
}
#mainimage .mv-contents .main .mv-appeal ul li{
	width: calc((145 / 1920) * 100vw);
	height: calc((144 / 1920) * 100vw);
	background: url(/images/base/mv-appeal-bg.png) no-repeat center center / cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--bodyBgColor);	
	font-size: calc((22 / 1920) * 100vw);
	line-height: 1.2;
}
#mainimage .mv-contents .main .mv-appeal ul li strong{
	font-size: calc((30 / 1920) * 100vw);
}
#mainimage .mv-trial{
	position: absolute;
	bottom: calc((180 / 1920) * -100vw);
	right: 0;
	left: 0;
}
#mainimage .mv-trial .main{
	margin: 0 auto;
	width: calc((780 / 1920) * 100vw);
	height: calc((230 / 1920) * 100vw);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--bgColor);	
	border: var(--boderColor) 5px solid;
}
#mainimage .mv-trial .main .catch{
	position: relative;
	display: inline-block;
	margin-bottom: calc((10 / 1920) * 100vw);
	height: calc((30 / 1920) * 100vw);
	line-height: calc((30 / 1920) * 100vw);
	font-size: calc((24 / 1920) * 100vw);
	font-weight: 600;
}
#mainimage .mv-trial .main .catch:before,
#mainimage .mv-trial .main .catch:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: calc((20 / 1920) * 100vw);
	height: calc((30 / 1920) * 100vw);
	background: url(/images/base/mv-trial-catch-bg.png) no-repeat center center / cover;
}
#mainimage .mv-trial .main .catch:before{
	left: calc((30 / 1920) * -100vw);
}
#mainimage .mv-trial .main .catch:after{
	right: calc((30 / 1920) * -100vw);
	transform: scaleX(-1)  translateY(-50%);
}
#mainimage .mv-trial .main .btns a{
	margin-bottom: calc((15 / 1920) * 100vw);
	position: relative;
	display: block;
	width: calc((500 / 1920) * 100vw);
	height: calc((110 / 1920) * 100vw);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: linear-gradient(to bottom, var(--keyColor), var(--keyColorSub));
	color: var(--bodyBgColor);
	font-size: calc((40 / 1920) * 100vw);
	text-align: right;
	padding-right: calc((50 / 1920) * 100vw);
	line-height: 1.2;
	padding-top: .7em;
	font-weight: 600;
}
#mainimage .mv-trial .main .btns a:before{
	display: block;
	content: '\f0da';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc((50 / 1920) * 100vw);
	font-size: calc((22 / 1920) * 100vw);
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: calc((27 / 1920) * 100vw);
	height: calc((27 / 1920) * 100vw);
	line-height: calc((27 / 1920) * 100vw);
	text-align: center;
	background: var(--bodyBgColor);	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: var(--boderColor);	
}
#mainimage .mv-trial .main .btns a span{
	display: block;
	font-size: calc((18 / 1920) * 100vw);
}
#mainimage .mv-trial .main .header{
	display: none;
	font-size: calc((24 / 1920) * 100vw);
	margin-bottom: calc((10 / 1920) * 100vw);
	line-height: 1;
	font-weight: 600;
}
#mainimage .mv-trial .main .tel{
	display: none;
	font-size: calc((26 / 1920) * 100vw);
	color: var(--textColorSub);
	line-height: 1;
	font-weight: 600;
}
#mainimage .mv-trial .main .tel a{
	font-size: calc((48 / 1920) * 100vw);
}

/* content main
------------------------------------------*/
/* general */
#content-inner {
	max-width: 1090px;
	margin: 0 auto;
	padding-bottom: 60px;
}

#main {
	max-width: 1090px;
	text-align: left;
}
.home #content-inner{
	padding: 0;
	max-width: unset;
}
.home #main {
	max-width: unset;
	text-align: center;
}

.home .arrow{
	margin-top: 80px;
}

/* common */
.home a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	color: inherit;
}
.home a:hover{
	opacity: .7;
}

.home section{
	padding-top: 80px;
	margin-top: -80px;
}
.common{
	padding: 60px 0 80px;
}
.common-title {
    margin-bottom: 40px;
	font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
}

.common-title span {
    display: block;
}

.common-title .en {
}

.common-title .ja {
    font-size: 44px;
	font-weight: 600;
}
.common-title strong{
    font-size: 54px;
	font-weight: 600;
}

.common-btn a {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    color: var(--bodyBgColor);
    text-align: center;
    padding: 0 .5em;
    background: var(--keyColor);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.common-btn a:before {
    display: block;
    content: '\f0da';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.common-btn a:hover {
    opacity: 0.7;
}


img.noimage{
	border: var(--keyColorSub) 1px solid;
}

/* main */
/* trouble */
#trouble{
	background: url(/images/base/main-trouble-bg.png) repeat-x center bottom;
}
.main-trouble {
}

.main-trouble .main {
    margin: 0 auto;
    max-width: 1090px;
	position: relative;
}

.main-trouble .main .image{
	position: absolute;
	bottom: 0;
	right: 0;
}
.main-trouble .main ul {
    margin: 0 auto;
    max-width: 660px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.main-trouble .main ul li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 189px;
	height: 191px;
	background: url(/images/base/main-trouble-circle.png) no-repeat center center / cover;
	color: var(--bodyBgColor);
	line-height: 1.3;
}
.main-trouble .main ul li h3{
	font-weight: 600;
	font-size: 28px;
}

/* cause */

.main-cause .common-title{
	margin-bottom: 25px;
	padding-bottom: 20px;
	background: url(/images/base/main-cause-title-bg.png) no-repeat 53% bottom;
}
.main-cause .common-title strong{
    font-size: 48px;
	color: #7C9CB2;
}
.main-cause .common-title br{
	display: none;
}
.main-cause .main {
	position: relative;
    margin: 0 auto;
    max-width: 1090px;
	padding: 50px 37px;
	background: #EDEAE7 url(/images/base/snow.png) no-repeat right 180px top;
}

.main-cause .main h3{
	margin: 0 auto 63px;
	display: block;
	width: 432px;
	height: 65px;
	line-height: 65px;
	font-size: 30px;
	font-weight: 600;
	background: url(/images/base/main-cause-h3-bg.png) no-repeat center center;
}
.main-cause .main h3 strong{
	font-size: 40px;
	font-weight: 600;
}
.main-cause .main ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
	margin-bottom: 35px;
}
.main-cause .main ul li{
	position: relative;
	padding: 35px 20px;
	background: var(--bodyBgColor);
}
.main-cause .main ul li:before{
	display: block;
	content: '';
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
	width: 47px;
	height: 47px;
	background: url(/images/base/check01.png) no-repeat center center / cover;
}
.main-cause .main ul li h4{
	font-size: 24px;
	color: #314F64;
	margin-bottom: .5em;
	font-weight: 600;
}
.main-cause .main ul li .text{
	font-size: 16px;
	text-align: left;
	line-height: 1.8;
}
.main-cause .main>.text{
	
	font-size: 24px;
	font-weight: 600;
}
.main-cause .main>.text strong{
	color: #9B5721;
	font-weight: 600;
}
.main-cause .but{
	position: relative;
	margin: 0 auto 50px;
	height: 74px;
    max-width: 1090px;
	color: var(--bodyBgColor);
	font-size: 40px;
	font-weight: 600;
}
.main-cause .but span{
	position: relative;
	display: block;
	z-index: 10;
	height: 74px;
	line-height: 74px;
}
.main-cause .but:before{
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    border-style: solid;
    border-width: 74px 540px 0 540px;
    border-color: #716D6A transparent transparent transparent;
}
.main-cause .waste{
	margin: 0 auto;
	max-width: 1090px;
	height: 306px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-cause .waste .image{
	width: 235px;
}
.main-cause .waste .text{
	width: calc(100% - 235px);
	height: 306px;
	background: url(/images/base/main-couse-waste-bg.png) no-repeat center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.main-cause .waste .text br:first-child{
	display: none;
}
.main-cause .waste .text span{
	display: inline-block;
	text-align: left;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.3;
}

/* bathing */
.main-bathing{
	padding-top: 175px;
	background: url(/images/base/main-bathing-bg.png) no-repeat center 0;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.main-bathing .common-title{
	margin-bottom: 30px;
}
.main-bathing .common-title span.sub{
	position: relative;
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	color: var(--textColorSub);
}
.main-bathing .common-title span.sub:before,
.main-bathing .common-title span.sub:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 31px;
	height: 24px;
	background: url(/images/base/main-bathing-title-bg.png) no-repeat center center / cover;
}
.main-bathing .common-title span.sub:before{
	left: -40px;
}
.main-bathing .common-title span.sub:after{
	right: -40px;
}
.main-bathing .main{
	position: relative;
	margin: 0 auto 130px;
	max-width: 1090px;
	height: 684px;
}
.main-bathing .main .image{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.main-bathing .main ul li{
	position: absolute;
	width: 170px;
	height: 126px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: var(--bodyBgColor);
	background: url(/images/base/main-bathing-list-bg.png) no-repeat center center / cover;
}
.main-bathing .main ul li:nth-child(1),
.main-bathing .main ul li:nth-child(2)
{
	top: 0;
}
.main-bathing .main ul li:nth-child(1){
	left: 170px;
}
.main-bathing .main ul li:nth-child(2){
	right: 170px;
}
.main-bathing .main ul li:nth-child(3){
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
}
.main-bathing .main ul li:nth-child(4){
	top: 114px;
	left: 0;
}
.main-bathing .main ul li:nth-child(5){
	top: 86px;
	right: 0;
}
.main-bathing .main ul li:nth-child(6),
.main-bathing .main ul li:nth-child(7){
	top: 188px;
}
.main-bathing .main ul li:nth-child(6){
	left: 330px;
}
.main-bathing .main ul li:nth-child(7){
	right: 330px;
}
.main-bathing .main ul li:nth-child(8),
.main-bathing .main ul li:nth-child(9){
	top: 297px;
}
.main-bathing .main ul li:nth-child(8){
	left: 86px;
}
.main-bathing .main ul li:nth-child(9){
	right: 86px;
}
.main-bathing .main ul li:nth-child(10),
.main-bathing .main ul li:nth-child(11){
	bottom: 60px;
}
.main-bathing .main ul li:nth-child(10){
	left: 30px;
}
.main-bathing .main ul li:nth-child(11){
	right: 15px;
}

.main-bathing .point{
	margin: 0 auto;
	max-width: 1090px;
}
.main-bathing .point h3{
	display: inline-block;
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 60px;
	background: url(/images/base/main-point-title-bg.png) no-repeat .3em 1.3em;
	line-height: 1.3;
}
.main-bathing .point h3 strong{
	font-size: 60px;
	font-weight: 400;
}
.main-bathing .point-main ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}
.main-bathing .point-main ul li .point{
	margin-bottom: 18px;
}
.main-bathing .point-main ul li .image{
}
.main-bathing .point-main ul li h4{
	margin: 20px 0;
	height: 60px;
	font-size: 26px;
	color: var(--textColorSub02);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.2;
}
.main-bathing .point-main ul li .text{
	font-size: 16px;
	text-align: left;
}

.main-common-group{
	background: url(/images/base/main-common-bg.png) no-repeat center top / cover;
}
.main-common-group .arrow{
	margin-bottom: 50px;
}

/* bathadditive */
.main-bathadditive{
	margin: 0 auto;
	max-width: 1090px;
}
.main-bathadditive h2 .ja{
	display: inline-block;
	position: relative;
	margin-bottom: 70px;
	height: 59px;
	line-height: 59px;
	font-size: 40px;
	font-weight: 600;
	color: var(--textColorSub);
}
.main-bathadditive h2 .ja strong{
	font-size: 46px;
	display: inline-block;
	letter-spacing: -.1em;
	background: url(/images/base/main-bathadditive-title-strong-bg.png) no-repeat center bottom;
}
.main-bathadditive h2 .ja strong span{
	font-style: italic;
}
.main-bathadditive h2 .ja br{
	display: none;
}
.main-bathadditive h2 .sub{
	margin: 0 auto 20px;
	display: block;
	width: 172px;
	height: 80px;
	font-size: 40px;
	color: var(--bodyBgColor);
	line-height: 1.5;
	background: url(/images/base/main-bathadditive-subtitle-bg.png) no-repeat center center / cover;
}

.main-bathadditive h2 .ja:before,
.main-bathadditive h2 .ja:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-45%);
	width: 59px;
	height: 120px;
	background: url(/images/base/main-bathadditive-title-bg.png) no-repeat center center / cover;
}
.main-bathadditive h2 .ja:before{
	left: -65px;
}
.main-bathadditive h2 .ja:after{
	right: -65px;
	transform: scaleX(-1)  translateY(-45%);
}
.main-bathadditive .main .banner{
	margin-bottom: 10px;
	padding: 30px 50px;
	background: url(/images/base/main-bathadditive-banner-bg.png) no-repeat center center / cover;
}
.main-bathadditive .main .banner a{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-bathadditive .main .banner a span{
	display: block;
}
.main-bathadditive .main .banner a .image{
	width: 400px;
}
.main-bathadditive .main .banner a .texts{
	width: calc(100% - 400px);
}
.main-bathadditive .main .banner a .texts .header{
	font-size: 32px;
	font-weight: 600;
	color: var(--bodyBgColor);
	line-height: 1.5;
}
.main-bathadditive .main .banner a .texts .header strong{
	font-size: 40px;
}
.main-bathadditive .main .banner a .texts .name{
	color: #7E3800;
	line-height: 1.2;
}
.main-bathadditive .main .banner a .texts .name .ja{
	font-size: 138px;
}
.main-bathadditive .main .banner a .texts .name .en{
	font-size: 28px;
}
.main-bathadditive .main .remarks{
	font-size: 14px;
	text-align: left;
}

/* about */
.main-about{
	padding-bottom: 230px;
}
.main-about h2{
	margin-bottom: 20px;
}
.main-about h2 .ja{
	font-size: 54px;
	color: var(--textColorSub02);;
}
.main-about h2 .sub{
	margin: 0 auto;
	width: 442px;
	height: 77px;
	padding-top: .2em;
	color: var(--bodyBgColor);
	font-size: 30px;
	font-weight: 600;
	background: url(/images/base/main-about-title-bg.png) no-repeat center center / cover;
}

/* ginger */
.main-ginger{
	margin-top: -150px;
	padding: 230px 0 75px;
	background: url(/images/base/main-ginger-bg.png) no-repeat center 0;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.main-ginger .main{
	margin: 0 auto;
	max-width: 1090px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-ginger .main .image{
	width: 467px;
}
.main-ginger .main .plus{
	width: 73px;
	text-align: left;
	font-size: 70px;
	color: var(--textColorSub02);
}
.main-ginger .main .texts{
	width: 540px;
}
.main-ginger .main .texts .ginger{
	position: relative;
	width: 540px;
	height: 180px;
	background: var(--bodyBgColor);
	padding: 10px 105px 20px 25px;
	font-weight: 600;
	margin-bottom: 36px;
}
.main-ginger .main .texts .ginger:before{
	display: block;
	content: '';
	position: absolute;
	top: -50px;
	right: 5px;
	width: 149px;
	height: 254px;
	background: url(/images/base/ginger.png) no-repeat center center / cover;
}
.main-ginger .main .texts .ginger h2{
	margin-bottom: 10px;
	padding-bottom: 5px;
	font-size: 46px;
	letter-spacing: -.02em;
	line-height: 1.2;
	background: url(/images/base/main-ginger-title-bg.png) no-repeat center bottom;
}
.main-ginger .main .texts .ginger h2 strong{
	font-weight: 400;
	color: var(--textColorSub);
}
.main-ginger .main .texts .ginger h3{
	position: absolute;
	top: -80px;
	right: 63px;
	width: 143px;
	height: 90px;
	color: var(--bodyBgColor);
	font-size: 16px;
	background: url(/images/base/balloon.png) no-repeat center center / cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.3;
	font-weight: 600;
}
.main-ginger .main .texts .ginger .text{
	font-size: 27px;
	line-height: 1.4;
}
.main-ginger .main .texts .ginger .text span{
	font-size: 24px;
}
.main-ginger .main .texts .ginger .text strong{
	display: inline-block;
	width: 127px;
	height: 33px;
	line-height: 33px;
	text-align: center;
	color: var(--bodyBgColor);
	background: var(--keyColor);
}
.main-ginger .main .texts .features ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
}
.main-ginger .main .texts .features ul li{
	width: 157px;
	height: 157px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.2;
	background: url(/images/base/main-ginger-list-bg.png) no-repeat center center / cover;
}
.main-ginger .main .texts .features ul li .header{
	font-size: 16px;
	color: var(--textColorSub02);
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.main-ginger .main .texts .features ul li .header strong{
	font-size: 22px;
	font-weight: 400;
}
.main-ginger .main .texts .features ul li h4{
	margin-top: .3em;
	color: var(--bodyBgColor);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1;
}

.main-ginger + .arrow {
    margin-top: 0;
}

.main-common-group02{
	background: url(/images/base/main-common-bg02.png) no-repeat center 0;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

/* different */
.main-different{
	margin: 0 auto 50px;
	max-width: 1090px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}
.main-different h2{
	padding-top: .5em;
	width: 638px;
	height: 207px;
	background: url(/images/base/main-different-bg.png) no-repeat center center / cover;
	line-height: 1.3;
	font-size: 48px;
}
.main-different h2 strong{
	color: var(--textColorSub);
	font-weight: 400;
}


/* trial */
.main-trial{
	margin: 0 auto 40px;
	width: 780px;
	height: 230px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--bgColor);	
	border: var(--boderColor) 5px solid;
}
.main-trial .catch{
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	height: 30px;
	line-height: 30px;
	font-size: 24px;
	font-weight: 600;
}
.main-trial .catch:before,
.main-trial .catch:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 30px;
	background: url(/images/base/mv-trial-catch-bg.png) no-repeat center center / cover;
}
.main-trial .catch:before{
	left: -30px;
}
.main-trial .catch:after{
	right: -30px;
	transform: scaleX(-1)  translateY(-50%);
}
.main-trial .btns a{
	margin-bottom: 15px;
	position: relative;
	display: block;
	width: 500px;
	height: 110px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: linear-gradient(to bottom, var(--keyColor), var(--keyColorSub));
	color: var(--bodyBgColor);
	font-size: 40px;
	text-align: right;
	padding-right: 50px;
	line-height: 1.2;
	padding-top: .7em;
	font-weight: 600;
	-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
}
.main-trial .btns a:before{
	display: block;
	content: '\f0da';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 50px;
	font-size: 22px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 27px;
	height: 27px;
	line-height: 27px;
	text-align: center;
	background: var(--bodyBgColor);	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: var(--boderColor);	
}
.main-trial .btns a span{
	display: block;
	font-size: 18px;
}
.main-trial .header{
	display: none;
	font-size: 24px;
	margin-bottom: 10px;
	line-height: 1;
	font-weight: 600;
}
.main-trial .tel{
	display: none;
	font-size: 26px;
	color: var(--textColorSub);
	line-height: 1;
	font-weight: 600;
}
.main-trial .tel a{
	font-size: 48px;
}

/* adviser */
.main-adviser {
}
.main-adviser .main {
    margin: 0 auto;
    max-width: 1090px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-adviser .main .image {
    max-width: 456px;
	position: relative;
}
.main-adviser .main .image:before{
	display: block;
	content: '';
	position: absolute;
	bottom: -22px;
	left: -50px;
	width: 140px;
	height: 229px;
	background: url(/images/base/tree.png) no-repeat center center / cover;
}

.main-adviser .main .texts {
    max-width: 540px;
    text-align: left;
}

.main-adviser .main .texts .catch{
	margin: 0 0 -5px 300px;
	width: 135px;
	height: 89px;
	font-size: 20px;
	font-weight: 600;
	color: var(--bodyBgColor);
	line-height: 1.3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url(/images/base/balloon02.png) no-repeat center center / cover;
}
.main-adviser .main .texts h3 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0.5em;
	color: var(--textColorSub02);
	line-height: 1.3;
}
.main-adviser .main .texts h3 span{
	display: block;
	font-size: 30px;
}
.main-adviser .main .texts .text {
    font-size: 16px;
	line-height: 1.8;
}
.main-adviser .main .texts .text h4{
	margin-bottom: .5em;
    font-size: 20px;
	width: 77px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	display: inline-block;
	background: url(/images/base/main-adviser-h4-bg.png) no-repeat center center / cover;
}
.main-adviser .main .texts .text p:not(:last-child){
	margin-bottom: 1.0em;
}
.main-adviser .main .texts .more{
	display: none;
}

/* voice */
.main-voice{
	position: relative;
	padding: 150px 0 100px;
	background: url(/images/base/main-voice-bg.png) no-repeat center 0;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.main-voice h2{
	position: relative;
	line-height: 1.4;
}
.main-voice h2:before{
	display: block;
	content: '';
	position: absolute;
	top: -70px;
	left: 50%;
	transform: translateX(-50%);
	width: 84px;
	height: 62px;
	background: url(/images/base/main-voice-title-bg.png) no-repeat center center / cover;
}
.main-voice h2 .sub{
	font-size: 30px;
	color: var(--textColorSub02);
}
.main-voice .image{
	position: absolute;
	top: 60px;
	right: calc((50vw - 540px) + 170px);
}
.main-voice .main{
	margin: 0 auto;
	padding-right: 30px;
	max-width: 1090px;
}
.main-voice .main ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px 96px;
}
.main-voice .main ul li{
	padding: 30px;
	background: var(--bodyBgColor);
	border: var(--bgColorSub) 3px solid;
	position: relative;
	text-align: left;
}
.main-voice .main ul li h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--textColorSub);
	margin-bottom: .5em;
	padding-bottom: .5em;
	background: url(/images/base/main-voice-h3-bg.png) no-repeat center bottom;
}
.main-voice .main ul li .text{
	font-size: 16px;
}
.main-voice .main ul li h4{
	position: absolute;
	bottom: -40px;
	right: -30px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	font-size: 20px;
	color: var(--bodyBgColor);
	background: url(/images/base/main-voice-name-bg.png) no-repeat center center / cover;
}
.main-voice .main ul li h4 span{
	font-size: 18px;
}

/* faq */
.main-faq{
	background: url(/images/base/main-faq-bg.png) no-repeat center 114px;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.main-faq h2{
	display: inline-block;
	position: relative;
}
.main-faq h2:before,
.main-faq h2:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 73px;
	background: url(/images/base/main-faq-title-bg.png) no-repeat center center / cover;
}
.main-faq h2:before{
	left: -20px;
}
.main-faq h2:after{
	right: -20px;
	transform: scaleX(-1)  translateY(-50%);
}
.main-faq .main{
	margin: 0 auto;
	max-width: 1090px;
}
.main-faq .main ul{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}
.main-faq .main ul li{
	text-align: left;
}
.main-faq .main ul li h3{
	font-size: 30px;
	margin-bottom: 20px;
	font-weight: 600;
}
.main-faq .main ul li h3 span{
	display: inline-block;
}
.main-faq .main ul li h3 span.q{
	width: 50px;
	text-align: left;
	color: var(--textColorSub);
}
.main-faq .main ul li h3 span.header{
	padding-bottom: 20px;
	width: calc(100% - 50px);
	background: url(/images/base/main-faq-line.png) no-repeat center bottom;
}
.main-faq .main ul li .text{
	padding-left: 50px;
	font-size: 16px;
}
.main-faq .more{
	display: none;
}

section#faq + .main-trial{
	margin-bottom: 80px;
}


/* gift */
.main-gift {
	background: url(/images/base/main-gift-bg.png) no-repeat center center / cover;
}
.main-gift h2{
	margin: 0 auto 60px;
	padding-top: .2em;
	width: 885px;
	height: 163px;
	text-align: center;
	line-height: 1.3;
	color: var(--bodyBgColor);
	font-size: 40px;
	font-weight: 600;
	background: url(/images/base/main-gift-title-bg.png) no-repeat center center / cover;
}
.main-gift h2 br:last-child{
	display: none;
}
.main-gift .main{
	margin: 0 auto;
	max-width: 1090px;
}
.main-gift .main>ul{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 56px;
}
.main-gift .main>ul>li{
	position: relative;
	padding: 50px 55px 25px;
	background: var(--bodyBgColor);
	border: var(--bgColorSub) 2px solid;
	display: flex;
	justify-content: space-between;
}
.main-gift .main>ul>li .label{
	position: absolute;
	top: -15px;
	left: 20px;
	width: 90px;
	height: 75px;
	line-height: 65px;
	color: var(--bodyBgColor);
	font-size: 18px;
	background: var(--bgColorSub);
}
.main-gift .main>ul>li .label strong{
	font-size: 30px;
}
.main-gift .main>ul>li .label:before{
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
    border-style: solid;
    border-width: 15px 0 0 10px;
    border-color: transparent transparent transparent #765C47;
}
.main-gift .main>ul>li .label span{
	display: block;
	position: absolute;
	top: 5px;
	right: 0;
	bottom: 0;
	left: 0;
}
.main-gift .main>ul>li .label span:before,
.main-gift .main>ul>li .label span:after{
	display: block;
	content: '';
	position: absolute;
	bottom: -15px;
}
.main-gift .main>ul>li .label span:before{
	left: 0;
    border-style: solid;
    border-width: 15px 45px 0 0;
    border-color: var(--bgColorSub) transparent transparent transparent;
}
.main-gift .main>ul>li .label span:after{
	right: 0;
    border-style: solid;
    border-width: 0 45px 15px 0;
    border-color: transparent var(--bgColorSub) transparent transparent;
}
.main-gift .main>ul>li .texts{
	width: 374px;
}
.main-gift .main>ul>li .texts h3{
	font-size: 44px;
	color: var(--textColorSub02);
	font-weight: 600;
}
.main-gift .main>ul>li .texts .text{
	font-size: 16px;
	text-align: left;
	margin-bottom: 1.0em;
}
.main-gift .main>ul>li .texts .text ul li:before{
	content: '\f00c';
	padding-right: 10px;
	font-weight: bold;
	font-size: 13px;
	color: var(--textColorSub);
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.main-gift .main>ul>li h4{
	display: inline-block;
	position: relative;
}
.main-gift .main>ul>li h4:before,
.main-gift .main>ul>li h4:after{
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 22px;
	background: url(/images/base/mv-trial-catch-bg.png) no-repeat center center / cover;
}
.main-gift .main>ul>li h4:before{
	left: -30px;
}
.main-gift .main>ul>li h4:after{
	right: -30px;
	transform: scaleX(-1)  translateY(-50%);
}
.main-gift .main>ul>li .texts .prices{
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 30px;
	line-height: 1;
}
.main-gift .main>ul>li .texts .prices .lot{
	font-size: 14px;
}
.main-gift .main>ul>li .texts .prices .lot strong{
	display: block;
	font-size: 20px;
}
.main-gift .main>ul>li .texts .prices .price{
	font-size: 60px;
	color: var(--keyColor);
}
.main-gift .main>ul>li .texts .prices .price span{
	font-size: 40px;
	margin-left: .3em;
}
.main-gift .main>ul>li .texts .link a{
	margin-bottom: 10px;
	display: block;
	width: 100%;
	height: 80px;
	text-align: left;
	padding-left: 37px;
	color: var(--bodyBgColor);
	font-size: 30px;
	line-height: 80px;
	background: linear-gradient(to bottom, var(--keyColor), var(--keyColorSub));
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
}
.main-gift .main>ul>li .texts .link a i{
	display: inline-block;
	width: 27px;
	height: 27px;
	line-height: 27px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--bodyBgColor);
	color: #EA9900;
	font-size: 20px;
	margin-right: 50px;
}
.main-gift .main>ul>li .texts .remarks{
	font-size: 14px;
	text-align: left;
	font-weight: 600;
}
.main-gift .main>ul>li .image{
	width: 495px;
}


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



/* footer
------------------------------------------*/
#footer {
    background: var(--bodyBgColor);
}

#footer a{
	color: inherit;
}
#footer .main {
    position: relative;
    max-width: 1090px;
    padding: 30px 0 15px;
    margin: 0 auto;
}

#footer .main .company {
	margin-bottom: 30px;
    text-align: left;
}

#footer .main .company .logo a{
    margin-bottom: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
	font-size: 20px;
	font-weight: 600;
	height: 65px;
}
#footer .main .company .logo img{
	width: 65px;
}

#footer .main .company .company-main{
	display: flex;
	justify-content: space-between;
}
#footer .main .company .company-main .map,
#footer .main .company .company-main .googlemap iframe{
	width: 408px;
	height: 175px;
}
#footer .main .company .company-main .fabout th{
    font-size: 18px;
	width: 95px;
	vertical-align: top;
}
#footer .main .company .company-main .fabout td{
	font-size: 16px;
}


#footer .main .fnav ul{
	text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}

#footer .main .fnav ul li {
    font-size: 16px;
}


#footer .copyright {
    text-align: center;
    font-size: 16px;
    color: var(--bodyBgColor);
    height: 40px;
    line-height: 40px;
    background: var(--textColorSub);
}




.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 30px;
	z-index: 20;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
    background: var(--textColorSub);
	font-size: 20px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.pagetop-btn-wrap a{
    color: var(--bodyBgColor);
}


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


/* heading */
.page-title-area{
    background: var(--textColorSub);
}
.page-title-area-main{
	margin: 0 auto;
	max-width: 1090px;
	height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.page-title {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
}
.entry-title, .entry-content h2:not([class]) {
	margin-bottom: 25px;
	padding: 10px 30px;
    color: var(--bodyBgColor);
    background: var(--textColorSub);
	font-size: 25px;
	font-weight: bold;
}
.entry-title a, .entry-content h2:not([class]) a {
	color: inherit;
}
.h3, .entry-content h3:not([class]) {
	margin-bottom: 25px;
	padding: 5px 10px;
	background: var(--bgColor);
	font-size: 20px;
	font-weight: bold;
	border-left: var(--keyColor) 3px solid;
}
.h4, .entry-content h4:not([class]) {
	margin-bottom: 25px;
	padding: 5px;
	border-left: var(--keyColor) 3px solid;
	font-size: 18px;
	font-weight: bold;
}
.h5, .entry-content h5:not([class]) {
	margin-bottom: 25px;
	padding: 5px;
	border-bottom: 1px dashed var(--keyColor);
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}
.breadcrumb {
	justify-content: flex-start;
	margin: 10px 0 10px;
	padding: 0;
	background: none;
	font-size: 12px;
}
.breadcrumb-item + .breadcrumb-item:before {
	content: '>';
	color: inherit;
}
.breadcrumb-item.home:before {
	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 */
.gallery-list {
}
.gallery-list-item {
	padding: 0 15px 15px;
}
.gallery-list-img {
	margin-bottom: 3px;
}
.gallery-list-title {
	font-size: 13px;
}
.gallery-list-more {
	text-align: right;
}

/* single */
.gallery-detail {
	margin-bottom: 20px;
	text-align: center;
}
.gallery-detail-row {
}
.gallery-detail-col {
}
.gallery-detail-main {
}
.gallery-detail-sub {
}
.gallery-detail-sub li {
	padding: 0 5px 10px;
}

/* 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: var(--keyColor);
	background-color: var(--keyColor);
	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: var(--keyColor);
	background-color: #fff;
	color: var(--keyColor);
}

/* pagination */
.page-link {
	border-color: var(--keyColor);
	color: var(--keyColor);
}
.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: #9e9e9e;
	color: #fff;
}
