@charset "UTF-8";
#favPopupGuide .flexBlock.flexStretch {
	display: none!important;
}
.text30 {
	font-size: 30px;
}
.text12 {
	font-size: 12px;
}
@media screen and (min-width: 801px) and (max-width: 1280px) {
	.text30 {
		font-size: 2.34375vw;
	}
	.text12 {
		font-size: 0.9375vw;
	}
}
@media screen and (max-width: 800px) {
	.text30 {
		font-size: 6vw;
	}
	.text12 {
		font-size: 2.4vw;
	}
}
.alignCenter {
	text-align: center;
}
.alignRight {
	text-align: right;
}
.lineHeight160 {
	line-height: 1.6;
}
.marginTop1em {
	margin-top: 1em!important;
}
.marginTop2em {
	margin-top: 2em!important;
}
.textOrange {
	color: #fe4700;
}
.flexBlock {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	flex-shrink: 0;
	list-style: none;
}

/*20220210追記*/
.itemFavWrapper {
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	flex-shrink: 0;
	list-style: none;
	
	height: 4em;
}
.itemFavWrapper > div:nth-child(1) {
	position: relative;
	width: 10em;
	height: 4em;
	box-sizing: border-box;
}
.itemFavWrapper > div:nth-child(1) > a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-left: 4em;
	background-image: url("/candy/images/iconFavOff.svg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 3.5em auto;
	box-sizing: border-box;
}
.itemFavWrapper > div:nth-child(1) > a.favResult,
.itemFavWrapper > div:nth-child(1) > a:hover {
	background-image: url("/candy/images/iconFavOn.svg");
}
.itemFavWrapper > div:nth-child(1) > a > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 4em;
	white-space: nowrap;
	transform: translateY(-50%);
}
.itemFavWrapper > div:nth-child(2) {
	position: relative;
}
.itemFavWrapper > div:nth-child(2) > a {
	display: block;
	position: relative;
	width: 100%;
	height: 2em;
	padding: 0.5em 1em 0.5em 2.5em;
	color: #fff!important;
	background-color: #fe4700;
	background-image: url("/candy/images/iconInfo.svg");
	background-position: left 0.5em center;
	background-repeat: no-repeat;
	background-size: 1.5em auto;
	border-radius: 2em;
	box-sizing: border-box;
}
.popupContentsWrapper {
	width: 90%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding: 2em;
	background-color: #fff;
	box-sizing: border-box;
	font-family: "メイリオ", Meiryo, sans-serif;
	line-height: 200%;
	color: #272727;
}
.popupContentsWrapper .titleWithIcon {
	padding-top: 5em;
	background-image: url("/candy/images/iconFavOff.svg");
	background-position: right 46% top;
	background-repeat: no-repeat;
	background-size: auto 5em;
}
.popupContentsWrapper .titleWithIcon.favResult {
	background-image: url("/candy/images/iconFavOn.svg");
}
.popupContentsWrapper .btnBuy {
	width: 48%;
}
.popupContentsWrapper .btnBuy a {
	padding: 0;
}
.popupContentsWrapper .btnBuy a span {
	display: inline-block;
	width: auto;
	padding-right: 2em;
	background-color: transparent;
	background-image: url("/candy/images/iconArrowWhite.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 2em;
}
.popupContentsWrapper .linkWithArrow {
	display: inline-block;
	width: auto;
	padding-right: 2em;
	background-image: url("/candy/images/iconArrowOrange.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 2em;
}
.floationgFav .floationgFavWrapper {
	position: fixed;
	right: 4%;
	bottom: 30px;
	width: 8em;
	height: 8em;
	max-width: 600px;
	padding: 1em;
	background-color: #fff;
	border: 3px solid #fe4700;
	border-radius: 8px;
	box-sizing: border-box;
	z-index: 100;
	overflow: hidden;
}
.floationgFav .flexBlock {
	align-items: center;
	transition: all 0.5s ease-out;
}
.floationgFav .flexBlock:hover {
	width: 100%;
	transition: all 0.15s ease-out;
}
.floationgFav .floationgFavWrapper > div:nth-child(1) {
	width: 6em;
	height: 6em;
	box-sizing: border-box;
}
.floationgFav .floationgFavWrapper > div:nth-child(1) > a {
	display: block;
	padding-top: 5em;
	background-image: url("/candy/images/iconFavOff.svg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: auto 4.5em;
	box-sizing: border-box;
	transition: all 0.5s ease-out;
}
.floationgFav .floationgFavWrapper > div:nth-child(1) > a:hover,
.floationgFav .floationgFavWrapper > div:nth-child(1) > a.favResult {
	background-image: url("/candy/images/iconFavOn.svg");
	transition: all 0.15s ease-out;
}
.floationgFav .flexBlock > div:nth-child(2) {
	opacity: 0;
	width: 0;
	height: 6em;
	box-sizing: border-box;
	pointer-events: none;
	overflow: hidden;
	transition: all 0.15s ease-out;
}
.floationgFav .flexBlock:hover > div:nth-child(2) {
	opacity: 1;
	width: calc(100% - 6em);
	height: 6em;
	padding-left: 1em;
	box-sizing: border-box;
	pointer-events: auto;
	overflow: hidden;
}
.floationgFav .btnBuy a {
	padding: 0;
}
.floationgFav .btnBuy a span {
	display: inline-block;
	width: auto;
	padding-right: 2em;
	background-color: transparent;
	background-image: url("/candy/images/iconArrowWhite.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 2em;
}
@media screen and (max-width: 800px) {
	.floationgFav .floationgFavWrapper {
		right: 0;
		bottom: 0;
		height: auto;
	}
	.floationgFav .flexBlock {
		width: 100%;
	}
	.floationgFav .flexBlock > div:nth-child(2) {
		opacity: 1;
		width: calc(100% - 6em);
		height: auto;
		padding-left: 1em;
		box-sizing: border-box;
		pointer-events: auto;
		overflow: hidden;
	}
}
.flexItemListFavWrapper {
	align-items: stretch;
}
.flexItemListFavWrapper .flexItemListFavText {
	display: block;
	width: 75%;
	box-sizing: border-box;
}
.flexItemListFavWrapper .flexItemListFavText span {
	display: block;
}
.flexItemListFavWrapper .flexItemListFavIcon {
	display: block;
	width: 24%;
	box-sizing: border-box;
}
.flexItemListFavWrapper .flexItemListFavIcon > a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("/candy/images/iconFavOff.svg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 94% auto;
	box-sizing: border-box;
	transition: all 0.5s ease-out;
}
.flexItemListFavWrapper .flexItemListFavIcon > a:hover,
.flexItemListFavWrapper .flexItemListFavIcon > a.favResult {
	background-image: url("/candy/images/iconFavOn.svg");
	transition: all 0.15s ease-out;
}
.favList li {
	position: relative;
}
.favList .favIconList {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 2.5em;
	height: 2em;
	margin-top: 0;
	background-image: url("/candy/images/iconFavOff.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 1.5em;
	box-sizing: border-box;
	transition: all 0.5s ease-out;
}
.favList .favIconList:hover,
.favList .favIconList.favResult {
	background-image: url("/candy/images/iconFavOn.svg");
	transition: all 0.15s ease-out;
}
.favList .favIconList + a {
	display: inline-block;
	min-height: 2em;
	margin-top: 0;
	padding-left: 2.5em;
}