/* ===================================================================
CSS
 file name  :  style.css
=================================================================== */
/* =====================================
共通
======================================== */
img {width: 100%;}
/* =====================================
パーツ
======================================== */
.button {
	width: 230px;
	line-height: 4em;
	padding: .5em 4em;
  	border: 2px solid #333;
  	color: #333;
	position: relative;
  	z-index: 10;
  	display: inline-block;
  	text-align: center;
  	text-decoration: none;
  	transition: transform 0.3s cubic-bezier(0.78, 0.07, 0, 1);
  	overflow: hidden;
}
@media screen and (min-width: 641px) {
	.button {
		width: 350px;
	}
}
#top_service:before,
#top_service:after,
#top_case:before,
#top_case:after,
#top_about:before,
#top_about:after {
    left: 20px;
    bottom: 0;
}
@media screen and (min-width: 641px) {
	#top_service:before,
	#top_service:after,
	#top_case:before,
	#top_case:after,
	#top_about:before,
	#top_about:after {
	    left: 0;
	    bottom: 0;
	}
}

/*------ パーツ：.btn_white ------*/
.btn_white {
	border: solid 1px #fff;
	border-radius: 20px;
}
.btn_white:hover {
  color: #fff;
}
.btn_white::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #fff;
  border-radius: 20px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(0.78, 0.07, 0, 1);
}
.btn_white:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
  border-radius: 20px;
}
.btn_white,
.btn_white:link,
.btn_white:active,
.btn_white:visited {
	color: #fff;
	border-radius: 20px;
}
.btn_white:after {
  position: absolute;
  content: '';
  height: 80%;
  right: 35px;
  border-right: solid 1px #fff;
}
.btn_white:hover {
	color: #0C8E70;
	border-radius: 20px;
	border: solid 1px #0C8E70;
}
.btn_white:hover:after {
  border-right: solid 1px #0C8E70;
}

/*------ パーツ：.btn_green ------*/
.btn_green,
.btn_green:link,
.btn_green:active,
.btn_green:visited {
	border: solid 1px #0C8E70;
	color: #0C8E70;
	border-radius: 20px;
}
.btn_green::after {
  position: absolute;
  content: '';
  height: 80%;
  right: 35px;
  border-right: solid 1px #0C8E70;
}
.btn_green::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: linear-gradient(135deg, #01A357, #0D6075);
  border-radius: 20px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(0.78, 0.07, 0, 1);
}
.btn_green:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_green:hover {
  color: #fff;
  border: solid 1px #fff;
}

.btn_green:hover::after {
  border-right: solid 1px #fff;
}

/*------ パーツ：.btn_arrow ------*/
.btn_arrow {
	position: absolute;
    right: 25px;
    top: 50%;
    z-index: 100;
}
.btn_arrow .arrow_line {
	width: 15px;
    height: 1px;
    z-index: 100;
    display: block;
    background: #000;
    transition: transform 0.3s cubic-bezier(0.78, 0.07, 0, 1);
}
.btn_arrow .arrow_triangle {
	width: 6px;
    height: 6px;
    margin-top: -26%;
    z-index: 90;
    border-top: #000 1px solid;
    border-right: #000 1px solid;
    transform: rotate(45deg);
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.78, 0.07, 0, 1);
}
.btn_white:hover .btn_arrow .arrow_line {
    background: #0C8E70;
}
.btn_white:hover .btn_arrow .arrow_triangle {
    border-top: #0C8E70 1px solid;
    border-right: #0C8E70 1px solid;
}
.btn_green:hover .btn_arrow .arrow_line {
    background: #fff;
}
.btn_green:hover .btn_arrow .arrow_triangle {
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
}
@media screen and (min-width: 641px) {
	.btn_arrow .arrow_triangle {
		width: 10px;
	  height: 10px;
	  margin-top: -20%;
	}
	.btn_arrow {
		right: 20px;
	}
	.btn_arrow .arrow_line {
		width: 28px;
	}
	.back_page .arrow_triangle {
		top: 60px;
	}
}

/*------ パーツ：戻る（return）ボタン ------*/
.back_page .btn_arrow {
	left: 25px;
	right: 0;
}
.back_page .arrow_triangle {
	left: 0;
	top: 50px;
	transform: rotate(-135deg);
}
.back_page .btn_green::after {
	left: 40px;
	right: initial;
}
.back_page .btn_green:hover::before {
	transform-origin: right top;
	transform: scale(1, 1);
}


/*------ 背景色 ------*/
.bk_gray {
	background: linear-gradient(135deg, #EBEDF1, #fff);
}


/*------ 見出し ------*/
h2.page_title {
	font-size: 1.8em;
	text-align: center;
	display: inline-block;
}
h2.page_title:after {
	display: block;
	content: "";
	margin: 30px auto 0;
	text-align: center;
	height: 1px;
	width: 180px;
	background-color: #0C8E70;
}


/*------ 共通 ------*/
.top_container {
	width: 100%;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	margin: auto;
	box-sizing: border-box;
}
@media screen and (min-width: 641px) {
	.white_mask {
		position: relative;
	}
	.white_mask:after {
		position: absolute;
		bottom: 0;
		left: 0;
	  z-index: 2;
	  content: '';
	  width: 100%;
	  height: 10%;
	  background: linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, 1) 80%);
	}
	.top_container {
		margin:50px auto auto;
	}
	.inner {
		width:1080px;
	}
}


/* =====================================
TOP
======================================== */

#top_main {
	width:100%;
	margin:0;
	background-image:url("../../images/top/kv_sp.png");
	background-position: center bottom;
	background-size: cover;
	position:relative;
	text-align:center;
	box-sizing:border-box;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#top_main {
		background-image:url("../../images/top/kv_sp@2x.png");
	}
}
@media screen and (min-width: 641px) {
	#top_main {
		width:100%;
		height:900px;
		margin:0;
		background-image:url("../../images/top/kv_pc.png");
		background-position: top;
		background-size: cover;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2) {
		#top_main {
			background-image:url("../../images/top/kv_pc@2x.png");
		}
	}
}

#top_main .kv_message {
	padding-top: 150px;
}
@media screen and (min-width: 641px) {
	#top_main .kv_message {
		width: 1024px;
		margin: 0 auto;
		padding-top: 250px;
		text-align: left;
	}
}
#top_main .kv_message picture img {
	width: initial;
}


#top_main .kv_idea {
	width: 50px;
	margin: 40px auto;
}
@media screen and (min-width: 641px) {
	#top_main .kv_idea {
		position: relative;
		width: 1024px;
		margin: 0 auto;
		display: block;
	}
	#top_main .kv_idea picture {
		position: absolute;
		top: -300px;
		right: 100px;
	}
}

#top_service_list .strategy {
	background: url("../../images/top/top_service01.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: 1.0s;
}
#top_service_list .develop {
	background: url("../../images/top/top_service02.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#top_service_list .package {
	background: url("../../images/top/top_service03.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#top_service_list .design {
	background: url("../../images/top/top_service04.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#top_service_list .promotion {
	background: url("../../images/top/top_service05.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#top_service_list .sales {
	background: url("../../images/top/top_service06.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#top_service_list ul li a {
	text-decoration: none;
	color: #fff;
	position: absolute;
  height: 100%;
  width: 100%;
}

#top_service_list ul li a span:after {
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#top_service_list ul li a:hover span:after {
	transform: scale(1, 1);
}


#top_service {
	padding-left: 40px;
	padding-right: 20px;
	margin-bottom: 60px;
	position: relative;
}
@media screen and (min-width: 641px) {
	#top_service {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		padding-left: 40px;
		margin-bottom: 150px;
	}
}
#top_service:before,
#top_case:before,
#top_about:before {
	content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    border-left: 2px solid #0C8E70;
}
#top_service:after,
#top_case:after,
#top_about:after {
	content: "";
    position: absolute;
    bottom: 0;
    height: 90%;
    border-left: 2px solid #707070;
}



#top_service h2 {
	font-size: 1.4em;
}
#top_service h2 span {
	font-size: 0.6em;
	padding-left: 50px;
}
#top_service h3 {
	padding-top: 30px;
	font-size: 1.5em;
}
@media screen and (min-width: 641px) {
	#top_service h3 {
		font-size: 1.8em;
	}
}

#top_service .service_message {
	line-height: 2.2em;
}

#top_service_list {
	border-radius: 30px;
	margin-bottom: 150px;
	padding: 0 20px;
	overflow: hidden;
}
#top_service_list ul {
    width: 100%;
}

#top_service_list ul li {
	border-radius: 15px;
	overflow: hidden;
    width : 100%;
    height: 150px;
    margin-bottom: 20px;
	list-style: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
}
#top_service_list ul li:before {
	content: "";
	left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
	background-color: rgba(0,0,0,0.4);
    position: absolute;
}
#top_service_list ul li span {
	font-size: 1.2em;
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	margin: auto;
}
@media screen and (min-width: 641px) {
	#top_service_list {
		padding: 0;
	}
	#top_service_list ul {
		display: flex;
		flex-wrap: wrap;
	}

	#top_service_list ul li {
		width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
		width : -webkit-calc(100% / 3) ;
		width : calc(100% / 3) ;
		height: 250px;
		margin-bottom: 0;
		border-radius: initial;
		overflow: initial;
	}
}
#top_case {
	position: relative;
	padding-left: 20px;
	margin-bottom: 60px;
}
#top_case h2 {
	font-size: 1.4em;
	margin-bottom: 30px;
}
#top_case h2 span {
	font-size: 0.6em;
	padding-left: 50px;
}
#top_case .case_block {
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}
#top_case .case_block p {
	padding-left: 30px;
	margin-bottom: 30px;
	box-sizing: border-box;
}
@media screen and (min-width: 641px) {
	#top_case {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		position: relative;
		padding-left: 40px;
		margin-bottom: 150px;
	}
	#top_case h2 {
		font-size: 1.4em;
		margin-bottom: 30px;
	}
	#top_case h2 span {
		font-size: 0.6em;
		padding-left: 50px;
	}
	#top_case .case_block {
		width: 50%;
	}
	#top_case .case_block p {
		width: 95%;
		padding-left: 30px;
	}
}


#top_about {
	padding-left: 40px;
}
#top_about .about_img {
	width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media screen and (min-width: 641px) {
		#top_about {
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: flex-start;
			padding-left: 40px;
			margin-bottom: 150px;
		}
		#top_about .about_img {
			width: 45%;
		}
}

#top_news {
	padding: 60px 20px;
}
#top_news .news_title {
	margin-bottom: 30px;
}
#top_news .news_list li {
	display: table;
	margin-bottom: 15px;
}
#top_news span.tag_topic,
#top_news span.date {
	display: inline-block;
}
#top_news span.title {
	display: block;
}
@media screen and (min-width: 641px) {
	#top_news {
		padding: 80px 40px;
	}
	#top_news .inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	#top_news .news_list {
		width: 60%;
		text-align: left;
		padding-left: 70px;
	}
	#top_news .news_list li {
		display: table;
		margin-bottom: 15px;
	}
	#top_news .news_title {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 35%;
		height: 300px;
		padding-right: 70px;
		border-right: solid 1px #fff;
	}
}

#top_contact {
	position: relative;
	padding: 100px 0;
}
@media screen and (min-width: 641px) {
	#top_contact {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	#top_contact .contact_title {
		border-right: 1px solid #0C8E70;
	}
	#top_contact .contact_title,
	#top_contact .contact_list {
		text-align: center;
		width: 50%;
		box-sizing: border-box;
		padding: 70px 30px;
	}

	#top_contact h2 {
		font-size: 2.2em;
		margin-bottom: 40px;
	}
	#top_contact h2 span {
		font-size: 0.6em;
		line-height: 3em;
		display: block;
	}
	#top_contact h2 span:after {
		content: "";
		display: block;
		margin: 0 auto;
			width: 50px;
		border-bottom: 1px solid #0C8E70;
	}
	#top_contact h3 {
		padding-top: 30px;
		font-size: 1.8em;
	}
	#top_contact .contact_list .tel {
		display: table;
		margin:0 auto;
	}
	#top_contact .contact_list .tel_number {
		display: table-cell;
		vertical-align: middle;
		font-size: 2.2em;
			letter-spacing: 0.3em;
	}
	#top_contact .contact_list .tel_icon {
		display: table-cell;
		vertical-align: middle;
		padding-right: 15px;
	}
	#top_contact .contact_list p {
		padding: 20px 0 40px 0;
	}
}


#top_recruit {
	position: relative;
	padding: 80px 40px;
	margin-bottom: 150px;
	background: linear-gradient(135deg, #01A357, #0D6075);
	color: #fff;
}
#top_recruit .recruit_message {
	text-align: center;
}
#top_recruit .recruit_message p {
	line-height: 2.5em;
	margin-bottom: 40px;
}
#top_recruit .recruit_title {
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
}
#top_recruit h2 {
	font-size: 3.5em;
	line-height: .9em;
	padding-top: 0px;
}
#top_recruit h2 span {
	font-size: 0.3em;
	display: block;
}
#top_recruit h3 {
	font-size: 1.8em;
	margin-bottom: 30px;
}
@media screen and (min-width: 641px) {
	#top_recruit .inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	#top_recruit h2 {
		padding-top: 100px;
	}
	#top_recruit .recruit_title {
			height: 300px;
	}
	#top_recruit .recruit_title:before {
		position: absolute;
			content: "";
			display: block;
			width: 50px;
			border-bottom: solid 1px #fff;
			left: -90px;
			top: 125px;
	}
}


#top_about {
	position: relative;
	margin-bottom: 150px;
}
#top_about:before {
	content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 100%;
    border-left: 2px solid #0C8E70;
}
#top_about:after {
	content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 80%;
    border-left: 2px solid #707070;
}


#top_about h2 {
	font-size: 1.4em;
}
#top_about h2 span {
	font-size: 0.6em;
	padding-left: 50px;
}
#top_about h3 {
	padding: 30px 0;
	font-size: 1.8em;
}

#top_about .about_message {
	line-height: 2.2em;
	padding-right: 20px;
}
#top_about .about_message p {
	margin-bottom: 40px;
}
#top_about .about_img img {
	width: 100%;
}



#top_news {
	position: relative;
	color: #333;
}

#top_news .news_list li {
	display: table;
	margin-bottom: 15px;
}


#top_news h2 {
	font-size: 2.2em;
}
#top_news h3 {
	font-size: 1.8em;
	margin-bottom: 30px;
}

#top_news .button {
	margin: 40px auto 0px;
}

#top_news span.tag {
	padding: 0 5px;
	margin-right: 5px;
    font-size: .9em;
    background: #0C8E70;
    border-radius: 5px;
    color: #fff;
    width: 70px;
    display: table-cell;
    text-align: center;
}
#top_news span.tag_topic {
	background: #0C8E70;
	display: inline-block;
}
#top_news span.tag_ir {
	background: #1A75C1;
	display: inline-block;
}
#top_news span.date {
	padding: 0 10px;
	margin-right: 5px;
}
#top_news span.title {
	width: 100%;
	display: table-cell;
}

#top_contact .contact_title,
#top_contact .contact_list {
	text-align: center;
	box-sizing: border-box;
}
#top_contact h2 {
	font-size: 2.2em;
	margin-bottom: 40px;
}
#top_contact h2 span {
	font-size: 0.6em;
	line-height: 3em;
	display: block;
}
#top_contact h2 span:after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 50px;
	border-bottom: 1px solid #0C8E70;
}
#top_contact h3 {
	padding-top: 30px;
	font-size: 1.8em;
}
#top_contact .contact_list .tel {
	display: table;
	margin:0 auto;
}
#top_contact .contact_list .tel_number {
	display: table-cell;
	vertical-align: middle;
	font-size: 2.2em;
	letter-spacing: 0.3em;
}
#top_contact .contact_list .tel_icon {
	display: table-cell;
	vertical-align: middle;
	padding-right: 15px;
}
#top_contact .contact_list p {
	padding: 20px 0 40px 0;
}


/* =====================================
サービス
======================================== */
#service_solution {
	text-align: center;
	padding: 100px 0;
}
#service_solution .problem {
	padding: 50px 20px 100px;
}
@media screen and (min-width: 641px) {
	#service_solution .problem {
		padding: 50px 0 100px;
		display: flex;
		justify-content: space-between;
	}


	#service_solution .solution {
		padding: 50px 0 0;
		display: flex;
		justify-content: space-around;
	}
	#service_solution .solution .item {
		width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
		width : -webkit-calc(100% / 3) ;
		width : calc(100% / 3) ;
		display: inline-block;
	}
	#service_solution .solution p {
		padding: 20px;
	}

}
#service_solution .problem .item {
	width : 100%;
	padding: 10px 0;
	display: inline-block;
	position: relative;
}
#service_solution .problem .item .img {
	width: 110px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
}
#service_solution .problem .item h3 {
	font-size: 1.4em;
  line-height: 7em;
  padding-left: 100px;
  color: #0C8E70;
}
#service_solution .problem .item p {
	text-align: left;
	width: 100%;
	font-size: 1.2em;
	padding: 20px 0;
	margin: 0 auto;
}
@media screen and (min-width: 641px) {
	#service_solution .problem .item {
		width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
		width : -webkit-calc(100% / 3) ;
		width : calc(100% / 3) ;
	}
	#service_solution .problem .item .img {
		height: 300px;
		width: 80%;
		position: initial;
	}
	#service_solution .problem .item h3 {
		font-size: 1.3em;
		line-height: 5em;
		padding: initial;
	}
	#service_solution .problem .item p {
		width: 80%;
		padding: initial;
		font-size: 1em;
	}
}

#service_solution .solution {
	padding: 0 20px;
}
#service_solution .solution .item {
	width: 100%;
}

#service_solution .solution p {
	box-sizing: border-box;
	padding: 20px 0;
	text-align: left;
}

#service_solution .solution .item h3 {
	color: #fff;
	font-size: 1.2em;
	padding: 40px 0;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
#service_solution .solution .item .title {
	position: relative;
}
#service_solution .solution .item .title:before {
	content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
}
#service_solution .solution .item .strategy {
	background-image: url("/assets/images/service/top_service01@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#service_solution .solution .item .develop {
	background-image: url("/assets/images/service/top_service02@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#service_solution .solution .item .package {
	background-image: url("/assets/images/service/top_service03@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#service_solution .solution .item .design {
	background-image: url("/assets/images/service/top_service04@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#service_solution .solution .item .promotion {
	background-image: url("/assets/images/service/top_service05@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#service_solution .solution .item .sales {
	background-image: url("/assets/images/service/top_service06@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#service_proposal {
	padding: 0 20px;
	box-sizing: border-box;
}
#service_proposal .proposal_area {
	padding: 100px 0px;
	position: relative;
}

#service_proposal .proposal_area:before {
	content: "";
    position: absolute;
    bottom: 50%;
    top: 50%;
    height: 80%;
    border-left: 2px solid #0C8E70;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#service_proposal .proposal_area:after {
	content: "";
    position: absolute;
    bottom: 0;
    top: 53%;
    height: 75%;
    border-left: 2px solid #707070;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#service_proposal .proposal_area .category {
	padding-bottom: 30px;
	padding-left: 30px;
	font-size: 1.4em;

}
#service_proposal .proposal_area h2 {
	font-size: 1.8em;
	padding-left: 30px;
}
#service_proposal .proposal_area .lead {
	padding: 30px;
}
#service_proposal .proposal_area .proposal_list {
	padding-left: 30px;
}
#service_proposal .proposal_area .proposal_list .item h3 {
	font-size: 1.3em;
	font-weight: bold;
	color: #0C8E70;
	position: relative;
}
#service_proposal .proposal_area .proposal_list .item h3:before {
	content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    left: -30px;
    top: 50%;
    border-top: 2px solid #0C8E70;
}
#service_proposal .proposal_area .proposal_list .item h3:after {
	content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 53%;
    bottom: 50%;
    background-color: #0C8E70;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#service_proposal .proposal_area .proposal_list .item p {
	padding: 30px 0;
}
@media screen and (min-width: 641px) {
	#service_proposal {
		padding: 0px;
	}
	#service_proposal .proposal_area .category {
		padding-bottom: 30px;
		padding-left: 40px;
		font-size: 1.4em;
	}
	#service_proposal .proposal_area h2 {
		font-size: 1.8em;
		padding-left: 40px;
	}
	#service_proposal .proposal_area .lead {
		padding: 30px 40px;
	}
	#service_proposal .proposal_area .proposal_list {
		padding-left: 40px;
	}
	#service_proposal .proposal_area .proposal_list .item h3:before {
			width: 30px;
			height: 2px;
			left: -40px;
			top: 50%;
	}
}




/* =====================================
実績
======================================== */
#results_area {
	text-align: center;
    padding: 100px 0 0;
}

#results_area .results_list {
	padding: 60px 20px;
}
#results_area .results_list .item {
	padding-bottom: 50px;
}

#results_area .results_list .info {
	text-align: left;
}
#results_area .results_list .info h3 {
	font-size: 1.4em;
	padding: 15px 0px;
}
#results_area .results_list .info p {
	font-size: 1.1em;
	padding-bottom: 20px;
}
#results_message {
	padding: 80px 20px;
	font-size: 1.2em;
	text-align: center;
}
#results_message p {
	padding: 10px;
}
@media screen and (min-width: 641px) {
	#results_area .results_list {
		padding: 100px 20px;
	}
	#results_area .results_list .item {
		display: flex;
		justify-content: space-between;
	}
	#results_area .results_list .item .img {
		width: 35%;
		padding-right: 5%;
	}
	#results_area .results_list .info {
		width: 60%;
	}
	#results_area a.button {
		line-height: 2.5em;
			width: 250px;
			margin: 0;
	}
}

/* =====================================
採用
======================================== */
#recruit_area {
	text-align: center;
    padding: 100px 0 0;
}
#recruit_area .message {
	padding: 100px 20px 60px;
}
#recruit_area .message p {
	font-size: 1.3em;
	line-height: 2em;
	padding-bottom: 20px;
}
/* =====================================
会社概要
======================================== */
#about_area {
	text-align: center;
    padding: 100px 0 0;
}
#about_area h2 {
	padding-bottom: 60px;
}
.table_block {
	padding: 20px 20px 120px;
	font-size: 1.1em;
}
.table_block table {
	width: 100%;
}
.table_block th {
	background-color: #EEEEEE;
	color: #077769;
}
.table_block td {
	text-align: left;
}
.table_block th,
.table_block td {
	width: 100%;
	line-height: 2em;
	padding: 15px 0px;
	box-sizing: border-box;
	display: block;
}
#about_area .table_block .table_green {
	background-color: #077769;
	color: #FFFFFF;
	text-align: center;
}
@media screen and (min-width: 641px) {
	.table_block table {
		display: table;
	}
	.table_block th {
		width: 30%;
	}
	.table_block td {
		width: 70%;
	}
	.table_block th,
	.table_block td {
		line-height: 2em;
		padding: 15px 20px;
		border: 1px solid #707070;
		display: table-cell;
	}
}


/* =====================================
お問い合わせ
======================================== */
#contact_area {
	text-align: center;
    padding: 100px 0 100px;
}
#contact_area h2 {
	padding-bottom: 60px;
}
#contact_area p.lead {
	font-size: 1.2em;
	padding: 0px 20px 60px;
}
#contact_area form {
	padding-bottom: 120px;
}
.form_table {
	text-align: left;
	margin-top: 5px;
}
.form_table input,textarea {
	width:100%;
	font-size:120%;
	box-sizing:border-box;
}
.form_table input[type="radio"] {
	width:20px;
}
.form_table input[type="checkbox"] {
	width:20px;
}
.form_table select {
	height: 33px;
}
.form_table th {
	padding:10px 15px;
	font-size: 1.2em;
	display:block;
	text-align:left;
	vertical-align:top;
	box-sizing: border-box;
}
.form_table td {
	display:block;
	padding:10px 15px;
	box-sizing: border-box;
}
.form_table .icon_required {
	color:#D90000;
	margin-left: 10px;
}
.form_table .form_list li {
	margin-bottom: 5px;
}
.form_table .name_width {
	width:70%;
}
.form_table .zip1_width {
	width:60px;
}
.form_table .zip2_width {
	width:80px;
}
.form_table .num_width {
	width:50%;
}
.btn_confirm,
.btn_area {
	margin-top: 10px;
}
.btn_confirm button {
	background-color: #FFFFFF;
}
.btn_back {
	display: block;
	width:100%;
	box-sizing:border-box;
	padding: 10px 0;
	background: #CCC;
	border: none;
	color:#666;
	font-size: 120%;
	cursor: pointer;
	outline: none;
	border-radius: 0;
	margin-bottom: 10px;
}
.btn_send {
	display: block;
	width:100%;
	box-sizing:border-box;
	padding: 10px 0;
	background: #0C8E70;
	font-size: 120%;
	border: none;
	color:#FFFFFF;
	outline: none;
	border-radius: 0;
}

/* checkbox02 */
#contact_area .checkbox_list {
	width: 100%;
}
#contact_area .checkbox_list li {
	width: 45%;
	display: inline-block;
	text-align: center;
	margin: 0 auto;
}
@media screen and (min-width: 641px) {
	#contact_area .checkbox_list {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
	}
	#contact_area .checkbox_list li {
		width: auto;
	}
}
input[type=checkbox] {
	display: none;
}
input[type="checkbox"].checklist:checked + label {
	background: #0C8E70;
	color: #ffffff;
	}
.check_label:hover {
	background-color: #E2EDF9;
}

.check_label {
	display: block;
  float: left;
  margin: 5px;
  width: 65%;
  text-align: center;
  line-height: 4em;
  padding: 0 10%;
  cursor: pointer;
  color: #0C8E70;
  border: 2px solid #0C8E70;
  border-radius: 20px;
}
@media screen and (min-width: 641px) {
	.check_label {
		width: 100px;
	  padding: 0 50px;
	}
}


/* =====================================
各ページタイトル画像
======================================== */
#kv_main .kv_inner {
	width: 100%;
	height: 300px;
	position: relative;
	padding-top: 50px;
}
@media screen and (min-width: 641px) {
	#kv_main .kv_inner {
		padding-top: 0px;
	}
}
#kv_main .kv_green {
	width: 80%;
  height: auto;
  padding: 30px 20px;
  margin-top: 160px;
  box-sizing: border-box;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	color: #ffffff;
	background: linear-gradient(135deg, #01A357, #0D6075);
	position: absolute;
	z-index: 10;
}
@media screen and (min-width: 641px) {
	#kv_main .kv_green {
		width: 50%;
		height: 250px;
		margin-top: 50px;
	}
}
#kv_main .kv_image {
	width: 100%;
	height: 300px;
}
@media screen and (min-width: 641px) {
	#kv_main .kv_image {
		width: 60%;
		height: 350px;
		margin: 0 0 auto auto;
	}
	#kv_main .kv_message {
		padding: 30px 50px;
	}
}

#kv_main .kv_message h2 {
	font-size: 2.5em;
}
#kv_main .kv_message p {
	font-size: 1.3em;
}


#kv_main .kv_service {
	background: url("/assets/images/service/kv_service.jpg") no-repeat;
	background-size: cover;
}
#kv_main .kv_results {
	background: url("/assets/images/result/kv_results.jpg") no-repeat;
	background-size: cover;
	background-position: bottom;
}
#kv_main .t {
	background: url("/assets/images/recruit/t.jpg") no-repeat;
	background-size: cover;
}
#kv_main .kv_about {
	background: url("/assets/images/about/kv_about.jpg") no-repeat;
	background-size: cover;
}
#kv_main .kv_contact {
	background: url("/assets/images/contact/kv_contact.jpg") no-repeat;
	background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#kv_main .kv_service {
		background: url("/assets/images/service/kv_service@2x.jpg") no-repeat;
		background-size: cover;
	}
	#kv_main .kv_results {
		background: url("/assets/images/results/kv_results@2x.jpg") no-repeat;
		background-size: cover;
		background-position: bottom;
	}
	#kv_main .kv_recruit {
		background: url("/assets/images/recruit/kv_recruit@2x.jpg") no-repeat;
		background-size: cover;
	}
	#kv_main .kv_about {
		background: url("/assets/images/about/kv_about@2x.jpg") no-repeat;
		background-size: cover;
	}
	#kv_main .kv_contact {
		background: url("/assets/images/contact/kv_contact@2x.jpg") no-repeat;
		background-size: cover;
	}
	#kv_main .kv_contact {
		background: url("/assets/images/contact/kv_contact@2x.jpg") no-repeat;
		background-size: cover;
	}
}
