@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* M+ 1p　font-family: "Mplus 1p"; */
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css); /* Rounded M+ 1c　font-family: "Rounded Mplus 1c"; */
@import url(//fonts.googleapis.com/earlyaccess/hannari.css); /* はんなり明朝　font-family: "Hannari"; */
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css); /* こころ明朝　font-family: "Kokoro"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css); /* さわらび明朝　font-family: "Sawarabi Mincho"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css); /* さわらびゴシック　font-family: "Sawarabi Gothic"; */
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* ニコモジ　font-family: "Nico Moji"; */
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css); /* ニクキュウ　font-family: "Nikukyu"; */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css); /* Noto Sans Japanese　font-family: "Noto Sans Japanese"; */
@import url('https://fonts.googleapis.com/css?family=Cardo:400,400i');/* font-family: 'Cardo', serif; */




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

	サイトスタイル

================================================================================ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position:relative;
	color: #555555;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size:16px;
	font-weight:300;
	line-height:1.7;
	word-wrap:break-word;
	background-color:#fff;
	font-family: "Hiragino Kaku Gothic W2 JIS2004","Noto Sans Japanese","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
}

#wrapper {
	position:relative;
	max-width:1920px;
	width:100%;
	margin:0 auto;
	min-height:100vh;
	display:block;
	overflow:hidden;
}

h1{
	margin:0;
	font-weight:300;
    font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
}
h2, h3, h4 {
	margin:0;
	font-weight:700;
}

img {
	vertical-align:bottom;
	-webkit-backface-visibility: hidden;
}


/* リンク：透過アクション付 */
a{
	color:#5e899d;
	opacity:1;
	transition-property:color,opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
a:hover{
	color:#5e899d;
	opacity:0.6;
}

a img{
	opacity:1;
	transition-property:opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
a:hover img{
	opacity:0.6;
}





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

	display:none

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none{
		display: none;
	}
	/* PCヘッダー内容消し */
	.top-header-box,
	.cate-header{
		display: none;
	}

}





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

	フロート回り込み解除 clearfix

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

.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: ".";
	overflow: hidden;
	float: none;
}
.clearfix {
	display: block; /* for IE8 */
	clear: both;
}





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

	エディター共通設定

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

p{
	margin-bottom:16px;
}
p:last-of-type{
	margin-bottom:0;
}

strong,b{
	font-weight:700;
}
big{
	font-size:larger;
}
small{
	font-size:smaller;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.alignleft {
		float: left;
	}

	.alignright {
		float: right;
	}

	img.alignright {
		display: inline-block;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 16px;
		margin-left: 24px;
	}

	img.alignleft {
		display: inline-block;
		margin-top: 0px;
		margin-right: 24px;
		margin-bottom: 16px;
		margin-left: 0px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* youtube siteorigin */
	.youtube-player{
		width:100%;
		height:280px;
		margin-top:16px;
	}

	/* エディターで画像の下に隙間ができるの解除 */
	img + br {
		display:none;
	}
}





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

	PC表示左右入れ替え

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.pc_lr {
		display: block !important;
		overflow: auto;
	}
	.pc_lr > div:nth-of-type(1) {
		float: right;
	}
	.pc_lr > div:nth-of-type(2) {
		float: left;
	}
}





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

	その他

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {


}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body{
		font-size:14px;
	}
	img {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	p {
		font-size: 14px;
	}
}





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

	PCヘッダー

================================================================================ */
@media (min-width: 768px) {

	header{
		position:relative;
		max-width:1920px;
		width:100%;
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display:none;
	}
	
}





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

	SPヘッダー

================================================================================ */
@media (max-width: 767px) {

	header{
		position:relative;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display:none;
	}
	.sp_h1 {
		background-color: #fff;
		padding: 8px 63px 8px 8px;
	}
	.sp_h1 h1 {
		font-size: 12px;
        font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
	}

}


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

	フッター

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer {
		position:relative;
		border-top: 1px solid #555555;
		height:548px;
		padding: 103px 0 0;
	}
    .footer-re p{/* フッター完全予約制 */
		display: none;
	}


	/* SP用フッターリンク */
	.f_navi_sp{
		display:none;
	}

	.footer-web-sp{
		display:none;
	}
	
	.footer-logo p{/* フッターロゴ */
		background-image:url(../img/footer-logo.png);
		background-position: center top;
		background-repeat:no-repeat;
		width: 182px;
		height: 27px;
		display:block;
		text-indent: -9999px;
		margin: 0 auto 0;
	}
	.footer-tel{
		padding: 30px 0 40px;
	}
	.footer-tel p a{/* フッター電話 */
		background-image:url(../img/footer-tel.png);
		background-position: center top;
		background-repeat:no-repeat;
		width: 201px;
		height: 50px;
		display:block;
		text-indent: -9999px;
		pointer-events: none;position: absolute;
		left: 50%;
		margin-left: -101px;
	}
	
	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}
	
	.f_kotei p{
		text-align:center;
		font-size: 14px;
		font-feature-settings: "palt" 1;
		-webkit-font-feature-settings: 'palt' 1;
		letter-spacing: 2.3px;
		line-height: 2;
		margin-top: 25px;
		color:#555555;
        font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
	}
	.f_kotei p:nth-of-type(2){
		margin:0;
	}

	
	/* フッターリンク */
	.footer-link ul{
		overflow:auto;
		margin-top: 49px;
		color:#5e899d;
		margin: 50px auto 0;
		font-size:0;
		text-align:center;
	}
	.footer-link ul li{
		display:inline-block;
		font-family: "garamond-premier-pro-display", "MS PMincho", "MS 明朝", "Sawarabi Mincho",serif;
		font-weight: 300 !important;
				font-feature-settings: "palt" 1;
		-webkit-font-feature-settings: 'palt' 1;
		letter-spacing: 4px;
		font-size: 20px;
	}
	.footer-link ul li:nth-child(even){ 
		margin:0 8px;
	}

	/* シェアボタン */
	footer .addtoany_shortcode > div{
		display:none;
	}


	/* コピーライト */
	.f_copy{
		padding: 45px 0 0;
		font-family: "garamond-premier-pro-display", "MS PMincho", "MS 明朝", "Sawarabi Mincho",serif;

	}
	.f_copy p{
		font-size: 14px;
		text-align: center;
		letter-spacing: 1.5px;
	}

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	.footer-link{
		display:none;
	}
	
	footer {
		position:relative;
		border-top: 1px solid #555555;
	}

	footer .panel-grid{
		margin:0 auto !important;
	}
	footer .panel-grid-cell{
		margin:0 auto !important;
	}
	footer .so-panel{
		margin:0 auto !important;
	}

	.footer-logo p{/* フッターロゴ */
		background-image:url(../img/top-logo.png);
		background-position: center top;
		background-repeat:no-repeat;
		background-size: auto 26px;
		width: auto;
		height: 37px;
		display: block;
		text-indent: -9999px;
		margin: 43px auto 0;
	}
	.footer-re p{/* フッター完全予約制 */
		background-image:url(../img/sp-top-re.png);
		background-position: center top;
		background-repeat:no-repeat;
		background-size: auto 20px;
		width: auto;
		height: 30px;
		display:block;
		text-indent: -9999px;
        margin: 0px auto 0;
	}
	.footer-tel{
		padding: 13px 0 13px;
	}
	.footer-tel p a{/* フッター電話 */
		background-image:url(../img/sp-top-tel.png);
		background-position: center top;
		background-repeat:no-repeat;
		background-size: auto 22px;
		width: auto;
		height: 28px;
		display:block;
		text-indent: -9999px;
	}
	
	.footer-web-sp p a{/* web予約 */
		width: auto;
		display:block;
		text-align: center;
		margin: 0 auto 0px;
        font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
        font-size: 23px;
	}

	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
		width:100%;
		margin:0 auto;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}
	.f_kotei p{
		text-align:center;
		font-size: 14px;
		font-feature-settings: "palt" 1;
		-webkit-font-feature-settings: 'palt' 1;
		letter-spacing: 2.3px;
		line-height: 2;
		color:#555555;
        font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
	}
	.f_kotei p:nth-of-type(2){
		margin:0;
	}

	/* シェアボタン */
	footer .addtoany_shortcode > div{
		text-align:center;
		display:block;
		padding:8px 0;
	}


	/* コピーライト */
	.f_copy{
		padding:8px 0;
	}
	.f_copy p{
		font-size:11px;
		text-align:center;
        font-family: garamond-premier-pro-display, "ヒラギノ明朝 ProN W3", serif;
	}
}





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

	ページトップボタン

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 9999;
		right: 10px;
	}
	#page-top a {
		background: url(../img/pagetop_off.png) center top no-repeat;
		background-size:contain;
		width: 30px;
		height: 30px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
		opacity:1;
		background: url(../img/pagetop_on.png) center top no-repeat;
		background-size:contain;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page-top {
		position: fixed;
		z-index: 9999;
		right: 8px;
	}
	#page-top a {
		background: url(../img/pagetop_off.png) center top no-repeat;
		background-size:contain;
		width: 30px;
		height: 30px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
		opacity:1;
		background: url(../img/pagetop_on.png) center top no-repeat;
		background-size:contain;
	}
}





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

	パンくずリスト

================================================================================ */
	#breadcrumb{
		padding:16px 0;
		background-color:transparent;
	}
	#breadcrumb > ul > li {
		font-size: 14px;
		display:inline-block;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 5px;
		content: '>';
	}
	#breadcrumb > ul > li > a {
	}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position:relative;
		max-width:1920px;
		width:100%;
		background:url(../img/) left top repeat;
	}

	#breadcrumb > ul{
		position:relative;
		max-width:1000px;
		width:100%;
		margin:0 auto;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position:relative;
		background:url(../img/) left top repeat;
		background-size: ;
	}

	#breadcrumb > ul{
		position:relative;
		width:100%;
		padding:0 16px;
	}
}





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

	ページネーション

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.wp-pagenavi{
		text-align:center;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.wp-pagenavi{
		float:none !important;
		font-size:12px !important;
	}
	.wp-pagenavi span,
	.wp-pagenavi a{
		display:block;
		float:left;
		margin-bottom:4px;
	}
}





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

	Wp Lightbox Bank プラグイン

================================================================================ */
#lightGallery-outer{
	background-color:rgba(0,0,0,0.8) !important;
}





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

	Addtoanyボタン

================================================================================ */
.addtoany_shortcode{
	padding-top:8px;
}
/* 翻訳プラグインバグ対策 */
.addtoany_shortcode font{
	display:none;
}