@charset "utf-8";

@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
 }
[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-down:before {
	content: "\e900";
}
.icon-arrow-next:before {
	content: "\e901";
}
.icon-arrow-prev:before {
	content: "\e902";
}
.icon-arrow-up:before {
	content: "\e903";
}
.icon-pdf:before {
	content: "\e904";
}
.icon-phone:before {
	content: "\e905";
}

input,
select,
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: 0;
	resize: none;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: normal;
}
input[type="checkbox"] {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 1px solid #999;
	border-radius: 4px;
	background-size: contain;
}
input[type="checkbox"]:checked {
	background-image: url('../img/form-checkbox.svg');
	border-color: #333;
	background-color: #333;
}
input[type="radio"] {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 1px solid #999;
	border-radius: 50%;
	background-size: contain;
}
input[type="radio"]:checked {
	background-image: url('../img/form-radio.svg');
	border-color: #333;
	background-color: #333;
}

/*============================================================
	PAGE
*/
.page {
	padding: 100px 0;
}
.content {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 900px;
}
/**/
@media screen and (max-width:820px) {
	.page {
		padding: 60px 0;
	}
	.content {
		padding: 0 10px;
	}
}

/*============================================================
	HEADLINE
*/
.headline {
	margin: 40px 0 50px 0;
	text-align: center;
}
.headline h2 {
	font-size: 48px;
	line-height: 1.1;
}
.headline .text {
	margin: 20px 0 0 0;
	font-weight: 700;
	font-size: 16px;
}
/**/
@media screen and (max-width:820px) {
	.headline {
		margin: 30px 0 30px 0;
	}
	.headline h2 {
		font-size: 30px;
	}
}

/*============================================================
	ALERT TITLE
*/
.alert-title {
	margin: 0 0 20px 0;
	text-align: center;
	color: #c00;
}

/*============================================================
	CONF TITLE
*/
.conf-title {
	margin: 0 0 20px 0;
	text-align: center;
}

/*============================================================
	FORM TABLE
*/
.form-table {
	width: 100%;
	border-top: 1px solid #ccc;
}
.form-table th {
	padding: 35px 0 0 0;
	border-bottom: 1px solid #ccc;
	vertical-align: top;
	text-align: left;
}
.conf-table th {
	padding: 26px 0;
}
.form-table th .title {
	position: relative;
	display: inline-block;
	padding: 0 50px 0 0;
}
.form-table th .title div:first-child {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
}
.form-table th .must {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.form-table th .must span {
	display: block;
	padding: 5px;
	background-color: #c00;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}
.form-table td {
	padding: 28px 0;
	width: 380px;
	border-bottom: 1px solid #ccc;
	vertical-align: top;
	text-align: left;
	font-size: 14px;
}
.form-conf .form-table td {
	vertical-align: middle;
}
.form-table .radio-list {
	display: flex;
	line-height: 1.5;
}
.form-table .radio-list.single-line {
	padding: 6px 0;
}
.form-table .radio-list li {
	margin: 0 50px 0 0;
}
.form-table .radio-list li:last-child {
	margin: 0;
}
.form-table .radio-list li label {
	display: flex;
	align-items: center;
}
.form-table .radio-list li label input {
	margin-right: 5px;
}
.form-table .checkbox-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 -10px 0;
	line-height: 1.5;
}
.form-table .checkbox-list li {
	flex-basis: 50%;
	padding: 0 0 10px 0;
}
.form-table .checkbox-list li label {
	display: flex;
	align-items: center;
}
.form-table .checkbox-list li label input {
	margin-right: 5px;
}
.form-table textarea {
	display: block;
	padding: 0.6em 0.8em;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	font-size: 14px;
	line-height: normal;
}
.form-table .input-text {
	display: block;
	padding: 0.6em 0.8em;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	line-height: normal;
}
.form-table .layout-inline {
	display: flex;
	align-items: center;
}
.form-table .layout-inline span {
	display: block;
	flex-shrink: 0;
	margin: 0 0 0 15px;
}
.form-table .margin-top {
	margin-top: 15px;
}
.form-table .zipcode {
	display: flex;
	margin: 0 0 15px 0;
}
.form-table .zipcode .input-text {
	width: 120px;
}
.form-table .zipcode a {
	display: flex;
	align-items: center;
	margin: 0 0 0 10px;
	padding: 0 0.8em;
	height: 100%;
	border: 1px solid #000;
	border-radius: 5px;
}
.form-table .preview {
	max-width: 200px;
}
.form-table .upfile {
	margin: 0 0 10px 0;
}
.form-table .upfile .preview img {
	margin: 0 0 20px 0;
}
.form-table .upfile .input {
	position: relative;
}
.form-table .upfile .input .filename {
	position: relative;
	padding: 0.6em 0.8em;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	line-height: normal;
}
.form-table .upfile .input input {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	cursor: pointer;
}
.form-table .alert {
	margin: 5px 0 0 0;
	font-weight: 700;
	font-size: 14px;
	color: #c00;
}

/**/
@media screen and (max-width:820px) {
	.form-table,
	.form-table tbody,
	.form-table tr,
	.form-table th,
	.form-table td {
		display: block;
		width: 100%;
	}
	.form-table th {
		padding: 15px 0 10px 0;
		border-bottom: 0;
	}
	.form-table th .must span {
		padding: 2px 5px;
	}
	.form-table td {
		padding: 0 0 15px 0;
	}
	.form-table .radio-list li {
		margin: 0;
		flex-basis: 50%;
	}
	.form-table textarea {
		padding: 0.5em 0.6em;
		font-size: 16px;
	}
	.form-table .input-text {
		padding: 0.5em 0.6em;
		font-size: 16px;
	}
	.form-table .radio-list.single-line {
		padding: 0;
	}
}

/*============================================================
	BTN WRAP
*/
.btn-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 0 0;
}
.btn-wrap button,
.btn-wrap .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px;
	width: 120px;
	height: 60px;
	border: 1px solid #000;
	transition: all 0.3s ease 0s;
}
.btn-wrap .btn {
	padding: 0 20px;
	width: auto;
}
.btn-wrap button i,
.btn-wrap .btn i {
	position: relative;
	top: 1px;
	padding: 0 0 0 2px;
}
.btn-wrap .btn-back button i {
	padding: 0 2px 0 0;
}
.btn-wrap button:hover,
.btn-wrap .btn:hover {
	background-color: #000;
	color: #fff;
}
/**/
@media screen and (max-width:820px) {

}

/*============================================================
	FORM THANKS
*/
.form-thanks {
	padding: 0 0 50px 0;
	text-align: center;
}
.form-thanks h3 {
	margin: 0 0 20px 0;
	padding: 20px 0 0 0;
	font-size: 20px;
}
.form-thanks h3 br {
	display: none;
}
/**/
@media screen and (max-width:820px) {
	.form-thanks {
		text-align: center;
	}
	.form-thanks h3 br {
		display: block;
	}
}

/*============================================================
	FORM ERROR
*/
.form-error {
	text-align: center;
}
.form-error h3 {
	margin: 0 0 20px 0;
	font-size: 20px;
}
.form-error .btn-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 0 0;
}
.form-error .btn-wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px;
	padding: 0 30px;
	height: 60px;
	border: 1px solid #000;
	transition: all 0.3s ease 0s;
}
.form-error .btn-wrap a i {
	position: relative;
	top: 1px;
	padding: 0 0 0 2px;
}
.form-error .btn-wrap a:hover {
	background-color: #000;
	color: #fff;
}
/**/
@media screen and (max-width:820px) {

}

.file-del {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	padding: 8px 0;
	border-radius: 5px;
	background-color: #666;
	color: #fff;
	transition: all 0.3s ease 0s;
}
.file-del:hover {
	opacity: 0.7;
}