@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.jost {
	font-family: 'Jost', sans-serif;
}
.sp {
	display: none;
}
.area {
	padding: 100px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}
.white {
	color: #fff;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
}

/* margin
-------------------------------------------------------*/
.mb40 {
	margin-bottom: 40px;
}
@media screen and (max-width:768px) {
	.mb40 {
		margin-bottom: 30px;
	}
}

/* header
-------------------------------------------------------*/
#header {
	padding: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .logo img {
	max-width: 149px;
}
@media screen and (max-width:768px) {
	#header {
		padding: 10px;
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: space-between;
	}
	#header .logo img {
		max-width: 110px;
	}
}

/* nav
-------------------------------------------------------*/
nav {
	font-family: 'Jost', sans-serif;
}
#nav_pc ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	margin-left: 20px;
}
#nav_pc ul li:not(:last-child) {
	margin-right: 40px;
}
#nav_pc ul a {
	color: #fff;
	position: relative;
}
#nav_pc ul a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
#nav_pc ul a:hover {
	opacity: 1;
}
#nav_pc ul a:hover::after {
	transform: scale(1, 1);
}
#nav_pc ul li.on a::after {
	transform: scale(1, 1);
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 18px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
		mix-blend-mode: difference;
	}
	#btn_nav span {
		display: inline-block;
		background: #fff;
		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(-7px) 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: rgba(0,0,0,0.9);
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 0 20px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#nav_sp .nav_cont.active {
		right: 0;
	}
	#nav_sp .nav_cont a {
		color: #fff;
		font-size: 1.6rem;
	}
	#nav_sp .nav_cont li {
		text-align: center;
	}
	#nav_sp .nav_cont li:not(:last-child) {
		margin: 0 0 25px;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	background: url("../img/common/footer_bg.png")no-repeat center/cover;
	color: #fff;
}
#footer.area {
	padding: 70px 20px;
}
#footer a {
	color: #fff;
}
#footer .logo {
    margin: 0 0 30px;
	text-align: center;
}
#footer .logo img {
    max-width: 149px;
}
#footer .ttl {
    text-align: center;
    margin: 0 0 10px;
}
#footer .txt {
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 50px;
}
#footer .footer_nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 20px 0;
	margin: 0 0 50px;
	font-family: 'Jost', sans-serif;
}
#footer .footer_nav li {
	margin: 0 30px;
}
#footer .footer_nav a {
	position: relative;
}
#footer .footer_nav a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
#footer .footer_nav a:hover {
	opacity: 1;
}
#footer .footer_nav a:hover::after {
	transform: scale(1, 1);
}
#footer .copy {
	font-size: 1.2rem;
	text-align: center;
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 50px 40px;
	}
	#footer .logo img {
		max-width: 110px;
	}
	#footer .ttl {
		font-size: 1.4rem;
	}
	#footer .txt {
		font-size: 1.2rem;
		margin: 0 0 40px;
	}
	#footer .footer_nav {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 40px;
	}
	#footer .footer_nav li {
		margin: 0 0 10px;
	}
	#footer .footer_nav li:last-child {
		margin: 0;
	}
	#footer .copy {
		font-size: 1rem;
	}
}


/* index
-------------------------------------------------------*/
#index #visual {
	background: url(../img/index/visual_bg.png)no-repeat center/cover;
}
#index #visual .visual_txt_box {
	text-align: center;
	color: #fff;
	padding: 240px 20px 320px;
} 
#index #visual .visual_txt_box .ttl {
	text-align: center;
	font-size: 5.6rem;
	line-height: 1.1;
	font-weight: 600;
	margin: 0 0 20px;
}
#index #visual .visual_txt_box .jp {
	font-size: 1.8rem;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	#index #visual {
		background: url(../img/index/visual_bg.png)no-repeat center/cover;
	}
	#index #visual .visual_txt_box {
		text-align: center;
		color: #fff;
		padding: 100px 20px 140px;
	} 
	#index #visual .visual_txt_box .ttl {
		font-size: 3rem;
		margin: 0 0 10px;
	}
	#index #visual .visual_txt_box .jp {
		font-size: 1.2rem;
	}
}

#index #news {
	background: url("../img/index/index_bg01.png")no-repeat right center/35% auto;
}
#index #news .ttl01 {
	margin: 0 0 40px;
}
#index #news ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1px solid #c9c9c9;
	padding: 0 20px 20px;
}
#index #news ul li:not(:last-child) {
	margin: 0 0 20px;
}
#index #news ul li dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#index #news ul li .date {
	margin: 0 20px 0 0;
}
#index #news ul li .tag {
	margin: 0 20px 0 0;
}
#index #news ul li .tag span {
	color: #fff;
	background: #aaaaaa;
	font-size: 1.4rem;
	padding: 2px 15px;
}
@media screen and (max-width:768px) {
	#index #news {
		background: url("../img/index/index_bg01.png")no-repeat right top/60% auto;
	}
	#index #news .ttl01 {
		margin: 0 0 30px;
	}
	#index #news ul li {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 0 10px 20px;
	}
	#index #news ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#index #news ul li dl {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;
		margin: 0 0 10px;
	}
	#index #news ul li .date {
		margin: 0 10px 0 0;
		
	}
	#index #news ul li .tag {
		margin: 0;
	}
	#index #news ul li .tag span {
		font-size: 1.2rem;
		padding: 2px 10px;
	}
}

#index #about_ttl {
	background: url("../img/index/visual_about.png")no-repeat center/cover;
}
@media screen and (max-width:768px) {

}

#index #about_cont {
	background: url("../img/index/index_bg02.png")no-repeat left center/35% auto;
}
@media screen and (max-width:768px) {
	#index #about_cont {
		background: url("../img/index/index_bg02.png")no-repeat left top/60% auto;
	}
}

/* lower common
-------------------------------------------------------*/
.ttl01 {
	text-align: center;
	font-size: 3rem;
	letter-spacing: 0.1em;
	font-family: 'Jost', sans-serif;
}
.ttl01 span {
	position: relative;
}
.ttl01 span::before, .ttl01 span::after {
	position: absolute;
	display: block;
	content: "";
	width: 70px;
	height: 1px;
	top: 50%;
	background: #333;
}
.ttl01 span::before {
	left: -100px;
}
.ttl01 span::after {
	right: -100px;
}
.white .ttl01 span::before, .white .ttl01 span::after {
	background: #fff;
}
.ttl01_jp {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	margin: 10px 0 0;
}
@media screen and (max-width:768px) {
	.ttl01 {
		font-size: 2.2rem;
	}
	.ttl01 span::before, .ttl01 span::after {
		width: 60px;
	}
	.ttl01 span::before {
		left: -80px;
	}
	.ttl01 span::after {
		right: -80px;
	}
	.ttl01_jp {
		font-size: 1.4rem;
		margin: 5px 0 0;
	}
}

.ttl02 {
	text-align: center;
	font-size: 2rem;
	margin: 0 0 30px;
	font-weight: 500;
}
.ttl02_txt {
	text-align: center;
	line-height: 1.8;
}
@media screen and (max-width:768px) {
	.ttl02 {
		font-size: 1.6rem;
		margin: 0 0 20px;
	}
}

.ttl03 {
	font-size: 2rem;
	border-bottom: 1px solid #c9c9c9;
	padding: 0 0 20px 20px;
	margin: 0 0 20px;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.ttl03 {
		font-size: 1.6rem;
		padding: 0 0 10px 10px;
	}
}

.more {
	color: #aaaaaa;
	letter-spacing: 0.1em;
	text-align: right;
	margin: 40px 0 0;
	line-height: 1;
	font-size: 1.2rem;
}
.more.jost {
	font-size: 1.6rem;
}
.more a {
	color: #aaaaaa;
	padding: 0 25px 5px 80px;
	background: url("../img/common/more.png")no-repeat right bottom/151px 15px;
}
@media screen and (max-width:768px) {
	.more {
		margin: 30px 0 0;
	}
	.more a {
		color: #aaaaaa;
		padding: 0 20px 5px 70px;
		background: url("../img/common/more.png")no-repeat right bottom/120px 12px;
	}
}

.lower .visual_txt_box {
	color: #fff;
	padding: 50px 20px 80px;
}
@media screen and (max-width:768px) {
	.lower .visual_txt_box {
		padding: 40px 20px 50px;
	}
}

.breadcrumb {
	max-width: 840px;
	margin: 20px auto 40px;
	font-size: 1.4rem;
}
.breadcrumb ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 20px;
}
.breadcrumb ul li:not(:last-child) {
	margin: 0 40px 0 0;
}
.breadcrumb ul li a {
	position: relative;
}
.breadcrumb ul li a::after {
	position: absolute;
	display: block;
	content: ">";
	right: -23px;
	top: 0;
}
@media screen and (max-width:768px) {
	.breadcrumb {
		margin: 20px auto;
		font-size: 1.2rem;
	}
	.breadcrumb ul li:not(:last-child) {
		margin: 0 30px 0 0;
	}
	.breadcrumb ul li a::after {
		right: -17px;
		top: -1px;
	}
}

.lower #area01.area {
	padding: 0 20px 100px;
}
@media screen and (max-width:768px) {
	.lower #area01.area {
		padding: 0 20px 50px;
	}
}

/* business
-------------------------------------------------------*/
#business #visual {
	background: url("../img/business/visual_bg.png")no-repeat center/cover;
}

#business .cont_box .img {
	margin: 0 0 10px;
}
#business .cont_box dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px;
}
#business .cont_box dl dt {
	font-size: 3rem;
	color: #c9c9c9;
	font-weight: 500;
	position: relative;
	margin: 0 70px 0 0;
}
#business .cont_box dl dt::after {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 1px;
	right: -45px;
	top: 50%;
	transform: translate(0,50%);
	background: #c9c9c9;
}
#business .cont_box dl dd {
	font-size: 2rem;
	font-weight: 500;
}
#business .cont_box .ttl {
	font-weight: 500;
	margin: 0 0 10px;
}
#business .cont_box .txt {
	font-size: 1.4rem;
}
#business #area01 ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#business #area01 ul li {
	width: 48%;
}
@media screen and (max-width:768px) {
	#business .cont_box dl dt {
		font-size: 2.6rem;
		margin: 0 50px 0 0;
	}
	#business .cont_box dl dt::after {
		width: 15px;
		right: -30px;
	}
	#business .cont_box dl dd {
		font-size: 1.8rem;
	}
	#business #area01 ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#business #area01 ul li {
		width: 100%;
	}
	#business #area01 ul li:not(:last-child) {
		margin: 0 0 30px;
	}
}


/* products
-------------------------------------------------------*/
#products #visual {
	background: url("../img/products/visual_bg.png")no-repeat center/cover;
}

#products .top_img {
	text-align: center;
	margin: 0 0 20px;
}
#products .top_img img {
	max-width: 235px;
}
#products .top_txt {
	font-size: 1.4rem;
	margin: 0 0 40px;
}
@media screen and (max-width:768px) {
	#products .top_img {
		margin: 0 0 10px;
	}
	#products .top_txt {
		margin: 0 0 30px;
	}
}

#products #area01 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#products #area01 ul li:not(:last-child) {
	margin: 0 0 40px;
}
#products #area01 ul li .img {
	width: 47%;
}
#products #area01 ul li .txt_box {
	width: 50%;
}
#products #area01 ul li .txt_box .ttl {
	font-weight: 500;
	margin: 0 0 10px;
	position: relative;
	padding-left: 20px;
}
#products #area01 ul li .txt_box .ttl::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/products/arrow.png)no-repeat left top/14px 14px;
	width: 14px;
	height: 14px;
	left: 0;
	top: 6px;
}
#products #area01 ul li .txt_box .txt {
	font-size: 1.4rem;
}
@media screen and (max-width:768px) {
	#products #area01 ul li {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#products #area01 ul li:not(:last-child) {
		margin: 0 0 30px;
	}
	#products #area01 ul li:last-child {
		flex-flow: column-reverse;
	}
	#products #area01 ul li .img {
		width: 100%;
		margin: 0 0 20px;
	}
	#products #area01 ul li .txt_box {
		width: 100%;
	}
	#products #area01 ul li .more {
		margin: 20px 0 0;
	}
}


/* cases
-------------------------------------------------------*/
#cases #visual {
	background: url("../img/cases/visual_bg.png")no-repeat center/cover;
}

.cases_list li {
	border: 1px solid #c9c9c9;
	padding: 20px 30px;
}
.cases_list li:not(:last-child) {
	margin: 0 0 30px;
}
.cases_list dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px;
}
.cases_list dl dt {
	font-size: 3rem;
	color: #c9c9c9;
	font-weight: 500;
	position: relative;
	margin: 0 70px 0 0;
}
.cases_list dl dt::after {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 1px;
	right: -45px;
	top: 50%;
	transform: translate(0,50%);
	background: #c9c9c9;
}
.cases_list dl dd {
	font-size: 2rem;
	font-weight: 500;
}
.cases_list .top_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 20px;
}
.cases_list .top_box .img {
	width: 40%;
}
.cases_list .top_box .txt_box {
	width: 57%;
}
.cases_list .top_box .ttl {
	border-bottom: 1px solid #c9c9c9;
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-weight: 500;
}
.cases_list .txt {
	font-size: 1.4rem;
}
@media screen and (max-width:768px) {
	.cases_list li {
		padding: 10px 20px 20px;
	}
	.cases_list li:not(:last-child) {
		margin: 0 0 20px;
	}
	.cases_list dl dt {
		font-size: 2.6rem;
		margin: 0 40px 0 0;
	}
	.cases_list dl dt::after {
		width: 15px;
		right: -27px;
	}
	.cases_list dl dd {
		font-size: 1.8rem;
	}
	.cases_list .top_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 20px;
	}
	.cases_list .top_box .img {
		width: 100%;
		margin: 0 0 20px;
	}
	.cases_list .top_box .txt_box {
		width: 100%;
	}
}


/* company
-------------------------------------------------------*/
#company #visual {
	background: url("../img/company/visual_bg.png")no-repeat center/cover;
}

#company #area01 .top_txt {
	margin: 0 0 20px;
}
#company #area01 table {
	border-top: 1px solid #c9c9c9;
	width: 100%;
	margin: 0 0 30px;
}
#company #area01 table tr {
	border-bottom: 1px solid #c9c9c9;
}
#company #area01 table th {
	padding: 20px;
	text-align: left;
	border-right: 1px solid #c9c9c9;
	width: 200px;
	vertical-align: middle;
}
#company #area01 table td {
	padding: 20px;
}
@media screen and (max-width:768px) {
	#company #area01 table th {
		padding: 10px;
		text-align: left;
		width: 100px;
	}
	#company #area01 table td {
		padding: 10px;
	}
}


/* contact
-------------------------------------------------------*/
#contact #visual {
	background: url("../img/contact/visual_bg.png")no-repeat center/cover;
}
#contact #area01 .inner {
	max-width: 750px;
}
#contact #area01 .table_temp {
	width: 100%;
	margin: 0 0 20px;
}
#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: 210px;
	text-align: left;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 40px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto;
	border-radius: 5px;
}
#contact tr.hissu th b::after {
	content: "必須";
	background: #a40000;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #898989;
}
#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-color: #fbfbfb;
	border: 1px solid #cccccc;
}
#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: 320px;
	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: #898989;
}
#contact .form_btn02 {
	background: #898989;
}
#contact .btm_txt {
	text-align: center;
}
@media screen and (max-width:768px) {
	#contact .txt_head {
		font-size: 100%;
	}
	/* 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%;
	}
	#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;
	}
	/* table_temp end */
}

.fadein {
	opacity: 0;
	transition: opacity 2.5s;
	visibility: hidden;
}
.fadein.active {
	opacity: 1;
	visibility: visible;
}

.fadein_sc {
	opacity: 0;
	transition: opacity 2s;
}
.fadein_sc.active {
	opacity: 1;
}