@charset 'UTF-8';

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

	共通css

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

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

	Google Fonts FOUT対策

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

html {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 0.3s;
	transition-timing-function: ease-in;
	transition-delay: 0s;
}
html.wf-active {
	opacity: 1;
}





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

	サイトスタイル

================================================================================ */
* {
	-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;
	background-color: #fffcf7;
	color: #252525;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	word-wrap: break-word;
	font-family: 'Zen Kaku Gothic New',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: none;
		text-size-adjust: none;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}


#wrapper {
	position: relative;
	max-width: none;
	/* max-width: 1920px; 固定幅レイアウト時 */
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: block;
	overflow: hidden;
}

h1{
	margin: 0;
	font-weight: 300;
}
h2, h3, h4 {
	margin: 0;
	font-weight: 700;
}

img {
	vertical-align: bottom;
}

li,dt,dd {
	vertical-align: top;
}

iframe {
	vertical-align: bottom;
}


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





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

	404.php

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.not-found {
		position: relative;
		width: 1000px;
		margin: 0 auto;
	}
}





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

	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;
	}

}





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

	pointer-events: none;

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

/* FAX */
.fax_num {
	pointer-events: none;
}


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

	.pointer-events {
		pointer-events: none;
		color: #252525;
	}

}





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

	フロート回り込み解除 clearfix

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

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





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

	エディター共通設定

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

p + * {
	margin-top: 1em;
}
p:not(:first-child) {
	margin-top: 1em;
}

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


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

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		font-size: 3.5vw;
	}

	/* youtube siteorigin */
	.youtube-player {
		width: 100%;
		height: 36.5vw;
		margin-top: 4vw;
	}

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





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

	ヘッダー

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

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

	/* サイドナビ */
	.side_navi {
		position: fixed;
		background: url(../img/bg_side_navi.jpg) center top / 170px auto repeat;
		top: 0;
		right: 0;
		width: 180px;
		height: 100vh;
		z-index: 10;
		padding: 20px 0;
	}
	/* ログイン対策 */
	body.customize-support .side_navi {
		margin-top: 32px;
		height: calc( 100vh - 32px );
	}
	/* メインコンテンツ */
	header.bs_header,
	footer.bs_footer,
	main.outer_wrap,
	#breadcrumb {
		width: auto;
		margin-right: 180px;
	}



	header.bs_header {
		position: relative;
	}

	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		top: 1vw;
		left: 1vw;
		z-index: 1;
	}
	.h_logo img {
		width: 10vw;
		height: auto;
	}
	/* トップページ */
	.page-home .h_logo {
		position: absolute;
		top: 20vw;
		left: 50%;
		margin-left: -15.85vw;
		z-index: 1;
	}
	.page-home .h_logo a {
		pointer-events: none;
	}
	.page-home .h_logo img {
		width: 31.7vw;
		height: auto;
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: absolute;
		top: 8px;
		right: 8px;
		text-align: right;
		/*
		left: 8px;
		text-align: left;
		*/
		z-index: 1;
	}
	.pc_h1 h1 {
		font-size: 14px;
		line-height: 1;
		color: #ffffff;
	}


	/* グローバルナビゲーション
	----------------------------------------------- */
	.navi_pc {
		padding: 0 20px;
	}
	.navi_pc > ul {
	}
	.navi_pc > ul > li {
		line-height: 1.1;
	}
	.navi_pc > ul > li:not(first-child) {
		margin-top: 24px;
	}
	.navi_pc > ul > li a {
		font-size: 17px;
		font-weight: 700;
		letter-spacing: 0.05em;
		color: #252525;
	}


	/* グローバルナビゲーション2
	----------------------------------------------- */
	.navi_pc2 {
		padding: 0 12px;
		margin-top: 30px;
	}
	.navi_pc2 > ul {
	}
	.navi_pc2 > ul > li {
		line-height: 1.1;
		padding: 15px 0;
		border-bottom: 2px dashed #888888;
	}
	.navi_pc2 > ul > li:first-child {
		border-top: 2px dashed #888888;
	}
	.navi_pc2 > ul > li a {
		position: relative;
		display: block;
		font-size: 17px;
		font-weight: 700;
		color: #252525;
		padding: 0 0 0 35px;
	}
	.navi_pc2 > ul > li:nth-of-type(1) a::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/icon_navi01.png) center top / contain no-repeat;
		width: 23px;
		height: 26px;
		top: -4px;
		left: 2px;
	}
	.navi_pc2 > ul > li:nth-of-type(2) a::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/icon_navi02.png) center top / contain no-repeat;
		width: 25px;
		height: 25px;
		top: -1px;
		left: 0px;
	}
		.navi_pc2 > ul > li:nth-of-type(3) a::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/icon_navi03.png) center top / contain no-repeat;
		width: 28px;
		height: 28px;
		top: -2.6px;
		left: 0px;
	}



	/* コピーライト
	----------------------------------------------- */
	.h_copy {
		position: absolute;
		width: 100%;
		left: 0;
		bottom: 70px;
		text-align: center;
		font-size: 14px;
	}

}



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

	/* サイドナビ */
	.side_navi {
		display: none;
	}


	header.bs_header {
		position: relative;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		top: 2vw;
		left: 2vw;
		z-index: 1;
	}
	.h_logo img {
		width: 30vw;
		height: auto;
	}
	/* トップページ */
	.page-home .h_logo {
		position: absolute;
		top: 50vw;
		left: 50%;
		margin-left: -25vw;
		z-index: 1;
	}
	.page-home .h_logo a {
		pointer-events: none;
	}
	.page-home .h_logo img {
		width: 50vw;
		height: auto;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
		background: url(../img/bg_wood_sp.jpg) center top / 100% auto repeat;
		color: #ffffff;
		padding: 4vw 2vw;
		text-align: center;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.3;
	}


	/* グローバルナビゲーション
	------------------------------------------- */
	.navi_pc {
		display: none;
	}

}





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

	フッター

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
	}

	.f_wrap {
		position: relative;
		background: url(../img/bg_wood.jpg) center top / 90.625vw auto repeat;
		color: #ffffff;
		padding: 80px 0 86px;
		text-align: center;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
	}
	.f_logo img {
		width: 18.28vw;
		height: auto;
	}


	/* スペーサーはさみ
	------------------------------------------- */
	.f_space {
		padding: 20px 0;
	}
	.f_space img {
		width: 22px;
		height: auto;
	}


	/* 基本情報
	------------------------------------------- */
	.f_info {
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.05em;
	}
	.f_tel {
		pointer-events: none;
		color: #ffffff;
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {
	}
	.f_navi > ul {
		font-size: 0;
		text-align: center;
	}
	.f_navi > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 20px;
		line-height: 1.1;
	}
	.f_navi > ul > li:not(:first-child) {
		margin-left: 2em;
	}
	.f_navi > ul > li:not(:first-child)::before {
		position: absolute;
		content: "";
		display: block;
		background-color: #ffffff;
		width: 1px;
		height: 20px;
		top: 0.1em;
		left: -1em;
	}

	.f_navi > ul > li a {
		font-weight: 700;
		letter-spacing: 0.05em;
		color: #ffffff;
	}


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


	/* コピーライト */
	.f_copy {
	}
	.f_copy p {
		font-size: 11px;
		text-align: center;
	}

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer.bs_footer {
		position: relative;
	}

	.f_wrap {
		position: relative;
		background: url(../img/bg_wood_sp.jpg) center top / 100% auto repeat;
		color: #ffffff;
		padding: 16vw 8vw;
		text-align: center;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
	}
	.f_logo img {
		width: 40vw;
		height: auto;
	}


	/* スペーサーはさみ
	------------------------------------------- */
	.f_space {
		padding: 6vw 0;
	}
	.f_space img {
		width: 5vw;
		height: auto;
	}


	/* 基本情報
	------------------------------------------- */
	.f_info {
		font-size: 3.5vw;
		font-weight: 700;
		letter-spacing: 0.05em;
	}
	.f_tel {
		color: #ffffff;
	}


	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi {
		display: none;
	}
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
	}
	.f_navi > ul > li {
		float: left;
		width: 48%;
		padding: 2vw 2vw;
		border-bottom: 1px solid;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		margin-right: 2%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		margin-left: 2%;
	}
	.f_navi > ul > li > a {
		display: block;
		font-size: 3.5vw;
		text-decoration: none;
	}

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
	}
	.f_navi > ul > li {
		float: left;
		width: 50%;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li > a {
		background-color: #000000;
		color: #ffffff ;
		display: block;
		font-size: 3.5vw;
		font-weight: 700;
		text-decoration: none;
		padding:3vw 0;
		margin-bottom: 1px;
		text-align: center;
	}
	.f_navi > ul > li > a:hover {
		background-color: #222222;
	}
	*/
	/* ボタンが奇数の場合
	.f_navi > ul > li:first-child {
		width: 100%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 0;
	}
	*/


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


	/* コピーライト */
	.f_copy {
		margin-top: 6vw;
	}
	.f_copy p {
		text-align: center;
	}

}





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

	ページトップボタン

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 9996;
		right: 70px;
	}
	#page-top a {
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 40px;
		height: 40px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
	}
}

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





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

	パンくずリスト

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

/* 背景色 */
#breadcrumb {
	background-color: transparent;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position: relative;
		max-width: none;
		padding: 16px 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 14px;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position: relative;
		width: 100%;
		padding: 4vw 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		position: relative;
		width: 100%;
		padding: 0 4vw;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 3.5vw;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}





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

	Wp Lightbox Bank プラグイン

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





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

	Elementor Lightbox フッター非表示

================================================================================ */
.elementor-slideshow__footer {
	display: none;
}





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

	Addtoanyボタン

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

/* デザイン */
.addtoany_list a:not(.addtoany_special_service) > span {
	border-radius: 0 !important;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.addtoany_shortcode {
		margin: 14px -4px 0;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.f_share {
		margin-top: 5vw;
		font-weight: 600;
		text-align: center;
	}
	.addtoany_shortcode {
		margin: 2vw -4px 0;
	}
}


/* 翻訳プラグインバグ対策 */
.addtoany_shortcode font {
	display: none;
}





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

	IEハック

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

/* IE10以上 */
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
	.elementor-image a {
		display: inline !important;
	}
}