@charset "UTF-8";

/* =============================================
	mobile menu settings
=============================================　*/
/* Mobile Menu Button */
#menu-button{
	visibility:hidden;
	opacity:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: #fafafa;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 32px;
	height: 32px;
}
#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	position: absolute;
	display: block;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 28px;
	height: 2px;
	background-color: #111;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 15px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 24px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 6px;
	animation: menu-bar03 .75s forwards;
}
#menu-button .ham-text {
	font-size: 12px;
	line-height: 1;
}
#menu-button.is-active .ham-lines span {
	opacity: 0;
}
#menu-button.is-active .ham-lines::before {
	animation: active-menu-bar01 .5s forwards;
}
#menu-button.is-active .ham-lines::after {
	animation: active-menu-bar03 .5s forwards;
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(9px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

/* =============================================

	Common settings

============================================= */
/* table border and paddings */
table th,
table td{
	border: 1px solid #424242;
	padding: 10px;
}

/* =============================================

	Media Query

============================================= */
@media screen and (max-width: 1400px) { /* for iPad pro landscapes */

}

@media screen and (max-width: 1180px) { /* for tablet landscapes */

	#pagewrap {
		position: relative;
		padding-bottom: 51px;
	}

	#header.header {
		padding-top: 0;
	}

	/* module menu button visible */
	#menu-button{
		visibility:visible;
		opacity:1;
	}
	
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */
	#main-menu-container {
		position: fixed;
		z-index: 700;
		top: 0;
		left: -100vw;
		right: auto;
		bottom: auto;
		overflow-y: auto;
		background-color: #f1f1f1;
		display:block;
		width: 100vw;
		height: 100vh;
		transition: .3s linear;
	}
	#main-menu-container.is-active{
		left: 0;	
	}
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */

}

@media screen and (max-width: 1024px) { /* for tablet landscape */

	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
	.wpcf7 table tr th,
	.wpcf7 table tr td{
		width:100%;
		display:block;
		padding: 10px 0px;
	}
	.wpcf7 table tr th{
		padding-bottom:0;
	}
	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/

}

@media screen and (max-width: 980px) { /* for mobile landscape */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
}

@media screen and (max-width: 820px) { /* for tablet portrate */
	#pc-backtop {

	}
	#footer .sp-footer-icons-container {

	}
}

@media screen and (max-width: 768px) { /* for mobile  */
	

}

@media screen and (max-width: 460px) { /* for mobile small  */
	

}

body.skin-default{
   background:#fff;
}

body *{
    box-sizing:border-box;
}

/**pagewidth body

:root{
  --pagewidthbody:1600px;
}

#pagewrap,
.themify_builder_row.fullwidth .row_inner{
	max-width:var(--pagewidthbody);
    width: 100%;
    margin: 0 auto;
}

end pagewidth body**/

body .pagewidth{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}

.module_row > .row_inner{
	width:100%;
}


/* -----End pagewrap pagewidth----- */

/* -----header----- */
body #headerwrap{
   background-color:inherit;
	padding:5px 30px 5px;
}

#headerwrap #header,
#footerwrap #footer{
   border:0px;
}

body #header.header{
	overflow:hidden;
	max-width:1720px;
	width:100%;
	margin:0 auto;
	padding:0 0 0 0;
	
	display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.header-brand-container{
	padding:0;
}

.rh{
	padding:0;
}

.rh .btn_h{
	display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
	margin-top:25px;
}

.btn_h_1,.btn_h_2,.tel_h_1{
	margin:0 0 20px 20px;
}

.btn_h_1 a,.btn_h_2 a{
	background:#8c6ac3;
	display:inline-block;
	text-align:center;
	color:#fff;
	padding:14px 27px;
	text-decoration:none !important;
}

.tel_h_1 a{
	line-height:1;
	font-size:24px;
	padding:0 0 0 19px;
	display:inline-block;
	position:relative;
	border-left:1px solid #4a1395;
}
.tel_h_1 a span{
	display:inline-block;
	color:#555;
	line-height:1;
	font-size:24px;
	padding:4px 0 4px 40px;
	background:url("../../uploads/tel1.png")no-repeat center left;
}

.btn_h_1 a:hover,.btn_h_2 a:hover{
	opacity:0.7;
}

body #site-logo{
	position:static;
}

body #site-logo a,
body #site-logo img{
	display:inline-block;
	vertical-align:middle;
}

/* -----end header----- */

/* -----menu----- */

#headerwrap #main-menu-container{}
 #headerwrap #main-menu{width: 100%;text-align:right;list-style:none;margin:0 auto;}
 #headerwrap #main-menu > li {padding:0 21px;margin:0 0 20px;display:inline-block;position:relative;}
 #headerwrap #main-menu > li:last-child {padding-right:0;}
#headerwrap #main-menu > li:not(:last-child):before{
	content:"";
	background:#777;
	width:1px;
	height:19px;
	position:absolute;
	display:block;
	top:2px;
	right:0;
}
 #headerwrap #main-menu > li > a {padding:0;margin:0;color:#555;font-size:16px;text-decoration:none;}
 #headerwrap #main-menu li ul.sub-menu{width:100%;border: 0;border-radius: 0;padding: 0;background:rgba(255,255,255,0.8);}
 #headerwrap #main-menu li ul.sub-menu li {border-bottom: 1px dotted #ccd6e3;width: 100% !important;}
 #headerwrap #main-menu li ul.sub-menu li a {padding: 18px 0 17px;font-size: 13px;width: 100% !important;color: #434343 !important;z-index:100;}
 /*#headerwrap #main-menu .current_page_item a,#pagewrap #main-menu .current-menu-item a {background-color: transparent;color: #666;border-radius: 0;}*/

 #headerwrap #main-menu  li.nav_f,
 #headerwrap #main-menu  li.nav00 {display:none;}

#headerwrap #main-menu > li:hover a{
	text-decoration:underline;
}

#headerwrap #main-menu ul.sub-menu li a:hover{
	text-decoration:none;
}

#headerwrap #main-menu li ul.sub-menu{
	display: block !important;
    position: absolute;
	top:calc(100% + 1px);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.1s ease-in, opacity 0.1s ease-in;
	z-index: 100;
    border-radius: 5px;
    left: -999em;
	width:100%;
	border: 0;
	border-radius: 0;
	padding:8px 0 0;
	background-image: linear-gradient(to top, rgba(47,200,226,0.95) , rgba(110,224,243,0.95));
	list-style:none;
	margin:0;
	white-space: nowrap;
}
#headerwrap #main-menu li:hover > ul.sub-menu{
    left: 50%;
    transform: translateX(-50%);
	visibility: visible;
    opacity: 1;
}

/* -----end menu----- */

/* -----footer----- */
#footerwrap #footer{
	overflow:hidden;
	text-align:center;
}

body #footerwrap #footer-nav{
	text-align:center;
	margin: 0 0 20px;
}
body #footerwrap #footer-nav li {
    border-right:1px solid #a4a4a4;
  line-height:1;
	margin:0 0px 15px 0;	
}
body #footerwrap #footer-nav li:last-child{
	border:0;	
}
#pagewrap #footerwrap #footer-nav li a{
	color:#555;
  font-size:16px;
  padding:0 18px 0 14px;
	text-decoration:none;
}

#pagewrap #footerwrap #footer-nav li a:hover{
	text-decoration:underline;
}

#pagewrap #footerwrap #footer-nav li.menu-item-has-children{
	border:0;
  margin:0;
}

#pagewrap #footerwrap #footer-nav li.menu-item-has-children > a{
    border-left:1px solid #fff;
}

#pagewrap #footerwrap #footer-nav li.menu-item-has-children a{
	padding:0 4px 0 10px;
}

#pagewrap #footerwrap #footer-nav li.nav01 a{
  padding: 0 10px 0 0;
}

#footerwrap #footer-nav  li.nav_h{display:none;}

body #footerwrap #footer-nav li .sub-menu{
	display:inline;
  margin:0;
  line-height:1;
}

body #footerwrap #footer-nav li .sub-menu:before{
	content:"(";
}

body #footerwrap #footer-nav li .sub-menu:after{
	content:")";
  padding-right:4px;
}

#pagewrap #footerwrap #footer-nav li .sub-menu li{
  border:0;
}

#pagewrap #footerwrap #footer-nav li .sub-menu li::before{
	content:"/";
}


#pagewrap #footerwrap #footer-nav li .sub-menu li:first-child::before{
	content:"";
}

#pagewrap #footerwrap #footer-nav li .sub-menu li a{
	padding:0 4px;
  border:0;
}


.copyright-container{
	background:none;
	border-top:1px solid #555;
  padding:13px 0 12px;
	text-align:center;
}

.copyright-container span{
	line-height:26px;
  	font-size:14px;
	color:#555;
}

.copyright-container a img{
	display:block;
}

.copyright-container span,.copyright-container a{
  display:inline-block;
	vertical-align:middle;
  padding-left:3px;
}

body #pc-backtop{
	width:auto;
	bottom: 100px;
    right: 20px;
}

#pagewrap .f-con .rtt a{
	padding:0;
}

.list_social_footer_1{
	max-width:220px;
	width:100%;
	margin: 0 auto;
}

.logo_footer{
	margin:40px 0 25px;
}

/* -----end footer----- */

/* -----general----- */

body .module.module-layout-part{
	margin-bottom:0px;
}

#pagewrap .module .module-title{

}

.module-image:hover a img{
	opacity:0.7;
}

table{
	width:100%;
	border-collapse:collapse;
}


.module.module-buttons *{
	display:block;
}

.module.module-buttons span{
	margin:0;
}


#content{
	padding:0;
}

.module{
	margin-bottom:30px;
}
.module p{
	margin-bottom:1.78em;
}
.module p:last-child{
	margin:0;
}

body .module_row > .row_inner {
    max-width:100%;
}

/* -----end general----- */

.slide_home_1.module,
.slide_home_1.module .slide-image{
	margin:0;
}
.slide_home_1.module .slide-image img{
	height:747px;
	object-fit:cover;
}

.box_main_home_1.module_subrow {
	position:absolute;
	bottom:50%;
	transform:translatey(50%);
	left:0;
	right:0;
	padding:0 3%;
	text-align:center;
}

.text_main_1.module,
.text_main_2.module{
	line-height:52px;
	font-weight:600;
}

.text_main_1.module{
	font-size:36px;
}

.text_main_2.module{
	font-size:46px;
}

.text_gradient.module{
	background:-webkit-linear-gradient(#8355cf 0%, #8355cf 38%, #e3d2ff 50%, #8355cf 62%, #8355cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #FFF);
}

.text_home_2.module .module-title{
	color:#9b815e;
	font-size:26px;
	font-weight:400;
	margin:0 0 30px;
}

.text_main_3.module{
	color:#333;
	font-size:24px;
	text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
}

.text_main_4.module{
	text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
	font-size:36px;
	line-height:1.44;
}
.text_main_4.module .module-title{
	text-shadow:0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
	color:#673cad;
	font-weight:500;
	margin:0;
	font-size:18px;
}

.fontweight600.module{
	font-weight:600;
}

.ti_page_1.module .module-title{
	font-size:36px;
	color:#555;
	line-height:42px;
	font-weight:bold;
	margin:0;
	text-align:center;
}
.ti_page_1.module .module-title:after{
	content:"";
	display:block;
	width:34px;
	height:1px;
	background:#9272c6;
	margin:7px auto 0;
}

.ti_page_1_medium.module .module-title{
	font-weight:500;
	font-family:inherit !important;
}

.ti_page_1_medium.module .module-title:after {
    margin:11px auto 0;
}

.ti_page_1.ti_page_1l.module .module-title{
	text-align:left;
}
.ti_page_1.ti_page_1l.module .module-title:after{
	margin:7px 0 0 0;
}

.btn_page_1.module.module-buttons .ui:not(.transparent){
	display:inline-block;
	min-width:190px;
	color:#fff;
	text-align:center;
	padding:12px 20px 13px;
	line-height:30px;
	background:#8c6ac3;
	border:0;
}

#footerwrap .btn_page_1.module.module-buttons .ui:not(.transparent){
	min-width:220px;
}

#footerwrap .btn_page_1.module .module-buttons-item{
	display:inline-block;
	margin:0 17px 20px;
}

.tel_2_page.module.module-buttons .ui:not(.transparent){
	display:inline-block;
	border:0;
	background:none;
	text-align:left;
	font-size:32px;
	font-weight:normal;
	color:#555;
	line-height:1;
	padding:0;
}
.tel_2_page.module.module-buttons .ui:not(.transparent) span{
	padding:0 0 0 27px;
	background:url("../../uploads/tel2.png")no-repeat top 9px left;
}

.maps_home_2.module,
.maps_home_2.module iframe{
	line-height:1;
}

.list_img_home_1 .module{
	max-width:374px;
	width:100%;
	margin:0 auto 30px;
	background:#fff;
	box-shadow:0 0 10px #e4dfd1;
	text-align:center;
}
.list_img_home_1 .module-image.image-top .image-content{
	margin:0;
	padding:14px 5px 13px;
}
.list_img_home_1 .module-image .image-title{
	margin:0;
	font-size:18px;
	color:#555;
	font-weight:500;
}

.row_list_link_home_1{
	text-align:center;
}
.row_list_link_home_1 .ti_page_1.module{
	text-align:center;
	margin-bottom:37px;
}
.row_list_link_home_1 .ti_page_1.module .module-title{
	margin-bottom:25px;
}

/* POST */

.post_home_1.module{
  	margin-bottom:0;
}

.post_home_1.module.module-post .post{
  margin-bottom:33px;
}

.post_home_1 .post-image{
	margin-bottom:22px;
	text-align:center;
}

.post_home_1 time{
  font-size:16px;
  margin:0 0 6px;
	color:#555;
}

.post_home_1.module.module-post .post-title{
  margin-bottom:1px;
	font-size:16px;
	line-height:1.7;
}

.post_home_1.module.module-post .post-title a{
	color:#555;
	font-size:16px;
	line-height:1.7;
  text-decoration:none;
}
.post_home_1.module.module-post .post-title a:hover{
  text-decoration:underline;
}

/* End POST */

.gl_gl_1.module .module-gallery-grid {
    column-gap: 39px;
	row-gap: 48px;
}

.gl_gl_1.module img{
	width:100%;
}

.bg_sub_main .tb-column-inner{
	background:url("../../uploads/bgsubmain.jpg")no-repeat center;
	background-size:cover;
	height:400px;
	display:flex;
	align-items: center;
    justify-content: center;
}

.bg_sub_main .module{
	text-align:center;
	font-size:16px;
	font-weight:600;
	color:#9b815e;
	margin:0;
}
.bg_sub_main .module .module-title{
	font-size:36px;
	font-weight:bold;
	color:#555;
	margin:0;
}
.bg_sub_main .module .module-title:after{
	content:"";
	display:block;
	width:56px;
	height:1px;
	background:#8c6ac3;
	margin:15px auto 9px;
}

.archive .page-title{
	display:none;
}

.archive #layout{
	display:flex;
	flex-direction:column-reverse;
	padding-bottom: 90px;
}

.sidebar1 #layout #sidebar,
.sidebar1 #layout #content{
	float:none;
	width:100%;
}

.sidebar1 #layout #sidebar{
	padding:120px 0 35px;
	text-align:center;
}

.sidebar1 #layout #content{
	padding:0 0 160px;
}

.sidebar1 .list-categories *{
	display:inline-block;
	vertical-align:middle;
    line-height: 1;
}

.sidebar1 .widgettitle{
	margin: 0 35px 15px 0;
    background: #8c6ac3;
    color: #fff;
    font-weight: 300;
    padding:4px 10px;
    line-height: 1;
	font-size:16px;
}

.sidebar1 .list-categories .children{
	margin:0;
}

.sidebar1 .list-categories  a{
	margin:0 0 15px;
	padding:0 20px 0 17px;
	border-right:1px solid #555;
	color:#555;
	text-decoration-color: #8c6ac3;
}

.sidebar1 .list-categories .cat-item {
	padding:0;
}

.sidebar1 .list-categories .children li{
	padding:0;
}

.sidebar1 .list-categories .children li:last-child a{
	border:0;
}

.sidebar1 .current-cat > a{
	text-decoration:underline;
	text-decoration-color: #8c6ac3;
}

.archive .post{
	margin-bottom:24px !important;	
}

.archive .post .post-image{
	margin-bottom:13px;	
	text-align:center;
}

.archive .post .post-image img{
	width:auto;
}
.archive .post time{
	font-size:16px;
	color:#555;
	font-weight:bold;
	margin-bottom:4px;
}
.archive .post .post-title,
.archive .post .post-title a{
	font-size:16px !important;
	line-height:1.7;
	color:#555;
	font-weight:normal;
}

#pagewrap .pagenav{
	padding:70px 0 0;
	text-align:center;
}

#pagewrap .pagenav a, 
#pagewrap .pagenav span {
    line-height: 100%;
    padding:10px 0 0;
    margin: 0 2px;
    vertical-align: middle;
    display: inline-block;
    min-width: 42px;
    min-height: 42px;
    text-align: center;
    border-radius: 0;
    box-sizing: border-box;
	border:1px solid #8c6ac3;
	background:none;
	color:#8c6ac3;
	font-size:20px;
}

#pagewrap .pagenav a:hover, 
#pagewrap .pagenav span {
	background:#8c6ac3;
	color:#fff;
}

.single-post .post-image{
	margin:0 0 47px;
	text-align:center;
}

.post-author{
	display:none;
}

.single-post .post{
	margin-bottom:105px;
}

.single-post time{
	color:#8c6ac3;
	width:105px;
}

.single-post time,
.single-post .post-meta{
	display:inline-block;
	vertical-align:middle;
	line-height:1.7;
	font-size:16px;
	margin:0;
}

.single-post .post .post-title{
	margin:0 0 24px;
	padding:19px 0 9px;
	border-bottom:1px solid #8c6ac3;
	font-size:20px;
	color:#555;
	font-weight:500;
}

.post-category{
	line-height:1.7;
	padding:0;
	margin:0;
}

.rtb a{
	display:block;
	width:190px;
	margin:0 auto;
	text-align:center;
	color:#fff;
	font-size:16px;
	padding:15px 10px;
	background:#8c6ac3;
	text-decoration:none !important;
}
.rtb a:hover{
	opacity:0.7;
}

.single-post #layout{
	padding:120px 0 160px;
}

.post_media_1.module .post{
	margin-bottom:30px;
	padding:42px 0 6px;
	border-top:1px solid #8c6ac3;
}
.post_media_1.module .post-title{
	font-size:28px;
	line-height:1.8;
	position:relative;
	font-weight:600;
	margin:0 0 39px;
}
.post_media_1.module .post-title:after{
	content:"";
	display:block;
	background:#8c6ac3;
	width:34px;
	height:1px;
	position:absolute;
	bottom:-6px;
	left:0;
}

.post_media_1.module .gallery{
	text-align:center;	
}
.post_media_1.module .gallery .gallery-item{
	display:inline-block;
	vertical-align:middle;
	width:auto;
	margin:10px 13px 10px;
	float:none;
}

.post .entry-content a{
	color:#555;
	text-decoration:underline;
}
.post .entry-content a:hover{
	color:#555;
	text-decoration:none;
}

#pagewrap .wpcf7 table tr{
}
#pagewrap .wpcf7 table tr th, 
#pagewrap .wpcf7 table tr td{
	border:0;
	padding:30px 0;
	font-weight:300;
	font-size:16px;
	vertical-align:top;
}
#pagewrap .wpcf7 table tr th{
	width:34.33%;	
}

#pagewrap .wpcf7 table tr th span{
	line-height:1;
	width:64px;
	display:inline-block;
	text-align:center;
	border:1px solid #8c6ac3;
	background:#8c6ac3;
	color:#fff;
	font-size:16px;
	padding:5px 5px;
	margin-right:52px;
}
#pagewrap .wpcf7 table tr th span.table_span_style_1{
	background:none;
	color:#8c6ac3;
}

#pagewrap .wpcf7 table tr td input,
#pagewrap .wpcf7 table tr td textarea{
	border:1px solid #555;
	border-radius:0;
	background:none;
	box-shadow:unset;
}

#pagewrap .wpcf7 table tr td.table_input4 > p{
	border:1px solid #555;
	padding:4px 15px;
}
#pagewrap .wpcf7 table tr td.table_input4 input{
	border:0;
	padding:0;
}
#pagewrap .wpcf7 table tr td.table_input4 br{
	display:none;
}

#pagewrap .wpcf7 table tr td textarea{
	height:280px;
}
#pagewrap .wpcf7 .submit_btn input[type="submit"]{
	width:190px;
	text-align:center;
	color:#fff;
	background:#8c6ac3;
	padding:14px 10px 13px;
	border-radius:0;
	margin:20px auto 10px;
}

.text_policy_1.module .module-title{
	font-size:20px;
	margin:0 0 29px;
	font-weight:400;
}
.text_policy_1.module .tb_text_wrap{
	height:252px;
	overflow:auto;
}

.text_ct_1.module a{
	color:#555;
	text-decoration:underline;
}
.text_ct_1.module a:hover{
	color:#555;
	text-decoration:none;
}

.p_anchor_1.module{
	text-align:center;
}
.p_anchor_1.module a{
	color:#555;
	text-decoration:none;
}
.p_anchor_1.module a:hover{
	color:#555;
	text-decoration:underline;
}

.arr_faq.module .ui.module-accordion,
.arr_faq.module .accordion-content{
  background:transparent;
  border:0;
  margin:0;
}

.arr_faq.module li{
	margin-bottom:37px;
	padding:0 40px 43px;
	border:0;
	border-bottom:1px solid #8c6ac3;
}

.arr_faq.module li:last-child{
	margin-bottom:0;
	padding-bottom:0;
	border-bottom:0;
}

.arr_faq.module .builder-accordion-active:last-child{
	margin-bottom:0;
}

.arr_faq.module .accordion-title{
	padding:9px 0 27px 75px;
	position:relative;
	background:none;
}
.arr_faq.module .accordion-title:before{
	content:"Q";
	display:block;
	line-height:1;
	font-size:48px;
	color:#8c6ac3;
	position:absolute;
	top:0;
	left:0;
	font-weight:400;
}
.arr_faq.module ul.ui.module-accordion .accordion-title a{
	background:none;
  font-size:20px;
  font-weight:600;
  color:#9b815e;
  padding:0;
  line-height:1.75;
}
.arr_faq.module ul.ui.module-accordion .accordion-title a:hover{
	background:none;
}

.arr_faq.module li:hover .accordion-title{
	opacity:0.7;
	background:none;
}

.arr_faq.module .accordion-content{
	padding:0 0 0 75px;
  line-height:1.75;
}

.arr_faq.module .accordion-content a{
	text-decoration:underline;
}
.arr_faq.module .accordion-content a:hover{
	text-decoration:none;
}

.text_module_medium.module{
	font-weight:500;
}

.box_salon_1 .sub_column{
	background:url("../../uploads/bgsalon1.jpg")center top;
	background-size:cover;
	margin:0 0 50px;
	padding:35px 20px 25px;
	box-shadow:0 0 15px rgba(0,0,0,0.3);
}

.box_salon_1 .module-image,
.box_salon_1 .module-text .module-title{
	text-align:center;
}
.box_salon_1 .module-text .module-title{
	font-size:18px;
	color:#555;
	margin:0 0 16px;
}
.box_salon_1 .module-text .module-title:after{
	display:block;
	content:"";
	width:64px;
	height:1px;
	background:#8c6ac3;
	margin:10px auto 0;
}


.box_salon_1 .module-image{
	margin-bottom:20px;
}

.box_salon_1 .module-text{
	background:#fff;
	padding:20px 20px 20px;
	margin:0;
}

.ti_salon_1.module .tb_text_wrap{
	line-height:1.4;
	font-size:28px;
	color:#555;
	font-weight:400;
}
.ti_salon_1.module .tb_text_wrap strong{
	font-size:36px;
}
.ti_salon_1.module .tb_text_wrap:after{
	content:"";
	display:block;
	width:34px;
	height:1px;
	background:#8c6ac3;
	margin:8px 0 0 0;
}

.text_salon_1.module{
	max-width:580px;
}

.text_salon_1.module .module-title{
	font-weight: 400;
    font-size: 20px;
    color: #9b815e;
    margin: 0 0 30px;
}

.img_salon_2.module{
	position: relative;
    left: 200px;
    width: 600px;
    z-index: 2;
    min-width: 600px;
}

.ti_center_line_bottom.module .module-title{
	margin:0;
	text-align:center;
	color:#555;
	font-size:28px;
}
.ti_center_line_bottom.module .module-title:after{
	content:"";
	display:block;
	margin:12px auto 0;
	background:#8c6ac3;
	width:34px;
	height:1px;
}

.table_salon_1b.module,
.table_salon_1.module{
	border:1px solid #8c6ac3;
	padding:31px 15px;
	max-width:680px;
	margin:0 auto 30px;
	background:#fff;
}

.table_salon_1b.module{
	max-width:unset;
	margin:0;
	padding:15px 15px;
}

.table_salon_1b.module table,
.table_salon_1.module table{
	max-width:610px;
	width:100%;
	margin:0 auto;
}

.table_salon_1b.module table{
	max-width:550px;
}

.table_salon_1b.module td,
.table_salon_1.module td{
	border:0;
	vertical-align:top;
	padding:14px 0 13px;
}

.table_salon_1b.module td{
	padding:9px 0;
}

.table_salon_1b.module td:first-child,
.table_salon_1.module td:first-child{
	border-right:1px solid #8c6ac3;
	width:158px;
	padding-left:28px;
}

.table_salon_1b.module td:first-child{
	width:105px;
	padding-left:0;
}

.table_salon_1b.module td:last-child,
.table_salon_1.module td:last-child{
	padding-left:70px;
}

.table_salon_1b.module td:last-child{
	padding-left:24px;
}

.text_salon_2.module{
	border:1px solid #8c6ac3;
	background:#fff;
	padding:0 15px;
	position:relative;
	text-align:center;
}
.text_salon_2.module .module-title{
	border:1px solid #8c6ac3;
	display:inline-block;
	background:#fff;
	font-size:28px;
	font-weight:500;
	position:relative;
	top:-23px;
	padding:5px 45px;
	margin:0 15px;
}
.text_salon_2.module .tb_text_wrap{
	text-align:left;
	max-width:800px;
	width:100%;
	margin:0 auto;
	padding:8px 0 34px;
	font-weight:300;
}

.text_salon_2.module .tb_text_wrap strong{
	font-weight:500;
}

.text_salon_2_center.module .tb_text_wrap{
	text-align:center;
}

.text_school_1.module{
	text-align:center;
}
.text_school_1.module .module-title{
	font-size:28px;
	font-weight:500;
	color:#9b815e;
	margin:0 0 17px;
}
.text_school_1.module .module-title:after{
	content:"";
	display:block;
	background:#8c6ac3;
	width:48px;
	height:1px;
	margin:20px auto 0;
}

.ti_school_1.module{
	text-align:center;
	font-weight:100;
	color:#9b815e;
	font-size:20px;
}
.ti_school_1.module .module-title{
	font-size:36px;
	color:#555;
	font-weight:bold;
	border-bottom:1px solid #8c6ac3;
	margin:0 0 6px;
	padding:0 0 10px;
	letter-spacing: 0.05em;
}

.box_school_1{
	background:url("../../uploads/bgsalon1.jpg")center top;
	background-size:cover;
	padding:30px 15px 10px;
	margin:0 0 30px;
}
.box_school_1 .subrow_inner {
	max-width:1040px;
	width:100%;
	margin:0 auto;
	
	grid-template-columns: 260px calc(100% - 260px - 5%);
	--gutter: 5%;
}

.text_school_3.module .module-title{
	font-size:16px;
	  font-weight:500;
	  color:#8c6ac3;
	  padding:0;
	  line-height:1.75;
	border-bottom:1px solid #8c6ac3;
	padding:0 0 18px;
	margin-bottom:17px;
}
.text_school_3.module .tb_text_wrap{
	font-weight:300;
}

.arr_school_1.module .ui.module-accordion,
.arr_school_1.module .accordion-content{
  background:transparent;
  border:0;
  margin:0;
}

.arr_school_1.module li{
	margin:0;
	padding:0;
	border:0;
}

.arr_school_1.module li:last-child{
	margin-bottom:0;
	padding-bottom:0;
	border-bottom:0;
}

.arr_school_1.module .builder-accordion-active:last-child{
	margin-bottom:0;
}

.arr_school_1.module .accordion-title{
	padding:0;
	border:0;
	position:relative;
	background:none;
	text-align: right;
}
.arr_school_1.module ul.ui.module-accordion .accordion-title a{
	margin:0;
  	padding:18px 0 0;
	position:relative;
	outline:none;
	display: inline-block;
    width: 130px;
}
.arr_school_1.module ul.ui.module-accordion .accordion-title a:before{
	content:"more";
	display:block;
	position:absolute;
	bottom:0;
	right:0;
	width:130px;
	background:url("../../uploads/arr1.png")no-repeat bottom 4px right;
	line-height:1;
	font-size:32px;
	font-weight:400;
	color:#9b815e;
	text-align: left;
}

.arr_school_1.module ul.ui.module-accordion .current.builder-accordion-active .accordion-title a:before{
	content:url("../../uploads/arr1.png");
	background: none;
    width: 34px;
	transform: rotate(180deg);
}


.arr_school_1.module ul.ui.module-accordion .accordion-title a:hover{
	background:none;
}

.arr_school_1.module li:hover .accordion-title{
	opacity:0.7;
	background:none;
}

.arr_school_1.module .accordion-content{
	padding:15px 0 0;
  line-height:1.75;
	box-shadow:none;
}

.arr_school_1.module .accordion-content a{
	text-decoration:underline;
}
.arr_school_1.module .accordion-content a:hover{
	text-decoration:none;
}

.text_school_4.module .module-title{
	font-size:20px;
	color:#555;
	font-weight:500;
	margin:0 0 8px;
}
.text_school_4.module .module-title:after{
	content:"";
	display:block;
	width:40px;
	height:1px;
	background:#8c6ac3;
	margin:10px 0 0;
}

.gl_cc_1.module img{
	width:100%;
}

.text_cc_1.module{
	border:1px solid #9474c7;
	text-align:center;
}
.text_cc_1.module .module-title{
	font-size:28px;
	color:#555;
	position:relative;
	top:-23px;
	background:#fff;
	padding:0 45px;
	font-weight:500;
	display:inline-block;
	margin:0 10px 2px;
}
.text_cc_1.module .module-title:after{
	content:"";
	width:34px;
	height:1px;
	background:#8c6ac3;
	display:block;
	margin:12px auto 0;
}

.text_cc_1.module .tb_text_wrap{
	padding:0 15px 30px;
}

.p_anchor_2.module{
	margin:0;
}
.p_anchor_2.module ul{
	margin:0;
	list-style:none;
	display:flex;
	justify-content: space-between;
}
.p_anchor_2.module ul li{
	width:31.33%;
	margin-bottom:20px;
}
.p_anchor_2.module ul li a{
	display:block;
	border:2px solid #c2b0df;
	background:url("../../uploads/arr_menu_1.png")no-repeat center bottom 16px;
	font-size:16px;
	font-weight:300;
	color:#555;
	text-decoration:none;
	padding:13px 10px 35px;
	text-align:center;
}
.p_anchor_2.module ul li a:hover{
	opacity:0.7;
}

.p_anchor_3.module{
	margin:0;
}
.p_anchor_3.module ul{
	text-align:center;
	margin:0;
	list-style:none;
}
.p_anchor_3.module ul li{
	display:inline-block;
	margin:0 23px 20px;
}
.p_anchor_3.module ul li a{
	display:block;
	color:#8c6ac3;
	font-weight:300;
	padding:0 0 17px;
	background:url("../../uploads/arr_menu_2.png")no-repeat center bottom;
}


.ti_menu_1.module{
	overflow:hidden;
}
.ti_menu_1.module .module-title{
	margin:0 15px 0 0;
	font-size:28px;
	color:#9b815e;
	font-weight:300;
	padding: 0 25px 0 0;
	
	display: inline-block;
    vertical-align: baseline;
    position: relative;

}
.ti_menu_1.module .module-title:after{
    content: '';
    display: block;
    width:1000%;
    position: absolute;
    top: 50%;
    border-top: 1px solid #9b815e;
	 left: 100%;
}

.box_menu_img_1 .subrow_inner{
	max-width:960px;
	width:100%;
	margin:0 auto;
	--gutter: 8%;
}

.box_text_menu_1{
	background:url("../../uploads/bgtextmenu1.jpg")center;
	margin-bottom:30px;
	padding:30px 10px 11px;
}
.box_text_menu_1 .subrow_inner {
	max-width:960px;
	width:100%;
	margin:0 auto;
}

.text_menu_1.module{
	display:flex;
	justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
	margin-bottom:14px;
}

.text_menu_1.module .module-title{
	margin:0 15px 0 0;
	font-size:16px;
	line-height:1.75;
	color:#8c6ac3;
	font-weight:500;
}
.text_menu_1.module .tb_text_wrap{
	font-size:16px;
	color:#8c6ac3;
	font-weight:300;
	text-align: right;
	margin: 0 0 0 auto;
}

.text_menu_1.module:after{
	display:none;
}

.text_menu_top_border_1.module{
	padding:17px 0 0;
	border-top:1px solid #8c6ac3;
	margin-bottom:14px;
}

.ti_kmenu_2.module .module-title{
	margin:0;
	padding:0 0 0 18px;
	font-size:20px;
	color:#9b815e;
	position:relative;
	font-weight:300;
}
.ti_kmenu_2.module .module-title:before{
	content:"";
	width:3px;
	height:17px;
	background:#9b815e;
	position:absolute;
	top:5px;
	left:0;
}

.text_menu_3.module{
	max-width:800px;
	width:100%;
	background:rgba(255,255,255,0.7);
	position:relative;
	padding:26px 25px 28px 50px;
	margin:48px 0 0 auto;
}
.text_menu_3.module:before{
	content:"";
	max-width:775px;
	width:100%;
	height: 100%;
	border:2px solid #b4a3d3;
	position:absolute;
	right:0;
	bottom:23px;
	z-index:1;
}

.text_menu_3.module .module-title,
.text_menu_3.module .tb_text_wrap{
	position:relative;
	z-index:2;
}

.box_menu_3 .tb-column-inner{
	position:relative;
}

.box_img_1_menu.module{
	position:absolute !important;
	top:0;
	left:0;
}

.module_width_960.module{
	max-width:960px;
	margin:0 auto;
}



/* 20250818 */
body #pagewrap.site {
    font-weight: 400;
}
.eyelash_sub-tit .module-title {
	font-weight: 100;
	font-size: 24px;
}
br.sp-only {
	display: none;
}
.ti_page_1.module .module-title {
	font-size: 30px;
}
.top-salon_info table tr td {
	border: none;
	padding: 3px 0;
	vertical-align: top;
}

/* blog categoly list */
.category-list {
	display: flex;
	justify-content: center;
    align-items: center;
}
.category-list .module-title {
	margin: 0 35px 15px 0;
    background: #8c6ac3;
    color: #fff;
    font-weight: 300;
    padding: 4px 10px;
    line-height: 1;
    font-size: 16px;
}
.category-list ul {
	display: flex;
    list-style: none;
	margin: 0;
}
.category-list ul li a {
	margin: 0 0 15px;
    padding: 0 20px 0 17px;
    border-right: 1px solid #555;
    color: #555;
    text-decoration-color: #8c6ac3;
}
.category-list ul li:last-child a {
	border: none;
}
#blog_category li.current > a {
    text-decoration: underline;
}




@media screen and (max-width: 1350px) {
	
	.rh{
		max-width:900px;
	}
	
}

@media screen and (max-width: 1280px) {
}


@media screen and (max-width: 1180px) {

	#pagewrap .pagewidth{
    width:98%;
  }
	
	.footer_contact .row_inner {
		padding:0 1%;
	}
	
	#headerwrap #main-menu li.nav00 {
		display: block;
	}
	
	body #headerwrap{
		padding:0;
	}
	
	body.mobile_menu_active #header,body #header.header  {
    padding:30px 3%;
	}

	.header-brand-container,.rh{
		float:none;
		text-align:center;
		padding:0;
	 }
	
	.rh .btn_h,
	.h_contact{
		display:none;
	}
#headerwrap #main-menu-container.is-active{
		display: flex;
    align-items: center;
	background:rgba(255,255,255,0.95);
	}
	#headerwrap #main-menu-container {
		display: flex;
		align-items: center;
	}
#headerwrap #main-menu {
    background: none;
    padding-right: 0;
}
#headerwrap #main-menu li ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: unset;
		background: none;
		padding:0;
	}
	#headerwrap #main-menu li ul.sub-menu li {
    	background:none;
		padding-bottom:15px;
	}
	li ul.sub-menu li:first-child {
		padding-top: 0;
	}
	li ul.sub-menu li:last-child {
		padding-bottom: 0;
	}
#headerwrap #main-menu-container ul > li.menu-item{
		padding: 12px;
        background: none;
        text-align: center;
        border-bottom: 0;
        display: block;
        margin: 0;
	}

body .sp-footer-icons-container a {
    font-size: 14px;
    padding: 11px 0;
}
	
	#headerwrap #main-menu > li > a {
		font-size: 20px;
	}

#pagewrap {
    padding-bottom: 0;
}

body #footer .sp-footer-icons-container a{
		background:#333;
		color: #fff;
		border-color:#fff;
	}
	
	.img_salon_2.module {
		left: 17%;
	}
	#headerwrap #main-menu > li:not(:last-child):before {
    	content: none;
	}
  
}


@media screen and (max-width: 1024px) {
	
	
	#pagewrap .wpcf7 table tr th, 
	#pagewrap .wpcf7 table tr td{
		width:100%;
		padding:20px 0;
	}
	
	#pagewrap .wpcf7 table tr th{
		padding-bottom:0;
	}
	
}

@media screen and (max-width: 939px) {
  
	#pagewrap .pagewidth{
    width:96%;
  }
	
	.footer_contact .row_inner {
		padding:0 3%;
	}
	
  .f-con{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:9999;
  }
	
#headerwrap #main-menu > li {display:block;border:0;padding:10px;}
		
	
body #headerwrap {
  padding:0;
}
  
  
  body.mobile_menu_active .social-widget{
  	padding:0;
  }

body #footerwrap .f-con {
    display:flex;
	}

body #footerwrap .f-con a {
    padding: 5px;
  }
  
  .img_right_939_center .subrow_inner{
  	flex-direction: column-reverse;
  }

#pagewrap {
    padding-bottom:50px;
}

body #pc-backtop{
		display:none;
	}

}


@media screen and (max-width: 768px) {
  
  .table_multicolumn.module .tb_text_wrap{
    overflow: auto;
    margin-right: 2%;
    margin-left: 2%;
	}
  
  
  .table_multicolumn.module.module .tb_text_wrap table{
    width: 685px;
	}

}

@media screen and (max-width: 680px) {

#pagewrap .pagewidth{
    width:92%;
  }
	
	.slide_home_1.module .slide-image img {
		height: 445px;
	}
	
	.text_main_1.module {
		font-size: 30px;
		margin-bottom:10px;
	}
	.text_main_2.module {
		font-size: 36px;
		margin-bottom:15px;
	}
	
	.list_social_footer_1 .subrow_inner {
		--area: "col1 col2 col3 col4" !important;
	}
	
	.footer_contact .row_inner {
		padding:0 4%;
	}
	
	.bg_sub_main .tb-column-inner {
		height: 300px;
	}
	
	.single-post .post {
		margin-bottom: 60px;
	}
	
	.single-post #layout{
		padding:80px 0;
	}
	
	.sidebar1 #layout #sidebar{
		padding:80px 0 40px;
	}
	.sidebar1 #layout #content{
		padding:0 0 80px;
	}
	
	.sidebar1 .list-categories * {
    	display: block;
		text-align: left;
	}
	
	.sidebar1 .widgettitle{
		margin:0 0 20px;
		padding: 15px;
	}
	
	.sidebar1 .list-categories a {
    margin: 0 0 15px;
    padding: 0 0 0 17px;
		border-right: unset;
		position:relative;
	}
	
	.sidebar1 .list-categories a:before{
		content:"-";
		display:block;
		line-height:1;
		position:absolute;
		top:0;
		left:5px;
	}
	
	#pagewrap .module-accordion ul *{  
    transition: all 0.3s;
  }
  #pagewrap .module-accordion ul li .accordion-content {
     display:none;
  }
  #pagewrap .module-accordion ul .builder-accordion-active .accordion-content {
     display:block !important;
  }
	
	.arr_faq.module li {
    	margin-bottom: 30px;
		padding: 0 2% 15px;
	}
	
	.arr_faq.module .accordion-title:before {
    	font-size: 35px;
		top: 10px;
	}
	
	.arr_faq.module .accordion-title {
		padding: 10px 0 10px 50px;
	}
	
	.img_salon_2.module {
		position: static;
		left: 0;
		width: unset;
		z-index: 2;
		min-width: unset;
		text-align: center;
	}
	
	
	.box_school_1 .subrow_inner {
		grid-template-columns: 100% 100%;
		--gutter: 0%;
	}
	
	.text_cc_1.module .module-title{
		padding:0 15px;
	}
	
	
/* 	SP_20250818 */
	.module.btn_page_1 {
		text-align: center;
	}
	.ti_salon_1.module .tb_text_wrap,
	.ti_center_line_bottom.module .module-title,
	.text_cc_1.module .module-title,
	.ti_menu_1.module .module-title,
	.text_school_1.module .module-title,
	.post_media_1.module .post-title {
		font-size: 24px;
	}
	.text_salon_2.module .module-title {
		font-size: 22px;
	}
	.ti_page_1.module .module-title {
		font-size: 26px;
	}
	.ti_salon_1.module .tb_text_wrap strong,
	.ti_school_1.module .module-title {
		font-size: 30px;
	}
	br.sp-only {
		display: block;
	}
	.text_menu_3.module:before {
		bottom: 0;
	}
	.top-salon_info table tr td:first-child {
		width: 23%;
	}
	.category-list {
    	display: block;
	}
	.category-list ul {
    	display: block;
	}
	.category-list .module-title {
		margin: 0 0 20px;
        padding: 15px;
	}
	.category-list ul li a {
		border: none;
		margin: 0 0 15px;
		padding: 0 0 0 17px;
		position: relative;
	}
	.category-list ul li a:before {
        content: "-";
        display: block;
        line-height: 1;
        position: absolute;
        top: 0;
        left: 5px;
    }
	.archive #layout{
		padding-bottom: 50px;
	}
	


}

@media screen and (max-width: 568px) {
	
	.table_salon_1b.module td:first-child, 
	.table_salon_1.module td:first-child {
		border-right: 1px solid #8c6ac3;
		width: 100px;
		padding-left: 0;
	}
	
	.table_salon_1b.module td:last-child, 
	.table_salon_1.module td:last-child {
		padding-left: 20px;
	}
}

@media screen and (max-width: 480px) {
	
	.text_salon_2.module .module-title {
		padding: 5px 15px;
	}
	
	.p_anchor_2.module ul {
		flex-direction: column;
		align-items: center;
	}
	
	.p_anchor_2.module ul li {
		width: 96%;
	}
	
}

@media screen and (max-width: 380px) {}

@media screen and (max-width: 320px) {}


