@charset "utf-8";



.u-table-corner {
	margin-bottom: 60px;
}

.l-contact-form table {
	width: 100%;
}

.l-contact-form table table {
	width: auto;
	margin: 0;
	border: 0;
}

.l-contact-form table table.is-w100 {
	width: 100%;
}

.l-contact-form table table tr:nth-of-type(2) td {
	padding-top: 10px;
}

.l-contact-form table table th,
.l-contact-form table table td {
	padding-right: .5em !important;
	position: relative;
}

.l-contact-form table table td {
	vertical-align: middle;
	padding: 0;
	border: 0;
}

.l-contact-form .is-spacer {
	width: 1em;
}

.l-contact-form .is-large {
	width: 75%;
}

.l-contact-form .is-middle {
	width: 50%;
}

.l-contact-form .is-small {
	width: 150px;
}

.l-contact-form input[type='text'],
.l-contact-form textarea {
	font-size: 1.6rem;
	padding: .25em;
	border-radius: .25em;
	background: #f1f1f1;
	border: 1px solid #C1C7C7;
}

.l-contact-form input[type='text']:focus,
.l-contact-form textarea:focus {
	background: #fff;
	border-color: #d32500;
	box-shadow: 0 0 5px 0 rgba(211,37,0,.5);
}

.l-contact-form textarea {
	width: 100%;
	min-height: 10em;
	box-sizing: border-box;
}

.l-contact-form select,
.l-contact-form select option {
	font-size: 1.6rem;
	padding: .25em;
	cursor: pointer;
}

.l-contact-form select:focus,
.l-contact-form select option:focus {
	background: #fff;
	border-color: #d32500;
	box-shadow: 0 0 5px 0 rgba(211,37,0,.5);
}

.l-contact-form .is-require th:after {
	content: '※';
	color: #d32500;
	text-shadow:
		0 0 2px #fff,
		0 0 2px #fff,
		0 0 2px #fff,
		0 0 5px #fff,
		0 0 10px #fff
	;
	margin: 0 0 0 .25em;
	display: inline-block;
}

.l-contact-form__button {
	text-align: center;
}

.l-contact-form__button button {
	font-weight: 700;
	min-width: 200px;
	min-height: 55px;
	display: inline-block;
	border: 1px solid #808080;
	border-radius: .25em;
	position: relative;
	cursor: pointer;
	transition: .2s;
}

.l-contact-form__button button:after {
	content: '';
	width: 8px;
	height: 12px;
	display: inline-block;
	background: url(/_assets/img/common/arrow-orange-01.svg) no-repeat center top / cover;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.l-contact-form__button button:hover {
	color: white;
	background: #d32500;
	border-color: #d32500;
}

.l-contact-form__button button:hover:after {
	background-image: url(/_assets/img/common/arrow-white-01.svg);
}

.l-contact-form__button button[type='reset'] {
	background-color: #ccc;
}
.l-contact-form__button button[type='reset']:hover {
	background: #d32500;
}


/* プライバシーポリシー */
.l-contact-form__button button[disabled] {
	color: #999;
	background: #fff;
	border-color: #ccc;
	cursor: default;
}
.l-contact-form__button button[disabled]:after {
	display: none;
}

.l-contact-form__privacy label {
	text-align: left;
	text-decoration: underline;
	display: inline-block;
}


/* RADIO ボタン */
.l-contact-form input[type='radio'],
.l-contact-form input[type='checkbox'] {
	display: none;
	cursor: pointer;
}

.l-contact-form input[type='radio'] + label,
.l-contact-form input[type='checkbox'] + label {
	padding-left: 25px;
	position: relative;
	cursor: pointer;
}

.l-contact-form input[type='radio'] + label:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #C1C7C7;
	border-radius: 50%;
}

.l-contact-form input[type='checkbox'] + label:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #C1C7C7;
}

.l-contact-form input[type='radio']:checked + label,
.l-contact-form input[type='checkbox']:checked + label {
	color: #d32500;
}

.l-contact-form input[type='radio'] + label:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	width: 9px;
	height: 9px;
	background: #d32500;
	border-radius: 50%;
	opacity: 0;
	transition: .2s;
}

.l-contact-form input[type='checkbox'] + label:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 3px);
	left: 4px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: url("/_assets/img/common/icon-check-01.png") no-repeat center / cover;
	border-radius: 50%;
	opacity: 0;
	transition: .2s;
}

.l-contact-form input[type='radio']:checked + label:after,
.l-contact-form input[type='checkbox']:checked + label:after {
	opacity: 1;
}

/*2022.03*/
.is-column-1 .u-table-corner th {
	width: 20%;
}

.is-list p {
	font-weight: 700;
}

.is-list p:not(:nth-of-type(1)) {
	margin: 1em 0 0;
}

.is-list ul li {
	font-feature-settings: 'palt';
	margin: .5em 1em 0 0;
	display: inline-block;
}

.is-error {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	width: calc(100% - 5px);
	margin: -.5em 0 .75em -5px;
	padding: .5em 1em;
	border-radius: 6px;
	background: #d32500;
	display: block;
}



