@charset "utf-8";

/* ////////////////////////////////////////////
 *                 base & layout
 * //////////////////////////////////////////// */
 
 
/* Color
------------------------------------------*/
:root {
	--bodyBgColor: #fff;
	--textColor: #000;
	--textColorSub: #960139;
	--keyColor: #960139;
	--keyColorSub: #212121;
	--bgColor: #f9eff2;
	--bgColorSub: #ebebeb;
	--gradientColorVertical: linear-gradient(to bottom, #f9eff2, #960139, #98013a, #960139);
	--gradientColorVertical02: linear-gradient(to bottom, #81012e, #940138, #960139);
	--borderColor: #ededed;
	--borderColorSub: #e7e5e2;
	--borderColorSub02: #d9d9d9;
}

/* Typography
------------------------------------------*/
html {
	background: var(--bodyBgColor);
	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: 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;
}
*/



.rift,
.en{
	font-family: "rift", sans-serif;
}
.noto,
.ja{
	font-family: "Noto Sans JP", sans-serif;
}

/* Layout
------------------------------------------*/
body {
	min-width: 1080px;
	text-align: center;
}
body.home {
	word-break: break-all;
}
#container {
	overflow: hidden;
}

.noimage{
	border: var(--keyColor) 1px solid;
}


/* header
------------------------------------------*/
#header {
	width: 100%;
	a{
		text-decoration: none;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
	}
	a:hover{
		opacity: .7;
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		height: 110px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		.header-nav{
			display: flex;
			justify-content: flex-end;
			align-items: center;
			.header-mail{
				margin-left: 10px;
				display: flex;
				justify-content: flex-end;
				align-items: center;
				gap: 5px;
				a{
					width: 110px;
					height: 52px;
					line-height: 1.2;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					text-align: center;
					border: var(--keyColor) 1px solid;
					-webkit-border-radius: 5px;
					-moz-border-radius: 5px;
					border-radius: 5px;
					.en{
						font-size: 20px;
						font-weight: 600;
					}
					.ja{
						font-size: 10px;
						font-weight: 500;
					}
					&:hover{
						color: var(--keyColor);
					}
					&:last-child{
						background: var(--keyColor);
						color: var(--bodyBgColor);
						&:hover{
							color: var(--bodyBgColor);
						}
					}
				}
			}
			.header-search{
				margin-left: 30px;
				position: relative;
				width: 240px;
				height: 38px;
				.form-control{
					width: 240px;
					height: 38px;
					-webkit-border-radius: 19px;
					-moz-border-radius: 19px;
					border-radius: 19px;
					background: var(--bgColorSub);
					border: var(--borderColorSub) 1px solid;
					&::placeholder{
						font-size: 11px;
					}
				}
				.search-btn{
					position: absolute;
					top: 60%;
					transform: translateY(-50%);
					right: 15px;
				}
			}
			.header-tel{
				display: flex;
				justify-content: flex-end;
				align-items: center;
				gap: 20px;
				span{
					font-size: 30px;
					font-weight: 700;
					a{
						color: var(--textColor);
					}
					i{
						margin-right: .2em;
							color: var(--textColorSub);
					}
				}
			}
		}
	}
	.gnav-wrapper{
		width: 100%;
		border-top: var(--borderColor) 1px solid;
		.gnav{
			margin: 0 auto;
			width: 1080px;
			height: 80px;
			.gnav-list {
				position: relative;
				text-align: left;
				zoom: 1;
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 80px;
				&>li {
					display: block;
					position: relative;
					z-index: 20;
					height: 80px;
					&>a{
						display: flex;
						flex-direction: column;
						justify-content: center;
						align-items: center;
						text-align: center;
						height: 80px;
						line-height: 1.2;
						.en{
							font-size: 22px;
							font-weight: 600;
							color: var(--textColor);
							letter-spacing: .05em;
						}
						.ja{
							font-size: 11px;
							font-weight: 500;
							font-style: italic;
						}
					}
					&::after{
						display: block;
						content: '';
						position: absolute;
						top: 0;
						right: -40px;
						bottom: 0;
						border-right: var(--borderColor) 1px solid;
					}
					&:first-child{
						&::before{
							display: block;
							content: '';
							position: absolute;
							top: 0;
							left: -40px;
							bottom: 0;
							border-left: var(--borderColor) 1px solid;
						}
					}
					ul{
						display: none;
						position: absolute;
						top: 100%;
						left: 0;
						width: 200px;
						background: rgba(255,255,255,.8);
						li{
							float: none;
							a{
								display: block;
								padding: 5px 10px;
								color: inherit;
								font-size: 14px;
								zoom: 1;
								&:hover {
									text-decoration: none;
									background: #fff;
								}
							}
							ul {
								top: 0;
								left: 100%;
								width: 100%;
							}
						}
					}
				}
			}
		}
	}
}


/* mainimage
------------------------------------------*/
/* 横スライド
.slideshow .slick-list {overflow: visible;}
*/

#mainimage {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	aspect-ratio: 960 / 349;
	.main{
		position: relative;
		width: 100%;
		height: 100%;
		.slideshow {
			position: relative;
			width: 100%;
			height: 100%;
			.slick-slider{
				.slick-slide {
					width: 100%;
					height: 100%;
					backface-visibility: hidden;
					position: relative;
					.catch{
						position: absolute;
						z-index: 20;
						top: calc((10 / 192) * 100vw);
						left: calc((9 / 192) * 100vw);
						color: var(--bodyBgColor);
						font-size: calc((48 / 1920) * 100vw);
						font-style: italic;
						text-align: left;
						line-height: 1.3;
					}
					img {
						width: calc((138 / 192) * 100%);
						margin-left: calc((54 / 192) * 100%);
						height: auto;
					}
					&::before{
						content: '';
						position: absolute;
						z-index: 10;
						top: 0;
						bottom: 0;
						left: 0;
						height: 100%;
						aspect-ratio: 677 / 698;
						background: url(/images/default/mv-bg.png) no-repeat center center / cover;
					}
				}
			}
				
		}
	}
}



/* content main
------------------------------------------*/
#content-inner {
	width: 1080px;
	margin: 0 auto;
	padding-bottom: 136px;
}

#main {
	width: 1080px;
	text-align: left;
}
#main.products {
	margin: 0 -60px;
	width: 1200px;
}
.home #content-inner{
	width: 100%;
}
.home #main {
	width: 100%;
	text-align: center;
}
.template-type-blog #main {
	float: right;
	width: 800px;
}


.main-news {
	margin: 0 auto;
	width: 1080px;
	padding: 20px 0;
	h2{
		float: left;
		width: 120px;
		text-align: left;
		line-height: 46px;
		font-size: 44px;
		font-weight: 600;
	}
	.main{
		position: relative;
		float: right;
		padding: 0 250px 0 20px;
		width: calc(100% - 120px);
		height: 46px;
		line-height: 46px;
		background: var(--bgColorSub);
		ul{
			li{
				h3{
					text-align: left;
					font-size: 15px;
					.date{
						margin-right: 1.5em;
					}
					a{
						color: inherit;
					}
				}
			}
		}
		.btns{
			a{
				display: block;
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
				width: 80px;
				color: var(--bodyBgColor);
				background: var(--keyColor);
				font-size: 18px;
				font-weight: 600;
				text-decoration: none;
				-webkit-transition: all 0.3s ease;
				-moz-transition: all 0.3s ease;
				-o-transition: all 0.3s ease;
				&:hover{
					opacity: .7;
				}
			}
		}
	}
}

.main-search{
	padding: 65px 0 150px;
	background: url(/images/default/main-search-bg.png) no-repeat center center / cover;
	h2{
		margin-bottom: 45px;
		font-size: 60px;
		font-weight: 600;
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
			li{
				a{
					position: relative;
					display: block;
					width: 530px;
					height: 290px;
					span{
						display: block;
					}
					&:hover{
						color: inherit;
					}
					.image{
						position: absolute;
						top: 0;
						right: 0;
						bottom: 0;
						left: 0;
					}
					.texts{
						position: absolute;
						right: 0;
						bottom: 0;
						width: 320px;
						height: 100px;
						background: url(/images/default/main-search-texts-bg.png) no-repeat center center / cover;
						display: flex;
						flex-direction: column;
						justify-content: center;
						align-items: left;
						text-align: left;
						padding-left: 40px;
						opacity: 1;
						-webkit-transition-duration: .3s;
						-moz-transition-duration: .3s;
						-ms-transition-duration: .3s;
						-o-transition-duration: .3s;
						transition-duration: .3s;
						.ja{
							font-size: 24px;
							font-weight: 700;
							color: var(--textColor);
							padding-left: .1em;
						}
						.en{
							font-size: 14px;
							font-weight: 600;
							color: var(--textColorSub);
						}
						&:hover{
							opacity: .7;
						}
						&::before{
							display: block;
							content: '';
							position: absolute;
							bottom: 4px;
							right: 4px;
							border-style: solid;
							border-width: 0px 0px 20px 20px;
							border-color: transparent transparent var(--keyColor) transparent;
						}
					}
				}
			}
		}
	}
}

.main-service{
	background: var(--bgColor);
	padding: 0 calc((4 / 192) * 100vw) 70px;
	h2{
		margin-bottom: 80px;
		font-size: 60px;
		font-weight: 600;
		line-height: 1;
		transform: translateY(-30px);
	}
	.main{
		ul{
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: calc((24 / 1920) * 100vw);
			li{
				position: relative;
				aspect-ratio: 111 / 110;
				background: var(--bodyBgColor);
				border: var(--keyColor) 1px solid;
				.image{
					position: absolute;
					top: 1px;
					right: 1px;
					bottom: 1px;
					left: 1px;
				}
				h3{
					position: absolute;
					right: 1px;
					bottom: 1px;
					left: 1px;
					background: var(--bodyBgColor);
					a{
						position: relative;
						display: block;
						font-size: calc((22 / 1920) * 100vw);
						font-weight: 700;
						color: var(--bodyBgColor);
						text-decoration: none;
						-webkit-transition: all 0.3s ease;
						-moz-transition: all 0.3s ease;
						-o-transition: all 0.3s ease;
						height: calc((10 / 192) * 100vw);
						z-index: 10;
						background: url(/images/default/main-service-header-bg.png) no-repeat center center / cover;
						line-height: 1.3;
						display: flex;
						flex-direction: column;
						justify-content: center;
						align-items: center;
						text-align: center;
						&:hover{
							opacity: .7;
						}
						&::before{
							display: block;
							content: '';
							position: absolute;
							bottom: 3px;
							right: 3px;
							border-style: solid;
							border-width: 0px 0px 20px 20px;
							border-color: transparent transparent var(--bodyBgColor) transparent;
						}
					}
				}
			}
		}
	}
}

.main-parts{
	padding: 100px 0 120px;
	h2{
		margin-bottom: 45px;
		font-size: 60px;
		font-weight: 600;
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		ul{
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 35px 20px;
			li{
				.image{
					margin-bottom: 10px;
					img{
						border: var(--borderColorSub02) 1px solid;
					}
				}
				h3{
					a{
						position: relative;
						display: block;
						text-align: left;
						font-size: 18px;
						font-weight: 700;
						color: var(--textColor);
						height: 24px;
						line-height: 24px;
						&::before{
							display: block;
							position: absolute;
							top: 0;
							right: 0;
							bottom: 0;
							width: 13px;
							background: var(--keyColor);
							color: var(--bodyBgColor);
							content: '\f105';
							font-size: 11px;
							font-weight: bold;
							font-family: 'Font Awesome 5 Free';
							line-height: 1;
							-webkit-font-smoothing: antialiased;
							-moz-osx-font-smoothing: grayscale;
							display: flex;
							flex-direction: column;
							justify-content: center;
							align-items: center;
							text-align: center;
						}
					}
				}
			}
		}
	}
}

.main-shopbanner{
	margin: 0 auto 80px;
	width: 1080px;
}

.main-blog{
	h2{
		margin-bottom: 45px;
		font-size: 60px;
		font-weight: 600;
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		ul{
			margin-bottom: 55px;
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 20px;
			li{
				.image{
					margin-bottom: 15px;
					img{
						border: var(--borderColorSub02) 1px solid;
					}
				}
				h3{
					.date{
						display: block;
						font-size: 14px;
					}
					a{
						display: -webkit-box;
						-webkit-line-clamp: 2;
						-webkit-box-orient: vertical;
						overflow: hidden;
						text-align: left;
						font-size: 15px;
						font-weight: 700;
						color: var(--textColor);
					}
				}
			}
		}
		.btns{
			a{
				display: block;
				margin: 0 auto;
				width: 180px;
				height: 46px;
				line-height: 46px;
				text-align: center;
				color: var(--bodyBgColor);
				background: var(--gradientColorVertical02);
				font-size: 18px;
				font-weight: 600;
			}
		}
	}
}
/* content sidebar
------------------------------------------*/
#sidebar {
	display: none;
}
.template-type-blog #sidebar {
	display: block;
	float: left;
	width: 240px;
	text-align: left;
}



/* footer
------------------------------------------*/
#footer {
	background: var(--keyColorSub);
	color: var(--bodyBgColor);
	padding: 90px 0;
	.main{
		position: relative;
		margin: 0 auto;
		width: 1080px;
		display: flex;
		justify-content: space-between;
		.links{
			text-align: left;
			.logo{
				margin-bottom: 50px;
			}
			.fnav{
				margin-bottom: 50px;
				ul{
					display: flex;
					justify-content: flex-start;
					align-items: center;
					gap: 40px;
					li{
						a{
							color: var(--bodyBgColor);
							font-size: 13px;
							font-weight: 500;
						}
					}
				}
			}
			.banner{
				ul{
					display: flex;
					justify-content: flex-start;
					align-items: center;
					gap: 6px;
				}
			}
		}
		.about{
			width: 360px;
			text-align: left;
			font-size: 15px;
			line-height: 2;
		}
		.copyright{
			position: absolute;
			right: 0;
			bottom: 0;
			text-align: right;
			font-size: 11px;
			color: #515151;
		}
	}
}

.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 999;
	.pagetop-btn{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 60px;
		height: 60px;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
		background: var(--gradientColorVertical02);
		color: var(--bodyBgColor);
		text-decoration: none;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		&:hover{
			opacity: .7;
		}
	}
}


/* Lower
------------------------------------------*/
.entry {
	margin: 0 0 20px;
}
.entry-content {}


/* heading */
.page-title-area {
	background: var(--bgColorSub);
	.main{
		margin: 0 auto;
		width: 1080px;
		height: 180px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}
.page-title {
	font-size: 32px;
	font-weight: bold;
}
.entry-title, .entry-content h2:not([class]) {
	margin: 0 0 25px;
	padding: 20px 26px;
	background: url(/images/default/entry-title-bg.png) no-repeat center center / cover;
	font-size: 22px;
	font-weight: bold;
	color: var(--bodyBgColor);
}
.entry-title a, .entry-content h2:not([class]) a {
	color: inherit;
}
.h3, .entry-content h3:not([class]) {
	position: relative;
	margin: 30px 0 22px 0;
	padding: 8px 24px;
	border-bottom: #d2d2d2 2px solid;
	font-size: 18px;
	font-weight: bold;
}
.h3:before, .entry-content h3:not([class]):before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 1px;
	width: 5px;
	height: 20px;
	background: var(--keyColor);
}
.h4, .entry-content h4:not([class]) {
	margin: 25px 0 20px;
	padding: 6px 10px;
	background: var(--bgColor);
	color: var(--textColorSub);
	font-size: 16px;
	font-weight: bold;
}
.h5, .entry-content h5:not([class]) {
	padding: 5px;
	border-bottom: 1px dashed var(--keyColor);
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}
.breadcrumb {
	justify-content: flex-start;
	margin: 20px 0 40px;
	padding: 0;
	background: none;
	font-size: 11px;
}
.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 */
.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: #202020;
	background-color: #2e2e2e;
	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: #9e9e9e;
	color: #fff;
}
