@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: #fff;
	font-size: 14px;
}
body {
	line-height: 1.6;
	font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "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: #38230e;
}
a {
	color: #d44c10;
	text-decoration: none;
}
a:hover,
a:focus {
	color: inherit;
	text-decoration: underline;
}

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


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


/* header
------------------------------------------*/
#header {
}
#header-inner {
	position: relative;
	width: 100%;
	min-width: 1080px;
	height: 150px;
	margin: 0 auto;
	z-index: 20;
}
.site-description {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #cec2b4;
	font-size: 10px;
}

.header-logo {
	position: absolute;
	top: 0;
	left: 0;
}

.header-form {
	position: absolute;
	top: 45px;
	right: 20px;
}
.header-form-inner {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: flex-start; /* flex-end center nowrap space-between space-around */
}
.header-form-inner > div:not(:last-child) { margin-right: 20px; }
.header-search {
	line-height: 45px;
}
.header-search form {
}
.header-search input {
	padding: 0 20px;
	font-size: 14px;
	color: #d2c6b8;
	background: #f5f4f0;
	border: none;
	border-radius: 26px;
}
.header-search button {
	padding: 0 20px 0 20px;
	color: #38230e;
	background: #f5f4f0;
	border: none;
	border-radius: 0 26px 26px 0;
}
.header-mail {
	max-width: 130px;
}
.header-tel {
	font-family: 'Anton', sans-serif;
	color: #010101;
	font-size: 28px;
}
.header-tel a {
	position: relative;
	padding-left: 36px;
	color: inherit;
}
.header-tel a:before {
	content: '';
	position: absolute; /* initial 解除 */
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 30px;
	height: 30px;
	background: url(/images/default/tel-icon.png) no-repeat top left;
}

.gnav {
	position: absolute;
	top: 98px;
	right: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 15px;
	font-weight: bold;
}

/* droppy */
.gnav-list { position: relative; text-align: left; zoom: 1; }
.gnav-list {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: flex-start; /* flex-end center nowrap space-between space-around */
}
.gnav-list li { display: block; position: relative; z-index: 20; }
.gnav-list ul { display: none; position: absolute; top: 100%; left: 0; background: rgba(255,255,255,.8); }
.gnav-list ul li { float: none; }
.gnav-list li a { display: block; padding: 14px 16px; color: inherit; zoom: 1; }
.gnav-list ul li a { display: block; padding: 5px 10px; min-width: 100%; color: inherit; font-size: 14px; white-space: nowrap; zoom: 1; }
.gnav-list ul li a:hover { text-decoration: none; background: #fff; }
.gnav-list ul ul { top: 0; left: 100%; width: 100%; }
.gnav-list a, .gnav-ul img{ display: block; }


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

#mainimage {
	position: relative;
	overflow: hidden;
	margin: 0 auto 0;
}
#mainimage-inner {
	margin: 0 auto;
	width: 100%;
	min-width: 1080px;
}

/* slideshow */
.slideshow {
	/* margin: 0 calc((-1180px + 1080px)/ 2); */
}
.slideshow .slick-slide {
	backface-visibility: hidden;
}
.slideshow .slick-slide img {
	width: 100%;
}

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

/* arrows */
.main-gallery .slick-arrow,
.main-gallery .slick-arrow::before {
	width: 62px;
	height: 62px;
}
.main-gallery .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -70px;
}
.main-gallery .slick-arrow.slick-prev {
	left: -34px;
}
.main-gallery .slick-arrow.slick-prev::before {
	content: "";
	background: url(/images/default/main-arrow01.png) no-repeat center center;
}
.main-gallery .slick-arrow.slick-next {
	right: -34px;
}
.main-gallery .slick-arrow.slick-next::before {
	content: "";
	transform: rotate( -180deg );
	background: url(/images/default/main-arrow01.png) no-repeat center center;
}

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


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

/* blog2カラム */
#main {
	text-align: left;
	line-height: 2;
}

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

.home #content-inner,
.home #main {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 0;
}

.main-news {
	padding: 100px 0 125px;
	background: url(/images/default/main-news-bg.png) no-repeat 100% 0;
}
.main-news-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}
.main-news-title {
	margin-bottom: 30px;
}
.main-news-list {}
.main-news-list-item {
	padding: 26px 0;
	color: #38230e;
	font-size: 15px;
	border-bottom: 1px #ddd5be solid;
}
.main-news-list-title {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.main-news-list-title > a {
	font-weight: bold;
	color: inherit;
}
.main-news-list-date {
	color: #c5b7a8;
	font-size: 15px;
	margin-right: 10px;
}
.main-news-list-cat {
	display: inline-block;
	margin-right: 10px;
}
.main-news-list-cat a {
	display: block;
	padding: 0 10px;
	background: #fff;
	border: 1px #38230e solid;
	font-size: 13px;
	color: #38230e;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.main-news-list-cat a:hover{
	opacity: .7;
}
.main-news-more {
	position: absolute;
	top: 0px;
	right: 0px;
}
.main-news .scroll-area{
	/* max-height: 100px; */
}

.main-gallery {
	padding: 0 0;
	margin-bottom: 110px;
}
.main-gallery-title {
	margin-bottom: 24px;
	text-align: center;
}
.main-gallery-text {
	margin-bottom: 45px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.main-gallery-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-gallery-list {
}
.main-gallery-list-item {
	width: 340px;
	margin: 0 15px;
}
.main-gallery-list-img {
	width: 320px;
	margin-bottom: 5px;
	background: #fff;
	border: 9px #fff solid;
	outline-offset: 0px;
	outline: 1px solid #38230e;
	overflow: hidden;
}
.main-gallery-list-img img {
	transition: all 0.3s;
}
.main-gallery-list-img img:hover {
	transform: scale(1.1, 1.1);
}
.main-gallery-list-title > a {
	color: inherit;
	font-weight: bold;
	line-height: 1.6;
}
.main-gallery-list .price  {
	font-family: 'Noto Sans JP', sans-serif;
	color: #d44c10;
	font-size: 17px;
	text-align: right;
}
.main-gallery-more {
	margin-top: 50px;
	text-align: center;
}
.main-gallery .slick-list {overflow: visible;}

.main-blog {
	padding: 100px 0;
	background: #ecf0e1 url(/images/default/main-blog-bg.png) no-repeat top 60px center / auto auto;
}
.main-blog-title {
	margin-bottom: 20px;
	text-align: center;
}
.main-blog-text {
	margin-bottom: 30px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.main-blog-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-blog-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.main-blog-list-item {}
.main-blog-list-img {
	margin-bottom: 22px;
	border: 5px #fff solid;
	outline-offset: 0px;
	outline: 1px solid #cb9f6e;
	overflow: hidden;
}
.main-blog-list-img img {
	transition: all 0.3s;
}
.main-blog-list-img img:hover {
	transform: scale(1.1, 1.1);
}
.main-blog-list-title {
	margin-bottom: 3px;
	overflow: hidden;
}
.main-blog-list-title > a {
	display: block;
	margin-top: 3px;
	font-weight: bold;
	color: inherit;
}
.main-blog-list-date {
	margin-right: 10px;
}
.main-blog-list-cat {
	display: inline-block;
	margin-right: 10px;
}
.main-blog-list-cat a {
	display: block;
	padding: 0px 10px;
	background: #fff;
	border: 1px #38230e solid;
	font-size: 13px;
	color: #38230e;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.main-blog-list-cat a:hover{
	opacity: .7;
}
.main-blog-list-text {
	font-size: 12px;
}
.main-blog-more {
	margin-top: 60px;
	text-align: center;
}

.main-original {
	padding: 104px 0 0;
	background: url(/images/default/main-original-bg.png) no-repeat top left;
}
.main-original-inner {
	min-width: 1080px;
	margin: 0 auto;
}
.main-original-title {
	margin-bottom: 50px;
	text-align: center;
}
.main-original-list {}
.main-original-list li {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: space-between; /* flex-start flex-end center nowrap space-between space-around */
}
.main-original-list li:nth-child(odd) {
	flex-direction: row-reverse; /* column row-reverse column-reverse */
	background: #d4ad07;
}
.main-original-list li:nth-child(even) {
	background: #58684b;
}
.main-original-list li > div {
	width: 50%;
}
.main-original-list li .img {}
.main-original-list li .img img {}
.main-original-list li .textbox {
	max-width: 450px;
	margin: 0 auto;
	padding: 30px 0;
	color: #fff;
	font-size: 14px;
}
.main-original-list li:nth-child(odd) .textbox { margin-right: 80px; }
.main-original-list li:nth-child(even) .textbox { margin-left: 80px; }
.main-original-list li .title {
	margin-bottom: 20px;
	font-family: 'Anton', sans-serif;
	font-size: 70px;
	line-height: 1.1;
}
.main-original-list li .sub {
	margin-bottom: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: -1px;
}
.main-original-list li .text {
	font-family: 'Noto Sans JP', sans-serif;
}
.main-original-list li .text p {}
.main-original-list li .more {
	margin-top: 30px;
}

.main-banner {
	padding: 115px 0;
	background: url(/images/default/bg01.png) repeat top left;
}
.main-banner-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-banner-box {
	display: grid;
	grid-template-columns: 615px 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}
.main-banner-box .banner01 { grid-area: 1 / 1 / 3 / 2; }
.main-banner-box .banner02 { grid-area: 1 / 2 / 2 / 3; }
.main-banner-box .banner03 { grid-area: 2 / 2 / 3 / 3; }
.main-banner-text {
	padding: 15px 0;
}
.main-banner-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}

.main-message {
	margin-bottom: 115px;
}
.main-message-bg {
	position: relative;
	height: 520px;
}
.main-message-bg:before {
	content: '';
	position: absolute; /* initial 解除 */
	bottom: 0;
	left: 0;
	width: 40%;
	height: 120px;
	background: #fff;
}
.main-messge-bg img {}
.main-message-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 70px 0 0;
}
.main-message-title {
	content: '';
	position: absolute; /* initial 解除 */
	top: 0;
	left: 0;
	transform: translate(0, -50%);
	width: 40%;
	height: 120px;
}
.main-message-text {
	max-width: 67%;
	margin: 0 0 0 auto;
	font-size: 15px;
	font-weight: bold;
}
.main-message-text h3 {
	margin-bottom: 20px;
	/* font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	color: #58684b;
	font-size: 28px;
	font-weight: bold;
}
.main-message-text p {
	margin-bottom: 5px;
	line-height: 2.2;
}
.main-message-more {
	position: absolute; /* initial 解除 */
	bottom: 0;
	left: 0;
	/* transform: translate(0, -50%); */
}

.main-info {
	padding: 0 0 115px;
	background: url(/images/default/main-info-bg.png) no-repeat 2% 100%;
}
.main-info-inner {
	/* display: grid; */
	/* grid-template-columns: repeat(2, 1fr); */
	/* grid-column-gap: 40px; */
	/* grid-row-gap: 0; */
	max-width: 1080px;
	margin: 0 auto;
}
.main-info-textbox {}
.main-info-textbox:not(:last-child) { margin-bottom: 40px; }
.main-info-title {
	margin-bottom: 40px;
	text-align: center;
}
.main-info-text {}

.main-recruit {
	padding: 90px 0;
	background:
	linear-gradient(0deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.64) 100%),
	url(/images/default/main-recruit-bg.png) no-repeat center center / cover;
	background-attachment: fixed;
}
.main-recruit-title {
	margin-bottom: 50px;
	text-align: center;
}
.main-recruit-inner {
	text-align: center;
}
.main-recruit-text {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
.main-recruit-text p {}
.main-recruit-more {
	margin-top: 60px;
	text-align: center;
}


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

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

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

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

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


/* footer
------------------------------------------*/
#footer {
	padding: 50px 0 0;
	background: #ecf0e1;
}
#footer-inner {
	position: relative;
}

.footer-gmap {
	max-width: 1080px;
	margin: 0 auto 50px;
	border: 6px #fff solid;
}
.googlemap,
.googlemap iframe {
	height: 460px;
}

.footer-about {
	margin-bottom: 129px;
}
.footer-about-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.footer-about-text {
	margin-bottom: 40px;
	color: #38230e;
	font-size: 17px;
	font-weight: bold;
	line-height: 2.4;
}
.footer-about-text p {}
.footer-form {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: self-start; /* self-end self-start center */
	justify-content: space-between; /* flex-start flex-end center nowrap space-between space-around */
}
.footer-form-inner {
	flex: 0 1 550px; /*子要素 0 1 550px*/
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: space-between; /* flex-start flex-end center nowrap space-between space-around */
	padding: 16px 30px;
	border: 5px #b7bfab solid;
	border-radius: 24px;
}
.footer-form-inner ul {
	flex: 0 1 230px; /*子要素*/
	text-align: right;
}
.footer-form-inner ul li {
	font-family: 'Anton', sans-serif;
	font-size: 30px;
	color: #010101;
}
.footer-form-inner ul li a {
	color: inherit;
}
.footer-form-inner .footer-mail {}
.footer-banner {}
.footer-banner-list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-column-gap: 0;
	grid-row-gap: 10px;
}

.footer-nav {
	color: #fff;
	text-align: left;
	background: #4e3d27;
}
.footer-nav-inner {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: space-between; /* flex-start flex-end center nowrap space-between space-around */
	max-width: 1080px;
	margin: 0 auto;
	padding: 50px 0;
}
.footer-nav-title {
	flex: 0 1 370px; /*子要素*/
	padding-right: 20px;
}
.footer-logo {
	margin-bottom: 30px;
}
.footer-sns {}
.footer-sns-list {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: flex-start; /* flex-end center nowrap space-between space-around */
}
.footer-sns-list li {}
.footer-sns-list li:not(:last-child) { margin-right: 10px; }
.footer-nav-textbox {
	flex: 0 1 700px; /*子要素*/
}
.footer-nav-text {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 20px;
}
.footer-nav-text ul {
	font-size: 13px;
}
.footer-nav-text li {
	margin-bottom: 10px;
}
.footer-nav-text li a {
	color: inherit;
}
.footer-nav-text li ul {
	display: none;
}

.footer-copyright {
	color: #c5b7a8;
	font-size: 10px;
	text-align: right;
}

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


/* Lower
------------------------------------------*/
.entry {
	margin: 0 0 80px;
}
.entry-content {
	line-height: 2;
}


/* heading */
.page-title-wrap {
	margin: 0 0 20px 0;
	padding: 80px 15px;
	background: url(/images/default/h1-bg.png) no-repeat top center / cover;
}
.page-title-inner01 {}
.page-title-inner02 {}
.page-title {
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 36px;
	font-weight: bold;
}
.entry-title, .entry-content h2:not([class]) {
	position: relative;
	margin: 0 0 40px;
	padding: 0 30px 20px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}
.entry-title:before, .entry-content h2:not([class]):before {
	content: '';
	position: absolute; /* initial 解除 */
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 40px;
	height: 7px;
	background: #91bd3a;
}
.entry-title a, .entry-content h2:not([class]) a {
	color: inherit;
}
.h3, .entry-content h3:not([class]) {
	margin: 2.8rem 0 1.8rem 0;
	padding: 10px 20px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #38230e;
	font-size: 20px;
	font-weight: bold;
	background: #ecf0e1;
}
.h4, .entry-content h4:not([class]) {
	margin: 1.8rem 0 1.2rem 0;
	padding: 5px 0;
	color: #58684b;
	font-size: 20px;
	font-weight: bold;
}
.h5, .entry-content h5:not([class]) {
	padding: 5px;
	color: #38230e;
	font-weight: bold;
	border-bottom: 1px dashed #58684b;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {
	margin-bottom: 20px;
}
.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;
	color: #d44c10;
	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-group {
	width: 230px;
}
.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;
	color: #d44c10;
	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
------------------------------------------*/
/* gallery-nav */
.gallery-nav {
	display: none;
	margin-bottom: 30px;
}
.gallery-nav-inner {
	width: 100%;
	margin: 0 auto;
	padding: 36px 26px;
	border: 3px #cfc0ae solid;
}
.gallery-nav-list {}
.gallery-nav-list li {
	color: #58684b;
	font-size: 20px;
	font-weight: bold;
}
.gallery-nav-list > li:not(:last-child) {
	margin-bottom: 20px;
	border-bottom: 1px #ddd5be solid;
}
.gallery-nav-list li a {
	color: inherit;
}
.gallery-nav-list li ul {
	display: flex;
	flex-direction: row; /* column row-reverse column-reverse */
	flex-wrap: wrap;
	align-items: center; /* self-end self-start center */
	justify-content: flex-start; /* flex-end center nowrap space-between space-around */
}
.gallery-nav-list li ul li {
	color: #38230e;
	font-size: 15px;
	margin-right: 20px;
	border-bottom: none;
}
.gallery-nav-list li ul li a {}
.gallery-nav-list li ul li a:before {
	content: '\f138';
	color: #d44c10;/*#fff*/
	padding-right: 6px;
	margin-left: -0px;
	transform: scale(0.8);
	transform-origin: center;
	font-family: 'Font Awesome 5 Free'; /* FontAwesome */
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.gallery-nav-list ul ul {
	display: none;
}
/* archive */
.gallery-list {
	background: #ffffff;
}
.gallery-list-item {
	font-size: 13px;
	border-bottom: 1px #cfc0ae solid;
	border-right: none;
}
.gallery-list-item:nth-child(even) {
	background: #ecf0e1;
}
.gallery-list-item th {
	padding: 6px 0;
	color: #fff;
	text-align: center;
	font-weight: normal;
	background: #58684b;
	border-bottom: 2px #fff solid;
}
.gallery-list-item th:not(:last-child) {
	border-right: 2px #fff solid;
}
.gallery-list-item th:nth-child(2) {
	/* 車名 */
	width: 24%;
}
.gallery-list-item th:nth-child(8) {
	/* 修理歴 */
	width: 10%;
}
.gallery-list-item th:last-child,
.gallery-list-item td:last-child {
	/* 詳細(link) */
	width: 78px;
	text-align: center;
}
.gallery-list-item td {
	line-height: 1.2;
}
.gallery-list-item td {
	padding: 6px 12px;
}
.gallery-list-item td:first-child {
	padding: 6px 0;
}
.gallery-list-img {
	width: 130px;
}
.gallery-list-title {
	color: #38230e;
}
.gallery-list-title a {
	display: block;
	color: inherit;
}
.gallery-list-soldout {
	color: #d44c10;
	font-weight: bold;
}
.gallery-list-link {}
.gallery-list-link a {
	display: block;
	padding: 0 0 0 2px;
	color: #fff;
	line-height: 2.2;
	background: #d44c10;
	border-radius: 16px;
}
.gallery-list-link a:after {
	content: '\f061';
	color: inherit;/*#fff*/
	padding-right: 0;
	margin-left: 2px;
	transform: scale(0.8);
	transform-origin: center;
	font-family: 'Font Awesome 5 Free'; /* FontAwesome */
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.gallery-list-link a:hover {
	opacity: 0.8;
}

.gallery-list-more {
	text-align: right;
}

/* single */
.gallery-detail {
	margin-bottom: 20px;
	text-align: center;
}
.gallery-detail-row {
}
.gallery-detail-col {
}
.gallery-detail-main {
	margin-bottom: 10px;
}
.gallery-detail-sub {}
.gallery-detail-sub ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
.gallery-detail-sub li {
}

.gallery-info {
	text-align: left;
}
.gallery-info-top {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 0;
	margin-bottom: 20px;
}
.gallery-info-top span {
	display: block;
	line-height: 1.4;
	font-size: 18px;
	font-weight: bold;
}
.gallery-info-top span.remarks {
	color: #38230e;
}
.gallery-info-top span.price {
	color: #d44c10;
	font-size: 36px;
	font-weight: bold;
}
.gallery-info-totalprice {
	border-bottom: 3px #d44c10 solid;
}
.gallery-info-price {
	border-bottom: 3px #cfc0ae solid;
}
/* Table */
.gallery-info-table {
	width: 100%;
	margin-bottom: 30px;
	box-sizing: border-box;
	/* border-top: 1px #ccc solid; */
	/* border-left: 1px #ccc solid; */
	background: #fff;
}
.gallery-info-table tbody {
}
.gallery-info-table tr {
	width: 100%;
	border-bottom: 15px #fff solid;
}
.gallery-info-table th {
	width: 100px;
	color: #38230e;
	background: #f4f0e7;
	/* border-right: 1px #ccc solid; */
}
.gallery-info-table tr,
.gallery-info-table th {
	/* border-right: 1px #ccc solid; */
}
.gallery-info-table th,
.gallery-info-table td {
	padding: 6px 10px;
	font-weight: normal;
}
.gallery-info-table td {
	text-align: left;
	line-height: 1.6;
}
.gallery-link-btn {
	margin-bottom: 20px;
}

.gallery-form {
	padding-bottom: 26px;
	margin-bottom: 20px;
	border: 3px #cfc0ae solid;
}
.gallery-form-title {
	margin-bottom: 14px;
	padding: 10px 10px;
	color: #58684b;
	font-size: 20px;
	font-weight: bold;
	background: #f4f0e7;
}
.gallery-form-inner {}
.gallery-form-tel {
	margin-bottom: 10px;
	font-family: 'Anton', sans-serif;
	color: #d44c10;
	font-size: 40px;
	line-height: 1.1;
}
.gallery-form-tel a {}
.gallery-form-tel a:before {
	content: '\f879';
	color: #d44c10;/*#fff*/
	padding-right: 6px;
	margin-left: -0px;
	transform: scale(0.8);
	transform-origin: center;
	font-family: 'Font Awesome 5 Free'; /* FontAwesome */
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.gallery-form-about {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
}
.gallery-form-about p {}
.gallery-form-mail {
	margin-top: 14px;
}

.gallery-used-page {
	padding: 16px 26px 30px;
	margin-bottom: 20px;
	border: 3px #cfc0ae solid;
}
.gallery-used-page-text {}
.gallery-used-page-text h3 {}
.gallery-used-page-text p {}

/* Table */
.table03 table,
.table02 table,
.table01 table {
	width: 100%;
	margin-bottom: 30px;
	box-sizing: border-box;
	/* border-top: 1px #ccc solid; */
	/* border-left: 1px #ccc solid; */
	background: #fff;
}
.table03 table tr,
.table02 table tr,
.table01 table tr {
	width: 100%;
	border-bottom: 15px #fff solid;
}
.table03 table th,
.table02 table th,
.table01 table th {
	max-width: 30%;
	color: #38230e;
	background: #f4f0e7;
	font-weight:normal;
	/* border-right: 1px #ccc solid; */
}
.table03 table tr,
.table03 table th,
.table02 table tr,
.table02 table th,
.table01 table tr,
.table01 table th {
	/* border-right: 1px #ccc solid; */
}
.table03 table th,
.table03 table td,
.table02 table th,
.table02 table td,
.table01 table th,
.table01 table td {
	padding: 6px 10px;
	font-weight: ;
}
.table03 table td,
.table02 table td,
.table01 table td {
	text-align: left;
}

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


/* ScrollTrigger.js
------------------------------------------*/
.main-gallery-title,
.main-gallery-text,
.main-gallery-list,
.main-gallery-more {
	transform: translate(0, 0);
	opacity: 0;
}
/* フェードイン */
.main-gallery.active .main-gallery-title,
.main-gallery.active .main-gallery-text {
	transition: all 2s;
	transform: translate(0, 0);
	opacity: 1;
}
.main-gallery.active .main-gallery-list {
	transition: all 3s;
	transform: translate(0, 0);
	opacity: 1;
}
.main-gallery.active .main-gallery-more {
	transition: all 4s;
	transform: translate(0, 0);
	opacity: 1;
}

.main-blog-title,
.main-blog-text,
.main-blog-list,
.main-blog-more {
	transform: translate(0, 0);
	opacity: 0;
}
/* フェードイン */
.main-blog.active .main-blog-title,
.main-blog.active .main-blog-text {
	transition: all 2s;
	transform: translate(0, 0);
	opacity: 1;
}
.main-blog.active .main-blog-list {
	transition: all 3s;
	transform: translate(0, 0);
	opacity: 1;
}
.main-blog.active .main-blog-more {
	transition: all 4s;
	transform: translate(0, 0);
	opacity: 1;
}

.main-original-title {
	transform: translate(0, 0);
	opacity: 0;
}
.main-original-list .item {
	transform: translate(0, 0);
	opacity: 0;
}
/* フェードイン */
.main-original-title.active {
	transition: all 2s;
	transform: translate(0, 0);
	opacity: 1;
}
.main-original-list .item.active {
	transition: all 1.5s;
	transform: translate(0, 0);
	opacity: 1;
}

.main-banner-lsit,
.main-banner-text,
.main-banner-box {
	transform: translate(0, 0);
	opacity: 0;
}
/* フェードイン */
.main-banner.active .main-banner-list,
.main-banner.active .main-banner-text,
.main-banner.active .main-banner-box {
	transition: all 2s;
	transform: translate(0, 0);
	opacity: 1;
}

.main-message-title,
.main-message-text,
.main-message-more {
	transform: translate(0, 0);
	opacity: 0;
}
/* フェードイン */
.main-message-inner.active .main-message-title,
.main-message-inner.active .main-message-text,
.main-message-inner.active .main-message-more {
	transition: all 2s;
	transform: translate(0, 0);
	opacity: 1;
}


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

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

/* 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: #d44c10;
	background-color: #d44c10;
	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: #d44c10;
	background-color: #fff;
	color: #d44c10;
}

/* pagination */
.page-link {
	border-color: #d44c10;
	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: #d44c10;
	background-color: #d44c10;
	color: #fff;
}
