@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.white {
	color: #fff;
}
.area {
	padding: 100px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ttl01 {
	font-size: 310%;
	font-weight: 700;
	text-align: center;
	margin: 0 0 25px;
}
.ttl01 span {
	color: #848282;
}
.ttl01.size_s {
	font-size: 160%;
	margin: 0 0 15px;
}
.ttl02 {
	text-align: center;
	font-weight: 500;
	margin: 0 0 60px;
	line-height: 1.5;
}
.btn_more {
	color: #fff;
	width: 200px;
	background: #333333;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 220%;
		margin: 0 0 15px;
	}
	.ttl01.size_s {
		font-size: 140%;
		margin: 0 0 5px;
	}
	.ttl02 {
		margin: 0 0 40px;
	}
}


/* header
-------------------------------------------------------*/
/* nav */
#header #nav_pc {
	max-width: 1200px;
	margin: 0 auto;
	background: #333333;
	border-top: 5px solid #848282;
	position: fixed;
	width: 100%;
	box-sizing: border-box;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 99;
}
#header #nav_pc ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
}
#header #nav_pc ul li {
	width: 14.28%;
	text-align: center;
}
#header #nav_pc ul li:not(:last-child) {
	border-right: 1px solid  #acabab;
}
#header #nav_pc ul li a {
	color: #fff;
	padding: 15px 10px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
#header #nav_pc ul li.logo {
	display: flex;
	align-items: center;
	justify-content: center;
}
#header #nav_pc ul li.logo img {
	max-width: 121px;
}
#header #nav_pc ul li a .jp {
	font-size: 90%;
	font-weight: 500;
	margin: 0 0 10px;
	line-height: 1.2;
}
#header #nav_pc ul li a .roboto {
	color: #acabab;
	font-size: 80%;
}
@media screen and (max-width:990px) {
	#header #nav_pc ul li a {
		padding: 15px 5px;
	}
	#header #nav_pc ul li a .jp {
		font-size: 70%;
	}
	#header #nav_pc ul li a .roboto {
		font-size: 70%;
	}
}
@media screen and (max-width:768px) {
	#nav_sp {
		background: #333;
		width: 100%;
		height: 60px;
		position: fixed;
		top: 0;
		z-index: 999;
		padding: 10px;
		box-sizing: border-box;
		border-top: 3px solid #848282;
	}
	#nav_sp .logo {
		display: inline-block;
		/*display: flex;*/
		align-items: center;
		justify-content: flex-start;
		height: 100%;
	}
	#nav_sp .logo img {
		max-width: 120px;
	}
	#btn_nav {
		position: fixed;
		top: 20px;
		right: 10px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #fff;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		background: #fff;
		transform: translateY(8px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-225deg);
	}
	#nav_sp nav {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp nav {
		overflow: auto;
		background: #848282;
		right: -100%;
		z-index: 998;
		transition: .5s;
		top: 60px;
		box-sizing: border-box;
	}
	#nav_sp nav.active {
		right: 0;
	}
	#nav_sp nav ul li  {
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	#nav_sp nav a {
		color: #fff;
		padding: 20px;
		display: block;
	}
}

/* visual */
#header.index {
	background: url("../img/index/visual_bg.png")no-repeat center/cover;
}
#header.index.area {
	padding: 230px 20px 130px;
}
#header.index .visual_txt01 {
	text-align: center;
	font-size: 560%;
	font-weight: 700;
	margin: 0 0 40px;
}
#header.index .visual_txt01 span {
	color: #838181;
}
#header.index .txt01 {
	text-align: center;
	font-weight: 500;
	font-size: 120%;
	line-height: 1.7;
	margin: 0 0 40px;
}
#header.index .txt02 {
	text-align: center;
	font-weight: 700;
	font-size: 180%;
}
@media screen and (max-width:768px) {
	#header.index {
		background: url("../img/index/visual_sp.png")no-repeat center/cover;
	}
	#header.index.area {
		padding: 120px 20px 80px;
	}
	#header.index .visual_txt01 {
		text-align: center;
		font-size: 220%;
		margin: 0 0 30px;
	}
	#header.index .txt01 {
		font-size: 90%;
		margin: 0 0 30px;
	}
	#header.index .txt02 {
		font-size: 150%;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: url("../img/common/bg_footer.png")no-repeat center/cover;
}
#footer .inner {
	max-width: 760px;
}
#footer.area {
	padding: 70px 20px 110px;
}
#footer a {
	color: #fff;
}
#footer .logo {
	text-align: center;
	margin: 0 0 20px;
}
#footer .logo img {
	max-width: 150px;
}
#footer .txt {
	text-align: center;
	font-size: 110%;
	font-weight: 700;
	margin: 0 0 50px;
}
#footer .txt span {
	color: #333333;
}
#footer .nav_box {
	margin: 0 0 70px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	font-size: 90%;
	font-weight: 500;
}
#footer .nav_box ul {
	width: 30%;
	border-top: 1px solid #fff;
	padding: 30px 0 0;
}
#footer .nav_box ul li:not(:last-child) {
	margin: 0 0 20px;
}
#footer .copy {
	text-align: center;
	font-size: 80%;
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 50px 20px 70px;
	}
	#footer .logo {
		margin: 0 0 10px;
	}
	#footer .logo img {
		max-width: 120px;
	}
	#footer .txt {
		font-size: 100%;
		margin: 0 0 40px;
	}
	#footer .nav_box {
		margin: 0 0 40px;
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		font-size: 90%;
	}
	#footer .nav_box ul {
		width: 100%;
		border-top: none;
		padding: 0;
	}
	#footer .nav_box ul li {
		margin: 0 0 20px;
	}
}

/* index
-------------------------------------------------------*/
#index #news .inner {
	max-width: 800px;
}
#index #news ul li {
	padding: 0 0 20px;
	border-bottom: 1px solid rgba(241,241,241,0.2);
}
#index #news ul li:not(:last-child) {
	margin: 0 0 20px;
}
#index #news dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#index #news dl dt {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#index #news dl dt .tag {
	background: #333333;
	width: 90px;
	height: 30px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80%;
	margin: 0 20px 0 0;
}
#index #news dl dt .date {
	font-weight: 500;
	margin: 0 40px 0 0;
}
#index #news dl dd {
	font-weight: 500;
}
@media screen and (max-width:768px) {
	#index #news dl {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		font-size: 90%;
	}
	#index #news dl dt {
		margin: 0 0 10px;
	}
	#index #news dl dt .tag {
		width: 80px;
		height: 25px;
		margin: 0 15px 0 0;
	}
	#index #news dl dt .date {
		margin: 0;
	}
}

#index #service {
	background: url("../img/index/bg_service.png")no-repeat center/cover;
}
#index #service.area {
	padding: 100px 20px 180px;
}
#index #service ul li {
	background: #fff;
	width: 55%;
	padding: 0 0 50px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	margin: 0 0 -60px;
}
#index #service ul li:nth-child(2) {
	margin: 0 0 -50px auto;
	position: relative;
	z-index: 5;
}
#index #service ul li .top {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: flex-start;
}
#index #service ul li .top .img {
	width: 60%;
}
#index #service ul li .top .txt_box {
	width: 40%;
	text-align: center;
}
#index #service ul li .txt {
	width: 50%;
	padding: 30px;
	font-size: 90%;
	font-weight: 500;
	line-height: 1.7;
}
@media screen and (max-width:1250px) {
	#index #service ul li {
		padding: 0 0 30px;
	}
	#index #service ul li:nth-child(2) {
	  margin: 0 0 -20px auto;
	}
	#index #service ul li .top .img {
	  width: 50%;
	}
	#index #service ul li .top .txt_box {
	  width: 50%;
	  text-align: center;
	}
	#index #service ul li .ttl02 {
		margin: 0 0 30px;
	}
	#index #service ul li .txt {
		width: 40%;
	}
}
@media screen and (max-width:768px) {
	#index #service.area {
		padding: 50px 30px 120px;
	}
	#index #service ul li {
		width: 60%;
		padding: 0 0 10px;
		margin: 0 0 -30px;
	}
	#index #service ul li:nth-child(2) {
		margin: 0 0 -60px auto;
		z-index: 1;
	}
	#index #service ul li .top {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#index #service ul li .top .img {
		width: 100%;
		margin: 0 0 15px;
	}
	#index #service ul li .top .txt_box {
		width: 100%;
	}
	#index #service ul li .txt {
		width: 100%;
		padding: 10px 10px 10px;
		box-sizing: border-box;
		font-size: 70%;
	}
	#index #service ul li .ttl02 {
		margin: 0 0 8px;
		font-size: 80%;
	}
	#index #service .ttl02 span.sp {
		display: inline-block;
	}
}



/* lower
-------------------------------------------------------*/
#header.lower {
	background: url("../img/common/lower_visual_bg.png")no-repeat center/cover;
}
#header.lower.area {
	padding: 190px 20px 70px;
}
#header.lower .visual_txt01 {
	text-align: center;
	font-size: 370%;
	font-weight: 700;
	margin: 0 0 25px;
}
#header.lower .visual_txt01 span {
	color: #838181;
}
#header.lower .txt01 {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	#header.lower {
		background: url("../img/common/lower_visual_bg_sp.png")no-repeat center/cover;
	}
	#header.lower.area {
		padding: 130px 20px 60px;
	}
	#header.lower .visual_txt01 {
		font-size: 220%;
		margin: 0 0 15px;
	}
	#header.lower .txt01 {
		font-size: 100%;
	}

	
}

.breadcrumb {
	background: #333333;
	padding: 15px 20px;
}
.breadcrumb ul {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
	font-size: 80%;
}
.breadcrumb ul li:not(:last-child) {
	position: relative;
	margin: 0 20px 0 0;
}
.breadcrumb ul li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	right: -15px;
	top: 50%;
	transform: translate(0,-50%);
}
.breadcrumb ul li a {
	color: #fff;
}


/* restaurant
-------------------------------------------------------*/
#restaurant #area01.area {
	padding: 90px 20px 150px;
}
#restaurant #area01 .inner {
	max-width: 1000px;
}
#restaurant #area01 .logo {
	text-align: center;
	margin: 0 0 40px;
}
#restaurant #area01 .logo img {
	max-width: 253px;
}
#restaurant #area01 .top_txt {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
	margin: 0 0 50px;
}
#restaurant #area01 ul li {
	background: #f0f0f0;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#restaurant #area01 ul li:not(:last-child) {
	margin: 0 0 40px;
}
#restaurant #area01 ul li .map {
	margin: 0 40px 0 0;
}
#restaurant #area01 ul li .txt_box {
	font-weight: 500;
}
#restaurant #area01 ul li .txt_box .ttl {
	font-size: 150%;
	margin: 0 0 30px;
}
#restaurant #area01 ul li .txt_box .sub_ttl {
	font-size: 110%;
	margin: 0 0 20px;
	line-height: 1.8;
}
#restaurant #area01 ul li .txt_box .txt {
	font-size: 90%;
	line-height: 1.6;
}
@media screen and (max-width:768px) {
	#restaurant #area01.area {
		padding: 50px 20px 100px;
	}
	#restaurant #area01 .logo {
		margin: 0 0 30px;
	}
	#restaurant #area01 .logo img {
		max-width: 150px;
	}
	#restaurant #area01 .top_txt {
		font-size: 100%;
		margin: 0 0 30px;
		line-height: 1.4;
	}
	#restaurant #area01 ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#restaurant #area01 ul li:not(:last-child) {
		margin: 0 0 30px;
	}
	#restaurant #area01 ul li .map {
		margin: 0 0 20px;
	}
	#restaurant #area01 ul li .map iframe {
		width: 100%;
		box-sizing: border-box;
	}
	#restaurant #area01 ul li .txt_box .ttl {
		font-size: 120%;
		margin: 0 0 20px;
		line-height: 1.6;
	}
	#restaurant #area01 ul li .txt_box .sub_ttl {
		font-size: 100%;
	}
	#restaurant #area01 iframe {
		width: 100%;
	}
}


/* self tanning
-------------------------------------------------------*/
#self_tanning #area01.area {
	padding: 90px 20px 150px;
}
#self_tanning #area01 .inner {
	max-width: 1000px;
}
#self_tanning #area01 .logo {
	text-align: center;
	margin: 0 0 40px;
}
#self_tanning #area01 .logo img {
	max-width: 468px;
}
#self_tanning #area01 .top_txt {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
	margin: 0 0 50px;
}
#self_tanning #area01 ul li {
	background: #f0f0f0;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#self_tanning #area01 ul li:not(:last-child) {
	margin: 0 0 40px;
}
#self_tanning #area01 ul li .img {
	margin: 0 40px 0 0;
}
#self_tanning #area01 ul li .img img {
	width: 325px;
	min-width: 325px;
}
#self_tanning #area01 ul li .txt_box {
	font-weight: 500;
}
#self_tanning #area01 ul li .txt_box .ttl {
	font-size: 150%;
	margin: 0 0 30px;
}
#self_tanning #area01 ul li .txt_box .sub_ttl {
	font-size: 110%;
	margin: 0 0 20px;
	line-height: 1.8;
}
#self_tanning #area01 ul li .txt_box .txt {
	font-size: 90%;
	line-height: 1.6;
	margin: 0 0 40px;
}
#self_tanning #area01 ul li .txt_box .btn_more {
	margin: 0 auto 0 0;
	font-size: 90%;
	width: 260px;
	height: 55px;
}
@media screen and (max-width:768px) {
	#self_tanning #area01.area {
		padding: 50px 20px 100px;
	}
	#self_tanning #area01 .logo {
		margin: 0 0 30px;
	}
	#self_tanning #area01 .logo img {
		max-width: 200px;
	}
	#self_tanning #area01 .top_txt {
		font-size: 100%;
		margin: 0 0 30px;
		line-height: 1.4;
	}
	#self_tanning #area01 ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#self_tanning #area01 ul li:not(:last-child) {
		margin: 0 0 30px;
	}
	#self_tanning #area01 ul li .img {
		margin: 0 0 20px;
	}
	#self_tanning #area01 ul li .img img  {
		width: 100%;
		min-width: 100%;
	}
	#self_tanning #area01 ul li .map iframe {
		width: 100%;
		box-sizing: border-box;
	}
	#self_tanning #area01 ul li .txt_box .ttl {
		font-size: 120%;
		margin: 0 0 20px;
		line-height: 1.6;
	}
	#self_tanning #area01 ul li .txt_box .sub_ttl {
		font-size: 100%;
	}
	#self_tanning #area01 ul li .txt_box .txt {
		margin: 0 0 30px;
	}
	#self_tanning #area01 ul li .txt_box .btn_more {
		margin: 0 auto;
	}

}



/* system development
-------------------------------------------------------*/
#system #area01 .top_txt {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
	line-height: 1.7;
	margin: 0 0 40px;
}
#system #area01 .top_txt a {
	color: #1287d9;
}
#system #area01 .nav_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 940px;
	margin: 0 auto;
}
#system #area01 .nav_box li {
	background: #838181;
	width: 48%;
	border-radius: 50px;
}
#system #area01 .nav_box li a {
	color: #fff;
	border-radius: 50px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 120%;
	line-height: 1.2;
	font-weight: 700;
}
#system #area01 .nav_box li a .arrow {
	background: url("../img/systemdevelopment/arrow.png")no-repeat left center/18px 13px;
	width: 18px;
	height: 13px;
	display: block;
	margin: 0 10px 0 0;
}
#system #area01 .box:not(:last-child) {
	margin: 0 0 130px;
}
#system #area01 .main_ttl {
	background: #333333;
	text-align: center;
	color: #fff;
	font-size: 270%;
	font-weight: 700;
	padding: 50px 20px;
	border-top: 10px solid #838181;
	margin: 0 0 40px;
}
#system #area01 .sub_ttl {
	background: #f0f0f0;
	border-left: 5px solid #838181;
	padding: 20px;
	font-size: 120%;
	font-weight: 700;
	margin: 0 0 40px;
}
#system #area01 .box_in:not(:last-child) {
	margin: 0 0 40px;
}
#system #area01 .img_ttl {
	text-align: center;
	font-size: 140%;
	font-weight: 500;
	margin: 0 0 30px;
}
#system #area01 .caution {
	font-size: 90%;
	font-weight: 500;
	margin: 0 0 50px;
	text-align: center;
}
#system #area01 .img01 {
	text-align: center;
}
#system #area01 .img01 img {
	max-width: 693px;
}
#system #area01 .step {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 920px;
	margin: 0 auto;
}
#system #area01 .step li {
	width: 31%;
	background: #838181;
	color: #fff;
	font-size: 110%;
	font-weight: 700;
	line-height: 1.6;
	padding: 20px 5px;
	box-sizing: border-box;
	border-radius: 10px;
}
#system #area01 .step li:nth-child(-n+3) {
	margin: 0 0 40px;
}
#system #area01 .step li .img {
	text-align: center;
	margin: 0 0 10px;
}
#system #area01 .step li .img img {
	max-width: 174px;
}
#system #area01 .step li .ttl {
	text-align: center;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#system .iot li {
	text-align: center;
	padding: 50px 20px;
}
#system .iot li:first-child {
	padding: 0 20px 50px;
}
#system .iot li:nth-child(2n) {
	background: #f0f0f0;
}
#system .iot li .iot_ttl {
	font-size: 130%;
	font-weight: 700;
	margin: 0 0 20px;
}
#system .iot li .red {
	text-align: center;
	font-weight: 500;
	color: #cb0925;
	line-height: 1.6;
	margin: 0 0 30px;
}
#system .iot li:first-child img {
	max-width: 1160px;
}
#system .iot li:nth-child(2) img {
	max-width: 459px;
}
#system .iot li:nth-child(3) img {
	max-width: 524px;
}
#system .iot li:last-child img {
	max-width: 920px;
}
#system #system01 {
	margin-top: -100px;
	padding-top: 100px;
}
#system #system02 {
	margin-top: -100px;
	padding-top: 100px;
}
@media screen and (max-width:768px) {
	#system #area01 .top_txt {
		font-size: 100%;
		margin: 0 0 30px;
	}
	#system #area01 .nav_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
	}
	#system #area01 .nav_box li {
		width: 100%;
	}
	#system #area01 .nav_box li:not(:last-child) {
		margin: 0 0 20px;
	}
	#system #area01 .nav_box li a {
		height: 60px;
		font-size: 110%;
	}
	#system #area01 .box:not(:last-child) {
		margin: 0 0 70px;
	}
	#system #area01 .main_ttl {
		font-size: 150%;
		padding: 25px 20px;
		border-top: 5px solid #838181;
		line-height: 1.4;
		margin: 0 0 30px;
	}
	#system #area01 .sub_ttl {
		border-left: 3px solid #838181;
		padding: 15px;
		font-size: 100%;
		margin: 0 0 20px;
		line-height: 1.2;
	}
	#system #area01 .box_in:not(:last-child) {
		margin: 0 0 30px;
	}
	#system #area01 .img_ttl {
		font-size: 100%;
		font-weight: 500;
		margin: 0 0 20px;
		line-height: 1.4;
	}
	#system #area01 .caution {
		font-size: 80%;
		margin: 0 0 30px;
	}
	#system #area01 .step {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#system #area01 .step li {
		width: 100%;
		font-size: 90%;
		padding: 20px;
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;
	}
	#system #area01 .step li:nth-child(-n+3) {
		margin: 0 0 20px;
	}
	#system #area01 .step li:nth-child(-n+5) {
		margin: 0 0 20px;
	}
	#system #area01 .step li .img {
		text-align: left;
		margin: 0 20px 0 0;
	}
	#system #area01 .step li .img img {
		max-width: 120px;
		min-width: 120px;
	}
	#system #area01 .step li .ttl {
		text-align: left;
		min-height: inherit;
	}
	#system .iot li {
		padding: 30px 20px;
	}
	#system .iot li:first-child {
		padding: 0 20px 30px;
	}
	#system .iot li .iot_ttl {
		font-size: 100%;
		line-height: 1.4;
		margin: 0 0 10px;
	}
	#system .iot li .red {
		font-size: 85%;
		margin: 0 0 20px;
	}
	#system #system01 {
		margin-top: -70px;
		padding-top: 70px;
	}
	#system #system02 {
		margin-top: -70px;
		padding-top: 70px;
	}
}


/* company
-------------------------------------------------------*/
#company #area01 .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#company #area01 .box .img {
	width: 35%;
	margin: 0 50px 0 0;
	box-sizing: border-box;
}
#company #area01 .box .txt_box {
	/*width: 65%;*/
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-end;
}
#company #area01 .box .txt_box .txt {
	line-height: 2.1;
	margin: 0 0 60px;
}
#company #area01 .box .txt_box dl {
	display: inline-block;
	margin: 0 0 0 auto;
}
#company #area01 .box .txt_box dl dt img {
	max-width: 121px;
	margin: 0 0 5px;
}
#company #area01 .box .txt_box dl dd {
	font-weight: 500;
}
#company #area01 .box .txt_box dl dd span {
	font-size: 160%;
	margin: 0 0 0 20px;
}
@media screen and (max-width:768px) {
	#company #area01 .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#company #area01 .box .img {
		width: 60%;
		margin: 0 0 20px;
	}
	#company #area01 .box .txt_box {
		width: 100%;
	}
	#company #area01 .box .txt_box .txt {
		margin: 0 0 40px;
		font-size: 100%;
	}
	#company #area01 .box .txt_box dl dt img {
		max-width: 100px;
	}
	#company #area01 .box .txt_box dl dd span {
		font-size: 140%;
		margin: 0 0 0 10px;
	}
}

#company #area02 {
	background: #222222;
}
#company #area02 .inner {
	max-width: 1000px;
}
#company #area02 dl {
	color: #fff;
	font-weight: 500;
	border-bottom: 1px solid #f1f1f1;
	padding: 0 0 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	line-height: 2.1;
}
#company #area02 dl:not(:last-child) {
	margin: 0 0 30px;
}
#company #area02 dl dt {
	width: 25%;
	padding: 0 0 0 10px;
	min-width: 140px;
}
@media screen and (max-width:768px) {
	#company #area02 dl {
		padding: 0 0 20px;
		font-size: 90%;
	}
	#company #area02 dl:not(:last-child) {
		margin: 0 0 20px;
	}
	#company #area02 dl dt {
		width: 20%;
		padding: 0 0 0 10px;
		min-width: 110px;
	}
}

#company #area03.area {
	padding: 100px 0 0;
}
#company #area03 iframe {
	vertical-align: bottom;
}
@media screen and (max-width:768px) {
	#company #area03.area {
		padding: 50px 0 0;
	}
	#company #area03 iframe {
		height: 300px;
	}
}

/* contact
-------------------------------------------------------*/
#contact #area01.area {
	padding: 100px 20px 150px;
}
#contact .inner {
	max-width: 900px;
}
#contact .table_temp {
	width: 100%;
}
#contact .contact_after .inner {
	padding: 0;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 220px;
	text-align: left;
}
#contact tr th.top {
	padding: 40px 10px 20px;
	vertical-align: top;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: 700;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 45px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#contact tr.hissu th b::after {
	content: "必須";
	background: #ff0000;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #848282;
}
#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 {
	font-weight: 500;
}
.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: #f5f5f5;
	border: 1px solid #c7c7c7;
}
#contact input[type="text"],
#contact select {
	height: 50px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#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: 300px;
	height: 70px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
    text-align: center;
}
#contact .form_btn01 {
	background: #333333;
}
#contact .form_btn02 {
	background: #333;
}
@media screen and (max-width:768px) {
	#contact #area01.area {
		padding: 50px 20px 100px;
	}
	#contact .txt_head {
		font-size: 100%;
		margin: 0 0 20px;
	}
	#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%;
	}
	#contact tr th.top {
		padding: 15px 0;
	}
	#contact tr td {
		padding-top: 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;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
}

@media screen and (max-width:768px) {
.btn_more {
  width: 100px;
  height: 24px;
	font-size: 80%;
}
}

.footer_sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

.footer_sns li {
	max-width: 50px;
	margin: 0px 10px;
}

@media screen and (max-width:768px) {
	.footer_sns {
	margin-bottom: 30px;
}
	
.footer_sns li {
	max-width: 40px;
	margin: 0px 10px;
}
}