@charset "utf-8";

/***
    The new CSS reset - version 1.4.9 (last updated 11.2.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
- The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
	all: unset;
	display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-width: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	-moz-appearance: revert;
			appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
	all: unset;
}
::-moz-placeholder {
	all: unset;
}
:-ms-input-placeholder {
	all: unset;
}
::-ms-input-placeholder {
	all: unset;
}
::placeholder {
	all: unset;
}

/* fix the feature of 'hidden' attribute.
	display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly. */
:where([contenteditable]) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
	-webkit-user-drag: element;
}

/* ---------------------------------------------
*    base setting
--------------------------------------------- */
body {
	background-color: #f2f2f2;
	line-height: 1.5;
	color: #393939;
	font-size: 14px;
	font-family: "メイリオ", "meiryo", "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica", "sans-serif";
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	word-break: break-all;
}
body.is-fixed {
	position: fixed;
	left: 0;
	right: 0;
	margin: auto;
}

a {
	color: inherit;
	outline: none;
	text-decoration: underline;
	cursor: pointer;
}

a:hover {
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

input,
textarea,
button,
select {
	outline: none;
	font-size: inherit;
}

input,
textarea,
button,
select {
	cursor: pointer;
	font-family: "メイリオ", "meiryo", "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica", "sans-serif";
}

/* ---------------------------------------------
*    header
--------------------------------------------- */
.header {
	position: sticky;
	top: 0;
	width: 100%;
	background-color: #f2f2f2;
	border-top: 5px solid #0077b3;
	z-index: 1000;
}
.header .header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	width: 1000px;
	padding: 0 40px;
	margin: 0 auto;
	height: 95px;
	background-color: #fff;
}
.header .header-inner .header-inner-logo {
	display: block;
}
.header .header-inner .header-inner-logo > img {
	width: 350px;
}
.header .header-inner .header-inner-btnlist {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.header .header-inner .header-inner-btnlist > li {
	margin-left: 25px;
}
.header .header-inner .header-inner-btnlist > li:first-child {
	margin-left: 0;
}
.header .header-inner .header-inner-menubtn {
	display: none;
}
@media (max-width: 768px) {
	.header .header-inner {
		width: 100%;
		height: 50px;
		padding: 0 10px;
		border-bottom: 1px solid #707070;
	}
	.header .header-inner .header-inner-logo {
		display: block;
	}
	.header .header-inner .header-inner-logo > img {
		width: 200px;
	}
	.header .header-inner .header-inner-btnlist {
		display: none;
	}
	.header .header-inner .header-inner-menubtn {
		display: block;
	}
}

/* ---------------------------------------------
*    grobal nav
--------------------------------------------- */
.grobalnav {
	position: sticky;
	top: 100px;
	height: 50px;
	background-color: #0077b3;
	z-index: 1000;
}
.grobalnav .grobalnav-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.grobalnav .grobalnav-inner > li {
	position: relative;
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	border-left: 1px solid #fff;
}
.grobalnav .grobalnav-inner > li:first-child {
	border-left: none;
}
.grobalnav .grobalnav-inner > li .grobalnav-inner-item {
	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;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
.grobalnav .grobalnav-inner > li .grobalnav-inner-item:hover {
	background-color: #005782;
	opacity: 1;
}
.grobalnav .grobalnav-inner > li .grobalnav-inner-list {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	padding-top: 10px;
}
.grobalnav .grobalnav-inner > li:hover .grobalnav-inner-list {
	display: block;
}
.grobalnav .grobalnav-inner > li.is-sponly {
	display: none;
}
@media (max-width: 768px) {
	.grobalnav {
		display: none;
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: calc(100% - 50px);
		background-color: rgba(0, 0, 0, 0.7);
		z-index: 100;
	}
	.grobalnav .grobalnav-inner {
		position: absolute;
		right: 0;
		width: 75%;
		height: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
			-ms-flex-direction: column;
				flex-direction: column;
		margin: 0;
		background-color: #fff;
		border: none;
		overflow-y: scroll;
	}
	.grobalnav .grobalnav-inner > li {
		-webkit-box-flex: initial;
			-ms-flex: initial;
				flex: initial;
		border-top: 1px solid #707070;
		border-left: none;
	}
	.grobalnav .grobalnav-inner > li .grobalnav-inner-item {
		-webkit-box-pack: start;
			-ms-flex-pack: start;
				justify-content: flex-start;
		height: 50px;
		padding: 10px;
		background-color: #0077b3;
	}
	.grobalnav .grobalnav-inner > li .grobalnav-inner-item:hover {
		background-color: #0077b3;
	}
	.grobalnav .grobalnav-inner > li .grobalnav-inner-list {
		display: block;
		position: static;
		padding-top: 0;
	}
	.grobalnav .grobalnav-inner > li.is-sponly {
		display: block;
	}
}

.grobalnav_innerlist {
	position: relative;
	width: 100%;
	background-color: #0077b3;
}
.grobalnav_innerlist::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	display: inline-block;
	border-bottom: 10px solid #0077b3;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
	z-index: 100;
}
.grobalnav_innerlist > li {
	border-top: 1px solid #fff;
}
.grobalnav_innerlist > li:first-child {
	border-top: none;
}
.grobalnav_innerlist > li .grobalnav_innerlist-item {
	position: relative;
	display: block;
	min-height: 45px;
	padding: 12px 15px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
.grobalnav_innerlist > li .grobalnav_innerlist-item:hover {
	background-color: #005782;
	opacity: 1;
}
.grobalnav_innerlist > li .grobalnav_innerlist-item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-webkit-transform: translateY(-50%) rotate(45deg);
			transform: translateY(-50%) rotate(45deg);
}
.grobalnav_innerlist > li .grobalnav_innerlist-item .grobalnav_innerlist-item-text {
	margin-left: 20px;
}
@media (max-width: 768px) {
	.grobalnav_innerlist {
		border: none;
		border-top: 1px solid #707070;
	}
	.grobalnav_innerlist::before {
		content: none;
	}
	.grobalnav_innerlist > li {
		border-top: 1px solid #707070;
	}
	.grobalnav_innerlist > li .grobalnav_innerlist-item {
		background-color: #fff;
		color: #393939;
	}
	.grobalnav_innerlist > li .grobalnav_innerlist-item:hover {
		background-color: #fff;
	}
	.grobalnav_innerlist > li .grobalnav_innerlist-item::before {
		content: none;
	}
	.grobalnav_innerlist > li .grobalnav_innerlist-item .grobalnav_innerlist-item-text {
		margin-left: 0;
	}
}

/* ---------------------------------------------
*    footer
--------------------------------------------- */
.footer {
	background-color: #F8F8F8;
	border-top: 1px solid #707070;
	padding: 20px 0;
	margin-top: 60px;
}
.footer .footer-nav {
	width: 880px;
	margin: 0 auto;
}
.footer .footer-copyright {
	margin-top: 20px;
	padding: 10px 0;
	background-color: #fff;
	border-top: 1px solid #707070;
	font-size: 10px;
	text-align: center;
}
@media (max-width: 768px) {
	.footer {
		padding: 0;
		border-top: none;
	}
	.footer .footer-nav {
		display: none;
	}
}

.footernav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin-top: -50px;
}
.footernav > li {
	width: 25%;
	margin-top: 50px;
}
.footernav > li .footernav-header {
	padding-left: 10px;
	border-left: 5px solid #0077B3;
	font-size: 12px;
	font-weight: bold;
}
.footernav > li .footernav-header > a {
	text-decoration: none;
}
.footernav > li .footernav-body {
	margin-top: 10px;
	padding-left: 20px;
}
.footernav > li .footernav-body > li {
margin-top: 10px;
}
.footernav > li .footernav-body > li:first-child {
	margin-top: 0;
}
.footernav > li .footernav-body > li > a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}
.footernav > li .footernav-body > li > a::before {
	content: "-";
	display: inline-block;
	margin-right: 5px;
	vertical-align: text-top;
}

/* ---------------------------------------------
*    wrapper
--------------------------------------------- */
.wrapper {
	width: 1000px;
	margin: 0 auto;
	padding-top: 30px;
	background-color: #fff;
}
@media (max-width: 768px) {
	.wrapper {
		width: 100%;
		padding-top: 20px;
	}
}

/* ---------------------------------------------
*    section
--------------------------------------------- */
.section {
	width: 880px;
	margin: 60px auto 0;
}
.section:first-child {
	margin: 0 auto;
}
.section .section-header {
	position: relative;
	text-align: center;
	z-index: 1;
}
.section .section-header::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #0077b3;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	z-index: -1;
}
.section .section-header .section-header-text {
	display: inline-block;
	padding: 0 30px;
	background-color: #fff;
	color: #0077b3;
	font-size: 24px;
	font-weight: bold;
}
.section .section-body {
	margin-top: 30px;
}
.section .section-body:first-child {
	margin-top: 0;
}
.section .section-body .section-body-text {
	margin-top: 20px;
}
.section .section-body .section-body-text:first-child {
	margin-top: 0;
}
.section .section-body .section-body-item {
	margin-top: 60px;
}
.section .section-body .section-body-item:first-child {
	margin-top: 0;
}
.section .section-body .section-body-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: 25px;
}
.section .section-body .section-body-btn:first-child {
	margin-top: 0;
}
.section.section--gray {
	width: 100%;
	padding: 40px 0;
	background-color: #f8f8f8;
}
.section.section--gray .section-header {
	width: 880px;
	margin: 0 auto;
}
.section.section--gray .section-header .section-header-text {
	background-color: #f8f8f8;
}
.section.section--gray .section-body {
	width: 880px;
	margin: 30px auto 0;
}
@media (max-width: 768px) {
	.section {
		width: 100%;
		padding: 0 10px;
		margin: 40px auto 0;
	}
	.section .section-header .section-header-text {
		padding: 0 10px;
		font-size: 18px;
	}
	.section.section--gray {
		padding: 20px 10px;
	}
	.section.section--gray .section-header {
		width: 100%;
	}
	.section.section--gray .section-body {
		width: 100%;
	}
}

.section_sub {
	margin-top: 60px;
}
.section_sub:first-child {
	margin-top: 0;
}
.section_sub .section_sub-header {
	padding-left: 10px;
	border-left: 5px solid #0077B3;
	font-size: 18px;
	font-weight: bold;
}
.section_sub .section_sub-body {
	margin-top: 30px;
}
.section_sub .section_sub-body > strong {
	color: #EE0000;
    font-size: 16px;
    font-weight: bold;
}
.section_sub .section_sub-body .section_sub-body-item {
	margin-top: 15px;
}
.section_sub .section_sub-body .section_sub-body-item:first-child {
	margin-top: 0;
}
.section_sub .section_sub-body .section_sub-body-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: 20px;
}

.section_small {
	margin-top: 60px;
}
.section_small:first-child {
	margin-top: 0;
}
.section_small .section_small-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
.section_small .section_small-header .section_small-header-text {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	font-size: 18px;
	font-weight: bold;
}
.section_small .section_small-header::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background-color: #0077B3;
	border-radius: 50%;
}
.section_small .section_small-body {
	margin-top: 30px;
}

.section_contact {
	width: 880px;
	margin: 60px auto 0;
}
@media (max-width: 768px) {
	.section_contact {
		width: 100%;
		padding: 0 10px;
	}
}

/* ---------------------------------------------
*    contents
--------------------------------------------- */
.leadtext {
	margin-top: 30px;
	color: #0077B3;
	font-weight: bold;
}
.leadtext:first-child {
	margin-top: 0;
}
.notelist {
	margin-top: 30px;
	list-style: none;
}
.notelist:first-child {
	margin-top: 0;
}
.notelist > li {
	margin-top: 10px;
	font-size: 12px;
}
.notelist > li:first-child {
	margin-top: 0;
}

/* ---------------------------------------------
*    button
--------------------------------------------- */
.btn_spmenu {
	position: relative;
	width: 20px;
	height: 20px;
}
.btn_spmenu::before {
	position: absolute;
	top: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: #707070;
	border-radius: 2px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.btn_spmenu::after {
	position: absolute;
	bottom: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: #707070;
	border-radius: 2px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.btn_spmenu .btn_spmenu-text {
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #707070;
	border-radius: 2px;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.btn_spmenu.is-open::before {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
			transform: translateY(-50%) rotate(-45deg);
}
.btn_spmenu.is-open::after {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-135deg);
			transform: translateY(-50%) rotate(-135deg);
}
.btn_spmenu.is-open .btn_spmenu-text {
	opacity: 0;
}

.btn_faq {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px 15px;
	background-color: #288f00;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}
.btn_faq::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-image: url("images/icon_faq.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.btn_contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px 15px;
	background-color: #e86c42;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}
.btn_contact::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-image: url("images/icon_contact.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.btn_generic {
	position: relative;
	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;
	width: 220px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #ccc;
	text-decoration: none;
}
.btn_generic::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: solid 3px #0077B3;
	border-right: solid 3px #0077B3;
	-webkit-transform: translateY(-50%) rotate(45deg);
			transform: translateY(-50%) rotate(45deg);
}
.btn_generic .btn_generic-text {
	color: #0077B3;
	font-size: 12px;
	font-weight: bold;
}

.btn_transition {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	height: 60px;
	padding: 5px 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	text-decoration: none;
}
.btn_transition::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: solid 3px #0077B3;
	border-right: solid 3px #0077B3;
	-webkit-transform: translateY(-50%) rotate(45deg);
			transform: translateY(-50%) rotate(45deg);
}
.btn_transition .btn_transition-text {
	color: #0077B3;
	font-size: 14px;
	font-weight: bold;
}
.btn_transition.btn_transition--textcenter {
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}

/* ---------------------------------------------
*    form
--------------------------------------------- */
input[type="text"] {
	height: 25px;
	margin-top: 10px;
	padding: 5px 10px;
	border-radius: 4px;
	border: 1px solid #333;
	background-color: #fff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	cursor: pointer;
}
input[type="text"]:first-child {
	margin-top: 0;
}
input[type="text"]::-webkit-input-placeholder {
	color: #ccc;
}
input[type="text"]::-moz-placeholder {
	color: #ccc;
}
input[type="text"]:-ms-input-placeholder {
	color: #ccc;
}
input[type="text"]::-ms-input-placeholder {
	color: #ccc;
}
input[type="text"]::placeholder {
	color: #ccc;
}

input[type="mail"],
input[type="tel"] {
	height: 25px;
	padding: 5px 10px;
	border-radius: 4px;
	border: 1px solid #333;
	background-color: #fff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder {
	color: #ccc;
}
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder {
	color: #ccc;
}
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder {
	color: #ccc;
}
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder {
	color: #ccc;
}
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
	color: #ccc;
}

input[type="radio"] {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #333;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	cursor: pointer;
}
input[type="radio"]:checked {
	position: relative;
}
input[type="radio"]:checked::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: #0077b3;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}

.checkbox {
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
}
.checkbox span {
	flex: 1;
}
input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	margin-right: 10px;
	border: 1px solid #333;
	border-radius: 4px;
	background-color: #fff;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
	cursor: pointer;
}
input[type="checkbox"]:checked {
	position: relative;
}
input[type="checkbox"]:checked::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 5px;
	left: 0px;
	width: 50%;
	height: 4px;
	background-color: #0077b3;
	border-radius: 2px;
	-webkit-transform: rotateZ(-135deg);
			transform: rotateZ(-135deg);
}
input[type="checkbox"]:checked::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 6px;
	left: 4px;
	width: 78%;
	height: 4px;
	background-color: #0077b3;
	border-radius: 2px;
	-webkit-transform: rotateZ(-45deg);
			transform: rotateZ(-45deg);
}

textarea {
	padding: 5px 20px 5px 10px;
	border-radius: 4px;
	border: 1px solid #333;
	background-color: #fff;
	font-size: 12px;
	font-weight: bold;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	cursor: pointer;
}
textarea::-webkit-input-placeholder {
	color: #ccc;
}
textarea::-moz-placeholder {
	color: #ccc;
}
textarea:-ms-input-placeholder {
	color: #ccc;
}
textarea::-ms-input-placeholder {
	color: #ccc;
}
textarea::placeholder {
	color: #ccc;
}

label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	cursor: pointer;
}

select {
	height: 25px;
    min-width: 120px;
    padding: 5px 20px 5px 10px;
    border-radius: 4px;
    border: 1px solid #333;
    background-image: url(./images/icon-down.png);
    background-repeat: no-repeat;
    background-position: center right 5px;
    background-size: 10px 6px;
    background-color: #fff;
    font-size: 12px;
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.btn {
	margin-top: 30px;
}

.btn_submit {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	min-width: 200px;
	padding: 10px 15px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	background-color: #E86C42;
}

.btn_submit.btn_submit--blue {
	background-color: #00B0F0;
}

.btn_submit:disabled {
	opacity: .4;
}

.btn_cancel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
    padding: 10px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
	background-color: #ccc;
}

/* ---------------------------------------------
*    validation
--------------------------------------------- */
.ime-off {
	ime-mode:disable;
}
.ime-active {
	ime-mode:active;
}
.ime-inactive {
	ime-mode:inactive;
}
.error {
	color:red;
	font-size:80%;
}

/* ---------------------------------------------
*    table
--------------------------------------------- */
.table_fullsize {
	width: 100%;
	border: 1px solid #ccc;
}
.table_fullsize th {
	padding: 10px 20px;
	background-color: #EFEFEF;
	border: 1px solid #ccc;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.table_fullsize td {
	padding: 10px 20px;
	border: 1px solid #ccc;
	font-size: 14px;
	vertical-align: middle;
}
@media (max-width: 768px) {
	.table_fullsize th {
		padding: 5px;
	}
	.table_fullsize td {
		padding: 5px;
	}
}

/* 装飾
------------------------------------------------------------*/
.essential {
	color:#C00;
}

.btn {
	text-align:center;
}

.fontweight {
	font-weight: bold;
}

/* フォーム
------------------------------------------------------------*/
#present {
	width:300px;
	ime-mode:active;
}

#user_name
,#company_name
,#user_kana
,#user_staff
,#contact_address {
	width:200px;
	ime-mode: active;
}
#user_zip {
	width:120px;
	ime-mode: inactive;
}
#user_tel {
	width:120px;
	ime-mode: disabled;
}
#user_companynumber {
	width:120px;
	ime-mode: disabled;
}
#user_mail 
,#user_mail_2 {
	width: 90%;
	ime-mode: disabled;
}
#user_add
,#now_add
,#user_add2
,#user_add_2
,#now_add2
,#user_cancel_reason
,#user_ask
,#parking_purpose
,#purpose_place
,#receipt_name
,#user_note {
	width: 90%;
	ime-mode: active;
}

#user_age {
	width: 30px;
	ime-mode: disabled;
}

#parking_start_y
,#parking_end_y {
	width: 60px;
	ime-mode: inactive;
}

#parking_start_m
,#parking_start_d
,#parking_start_h
,#parking_end_m
,#parking_end_d
,#parking_end_h
,#cars_number_l
,#cars_number_m
,#cars_number_s
,#cars_number_o {
	width: 30px;
	ime-mode: disabled;
}

select+span {
	padding-left: 3px;
	padding-right: 6px;
}

#user_note {
	font-family: inherit;
	font-size: 90%;
	font-style: inherit;
	font-weight: inherit;
}

@media only screen and (max-width: 644px) {
	#user_name
	,#user_kana
	,#user_add
	,#user_add2
	,#user_mail
	,#user_mail_2
	,#user_ask
	,#now_add
	,#now_add2 
	,#present 
	 {
		width:90%;
	}
}

.dn{ display: none!important; }
.bggray{ background-color: #EEE; }

#usestdate{
	width:120px;
}

img.ui-datepicker-trigger {

    cursor: pointer;
    margin-left: 5px !important;
    margin-right: 10px !important;
    vertical-align: top;

}
table.ui-datepicker-calendar td,
table.ui-datepicker-calendar th {
	width:auto;
}

#user_teiki_number{
	width:60px;
}

.rules .rules-body {
	background-color: #fff;
	border: solid 1px #ccc;
	padding: 20px 25px;
}