/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
	display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
	position: fixed;
	z-index: 99999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
	position: fixed;
	z-index: 100000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch;
}

	.remodal-wrapper:after {
		display: inline-block;
		height: 100%;
		margin-left: -0.05em;
		content: "";
	}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
	position: relative;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
	-webkit-filter: blur(3px);
	filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
	background: rgba(43, 46, 56, 0.9);
}

	.remodal-overlay.remodal-is-opening,
	.remodal-overlay.remodal-is-closing {
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}

	.remodal-overlay.remodal-is-opening {
		-webkit-animation-name: remodal-overlay-opening-keyframes;
		animation-name: remodal-overlay-opening-keyframes;
	}

	.remodal-overlay.remodal-is-closing {
		-webkit-animation-name: remodal-overlay-closing-keyframes;
		animation-name: remodal-overlay-closing-keyframes;
	}

/* Default theme styles of the wrapper */

.remodal-wrapper {
	padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
}

	.remodal.remodal-is-opening,
	.remodal.remodal-is-closing {
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}

	.remodal.remodal-is-opening {
		-webkit-animation-name: remodal-opening-keyframes;
		animation-name: remodal-opening-keyframes;
	}

	.remodal.remodal-is-closing {
		-webkit-animation-name: remodal-closing-keyframes;
		animation-name: remodal-closing-keyframes;
	}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
	vertical-align: middle;
}

/* Close button */

.remodal-close {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent;
}

	.remodal-close:hover,
	.remodal-close:focus {
		color: #2b2e38;
	}

	.remodal-close:before {
		font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
		font-size: 25px;
		line-height: 35px;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 35px;
		content: "\00d7";
		text-align: center;
	}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
}

.remodal-confirm {
	color: #fff;
	background: #81c784;
}

	.remodal-confirm:hover,
	.remodal-confirm:focus {
		background: #66bb6a;
	}

.remodal-cancel {
	color: #fff;
	background: #e57373;
}

	.remodal-cancel:hover,
	.remodal-cancel:focus {
		background: #ef5350;
	}

	/* Remove inner padding and border in Firefox 4+ for the button tag. */

	.remodal-confirm::-moz-focus-inner,
	.remodal-cancel::-moz-focus-inner,
	.remodal-close::-moz-focus-inner {
		padding: 0;
		border: 0;
	}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
	from {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
		opacity: 0;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@keyframes remodal-opening-keyframes {
	from {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
		opacity: 0;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@-webkit-keyframes remodal-closing-keyframes {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	to {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0;
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@keyframes remodal-closing-keyframes {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	to {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0;
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
	.remodal {
		max-width: 700px;
	}
	.remodalLink {
	    display: block;
        cursor: pointer;
	}
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}

.lt-ie9 .remodal {
	width: 700px;
}


/* ブランドサイト */

/* Youtube */
.videowindow.remodal {
	width: 100%;
	max-width: 720px;
	padding: 0;
	margin-bottom: 0;
	background-color: #000;
	font-size: 0;
}

.remodal-wrapper {
	padding-top: 0;
}

.youtubebox {
	height: 0;
	padding: 0 0 56.25% 0;
	position: relative;
}

	.youtubebox iframe {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

.remodal-close {
	z-index: 10;
}


/* HowTo */

.txtwindow.remodal {
	width: 100%;
	max-width: 840px;
	padding: 60px 40px 40px 40px;
	text-align: left;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

	.txtwindow.remodal .print-btn {
		display: inline-block;
		cursor: pointer;
		position: absolute;
		top: 10px;
		right: 40px;
		color: #fff;
		height: 25px;
		padding: 0 30px 0 50px;
		font-size: 1.5rem;
		line-height: 25px;
		background: #670000 url(/~/Media/com/common/images/ico_print02.png) no-repeat 25px center;
		transition: 0.2s;
		border-radius: 12.5px;
		-webkit-border-radius: 12.5px;
		-moz-border-radius: 12.5px;
	}

		.txtwindow.remodal .print-btn:hover {
			opacity: 0.8;
		}


	.txtwindow.remodal .remodal-close {
		background: #B52042;
		color: #fff;
		transition: 0.2s;
	}

		.txtwindow.remodal .remodal-close:hover {
			opacity: 0.8;
			color: #fff;
		}

	.txtwindow.remodal .box_close {
		margin-top: 30px;
		text-align: center;
	}

		.txtwindow.remodal .box_close a {
			display: inline-block;
			cursor: pointer;
			height: 36px 0;
			background: #B52042;
			color: #fff;
			font-size: 1.8rem;
			line-height: 36px;
			padding: 0 3em;
			transition: 0.2s;
			border-radius: 18px;
			-webkit-border-radius: 18px;
			-moz-border-radius: 18px;
		}

			.txtwindow.remodal .box_close a:hover {
				opacity: 0.8;
				text-decoration: none;
			}

	.txtwindow.remodal h4 {
		font-size: 2.0rem;
		font-family: 'MatisseProN-DB';
		color: #fff;
		background: #D83400;
		line-height: 1.3;
		text-align: center;
		padding: 8px 4px 10px 4px;
		margin: 0 0 20px 0;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
	}

#cm_box ul li .open_howto a {
	display: inline-block;
	cursor: pointer;
	height: 32px;
	background: #B52042;
	color: #fff;
	font-size: 1.6rem;
	line-height: 32px;
	padding: 0 3em;
	transition: 0.2s;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
}

	#cm_box ul li .open_howto a:hover {
		opacity: 0.8;
		text-decoration: none;
	}

#cm_box ul li#cm_right a {
	display: block;
	cursor: pointer;
	transition: 0.2s;
}

	#cm_box ul li#cm_right a:hover {
		opacity: 0.8;
	}

@media screen and (max-width:768px) {
	.txtwindow.remodal {
		padding: 50px 4% 30px 4%;
	}

		.txtwindow.remodal .print-btn {
			display: none;
		}
}

@media screen and (max-width:480px) {
	.txtwindow.remodal {
		padding: 50px 4% 20px 4%;
	}

		.txtwindow.remodal h4 {
			font-size: 1.6rem;
			margin: 0 0 10px 0;
		}

		.txtwindow.remodal .box_close {
			margin-top: 20px;
		}

			.txtwindow.remodal .box_close a {
				display: block;
				height: 30px 0;
				font-size: 1.5rem;
				line-height: 30px;
				padding: 0;
				border-radius: 15px;
				-webkit-border-radius: 15px;
				-moz-border-radius: 15px;
			}

	#cm_box ul li .open_howto {
		padding-bottom: 14px;
	}

		#cm_box ul li .open_howto a {
			display: block;
			height: 28px;
			font-size: 1.4rem;
			line-height: 28px;
			padding: 0;
			text-align: center;
			border-radius: 14px;
			-webkit-border-radius: 14px;
			-moz-border-radius: 14px;
		}

	#cm_box ul li#cm_right a {
		text-align: center;
	}
}

.txtwindow.remodal ol {
	border-top: 4px solid #ccc;
}

	.txtwindow.remodal ol li {
		counter-increment: howto_txt;
		position: relative;
		padding: 8px 0 16px 0;
		border-bottom: 4px solid #ccc;
	}

		.txtwindow.remodal ol li:before {
			content: counter(howto_txt);
			position: absolute;
			width: 32px;
			height: 32px;
			text-align: center;
			line-height: 32px;
			background: #EE4358;
			color: #fff;
			top: 4px;
			left: 0;
			font-size: 1.8rem;
		}

		.txtwindow.remodal ol li dl {
			zoom: 100%;
		}

			.txtwindow.remodal ol li dl:after {
				content: "";
				clear: both;
				height: 0;
				display: block;
				visibility: hidden;
			}

			.txtwindow.remodal ol li dl dt {
				width: 50%;
				box-sizing: border-box;
				padding: 8px 0 0 8px;
				float: left;
			}

			.txtwindow.remodal ol li dl dd {
				width: 45%;
				float: right;
				font-size: 1.5rem;
				line-height: 1.7;
				padding: 10px 0 0 0;
			}

				.txtwindow.remodal ol li dl dd h5 {
					color: #EE4358;
					font-size: 1.8rem;
					line-height: 1.4;
					font-family: 'MatisseProN-DB';
					margin: 0 0 0.4em 0;
				}


@media screen and (max-width:480px) {
	.txtwindow.remodal ol {
		border-top: 3px solid #ccc;
	}

		.txtwindow.remodal ol li {
			padding: 10px 0;
			border-bottom: 3px solid #ccc;
		}

			.txtwindow.remodal ol li:before {
				width: 24px;
				height: 24px;
				line-height: 24px;
				top: 10px;
				left: 0;
				font-size: 1.5rem;
			}

			.txtwindow.remodal ol li dl dt {
				width: auto;
				padding: 0;
				float: none;
			}

			.txtwindow.remodal ol li dl dd {
				width: auto;
				float: none;
				font-size: 1.4rem;
				line-height: 1.5;
				padding: 6px 0 0 0;
			}

				.txtwindow.remodal ol li dl dd h5 {
					font-size: 1.6rem;
					line-height: 1.4;
				}
}


.print-off {
	display: none !important;
}

@media print {

	#print {
		width: 160mm;
		max-width: 92%;
		margin: 0 auto;
	}

		#print .print-btn {
			display: none;
		}

		#print h4 {
			font-size: 2.4rem;
			font-family: 'MatisseProN-DB';
			color: #D83400;
			line-height: 1.3;
			text-align: center;
			margin: 0 0 12px 0;
		}

		#print ol {
			padding: 10px 0 0 0;
			border-top: 3px solid #999;
		}

			#print ol li {
				width: 48%;
				counter-increment: howto_txt;
				position: relative;
				padding: 0 0 10px 0;
			}

				#print ol li:nth-child(odd) {
					clear: both;
					float: left;
				}

				#print ol li:nth-child(even) {
					float: right;
				}

				#print ol li:before {
					content: counter(howto_txt);
					position: absolute;
					width: 32px;
					height: 32px;
					text-align: center;
					line-height: 32px;
					background: #EE4358;
					color: #fff;
					top: 0;
					left: 0;
					font-size: 1.8rem;
				}

				#print ol li dl dt {
					padding: 0 0 4px 0;
				}

				#print ol li dl dd h5 {
					color: #EE4358;
					font-size: 1.6rem;
					line-height: 1.3;
					font-family: 'MatisseProN-DB';
					margin: 0 0 0.3em 0;
				}

				#print ol li dl dd p {
					line-height: 1.5;
				}
}

