@charset "utf-8";

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

/* Typography
------------------------------------------*/
html {
	background: #fff;
	font-size: 16px;
}
body {
	line-height: 1.6;
	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: #111;
}
a {
	color: #333;
	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;
}
.bigger{
    -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;
    
}
.bigger:hover{
    opacity:0.8;

}

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

/* header
------------------------------------------*/
#header {
}
#header.fixed{
    width: 100%;
    position: fixed;
    left:0;
    top:0;
    background:rgba(255,255,255,0.9);
    z-index:99;
}
#header-inner {
	width: 100%;
    padding:12px 2vmax;
    
}
.site-description {
	position: relative;
	font-size: 11px;
	color: #aaa;
    text-align: left;
    padding:0.5em 0;
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}
#header.fixed .site-description {
    display: none;
}
.header-logo {
    position: relative;
	left: 0;
    max-width:467px;
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}
#header.fixed .header-logo {
    max-width:250px;
}
.gnav {
    position: relative;
	left: 0;
}
.header-cta a{
    display: inline-block;
    color:#fff;
    width:200px;
    background: #831e51;
    padding:0.8em 0;
    border-radius:25px;
}
.header-cta a:hover{
    opacity: 0.8;
    text-decoration: none;
}
/* droppy */
.gnav-list { position: relative; text-align: left; zoom: 1; }
.gnav-list li { float: left; display: block; position: relative; z-index: 20;margin:0 1em;font-weight: bold; }
.gnav-list li a:hover { text-decoration: none; }
.gnav-list ul { display: none; position: absolute; top: 100%; left: 0; width: 200px; background: #a6925c; }
.gnav-list ul li { float: none;margin:0; }
.gnav-list ul li a { display: block; padding: 8px 10px; color: inherit; font-size: 14px; zoom: 1; color:#fff;border-bottom:1px solid rgba(255,255,255,0.3)}
.gnav-list ul li a:hover { text-decoration: none; background:#b7a77c; }
.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 2vmax;
}
#mainimage::before{
    position: absolute;
    left:2vmax;
    bottom:0;
    content:"";
    display: block;
    background: url(/images/default/mainimage-pic.png) no-repeat left center;
    width:100%;
    height:100px;
    background-size: contain;
    z-index:3;
}
#mainimage-inner {
	margin: 0 auto;
    width: 100%;
    background: #9d8b5e;
    position: relative;
}
.mainimage-copy{
    position: absolute;
    left:0;
    bottom: 0;
    z-index:3;
    color:#fff;
}
.mainimage-copy-text{
    font-size: 2.3vmax;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-align: left;
    text-shadow: 0 0 4px rgb(0 0 0 / 70%);
}
.mainimage-copy-inner{
    padding:4vmax;
    font-size: 5px;
}
.mainimage-list{
    margin:2vmax 0;
}
.mainimage-list li{
    font-size: 22px;
    text-align: left;
    padding:0.3em 25px;
    position: relative;
}
.mainimage-list li::before{
    position: absolute;
    left:0px;
    top: 50%;
    transform: translateY(-50%);
    width:15px;
    height: 1px;
    content:"";
    background: #fff;
    display: inline-block;
}
/* slideshow */
.slideshow {
}
.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;
}

/* 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
------------------------------------------*/
.inner {
    max-width: 1600px;
    margin: 0 auto;
}
.inner1400{
    max-width: 1400px;
    margin: 0 auto;
}
.inner1080{
    max-width: 1080px;
    margin: 0 auto;
}
#content-inner {
	width: 1080px;
	margin: 0 auto;
	padding-bottom: 60px;
}

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

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

.main-title{
    font-size: 46px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.main-title em{
    font-size: 28px;
    color:#b7a77c;
    font-style:normal;
    display: block;
    letter-spacing: 1px;
}

a.more-btn{
    background:#262626;
    display: inline-block;
    padding:0.8em 3em;
    color:#fff;
    position: relative;
}
a.more-btn::before{
    position: absolute;
    right:0px;
    top: 50%;
    transform: translateY(-50%);
    width:15px;
    height: 1px;
    content:"";
    background: #fff;
    display: inline-block;
}
a.more-btn::after{
    position: absolute;
    right:-15px;
    top: 50%;
    transform: translateY(-50%);
    width:15px;
    height: 1px;
    content:"";
    background: #262626;
    display: inline-block;
}
a.more-btn:hover{
    background:#444;
    color:#fff;
    text-decoration: none;
}

a.more-btn-wh{
    border:1px solid #fff;
    display: inline-block;
    padding:0.8em 2.5em;
    color:#fff;
    position: relative;
}
a.more-btn-wh::before{
    position: absolute;
    right:0px;
    top: 50%;
    transform: translateY(-50%);
    width:15px;
    height: 1px;
    content:"";
    background: #fff;
    display: inline-block;
}
a.more-btn-wh:hover{
    text-decoration: none;
}
.main-selection {
    position: relative;
    z-index:1;
    padding:0 0vmax 2vmax 0vmax;
    counter-reset: number;
}
.home .main-selection {
    padding:4vmax 0;
}
.main-selection::before{
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 84%;
    content:"";
    display: block;
    z-index:-1;
    background:#f4eedc url(/images/default/main-selection-bg.png) no-repeat right bottom ;
}
.main-selection-title {
    margin-bottom: 10px;
    text-align: center;
}
.main-selection-more{
    text-align: center;
}
.main-selection-list{
    margin: 50px 2vmax;
}
.main-selection-archive-list{
    margin: 50px 2vmax;
    border:1px solid #ccc;
    border-radius:5px;
    padding:2vmax;
}
.main-selection-list-img{
    position: relative;
    margin-bottom: 50px;
}
.home .main-selection-list-img::before{
    position: absolute;
    left:10px;
    top:-30px;
    counter-increment: number;
    content:counter(number);
    font-size: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #222;
    display: inline-block;
    margin-right: 20px;
    z-index: 1;
    font-style: italic;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;

}
.main-selection-list-img02{
    position: absolute;
    right:10px;
    bottom:-20px;
}
.main-selection-list-title{
    margin:1em 0;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    
}
.main-selection-list-title02{
    text-align: center;
    font-size: 14px;

}
.main-intro{
    padding:7vmax 0;
    position: relative;
}
.main-intro-text{
    text-align: center;
    position: relative;
    z-index:3;
}
.main-intro::before{
    position: absolute;
    background:url(/images/default/main-message-before.png) no-repeat right top / contain ;
    content:"";
    display: inline-block;
    width:20%;
    height: 100%;
    top:-3vmax;
    right:-1%;
    z-index:2;
}
.main-intro::after{
    position: absolute;
    background:url(/images/default/main-intro-after.jpg) no-repeat left bottom / contain ;
    content:"";
    display: inline-block;
    width:20%;
    height: 100%;
    bottom:-3vmax;
    left:-1%;
    z-index:2;
}

.main-intro-title {
    margin-bottom: 10px;
    text-align: center;
}
.main-about{
    padding:4vmax 0;
}
.main-about-title {
    margin-bottom: 10px;
    text-align: center;
}
.main-about-img{
    position: relative;
}
.main-about-img-icon{
    position: absolute;
    bottom:20%;
    right:20px;
    z-index:2;
}
.main-about-inner{
    padding:2vmax 0;
    
}
.main-about-more{
    padding:2vmax 0;
    
}
.main-about-text{
    margin:2vmax 0;
    padding:3vmax;
    background:#f4eedc url(/images/default/main-about-bg.png) no-repeat right bottom ;
    
}
.main-about-name{
    font-size: 34px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    margin-bottom: 0.8em ;
    letter-spacing: 0.1em;
}
.main-about-name span{
    font-size: 18px;
    margin:0 2em;
}
.main-about-read{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 1.5em ;
}
.main-about-profile p{
    margin-bottom: 2em ;
    
}

.main-howto{
    position: relative;
    background:#f4eedc;
    padding:5vmax;
}
.main-howto::before{
    position: absolute;
    content:"";
    display: block;
    width:40%;
    height:75px;
    left:10px;
    top:-35px;
    background:url(/images/default/main-howto-before.png) no-repeat left top / contain ;
}
.main-howto::after{
    position: absolute;
    content:"";
    display: block;
    width:40%;
    height:75px;
    right:10px;
    bottom:-35px;
    background:url(/images/default/main-howto-after.png) no-repeat right bottom / contain ;
}
.main-howto-text{
    margin:2em 0;
}

.main-benefit{
    position: relative;
    margin:5vmax 2vmax;
}
.main-benefit-img img{
    object-fit: cover;
    width:100%;
    height: 100%;
}
.main-benefit-once:nth-of-type(2n) .main-benefit-img{
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
}
.main-benefit-title {
    margin-bottom: 1em;
    text-align: center;
}
.main-benefit-once{
    background:#f4eedc;
    
}
.main-benefit-text{
    padding:4vmax;
}
.main-benefit-text .ttl{
    font-size: 30px;
    margin-bottom: 1em;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.main-benefit-text-inner p{
    margin-bottom: 2em;
}


.main-plan {
    margin:0vmax 2vmax;
}
.home .main-plan {
    margin:5vmax 2vmax;
}
.main-plan-inner{
    text-align: center;
    
}
.main-plan-bnr{
    margin: 0 0 3vmax 0;
}
.main-plan-bnr p{
    margin: 0 0 1vmax 0;
}
.main-plan-text{
    margin-top:-1vmax;
    margin-bottom:2vmax;
}
.main-plan-free-text{
    padding:2vmax 2vmax 0 2vmax;
    text-align:left;
}
.main-plan-free-text p{
    margin-bottom: 0.8em;
}
.main-plan-title {
    margin-bottom:2vmax;
    text-align: center;
}
.main-plan-rows{
    margin:0 0 5vmax 0;
}
.main-plan-once {
    border:1px solid #a6925c;
    border-radius:30px;
    overflow: hidden;
    margin:0 2px;
}
.main-plan-once .ttl {
    text-align: center;
    background:#f4eedc;
    padding:1em;
}
.main-plan-once .ttl h3{
    font-size:30px;
    font-weight: bold;
    display: block;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    line-height: 1.2;
}
.main-plan-once .teiki {
    font-size: 18px;
    text-align: center;
    background:#a6925c;
    color:#fff;
    padding:0.15em 1em;
    display: inline-block;
    margin-bottom: 0.5em;
}
.main-plan-once .txt-01 {
    font-size: 20px;
    text-align: center;
    padding:1em 0;
    color:#831e51;
    border-bottom:1px solid #a6925c;
    margin:0 1em;
}
.main-plan-once .txt-02 {
    padding:1em;
}
.main-plan-once .txt-02 ul{
    padding:1em 1em 2em 1em;
}
.main-plan-once .txt-02 ul li{
    list-style-type:disc; 
    margin-left:1em;
    text-align: left;
}

.main-plan-once .txt-03 {
    font-size: 36px;
    background:#f4eedc;
    padding:0.2em 0;
    text-align: center;
}
.main-plan-once .txt-03 .tax {
    font-size: 16px;
}
.main-plan-once .txt-04 {
    padding:2em 1em;
    text-align: center;
}
.main-plan-once .txt-04 a{
    display: inline-block;
    color:#fff;
    width:80%;
    background: #831e51;
    padding:0.8em 0.2em;
    border-radius:25px;
}
.main-plan-once .txt-04 a:hover{
    opacity: 0.88;
    text-decoration: none;
}
.main-plan-card{
    margin:3vmax 0 6vmax 0;
    text-align: center;
    
}
.main-izu{
    margin:5vmax 0;
}
.main-izu-inner{
    background:url(/images/default/izu-bg.png) no-repeat left top / cover ;
    padding:5vmax;
    color:#fff;
}
.main-izu-title{
    color:#fff;
    text-align: center;
}
.main-izu-text{
    padding:2em;
    font-size: 24px;
    text-align: center;
}
.main-izu-more{
    text-align: center;
    font-size: 20px;
}

.main-message{
    background:url(/images/default/main-message-bg.png) no-repeat left top / cover ;
    padding:5vmax 2vmax;
    margin:10vmax 0;
    color:#fff;
    position: relative;
}
.main-message::before{
    position: absolute;
    background:url(/images/default/main-message-before.png) no-repeat right top / contain ;
    content:"";
    display: inline-block;
    width:20%;
    height: 100%;
    top:-5vmax;
    right:1%;
    z-index:2;
}
.main-message::after{
    position: absolute;
    background:url(/images/default/main-message-after.png) no-repeat left bottom / contain ;
    content:"";
    display: inline-block;
    width:20%;
    height: 100%;
    bottom:-5vmax;
    left:1%;
    z-index:2;
}

.main-message-title{
    text-align: center;
    margin-bottom:1em;
    z-index:3;
}
.main-message-text{
    text-align: center;
    position: relative;
    /*padding-bottom:120px;*/
    z-index:3;
    font-size: 18px;
}
.main-message-text h3{
    font-size: 24px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    border-bottom:1px solid #b7a77c;
    display: inline-block;
}
/*
.main-message-text::before{
    position: absolute;
    background:url(/images/default/iino-sign.png) no-repeat left top / contain ;
    content:"";
    display: inline-block;
    width:350px;
    height: 120px;
    bottom:0;
    right:20%;
}*/

.main-blog {
	position: relative;
	margin: 5vmax 2vmax;
}
.main-blog-title {
    text-align: center;
	margin-bottom: 1em;
}
.main-blog-inner {
}
.main-blog-list {
}
.main-blog-list-once {
    background: #f4eedc;
}
.main-blog-list-img {
	width: 100%;
	margin-bottom: 10px;
	background: #eee;
}
.main-blog-list-title {
	margin-bottom: 3px;
    overflow: hidden;
    padding:1.5vmax;
}
.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: #b7a77c ;
    color:#fff;
	font-size: 13px;
	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;
    padding:0 1.5vmax 1.5vmax 1.5vmax;
}

.main-follow{
    text-align: center;
    margin: 5vmax 2vmax;
}
.main-follow-title {
    color: #b7a77c !important;
    text-align: center;
    margin-bottom: 1em;
}
.main-follow-once{
    margin-bottom: 3vmax;
        
}





.main-gallery {
	position: relative;
	margin: 0 auto 20px;
}
.main-gallery-title {
	margin-bottom: 10px;
}
.main-gallery-inner {
}
.main-gallery-list {
}
.main-gallery-list-item {
}
.main-gallery-list-img {
	margin-bottom: 5px;
}
.main-gallery-list-title > a {
	font-weight: bold;
	color: inherit;
}
.main-gallery-more {
	position: absolute;
	top: 0px;
	right: 0px;
}


/* 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-cta{
    position: fixed;
    bottom:0;
    right:0;
    z-index:99;
}
.footer-cta-02{
    padding:0 0 2vmax 0;
    text-align: center;
}

.footer-cta-02 a{
    display: inline-block;
    color:#fff;
    width:200px;
    background: #831e51;
    padding:0.8em 0;
    border-radius:25px;
}
.footer-cta-02 a:hover{
    opacity: 0.8;
    text-decoration: none;
}



#footer {
	background: url(/images/default/footer-bg.png) no-repeat center center / cover;
}
#footer-inner {
	position: relative;
	width: 980px;
	padding: 3vmax 0;
	margin: 0 auto;
}

.footer-nav{ 
}
.footer-nav li {
	display: inline-block;
    color: #fff;
    padding: 0 1.5em;
}
.footer-nav li a {
	color: inherit;
}
.footer-nav li ul {
	display: none;
}

.footer-logo {
    padding: 3vmax 0;
}
.footer-text{
    font-size: 12px;
    color:#fff;
    text-align:center;
    padding:0 0 3vmax 0;
    
}
.footer-copyright {
	text-align: center;
	font-size: 11px;
	color: #fff;
}

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


/* Lower
------------------------------------------*/

.entry {
	margin: 0 0 20px;
}
.entry-content {
    margin: 0 0 50px;
}

.blog-content p{
    margin-bottom:1em;
}
#page-title-wrap{
    margin:2vmax;
    background:#9d8b5e;
    position: relative;
    padding:6vmax;
    text-align: left;
}
#page-title-wrap::before{
    position: absolute;
    left:2vmax;
    bottom:0;
    content:"";
    display: block;
    background: url(/images/default/mainimage-pic.png) no-repeat left center;
    width:100%;
    height:100px;
    background-size: contain;
    z-index:3;
}
#page-title-wrap::after{
    position: absolute;
    right:0;
    top:0;
    width:70%;
    height:100%;
    content:"";
    display: block;
    background:#9d8b5e url(/images/default/page-title-bg.png) no-repeat center center / cover;

}
/* heading */
.page-title {
	font-size: 38px;
	font-weight: bold;
	color: #fff;
    z-index:2;
    position: relative;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.entry-title, .entry-content h2,
.blog-entry-title{
	margin: 0 0 25px;
	padding: 1em 2em;
    background:#f4eedc;
	font-size:24px;
	font-weight: bold;
    position: relative;
}
.entry-title::before, .entry-content h2::before,
.blog-entry-title::before{
    position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
    width:20px;
    height:2px;
    content:"";
    display: inline-block;
    background:#831e51;
}
.entry-content h3, .h3,
.blog-content h2 {
    padding: 1em 0;
    font-size:22px;
    position: relative;
    margin-bottom: 1em;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    color:#a6925c;
}
.entry-content h3::before, .h3::before,
.blog-content h2::before{
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    content:"";
    display: inline-block;
    background:#ccc;
    z-index:1;
}
.entry-content h3::after, .h3::after,
.blog-content h2::after {
    position: absolute;
    bottom:0;
    left:0;
    width:200px;
    height:2px;
    content:"";
    display: inline-block;
    background:#831e51;
    z-index:2;
}
.entry-content h4, .h4,
.blog-content h3 {
	font-size: 20px;
    font-weight: bold;
    padding-left: 20px ;
    margin-bottom: 1em ;
    position: relative;
}
.entry-content h4::before, .h4::before,
.blog-content h3::before{
    position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
    width:2px;
    height:100%;
    content:"";
    display: inline-block;
    background:#831e51;
}
.entry-content h5, .h5,
.blog-content h4 {
	padding: 5px;
	border-bottom: 1px dashed #ccc;
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {margin-bottom: 2vmax;}
.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カラム*/
.template-type-selection .blog-nav-group {
	display: flex;
	justify-content: space-between;
}
.template-type-selection .blog-nav {width: 33%;}
.template-type-selection .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;
}
