@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: var(--bodyBgColor);
	font-size: 15px;
}
body {
	line-height: 1.8;
	font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, 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;
}
*/

.ja{
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.en{
	font-family: "Roboto", sans-serif;
}
.jam{
	font-family: "Zen Maru Gothic", sans-serif;
}
.jas{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.ens{
	font-family: "Merriweather", serif;
}

.tab-parts{
	display: none;
}

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

/* general
------------------------------------------*/
a{
	text-decoration: none;
	&:hover{
		text-decoration: none;
		color: #00698C;
	}
}


/* header
------------------------------------------*/
#header {
	background: var(--bodyBgColor);
	.main{
		margin: 0 auto;
		max-width: 1200px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 130px;
		.logo{
		}
		.gnav{
			.gnav-list {
				position: relative;
				zoom: 1;
				display: flex;
				justify-content: flex-end;
				align-items: center;
				gap: 60px;
				li{
					display: block;
					position: relative;
					z-index: 20;
					a{
						display: block;
						text-align: center;
						line-height: 1.2;
						color: var(--textColor);
						font-size: 12px;
						font-weight: 700;
						&:hover{
							color: #00698C;
						}
					}
					ul {
						display: none;
						position: absolute;
						top: calc(100% + 58px);
						left: 0;
						width: 200px;
						background: #00698C;
						li{
							a{
								display: block;
								padding: 14px 20px 12px 20px;
								color: var(--bodyBgColor);
								font-size: 11px;
								text-align: left;
								zoom: 1;
								&:hover {
									opacity: 1 !important;
									text-decoration: none;
									background: #00516c;
									color: var(--bodyBgColor);
								}
							}
						}
					}
				}
			}
		}
	}
}



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

#mainimage {
	margin-bottom: 160px;
	position: relative;
	width: 100%;
	.main{
		width: 1200px;
		margin: 0 auto;
		.slideshow {
			width: 100%;
			.slick-slide {
				position: relative;
				backface-visibility: hidden;
			}
		}
	}
}


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

#main {
	max-width: 100%;
	text-align: center;
}
.home #content-inner{
	max-width: 100%;
}
.single #main {
	float: left;
	width: 850px;
	text-align: left;
}

/* content main
------------------------------------------*/
.main-contents{
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 4vw;
	.header{
		position: relative;
		margin-bottom: 40px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 30px;
		width: 100%;
		h2{
			font-size: 40px;
			color: #00698C;
		}
		.copy{
			font-size: 14px;
		}
		.btns{
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			right: 0;
			a{
				display: block;
				width: 170px;
				height: 45px;
				line-height: 45px;
				text-align: center;
				background: #888;
				color: #fff;
			}
		}
	}
	.main{
		ul{
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
			li{
				h3{
					background: var(--bgColor);
					padding: 20px;
					text-align: left;
					a{
						display: block;
						line-height: 180%;
						margin: 0;
						min-height: 52px;
						font-size: 14px;
						color: var(--textColor);
					}
				}
			}
		}
	}
}

/* content sidebar
------------------------------------------*/
#sidebar {
	display: none;
}
.single #sidebar {
	display: block;
	float: right;
	width: 300px;
	text-align: left;
}

.single-sideparts{
	h2{
		height: 55px;
		line-height: 55px;
		font-size: 14px;
		color: #fff;
		padding: 0 20px;
		background: #00698C;
	}
}
.s-search{
	margin-bottom: 50px;
	h2{
		margin-bottom: 20px;
	}
	.main{
		.input-group{
			input{
				-webkit-border-radius: 0 !important;
				-moz-border-radius: 0 !important;
				border-radius: 0 !important;
				border: none !important;
				background: #f2f2f2;
				height: 40px;
			}
			.btn{
				-webkit-border-radius: 0 !important;
				-moz-border-radius: 0 !important;
				border-radius: 0 !important;
				border: none !important;
				background: #000;
				color: #fff;
				&:hover{
					background: #00698C;
					opacity: 1;
				}
			}
		}
	}
}

.s-nav {
	.main{
		>ul{
			>li{
				position: relative;
				border: 1px solid #ddd;
				border-top: none;
				padding: 12px 20px;
				margin: 0;
				&:hover{
					cursor: pointer;
					&::before{
						position: absolute;
						top: 1.65em;
						left: 10px;
						content: '\f0da';
						color: #00698C;
						font-size: 12px;
						font-weight: bold;
						font-family: 'Font Awesome 5 Free';
						line-height: 1;
						-webkit-font-smoothing: antialiased;
						-moz-osx-font-smoothing: grayscale;
					}
					span.count{
						color: #fff;
						background: #00698C;
					}
				}
				a{
					display: inline-block;
					position: relative;
					color: #333;
				}
				span.count{
					display: block;
					position: absolute;
					top: 10px;
					right: 20px;
					background: #f2f2f2;
					width: 35px;
					height: 28px;
					line-height: 28px;
					text-align: center;
					font-size: 11px;
					border-radius: 2px;
				}
				ul{
					display: none;
					li{
						position: relative;
						border-top: 1px solid #ddd;
						padding: 12px 20px;
						margin: 12px -20px -12px;
						background: #eee;
						a{
							display: inline-block;
						}
						&:hover{
							&::before{
								position: absolute;
								top: 1.65em;
								left: 10px;
								content: '\f0da';
								color: #00698C;
								font-size: 12px;
								font-weight: bold;
								font-family: 'Font Awesome 5 Free';
								line-height: 1;
								-webkit-font-smoothing: antialiased;
								-moz-osx-font-smoothing: grayscale;
							}
							span.count{
								color: #fff !important;
								background: #00698C !important;
							}
						}
						span.count{
							display: block;
							position: absolute;
							top: 10px;
							right: 20px;
							background: #e1e1e1 !important;
							color: #111 !important;
							width: 35px;
							height: 28px;
							line-height: 28px;
							text-align: center;
							font-size: 11px;
							border-radius: 2px;
						}
					}
				}
			}
		}
	}
}


/* footer
------------------------------------------*/
#footer {
	background: var(--bgColor);
	.main{
		margin: 0 auto;
		padding: 80px 0;
		width: 1200px;
	}
	.copyright{
		height: 60px;
		line-height: 60px;
		text-align: center;
		font-size: 12px;
		color: var(--bodyBgColor);
		background: var(--bgColorSub);
	}
}

.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
	.pagetop-btn{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: 25px;
		width: 60px;
		height: 60px;
		color: var(--bodyBgColor);
		background: var(--textColor);
		&:hover{
			text-decoration: none;
		}
	}
}



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


/* heading */
.page-title {
	margin-bottom: 1.0em;
	font-size: 36px;
	font-weight: bold;
	color: #00698C;
	text-align: left;
}
.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(--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;
	color: #999;
	font-weight: 500;
	a{
		color: #999;
		font-weight: 500;
		&:hover{
			color: #00698C;
		}
	}
}
.breadcrumb-item + .breadcrumb-item:before {
	content: '>';
	color: inherit;
}
.breadcrumb-item.home:before {
	content: '\f015';
	padding: 0 5px 0 0;
	color: #333;
	font-size: 13px;
	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;
}

/* contents
------------------------------------------*/
.contents-copy{
	text-align: left;
	margin: -2.0em 0 2em;
}
.contents-main{
	ul{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		li{
			.image{
				position: relative;
				width: 380px;
				height: 230px;
				overflow: hidden;
				img{
					transform: scale(1);
					-webkit-transition-duration: .6s;
					-moz-transition-duration: .6s;
					-ms-transition-duration: .6s;
					-o-transition-duration: .6s;
					transition-duration: .6s;
				}
				.date{
					position: absolute;
					bottom: 0;
					left: 0;
					width: 120px;
					height: 40px;
					line-height: 40px;
					text-align: center;
					background: #000;
					color: #fff;
					font-size: 12px;
					font-weight: 400;
				}
				&:hover{
					img{
						transform: scale(1.3);
					}
				}
			}
			.text{
				text-align: left;
			    background: #f7f7f7;
				padding: 20px;
				h2{
					margin-bottom: 2.0em;
					a{
						color: var(--textColor);
                        font-weight: 700;
						font-size: 14px;
						&:hover{
							color: #00698C;
						}
					}
				}
				.cat{
					a{
						display: inline-block;
						text-align: center;
						padding: 0 16px;
						background: #fff;
						border: 1px solid #eee;
						height: 25px;
						line-height: 25px;
						font-size: 12px;
						color: var(--textColor);
                        font-weight: 400;
						&:hover{
							color: #fff;
							background: #00698C;
						}
					}
				}
			}
		}
	}
	.back-top{
		margin-top: 30px;
		text-align: left;
		a{
			display: block;
			background: #888;
			width: 170px;
			height: 45px;
			line-height: 45px;
			text-align: center;
			color: #fff;
			font-size: 14px;
			&:hover{
				color: #fff;
				background: #00698C;
			}
		}
	}
}


.entry-content h3.style3a {
	margin: 3em 0 1.5em;
    padding: 1.1em .2em 1em;
    font-size: 22px;
    font-weight: 400;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.entry-content h4.style4a {
	margin: 2.5em 2px 1.2em;
    padding: .3em 0 .3em .8em;
    font-size: 18px;
    font-weight: 400;
    border-bottom: none;
    border-left: 2px solid #222;
}
.entry-content .ytube{
	position: relative;
    height: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 56.25%;
    padding-top: 30px;
    overflow: hidden;
	iframe{
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

.page-image{
	margin-bottom: 50px;
	img{
		width: 100%;
	}
}

.contents-adjacent{
	margin-top: 100px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	a{
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: #ddd 1px solid;
		color: #333;
		.title{
			font-size: 14px;
			padding: 0 22px;
		}
		&.next{
			flex-flow: row-reverse;
		}
	}
}

.entry-relative{
	margin-top: 50px;
	padding: 0 30px 30px;
	background: #000;
	color: #fff;
	h2{
		height: 55px;
		line-height: 55px;
		font-size: 14px;
	}
	.entry-relative-main{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 27px;
		.relative-post{
			.image{
				margin-bottom: 15px;
			}
			h3{
				a{
					font-size: 14px;
					font-weight: 400;
					color: #fff;
				}
			}
		}
	}
}

/* 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: #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;
}
