@charset 'utf-8';

/* ------------------------------
5つの質問で無料診断
------------------------------ */

/* リセット */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p,
dl,
dd {
	margin: 0;
}

/* レイアウト */
body {
	padding-bottom: 0;
	background-color: #faf7f0;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* セクション */
header {
	background-color: #fff;
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
}

#contents {
	padding: 0 20px 60px;
	background: url(/../img/sp/diagnosis/bg_contents.jpg) no-repeat center top / 100% auto;
}

/* ボタンセット */
.form_btn {
	margin: 0 20px;
	padding-bottom: 10px;
}

.form_btn a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 30px 20px;
	color: #fff;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	background-color: #616161;
	border: none;
	border-radius: 8px;
	box-shadow: 0 10px 0 rgba(56, 56, 56, 1);
}

/* ユーティリティ */

.bold {
	font-weight: bold;
}

.red {
	color: #c50000;
}

.center {
	text-align: center;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mb60 {
	margin-bottom: 60px;
}

.pt20 {
	padding-top: 20px;
}

/* スタッフ吹き出し */
.staff {
	display: flex;
}

.staff_img {
	flex-basis: 46px;
	margin-right: 12px;
}

.staff_txt {
	position: relative;
	margin: 0;
	padding: 15px 15px 15px 35px;
	font-size: 14px;
	line-height: 1.3;
	background: #fff url(/../img/diagnosis/ico_staff_txt.png) no-repeat 10px 13px / 19px auto;
	border-radius: 5px;
	transform-origin: 0 0;
	animation: bubble 1s ease forwards;
}

@keyframes bubble {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.staff_txt p:not(:first-child) {
	margin-top: 0.5em;
}

.staff_txt::before {
	position: absolute;
	top: 0;
	left: -12px;
	border-top: 10px solid #fff;
	border-left: 15px solid transparent;
	content: '';
}

.staff_txt_none {
	flex: 1;
	padding-left: 15px;
	background-image: none;
}

/* ラジオボタン */
.form_elemnts {
	margin-top: 15px;
}

.label_radio {
	display: block;
	padding: 20px 20px 20px 66px;
	font-weight: bold;
	font-size: 30px;
	line-height: 1;
	text-align: center;
	background: #e8e8e8 url(/../img/sp/diagnosis/ico_radio_off.png) no-repeat 20px center;
	border-radius: 6px;
	cursor: pointer;
}

.label_radio span {
	font-size: 20px;
}

.form_elemnt:not(:first-of-type) {
	margin-top: 30px;
}

input[type='radio'] {
	display: none;
}

input[type='radio']:checked + .label_radio {
	color: #fff;
	background-color: #ba0000;
}

input[type='radio']:disabled + .label_radio {
	color: #ccc;
	background-color: #eee;
}

/* セレクトボックス */
.form_text,
.select {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	color: #555;
	font-size: 30px;
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 0;
}

.select {
	background: #fff
		url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAQCAYAAAENGT2IAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNpiDA0NXcjAwBAHxAyrVq1iBNFMQBzPgAYAAogRqPI/jIOskhGmACYJEEAglSD6P5oJi4C6UIxlQdP5H9kUZAAQQCh2IwOYO9DdgqIZmcMEpRfiUoCsKAHmcGxWAwQQzJdfgZiLgTDQBrr1Gi5JmI3cIIV4DPkGde41fDYxIbGvQTV8Q3cN1DKCgAmLGMyVRLkGGQAEEM54xAEwUgy6y7SJNOgbthSNbtg1tHSBC3ATG2YJWAIePRJIigBcNi8iNhKYCLiAYDjhMww9/LhJiGms6QwWftoMJAKAAAOlM1CePA3EWgzUBdeB2ASYLr+Ro5kJyUcJVHRUItSj38g1ADn4F0Lj7hqFoQQyYwGlPmPCkkLJDT2KQ4lQgiU19KgWSsQ4jNjQo2ooEeswfKFHk1DC1g4hphbRhpaQjLR0EAwAAHaoSPIJdOWKAAAAAElFTkSuQmCC)
		no-repeat right 4px center / 24px auto;
}

/* 結果表示 */

.section {
	box-sizing: border-box;
	padding: 20px 20px 40px;
	background-color: #fff;
	border-radius: 8px;
}

.t_section {
	margin: 0 -20px 20px;
	padding: 20px;
	color: #333;
	font-size: 36px;
	line-height: 40px;
	border-bottom: 7px solid #bc2b20;
}

.section_border {
	position: relative;
	border: 2px solid #e5d9bd;
}

.section_border::before {
	position: absolute;
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: 8px;
	background-color: #ba0000;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	content: '';
}

.t_section_border {
	margin: -20px -20px 40px;
	padding: 30px 20px;
	color: #333;
	font-size: 30px;
	line-height: 1.2;
	border-bottom: 2px solid #d9d9d9;
}

.t_section_border .red {
	color: #ba0000;
}

.t_section_recommendation {
	font-size: 36px;
	line-height: 1.35;
	background: url(/../img/sp/diagnosis/bg_section_recommendation.png) no-repeat right 27px bottom;
}

.ico_price_1_wrapper {
	text-align: center;
}

.ico_price_1 {
	display: inline-block;
	margin: 0 auto;
	padding-left: 52px;
	font-size: 28px;
	line-height: 42px;
	background: url(/../img/diagnosis/ico_price_1.png) no-repeat left center;
}

.rental_details {
	margin: 20px 0;
	padding: 30px 24px;
	background-color: #fefbea;
	border-radius: 8px;
}

.rental_details_ttl {
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 32px;
	line-height: 40px;
}

.ico_price_2 {
	padding-left: 56px;
	background: url(/../img/diagnosis/ico_price_2.png) no-repeat left center;
}

.ico_price_3 {
	padding-left: 56px;
	background: url(/../img/diagnosis/ico_price_3.png) no-repeat left center;
}

.rental_details_border {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dotted #cbc9bb;
}

.rental_details_price {
	display: flex;
	align-items: center;
	padding-left: 56px;
	color: #c50000;
	font-weight: bold;
	font-size: 48px;
}

.rental_details_price .label {
	display: inline-block;
	margin-right: 10px;
	padding: 0 10px;
	color: #fff;
	font-size: 28px;
	line-height: 42px;
	background-color: #8a8371;
}

.rental_details_price .small {
	font-size: 40px;
}

.rental_details_prices_wrapper {
	padding-left: 56px;
}

.rental_details_prices {
	display: flex;
	flex-wrap: wrap;
}

.rental_details_prices_ttl {
	flex-basis: 5em;
	font-size: 28px;
}

.rental_details_prices_txt {
	flex-basis: 9em;
	font-size: 28px;
}

.rental_details_prices_txt span {
	font-weight: bold;
	font-size: 32px;
}

.rental_details_prices_ttl:not(:nth-of-type(-n + 1)),
.rental_details_prices_txt:not(:nth-of-type(-n + 1)) {
	margin-top: 0.5em;
}

.section_txt {
	margin-left: 1em;
	font-size: 28px;
	line-height: 1.6;
	text-indent: -1em;
}

.section_txt:not(:first-of-type) {
	margin-top: 0.5em;
}

.normal_details_header {
	margin-bottom: 20px;
	padding: 0 20px 20px;
	text-align: center;
	border-bottom: 2px dotted #c5c5c5;
}

.normal_details_ttl {
	color: #c50000;
	font-weight: bold;
	font-size: 33px;
	line-height: 1.4;
}

.normal_details_txt {
	margin-top: 0.5em;
	font-size: 28px;
	line-height: 1.5;
}

/* 共通フォーム */
.form {
	margin-top: 20px;
}

.form dt {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.2;
}

.form dd {
	line-height: 0;
}

.form dd:not(:last-child) {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dotted #bfbfbf;
}

.ico_important,
.ico_optional {
	display: inline-block;
	padding: 0 10px;
	color: #fff;
	font-weight: normal;
	font-size: 18px;
	line-height: 40px;
	text-align: center;
	border-radius: 4px;
}

.ico_important {
	background-color: #d20e15;
}

.ico_optional {
	background-color: #999;
}

.ico_ml {
	margin-left: 10px;
}

.active {
	ime-mode: active;
}

.disabled {
	ime-mode: disabled;
}

/* aEFO設定 */
#aefo_mes {
	margin: 10px;
	padding: 10px;
	font-size: 28px;
}

#aefo {
	margin-top: -40px;
	white-space: nowrap;
	cursor: pointer;
}

#addr_candidates {
	padding: 10px;
	line-height: 150%;
}

span.focus_balloon_ie {
	position: relative;
	height: 100px;
	background-color: #8ee5ee;
}

span.focus_balloon {
	position: relative;
	height: 100px;
	background-color: #8ee5ee;
}

span.error_balloon_ie,
span.error_balloon {
	position: relative;
	height: auto !important;
	color: #fff;
	font-size: 30px;
	background-color: #c3272a;
	border-radius: 8px;
}

span.focus_balloon::after,
span.error_balloon::after {
	position: absolute;
	top: 100%;
	left: 20px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: #c3272a;
	content: '';
}

#azip_mes2 {
	padding: 5px;
}

#azip_mes2 a {
	color: #fff;
	cursor: pointer;
}

#azip2 {
	z-index: 2;
	display: none;
	white-space: nowrap;
	background-color: #8ee5ee;
}

#azip2::after {
	position: absolute;
	top: 100%;
	left: 10px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #8ee5ee;
	content: '';
}

.placeholder_off {
	color: #dfdfdf;
}

.placeholder_on {
	color: #000;
}

#sub {
	position: relative;
}

#sub a {
	color: #fff;
}

.js_error_message {
	position: absolute;
	top: 0;
	left: 50% !important;
	display: none;
	width: 420px;
	margin-left: -270px;
	padding: 20px 60px;
	color: #fff;
	font-size: 30px;
	line-height: 1.4;
	background-color: #c3272a;
	border-radius: 8px;
}

.js_error_message a {
	color: #fff;
	text-decoration: none;
}

.js_error_message a:hover {
	text-decoration: underline;
}

/* リード文 */
.triangle {
	width: 0;
	height: 0;
	margin: 30px 0;
	margin-right: auto;
	margin-left: auto;
	border-top: 40px solid #ccc;
	border-right: 72px solid transparent;
	border-left: 72px solid transparent;
}

.txt_lead {
	font-size: 32px;
	line-height: 1.5;
}

.txt_lead .underline {
	text-decoration: underline;
}

.txt_lead .marker {
	color: #b90000;
	font-size: 38px;
	background-color: #fffb93;
}

/* クロージング */
.diagnosis_closing_wrapper {
	box-sizing: border-box;
	margin-top: 40px;
	background-color: #fff;
	border: 2px solid #e5d9bd;
	border-radius: 8px;
}

.diagnosis_closing_txt {
	padding: 25px 30px 25px 30px;
	font-size: 26px;
	line-height: 1.5;
	background: url(/../img/sp/diagnosis/bg_diagnosis_closing_txt.jpg) no-repeat right 18px bottom;
}

.diagnosis_closing {
	padding: 30px;
	background-color: #fffbcd;
}

.diagnosis_closing_tl {
	color: #555;
	font-size: 26px;
	line-height: 32px;
}

.user_choosed_items {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
	overflow-x: hidden;
}

.user_choosed_item {
	margin: 0 10px 10px 0;
	padding: 10px;
	font-size: 24px;
	line-height: 1;
	background-color: #fff;
	border: 2px solid #e5d9bd;
}

.diagnosis_closing_tel a {
	display: block;
	padding: 13px 10px 13px 90px;
	color: #fff;
	font-weight: bold;
	font-size: 40px;
	font-family: ArialMT, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', メイリオ, sans-serif;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	background: #d00 url(/../img/sp/diagnosis/ico_diagnosis_closing_tel.png) no-repeat 10px center;
	border-radius: 50px;
	box-shadow: 0 10px 0 #b11212;
}

.diagnosis_closing_tel .small {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-weight: normal;
	font-size: 20px;
}

/* アニメーション */
.step_common_1,
.step_common_2,
.step_rental_1,
.step_rental_2,
.step_normal_1,
.step_normal_2,
.step_normal_3,
.step_normal_4,
.step_normal_5,
.form dt.rental_address,
.form dd.rental_address {
	display: none;
}

.loading {
	width: 100%;
	height: 300px;
	background: url(/../img/top/new/loading.gif) no-repeat center center;
}

.anime_start {
	animation: anime_start 0.5s ease-in-out forwards;
}

.anime_end {
	animation: anime_end 0.5s ease-in-out forwards;
}

@keyframes anime_start {
	0% {
		transform: scale(0.75);
		opacity: 0;
	}

	95% {
		transform: scale(1.05);
		opacity: 0.75;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes anime_end {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(0.75);
		opacity: 0;
	}
}

/* 通常フォームのラジオボタン追加 */
.diagnosis_radio {
	display: flex;
	align-items: center;
	font-size: 28px;
	color: #333;
	line-height: 1;
	flex-wrap: wrap;
}

.diagnosis_radio li {
	display: flex;
	align-items: center;
}

.diagnosis_radio input[type='radio'] {
	display: block;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	vertical-align: middle;
}

.diagnosis_radio label {
	line-height: 1.8;
}

/*
--------------------------------------------------------------------------------
 END OF CSS
--------------------------------------------------------------------------------
*/
