body * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: none;
}

.wrapper {
	overflow: hidden;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
}

/* ------ */
/* header */
/* ------ */

.header {
	/* position: fixed; */
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 80px;
	background-color: #648ed3;
	color: #fff;
	z-index: 100;
}

.header__inner {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	padding-top: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	padding-right: 20px;
	transform: translate(-50%, 0);
	display: -webkit-box;
	-webkit-box-pack: justify;
	-webkit-box-align: center;
	display: -ms-flexbox;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header.open {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 110;
}

header h1 a:hover {
	opacity: 1;
}

.header__logo {
	height: 100%;
}

.header__logo__link {
	height: 100%;
}

.header__logo__img {
	height: 100%;
}

.header__nav {
	position: fixed;
	top: 0;
	right: -100%;
	/* right: 0%; */
	width: 100%;
	height: 100vh;
	background-color: green;
	transition: all 0.3s;
	z-index: 1;
}

.open .header__nav {
	right: 0%;
}

.header__lists {
	display: -webkit-box;
	-webkit-box-pack: end;
	-webkit-box-align: center;
	/*flexbox*/
	display: -ms-flexbox;
	-ms-flex-pack: end;
	-ms-flex-align: center;
	/*flex*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	margin: 0;
	padding: 0;
	padding-top: 80px;

	font-size: 23px;
	font-weight: bold;
	list-style: none;
}

.header__list {
	margin-top: 10px;
	/* margin-left: 10px; */
}

.header__link {
	/* color: #fff; */
	color: #002266;
	display: block;
	position: relative;
	line-height: 1.25;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border-radius: 100px;
	/* box-shadow: rgba(0, 0, 0, 1) 0px 2px 0px 0px; */
	border-bottom: 2px solid #002266;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
	background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
	background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	min-width: 234px;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__link:hover {
	opacity: 1;
	color: #0e79da;
	box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 6px 3px;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);

}

.header__link:after {
	content: "";
	position: relative;
	top: -1px;
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 9px;
	margin-left: 0.5rem;
	background: url(images/list_blue.png) no-repeat 0 0;
	background-size: 6px 9px;
}

/* .header__nav {
	display: none;
} */

@media print,
screen and (min-width: 1024px) {
	.header {
		display: -webkit-box;
		-webkit-box-pack: justify;
		-webkit-box-align: center;
		/*flexbox*/
		display: -ms-flexbox;
		-ms-flex-pack: justify;
		-ms-flex-align: center;
		/*flex*/
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 115px;
	}

	.header__nav {
		position: relative;
		top: 0;
		right: 0%;
		width: auto;
		height: auto;
		padding-top: auto;
		background-color: transparent;
	}

	.header__lists {
		list-style: none;
		margin: 0;
		padding: 0;
		font-size: 23px;
		font-weight: bold;
		display: -webkit-box;
		-webkit-box-pack: end;
		-webkit-box-align: center;
		display: -ms-flexbox;
		-ms-flex-pack: end;
		-ms-flex-align: center;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-direction: row;
	}

	.header__link {
		display: inline-block;
		min-width: auto;
	}
}

/* ---------- */
/* hum-btn*/
/* ---------- */
.hum-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 120;
	display: block;
}

.hum-btn__link {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	width: 54px;
	height: 54px;
	padding: 18px 10px;
	background-color: #FFD200;
	transition: all 0.3s;
	cursor: pointer;

}

.hum-btn__link:hover {
	opacity: 1;
}

.hum-btn__link.open {
	opacity: inherit;
	justify-content: center;
}

.hum-btn__line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #222;
	transition: all 0.3s;
}

/* .hum-btn__link:hover .hum-btn__line01 {transform: rotate(45deg);} */
.hum-btn__link.open .hum-btn__line01 {
	transform-origin: center 2px;
	transform: rotate(45deg) translateY(2px);
	/* transform: translateY(2px); */
}

.hum-btn__link.open .hum-btn__line02 {
	transform-origin: center center;
	background-color: #fff;
	width: 0;
	/* background-color: #0e79da; */
	/* transform: rotate(90deg) ; */
}

.hum-btn__link.open .hum-btn__line03 {
	transform-origin: center -1px;
	transform: rotate(-45deg) translateY(-2px);
	/* transform: translateY(-2px); */
}

@media print,
screen and (min-width: 1024px) {
	.hum-btn {
		display: none;
	}
}

.main {
	background-color: #fff;
	padding-top: 80px;
	box-shadow: none;
}

@media print,
screen and (min-width: 1024px) {
	.main {
		padding-top: 115px;
		box-shadow: 0 0 5px #000;
	}
}

/* ----- */
/* Bread */
/* ----- */
#Bread {
	width: 100%;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ----------------- */
/* MainContentsInner */
/* ----------------- */
.MainContentsInner {
	width: 100%;
}

/* ----------------- */
/* form */
/* ----------------- */
TableStyle1

TableStyle1  td,TableStyle1 th {
	padding: 16px;
}

#ContactArea1 {
	border: 1px solid #999;
	border-top: none;
	background: #fff;
	padding: 2rem 1rem 1rem 1rem;
	/*box*/
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	/*flexbox*/
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	/*flex*/
	display: flex;
	justify-content: center;
	align-items: center;
}

#ContactArea2 {
	/* text-align: center; */
	display: flex;
	flex-direction: column;
	gap: 1.4em;
	margin-top: 2rem;
}

#ContactArea2 input {
	display: block;
	font-size: 16px;
	width: 10rem;
	/* margin: 0 0.15rem; */
	margin: 0 auto;
	padding: 0.5rem;
	/* background: ; */
	background-color: #ccc;
	border: none;
	border-radius: 0;
	color: #000;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: bold;
	cursor: pointer;
}
#ContactArea2 input:hover{
	background-color: #9c9c9c;
}

.screen-reader-response{
	font-weight: bold;
	margin-bottom: 20px;
}
.screen-reader-response ul li{
	list-style: inside;
	display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}
  
.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
  
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}
  
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}
  
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}
  
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

.wpcf7-not-valid-tip{
	color: #dc3232;
}
.wpcf7-response-output.wpcf7-display-none{
	display: none;
}

.grecaptcha-badge {
  bottom: 95px !important;
}

#ContactArea2 a:hover {
	opacity: 1;
}

.contact_form {
	max-width: 100%;
}

.contact_form__table input {
	width: 100%;
	padding: 0.4em;
	font-size: 16px;
}

.contact_form__table textarea {
	width: 100%;
	height: 100%;
	display: block;
	min-height: 6em;
}

table.TableStyle1,TableStyle1 tbody,TableStyle1 tr,TableStyle1 td,TableStyle1 th {
	text-align: left;
}

.reset {
	margin-top: 0.5em;
}

@media print,
screen and (min-width: 1024px) {
	#ContactArea2 {
		justify-content: center;
		align-items: center;
		flex-direction: row;
		gap: 1em;
	}

	#ContactArea2 input {
		margin: 0;
		display: block;
		/* margin: 0 0.15rem; */
	}
	/* .contact_form__table__box	{
		display: inline-block;
		width: 50%;
	}
	.contact_form__table__box th,
	.contact_form__table__box td{
		display: block;
		width: 100%;
	} */
}
@media print,
screen and (max-width: 1023.9px) {
	#PageTop {
		right: 5px;
	}

	#PageTop a {
		width: 40px;
		height: 40px;
	}
	#PageTop img {
		width: 100%;
		height: 100%;
	}

	#ContactArea1 {
		border: none;
	}
	.contact_form__table input{
		padding: 0.75rem 1.25rem;
		border: none;
	}
	.contact_form__table input:focus,	.contact_form__table textarea:focus{
		outline: #222 1px solid;
	}

	.contact_form__table textarea {
		border: 0;
	}

	/* tr:not(:first-of-type) {margin-top: 0.5em;} */
	table,tbody,tr,td,th {
		display: block;
	}

	.TableStyle1 th, .TableStyle1 td {
		border: none;
	}
	.TableStyle1 th{
		padding: 1.5rem 0 0.4rem 0;
		background-color: transparent;
	}
	.TableStyle1 td{
		padding: 0;
		border: 1px solid #ccc;
	}
#ContactArea1 {
	background-color: transparent;
}
}