@charset "UTF-8";

/**
 * スマホ用固定フッターバー
 */
.c-footer-bar {
	background: #ffffff;
	border-top: 1px solid #ddd;
 	display: flex;
	font-size: 10px;
	text-align: center;
	width: 100%;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 999;
}

.c-footer-bar--type1 {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.c-footer-bar--type1.is-active {
	opacity:1;
	visibility: visible;
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}

.c-footer-bar--type2 {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.c-footer-bar--type2.is-active {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
transition-timing-function: ease, ease;
}

.c-footer-bar__item {
	flex: 1;
}
.c-footer-bar__item + .c-footer-bar__item {
	border-left: 1px solid #ddd;
}

.c-footer-bar__item:only-child .c-footer-bar__icon {
	display: block;
	position: relative;
}
.c-footer-bar-item:only-child .c-footer-bar__icon:before {
	position: absolute;
	right: 15px;
}

.c-footer-bar a {
	display: block;
	padding: 10px 0;
}

.c-footer-bar__icon::before {
	display: block;
	font-family: "design_plus";
	font-size: 16px;
	margin-bottom: 0.5em;
}
.c-footer-bar__icon--file-text:before {
	content: "\f15c";
}
.c-footer-bar__icon--share-alt:before {
	content: "\f1e0";
}
.c-footer-bar__icon--phone:before {
	content: "\f095";
}
.c-footer-bar__icon--envelope:before {
	content: "\f0e0";
}
.c-footer-bar__icon--tag:before {
	content: "\f02b";
}
.c-footer-bar__icon--pencil:before {
	content: "\f040";
}

.c-footer-bar__modal-overlay {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.c-footer-bar__modal-content {
	margin: auto;
	position: fixed;
	bottom: 20%;
	left: 0;
	right: 0;
	width: 209px;
	z-index: 9999;
}

.c-footer-bar__modal-close:before {
	color: #fff;
	content: "\e91a";
	font-family: "design_plus";
	font-size: 32px;
	position: absolute;
	bottom: 20%;
	right: 0;
	text-align: center;
	width: 50px;
}

.c-footer-bar__share { text-align: center; }

.c-footer-bar__share-btn {
	float: left;
	vertical-align: center;
	width: 50px;
	height: 50px;
}
.c-footer-bar__share-btn--rounded-square {
	border-radius: 2px;
	overflow: hidden;
}
.c-footer-bar__share-btn + .c-footer-bar__share-btn {
	margin-left: 3px;
}

.c-footer-bar__share-btn a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.c-footer-bar__share-btn a img {
	width: 100%;
	height: auto;
}

.hatena-bookmark-button{ background: #00A4DE; border-radius: 4px; }

/**
 * 商品詳細スマホ用固定フッターバー
 */
.p-product-footer-bar__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 12px 5.5556%;
}
.p-product-footer-bar__price {
	font-size: 18px;
}
.p-product-footer-bar__price .tax {
	font-size: 12px;
}
.p-product-footer-bar__cart-button.p-button {
	font-size: 12px;
	height: 35px;
	line-height: 35px;
	min-width: 130px;
	padding-left: 18px;
	padding-right: 18px;
}
.p-product-footer-bar__cart-button.p-button::before {
	content: "\e93a";
	font-family: "design_plus";
	font-size: 14px;
	margin-right: 7px;
	vertical-align: bottom;
}
