@charset "utf-8";
/* CSS Document */

/***************************************************************/
/* jquery_guide_flow.css
/***************************************************************/

/* Initialization
****************************************/
.guideFlow [class^="column"] .col,
.guideFlow [class^="column"] .col > .guideFlowBtn {
	margin-bottom: 0;
}

/* guideFlowRow
****************************************/
.guideFlowRow[aria-hidden="true"] {
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	height: 1px;
}

.guideFlowRow[aria-hidden="false"] {
	display: block;
	visibility: visible;
	margin-top: 85px;
	opacity: 1;
	-webkit-animation: flowFadeIn 1s ease 0s 1 normal;
			animation: flowFadeIn 1s ease 0s 1 normal;
}

.guideFlowRow.guideFlowHead[aria-hidden="false"] {
	margin-top: 0;
}

/* guideFlowBtn
****************************************/
.guideFlow .guideFlowBtn {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0;
	padding: 13px 45px 26px;
	color:#333;
	outline: none;
	cursor: pointer;
}

.guideFlow .guideFlowBtn:hover {
	opacity: 0.8;
	border: 1px solid #e9e9e9;
}

.guideFlow .guideFlowBtn > .guideFlowBtnLabel {
	display: block;
	position: relative;
	font-size: 1.35em;
}

.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="false"] > .guideFlowBtnLabel:before,
.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"] > .guideFlowBtnLabel:before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	position: relative;
	top: 0;
	left: 0;
	margin: 13px auto;
}


/* 設問を表示する際のアニメーションとモディファイア */
.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"] {
	background-color: #f2f2f2;
	pointer-events: none;
}
.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"] + .guideFlowText {
	position: relative;
}
.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"] + .guideFlowText:after {
	content: "";
	display: block;
	position: absolute;
	width: 54px;
	height: 52px;
	margin-left: -27px;
	bottom: -69px;
	left: 50%;
	background: url(/kojin/tetsuduki/images/guide_arrow_01.png) no-repeat 0 0;
	-webkit-animation: flowFadeIn 1s ease 0s 1 normal;
			animation: flowFadeIn 1s ease 0s 1 normal;
}

.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="false"] > .guideFlowBtnLabel:before{
	background: url(/kojin/tetsuduki/images/guideflow_ico_check01_off.png) no-repeat 0 0;
}

.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"] > .guideFlowBtnLabel:before {
	background: url(/kojin/tetsuduki/images/guideflow_ico_check01_on.png) no-repeat 0 0;
}

@-webkit-keyframes flowFadeIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.99);
				transform: scale(0.99);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}

@keyframes flowFadeIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.99);
				transform: scale(0.99);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}

@media screen and (max-width: 767px) {
	/* guideFlowRow
	****************************************/
	.guideFlow [data-guideflow][aria-hidden="false"] {
		margin-top: 85px;
	}

	.guideFlowRow.guideFlowHead[aria-hidden="false"] {
		margin-top: 0;
	}

	/* guideFlowColumn
	****************************************/
	.guideFlow [class="column2"] .col {
		width: 49.5% !important;
		margin-left: 1%!important;
		float: left;
	}

	.guideFlow [class="column2"] .col:nth-child(odd) {
		margin-left: 0 !important;
	}

	/* guideFlowBtn
	****************************************/
	.guideFlow .guideFlowBtn {
		padding: 10px 20px;
	}

	.guideFlow .guideFlowBtn > .guideFlowBtnLabel {
		font-size: 1.05em;
	}

	.guideFlow .guideFlowBtn[data-guideflow-next][aria-pressed="true"]:after {
		width: 36px;
		height: 35px;
		margin-left: -18px;
		bottom: -55px;
		left: 50%;
		background-size: 100% 100%;
	}

}
