@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: var(--bodyBgColor);
	font-size: 16px;
}
body {
	line-height: 1.8;
	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;
}
*/


.tab-parts{
	display: none;
}

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


/* general
------------------------------------------*/
a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	&:hover{
		opacity: .7;
		text-decoration: none;
	}
}


.common{
	padding: 50px 0;
	h2{
		margin-bottom: 40px;
		line-height: 1.3;
		span{
			display: block;
			&.ja{
				font-size: 40px;
				font-weight: 700;
				color: var(--keyColor);
			}
			&.en{
				font-size: 16px;
				font-weight: 600;
				color: var(--keyColorSub);
				text-transform: uppercase;
			}
		}
	}
	.main{
		margin: 0 auto;
		max-width: 1080px;
		.btns{
			a{
				margin: 20px auto 0;
				padding: 0 2.0em;
				position: relative;
				display: inline-block;
				font-size: 17px;
				font-weight: 600;
				color: var(--bodyBgColor);
				background: var(--keyColorSub);
				min-width: 200px;
				height: 40px;
				line-height: 40px;
				text-align: center;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				border-radius: 20px;
				&::before{
					position: absolute;
					top: 50%;
					transform: translateY(-50%);
					right: 15px;
					content: '\f105';
					font-weight: bold;
					font-family: 'Font Awesome 5 Free';
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
				}
			}
		}
	}
}

img.noimage{
	border: var(--borderColor) 1px solid;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
/* fixed
------------------------------------------*/
.side-fixed-btn{
	position: fixed;
	top: calc((10 / 192) * 100vw);
	right: calc((5 / 1920) * 100vw);
	z-index: 9999;
	ul{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: calc((1 / 192) * 100vw);
		li{
			a{
				color: var(--bodyBgColor);
				font-size: calc((18 / 1920) * 100vw);
				font-weight: 600;
				display: block;
				width: calc((5 / 192) * 100vw);
				padding: 1.0em .5em;
				-ms-writing-mode: tb-rl;
				writing-mode: vertical-rl;
				background: var(--keyColorSub);
				i{
					margin-bottom: .5em;
				}
				&.sns{
					writing-mode: horizontal-tb;
					-ms-writing-mode: lr-tb;
					padding: 0;
					height: calc((5 / 192) * 100vw);
					line-height: calc((5 / 192) * 100vw);
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
					&.x{
						background: #000;
					}
					&.fb{
						background: #1877F2;
					}
					&.insta{
						background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
					}
					&.line{
						background: #06C755;
					}
					&.youtube{
						background: #f00;
					}
				}
			}
		}
	}
}


/* header
------------------------------------------*/
#header {
	background: var(--bodyBgColor);
	.main{
		position: relative;
		margin: 0 auto;
		max-width: 1080px;
		height: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		.description {
			position: absolute;
			top: 5px;
			left: 0;
			font-size: 11px;
			color: #borderColor;
		}
		.logo{
			text-align: left;
			a{
				font-size: 2vw;
				font-weight: 700;
				color: var(--keyColor);
				padding: 2px 10px;
				border: var(--keyColor) 2px solid;
			}
		}
		.hbtn{
			display: flex;
			justify-content: flex-end;
			align-items: center;
			gap: 10px;
			a{
				color: inherit;
				&.tel{
					font-size: 30px;
					font-weight: 700;
					i{
						color: var(--textColorSub);
						font-size: 24px;
						margin-right: .5em;
					}
				}
				&.line{
					padding: .1em 1.0em;
					background: #06C755;
					color: var(--bodyBgColor);
					font-size: 20px;
					font-weight: 600;
					i{
						font-size: 17px;
						margin-right: .5em;
					}
				}
			}
		}
	}
}


.gnav{
	.gnav-list {
		position: relative;
		text-align: left;
		zoom: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px 0;
		gap: calc((4 / 192) * 100vw);
		li{
			display: block;
			position: relative;
			z-index: 20;
			a{
				display: block;
				text-align: center;
				line-height: 1.2;
				span{
					display: block;
					&.ja{
						color: var(--textColor);
						font-size: max(calc((18/ 1920) * 100vw),16px);
						font-weight: 900;
					}
					&.en{
						margin-top: .5em;
						color: var(--textColorSub);
						font-size: max(calc((12/ 1920) * 100vw),10px);
						font-weight: 600;
						text-transform: uppercase;
					}
				}
			}
			ul {
				display: none;
				position: absolute;
				top: calc(100% + 15px);
				left: 0;
				width: 150%;
				background: rgba(255,255,255,.8);
				li{
					a{
						display: block;
						padding: 5px 10px;
						color: inherit;
						font-size: 14px;
						text-align: left;
						zoom: 1;
						&:hover {
							text-decoration: none;
							background: #fff;
						}
					}
					ul {
						top: 0;
						left: 100%;
						width: 100%;
					}
				}
			}
		}
	}
}




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

#mainimage {
	position: relative;
	width: 100%;
	.main{
		width: 100%;
		margin: 0 auto;
		.slideshow {
			width: 100%;
			.slick-slide {
				position: relative;
				backface-visibility: hidden;
				.mv-catch{
					position: absolute;
					top: 50%;
					transform: translateY(-50%);
					left: calc(50vw - 540px);
					text-align: left;
					color: var(--bodyBgColor);
					text-shadow: 3px 3px 1px rgba(0,0,0,.2), -3px 3px 1px rgba(0,0,0,.2), 3px -3px 1px rgba(0,0,0,.2), -3px -3px 1px rgba(0,0,0,.2), 3px 0px 1px rgba(0,0,0,.2), 0px 3px 1px rgba(0,0,0,.2), -3px 0px 1px rgba(0,0,0,.2), 0px -3px 1px rgba(0,0,0,.2);
					h2{
						margin-bottom: .5em;
						font-size: calc((6 / 192) * 100vw);
						line-height: 1.2;
						font-weight: 600;
					}
					.copy{
						font-size: calc((3 / 192) * 100vw);
						line-height: 1.3;
						font-weight: 500;
					}
				}
				img{
					width: 100%;
				}
			}
			.slick-arrow{
				width: calc((5 / 192) * 100vw);
				height: calc((5 / 192) * 100vw);
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				&::before {
					width: calc((5 / 192) * 100vw);
					height: calc((5 / 192) * 100vw);
					font-size: calc((2 / 192) * 100vw);
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					text-align: center;
					content: '\f104';
					font-weight: bold;
					font-family: 'Font Awesome 5 Free';
					line-height: 1;
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
					opacity: 1;
					color: var(--bodyBgColor);
					background: var(--keyColor);
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
				}
				&.slick-prev {
					left: calc((3 / 192) * 100vw);
				}
				&.slick-next {
					right: calc((3 / 192) * 100vw);
					&::before {
						transform: scale(-1, 1);
					}
				}
			}
			.slick-dotted {
				margin-bottom: calc((25 / 1920) * 100vw);
				.slick-dots {
					bottom: calc((25 / 1920) * -100vw);
					li{
						margin: 0 .2em;
						button{
							width: calc((8 / 1920) * 100vw);
							height: calc((8 / 1920) * 100vw);
							padding: 0;
							&::before {
								width: calc((8 / 1920) * 100vw);
								height: calc((8 / 1920) * 100vw);
								font-size: calc((8 / 1920) * 100vw);
								color: var(--borderColor);
							}
							&:hover,
							&:focus{
								&::before {
									color: var(--keyColor);
								}
							}
						}
						&.slick-active{
							button{
								&::before {
									color: var(--keyColor);
								}
							}
						}
					}
				}
			}
		}
	}
}


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

/*ワンカラム*/
#main {
	max-width: 1080px;
	text-align: left;
}
.home #content-inner{
	padding: 0;
	max-width: 100%;
}
.home #main {
	max-width: 100%;
	text-align: center;
}
/*blogだけ２カラム*/

.template-type-blog #main {
	float: right;
	max-width: 800px;
}

/*news*/
.main-news-wrapper{
	padding: 10px 0;
	background: var(--keyColor);
	.main-news{
		margin: 0 auto;
		max-width: 1080px;
		height: 70px;
		background: var(--bodyBgColor);
		h2{
			position: relative;
			float: left;
			width: 150px;
			height: 70px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: left;
			text-align: left;
			padding-left: 20px;
			line-height: 1.2;
			.ja{
				font-size: 20px;
				font-weight: 700;
				color: var(--keyColor);
			}
			.en{
				font-size: 13px;
				font-weight: 900;
				color: var(--keyColorSub);
				text-transform: uppercase;
			}
			&::before{
				content: '';
				position: absolute;
				top: 10px;
				right: 0;
				bottom: 10px;
				border-right: var(--borderColor) 1px solid;
			}
		}
		.main{
			position: relative;
			float: right;
			width: 930px;
			padding: 0 150px 0 20px;
			ul{
				li{
					h3{
						text-align: left;
						line-height: 70px;
						display: -webkit-box;
						-webkit-line-clamp: 1;
						-webkit-box-orient: vertical;
						overflow: hidden;
						span{
							font-size: 14px;
							display: inline-block;
							&.date{
								color: var(--keyColorSub);
								margin-right: .5em;
								font-weight: 600;
							}
							&.cat{
								margin-right: .5em;
								a{
									display: block;
									height: 20px;
									line-height: 20px;
									padding: 0 .5em;
									color: var(--bodyBgColor);
									background: var(--keyColorSub);
								}
							}
						}
						a{
							color: var(--textColor);
						}
					}
				}
			}
			.btns{
				a{
					position: absolute;
					top: 50%;
					transform: translateY(-50%);
					right: 15px;
					display: block;
					font-size: 13px;
					font-weight: 600;
					color: var(--bodyBgColor);
					background: var(--keyColor);
					width: 120px;
					height: 20px;
					line-height: 20px;
					text-align: center;
					-webkit-border-radius: 10px;
					-moz-border-radius: 10px;
					border-radius: 10px;
					&::before{
						position: absolute;
						top: 50%;
						transform: translateY(-50%);
						right: 5px;
						content: '\f105';
						font-weight: bold;
						font-family: 'Font Awesome 5 Free';
						-webkit-font-smoothing: antialiased;
						-moz-osx-font-smoothing: grayscale;
					}
				}
			}
		}
	}
}

/*alternate*/
.main-alternate {
	.main{
		ul{
			display: grid;
			grid-template-columns: repeat(1, 1fr);
			gap: 50px;
			li{
				display: flex;
				justify-content: space-between;
				align-items: center;
				.texts{
					width: 500px;
					text-align: left;
					h3{
						font-size: 25px;
						font-weight: 700;
						margin-bottom: .5em;
						color: var(--keyColorSub);
						line-height: 1.3;
					}
					.text{
						font-size: 16px;
						font-weight: 500;
						margin-bottom: 2.0em;
					}
				}
				.image{
					margin-left: calc(((50vw - 540px) - ((4 / 192) * 100vw)) * -1);
					width: calc(((50vw - 540px) - ((4 / 192) * 100vw)) + 540px);
				}
				&:nth-child(even){
					flex-flow: row-reverse;
					.image{
						margin: 0 calc(((50vw - 540px) - ((4 / 192) * 100vw)) * -1) 0 0;
					}
				}
			}
		}
	}
}

/*banner*/
.main-banner{
	.main{
		ul{
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 40px;
			flex-wrap: wrap;
			li{
				position: relative;
				aspect-ratio: 52 / 23;
				width: 48%;
				.image{
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
				}
				.text{
					position: absolute;
					top: 0;
					right: 0;
					bottom: 0;
					left: 0;
					a{
						display: block;
						position: absolute;
						top: 0;
						right: 0;
						bottom: 0;
						left: 0;
						display: flex;
						flex-direction: column;
						justify-content: center;
						align-items: center;
						text-align: center;
						span{
							display: block;
							text-shadow: 3px 3px 1px rgba(255,255,255,.5), -3px 3px 1px rgba(255,255,255,.5), 3px -3px 1px rgba(255,255,255,.5), -3px -3px 1px rgba(255,255,255,.5), 3px 0px 1px rgba(255,255,255,.5), 0px 3px 1px rgba(255,255,255,.5), -3px 0px 1px rgba(255,255,255,.5), 0px -3px 1px rgba(255,255,255,.5);
							&.ja{
								font-size: 40px;
								font-weight: 700;
								color: var(--keyColor);
							}
							&.en{
								font-size: 16px;
								font-weight: 600;
								color: var(--keyColorSub);
								text-transform: uppercase;
							}
						}
					}
				}
			}
		}
	}
}

/*cols*/
.main-cols {
	background:var(--bgColorSub);
	.main{
		ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
			li{
				.texts{
					padding: 20px;
					text-align: center;
					background: var(--bgColor);
					h3{
						font-size: 25px;
						line-height: 1.3;
						color: var(--keyColorSub);
						margin-bottom: .5em;
					}
					.text{
						font-size: 18px;
						font-weight: 500;
						margin-bottom: 1.0em;
					}
				}
			}
		}
	}
}

/*blog*/
.main-blog {
	background: var(--bgColorSub);
	.main{
		ul{
			margin-bottom: 30px;
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 30px;
			li{
				.image{
					position: relative;
					.cat{
						position: absolute;
						top: 0;
						left: 0;
						a{
							display: block;
							height: 20px;
							line-height: 20px;
							padding: 0 1.0em;
							color: var(--bodyBgColor);
							background: var(--keyColor);
							font-size: 12px;
							font-weight: 600;
							z-index: 10;
						}
						&:empty{
							display: none;
						}
					}
					a{
						display: block;
						position: relative;
					}
				}
				h3{
					padding: 1.0em 0;
					text-align: left;
					.date{
						color: var(--keyColorSub);
						margin-right: .5em;
						font-weight: 600;
					}
					a{
						color: var(--textColor);
						display: -webkit-box;
						-webkit-line-clamp: 1;
						-webkit-box-orient: vertical;
						overflow: hidden;
					}
				}
			}
		}
	}
}

.main-gallery {
	.main{
		max-width: unset;
		ul{
			margin: 0 calc((30 / 192) * -100vw);
			li{
				margin: 0 calc((1 / 192) * 100vw);
				.image{
					width: 100%;
					.cat{
						position: absolute;
						top: 0;
						left: 0;
						a{
							display: block;
							height: 20px;
							line-height: 20px;
							padding: 0 1.0em;
							color: var(--bodyBgColor);
							background: var(--keyColorSub);
							font-size: 12px;
							font-weight: 600;
							z-index: 10;
						}
						&:empty{
							display: none;
						}
					}
					a{
						display: block;
						position: relative;
						overflow: hidden;
						aspect-ratio: 4 / 3;
					}
				}
				h3{
					padding: 1.0em 0;
					text-align: left;
					.date{
						color: var(--keyColorSub);
						margin-right: .5em;
						font-weight: 600;
					}
					a{
						color: var(--textColor);
						display: -webkit-box;
						-webkit-line-clamp: 1;
						-webkit-box-orient: vertical;
						overflow: hidden;
					}
				}
			}
		}
	}
}

.main-beforeafter {
	.main{
		ul{
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px 20px;
			li{
				.image{
					a{
						display: block;
						position: relative;
						overflow: hidden;
						aspect-ratio: 4 / 3;
					}
				}
				h3{
					padding: .5em 0;
					text-align: left;
					.meta{
						display: flex;
						align-items: center;  
						height: 20px;
						.date{
							display: inline-block;
							color: var(--keyColorSub);
							margin-right: .5em;
							font-weight: 600;
							line-height: 20px;
						}
						.cat{
							a{
								display: inline-block;
								line-height: 20px;
								padding: 0 1.0em;
								color: var(--bodyBgColor);
								background: var(--keyColorSub);
								font-size: 12px;
								font-weight: 600;
								z-index: 10;
							}
							&:empty{
								display: none;
							}
						}
					}
					&>a{
						color: var(--textColor);
						display: -webkit-box;
						-webkit-line-clamp: 1;
						-webkit-box-orient: vertical;
						overflow: hidden;
					}
				}
			}
		}
	}
}

.main-access{
	background: var(--bgColor);
	.main{
		display: flex;
		justify-content: space-between;
		align-items: center;
		.texts{
			width: 500px;
			text-align: left;
			.image{
				margin-bottom: 20px;
			}
			.text{
				font-size: 17px;
				margin-bottom: 2.0em;
			}
			.btns{
				a{
					&:last-child{
						background: #06C755;
					}
				}
			}
		}
		.map{
			width: 540px;
			.googlemap{
				height: 350px;
				iframe{
					width: 100%;
					height: 350px;
				}
			}
		}
	}
}

/* content sidebar
------------------------------------------*/
/*blogだけ２カラム*/
#sidebar {
	display: none;
}
.template-type-blog #sidebar {
	display: block;
	float: left;
	max-width: 240px;
	text-align: left;
}


/* footer
------------------------------------------*/
#footer {
	background: var(--bgColorSub);
	.main{
		margin: 0 auto;
		padding: 50px 0;
		width: 1080px;
		.logo{
			text-align: center;
			margin-bottom: 1.0em;
			a{
				font-size: 2vw;
				font-weight: 700;
				color: var(--keyColor);
				padding: 2px 10px;
				border: var(--keyColor) 2px solid;
			}
		}
		.fnav{
			ul{
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 1.5em;
				li{
					a{
						display: block;
						color: var(--textColor);
						font-size: 16px;
						font-weight: 500;
					}
				}
			}
		}
	}
	.copyright{
		height: 50px;
		line-height: 50px;
		text-align: center;
		font-size: 11px;
		color: var(--bodyBgColor);
		background: var(--keyColor);
	}
}

.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 70px;
	right: 30px;
	z-index: 9999;
	.pagetop-btn{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 40px;
		height: 40px;
		color: var(--bodyBgColor);
		background: var(--keyColor);
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
	}
}



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


/* heading */
.page-title-area{
    background: var(--keyColor);
	.main{
		margin: 0 auto;
		max-width: 1080px;
		height: 200px;
		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(--keyColor);
	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(--bgColorSub);
	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;
	a{
		display: block;
		position: relative;
		overflow: hidden;
		aspect-ratio: 4 / 3;
	}
}
.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: #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;
}

/* h */
table {
  margin: 20px auto;
  width: 90%;
  border: solid 1px #ccc;
}
.tbl-r02 th {
  background: #cbd9d7;
  border: solid 1px #ccc;
  color: #000;
  padding: 10px;
  text-align: center;
  width: 30%;
}
.tbl-r02 td {
  border: solid 1px #ccc;
  padding: 10px;
}
 

/* 全体の囲み */
.rental-flow-section {
    margin-bottom: 40px;
}

/* タイトルデザイン */
.flow-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    padding-left: 15px;
    border-left: 6px solid #337e20; /* 左の緑の線 */
    border-bottom: 1px solid #337e20; /* 下の緑の線 */
    margin-bottom: 15px;
    line-height: 1.4;
    padding-bottom: 5px;
}

/* 説明文 */
.flow-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #555;
}

/* フロー図のコンテナ（横並び設定） */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
    gap: 10px;
    margin-bottom: 50px;
}

/* 各ステップのボックス */
.flow-step {
    background-color: #f5f5f5; /* 背景 */
    border: 1px solid #dcdcdc;
    flex: 1; /* 幅を均等にする */
    display: flex; /* 中身を上下中央揃えにするため */
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-align: center;
}

.step-content {
    font-size: 0.9rem;
    font-weight: bold;
    color: #222;
    line-height: 1.5;
}

/* 矢印エリア */
.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px; /* 矢印エリアの幅確保 */
}

/* 矢印の青い四角 */
.arrow-icon {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #132642; /* 青色 */
    border-radius: 4px;
    position: relative;
}

/* 矢印の白い三角（CSSで描画） */
.arrow-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 6px 0 6px 8px; /* 三角形のサイズ */
    border-color: transparent transparent transparent #fff; /* 白い三角 */
}



.br-sp {
  display: none;
}

