@charset 'UTF-8';

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

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
body {
	background: #ccc;
	animation: loading 1s;
}
@keyframes loading {
	0% {opacity: 0;}
	100% {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;
	color: #000000;
	-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;
	/* ゴシック */ 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;
	/* max-width: 1920px; 固定幅レイアウト時 */
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: block;
	overflow: hidden;
	background:#ffffff;
}

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


.f_copy a{
	color:#000;
}



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

	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;
	}
/* 004 */
.button004 a {
    background: #c9aa8a;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 260px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button004 a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
.button004 a:hover {
    background: #96591a;
    color: #FFF;
}
}



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

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none {
		display: none;
	}
/* 004 */
.button004 a {
	background: #c9aa8a;
	border-radius: 50px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 37vw;
	padding: 3vw 19vw;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 500;
}
.button004 a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
.button004 a:hover {
    background: #96591a;
    color: #FFF;
}
}





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

	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
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
position: relative;
    background-color: #ecdfd7;
    padding: 2vw;
    margin-top: -4vw;
    text-align: center;
	}
	.pc_h1 h1 {
		font-size: 0.9vw;
		line-height: 1;
		color: inherit;
	}
	h1{
		margin: 0;
		font-weight: 300;
		font-size: 12px;
		right: 0;
		position: relative;
		text-align: right;
		padding: 0px 10px 0 0;
	}


	/* グローバルナビゲーション
	----------------------------------------------- */
	.h_logo{
		padding-top: 12px;
		margin-left: 30px;
	}
	.h_logo img{
		width: 13vw;
		position: absolute;
		margin-top: -35px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3 ease;
			-o-transition: all 0.3 ease;
	}
	.fixed .h_logo img{
	  width: 124px;
	  transition: all 0.3s ease;
	  -webkit-transition: all 0.3s ease;
	  -moz-transition: all 0.3 ease;
	  -o-transition: all 0.3 ease;
	  margin-top: -43px;
	}
		/* header */
		#top-head {
			position: fixed;
			width: 100%;
			margin: 0 auto;
			padding: 7px 0 0;
			line-height: 1;
			z-index: 999;
					height: 77px;
		}
		header > .fixed {
			position: fixed;
			width: 100%;
			margin: 0 auto;
			padding: 30px 0 0;
			line-height: 1;
			z-index: 999;
			height: 57px !important;
		}
		#top-head:after {
			content: "";
			display: block;
			background: #fff;
			width: 100%;
			margin: 30px auto 0;
		}

		#top-head a,
		#top-head {
			color: #fff;
			text-decoration: none;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3 ease;
			-o-transition: all 0.3 ease;
		}

		#top-head .inner {
			position: relative;
		}
		#top-head .logo {
			float: left;
			font-size: 32px;
			margin-left: 25px;
		}
		 .fixed #global-nav {
		  font-size: 12px;
		  margin-top: -12px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3 ease;
			-o-transition: all 0.3 ease;
		}
		#global-nav ul {
			list-style: none;
			position: absolute;
			right: 0;
			font-size: 14px;
			margin-top: -29px;
			margin-right: 228px;
			background: rgba(119, 108, 76, 0.9);
		}
		.fixed #global-nav ul{
			margin-top: -23px;
		}
		#global-nav ul li {
		  float: left;
		  position: relative;
		  padding: 0 20px;
		  text-align: center;
		  line-height: 23px;
		}
		#global-nav ul li a {
			padding: 0 30px;
		}



		/* Fixed */
		#top-head.fixed {
			padding-top: 15px;

		}
		#top-head.fixed .logo {
			font-size: 24px;
			color: #fff;
			margin-left: 10px;
		}

		#top-head.fixed:after {
			width: 100%;
			margin-top: 20px;
		}
		#top-head.fixed #global-nav ul li a {
			color: #fff;
			padding: 0 20px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
		}
		

		/* Fixed Btn Hover */
		#top-head.fixed #global-nav ul li:after {
			bottom: -10px;
		}
		#top-head.fixed #global-nav ul li:hover:after {
			background: #0b8793;
			bottom: -20px;
		}

		/* transition */
		#top-head,
		#top-head:after,
		#top-head .logo,
		#global-nav ul li,
		#global-nav ul li a {
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
		}
		#global-nav a{
			color: #fff;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
		}
		.n_jap{
			font-size: 10px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3 ease;
			-o-transition: all 0.3 ease;
		}
		.n_en{
			font-size:16px;
			font-weight: 400;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3 ease;
			-o-transition: all 0.3 ease;
			letter-spacing:1.3px;
		}
		.fixed .n_jap{
			font-size: 9px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			line-height: 11px;
			color: #fff;
			line-height: 19px;
			margin-top: -8px;
		}
		.fixed .n_en{
			font-size:15px;
			font-weight:normal;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			line-height:16px;
		}
		.contact_head ul{
			font-size:0;
		}
		.n_entry{
			display: block;
			background: #bb9d73;
			color: #FFF;
			line-height: 91px;
			width: 114px;
				margin-top: -1px;
				font-size: 15px;
		}
		.n_contact{
			display: block;
			background: #4d2f1e;
			color: #FFF;
			line-height: 91px;
			width: 114px;
				margin-top: -1px;
				font-size: 15px;

		}

		
		.margin0{
			padding: 0 !important;
		}
		.contact_head{
			position: fixed;
			right: 0;
			z-index: 1000;
			text-align: center;
		}

		.contact_head li {
			display:inline-block;
			margin:0;
			
		}
		.interview_midashi{
			font-size:36px;
			
		}
		.prevnext-nav a{
			display: block;
			border: 3px solid #DCDCDC;
			padding: 8px;
			background: #8C7777;
			color: #FFF;
		}
		.global-nav ul{
			position:relative;
			z-index:100000;
		}
}





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

	SPヘッダー

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

	header {
		position: relative;
	}
	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
		background-color: #ecdfd7;
		padding: 2vw;
		margin-top: -66vw;
		text-align: center;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.3;
	}


	/* グローバルナビゲーション
	------------------------------------------- */




}





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

	フッター

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer {
		position: relative;
		background:#FFF;
		padding-top: 100px;
	}
	.footer_base{
background: #d8cebd;
margin-top: -99px;
position: relative;
z-index: 0;
padding: 102px 0 25px;
	}

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


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


	/* コピーライト */
	.f_copy {
	}
	.f_copy p {
		font-size: 11px;
		text-align: center;
	}
	.footer_contact{
		background:#b89b6b;
		padding: 74px 0 74px 0;
		width: 1000px;
		margin: 0 auto;
		border-radius: 5px;
		position: relative;
		z-index: 1;
	}
	.footer_contact li{
		 width : calc(100% / 2.0) ;
		 border-right:1px solid #FFF;
		 display: inline-block;
	}
	.footer_contact li:nth-child(2){
		 border-right:0px solid #FFF;
	}
	.footer_contact_entry_en{
		font-size: 14px;
		font-weight: 100;
		color: #FFF;
		letter-spacing: 3px;
		line-height: 1;
		padding-top: 0px;
		padding-left: 91px;
	}
	.footer_contact_entry_jp{
		font-size: 27px;
		font-weight: 100;
		color: #FFF;
		padding-left: 90px;
		padding-bottom: 8px;
	}
	.footer_btn {
	  max-width: 300px;
	  margin: 0 auto;
	}
	a.btn_03 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		position: relative;
		background: #fff;
		border: 1px solid #fff;
		box-sizing: border-box;
		padding: 0 45px 0 25px;
		color: #b89b6b;
		font-size: 16px;
		letter-spacing: 0.1em;
		line-height: 1.3;
		text-align: left;
		text-decoration: none;
		transition-duration: 0.3s;
		border-radius: 5px;
	}
	a.btn_03:before {
	  content: '';
	  width: 8px;
	  height: 8px;
	  border: 0;
	  border-top: 2px solid #b89b6b;
	  border-right: 2px solid #b89b6b;
	  transform: rotate(45deg);
	  position: absolute;
	  top: 50%;
	  right: 25px;
	  margin-top: -6px;
	  
	}
	a.btn_03:hover {
	  background: #fff;
	  color: #b89b6b;
	}
	a.btn_03:hover:before {
	  border-top: 2px solid #b89b6b;
	  border-right: 2px solid #b89b6b;
	}
	.footer_contact_ul ul{
		font-size:0;
	}
	.footer_contact_ul li{

	}
	.footer_base{
		display:inline-block;
		width:100%;
	}
	.footer_base li{
		display: inline-block;
		font-size: 14px;
		font-weight: 100;
	}
	.footer_base ul{
		width:1000px;
		margin: 53px auto 33px;
	}
	.footer_sitemap{

	}
	.footer_sitemap li{
		list-style-type: none;
		
	}
	.footer_sitemap li a{
		color:#333;
		list-style-type: none;
		padding: 4px 0;
	}
	.site{
		width: 168px;
		border-right: 1px solid #FFF;
		padding-right: 10px;
		margin-right: 23px;
	}
	.site a{
		color:#000;
	}
	.info{
		width:700px;
	}
	.footer_sns{

	}
	.footer_sns ul{
		width: 130px;
		margin:0 auto;
	}
	.footer_sns li{
		display: inline-block;
		width: calc(100% / 3.3);
		text-align: center;
	}
	.footer_sns li img{
		height: 20px;
	}	
}



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


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

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi_sp ul {
		margin: 0 auto;
		overflow: auto;
		padding: 0 0 2vw;
	}
	.f_navi_sp ul li {
		float: left;
		width: 50%;
	}
	.f_navi_sp ul li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi_sp 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_sp ul li a:hover {
		background-color: #222222;
	}
	*/
	/* ボタンが奇数の場合
	.f_navi_sp ul li:first-child {
		width: 100%;
	}
	.f_navi_sp ul li:nth-of-type(2n) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi_sp 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;
	}
	.footer_contact{
		background: #b89b6b;
		padding: 4vw 0 11vw 0;
		width: 90vw;
		margin: 6vw auto 0;
		border-radius: 5px;
		position: relative;
		z-index: 1;
	}
	.footer_contact li{
		 width : ;
	}
	.footer_contact li:nth-child(2){

	}
	.footer_contact_entry_en{
		font-size: 3vw;
		font-weight: 100;
		color: #FFF;
		letter-spacing: 3px;
		line-height: 1;
		padding-top: ;
		text-align: center;
		margin-top: 4vw;
	}
	.footer_contact_entry_jp{
		font-size: 5vw;
		font-weight: 600;
		color: #FFF;
		padding-left: ;
		text-align: center;
		margin-bottom: 2vw;
	}
	.footer_btn {
	  max-width: 300px;
	  margin: 0 auto;
	}
	a.btn_03 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		position: relative;
		background: #fff;
		border: 1px solid #fff;
		box-sizing: border-box;
		padding: 0 45px 0 25px;
		color: #b89b6b;
		font-size: 16px;
		letter-spacing: 0.1em;
		line-height: 1.3;
		text-align: left;
		text-decoration: none;
		transition-duration: 0.3s;
		border-radius: 5px;
	}
	a.btn_03:before {
	  content: '';
	  width: 8px;
	  height: 8px;
	  border: 0;
	  border-top: 2px solid #b89b6b;
	  border-right: 2px solid #b89b6b;
	  transform: rotate(45deg);
	  position: absolute;
	  top: 50%;
	  right: 25px;
	  margin-top: -6px;
	  
	}
	a.btn_03:hover {
	  background: #fff;
	  color: #b89b6b;
	}
	a.btn_03:hover:before {
	  border-top: 2px solid #b89b6b;
	  border-right: 2px solid #b89b6b;
	}
	.footer_contact_ul ul{
		font-size:0;
	}
	.footer_contact_ul li{

	}
	.footer_base{
		display:inline-block;
		width:100%;
	}
	.footer_base li{

	}
	.footer_base ul{
		width:97vw;
		margin: 53px auto 33px;
	}
	.footer_sitemap{
		margin-bottom: 5vw !important;
	}
	.site{
		margin-bottom:3vw;
	}
	.footer_sitemap li{
		list-style-type: none;
		
	}
	.footer_sitemap li a{
		color:#333;
		list-style-type: none;
		padding: 4px 0;
	}
	.site{
		width: 87vw;
		padding-right: 10px;
		margin-right: 23px;
		margin: 0 auto;
	}
	.site a{
		color: #000;
		display: block;
		border-bottom: 1px solid #DCDCDC;
		padding-bottom: 1vw;
		font-size: 4vw;
	}
	.info{
		width: 77vw;
		text-align: center;
		margin: 0 auto;
		line-height: 1.8;
		color: #575656;
	}
	.h_logo{
		position: absolute;
		margin: -2vw 0 0 3vw;
	}
	.h_logo a{
	
	}
	.h_logo img{
		width: 33vw;
		margin-top: -0.8vw;
		margin-left: -2vw;
	}
	.footer_sns{
		margin-bottom:30px;
	}
	.footer_sns ul{
		width: 30vw;
		margin:0 auto;
	}
	.footer_sns li{
		display: inline-block;
		width: calc(100% / 3.3);
		text-align: center;
	}
	.footer_sns li img{
		height: 20px;
	}	
}



.footer_company a{
	color:#786849;
}

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

	ページトップボタン

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

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





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

	パンくずリスト

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

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


/* 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: '>';
	}
}





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

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





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

	IEハック

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

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