@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.bg_white {
	background: #fff;
	max-width: 1000px;
	margin: 0 auto;
}
.sp {
	display: none;
}
.area {
	padding: 50px 30px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
}

/* header
-------------------------------------------------------*/
.lang_box {
	background: #f0eeee;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 0 10px;
}
.lang_box .ttl a{
	color: #04508c;
	font-size: 1.3rem;
	border: 1px solid #04508c;
	padding: 2px 15px;
	line-height: 1;
	margin: 0 20px 0 0;
}
.lang_box ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.3rem;
	letter-spacing: 0.1rem;
}
.lang_box ul .slash {
	margin: 0 5px;
}
.lang_box ul .on {
	border-bottom: 2px solid #04508c;
}
@media screen and (max-width:1000px) {
	.lang_box {
		padding: 20px 10px 10px;
	}
}
@media screen and (max-width:768px) {
	.lang_box {
		padding: 10px;
		background: #fff;
	}
	.lang_box .ttl {
		font-size: 1.2rem;
		padding: 5px 10px;
		margin: 0 15px 0 0;
	}
}

/* nav
-------------------------------------------------------*/
#nav_pc ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#nav_pc ul li {
	width: 25%;
	background: #04508c;
	text-align: center;
	border-bottom: 5px solid #013e6e;
}
#nav_pc ul li:not(:last-child) {
	border-right: 1px solid #013e6e;
}
#nav_pc ul li a {
	display: block;
	color: #fff;
	letter-spacing: 0.1rem;
	padding: 15px 0;
}
#nav_pc.index li {
	width: 33.3%;
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 13px;
		left: 10px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #04508c;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
		background: #fff;
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		background: #04508c;
		left: -100%;
		z-index: 998;
		transition: .5s;
		padding: 45px 0;
		box-sizing: border-box;
	}
	#nav_sp .nav_cont.active {
		left: 0;
	}
	#nav_sp .nav_cont ul li {
		width: 100%;
	}
	#nav_sp .nav_cont ul li:not(:last-child) {
		border-bottom: 1px solid #023761;
	}
	#nav_sp .nav_cont ul li a {
		background: #04508c;
		color: #fff;
		display: block;
		font-weight: 700;
		letter-spacing: 0.1rem;
		padding: 20px;
	}
}

/* breadcrumb
-------------------------------------------------------*/
.breadcrumb {
	background: #f3f3f3;
	padding: 10px 20px
}
.breadcrumb ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 1.2rem;
}
.breadcrumb ul li:not(:last-child) {
	margin: 0 40px 0 0;
	position: relative;
}
.breadcrumb ul li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	right: -23px;
	top: 1px;
}
@media screen and (max-width:768px) {
	.breadcrumb ul {
		font-size: 1rem;
	}
	.breadcrumb ul li:not(:last-child) {
		margin: 0 20px 0 0;
		position: relative;
	}
	.breadcrumb ul li:not(:last-child)::after {
		position: absolute;
		display: block;
		content: ">";
		right: -15px;
		top: 1px;
	}
}

/* index
-------------------------------------------------------*/
#index #area01.area {
	padding: 50px 30px 0;
}
.index_menu {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.index_menu li {
	width: 31%;
}
.index_menu li a {
	position: relative;
	display: block;
}
.index_menu li .img img {
	border-radius: 10px;
}
.index_menu li .txt_box {
	background: rgba(0,0,0,0.6);
	border-radius: 0 0 10px 10px;
	position: absolute;
	bottom: 0;
	color: #fff;
	padding: 15px 10px;
	line-height: 1.4;
}
.index_menu li .txt_box .ttl {
	letter-spacing: 0.1rem;
	margin: 0 0 5px;
	font-size: 1.4rem;
}
.index_menu li .txt_box .txt {
	font-size: 1.2rem;
}
@media screen and (max-width:768px) {
	#index #area01.area {
		padding: 40px 20px 0;
	}
	.index_menu {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.index_menu li {
		width: 90%;
	}
	.index_menu li:not(:last-child) {
		margin: 0 0 30px;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	background: url(../img/common/footer.png)no-repeat center bottom/cover;
}
#footer.area {
	padding: 150px 30px 50px;
}
#footer .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#footer .contact_box {
	width: 350px;
	border: 1px solid #fff;
	background: rgba(4,80,140,0.72);
	line-height: 1;
	box-sizing: border-box;
}
#footer .contact_box a {
	color: #fff;
	display: block;
	padding: 20px;
}
#footer .contact_box .ttl {
	margin: 0 0 15px;
	letter-spacing: 0.1rem;
	position: relative;
}
#footer .contact_box .ttl span {
	position: relative;
	padding: 0 0 0 30px;
}
#footer .contact_box .ttl span::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/icon_mail.png)no-repeat left center/23px 16px;
	width: 23px;
	height: 16px;
	left: 0;
	top: 5px;
}
#footer .contact_box .ttl::after {
	position: absolute;
	display: block;
	content: "";
	width: 160px;
	height: 1px;
	background: #fff;
	left: 148px;
	bottom: 7px;
}
#footer .contact_box .txt {
	font-size: 1.2rem;
}
#footer .logo_box .logo {
	margin: 0 0 10px;
}
#footer .logo_box .logo img {
	max-width: 274px;
}
#footer .copy {
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.1rem;
	text-align: right;
}
@media screen and (max-width:768px) {
	#footer {
		background: url(../img/common/footer.png)no-repeat right bottom/cover;
	}
	#footer.area {
		padding: 100px 20px 50px;
	}
	#footer .inner {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#footer .contact_box {
		width: 100%;
		margin: 0 0 40px;
	}
	#footer .contact_box .ttl::after {
		width: 140px;
		left: 140px;
	}
	#footer .logo_box .logo {
		text-align: center;
	}
	#footer .logo_box .logo img {
		max-width: 220px;
	}
	#footer .copy {
		text-align: center;
	}
}


/* lower
-------------------------------------------------------*/
.lower .visual_img {
	background: url(../img/common/visual_lower.png)no-repeat right center/cover;
	padding: 20px;
}
.lower .visual_img img {
	max-width: 295px;
}
@media screen and (max-width:768px) {
	.lower .visual_img {
		background: none;
		padding-top: 0;

	}
	.lower .visual_img img {
		max-width: 200px;
	}
}

.lower .area {
	padding: 0 0 50px;
}
@media screen and (max-width:768px) {

}

.lower_column_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 40px 30px;
}
.page_nav_box {
	min-width: 200px;
	margin-right: 50px;
}
.page_nav_box ul li {
	border-bottom: 1px solid #c8c9c9;
}
.page_nav_box ul li:first-child {
	border-top: 1px solid #c8c9c9;
}
.page_nav_box ul li a {
	padding: 15px 0 15px 20px;
	display: block;
	position: relative;
}
.page_nav_box ul li a::before {
	position: absolute;
	display: block;
	content: "";
	width: 12px;
	height: 1px;
	background: #04508c;
	left: 0;
	top: 28px;
}
.lower_column_box main {
	width: 80%;
}
.fixed {
    position: fixed;
    top: 30px;
    z-index: 998;
	width: 200px;
}
@media screen and (max-width:768px) {
	.lower_column_box {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 40px 20px;
	}
	.lower_column_box main {
		width: 100%;
	}
}

.img_txt_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.img_txt_box .img {
	width: 40%;
	margin: 0 30px 0 0;
}
.img_txt_box .txt_box {
	width: 60%;
}
@media screen and (max-width:768px) {
	.img_txt_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.img_txt_box .img {
		width: 100%;
		margin: 0 0 20px;
	}
	.img_txt_box .txt_box {
		width: 100%;
	}
}

/* ttl,txt
-------------------------------------------------------*/
.main_ttl {
	font-size: 2.6rem;
	border-bottom: 1px solid #c8c9c9;
	position: relative;
	padding: 0 0 30px;
	margin: 0 0 30px;
	line-height: 1;
	letter-spacing: 0.1rem;
}
.main_ttl::after {
	position: absolute;
	display: block;
	content: "";
	width: 100px;
	height: 1px;
	background: #04508c;
	left: 0;
	bottom: -1px;
}
@media screen and (max-width:768px) {
	.main_ttl {
		font-size: 1.8rem;
		padding: 0 0 20px;
		margin: 0 0 20px;
	}
	.main_ttl::after {
		width: 70px;
	}
}

.sub_ttl {
	background: #04508c;
	color: #fff;
	letter-spacing: 0.1rem;
	position: relative;
	padding: 10px 10px 10px 30px;
	margin: 0 0 20px;
}
.sub_ttl::before {
	position: absolute;
	display: block;
	content: "";
	width: 12px;
	height: 1px;
	background: #fff;
	left: 10px;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (max-width:768px) {
}

.ttl01 {
	font-size: 1.8rem;
	font-weight: 700;
	border-bottom: 1px solid #c8c9c9;
	padding: 0 0 10px;
	margin: 0 0 10px;
	position: relative;
}
.ttl01::after {
	position: absolute;
	display: block;
	content: "";
	width: 200px;
	height: 1px;
	background: #04508c;
	left: 0;
	bottom: -1px;
}
@media screen and (max-width:768px) {
	.ttl01 {
		font-size: 1.6rem;
	}
	.ttl01::after {
		width: 100px;
	}
}

.ttl02 {
	font-weight: 700;
	margin: 0 0 10px;
}
.ttl02 span {
	color: #04508c;
}
@media screen and (max-width:768px) {

}

.top_txt {
	margin-bottom: 30px;
	font-size: 1.8rem;
}
.sub_txt {
	margin-bottom: 30px;
}
@media screen and (max-width:768px) {
	.top_txt {
		font-size: 1.6rem;
	}
}

/* btn
-------------------------------------------------------*/
.btn01 {
	font-size: 1.4rem;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
	margin: 20px 0 0;
	display: inline-block;
	padding: 10px 15px;
}
@media screen and (max-width:768px) {

}

.btn02 {
	margin: 40px 0 0;
	border-bottom: none!important;
}
.btn02 a {
	background: #04508c;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	border-radius: 5px;
	line-height: 1.4;
	padding: 10px!important;
}
@media screen and (max-width:768px) {

}

.zoom {
	position: relative;
}
.zoom::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/icon_zoom.png)no-repeat right bottom/50px 50px;
	width: 50px;
	height: 50px;
	right: 20px;
	bottom: 20px;
}
@media screen and (max-width:768px) {
	.zoom::after {
		background: url(../img/common/icon_zoom.png)no-repeat right bottom/35px 35px;
		width: 35px;
		height: 35px;
		right: 10px;
		bottom: 10px;
	}
}

/* table
-------------------------------------------------------*/
.table01 {
	border: 1px solid #c8c9c9;
	width: 100%;
}
.table01 tr {
	border-bottom: 1px solid #c8c9c9;
}
.table01 th {
	background: #e8e5e5;
	text-align: center;
	width: 180px;
	padding: 10px;
	border-right: 1px solid #c8c9c9;
	vertical-align: middle;
}
.table01 td {
	padding: 10px 20px;
}
@media screen and (max-width:768px) {
	.table01 th {
		width: 80px;
	}
}

.table02 tr {
	border-bottom: 20px solid #fff;
	line-height: 1.2;
}
.table02 tr th  {
	background: #363535;
	color: #fff;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	font-size: 1.4rem;
	width: 130px;
}
.table02 tr td {
	padding: 10px 0 10px 20px;
	vertical-align: middle;
}
@media screen and (max-width:768px) {
	.table02 tr {
		border-bottom: 10px solid #fff;
	}
	.table02 tr th  {
		padding: 10px;
		font-size: 1.3rem;
		width: 100px;
	}
	.table02 tr td {
		font-size: 1.4rem;
	}
}

.table03 dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 0 0 10px;
}
.table03 dt {
	background: #f0eeee;
	min-width: 120px;
	text-align: center;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80%;
}
.table03 dd {
	padding: 0 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width:768px) {

}

.table04 {
	width: 100%;
	border: 1px solid #d6d6d6;
}
.table04 tr {
	border-bottom: 1px solid #d6d6d6;
	font-weight: 400;
}
.table04 th {
	background: #f8f6f6;
	padding: 5px;
	text-align: left;
	border-right: 1px solid #d6d6d6;
}
.table04 td {
	padding: 5px;
	border-right: 1px solid #d6d6d6;
}
@media screen and (max-width:768px) {
	.table04 {
		font-size: 1.2rem;
	}
	.table04 tr {
		border-bottom: 1px solid #d6d6d6;
		font-weight: 400;
	}
	.table04 th {
		background: #f8f6f6;
		padding: 5px;
		text-align: left;
		border-right: 1px solid #d6d6d6;
	}
	.table04 td {
		padding: 5px;
		border-right: 1px solid #d6d6d6;
	}
}


/* company
-------------------------------------------------------*/
.address_list li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.address_list li:not(:last-child) {
	margin: 0 0 10px;
}
.address_list li .img {
	margin: 0 20px 0 0;
	width: 30%;
}
.address_list li .txt_box {
	width: 70%;
}
.address_list li .txt_box dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
.address_list li .txt_box dl dt {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 5px;
}
.address_list li .txt_box dl dd a {
	background: #04508c;
	color: #fff;
	font-size: 1.2rem;
	display: block;
	padding: 3px 10px;
	border-radius: 20px;
}
.address_list li .map {
	margin: 20px 0 0;
	width: 100%;
}

.address_list li.map_box {
	margin-bottom: 50px;
}
@media screen and (max-width:768px) {
	.address_list li:not(:last-child) {
		margin: 0 0 10px;
	}
	.address_list li .img {
		width: 35%;
	}
	.address_list li .txt_box {
		width: 65%;
	}
	.address_list li .txt_box dl {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: space-between;
	}
	.address_list li .txt_box dl dt {
		font-size: 1.6rem;
	}
	.address_list li .txt_box dl dd a {
		font-size: 1rem;
	}

	.address_list li.map_box {
		margin-bottom: 50px;
	}
}

.company_list li {
	border: 1px solid #c8c9c9;
	padding: 15px 20px;
	letter-spacing: 0.1rem;
}
.company_list li:not(:last-child) {
	margin: 0 0 20px;
}
.company_list li .txt {
	margin: 0 0 10px;
}
.company_list li dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.company_list li dl dt {
	font-size: 1.4rem;
	background: #04508c;
	width: 125px;
	padding: 10px 0;
	line-height: 1;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
	margin: 0 20px 0 0;
}
@media screen and (max-width:768px) {
	.company_list li {
		padding: 15px;
	}
	.company_list li dl {
		align-items: flex-start;
		justify-content: flex-start;
	}
	.company_list li dl dt {
		font-size: 1.2rem;
		min-width: 100px;
		width: 100px;
		padding: 10px 0;
		margin: 0 15px 0 0;
	}
	.company_list li dl dd {
		padding: 3px 0 0;
	}
}

#company #area04 .txt_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#company #area04 .txt_box .img {
	width: 30%;
	margin: 0 20px 0 0;
}
#company #area04 .txt_box .txt {
	width: 70%;
}
@media screen and (max-width:768px) {
	#company #area04 .txt_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#company #area04 .txt_box .img {
		width: 40%;
		margin: 0 0 20px;
	}
	#company #area04 .txt_box .txt {
		width: 100%;
	}
}


/* business
-------------------------------------------------------*/
.business_list li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid #d6d6d6;
	margin: 0 0 20px;
	padding: 0 0 20px;
}
.business_list li .img {
	width: 30%;
	margin: 0 20px 0 0;
}
.business_list li dl {
	width: 70%;
}
.business_list li dl dt {
	font-size: 1.8rem;
	font-weight: 700;
	padding: 0 0 10px;
	margin: 0 0 10px;
	position: relative;
}
.business_list li dl dt::after {
	position: absolute;
	display: block;
	content: "";
	width: 50px;
	height: 1px;
	background: #04508c;
	left: 0;
	bottom: 0;
}
.business_list li dl dd {
	font-size: 1.4rem;
}
@media screen and (max-width:768px) {
	.business_list li .img {
		width: 25%;
		margin: 0 15px 0 0;
	}
	.business_list li dl {
		width: 75%;
	}
	.business_list li dl dt {
		font-size: 1.6rem;
	}
	.business_list li dl dt::after {
		width: 40px;
	}
	.business_list li dl dd {
		font-size: 1.3rem;
	}
}

#business .map_img {
	margin: 50px 0;
}
@media screen and (max-width:768px) {
	#business .map_img {
		margin: 30px 0;
	}
}

.base_list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.base_list li {
	width: 19.2%;
	margin: 0 1% 30px 0;
}
.base_list li:nth-child(5n) {
	margin: 0 0 30px;
}
.base_list li .ttl {
	text-align: center;
	font-size: 1.4rem;
	margin: 10px 0 0;
	line-height: 1;
}
@media screen and (max-width:768px) {
	.base_list {
		display: flex;
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.base_list li {
		width: 30%;
		margin: 0 5% 20px 0;
	}
	.base_list li:nth-child(5n) {
		margin: 0 5% 20px 0;
	}
	.base_list li:nth-child(3n) {
		margin: 0 0 20px;
	}
}

.business_list02 {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 50px 0 0;
}
.business_list02 li {
	width: 48%;
	margin: 0 4% 20px 0;
	position: relative;
}
.business_list02 li:nth-child(2n) {
	margin: 0 0 20px;
}
.business_list02 li img {
	border-radius: 10px;
}
.business_list02 li .ttl {
	text-align: center;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 10px;
	border-radius: 0 0 10px 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.business_list02 {
		margin: 30px 0 0;
	}
	.business_list02 li .ttl {
		padding: 5px;
	}
}




/* contact
-------------------------------------------------------*/
#contact {
	padding: 50px 30px;
}
#contact #area01 ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#contact #area01 ul li:not(:last-child) {
	margin: 0 40px 0 0;
}
#contact #area01 ul li dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	line-height: 1;
}
#contact #area01 ul li dt {
	font-size: 1.4rem;
	font-weight: 500;
	border: 1px solid #d6d6d6;
	padding: 10px;
	margin: 0 20px 0 0;
}
#contact #area01 ul li dd {
	font-size: 2rem;
	font-weight: 500;
}
#contact .table_temp {
	width: 100%;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 270px;
	text-align: left;
	line-height: 1.4;
	padding: 20px;
}
#contact tr th b {
	display: block;
	position: relative;
}
#contact tr td {
	padding: 20px 0 20px 25px;
}
#contact tr.hissu th b::after {
	color: #fff;
	font-size: 1.2rem;
	width: 60px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 2px;
}
#contact tr.hissu th b::after {
	content: "required";
	background: #dc0101;
}
/* contact_after */
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	background-color: #f0eeee;
	border: 1px solid #d6d6d6;
}
#contact input[type="text"],
#contact select {
	height: 50px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label {
	display: block;
	margin: 0 0 10px;
	line-height: 1.3;
	border: 1px solid #d6d6d6;
	padding: 10px 20px;
}
#contact .radio_area label:last-child  {
	margin: 0;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #979899;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 270px;
	height: 50px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	color: #fff;
	line-height: 1;
    text-align: center;
	letter-spacing: 0.1rem;
	border-radius: 5px;
}
#contact .form_btn01 {
	background: #04508c;
}
#contact .form_btn02 {
	background: #333;
}
/* table_temp end */
@media screen and (max-width:768px) {
	#contact {
		padding: 40px 20px;
	}
	#contact #area01 ul {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#contact #area01 ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#contact .table_temp {
		width: 100%;
	}
	#contact tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
	#contact tr>* {
		display: table-cell;
		vertical-align: middle;
		box-sizing: border-box;
		line-height: 1;
	}
	#contact tr th {
		width: 100%;
		padding: 10px 0;
	}
	#contact tr th b {
		display: block;
		position: relative;
	}
	#contact tr td {
		padding: 20px 0;
	}
	#contact tr.hissu th b::after {
		color: #fff;
		font-size: 1.2rem;
		width: 65px;
		height: 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		border-radius: 3px;
	}
	#contact tr.hissu th b::after {
		content: "required";
		background: #dc0101;
	}
	
	#contact.area {
		padding: 20px 20px 100px;
	}
	/* table_temp start */
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
		padding: 10px 0;
		border: none;
	}
	#contact tr td {
		padding: 10px 0 20px;
	}
	#contact .s_left span, #contact .s_right span {
		margin: 0 5px 0 0;
	}	
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
		padding: 10px;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	#contact input[type="text"], #contact select {
		height: 40px;
	}
	/* table_temp end */
}


/* footer
-------------------------------------------------------*/

.footer.area {
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer_logo {
	max-width: 150px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.footer_list {
	display: flex;
	justify-content: center;
}

.footer_list li {
	margin-left: 10px;
	margin-right: 10px;
}

@media screen and (max-width:768px) {

}


/* margin padding
-------------------------------------------------------*/
.pb0 {
	padding-bottom: 0!important;
}
.mb50 {
	margin-bottom: 50px;
}



/* english
-------------------------------------------------------*/
.page_nav_box {
  max-width: 200px;
}
#footer .contact_box .txt {
	line-height: 1.2;
}
.company_list li dl dt {
	min-width: 125px;
}
.table02 tr td .en_caution {
	font-size: 1.4rem;
	margin-top: 5px;
	display: block;
}
.table03 dt {
	min-width: 165px;
	max-width: 165px;
}

.contact_caution {
	margin-bottom: 40px;
	font-size: 90%;
}

/* privacy
-------------------------------------------------------*/
#privacy {
  padding: 50px 30px;
}
.list_privacy li:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width:768px) {

}



.pp_link {
	text-align: right;
	margin-bottom: 10px;
}

.pp_link a {
	color: #fff;
	font-size: 1.2rem;
	position: relative;
  padding-left: 1.5em;	
}

.pp_link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.4em;
  transform: translateY(-35%);
  width: 0;
  height: 0;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.6em solid white; /* 白い三角形 */
}

@media screen and (max-width:768px) {
.pp_link {
	text-align: center;
}
}