@charset 'UTF-8';

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

	共通css

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

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

	サイトスタイル

================================================================================ */
* {
	-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: #252525;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	word-wrap: break-word;
	/* 明朝 */ font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
}

#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: #ff6986;
	opacity: 1;
	transition-property: opacity,color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover {
	color: #ff7f98;
	opacity: 0.6;
}



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

	body{
		background: url(../img/bg_pattern.jpg) center top / 150px auto repeat;
	}

}



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

	body{
		background: url(../img/bg_pattern.jpg) center top / 75px auto repeat;
	}

}




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

	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;

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

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

	.pointer-events {
		pointer-events: 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 */
}





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

	エディター共通設定

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

p + * {
	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) {

	header {
		position: relative;
		max-width: none;
		/* max-width: 1920px; 固定幅レイアウト時 */
		width: 100%;
	}


	/* H1ロゴ
	----------------------------------------------- */
	.h_logo {
		position: fixed;
		top: 0.95vw;
		left: 2vw;
		z-index: 3;
	}
	body.customize-support .h_logo {
		margin-top: 32px;
	}

	.h_logo img {
		width: 10.78125vw;
		height: auto;
	}


	/* グローバルナビゲーション
	----------------------------------------------- */
	.navi_pc {
		position: fixed;
		top: 0;
		left: 0;
		background-color: #636363;
		z-index: 2;
		padding: 1.8vw 4vw 2.2vw 16vw;
	}
	body.customize-support .navi_pc {
		margin-top: 32px;
	}

	.navi_pc ul {
		font-size: 0;
	}
	.navi_pc ul li {
		display: inline-block;
		vertical-align: top;
		font-size: 1.25vw;
		margin-left: 1.8em;
	}
	.navi_pc ul li:first-of-type {
		margin-left: 0;
	}
	.navi_pc ul li a {
		font-family:'Libre Baskerville','Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		font-weight: 400;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		color: #ffffff;
	}
	.navi_pc ul li:last-of-type a {
		pointer-events: none;
		color:#bbb;
	}


	/* SNS
	----------------------------------------------- */
	.sns_pc {
		position: fixed;
		top: 1.77vw;
		right: 1.77vw;
		z-index: 2;
	}
	body.customize-support .sns_pc {
		margin-top: 32px;
	}

	.sns_pc ul {
		font-size: 0;
	}
	.sns_pc ul li {
		margin-top: 0.7vw;
	}
	.sns_pc ul li:first-of-type {
		margin-top: 0;
	}
	.sns_pc ul li a img {
		width: 3.125vw;
		height: auto;
	}

}





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

	SPヘッダー

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

	header {
		position: relative;
	}


	/* H1ロゴ
	----------------------------------------------- */
	.h_logo {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;
		background-color: #636363;
		padding: 1vw 3vw;
	}
	body.customize-support .h_logo {
		margin-top: 46px;
	}

	.h_logo img {
		width: 40vw;
		height: auto;
	}


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




}





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

	フッター

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

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

	.f_wrap {
		position: relative;
		background-color: #636363;
		color: #ffffff;
		padding: 5.2vw 0;
		text-align: center;
	}


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


	/* 電話
	------------------------------------------- */
	.f_tel {
		margin-top: 1.5vw;
	}
	.f_tel a {
		display: inline-block;
		pointer-events: none;
		font-size: 2.34vw;
		color: #ffffff;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
	}


	/* 営業時間
	------------------------------------------- */
	.f_time {
		margin-top: 0.8vw;
		font-size: 1.4vw;
		color: #ffffff;
		font-weight: 500;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {
		margin-top: 3vw;
	}
	.f_navi ul {
		font-size: 0;
		text-align: center;
	}
	.f_navi ul li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 1.4vw;
		line-height: 1.1;
		margin-left: 1.5em;
	}
	.f_navi ul li:first-of-type {
		margin-left: 0;
	}
	.f_navi ul li:first-of-type::before {
		display: none;
	}

	.f_navi ul li a {
		font-size: 1.4vw;
		color: #ffffff;
		font-weight: 500;
	}
	.f_navi ul li:last-of-type a {
		pointer-events: none;
		color:#bbb;
	}


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


	/* コピーライト */
	.f_copy {
		margin-top: 3vw;
	}
	.f_copy p {
		font-size: 1vw;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		text-align: center;
	}

}



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

	.f_wrap {
		position: relative;
		background-color: #636363;
		color: #ffffff;
		padding: 16vw 6vw;
		text-align: center;
	}


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


	/* 電話
	------------------------------------------- */
	.f_tel {
		margin-top: 4.5vw;
	}
	.f_tel a {
		display: inline-block;
		font-size: 8vw;
		color: #ffffff;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
	}


	/* 営業時間
	------------------------------------------- */
	.f_time {
		margin-top: 2.4vw;
		font-size: 4vw;
		color: #ffffff;
		font-weight: 500;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
	}


	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi {
		margin-top: 2.4vw;
	}
	.f_navi ul {
		margin: 0 auto;
		overflow: auto;
		padding: 2vw 3% 3.5vw;
	}
	.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;
		color: #ffffff;
		text-decoration: none;
	}
	.f_navi ul li:last-of-type a {
		pointer-events: none;
		color:#bbb;
	}

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi ul {
		margin: 0 auto;
		overflow: auto;
		padding: 0 0 2vw;
	}
	.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;
		padding: 2vw 0;
	}


	/* コピーライト */
	.f_copy {
		padding: 2vw 0;
	}
	.f_copy p {
		text-align: center;
	}
}





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

	ページトップボタン

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

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

/* 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: 60px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
		opacity: 1;
		background: url(../img/pagetop.png) center top / contain no-repeat;
	}
}





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

	パンくずリスト

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

/* 背景色 */
#breadcrumb {
	background-color: #fcd9b9;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position: relative;
		max-width: none;
		width: 100%;
		padding: 32px 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ボタン

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

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


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.addtoany_shortcode {
		margin: 3vw -4px 0;
	}
}


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




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

	翻訳

================================================================================ */
.gglobe {
    background-image: url(../img/translate.svg) !important;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0 !important;
}
/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#gtranslate_wrapper {
		top: 0 !important;
		margin-top: 14.5vw !important;
		right: 0 !important;
		margin-right: 1.65vw !important;
	}
	.gglobe {
		background-image: url(../img/translate.svg) !important;
		background-repeat: no-repeat;
		background-size: contain;
		border-radius: 0 !important;
		height: 3vw !important;
		width: 3vw !important;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#gtranslate_wrapper {
		position: fixed;
		top: 62px !important;
		right: 8px !important;
		z-index: 9998 !important;
	}
	.gglobe {
		background-image: url(../img/translate.svg) !important;
		background-repeat: no-repeat;
		background-size: contain;
		border-radius: 0 !important;
		height: 9vw !important;
		width: 9vw !important;
	}
	
	
}





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

	IEハック

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

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