@charset 'UTF-8';

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

	共通css

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

@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* M+ 1p　font-family: "Mplus 1p"; */
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css); /* Rounded M+ 1c　font-family: "Rounded Mplus 1c"; */
@import url(//fonts.googleapis.com/earlyaccess/hannari.css); /* はんなり明朝　font-family: "Hannari"; */
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css); /* こころ明朝　font-family: "Kokoro"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css); /* さわらび明朝　font-family: "Sawarabi Mincho"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css); /* さわらびゴシック　font-family: "Sawarabi Gothic"; */
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* ニコモジ　font-family: "Nico Moji"; */
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css); /* ニクキュウ　font-family: "Nikukyu"; */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css); /* Noto Sans Japanese　font-family: "Noto Sans Japanese"; */

@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');




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

	サイトスタイル

================================================================================ */
* {
	-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: #41220f;
	font-size:16px;
	font-weight:300;
	line-height:1.7;
	word-wrap:break-word;
	font-family:'Kiwi Maru',"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro", sans-serif;
	text-align: justify;
	background-color: #ffffff;
}

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


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





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

	display:none

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

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

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}
	/* SPナビ消し */
	.sp_drawer{
		display:none;
	}
	/* SP IS消し */
	.sp-top_slider{
		display: none;
	}
	/* PCトップの電話消し */
	.sp-top-tel{
		display: none;
	}
    /* PCトップのネット予約消し */
    .sp-top-net{
		display: none;
	}
	/* SP画像消し */
	.sp-img{
		display: none;
	}
	/* SPリンク消し */
	.f_navi_sp{
		display: none;
	}
}



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

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none{
		display: none;
	}
	/* PC TPOの電話とロゴ消し */
	.pc-header{
		display: none;
	}
	/* PCナビ消し */
	.navi-pc{
		display: none;
	}
	/* PC IS消し */
	.top_slider{
		display: none;
	}
	/* PC 追尾ナビ消し */
	.tracking-box,.tracking-box-tel{
		display: none;
	}
	/* SP画像消し */
	.pc-img{
		display: 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-bottom:16px;
}
p:last-of-type{
	margin-bottom:0;
}

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


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

	.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.alignleft {
		float: left;
	}

	.alignright {
		float: right;
	}

	img.alignright {
		display: inline-block;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 16px;
		margin-left: 24px;
	}

	img.alignleft {
		display: inline-block;
		margin-top: 0px;
		margin-right: 24px;
		margin-bottom: 16px;
		margin-left: 0px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* youtube siteorigin */
	.youtube-player{
		width:100%;
		height:280px;
		margin-top:16px;
	}

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





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

	PC表示左右入れ替え

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.pc_lr {
		display: block !important;
		overflow: auto;
	}
	.pc_lr > div:nth-of-type(1) {
		float: right;
	}
	.pc_lr > div:nth-of-type(2) {
		float: left;
	}
}





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

	その他

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

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


}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body{
		font-size:14px;
	}
	img {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	p {
		font-size: 14px;
	}
}





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

	PCヘッダー

================================================================================= */
@media (min-width: 768px) {

	header{
		position:relative;
		max-width:1920px;
		width:100%;
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display:none;
	}
	.pc_h1 {
		position:absolute;
		max-width:1920px;
		width:100%;
		height:0;
		margin:0 auto;
		text-align:leftt;
	}
	.pc_h1 h1 {
		font-size: 12px;
		color: #8fb313;
		padding:4px 8px 0px 0px;
		transform:translate(457px,0px);
		-webkit-transform:translate(457px,0px);
		-ms-transform:translate(457px,0px);
	}


/* 追尾のご予約バナー*/
	
	
	.tracking-box-tel{
		position: fixed;
		top: 8vw;
		right: 0;
		width: 5vw;
		height: 20vw;
		z-index: 99;
	}
	
	.tracking-box-tel p{
		background: url(../img/ore-yoyaku-tel.jpg) center top / cover no-repeat;
		width: 5vw;
		height: 20vw;
		display: block;
		text-indent: -9999px;
		border-top-left-radius: 0.6vw;
		border-bottom-left-radius: 0.6vw;
	}
	
	.tracking-box{
		margin-top: 500px;
		width: 102px;
		height: 101px;
		z-index: 99;
		position: fixed;
		right:0px;
	}
	.tracking-box a{
		background-image:url(../img/tracking-mail-off.png);
		width:102px;
		height:101px;
		display:block;
		text-indent: -9999px;
	}
	.tracking-box a:hover{
		background-image:url(../img/tracking-mail-on.png);
		opacity:100 !important;
	}

/* トップの電話番号 */
	.top-tel{
		position: absolute;
		transform: translate(333px,0px);
		-webkit-transform: translate(333px,0px);
		-ms-transform: translate(333px,0px);
		width: 267px;
		left: 50%;
	}
	.top-tel a{
		pointer-events: none;
	}

	/* しんきゅうコンパス */
	.top-shinkyu{
		position: absolute;
		transform: translate(333px,0px);
		-webkit-transform: translate(333px,0px);
		-ms-transform: translate(333px,0px);
		width: 120px;
		left: 41%;
	}
	
	.top-tel a{
		pointer-events: none;
	}
	
/* トップのロゴ */
	.top-logo{
		position: relative;
		width: 340px;
		height: 104px;
		left: 50%;
		transform:translate(-204px,38px);
		-webkit-transform:translate(-204px,38px);
		-ms-transform:translate(-204px,38px);
	}


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

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




ul.fixed.ddd{
		height: 83px;
		background-color: #fff;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1000;
		padding: 13px 0 0;
		border-bottom: 2px solid #ff8744;
	}


	ul.ccc{
		width: 986px !important;
		left: 50%;
		margin-left: -491px;
		position: absolute;
	}

		 nav.navi-pc {
	 	position:relative;
		height: 73px;
		max-width:1920px;
		margin: 58px auto 0;
		z-index:9999;
  }

	nav.navi-pc .navi-content{
		width: 1170px;
		margin:0 auto;
	}


	.navi-content ul{
	width:100%;
	overflow:hidden;
}
.navi-content li{
	float:left;
	text-align:center;
	list-style-type:none;
	box-sizing: border-box;
}


}





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

	SPヘッダー

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

	header{
		position:relative;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display:none;
	}
	.sp_h1 {
		background-color: #fdfff2;
		padding: 8px 81px 8px 8px;
	}
	.sp_h1 h1 {
		font-size: 12px;
	}

	.sp-top-tel{
		background-color: #accf35;
		width: 100%;
		padding: 20px 0;
	}

	.sp-top-tel a{
		text-indent: -9999px;
		background-image: url(../img/sp-top-tel.png);
		background-repeat: no-repeat;
		background-size: auto 61px;
		width: 270px;
		height: 65px;
		display: block;
		margin: 0 auto;
	}
    
    .sp-top-net{
		background-color: #c77895;
		width: 100%;
		padding: 20px 0;
	}

	.sp-top-net a{
		text-indent: -9999px;
		background-image: url(../img/sp-top-net.png);
		background-repeat: no-repeat;
		background-size: auto 61px;
		width: 270px;
		height: 65px;
		display: block;
		margin: 0 auto;
	}


	/* グローバルナビゲーション
------------------------------------------- */
/* SPハンバーガーメニュー
----------------------------------------------- */

	.drawer-nav{
		background-color: rgba(255,135,68,0.8) !important;
	}

	.drawer-nav > ul > li.acup{
		background-color: rgba(185,62,106,0.8) !important;
	}
	.drawer-nav > ul > li.oste{
		background-color: rgba(84,150,155,0.8) !important;
	}


	.drawer-hamburger{
		background-color: rgba(255,135,68,0.8) !important;
		padding:18px 18px 14px 18px !important;
		margin:8px;
	}






	.drawer-hamburger-icon,
	.drawer-hamburger-icon:before,
	.drawer-hamburger-icon:after{
		background-color:#fff !important;
	}
	.drawer-open .drawer-hamburger-icon{
		background-color:transparent !important;
	}
	.drawer-hamburger span.drawer-hamburger-p{
		font-size:12px;
		padding-top:12px;
		display:block;
		color:#fff !important;
	}
	.drawer-nav > ul{
	}
	.drawer-nav > ul > li{
		line-height:2.5;
	}
	.drawer-nav a{
		font-size:18px;
		color:#ffffff;
		display:block;
		padding:0 16px;
		text-decoration:none;
		border-bottom:1px solid;
	}
	.drawer-nav > ul > li:first-child a{
		border-top:1px solid;
	}
	.drawer-nav a:hover{
		background-color:#312f34;
		text-decoration:none;
	}
	.drawer-nav a span{
		font-size:11px;
		color:#cccccc;
		margin-left:8px;
	}


	.nav_tel a{
		background-color:#444444;
	}
	.nav_tel a:hover{
		background-color:#666666;
	}
	.nav_map a{
		background-color:#444444;
	}
	.nav_map a:hover{
		background-color:#666666;
	}





}





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

	フッター

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer {
		position:relative;
		border-top:3px solid #feb22f;
		height: 499px;
	}

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

	.footer-box{
		position:relative;
		width:1000px;
		margin:0 auto;
		overflow: hidden;
	}

	.footer-01{
		float:left;
	}
	.footer-02{
		float: right;
	}




	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}
	.f_kotei p{
		font-size: 13px;
		line-height: 1.4;
		letter-spacing: 0.5px;
	}


	.footer-logo{
		text-indent:-9999px;
		background-image:url(../img/footer-logo.png);
		background-repeat:no-repeat;
		display: block;
		width:293px;
		height: 82px;
		margin: 51px 0 24px;
	}
	.footer-tel{
		text-indent:-9999px;
		background-image:url(../img/footer-tel.png);
		background-repeat:no-repeat;
		display: block;
		width:248px;
		height: 35px;
		margin: 12px 0 32px;
	}
	.footer-tel a{
		pointer-events:none;
	}




/* 【固定ページ】フッター：基本情報 */
	.f_kotei-02{
		position:relative;
	}
	.f_kotei-02 .panel-grid{
		display:block !important;
	}


	.f_kotei-02 table tr{
		border-top: 1px solid #595959;
	}
	.f_kotei-02 table , td, th {
		border-collapse: collapse;
		border-bottom: 1px solid #595959;
	}
	.f_kotei-02 td{
		font-size: 14px;
		padding: 10px;
		width: 30px;
		height: 25px;
	}
	.f_kotei-02 th.time-title-text {
		font-size: 14px;
		font-weight: 100;
		letter-spacing: 1px;
		padding: 0 0 12px 18px;
	}
	.f_kotei-02 th.time-text{
		font-weight: 100;
		letter-spacing: 1px;
		font-size: 13px;
		padding: 0 27px 12px 18px;
	}
	.f_kotei-02 p{
		font-size: 13px;
		padding: 8px 0 0 18px;
		line-height: 1.5;
	}






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


	/* コピーライト */
	.f_copy{
		clear:both;
		background-color:#accf35;
		height: 47px;
	}
	.f_copy p{
		font-size:11px;
		text-align:center;
		font-size: 10px;
		color:#fff;
		padding: 15px 0 0;
		letter-spacing: 0.4px;
	}

	/* SNSリンクボタン */
	.f_sns {
		position: absolute;
		bottom: 22px;
		left: 295px;
	}
	.f_sns ul {
		margin-top: 4%;
		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;
	}
	.f_sns ul li a svg  {
		width: 35px !important;
		height: 35px !important;
	}
	.f_sns ul li a svg path,
	.f_sns ul li a svg circle {
		fill: #41220f;
	}

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer {
		position:relative;
		border-top:3px solid #feb22f;
	}

	footer .panel-grid{
		margin:0 auto !important;
	}
	footer .panel-grid-cell{
		margin:0 auto !important;
	}
	footer .so-panel{
		margin:0 auto !important;
	}


	.footer-logo{
		text-indent: -9999px;
		background-image: url(../img/footer-logo.png);
		background-repeat: no-repeat;
		background-size: 252px auto;
		display: block;
		width: 263px;
		height: 82px;
		margin: 30px auto 12px;
	}
	.footer-tel a{
		text-indent: -9999px;
		background-image: url(../img/footer-tel.png);
		background-repeat: no-repeat;
		background-size: 232px auto;
		display: block;
		width: 235px;
		height: 35px;
		margin: 12px auto 30px;
	}

	.f_kotei p{
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0.5px;
		text-align: center;
	}

	.f_kotei-02 table , td, th {
		border-collapse: collapse;
		border-bottom: 1px solid #595959;
		width: 300px;
		margin: 0 auto;
	}

	.f_kotei-02 table tr{
		border-top: 1px solid #595959;
	}
	.f_kotei-02 table , td, th {
		border-collapse: collapse;
	}
	.f_kotei-02 td{
		font-size: 14px;
		padding: 5px;
		width: 30px;
		height: 25px;
	}
	.f_kotei-02 th.time-title-text {
		font-size: 14px;
		font-weight: 100;
		letter-spacing: 1px;
		padding: 0 0 12px 15px;
	}
	.f_kotei-02 th.time-text{
		font-weight: 100;
		letter-spacing: 1px;
		font-size: 13px;
		padding: 0 0 12px 15px;
	}
	.f_kotei-02 p{
		font-size: 13px;
		padding: 8px 0 30px;
		line-height: 1.5;
		text-align: center;
	}




	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi_sp ul{
		margin:0 auto;
		overflow:auto;
		padding:20px 3% 24px;
	}
	.f_navi_sp ul li{
		float:left;
		width:48%;
		padding:6px 8px;
		border-bottom:1px solid #41220f;
		text-align: center;
	}
	.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:14px;
		text-decoration:none;
	}
	/* ボタンが奇数の場合
	.f_navi_sp ul li:nth-of-type(2n){
		margin-right:2%;
	}
	.f_navi_sp ul li:nth-of-type(2n-1){
		margin-left:2%;
	}
	.f_navi_sp ul li:first-child{
		float:none;
		width:100%;
		margin:0;
	}
	*/

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi_sp ul{
		margin:0 auto;
		overflow:auto;
		padding:0 0 14px;
		padding-top:20px;
	}
	.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: 14px;
		font-weight:700;
		text-decoration: none;
		padding: 12px 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;
	}
	*/



	/* SNSリンクボタン */
	.f_sns {
	}
	.f_sns ul {
		font-size: 0;
		letter-spacing: -.4em;
		text-align: center;
		margin-top: 4%;
	}
	.f_sns ul li {
		display: inline-block;
		vertical-align: top;
		text-align: right;
		letter-spacing: 0;
		width: 10vw;
		margin-left: 4vw;
	}
	.f_sns ul li:first-of-type {
		margin-left: 0;
	}
	.f_sns ul li a svg {
		width: 10vw !important;
		height: 10vw !important;
	}
	.f_sns ul li a svg path,
	.f_sns ul li a svg circle {
		fill: #41220f;
	}


	.footer-02 {
		margin-top: 6vw;
	}


	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
		width:100%;
		margin:0 auto;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}


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

	/* コピーライト */
	.f_copy {
		background-color:#accf35;
		padding: 6vw 0 12vw;
		margin-top: 8vw;
	}
	.f_copy p {
		font-size: 3.2vw;
		color: #ffffff;
		text-align: center;
	}
}





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

	ページトップボタン

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

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

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





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

	パンくずリスト

================================================================================ */
	#breadcrumb{

		background-color:transparent;
	}
	#breadcrumb > ul > li {
		font-size: 14px;
		display:inline-block;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 5px;
		content: '>';
	}
	#breadcrumb > ul > li > a {
	}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		padding: 16px 0 83px;
		position:relative;
		max-width:1920px;
		width:100%;
		background:url(../img/) left top repeat;
	}

	#breadcrumb > ul{
		position:relative;
		max-width:1000px;
		width:100%;
		margin:0 auto;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		padding: 16px 0 40px;
		position:relative;
		background:url(../img/) left top repeat;
		background-size: ;
	}

	#breadcrumb > ul{
		position:relative;
		width:100%;
		padding:0 16px;
	}
}





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

	ページネーション

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

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


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





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

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