@charset "utf-8";
img { image-rendering: -webkit-optimize-contrast; }

.h-appeal.bdr_bottom {
	border-bottom: 1px solid #EE5D44;
}


/* OPEN */
.osusume-trigger { display: none; }
.osusume-trigger .osusumePoint_open {
	background-color: #fff;
	padding: 12px 20px 14px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	width: 100%;
	min-width: auto;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4em;
	border: solid 2px #e2e2e2;
}
.hamburgerIcon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	   -ms-flex-align: center;
	      align-items: center;
	-webkit-box-pack: center;
	   -ms-flex-pack: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	margin-right: 20px;
	margin-top: 2px;
}
.hamburgerIcon_lines {
	position: relative;
	width: 100%;
	height: 2px;
	display: block;
	background-color: currentColor;
}
.hamburgerIcon_lines::before,
.hamburgerIcon_lines::after {
	position: absolute;
	width: 100%;
	height: 2px;
	display: block;
	content: "";
	background-color: currentColor;
}
.hamburgerIcon_lines::before { top: -6px; }
.hamburgerIcon_lines::after { bottom: -6px; }


/* CLOSE */
.osusume-closeBtn {
	display: none;
	padding: 0 20px;
}
.osusume-closeBtn .osusumePoint_close {
	width: 100%;
	background-color: #fff;
	padding: 12px 20px 14px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4em;
	border: solid 2px #e2e2e2;
}
.closeIcon {
	display: inline-block;
	width: .7em;
	height: .7em;
	position: relative;
	margin-right: 20px;
}
.closeIcon::before,
.closeIcon::after {
	position: absolute;
	width: 128%;
	height: 2px;
	display: block;
	content: "";
	background-color: currentColor;
}
.closeIcon::before {
	top: 0;
	-webkit-transform: translateX(1px) rotate(45deg);
	        transform: translateX(1px) rotate(45deg);
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.closeIcon::after {
	-webkit-transform: translateX(1px) rotate(-45deg);
	        transform: translateX(1px) rotate(-45deg);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
	bottom: 0;
}


/* おすすめポイントをチェック */
.osusumePoint {
	width: 100%;
	max-width: 900px;
	margin: 10px auto 0;
}
.osusumePoint ul {
	display: flex;
	flex-flow: row wrap;
	justify-content:space-between;
	background: #E2E2E2;
	border-radius: 32px;
	padding: 30px 35px 0;
}
.osusumePoint ul li {
	width: 30%;
	background: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	border-radius: 16px;
	/* transition: .3s all ease; */
}
.osusumePoint ul li a {
	display: block;
	padding: 20px;
	padding-bottom: 30px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
.osusumePoint ul li a.pt {
	padding-top: 35px;
}
.osusumePoint ul li::after {
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	bottom: 13px;
	left: 50%;
	margin-left: -6px;
	border-bottom: 2px solid #ee5d44;
	border-right: 2px solid #ee5d44;
	content: "";
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pointIcon {
	width: 60px;
	height: 60px;
	position: absolute;
	top: -20px;
	left: -20px;
}
@media screen and (max-width: 1139px) {
	.osusumePoint ul li {
		width: 48%;
	}
}
@media screen and (max-width: 767px) {
	.osusume-trigger,
	.osusume-closeBtn { display: block; }

	.osusumePoint {
	    opacity: 0;
	    visibility: hidden;
	    z-index: -1;
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    overflow-y: auto;
	    -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
	    margin-top: 0 !important;
		background-color: #fff;
	}
	.osusumePoint.is-active {
	    opacity: 1;
	    visibility: visible;
	    z-index: 2000;
	    -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
	}

	.osusumePoint ul {
		display: block;
		border-radius: 0;
		padding: 20px;
		background: none;
	}
	.osusumePoint ul li {
		width: 100%;
		height: 75px;
		background: none;
		text-align: left;
		margin-bottom: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0;
		border-bottom: 1px solid #333;
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
	}
	.osusumePoint ul li:hover {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.osusumePoint ul li a {
		padding: 10px;
		padding-bottom: 10px;
		width: calc(100% - 70px);
	}
	.osusumePoint ul li a.pt {
		padding-top: 10px;
	}
	.osusumePoint ul li::after {
		display: block;
		width: 10px;
		height: 10px;
		position: absolute;
		bottom: auto;
		left: auto;
		top: 50%;
		right: 10px;
		margin-left: 0;
		margin-top: -10px;
	}
	.pointIcon {
		width: 50px;
		height: auto;
		position: static;
	}
}


