/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/
/* CSS Document */
@font-face {
  font-family: 'ionicons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/ionicons.ttf) format('opentype');
 }


/* ??????????????????????????????????????????????????
Body - not related to megamenu
?????????????????????????????????????????????????? */

body {
    font-family: 'Source Sans Pro', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: #444;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

header{
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
/* ??????????????????????????????????????????????????
megamenu.js STYLE STARTS HERE
?????????????????????????????????????????????????? */


/* ??????????????????????????????????????????????????
Screen style's
?????????????????????????????????????????????????? */


.menu-container {
    width: 100%;
    margin: 0 auto;
    background: #fff;
}
.menu-container .menu ul a:hover {
	text-decoration: none!important;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
	/*margin-top: 5px;*/
	margin-top: -30px;
    margin-right: 18px;
	text-decoration: none;
}

.menu-mobile:after:active {
	text-decoration: none;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
}

.menu > ul,
.nav_list > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.nav_list > ul:before,
.menu > ul:after,
.nav_list > ul:after {
    content: "";
    display: table;
}

.menu > ul:after,
.nav_list > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    background: #fff;
    padding: 0;
    margin: 0 5px 0 0;
}

.nav_list > ul > li {
    background: #fff;
    padding: 0;
    margin: 0 5px 0 0;
}

.menu > ul > li span.header_menu,
.nav_list > ul > li span.header_menu {
    text-decoration: none;
    padding: 3.1em 1.7em .3em;
    display: block;
	font-size:1.3em;
	cursor: pointer;
	font-weight: bold;
	color: #555;
}

.menu > ul > li a:hover,
.nav_list > ul > li a:hover {
    /*background: rgba(250,250,250,0.75);*/
}

.sougisite_guide a p {
  display: inline-block;
  padding: 18px 40px;
  background-color: #a49dd4;
  color: #fff;
  border: none;
  text-align: center;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sougisite_guide a p:hover {
  background-color: #847ac7;
}

.gojokai_guide a p {
  display: inline-block;
  padding: 18px 40px;
  background-color: #79B0AF;
  color: #fff;
  border: none;
  text-align: center;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.gojokai_guide a p:hover {
  background-color: #51908f;
}
/*メガメニュー全体レイアウト PC*/
@media only screen and (min-width: 1161px) {

	
/*下矢印用*/
	.under_sign_bridal {
		background: url("../images/under_sign_b.png") no-repeat top center;
		border-bottom: 8px solid #D791AD;
		cursor: pointer;
		width: 100%;
		height: 28px;
		margin: 0;
		padding: 0;
		line-height: 0;
	}
	.under_sign_funeral {
		background: url("../images/under_sign_f.png") no-repeat top center;
		border-bottom: 8px solid #B5B0D5;
		cursor: pointer;
		width: 100%;
		height: 28px;
		margin: 0;
		padding: 0;
		line-height: 0;
	}	
	.under_sign_gojokai {
		background: url("../images/under_sign_g.png") no-repeat top center;
		border-bottom: 8px solid #79B0AF;
		cursor: pointer;
		width: 100%;
		height: 28px;
		margin: 0;
		padding: 0;
		line-height: 0;
	}
	
/*下矢印用ここまで*/

.menu > ul > li span.menu_title,
.nav_list > ul > li span.menu_title {
    text-decoration: none;
    padding-top: 1.0em;
    display: block;
	font-size: 1.2em;
	cursor: pointer;
	font-weight: bold;
}

.menu > ul > li > ul,
.nav_list > ul > li > ul {
    display: none;/*動作用*/
    /*display: block;/*修正用*/
    width: 100%;
	/*height: 290px;*/
    background: rgba(250,250,250,0.75);
	-webkit-backdrop-filter: contrast(4) blur(10px);
	backdrop-filter: contrast(4) blur(10px);
    padding: 15px 30px 30px;
    position: absolute;
    z-index: 99;
	top: 140px;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}
.menu > ul > li > ul > li > ul.top_near{
	margin: 0;
}
.menu > ul > li > ul.bridal_nav,
.nav_list > ul > li > ul.bridal_nav {
    background: rgba(245,213,226,0.7);
	-webkit-backdrop-filter: contrast(4) blur(10px);
	backdrop-filter: contrast(4) blur(10px);
	}
.menu > ul > li > ul.funeral_nav,
.nav_list > ul > li > ul.funeral_nav {
    background: rgba(226,223,246,0.7);
	-webkit-backdrop-filter: contrast(4) blur(10px);
	backdrop-filter: contrast(4) blur(10px);
	}
.menu > ul > li > ul.gojokai_nav,
.nav_list > ul > li > ul.gojokai_nav {
    background: rgba(207,227,227,0.7);
	-webkit-backdrop-filter: contrast(4) blur(10px);
	backdrop-filter: contrast(4) blur(10px);
	}
	
	
}
/* Firefox 透過禁止*/
@-moz-document url-prefix() {
.menu > ul > li > ul,
.nav_list > ul > li > ul  {
    background: rgba(250,250,250,1.0);
    }
.menu > ul > li > ul.bridal_nav,
.nav_list > ul > li > ul.bridal_nav {
    background: rgba(245,213,226,1.0);
	}
.menu > ul > li > ul.funeral_nav,
.nav_list > ul > li > ul.funeral_nav {
    background: rgba(226,223,246,1.0);
	}
.menu > ul > li > ul.gojokai_nav,
.nav_list > ul > li > ul.gojokai_nav {
    background: rgba(207,227,227,1.0);
	}

}
/* IE 透過禁止*/
@media all and (-ms-high-contrast: none) {
.menu > ul > li > ul,
.nav_list > ul > li > ul  {
    background: rgba(250,250,250,1.0);
    }
.menu > ul > li > ul.bridal_nav,
.nav_list > ul > li > ul.bridal_nav {
    background: rgba(245,213,226,1.0);
	}
.menu > ul > li > ul.funeral_nav,
.nav_list > ul > li > ul.funeral_nav {
    background: rgba(226,223,246,1.0);
	}
.menu > ul > li > ul.gojokai_nav,
.nav_list > ul > li > ul.gojokai_nav {
    background: rgba(207,227,227,1.0);
	}
}

.menu > ul > li > ul:before,
.nav_list > ul > li > ul:before,
.menu > ul > li > ul:after,
.nav_list > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after,
.nav_list > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li,
.nav_list > ul > li > ul > li {
    margin: 0;
    /*padding-bottom: 0;*/
	padding: 0px;
    list-style: none;
    /*width: 25%;*/
	width:100%;
    background: none;
    /*float: left;*/
	font-size:1.2em;
}

.menu > ul > li > ul > li a.ttl_link,
.nav_list > ul > li > ul > li a.ttl_link {
    color: #444;
    padding: 0.2em 0;
	transition: .4s;
    display: inline-block;
}
.ttl_nolink{
	color: #444;
}
.menu > ul > li > ul > li a.ttl_link:hover,
.nav_list > ul > li > ul > li a.ttl_link:hover {
    color: #179e9e;
	text-decoration: none;
}
.menu > ul > li > ul > li a:hover,
.nav_list > ul > li > ul > li a:hover{
    color: #179e9e;
	transition: .4s;
	text-decoration: none;
}

/* ヘッダーの中身フレックス */
.menu > ul > li > ul > li > ul,
.nav_list > ul > li > ul > li > ul {
    display: flex;
	align-items: center;
	flex-wrap: wrap;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}
.menu > ul > li > ul.funeral_nav span {
	/* font-size: .8em; */
}

.top_line{
    border-top: 1px solid #ccc;
	padding-top: 10px;
}
.top_line_none{
	padding-top: 10px;
}
/* ヘッダーの中身コンテンツレイアウト */
.menu > ul > li > ul > li > ul > li,
.nav_list > ul > li > ul > li > ul > li {
    width: 100%;
	max-width: 168px;
	background-color: rgba(255,255,255,1.0);
	border-left: 3px solid rgba(255,255,255,1.0);
	box-shadow: 3px 3px 5px rgba(29,29,29,0.2);
    margin: 10px 5px 0 5px;
    font-size: .9em;
	text-align: center;
}
.menu > ul > li > ul > li > ul > li.aboutlink,
.nav_list > ul > li > ul > li > ul > li.aboutlink {
    width: 100%;
	max-width: 240px;
	background-color: rgba(255,255,255,1.0);
	border-left: 3px solid rgba(255,255,255,1.0);
	box-shadow: 3px 3px 5px rgba(29,29,29,0.2);
    margin: 10px 5px 0 5px;
    font-size: .9em;
	text-align: center;
}

.menu > ul > li > ul > li > ul > li:hover,
.nav_list > ul > li > ul > li > ul > li:hover {
    width: 100%;
	max-width: 168px;
	background-color: rgba(255,255,255,1);
	border-left: 3px solid #179E9E;
	transition: .3s;
}
.menu > ul > li > ul > li > ul > li.aboutlink:hover,
.nav_list > ul > li > ul > li > ul > li.aboutlink:hover {
    width: 100%;
	max-width: 240px;
	background-color: rgba(255,255,255,1);
	border-left: 3px solid #179E9E;
	transition: .3s;
}

.menu > ul > li > ul > li > ul > li a,
.nav_list > ul > li > ul > li > ul > li a {
	display: block;
	padding: 20px;
    border: 0;
}


/*▼ヘッダー追記*/
	.header_container{
		width: 100%; max-width: 1200px;
		margin: 0 auto;
	}
	
	.header_up_pc{
		display: flex;
		justify-content:space-between;
		align-items: center;
	}
	
	.header_up_sp{
		display: none;
	}

	.sp_logo{
		display: none;
	}
	img.logo {
    	width: 250px;
		margin: 20px 70px 0 30px;
	}

	.header_top_icon:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 2em;/*画像の幅*/
  		height: 2em;/*画像の高さ*/
 		background-image: url("../images/top_icon.png");
  		background-size: contain;
		background-repeat: no-repeat;
  		vertical-align: middle;
		margin: 0 15px 0 0;
	}

	.header_bridal_icon:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 2em;/*画像の幅*/
  		height: 2em;/*画像の高さ*/
 		background-image: url("../images/bridal_icon.png");
  		background-size: contain;
		background-repeat: no-repeat;
  		vertical-align: middle;
		margin: 0 15px 0 0;
	}
	
	.header_funeral_icon:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 2em;/*画像の幅*/
  		height: 2em;/*画像の高さ*/
 		background-image: url("../images/funeral_icon.png");
  		background-size: contain;
		background-repeat: no-repeat;
  		vertical-align: middle;
		margin-right: 15px;
	}	

	.header_member_icon:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 2em;/*画像の幅*/
  		height: 2em;/*画像の高さ*/
 		background-image: url("../images/member_icon.png");
  		background-size: contain;
		background-repeat: no-repeat;
  		vertical-align: middle;
		margin-right: 15px;
	}
	
	.header_gojyokai_icon:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 2em;/*画像の幅*/
  		height: 2em;/*画像の高さ*/
 		background-image: url("../images/gojyokai_icon.png");
  		background-size: contain;
		background-repeat: no-repeat;
  		vertical-align: middle;
		margin-right: 15px;
	}	
	

	/*メガメニュー調整*/

	.header_link_title{
		font-weight:bold;
	}

/*結婚式*/
/*
li.header_bridal {
    width: 33%!important;
}
*/
ul.header_bridal_hall_list_ul {
    /*display: flex!important;
	justify-content: space-around;
	flex-wrap:wrap!important;*/
}
ul.header_bridal_hall_list_ul > li {
	/*width: 49%!important;*/
}

/*
li.header_bridal {
    width: 33%!important;
}
*/
/*葬儀*/
ul.header_funeral_hall_list_ul {
    /*display: flex!important;
	justify-content: space-around;
	flex-wrap:wrap!important;*/
}
ul.header_funeral_hall_list_ul > li {
	/*width: 49%!important;*/
}

	/* 採用情報ボタン */
	.li_recruit{
		float: right!important;
			width:300px;
			margin:10px 0 0!important;
	}

	.li_recruit_sougi{
		display: flex;
		justify-content: center;
	}

	.li_recruit button{
		width:100%;
		width:300px;
	}

	.li_recruit_sougi button{
		width:100%;
		width:300px;
	}


	.recruit-button {
		padding: 10px 20px;
		margin-bottom: 10px;
		font-size: 16px;
		font-weight:bold;
		letter-spacing: 0.1rem;
		background-color: #67af69;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.recruit-button-sougi {
		width: 100%;
		padding: 10px 20px;
		margin: 20px auto;
		font-size: 16px;
		font-weight:bold;
		letter-spacing: 0.1rem;
		background-color: #67af69;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.recruit-button:hover,
	.recruit-button-sougi:hover {
		background-color: #45a049;
	}
	.sp .recruit-button{
		width: 90%;
		margin:10px auto 0px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/*検索*/
	.li_search{
		float: right!important;
		width:300px;
		margin:15px 0 0!important;
	}

	/*　Googleサイト内検索　*/
	.gsib_a{
		padding: 10px 0px 10px 9px!important;
	}

	a.gsst_a{
		padding: 10px 10px 10px 9px!important;
	}

	.cse .gsc-search-button-v2, .gsc-search-button-v2{
		padding: 17px 27px!important;
	}
	.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus{
		background-color: #179e9e!important;
		border-radius: 5px!important;
	}

	.gsc-selected-option-container {
		max-width:100%!important;
	}
	
	/*　サイト内検索ここまで　*/

	.search_container{
  		position: relative;
  		box-sizing: border-box;
  		border: 1px solid #a5a5a5;
  		display: block;
  		padding: 3px 10px;
  		border-radius: 5px;
  		height: 48px;
  		width: 280px;
  		overflow: hidden;
		margin: 20px 0 0 20px;
	}
	
	.search_container input[type="text"]{
  		border: none;
  		height: 2.6em;
	}
	
	.search_container input[type="text"]:focus {
		outline: 0;
	}
	
	.search_container input[type="submit"]{
  		cursor: pointer;
  		font-family: FontAwesome;
  		border: none;
  		background: #79b0af;
  		color: #fff;
  		position: absolute;
  		width: 51px;
  		height: 51px;
  		right:0px;
  		top: 0px;
  		outline : none;
	}

	/*ヘッダーボタン*/
	.header_btnarea {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.btn-online{
		display: inline-block;
  		padding: .5em 0;
  		text-decoration: none;
  		color: #fff;
		font-weight: bold;
  		border: solid 2px #e5990e;
		background: #e5990e;
  		/*border-radius: 5px;*/
  		transition: .4s;
		/*margin: 20px 0 0 20px;*/
		width: 25%;
		font-size: 1.3em;
		text-align: center;
	}
	
	.btn-online:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/online_nyukai_icon_pc_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-online:hover {
  		background: #fff;
  		color: #e5990e;
		border: solid 2px #e5990e;
		transition: .4s;
  		text-decoration: none;
	}
	
	.btn-online:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/online_nyukai_icon_pc.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-ippou{
		display: inline-block;
  		padding: .5em 0;
  		text-decoration: none;
  		color: #fff;
		font-weight: bold;
		background: #bd3d3d;
  		border: solid 2px #bd3d3d;
  		transition: .4s;
		width: 25%;
		font-size: 1.3em;
		text-align: center;
	}
	
	.btn-ippou:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/ippou_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-ippou:hover{
		background: #fff;
		color: #bd3d3d;
		border: solid 2px #bd3d3d;
		transition: .4s;
  		text-decoration: none;
	}

	.btn-ippou:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/ippou_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}

	.btn-flower{
		display: inline-block;
  		padding: .5em 0;
  		text-decoration: none;
  		color: #fff;
		font-weight: bold;
  		border: solid 2px #8574b6;
		background: #8574b6;
  		transition: .4s;
		width: 25%;
		font-size: 1.3em;
		text-align: center;
	}
	
	.btn-flower:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/flower_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-flower:hover {
  		background: #fff;
  		color: #8574b6;
		border: solid 2px #8574b6;
		transition: .4s;
  		text-decoration: none;
	}
	
	.btn-flower:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/flower_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-siryo{
		display: inline-block;
  		padding: .5em 0;
  		text-decoration: none;
  		color: #fff;
		font-weight: bold;
  		border: solid 2px #417bca;
		background: #417bca;
  		transition: .4s;
		width: 25%;
		font-size: 1.3em;
		text-align: center;
	}
	
	.btn-siryo:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/document_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-siryo:hover {
  		background: #fff;
  		color: #417bca;
		border: solid 2px #417bca;
		transition: .4s;
  		text-decoration: none;
	}
	
	.btn-siryo:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 40px;/*画像の高さ*/
 		background-image: url("../images/document_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	/*▲ヘッダーボタン*/

/* ??????????????????????????????????????????????????
Mobile style's
?????????????????????????????????????????????????? */
/*メガメニュー全体レイアウト SP*/

@media only screen and (max-width: 1160px) {
    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        /*display: block;*/
		display: inline;
		text-decoration: none;
    }
    .menu-dropdown-icon:before {
        display: none;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
		clear: both;
    }
	
    .menu > ul > li > ul {
        position: relative;
		height: auto;
		margin-bottom: 20px;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
	.menu > ul > li > ul > li > ul {
        position: relative;
        display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}	

	.nav_list > ul > li > ul > li > ul {
        position: relative;
        display: flex;
		/* justify-content: center; */
		flex-wrap: wrap;
		padding-left: 5%;
	}	

	.menu > ul > li > ul > li > ul::after,
	.nav_list > ul > li > ul > li > ul::after {
        content: "";
        display: block;
		width: 46%;
		height: 0;
	}	
    .menu > ul > li > ul > li > ul > li,
	.menu > ul > li > ul > li > ul > li.aboutlink {
		width: 46%;
    }
	.menu > ul > li > ul > li > ul > li:active ,
	.menu > ul > li > ul > li > ul > li:hover {
		width: 46%;
		background-color: rgba(255,255,255,.2);
		border-left: 3px solid #179E9E;
		box-shadow: 3px 3px 5px rgba(29,29,29,0.2);
		text-align: center;
		transition: .3s;
	}
	.menu > ul > li > ul > li > ul > li.aboutlink:active ,
	.menu > ul > li > ul > li > ul > li.aboutlink:hover {
		width: 46%;
		background-color: rgba(255,255,255,.2);
		border-left: 3px solid #179E9E;
		box-shadow: 3px 3px 5px rgba(29,29,29,0.2);
		text-align: center;
		transition: .3s;
	}
    .menu > ul > li > ul > li > ul > li a{
        display: block;
		padding: 20px 0;
    }
    .menu .show-on-mobile {
        display: block;
    }
	
	/*ヘッダー*/
header{
	background: #fff;
}
	
.sp_logo {
    display: inline;
}
	
.menu > ul > li span.menu_title {
    padding: 1.0em;
}

img.logo {
    width: 150px;
	margin-top: 25px;
	margin-left: 15px;
}

	.header_up_pc{
		display: none;
	}

	.header_up_sp{
		display: flex;
		justify-content:space-between;
		margin: 0 15px;
	}	
	
/*メガメニュー調整*/
/*結婚式*/
li.header_bridal {
    width: 100%!important;
}
	/*検索*/
	.li_search{
		float: right!important;
		width: 330px;
    	margin: 25px 0 0 0!important;
	}

	.li_search_sougi{
		/* width: 330px; */
    	margin: 25px 20px 0!important;
	}

	.gsc-input-box{
		margin-right: 10px;
	}
	
	.kensaku_sp {
	    margin: 0 15px;
	}
	.search_container{
  		position: relative;
  		box-sizing: border-box;
  		border: 1px solid #a5a5a5;
  		display: block;
  		padding: 3px 10px;
  		border-radius: 5px;
  		height: 48px;
  		width: 100%;
  		overflow: hidden;
		margin: 10px auto;
	}
	
	.search_container input[type="text"]{
  		border: none;
  		height: 2.6em;
	}
	
	.search_container input[type="text"]:focus {
		outline: 0;
	}
	
	.search_container input[type="submit"]{
  		cursor: pointer;
  		font-family: FontAwesome;
  		border: none;
  		background: #79b0af;
  		color: #fff;
  		position: absolute;
  		width: 51px;
  		height: 51px;
  		right: 0px;
  		top: 0px;
  		outline : none;
	}
	/*ヘッダーボタン*/
	.header_btnarea {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.btn-online{
		display: inline-block;
  		padding: 1.2em 0;
  		text-decoration: none;
  		color: #e5990e;
		font-weight: bold;
  		border: solid 2px #e5990e;
		background: white;
  		border-radius: 5px;
  		transition: .4s;
		margin: 20px 0 0 0;
		width: 23%;
		font-size: 0.7em;
		text-align: center;
	}
	
	.btn-online:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/online_nyukai_icon_pc.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-online:hover {
  		background: #79b0af;
  		color: #fff;
		border: solid 2px #79b0af;
		transition: .4s;
	}
	
	.btn-online:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/online_nyukai_icon_pc_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-ippou{
		display: inline-block;
  		padding: 1.2em 0;
  		text-decoration: none;
  		color: #fff;
		font-weight: bold;
		background: #bd3d3d;
  		border: solid 2px #bd3d3d;
  		border-radius: 5px;
  		transition: .4s;
		margin: 20px 0 0 0;
		width: 23%;
		font-size: 0.7em;
		text-align: center;
	}
	
	.btn-ippou:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/ippou_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-ippou:hover{
		background: #79b0af;
		border: solid 2px #79b0af;
		transition: .4s;
	}

	.btn-ippou:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/ippou_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}

	.btn-flower{
		display: inline-block;
  		padding: 1.2em 0;
  		text-decoration: none;
  		color: #8574b6;
		font-weight: bold;
  		border: solid 2px #8574b6;
  		border-radius: 5px;
		background: white;
  		transition: .4s;
		margin: 20px 0 0 0;
		width: 23%;
		font-size: 0.7em;
		text-align: center;
	}
	
	.btn-flower:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/flower_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-flower:hover {
  		background: #8574b6;
  		color: #fff;
		border: solid 2px #8574b6;
		transition: .4s;
	}
	
	.btn-flower:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/flower_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	
	.btn-siryo{
		display: inline-block;
  		padding: 1.2em 0;
  		text-decoration: none;
  		color: #417bca;
		font-weight: bold;
  		border: solid 2px #417bca;
		background: white;
  		border-radius: 5px;
  		transition: .4s;
		margin: 20px 0 0 0;
		width: 23%;
		font-size: 0.7em;
		text-align: center;
	}
	
	.btn-siryo:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/document_ic.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin: 0 0 2px 0;
		transition: .4s;
	}
	
	.btn-siryo:hover {
  		background: #79b0af;
  		color: #fff;
		border: solid 2px #79b0af;
		transition: .4s;
	}
	
	.btn-siryo:hover:before{
		content: '';/*何も入れない*/
  		display: inline-block;/*忘れずに！*/
  		width: 100%;/*画像の幅*/
  		height: 20px;/*画像の高さ*/
 		background-image: url("../images/document_ic_w.png");
  		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 5px;
		transition: .4s;
	}
	.sougisite_guide,
	.gojokai_guide{
		margin-left:1em;
	}
/*ヘッダー*/


}