/* ============================================================
  
  /components/
  このディレクトリのCSSは**共通の**UIやテキストスタイルなど
  を格納ください。
  
  buttton.css 内ルール
  
  1. BiNDup標準のボタンスタイルで定義できないもののみ記述すること
  2. 使用ページが分かるようにコメントアウトで残すこと
  
============================================================ */

/* 全体共通 */
a.btn-default{
	margin-bottom: 14px;
}



/* 関連企業ページ */
a.group__btn {
    display: inline-block;
    background: rgba(0, 0, 0, 0);
    background-image: url(../../icon/arrow.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    color: #000000;
    height: 44px;
    width: 320px;
    max-width: 100%;
    line-height: 1;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 14px 0;
    border: solid 1px #000000;
    margin-top: 40px;
}
span.ext-link-icon{
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../../icon/icon_extlink.svg);
    vertical-align: middle;
}
a:hover span.ext-link-icon,
a.btn-sando:hover span.ext-link-icon{
	background-image: url("../../icon/exlink_wh.svg");
}
.group__btn .ext__txt{
	font-size: 13px;
}

/* オンラインショップ追従ボタン */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 適用したい要素にアニメーションを紐付ける */
#w-bottom-right {
  animation-name: fadeIn;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  transition: background-color 0.5s ease;
}
#w-bottom-right:hover{
	background-color: rgba(0,0,0,0.25);
}
#w-bottom-right .c-none{
	display: inline-flex;
}
@media screen and (min-width: 641px) and (max-width: 1260px){
	#w-bottom-right .c-none{
		margin-right: 30px;
	}
}
.cssskin-widget_style_stickybt{
	position: relative;
}
.cssskin-widget_style_stickybtn a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
@media (max-width: 641px){
	#w-bottom-right{
		margin-right: 30px;
	}
}


/* 外部サイトリンク用ボタン */
a.external_linkbtn {
	display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: anchor-center;
	background: #f7f6f3;
	background-image: url("../../icon/arrow.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
 	background-size: 7.5px 14.5px;
	color: #000000;
	border: 1px solid #000000;
	width: 280px;
 	max-width: 100%;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	padding: 12px 30px 14px 20px;
	margin-top: 16px;
}
a.external_linkbtn:hover {
  background: #000;
  background-image: url("../../icon/arrow_wh.png");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  color: #f7f6f3;
  border: 1px solid #000000;
  text-decoration: none;
  opacity: 1;
}
a.external_linkbtn .ext__txt{
	font-size: 12px;
}

/* 土産・周辺観光ページ 外部サイトリンク用ボタン */
a.visit_external_linkbtn {
	display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: anchor-center;
	background: #f7f6f3;
	background-image: url("../../icon/arrow.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
 	background-size: 7.5px 14.5px;
	color: #000000;
	border: 1px solid #000000;
	width: 280px;
 	max-width: 100%;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	padding: 12px 17px 14px 5px;
	margin-top: 16px;
}
a.visit_external_linkbtn:hover {
  	background: #d9d9d9;
	background-image: url("../../icon/arrow.png");
  	background-repeat: no-repeat;
  	background-position: 95% 50%;
  	border: 1px solid #000000;
  	text-decoration: none;
  	opacity: 1;
}
a.visit_external_linkbtn .ext__txt{
	font-size: 12px;
}
a.visit_external_linkbtn:hover span.ext-link-icon{
	background-image: url(../../icon/icon_extlink.svg);
}


@media (max-width: 641px){
	a.visit_external_linkbtn {
		margin: 16px auto 0;
	}
}














