@charset 'UTF-8';

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

	共通css

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

/* 英語文字 */
.font-lato{
	font-family: 'Lato','Noto Sans JP', sans-serif;
	font-weight: 300;
}

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

	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;
	color: #414123;
	background: #f6f6f5;
	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; */
}

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

	/* Elementor：フレックスアイテムを単一行に配置 */
	.elementor-row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

/* 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;
	image-rendering: -webkit-optimize-contrast;
}
/* Safariハック */
_:lang(x)+_:-webkit-full-screen-document, img {
	image-rendering: auto;
}

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

iframe {
	vertical-align: bottom;
}


/* リンク：透過アクション付 */
a {
	color: #b86f54;
	opacity: 1;
	transition-property: opacity,color,background-color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover {
	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;
	}

}





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

	フロート回り込み解除 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: 1.5em;
}
p:not(:first-child) {
	margin-top: 1.5em;
}

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


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: absolute;
		top: 13px;
		right: 28px;
		text-align: right;
		z-index: 1;
	}
	.pc_h1 h1 {
		font-size: 13px;
		line-height: 1;
		color: inherit;
	}


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

	.navi_pc {
		position: relative;
		height: 0;
	}
	.navi_pc > ul {
		font-size: 0;
		text-align: center;
		padding-left: 27px;
		width: 1180px;
		height: 92px;
		background-color: #ffffff;
		margin: 0 auto;
	}
	.navi_pc > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		line-height: 1.1;
		padding-top: 32px;
	}
	.navi_pc > ul > li:not(:first-child) {
		margin-left: 2.3em;
	}

	.navi_pc > ul > li > a{
		display: block;
		font-size: 21px;
		line-height: 1.1;
		font-family: 'Lato','Noto Sans JP', sans-serif;
		font-weight: 300;
		color: #414123;
		letter-spacing: 0.08em;
	}

	/* 予約ボタン */
	.navi_pc > ul > li.pc_nav_reserve {
		margin-top: -2px;
	  }
	.navi_pc > ul > li.pc_nav_reserve > a{
		position: relative;
		background: #b86f54;
		font-size: 15px;
		color: #ffffff;
		padding: 8px 31px 8px 39px;
		letter-spacing: 0.3em;
	}
	.navi_pc > ul > li.pc_nav_reserve > a::before{
		position: absolute;
		content: "";
		background: url(../img/button_icon_w.png) no-repeat center top / 100% auto;
		width: 7px;
		height: 8px;
		top: 13px;
		left: 24px;
	}
	/* SNS */
	.navi_pc > ul > li.pc_nav_sns01,
	.navi_pc > ul > li.pc_nav_sns02{
		margin-left: 1.5em;
	  }
	.navi_pc > ul > li.pc_nav_sns01 img{
		width: 27px;
	}
	.navi_pc > ul > li.pc_nav_sns02 img{
		width: 30px;
	}

}



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

	header.bs_header {
		position: relative;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		position: absolute;
		z-index: 1;
		top: 10px;
		left: 10px;
		width: 80vw;
        line-height: 1;
	}


	/* グローバルナビゲーション
	------------------------------------------- */
	.navi_pc {
		display: none;
	}
	/* SP 追尾ボタン */
	.sp_reserve {
		width: 100vw;
		position: fixed;
		bottom: 0;
		text-align: center;
		background-color: #424223;
		padding: 18px 0 20px;
		margin-left: -8vw;
	}
	.sp_reserve a{
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 4vw;
		letter-spacing: 0.2em;
	}
	.sp_reserve a::before{
		position: relative;
		display: inline-block;
		content: "";
		background: url(../img/button_icon_w.png) no-repeat center top / 100% auto;
		transform: rotate( 90deg );
		width: 2.3vw;
		height: 2.9vw;
		top: -0.1vw;
		right: -46vw;
		

	}

}



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

	予約全ページ共通部分

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	/* 背景 */
	.reserve_box{
		background: url(../img/info_bg.jpg) no-repeat center top / auto;
		height: 643px;
		margin: 120px auto 0;
		padding: 90px 0 0;
		text-align: center;
	}
	.reserve_box_in{
		background-color: #ffffff;
		width: 1184px;
		height: 1055px;
		margin: 0 auto;
		padding-top: 35px;
	}
	/* タイトル */
	.reserve_box h2{
		font-size: 16px;
		font-weight: 200;
		line-height: 0.8;
	}
	.reserve_box h2 span{
		font-size: 55px;
	}
	/* テキスト */
	.reserve-text_01{
		padding-top: 30px;
		letter-spacing: 0.08em;
		line-height: 1.8;
	}
	/* 電話設定 */
	a.reserve_tel{
		pointer-events: none;
		font-size: 31px;
		color: #414123;
		padding: 16px 0;
		display: inline-block;
		margin: 0;
	}
	a.reserve_tel span{
		pointer-events: none;
		font-size:20px;
	}
	/* 営業時間 */
	.reserve_time{
		font-size: 14px;
	}
	.reserve_time span{
		font-size: 16px;
	}
	
	.r_t_short{
		font-size: 12px;
		margin-top: 0.5em!important;
	}

	/* ボタン */
	/* リンク
	----------------------------------------------- */
	.f_link_common {
		position: relative;
		top: 24px;
	}
	.f_link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.f_link_common ul li {
		display: inline-block;
		font-size: 16px;
		letter-spacing: 0;
	}
	.f_link_common ul li:not(:first-child) {
		margin-left: 20px;
	}
	.f_link_common ul li a {
		position: relative;
		display: block;
		background-color: #b86f54;
		width: 226px;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 15px 0 15px 10px;
	}

	.f_link_common ul li a span {
		position: relative;
	}
	.f_link_common ul li a span::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/button_icon_w.png) no-repeat center top / 100% auto;
		width: 8px;
		height: 9px;
		top: 8.9px;
		left: -27px;
	}
}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	/* 背景 */
	.reserve_box{
		background: url(../img/info_bg.jpg) no-repeat center top / cover;
		margin: 22vw 0 0;
		padding: 12vw 4vw;
		text-align: center;
	}
	.reserve_box_in{
		background-color: #ffffff;
		padding: 12vw 4vw;
	}
	/* タイトル */
	.reserve_box h2{
		font-size: 4vw;
		font-weight: 200;
		line-height: 1;
	}
	.reserve_box h2 span{
		font-size: 11vw;
		letter-spacing: 0.05em;
	}
	/* テキスト */
	.reserve-text_01{
		padding-top: 5vw;
		letter-spacing: 0.08em;
		line-height: 1.8;
	}
	/* 電話設定 */
	a.reserve_tel{
		font-size: 8vw;
		color: #414123;
		padding: 6vw 0;
		display: inline-block;
		margin: 0;
	}
	a.reserve_tel span{
		pointer-events: none;
		font-size: 4.5vw;
	}
	.r_t_short{
		margin-top: 0!important;
		font-size: 10px;
	}



	/* ボタン */
	/* リンク
	----------------------------------------------- */
	.f_link_common {
		position: relative;
		margin: 10vw 0 0;
	}
	.f_link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.f_link_common ul li {
		display: inline-block;
		font-size: 4vw;
		letter-spacing: 0;
	}
	.f_link_common ul li:not(:first-child) {
		margin-top: 20px;
	}
	.f_link_common ul li a {
		position: relative;
		display: block;
		background-color: #b86f54;
		width: 66vw;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 5vw 0 5vw;
	}

	.f_link_common ul li a {
		position: relative;
	}
	.f_link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/button_icon_w.png) no-repeat center top / 100% auto;
		width: 2vw;
		height: 3vw;
		top: 50%;
		margin-top: -0.8vw;
		right: 10vw;
	}
}


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

	フッター

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

	/* 住所
	------------------------------------------- */
	.f_info a{
		pointer-events: none;
		color: #414123;
	}
	/*
/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
		padding-top: 92px;
		height: 1000px;
	}
	.f_wrap {
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -919px !important;
		background-color: #ded8d4;
		width: 1837px;
		padding: 40px 0 26px;
		margin: 0 auto 42px;
		text-align: center;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo a img{
		padding-bottom: 15px;
	}
	.f_logo a img{
		width: 151px;
	}

	/* 住所
	------------------------------------------- */
	.f_info{
		font-size: 13px;
	}
	/* SNS
	------------------------------------------- */
	.f_sns{
		font-size: 0;
		padding: 30px 0 30px;
	}
	.f_sns > li.pc_nav_sns01{
		padding-right: 10px;
		display: inline-block;
	  }
	.f_sns > li.pc_nav_sns02{
		padding-left: 10px;
		display: inline-block;
	  }
	.f_sns > li.pc_nav_sns01 img{
		width: 27px;
	}
	.f_sns > li.pc_nav_sns02 img{
		width: 30px;
	}

	/* フッターリンク
	------------------------------------------- */
	.f_navi {
		padding-bottom: 30px;
		
	}
	.f_navi > ul {
		font-size: 0;
		text-align: center;
	}
	.f_navi > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		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: #000000;
		width: 1px;
		height: 16px;
		top: 0.1em;
		left: -1em;
	} */

	.f_navi > ul > li a {
		color: #424223;
	}


	/* シェアボタン */
	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;
		text-align: center;
	}

	.f_wrap {
		position: relative;
		background-color: #ded8d4;
		padding: 16vw 8vw;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo{
		padding-bottom: 3vw;
	}
	.f_logo a img{
		width: 40vw;
	}
	/* SNS
	------------------------------------------- */
	.f_sns{
		font-size: 0;
		padding: 9vw 0 0;
	}
	.f_sns > li.pc_nav_sns01{
		padding-right: 1.5vw;
		display: inline-block;
	  }
	.f_sns > li.pc_nav_sns02{
		padding-left: 1.5vw;
		display: inline-block;
	  }
	.f_sns > li.pc_nav_sns01 img{
		width: 7vw;
	}
	.f_sns > li.pc_nav_sns02 img{
		width: 7.4vw;
	}

	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.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;
		color: #414123;
	}

	/* 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;
		bottom: 0px;
		right: 10px;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 10px;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 40px;
		height: 40px;
		text-indent: -9999px;
	}
	#page_scroll {
		position: fixed;
		z-index: 9996;
		bottom: 40%;
		right: 10px;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	#page_scroll a {
		display: block;
        color:#fff;
		text-align: center;
		border-radius: 50%;
    line-height: 120px;
    width: 120px;
    height: 120px;
    padding: 0;
	}
	#page_scroll .v_btn {
		background:#68b854;
		margin-bottom: 10px;
	}
	
	#page_scroll .b_btn {
	  background:#ff7f4e;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0vw;
		right: 3vw;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 14vw;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 10vw;
		height: 10vw;
		text-indent: -9999px;
	}
}





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

	パンくずリスト

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

/* 背景色 */
#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: 1020px;
		width: 100%;
		padding: 0 10px;
		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: '>';
	}
}





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

	Elementor Lightbox フッター非表示

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





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

	Addtoanyボタン

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

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


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


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





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

	共通スクロールバーデザイン

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

/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
html {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}


/* 幅1366px以上ディスプレイ用 スクロールバーの幅
----------------------------------------------- */
@media (min-width: 1366px) {
	html {
		scrollbar-width: auto; /* auto ブラウザ準拠  thin 狭い */
	}
	::-webkit-scrollbar {
		width: 17px;
	}
}





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

	指定クラスのスクロールバーデザイン　.scrollbar

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

/* スクロールバーの設定 */
.scrollbar {
	overflow-y: auto;
}


/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
/* スクロールバーのカラー*/
.scrollbar {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
.scrollbar::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
.scrollbar::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
.scrollbar::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}





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

	IEハック

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

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