@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: #fff;
	font-size: 14px;
}
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: #2e2f32;
}
a {
	color: #35acb1;
	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: 1180px;
	text-align: center;
}
body.home {
	word-break: break-all;
}
#container {
	overflow: hidden;
}


/* float-btn
------------------------------------------*/
#float-btn{
	position: fixed;
	top: calc((32 / 192) * 100vw);
	right: 0;
	z-index: 99999;
		-webkit-border-top-left-radius: 3px;
		-webkit-border-top-right-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-webkit-border-bottom-left-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-topright: 0;
		-moz-border-radius-bottomright: 0;
		-moz-border-radius-bottomleft: 3px;
	overflow: hidden;
	ul{
		li{
			a{
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				text-align: center;
				width: 70px;
				height: 70px;
				color: #f2d619;
				font-size: 20px;
				background: #0058cd;
				text-decoration: none;
				-webkit-transition: all 0.3s ease;
				-moz-transition: all 0.3s ease;
				-o-transition: all 0.3s ease;
				&:hover{
					opacity: .7;
				}
				span{
					display: block;
					color: #fff;
					font-size: 12px;
					line-height: 1;
					margin-top: .5em;
				}
			}
			&:nth-child(even){
				a{
					background: #35acb1;
				}
			}
		}
	}
}


/* header
------------------------------------------*/
#header {
	background: #fff;
	border-top: #0058cd 4px solid;
}
#header-inner {
	position: relative;
	width: 1180px;
	height: 140px;
	margin: 0 auto;
	z-index: 20;
}
.site-description {
	position: absolute;
	top: 70px;
	left: 295px;
	font-size: 13px;
	color: #181818;
	font-weight: 700;
}
.header-comment{
	position: absolute;
	top: 90px;
	left: 295px;
	font-size: 13px;
	color: #181818;
	font-weight: ;
}
.header-logo {
	position: absolute;
	top: 35px;
	left: 0;
}
.header-tel {
	position: absolute;
	top: 55px;
	right: 0;
}
.header-hours {
	position: absolute;
	top: 100px;
	right: 0;
	font-size: 15px;
	text-align: center;
	padding: .1em .3em 0;
	background: #d7e6fd;
}
.header-mail{
	position: absolute;
	top: 110px;
	right: 0;
}
.header-mail a{
	display: block;
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.header-mail a:hover{
	opacity: .7;
}

.hnav{
	position: absolute;
	top: -3px;
	right: 0;
	width: 530px;
	height: 34px;
	padding: 0 20px;
	background: #0058cd;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
}
.hnav ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#gnav-wrapper{
	width: 100%;
	z-index: 9999;
	background: #e9e9e9;
}
.gnav {
	margin: 0 auto;
	width: 1180px;
	height: 110px;
}

/* droppy */
.gnav-list {
	height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	text-align: left;
	zoom: 1;
}
.gnav-list li { display: block; position: relative; z-index: 1000; }
.gnav-list ul { display: none; position: absolute; top: 100%; left: 0; width: 150%; background: #33abb1; }
.gnav-list ul li { float: none; }
.gnav-list ul li a { display: block; padding: 5px 10px; color: #fff; font-size: 11px; zoom: 1; }
.gnav-list ul li a:hover { text-decoration: none; background: #2651cd; }
.gnav-list ul ul { display: none !important;top: 0; left: 100%; width: 100%; }
.gnav-list a, .gnav-ul img{ display: block; }

.header-search{
	background: #ebf2fe;
	padding: 15px 0;
	height: 66px;
}


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

.home #content-inner{
	width: 100%;
}
#main {
	width: 1180px;
	text-align: left;
}

.template-type-blog #main {
	float: right;
	width: 910px;
	text-align: left;
}
.home #main{
	width: 100%;
	text-align: center;
}


/* content sidebar
------------------------------------------*/
#sidebar {
	display: none;
}
.template-type-blog #sidebar {
	display: block;
	float: left;
	width: 220px;
	text-align: left;
}



/* footer
------------------------------------------*/
.footer-info{
	margin: 120px auto 60px;
	width: 1180px;
	display: flex;
	justify-content: space-between;
}
.home .footer-info{
	margin-top: 0;
}
.footer-info .calendar{
	width: 740px;
	display: flex;
	justify-content: space-between;
}
.footer-info .calendar h2{
	width: 160px;
}
.footer-info .calendar-main{
	width: 520px;
}
.footer-info .calendar-main .shop-calendar-inner{
	display: flex;
	justify-content: space-between;
}
.footer-info .calendar-main .shop-calendar-inner table{
	width: 250px;
}
.shop-calendar-text{
	text-align: left;
}

.footer-info .sns{
	width: 330px;
}
.footer-info .sns h2 {
	margin-bottom: 30px;
}
.footer-info .sns ul {
	display: flex;
	/*justify-content: center;*/
}
.footer-info .sns ul li {
	margin: 0 10px;
}
.footer-info .sns ul li a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.footer-info .sns ul li a:hover{
	opacity: .7;
	color: #fff;
}
.footer-sns-btn {
	display: flex;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 25px;
	background-color: #ccc;
	border-radius: 50%;
	align-items: center;
	color: #fafafa;
}
.footer-sns-btn-facebook {
	background-color: #3a579a;
}
.footer-sns-btn-twitter {
	background-color: #50aaf0;
}
.footer-sns-btn-instagram {
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.footer-sns-btn-line {
	background-color: #01c500;
}

.footer-map{
	margin: 0 auto 100px;
	width: 1180px;
	display: flex;
	justify-content: space-between;
}
.footer-map .googlemap{
	width: 650px;
	height: 350px;
}
.footer-map .googlemap iframe{
	height: 350px;
}
.footer-map .googleview{
	width: 500px;
}

.footer-maker{
	padding: 80px 0;
	background: #d7e6fd;
}
.footer-maker h2{
	margin-bottom: 60px;
}
.footer-maker-main{
	margin: 0 auto;
	width: 1090px;
}
.footer-maker ul{
	margin-bottom: 60px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px 50px;
}
.footer-maker .text{
	font-size: 16px;
}

#footer {
	background: url(/images/default/footer-bg.png) no-repeat center center / cover;
}
#footer-inner {
	position: relative;
	width: 1180px;
	padding: 60px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer-logo{
	width: 160px;
	margin-right: 50px;
}

.footer-about {
	width: 440px;
	text-align: left;
	color: #fff;
	font-size: 14px;
}
.footer-about h2{
	font-size: 16px;
	margin-bottom: 1.0em;
}
.footer-about p{
	margin-bottom: 1.0em;
}
.footer-about a{
	color: inherit;
}
.footer-about a:before{
	content: '\f105';
	padding: 0 5px 0 0;
	color: #f2d619;
	font-size: 12px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.footer-nav {
	display: flex;
	justify-content: flex-end;
	text-align: left;
	font-size: 12px;
	line-height: 2.0;
}
.footer-nav ul li a{
	color: #fff;
}
.footer-nav ul li a:before{
	content: '\f105';
	padding: 0 5px 0 0;
	color: #f2d619;
	font-size: 12px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.footer-nav-once:last-child{
	margin-left: 60px;
}

.footer-copyright {
	text-align: center;
	font-size: 12px;
	color: #fff;
	height: 30px;
	line-height: 30px;
	background: #35acb1;
}

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



/* Lower
------------------------------------------*/
.entry {
	margin: 0 0 70px;
}
.entry-content {
	line-height: 2;
	font-size: 16px;
	margin-bottom: 60px;
}


/* heading */
.page-title-area{
	margin-top: 10px;
	background: url(/images/default/page-title-bg.png) no-repeat center 0 / cover;
}
.page-title-area-inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	text-align: left;
	margin: 0 auto;
	width: 1180px;
	height: 104px;
}
.page-title {
	font-size: 20px;
	font-weight: bold;
	color: #0058cd;
	line-height: 1.3;
}
.entry-title, .entry-content h2 {
	position: relative;
	margin: 0 0 25px;
	padding: 12px 10px 12px 40px;
	background: #0058cd;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.entry-title:before, .entry-content h2:before{
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	background: #35acb1;
}
.entry-title:after, .entry-content h2:after{
	display: block;
	content: '\f105';
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 10;
}
.entry-title a, .entry-content h2 a {
	color: inherit;
}
.entry-content h3, .h3 {
	margin: 50px 0 25px;
	padding: 11px 12px;
	background: #d7e6fd;
	color: #0058cd;
	font-size: 18px;
	font-weight: bold;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.entry-content h4, .h4 {
	padding: 5px 0;
	color: #0058cd;
	font-size: 15px;
	font-weight: bold;
}
.entry-content h4:before, .h4:before {
	content: '\f105';
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 10;
	padding-right: 10px;
}
.entry-content h5, .h5 {
	padding: 5px;
	border-bottom: 1px dashed #ccc;
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}
.breadcrumb {
	justify-content: flex-start;
	margin: 10px 0 30px 0;
	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: #35acb1;
	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;
}
