@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;
	-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;
	letter-spacing: 0.05em;
	word-wrap: break-word;
	/* 明朝 */ font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
	/* ゴシック */ font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
}

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

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}



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

	404.php

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

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





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

	ログイン時のツールバー

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

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wpadminbar{
		top: 0;
		position: fixed;
	}
}





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

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

}





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

	フロート回り込み解除 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.bs_header {
		position: relative;
		max-width: none;
		width: 100%;
	}

	/* SP */
	.sp_logo,
	.sp_tel {
		display: none;
	}

	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: fixed;
		max-width: none;
		width: 100%;
		height: 0;
		margin: 0 auto;
		text-align: left;
		z-index: 100;
	}
	.pc_h1 h1 {
		position: relative;
		font-size: 0.8vw;
		line-height: 1;
		padding: 0.6vw 1vw 0 0;
		transform: translate(0px,0px);
		-webkit-transform: translate(0px,0px);
		-ms-transform: translate(0px,0px);
		text-align: right;
	}



	/* グローバルナビゲーション
	----------------------------------------------- */
	nav.navi_pc {
		position: fixed;
		max-width: none;
		width: 100%;
		height: 0;
		z-index: 2;
		transition-property: all;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	nav.navi_pc.scroll {
		height: 7.2vw;
	}
	nav.navi_pc * {
		transition-property: all;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}

	.navi_wrap {
		width: 100%;
		margin: 0 auto;
	}

	.navi_content {
		position:relative;
		height: 4.16vw;
		text-align: center;
	}


	/* ロゴ */
	.navi_content a {
		display: inline-block;
	}
	.navi_content a .navi_logo {
		left: 1.5vw;
		display: table;
		height: 100%;
		line-height: 1;
		text-align: center;
		margin: 0 auto 0.5vw;
	}

	.navi_content a .navi_logo01 {
		display: table-cell;
		vertical-align: middle;
		padding: 0 0.5vw 0 0;
	}

	.navi_content a .navi_logo02 {
		display: table-cell;
		vertical-align: middle;
		font-size: 2.2vw;
		font-weight: 600;
		padding: 1.5vw 0 0.1em 0;
		font-family: 'EB Garamond', serif;
	}


	/* ナビ */
	.main_navi {
		display: table;
		width: 100%;
	}
	.main_navi > ul {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		margin: 0 auto;
		font-size: 0;
		padding: 0.3vw 0 0.15vw 0;
	}
	.main_navi > ul > li {
		position:relative;
		display: inline-block;
		vertical-align: top;
		text-align: center;
		margin: 0 2vw 0 0;
	}
	.main_navi > ul > li:last-of-type {
		margin: 0;
	}

	.main_navi > ul > li > a {
		display: block;
		color: #000000;
		font-size: 1vw;
		font-weight: 700;
		line-height: 1.3;
		font-family: 'Lato' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		padding: 0;
		padding: 0 0 0.05em 0;
	}
	.main_navi > ul > li > a > span {
		display: block;
		font-size: 0.65em;
		font-weight: 400;
	}

	.main_navi > ul > li > a:hover {
	}
	

	/* 電話 */
	.navi_tel {
		position: absolute;
		height: 100%;
		right: 0;
		padding: 0vw 1vw 0 1.4vw;
		margin-top: -2.4vw;
	}
	.navi_tel p {
		font-size: 1.875vw;
		font-weight: 700;
		font-family: 'Archivo Narrow', sans-serif;
		line-height: 1;
	}
	.navi_tel p span {
		font-size: 0.6em;
		margin-right: 0.3em;
	}
	.navi_tel a {
		pointer-events: none;
	}

}



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

	header.bs_header {
		position: relative;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		padding: 3vw 2vw 0 2vw;
		right:0;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		text-align:center;
		line-height: 1.3;
	}


	/* 電話 */
	.sp_tel {
		padding: 2vw 0 3vw;
		text-align: center;
	}
	.sp_tel p a {
		display: inline-block;
		font-size: 7vw;
		font-weight: 100;
		font-family: 'Archivo Narrow', sans-serif;
		letter-spacing: 0.1em;
		line-height: 1;
	}
	.sp_tel p a span {
		font-size: 0.6em;
		margin-right: 0.3em;
	}


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




	/* ロゴ */
	.sp_logo {
		position: relative;
		line-height: 1;
		padding: 11px 8px;
		height: 65px;
		background: #ffffff;
	}
	.sp_logo a {
		display: inline-block;
	}
	.sp_logo_in {
		color: #000000;
	}

	.sp_logo01 {
		display: table-cell;
		vertical-align: middle;
		padding: 0 4px 0 0;
	}
	.sp_logo01 img {
		width: auto;
		height: 26px;
	}
	.sp_logo02 {
		font-size: 22px;
		font-weight: 500;
		padding: 0 0 0 4px;
		font-family: 'EB Garamond', serif;
	}


}





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

	フッターお問い合わせ

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.f_contact {
		position:relative;
		padding: 80px 0;
		border-top: 1px solid;
	}
	.f_contact_in {
		width: 1200px;
		margin: 0 auto;
		text-align: center;
	}

	.f_contact_in h2 {
		position: relative;
		text-align: center;
		font-size: 28px;
		font-weight: 500;
		letter-spacing: 0.05em;
		line-height: 1;
		padding-bottom: 1.2em;
	}
	.f_contact_in h2:after {
		position: absolute;
		bottom: 0;
		left: 50%;
		margin: 0 0 0 -27px;
		content: "";
		display: block;
		width: 54px;
		height: 3px;
	}



	/* レイアウト */
	.f_contact_in ul {
		font-size: 0;
		margin-top: 56px;
	}
	.f_contact_in ul li {
		display: inline-block;
		vertical-align: top;
		padding: 10px 40px 12px;
	}


	/* 電話 */
	.f_contact_in ul li:nth-of-type(1) {
		border-right: 1px solid;
	}
	.f_tel01 {
		font-size: 20px;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}
	.f_tel02 a {
		font-size: 50px;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}
	.f_tel02 a span {
		font-size: 0.6em;
		margin-right: 0.3em;
	}
	.f_tel03 {
		font-size: 16px;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}



	/* メール */
	.f_contact_in ul li:nth-of-type(2) {
		padding-top: 16px;
	}
	.f_mail01 {
		font-size: 22px;
		font-weight: 500;
		line-height: 1.4;
		letter-spacing: 0.05em;
		margin-bottom: 0.5em;
	}
	.f_mail02 {
		text-align: center;
	}
	.f_mail02 a {
		position: relative;
		display: inline-block;
		padding: 0.8em 4em;
		border: 1px solid;
		font-size: 24px;
		font-weight: 700;
		font-family: 'Open Sans Condensed' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
	}
	.f_mail02 a:after {
		position: absolute;
		content: ">";
		font-family: FontAwesome;
		right: 0.8em;
		top: 0.8em;
	}
	.f_message {
		position: relative;
		display: inline-block;
		padding: 0.8em 0;
		font-size: 16px;
		font-family: 'Open Sans Condensed' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
		line-height: normal;
		text-align: center;
	}

	.f_message2 {
		position: relative;
		display: inline-block;
		padding: 0.8em 0;
		font-size: 14px;
		font-family: 'Open Sans Condensed' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
		line-height: normal;
		text-align: center;
	}
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.f_contact {
		position:relative;
		padding: 12vw 0;
		border-top: 1px solid;
	}
	.f_contact_in {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.f_contact_in h2 {
		position: relative;
		text-align: center;
		font-size: 5vw;
		font-weight: 500;
		letter-spacing: 0.05em;
		line-height: 1;
		padding-bottom: 1.2em;
	}
	.f_contact_in h2:after {
		position: absolute;
		bottom: 0;
		left: 50%;
		margin: 0 0 0 -4.2vw;
		content: "";
		display: block;
		width: 8.4vw;
		height: 2px;
	}



	/* レイアウト */
	.f_contact_in ul {
		margin-top: 8vw;
		padding: 0 4vw;
	}
	.f_contact_in ul li {
		display: block;
	}


	/* 電話 */
	.f_contact_in ul li:nth-of-type(1) {
		border-bottom: 1px solid;
		padding-bottom: 6vw;
	}
	.f_tel01 {
		font-size: 4.5vw;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}
	.f_tel02 a {
		font-size: 8.5vw;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}
	.f_tel02 a span {
		font-size: 0.6em;
		margin-right: 0.3em;
	}
	.f_tel03 {
		font-size: 3.5vw;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}



	/* メール */
	.f_contact_in ul li:nth-of-type(2) {
		padding-top: 6vw;
	}
	.f_mail01 {
		font-size: 4vw;
		font-weight: 500;
		line-height: 1.4;
		letter-spacing: 0.05em;
		margin-bottom: 0.5em;
	}
	.f_mail02 {
		text-align: center;
	}
	.f_mail02 a {
		position: relative;
		display: inline-block;
		padding: 0.8em 4em;
		border: 1px solid;
		font-size: 4vw;
		font-weight: 700;
		font-family: 'Open Sans Condensed' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
	}
	.f_mail02 a:after {
		position: absolute;
		content: ">";
		font-family: FontAwesome;
		right: 0.8em;
		top: 0.8em;
	}
	.f_message {
		position: relative;
		display: inline-block;
		padding: 0.8em 0em;
		font-size: 3.5vw;
		font-family: 'Open Sans Condensed' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
		line-height: 1.4;
		text-align: center;
	}
}





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

	フッター

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

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

	.footer_map iframe {
		vertical-align:bottom;
		width: 100%;
		height: 20vw;
		filter: grayscale(80%) sepia(20%);
	}

	footer.bs_footer {
		position: relative;
		padding: 72px 0;
	}
	.footer_inner {
		max-width: 1180px;
		width: 100%;
		margin: 0 auto;
	}


	/* フッター1段目
	------------------------------------------- */
	.f_wrap01 {
		position: relative;
		border-bottom: 1px solid;
		padding: 0 0 24px 0;
		margin: 0 0 24px 0;
	}


	/* ロゴ */
	.f_logo {
		line-height: 1;
		margin: 0 0 40px 0;
	}
	.f_logo_in {
		display: table;
		height: 40px;
	}
	.f_logo01 {
		display: table-cell;
		vertical-align: middle;
		padding: 0 10px 0 0;
	}
	.f_logo01 img {
		width: auto;
		height: 40px;
	}
	.f_logo02 {
		display: table-cell;
		vertical-align: middle;
	}
	.f_logo02 p {
		font-size: 36px;
		font-weight: 600;
		font-family: 'EB Garamond', serif;
	}


	/* 基本情報 */
	.f_info {
	}
	.f_info ul {
		font-size: 0;
	}
	.f_info ul li {
		display: inline-block;
		vertical-align: top;
		margin: 0 40px 30px 0;
		font-size: 16px;
	}
	.f_tel {
		pointer-events: none;
		display: inline-block;
	}


	/* フッターリンク */
	.f_navi {
		margin: 20px 0 0 0;
	}
	.f_navi ul {
		font-size: 0;
		margin: 0 -40px 0 0;
	}
	.f_navi ul li {
		display: inline-block;
		vertical-align: top;
		margin: 0 24px 0 0;
	}
	.f_navi ul li {
		font-size: 16px;
		font-family: 'Lato' ,'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.1em;
	}



	/* フッター2段目
	------------------------------------------- */
	.f_wrap02 {
		position: relative;
		overflow: hidden;
	}

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

	/* SNSリンクボタン */
	.f_sns {
		float: right;
	}
	.f_sns ul {
		font-size: 0;
		letter-spacing: -.4em;
	}
	.f_sns ul li {
		display: inline-block;
		vertical-align: top;
		text-align: right;
		letter-spacing: 0;
		width: 35px;
		margin-left: 16px;
	}
	.f_sns ul li:first-of-type {
		margin-left: 0;
	}
	.f_sns ul li a svg {
		width: 35px !important;
		height: 35px !important;
	}
}



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

	.footer_map iframe {
		vertical-align:bottom;
		width: 100%;
		height: 50vw;
		filter: grayscale(80%) sepia(20%);
	}

	footer.bs_footer {
		position: relative;
		padding: 60px 40px;
	}
	.footer_inner {
		width: 100%;
		margin: 0 auto;
	}


	/* フッター1段目
	------------------------------------------- */
	.f_wrap01 {
		position: relative;
		border-bottom: 1px solid;
		padding: 0 0 30px 0;
		margin: 0 0 20px 0;
	}


	/* ロゴ */
	.f_logo {
		line-height: 1;
		margin: 0 0 30px 0;
		height: 70px;
		overflow: hidden;
	}
	.f_logo_in {
		float: left;
		display: table;
		height: 100%;
	}
	.f_logo01 {
		display: table-cell;
		vertical-align: middle;
		padding: 0 8px 0 0;
	}
	.f_logo01 img {
		width: auto;
		height: 32px;
	}
	.f_logo02 {
		display: table-cell;
		vertical-align: middle;
	}
	.f_logo02 p {
		font-size: 20px;
		font-weight: 600;
		font-family: 'EB Garamond', serif;
		padding: 0.2em 0 0 0;
	}


	/* 基本情報 */
	.f_info {
	}
	.f_info ul {
	}
	.f_info ul li {
		margin: 0 0 32px 0;
		font-size: 14px;
	}
	.f_info ul li:last-of-type {
		margin: 0;
	}


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



	/* フッター2段目
	------------------------------------------- */
	.f_wrap02 {
		position: relative;
		overflow: hidden;
	}

	/* SNSリンクボタン */
	.f_sns {
	}
	.f_sns ul {
		font-size: 0;
		margin: 0 -16px 0 0;
	}
	.f_sns ul li {
		display: inline-block;
		vertical-align: top;
		width: 35px;
		margin-left: 16px;
	}
	.f_sns ul li:first-of-type {
		margin-left: 0;
	}
	.f_sns ul li a svg {
		width: 100% !important;
		height: auto !important;
	}

	/* コピーライト */
	.f_copy {
		margin-top: 4vw;
	}
	.f_copy p {
		font-size: 14px;
		text-align: left;
		padding: 6px 0 0 0;
	}
}





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

	ページトップボタン

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 9998;
		right: 10px;
	}
	#page-top a {
		background-color: transparent !important;
	}
	#page-top a svg {
		width: 40px !important;
		height: auto !important;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page-top {
		position: fixed;
		z-index: 9998;
		right: 8px;
	}
	#page-top a {
		background-color: transparent !important;
	}
	#page-top a svg {
		width: 40px !important;
		height: auto !important;
	}
}





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

	パンくずリスト

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

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





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

	ページネーション

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

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


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.wp-pagenavi_wrap {
		overflow: hidden;
	}
	.wp-pagenavi {
		float: none !important;
		font-size: 12px !important;
		overflow: hidden;
	}
	.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;
}





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

	Elementor Lightbox

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

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.dialog-type-lightbox .dialog-message,
	.elementor-lightbox .elementor-lightbox-item {
		padding: 0 !important;
	}
}





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

	Elementor Lightbox フッター非表示

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





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

	Addtoanyボタン

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

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


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


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





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

	IEハック

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

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