@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');

/*
pc
@media (min-width:1000px ) {

}

sp
@media (max-width:599.99px ) {

}

tab
@media (min-width:600px ) and (max-width:999.99px ) {

}

sp-tab {
@media (max-width:999.99px ) {

}

tab-pc
@media (min-width: 600px) {

}

*/
html,
body {
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5;
	font-feature-settings: "palt";
	font-size: 16px;
	color: #444444;
	margin: 0;
}

@media (min-width:600px) {

	html,
	body {
		font-size: 18px;
	}

	.spOnly {
		display: none;
	}
}

/*---------------------------------------------------
 フォーム用reset
-----------------------------------------------------*/
input,
button,
select,
textarea
{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

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

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/*フォーム用reset*/

/* wrapper */
.wrapper__container {
	width: 94%;
	margin: 0 auto;
}

@media (min-width:600px) {
	.wrapper__container {
		max-width: 700px;
		margin: 0 auto;
	}
}

header {
	border-top: 4px solid #097BC3;
	height: 80px;
	padding: 0 0 40px;
}
.header__inner {
	max-width: 1000px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header h2 {
	margin: 0;
	height: 100%;
	display: flex;
	align-items: center;
}
header h2 img {
	width: 180px;
	height: 80%;
}
header h2 span {
	vertical-align: 13px;
	padding: 20px 0 0 10px;
	font-size: 24px;
}
@media (max-width:599.99px ) {
	header {
		height: 60px;
		padding: 0 0 20px 0;
	}
	header h2 {
		margin: 0 auto;
	}
	header h2 img {
		width: 100px;
		height: 80%;
	}
	header h2 span {
		font-size: 16px;
		padding: 10px 0 0 8px;
	}
}
@media (min-width:600px ) and (max-width:999.99px ) {
	.header__inner {
		padding: 0 20px;
	}
}

header .header__logo {
	display: none;
	width: 25%;
}

header .header__logo img {
	width: 100%;
}

@media (min-width: 600px) {
	header {
		border-top: 6px solid #097BC3;
	}

	header .header__logo {
		display: block;
		width: 140px;
	}
}

/* header */
#header {
	margin: 0 0 30px;
}

#header h1 {
	font-size: 18px;
	text-align: center;
	margin: 0;
	padding: 0 0 20px;
}

#header p {
	margin: 0 0 5px;
	text-align: center;
}

.header__tel {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.header__tel img {
	vertical-align: middle;
}

.header__tel span {
	margin: 0 0 0 10px;
	color: rgb(150, 150, 150);
}

@media (min-width: 600px) {
	#header p {
		text-align: left;
	}

	.header__tel {
		flex-direction: row;
	}
}

@media (min-width:600px) and (max-width:999.99px) {
	#header h1 {
		font-size: 20px;
	}
}

@media (min-width:1000px) {
	#header h1 {
		font-size: 24px;
	}
}

/* input-table */
.input-table {
	width: 100%;
}

.input-table tr {
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	margin: 0 0 20px;
}
.input-table th,
.input-table td {
	display: block;
}
.input-table th {
	text-align: left;
	position: relative;
	margin: 0 0 5px;
}

.input-table th::before {
	content: '\5FC5\9808';
	display: inline-block;
	width: 40px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background-color: #E05353;
	font-size: 16px;
	font-weight: normal;
	border-radius: 4px;
	color: #fff;
	margin: 0 10px 0 0;
}
.input-table tr:last-child th::before {
	content: '\4EFB\610F';
	background-color: #097BC3;
}

.input-table input[type='text'],
.input-table input[type='tel'],
.input-table input[type='email'] {
	width: 100%;
	height: 40px;
	border: solid 0.5px #d5d5d5;
	padding: 0 0 0 20px;
	box-sizing: border-box;
}

.td-radio {
	display: flex;
	align-items: center;
}

.td-radio label {
	margin: 0 20px 0 5px;
}

.input-table input[type='radio'] {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: solid 1px #5d5d5d;
	padding: 10px 0 0;
	margin: 0;
	position: relative;
}

.input-table input[type='radio']:checked::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #E05353;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

/* pledge-wrap */
.pledge-wrap {
	text-align: center;
}

.caution__checkbox {
	display: flex;
	align-items: center;
	justify-content: center;
}

.caution__checkbox label {
	margin: 0 0 0 5px;
}

.pledge-wrap input[type='checkbox'] {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	border: solid 1px #d5d5d5;
}

.pledge-wrap input[type='checkbox']:checked {
	/* background-image: url(/img/form/check-solid-white.svg); */
	background-image: url(/img/form/check-solid.svg);
	background-size: contain;
	background-position: center center;
	/* background-color: #E05353; */
}

/* button_area */
.button_area {
	text-align: center;
	margin: 40px 0 0;
}

.button_area input[type='submit'] {
	width: 90%;
	height: 60px;
	background-color: #d5d5d5;
	transition: 0.3s;
}

@media (min-width: 600px) {
	.button_area input[type='submit'] {
		width: 300px;
	}
}

.button_area input[type='submit'].disabled {
	color: #2d2d2d;
}

.button_area input[type='submit'].agreed {
	color: #fff;
	background-color: #1E88E5;
	/* background: #ffc300;
	background: -moz-linear-gradient(top, #ffc300 0%, #dd3538 100%);
	background: -webkit-linear-gradient(top, #ffc300 0%, #dd3538 100%);
	background: linear-gradient(to bottom, #ffc300 0%, #dd3538 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc300', endColorstr='#dd3538',GradientType=0 ); */
}

#IndeedLpInquiry {
	width: 100%;
	height: 80px;
	border: solid 0.5px #d5d5d5;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}


/* バリデーション */
.formError .formErrorContent {
	background: none;
	color: #E05353;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
}
