/*-----------------------------------------------
	保険無料相談の流れ
-----------------------------------------------*/
/* PC */
ul.flow {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}
.flow li { /* コンテンツブロック */
	border: #EFE6E1 3px solid;
	border-radius: 15px;
	width: 34%;
	text-align: center;
	padding: 15px 20px;
	position: relative;
}
.flow li:first-child,
.flow li:last-child {
	width: 28%;
}
.flow li:not(:last-child):after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: -40px;
	top: 0;
	bottom: 0;
	margin: auto;
	border-left: 20px solid #FFDF80;
	border-top: 24px solid transparent;
	border-bottom: 24px solid transparent;
}
.flow li .step_img { /* アイコン */
	width: 70px;
	margin: 0 auto;
}
.flow li:nth-child(2) .step_img { /* アイコン */
	width: 85px;
}
.flow li dt.step_title { /* タイトル */
	color: #FF6E15;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	margin: 8px auto 5px;
}
.flow li dt.step_title span { /* タイトル */
	font-size: 1.4rem;
}
.flow li dd.step_text { /* 説明 */
	text-align: left;
}

/* SP */
@media only screen and (max-width: 767px) {
	ul.flow {
		display: block;
		margin-top: 10px;
	}
	.flow li { /* コンテンツブロック */
		width: 100% !important;
		padding: 12px 15px;
	}
	.flow li:not(:last-child) {
		margin-bottom: 30px;
	}
	.flow li:not(:last-child):after {
		right: 0;
		left: 0;
		top: auto;
		bottom: -50px;
		border-top: 14px solid #FFDF80;
		border-left: 18px solid transparent;
		border-right: 18px solid transparent;
	}
	.flow li .step_img { /* アイコン */
		width: 60px;
	}
	.flow li:nth-child(2) .step_img { /* アイコン */
		width: 75px;
	}
}


/*-----------------------------------------------
	formレイアウト
-----------------------------------------------*/

/* 電話番号＜つながりやすい時間帯＞ */
.check-block__col{
	margin-top: 5px;
}

/* 相談方法 / 希望日程 */
.radioList li {
	display: inline-block;
}
.radioList li:not(:last-of-type) {
	margin: 0 20px 0 0;
}
@media screen and (max-width:767px) {
	.radioList li {
		display: list-item;
	}
	.radioList li:not(:last-of-type) {
		margin: 0 0 5px 0;
	}
}

.vdp-datepicker__calendar .cell.day.selected {
	background: #caf3ff;
}
.vdp-datepicker__calendar .cell.day.selected:hover {
	background: #aaebff;
}

/* カレンダー */
#visit1, #visit2 {
	cursor: pointer;
}
.visit .input_wrapper {
	position: relative;
	width: 200px;
	cursor: pointer;
}
.visit .message_input_placeholder {
	pointer-events: none;
	position: absolute;
	background: url(/life/medicare/consul/img/icon_calendar.svg);
	background-position-x: left;
	background-repeat: no-repeat;
	top: 8px;
	left: 10px;
	width: 200px;
	padding-left: 35px;
	padding-top: 0;
	color: #999;
	height: 22px;
}
#visit1_root .picker__header,
#visit2_root .picker__header {
	display: flex;
	justify-content: center;
	cursor: text;
	align-items: center;
}
#visit1_root .picker__month,
#visit2_root .picker__month {
	order: 2;
}
#visit1_root .picker__year,
#visit2_root .picker__year {
	order: 1;
	color: #000;
	font-size: 1em;
	font-style: inherit;
}
#visit1_root .picker__year::after,
#visit2_root .picker__year::after {
	content: "年";
	font-size: 20px;
}
#visit1_root .picker__month::after,
#visit2_root .picker__month::after {
	content: "月";
	font-size: 20px;
}

#visit1_root .picker__month,
#visit1_root .picker__year,
#visit2_root .picker__month,
#visit2_root .picker__year {
	/* font-weight: 500; */
	display: inline-block;
	margin-left: .25em;
	margin-right: .25em;
	font-size: 30px;
	font-style: normal;
}

