/* 以下は /ymd-hoken/common/css/style.css よりコピー */

/* 
  C O N T A C T
        */
.contact p.note {
	color: #ef596b;
	text-align: center;
	margin-bottom: 50px;
}

.contact .required {
	color: #ef596b;
}

.contact ul {
	width: 80%;
	margin: 0 auto;
}

.contact ul li {
	display: flex;
	border-bottom: 1px dotted #ccc;
	font-size: 1.4rem;
	padding: 20px 2% 20px 0;
	box-sizing: border-box;
}

.contact ul li span {
	display: inline-block;
	width: 68%;
}

/* .Contact_block {
	padding: 0 100px 100px;
	font-size: 1.6rem;
} */

/* @media screen and (max-width: 768px) {
	.Contact_block {
		padding: 0 5% 50px;
		font-size: 1.4rem;
	}
} */

.Contact--form {
	margin-top: 60px;
}

/* .Customer_container {
    background: #F7F8DA;
} */
/* .Customer_content {
  width: 100%;
    margin-top: 100px;
    overflow: hidden;
    z-index: 0;
    padding: 80px 5% 100px;
} */
.Customer_content h1 {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.Customer_content p {
	margin: 0 auto;
	text-align: center;
}

.Customer_content p.Customer_block--trigger {
	margin: 10px 0;
	font-size: 2rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	position: relative;
}

.Customer_block--trigger::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 25%;
	right: 20px;
	z-index: 9;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}

.Customer_block--trigger.open::before {
	content: '';
	display: block;
	transform: rotate(225deg);
}

.Customer_block--toggle {
	border-bottom: 1px solid #ccc;
	height: 0;
	overflow: hidden;
}

.Customer_block--toggle.open {
	padding: 0 5%;
	height: auto;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.Customer_content h1 {
		font-size: 18px;
		line-height: 1.5;
	}

	.Customer_content h1 .sub {
		font-size: 14px;
	}

	.Customer_content p {
		text-align: left;
	}

	.Customer_content p.Customer_block--trigger {
		font-size: 1.6rem;
	}

	/* wakahoi追加 250612 */
	.Customer_block--toggle.open {
		padding: 0 3% 0 0;
	}
}

/*

Form

*/
.Form--dl {
	display: flex;
	align-items: center;

}

@media screen and (max-width: 768px) {
	.Form--dl {
		display: block;
	}
}

.Form--dl:nth-of-type(n + 2) {
	margin-top: 40px;
}

.Form--dl.-textarea {
	align-items: flex-start;
}

.Form--dl.-textarea .Form--dt {
	margin-top: 20px;
}

.Form--dl.-radio {
	align-items: flex-start;
}

.Form--dl.-radio .radio--list {
	padding-bottom: 12px;
}

.Form--dl.-radio .radio--list_item {
	line-height: 20px;
}

.Form--dl.-radio .radio--list_item.-text {
	line-height: 27px;
}

.Form--dl.-radio .radio--list_item:nth-of-type(n + 2) {
	margin-top: 20px;
}

.Form--dl.-radio .radio--list.-flex {
	display: flex;
}

.Form--dl.-radio .radio--list.-flex .radio--list_item {
	margin-top: 0;
}

.Form--dl.-radio .radio--list.-flex .radio--list_item:nth-of-type(n + 2) {
	margin-left: 56px;
}

.Form--dl.-checkbox {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.Form--dl.-checkbox .checkbox--list {
	padding-bottom: 12px;
}

.Form--dl.-checkbox .checkbox--list_item {
	line-height: 20px;
}

.Form--dl.-checkbox .checkbox--list_item:nth-of-type(n + 2) {
	margin-top: 20px;
}

.Form--dl.-checkbox .checkbox--list.-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.Form--dl.-checkbox .checkbox--list.-flex .checkbox--list_item {
	margin-top: 0;
}

.Form--dl.-checkbox .checkbox--list.-flex .checkbox--list_item:nth-of-type(n + 2) {
	margin-left: 56px;
}

.Form--dt {
	font-size: 16px;
	font-weight: 700;
	min-width: 256px;
	width: 256px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.Form--dt {
		margin-bottom: 16px;
	}
}

.Form--dt .required {
	background-color: #7CBB28;
	border-radius: 6px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	width: 40px;
	height: 22px;
	position: absolute;
	top: 0;
	right: 20px;
}

@media screen and (max-width: 768px) {
	.Form--dt .required {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		margin-left: 10px;
		position: relative;
		top: -3px;
		right: 0;
	}
}

.Form--dd {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	/* wakahoi追加 250612 */
	margin-left: 0;
}

input[type='text'],
input[type='password'],
input[type='tel'],
input[type='email'] {
	background-color: #f5f5f5;
	border: 1px solid #ededed;
	border-radius: 6px;
	width: 100%;
	height: 60px;
	padding-left: 12px;
}

input[type='text'].-white,
input[type='password'].-white,
input[type='tel'].-white,
input[type='email'].-white {
	background-color: #fff;
}

textarea {
	background-color: #f5f5f5;
	border: 1px solid #ededed;
	border-radius: 6px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	min-height: 200px;
	max-height: 400px;
	padding: 12px;
}

textarea.-white {
	background-color: #fff;
}

input[type='radio'] {
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
	display: none;
}

input[type='radio']+.item--label {
	text-indent: 0;
	display: block;
	line-height: 1.73333;
	padding-left: 30px;
	position: relative;
}

input[type='radio']+.item--label::before {
	content: '';
	display: block;
	background-color: #f5f5f5;
	border: 1px solid #ededed;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
}

input[type='radio']+.item--label.-white::before {
	background-color: #fff;
}

input[type='radio']:checked+.item--label::before {
	content: '';
	display: block;
	border-color: #7CBB28;
}

input[type='radio']:checked+.item--label::after {
	content: '';
	display: block;
	background-color: #7CBB28;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	position: absolute;
	top: calc(50% - 5px);
	left: 5px;
}

input[type='checkbox'] {
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
}

input[type='checkbox']+.item--label {
	text-indent: 0;
	display: block;
	line-height: 1.73333;
	padding-left: 70px;
	position: relative;
	text-align: center;
}

@media screen and (max-width: 768px) {
	input[type='checkbox']+.item--label {
		padding-left: 40px;
	}
}

input[type='checkbox']+.item--label::before {
	content: '';
	display: block;
	background-color: #f5f5f5;
	border: 1px solid #ededed;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	position: absolute;
	top: calc(50% - 10px);
	left: 28%;
}

@media screen and (max-width: 768px) {
	input[type='checkbox']+.item--label::before {
		top: 0;
		left: 0;
	}
}

input[type='checkbox']+.item--label.-white::before {
	background-color: #fff;
}

input[type='checkbox']:checked+.item--label::before {
	content: '';
	display: block;
	background-color: #222;
	border-color: #222;
}

input[type='checkbox']:checked+.item--label::after {
	content: '';
	display: block;
	background-image: url(../img/checkbox.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 11px;
	position: absolute;
	top: calc(50% - 6px);
	left: 2px;
}

.Submit {
	text-align: center;
	margin-top: 60px;
}

.Submit--span {
	cursor: pointer;
	color: #fff;
	text-align: center;
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
}

.Submit--btn {
	color: inherit;
	cursor: pointer;
	text-align: center;
	display: block;
	width: 100%;
	height: 100%;
	background: #00A73C;
	border: 2px solid #00A73C;
	border-radius: 6px;
	font-weight: 600;
	display: block;
	padding: 20px 0;
	transition: background-color 0.1s cubic-bezier(0.5, 0, 0.75, 0), color 0.1s cubic-bezier(0.5, 0, 0.75, 0);
	/* border: 1px solid #f00; */
}

.Submit--span::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: calc(50% - 12px);
	right: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	/* background: #fff; */
}

.Submit--span::after {
	content: '';
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	right: 28px;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 560px) {
	.Submit--span {
		width: 100%;
	}
}

.Submit--span:hover {
	opacity: 0.7;
	-webkit-transition: background-color .2s linear;
	transition: background-color .2s linear;
}

.error_blank {
	color: #d92b2b;
	display: block;
	font-weight: 700;
	height: 0;
}

.Thanks_block--text {
	text-align: center;
	font-weight: 700;
}

.Thanks_block--memo {
	width: 80%;
	margin: 0 auto;
	margin-top: 24px;
}

.Thanks_block--red {
	width: 80%;
	color: #d92b2b;
	font-weight: 500;
	margin: 0 auto;
	margin-top: 24px;
}

@media screen and (max-width: 560px) {
	.Thanks_block--text {
		text-align: left;
	}

	.Thanks_block--memo,
	.Thanks_block--red {
		width: 100%;
	}
}


/* 以下は /ymd-hoken/common/css/style_add.css よりコピー */

/*--------------------------------------------------------

お問い合わせページの修正

---------------------------------------------------------*/
input {
	-webkit-appearance: none;
}

#service .radio--list {
	display: block;
	list-style-type: none;
}

#service .Form--dl.-radio li {
	display: block;
	list-style-type: none;
}

.Submit--btn {
	font-size: 18px;
}

@media screen and (max-width:560px) {
	#faq .faqLink--list .item--link {
		padding: 12px 0 25px;
	}

	.faqLink--list .item--link::after {
		width: 8px;
		height: 8px;
		position: absolute;
		left: calc(50% - 4px);
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
	}

}


/* フォームのサンキューページ */



.Thanks_content h2.c-heading {
	color: #80c645;
	font-size: 2.4rem;
}

.Thanks_content h2.c-heading+p {
	text-align: left;
}

.Thanks_content table {
	margin-top: 30px;
}

.Thanks_content table th {
	background-color: #80c645;
	color: #fff;
	font-weight: normal;
}

.Thanks_content table strong {
	color: #eb1a24;
}

.btn-square.inq.small {
	font-size: 14px;
	font-weight: normal;
	border-radius: 4px;
	padding: 16px 10px;
	max-width: 300px;
	width: 100%;
	margin: 30px auto;
}

@media screen and (min-width: 768px) {

	.Thanks_content h2.c-heading+p {
		text-align: center
	}

	.Thanks_content h2.c-heading {
		font-size: 2.8rem;
	}
}