@charset "utf-8";
/* CSS Document */


/*** -----------------------------------------------------------------------------

reset

-----------------------------------------------------------------------------  ***/
html{
	scroll-behavior: smooth;
}
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
li{
	list-style: none;
}
caption, th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
*font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
}
/*** ------------------------------------------------------------------------------

clearfixを記述しないclearfix

-----------------------------------------------------------------------------  ***/
div:after,
ul:after {
    content: "";
    display: block;
    clear: both;
}

/*** ------------------------------------------------------------------------------

common

-----------------------------------------------------------------------------  ***/
html {
	overflow-y:scroll;
}
body {
	color:#333;
	line-height: 1.6;
	font-size: 12px;
 	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
}
.t_center{
	text-align:center;
}
.pc{ display: block;}
.sp{ display: none;}

@media (max-width:768px){
	.pc{ display: none;}
	.sp{ display: block;}
}

/*** ------------------------------------------------------------------------------

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	outline:none;
}
a:link {
	color: #3CC0DD;
	text-decoration:none;
}
a:visited {
	color: #3CC0DD;
	text-decoration:none;
}
a:hover {
	color: #3CC0DD;
	text-decoration:underline;
}
a:active {
	color: #3CC0DD;
	text-decoration:underline;
}
.opacity a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
}
.opacity li:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
}


body{
	min-width:1255px
}

@media (max-width:1255px){
	body{
		min-width:100%
	}
}
@media (max-width:768px){
	body{
		min-width:100%
	}
}

/*** ------------------------------------------------------------------------------

wrapper

-----------------------------------------------------------------------------  ***/

#wrapper {
    padding-top: 130px;
}

@media (max-width:768px){
	#wrapper {
    padding-top: 110px;
	}
}

/*** ------------------------------------------------------------------------------

header

-----------------------------------------------------------------------------  ***/

header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
		left: 0;
		z-index: 100;
}

header .backb{
	background:#333;
}
header .backb h1,
header .backb p{
	max-width:1320px;
	margin:0 auto 43px;
	padding:3px 0;
	color:#FFF;
	font-size:11px;
}
header .wrap{
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	max-width:1320px;
	margin: 0 auto;
	align-items: center;
	padding-bottom: 20px;
}
header .wrap nav ul{
	display:flex;
	flex-wrap:wrap;
	width:932px;
}
header .wrap nav ul li{
	margin:0 auto;
}
header .wrap nav ul li:last-child{
	margin:0 0 0 auto;
}
header .wrap nav ul li a{
	font-size:15px;
	margin:auto;
	color:#000;
}
header .wrap nav ul li.contact a{
	color:#FFF;
	background:#c83e57;
	padding:13px 35px;
	border-radius:50px;
	transition: 0.3s;
}
header .wrap nav ul li.contact a:hover{
	text-decoration: none;
	background: #ae102c;
}
header #menu{
	display: none;
}

header .wrap .logo a {
	display: block;
	transition: .3s;
}

header .wrap .logo a:hover {
	opacity: .8;
}

@media (max-width:768px){
	header .backb h1,
	header .backb p{
		width:100%;
		margin:0 auto 20px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 10px;
	}
	header .wrap{
		width:100%;
		margin: 0 auto;
	}
	header .wrap .logo{
		margin: 15px 0 0 10px;
		padding: 0;
		width: auto;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		height: auto;
	}
	header .wrap .logo img{
		max-width: 77% !important;
		height: auto !important;
		max-height: 50px;
		margin: 0 !important;
		width: auto;
	}
	header .wrap nav ul{
		width:100%;
	}
	header .wrap nav ul li.contact a:hover{
		background: #c83e57;
	}
	header #menu{
		display: block;
		position: absolute;
		right:0;
		top:27px;
		z-index:9999;
		background:#333;
		color:#FFFFFF;
		font-size:0.76em;
		height:60px;
		overflow:hidden;
	}
	header  #menu.m_fixed{
		position: fixed;
		top: 0;
	}
	header  #menu.fix_close{
		position: fixed;
		top: 0;
	}
	header #menu:before{
		content:"MENU";
		display:block;
		position:absolute;
		left:0;
		top:37px;
		width:60px;
		text-align: center;
		font-size:1.167em;
		z-index:999;
	}
	/*
	header #menu.close{
		background: url(../img/#header_menu_bg02.png) center 40px no-repeat #664397;
		background-size: auto 7px ;
	}
	*/
	header #menu a{
	  display: inline-block;
	  position: relative;
	  width: 60px;
	  height:60px;
	  overflow:hidden;
	}
	header #menu a span{
	  display: block;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 24px;
	  height: 2px;
	  margin: -6px 0 0 -12px;
	  background: #FFF;
	  transition: .2s;
	  text-indent:-9999px;
	}
	header #menu a span:before,
	header #menu a span:after{
	  display: block;
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 24px;
	  height: 2px;
	  background: #FFF;
	  transition: .3s;
	}
	header #menu a span:before{
	  margin-top: -6px;
	}
	header #menu a span:after{
	  margin-top: 4px;
	}
	header #menu a .close{
	  background: transparent;
	}
	header #menu a .close:before,
	header #menu a .close:after{
	  margin-top: 0;
	}
	header #menu a .close:before{
	  transform: rotate(-45deg);
	  -webkit-transform: rotate(-45deg);
	}
	header #menu a .close:after{
	  transform: rotate(-135deg);
	  -webkit-transform: rotate(-135deg);
	}
}

/*** ------------------------------------------------------------------------------

nav

-----------------------------------------------------------------------------  ***/
@media (max-width:768px){
	header .wrap nav{
		width: 100%;
		height: 100%;
		overflow: scroll;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
		display: none;
		box-sizing: border-box;
		background: #F5F5F5 !important;
	}
	header .wrap nav ul{
		display: block;
	}
	header .wrap nav ul li a{
		display: block;
		padding: 12px 10px 12px 15px;
		border-bottom: 1px solid #ccc;
	}
	header .wrap nav ul li.contact a{
		width: 90%;
		margin: 15px auto 0;
		padding: 12px 10px;
		border-bottom: none;
		text-align: center;
	}
	header .wrap nav ul li a:hover{ text-decoration: none;}
}

/*** ------------------------------------------------------------------------------

visual

-----------------------------------------------------------------------------  ***/
/*** ------------------------------------------------------------------------------

cont

-----------------------------------------------------------------------------  ***/
/*** ------------------------------------------------------------------------------

main

-----------------------------------------------------------------------------  ***/
#home #wrapper #cont #main section{
	margin:0 auto 180px;
}
#wrapper #cont #main section .cap{
	color:#c73953;
	font-size:35px;
	text-align:center;
	margin:0 0 30px;
	line-height: 10px;
}
#wrapper #cont #main section h2{
	font-size:40px;
	line-height:44px;
	font-weight:bold;
	text-align:center;
}
@media (max-width:768px){
	#wrapper #cont #main section .cap{
		font-size:21px;
		margin:0 0 20px;
	}
	#wrapper #cont #main section h2{
		font-size:24px;
		line-height:1.5;
		padding: 0 10px;
	}
}

/*** ------------------------------------------------------------------------------

sub

-----------------------------------------------------------------------------  ***/
.page-top {
	display: none;
    position: fixed;
    right: 5%;
    bottom: 90px;
    z-index: 10;
    width: 50px;
    background: #c83e57;
    min-height: 50px;
    text-align: center;
}

.page-top a {
    display: block;
    padding: 25px 0 0;
    color: #fff;
    font-weight: bold;
    position: relative;
}

.page-top a::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 14px;
	margin: auto;
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.page-top a:hover {
	text-decoration: none;
}

@media (max-width:768px){

	.page-top {
    width: 40px;
    bottom: 150px;
    min-height: 40px;
	}

	.page-top a {
    padding: 17px 0 0;
	}

	.page-top a::before {
    width: 10px;
    height: 10px;
    top: 11px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
	}
}
/*** ------------------------------------------------------------------------------

footer

-----------------------------------------------------------------------------  ***/
footer .inner{
	width: 1024px;
	margin: 0 auto;
}
footer .menu{
	background: #333;
}
footer .menu .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0;
}
footer .menu .inner .catch{
	max-width: 664px;
}
footer .menu .inner .catch img{
	width: 300px;
}
footer .menu .inner ul{
	max-width: 360px;
	display: flex;
	flex-wrap: wrap;
}
footer .menu .inner ul li{
	width: 180px;
	margin: 10px 0;
}
footer .menu .inner ul li:nth-child(odd){
	width: 180px;
	margin: 10px 25px 10px 0;
}
footer .menu .inner ul li:nth-child(even){
	width: 155px;
}
footer .menu .inner ul li a{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background:  url("../img/ft-list.png") no-repeat left center;
	background-size: 7px auto;
	padding: 0 0 0 15px;
	box-sizing: border-box;
}

footer .address .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}
footer .address .inner p{
	max-width: 664px;
	font-size: 13px;
}
footer .address .inner .sns{
	max-width: 360px;
	display: flex;
}
footer .address .inner .sns li{
	margin: 0 0 0 20px;
}
footer .address .inner .sns li.fb a{
	display: block;
	padding: 12px 19px 12px 20px;
	border-top: 1px solid #4a66aa;
	border-right: 1px solid #4a66aa;
	border-bottom: 7px solid #4a66aa;
	border-left: 1px solid #4a66aa;
	border-radius: 28px;
	font-size: 13px;
	color: #333;
	transition: 0.3s;
}
footer .address .inner .sns li.cam a{
	display: block;
	padding: 10px 22px 9px 20px;
	border-top: 1px solid #c83853;
	border-right: 1px solid #c83853;
	border-bottom: 7px solid #c83853;
	border-left: 1px solid #c83853;
	border-radius: 28px;
	font-size: 13px;
	color: #333;
	transition: 0.3s;
}
footer .address .inner .sns li.fb a:hover,
footer .address .inner .sns li.cam a:hover{
	opacity:0.7;
	transition: 0.3s;
}
/*footer .address .inner .sns li.fb a{
	background: url("../img/icon-fb.png") no-repeat left 25px center;
	background-size: 26px auto;
}
footer .address .inner .sns li.cam a{
	background:  url("../img/icon-syagai.png") no-repeat left 25px center;
	background-size: 30px auto;
}*/
footer .address .inner .sns li a:hover{
	text-decoration: none;
	color: #fff;
}
/*footer .address .inner .sns li.fb a:hover{
	background: url("../img/icon-fb-over.png") no-repeat left 25px center #333;
	background-size: 26px auto;
}
footer .address .inner .sns li.cam a:hover{
	background:  url("../img/icon-syagai-over.png") no-repeat left 25px center #333;
	background-size: 30px auto;
}
footer .address .inner .sns li.fb a:active{
	background: url("../img/icon-fb-over.png") no-repeat left 25px center #111;
	background-size: 26px auto;
}
footer .address .inner .sns li.cam a:active{
	background:  url("../img/icon-syagai-over.png") no-repeat left 25px center #111;
	background-size: 30px auto;
}*/

footer .copy{
	background: #333;
	padding: 15px 10px;
	text-align: center;
	color: #fff;
}
@media (max-width:768px){
	footer .inner{
		width: 100%;
	}
	footer .menu .inner{
		display: block;
		padding: 30px 0 0;
	}
	footer .menu .inner .catch{
		max-width: 100%;
		padding: 10px 50px 20px;
		text-align: center;
	}
	footer .menu .inner .catch img{
		max-width: 100%;
	}
	footer .menu .inner ul{
		max-width: 100%;
		display: block;
	}
	footer .menu .inner ul li{
		width: 100%;
		margin: 0;
	}
	footer .menu .inner ul li:nth-child(odd){
		width: 100%;
		margin: 0;
	}
	footer .menu .inner ul li:nth-child(even){
		width: 100%;
		margin: 0;
	}
	footer .menu .inner ul li a{
		display: block;
		font-size: 16px;
		background:  url("../img/ft-list.png") no-repeat left 10px center;
		background-size: 7px auto;
		padding: 10px 0 10px 25px;
		box-sizing: border-box;
		border-bottom: 1px dotted #fff;
	}
	footer .menu .inner ul li:last-child a{
		border-bottom: none;
	}
	footer .address .inner{
		flex-wrap: wrap;
		padding: 25px 10px;
		box-sizing: border-box;
	}
	footer .address .inner p{
		max-width: 100%;
		font-size: 13px;
	}
	footer .address .inner p a{
		color: #333;
	}
	footer .address .inner .sns{
		max-width: 100%;
		display: flex;
		margin: 20px auto 0;
	}
	footer .address .inner .sns li{
		margin: 0 5px;
	}
	footer .address .inner .sns li a{
		display: block;
		padding: 18px 20px 18px 60px;
		border-bottom: 7px solid #333;
		border-radius: 28px;
		font-size: 12px;
	}
}

/*** ------------------------------------------------------------------------------

トピックパス

-----------------------------------------------------------------------------  ***/
/*** ------------------------------------------------------------------------------

共通設定

-----------------------------------------------------------------------------  ***/
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}
#cont p{
	font-size:18px;
}
.t_red{
	color:#C83E57;
}
.inner_k{
	max-width:1040px;
	padding:0 20px;
	margin:0 auto;
}
.inner_w{
	max-width:1360px;
	padding:0 20px;
	margin:0 auto;
}
.sv{
	background:url(../img/sv_sample.png) center no-repeat;
	background-size:cover;
	height:200px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.sv h1{
	font-size:35px;
	text-align:center;
	font-weight:bold;
}
.bread{
	max-width:1340px;
	margin:0 auto;
	padding:10px;
	display:flex;
	align-items:center;
}
.bread li{
	margin-right:5px
}
.catch{
	text-align:center;
	padding:95px 20px;
}
.catch h2{
	font-size:30px;
	font-weight:bold;
	color:#C83E57;
	margin-bottom:45px;
}
.sec_s{
	margin-bottom: 100px;
}
.sec_s h3{
	background:#333333;
	display:block;
	width:100%;
	font-size:28px;
	color:#fff;
	font-weight:bold;
	padding:10px 35px;
	margin-bottom:60px;
}
.sec_s h4{
	font-size:22px;
	font-weight:bold;
	position:relative;
	padding-left:25px;
	margin-bottom:25px;
}
.sec_s h4:before{
	content:"";
	position:absolute;
	left:0;
	top:10px;
	background:url(../img/point.png) center no-repeat;
	width:14px;
	height:15px;

}
.col2{
	display:flex;
	margin-bottom:60px;
}
.col2 div:nth-child(1){
	flex:1;
}
.col2 div:nth-child(2){
	width:406px;
	margin-left: 50px;
}
.nomalsec h4{
	margin-top:50px;
}
.nomalsec p{
	margin-bottom:25px
}

.cv{
	margin:100px 0;
}
.cv ul{
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	background:#C83E57;
}
.cv ul li:nth-child(1){
	flex:1;
	height: 186px;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
	padding-left:5%;
}
.cv ul li:nth-child(1):before{
	content:"";
	position:absolute;
	left:50px;
	bottom:0;
	background:url(../img/cv_img.png) center no-repeat;
	width:231px;
	height:230px;
}
.cv ul li:nth-child(1) p{
	font-size:26px !important;
	position: relative;
    z-index: 2;
}
.cv ul li:nth-child(1) p span{
	font-size:30px;
	font-weight:bold;
}
.cv ul li:nth-child(2){
	background:#333;
	width:460px;
	display:flex;
	justify-content:center;
	align-items:center;
	height: 186px;
}
.cv ul li:nth-child(2) a{
	display: flex;
    color: #fff;
    align-items: center;
    font-size: 34px;
    font-weight: bold;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.cv ul li:nth-child(2) a img{
	padding-right:24px;
}
.cv ul li:nth-child(2) a:hover{
	text-decoration:none;
	opacity:.7;
}

.company_add{
	background:url("../../img/company-bg.jpg") no-repeat scroll bottom;
	background-size:cover;
	margin: 0 !important;
}
.company_add .inner .wrap{
		width:1024px;
		margin:0 auto;
		padding:75px 0;
		position:relative;
}
.company_add .inner .wrap .img{
	position:absolute;
	bottom:0;
	right:0;
}
.company_add .inner .wrap .title{
	font-size:47px !important;
	font-weight: bold;
	line-height: 80px;
	border-bottom:5px solid #fbd93b;
	display: inline-block;
}
.company_add .inner .wrap .title .txt-red{
	color: #c73953;
}
.company_add .inner .wrap .title strong{
	font-size:68px;
}
.company_add .inner .wrap .read{
	margin: 30px 0 0;
	font-size:22px;
}
.company_add .inner .wrap .btn{
	max-width: 420px;
	background: #fff;
	border-radius: 40px;
	margin: 40px 0 0 60px;
}
.company_add .inner .wrap .btn a{
	display: block;
	padding: 20px 10px;
	text-align: center;
	max-width: 420px;
	background: #c73953;
	border-radius: 40px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	transition: 0.3s;
}
.company_add .inner .wrap .btn a:hover{
	text-decoration: none;
	background: #ae102c;
}
.company_add .bs{
	display: block;
}

#wrapper #cont #main .contact {
    background: url(../../img/contact-bg.jpg) no-repeat center bottom;
    background-size: cover;
    margin: 0;
    padding: 230px 0 230px;
}
.f_contact{
	background: url("../../img/contact-bg.jpg") no-repeat center bottom;
	background-size: cover;
	margin: 0 !important;
	padding: 230px 0 230px;
}
.f_contact h2{
	margin: 0 0 35px;
}
.f_contact .read{
	text-align: center;
	font-size: 18px;
}
.f_contact .btn{
	max-width: 350px;
	text-align: center;
	margin: 50px auto 0;
	background: #fff;
	border-radius: 20px;
}
.f_contact .btn a{
	display: block;
	background: #fff;
	font-size: 23px;
	font-weight: bold;
	border-top: 2px solid #c83853;
	border-right: 2px solid #c83853;
	border-bottom: 7px solid #c83853;
	border-left: 2px solid #c83853;
	padding: 20px 10px;
	border-radius: 20px;
	color: #c83853;
	transition: 0.3s;
}
.f_contact .btn a:hover{
	text-decoration: none;
	background: #c83853;
	color: #fff;
}
.f_contact .btn a:active{
	background: #ae102c;
}

.pruparea{
	background:#F3F3F3;
	text-align:center;
	margin:100px auto 200px;
	padding:90px 20px;
}
.pruparea h4{
	font-size:30px;
	font-weight:bold;
	color:#C83E57;
	margin-bottom:25px;
}
.pruparea p{
	font-size:24px;
	margin-bottom:50px;
}
.pruparea a img{
	max-width:100%;
	height:auto;
}
.pruparea a:hover{
	opacity:.7;
}

.co_mititle{
	background:#F3F3F3;
	color:#C83E57;
	font-size:30px;
	padding:10px;
	text-align:center;
}
.co_mititle:before{
	content:none !important;
}

@media (max-width:768px){
	.col2{
		flex-flow:column
	}
	.col2 div:nth-child(1){
		margin-bottom:25px;
	}
	.col2 div:nth-child(2){
		text-align:center;
		width:100%;
		max-width:auto;
		margin:0;
	}
	.col2 div:nth-child(2) img{
		max-width:100%;
		height:auto;
	}
	.cv ul{
		flex-flow:column;
		padding:40px 20px;
	}
	.cv ul li{
		width:100%;
	}
	.cv ul li:nth-child(1){
		padding:20px 0;
	}
	.cv ul li:nth-child(1):before{
		content:none;
	}
	.cv ul li:nth-child(2){
		max-width:460px;
		width:100%;
		height:100px;
	}
	.cv ul li:nth-child(1) p{
		font-size:4vw !important;
	}
	.cv ul li:nth-child(1) p span{
		font-size:5vw
	}
	.cv ul li:nth-child(2) a{
		font-size:6vw;
	}
	.cv ul li:nth-child(2) a img{
		width:60px;
		height:auto;
	}
	.company_add .inner .wrap{
		width: 100%;
		padding: 75px 10px;
		box-sizing: border-box;
	}
	.company_add .inner .wrap .title{
		font-size:5.0vw;
		line-height: 1.7;
		border-bottom:3px solid #fbd93b;
	}
	.company_add .inner .wrap .title strong{
		font-size:6.5vw;
	}
	.company_add .inner .wrap .read{
		margin: 20px 0 0;
		font-size: 2.7vw;
	}
	.company_add .inner .wrap .img{
		width: 30%;
		right: 10px;
		bottom: 146px;
	}
	.company_add .inner .wrap .img img{
		max-width: 100%;
	}
	.company_add .inner .wrap .btn{
		max-width: inherit;
		width: 100%;
		background: #fff;
		margin: 20px auto 0;

	}
	.company_add .inner .wrap .btn a{
		display: block;
		max-width: inherit;
		width: 100%;
		box-sizing: border-box;
	}
	.company_add .inner .wrap .btn a:hover{
		background: #c73953;
	}
	.company_add .inner .wrap .title{
		font-size: 5.0vw !important;
	}
	.company_add .inner .wrap .title strong{
		font-size: 6.5vw;
	}
	.company_add .inner .wrap .read {
		margin: 20px 0 0;
		font-size: 2.7vw !important;
	}
	.f_contact{
		padding: 80px 10px;
	}
	.f_contact .btn{
		margin: 25px auto 0;
	}
	.f_contact .btn a{
		font-size: 18px;
		padding: 15px 10px;
	}
	.pruparea{
		margin:100px auto 0;
	}
	.catch h2,
	.sec_s h3{
		font-size:5vw;
	}
}


/*step*/
.steparea{
	background:#F3F3F3;
	padding:70px 60px;
	margin:50px 0;
}
.arrow_title{
	background:#333333;
	text-align:center;
	color:#fff;
	font-size:19px;
	font-weight:bold;
	padding:5px;
	position:relative;
	width:calc(100% - 30px)
}
.arrow_title:after{
	content:"";
	position:absolute;
	right:-30px;
	bottom:0;
	top:0;
	margin:auto;
	width: 0;
	height: 0;
	border-left: 30px solid #333;
	border-top: 35px solid transparent;
	border-bottom: 35px solid transparent;
}
.area_4-1{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:50px 0;
}
.area_4-2{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-flow: row-reverse;
	margin:50px 0 0;
}
.area_4-1 li,
.area_4-2 li{
	text-align:center;
	position:relative;
	width:213px;
	height:213px;
	border:2px solid #C83E57;
	border-radius:50%;
	padding:25px 5px;
	background:#fff;
}
.area_4-1 li .stepp,
.area_4-2 li .stepp{
	font-size:19px !important;
	height:90px;
	display:flex;
	align-items:center;
    justify-content: center;
}
.area_4-1 li .font_s,
.area_4-2 li .font_s{
	font-size:16px !important;
}
.area_4-1 li:after{
	content:"";
	position:absolute;
	right:-19px;
	top:0;
	bottom:0;
	margin:auto;
	background:url(../img/fukidashi.png) center no-repeat;
	width:21px;
	height:31px;
}
.area_4-1 li:last-child:after{
	content:none;
}
.area_4-1.line_1 li:last-child:after{
	content:"";
	right:0;
	left:0;
	top:auto;
	bottom:-24px;
	margin:auto;
	transform:rotate(90deg)
}
.area_4-2 li:after{
	content:"";
	position:absolute;
	left:-19px;
	top:0;
	bottom:0;
	margin:auto;
	background:url(../img/fukidashi.png) center no-repeat;
	width:21px;
	height:31px;
	transform:rotate(180deg);
}

.stepno{
	font-size:21px !important;
	color:#C83E57;
	margin-bottom:10px !important;
}
.stepno span{
	font-weight:bold;
	font-size:1.5rem;
}

.steplast{
	content:none;
	background: #C83E57 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steplast:after{
	content:none !important;
}
.steplast:before{
	content:"";
	width:90%;
	height:90%;
	border:3px solid #fff;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	border-radius:50%;
}
.steplast .stepp{
	color:#fff;
	font-weight:bold;
	font-size:25px;
	flex-wrap:wrap;
	height:auto !important;
	margin-bottom:0 !important;
}
.steplast .stepp span{
	font-size:.8em
}
.str_menu{
	text-align:center;
	color:#C83E57;
	font-weight:bold;
	font-size:30px !important;
	margin-bottom:60px;
}

.tool_menu{
	display:flex;
	align-items:center;
	justify-content: space-between;
	margin-bottom:130px;
}
.tool_menu li{
	width:calc(100% / 4 - 25px);
	text-align:center;
	background:#F3F3F3;
	height:290px;
	padding:30px 0;
}
.tool_menu li h5{
	font-size:24px;
	font-weight:bold;
	line-height:1;
	height: 50px;
}
.tool_menu li h5 span{
	font-size:0.8em
}
.tool_menu li p{
	height:100px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.tool_menu li a{
	display:block;
	padding:20px 0;
}
.tool_menu li a:hover{
	opacity:.7;
}

@media (max-width:768px){
	.tool{
		flex-flow: column;
	}
	.tool li{
		width:100%;
		margin-bottom:50px;
	}
	.tool li:after{
		top:auto;
		bottom:-40px;
		left:0;
		right:0;
		margin:auto;
		transform:rotate(90deg);
	}
	.tool_menu{
		flex-wrap:wrap;
	}
	.tool_menu li{
		width:calc(50% - 5px);
	    padding: 30px 15px 0;
		margin-bottom: 10px;
		height: auto;
	}
	.tool_menu li img{
		max-width:100%;
		height:auto;
	}
	.steparea{
		padding:50px 20px;
	}
	.arrow_title{
		font-size:4vw !important;
		width: 100%;
	}
	.arrow_title:after{
		left:0;
		right:0;
		top:auto;
		bottom:-50px;
		transform:rotate(90deg);
	}
	.area_4-1,
	.area_4-2{
		flex-flow:column;
	}
	.area_4-1{
		margin:50px auto 0;
	}
	.area_4-2{
		margin:0 auto;
	}
	.area_4-1 li,
	.area_4-2 li{
		margin-bottom:30px;
	}
	.area_4-1 li:after,
	.area_4-2 li:after{
		top:auto;
		left:0;
		right:0;
		bottom:-24px;
		transform:rotate(90deg);
	}
}


/*----------------------
----------------------*/
.cform th {
	font-size: 18px;
	width: 220px;
	padding: 19px 0 10px 15px;
	font-weight: normal;
	position:relative;
	vertical-align:top;
}

.cform td {
	font-size: 18px;
	line-height: 150%;
	padding: 10px 5px;
}

.cform {
	width: 100%;
	margin: auto;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 20px;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
	border:1px solid #707070;
	padding:10px
}

.cform .c_b{
	display:flex;
	flex-wrap:wrap;
}
.cform .c_b .mwform-checkbox-field{
	display:block;
	width:50%;
	margin-bottom:10px;
	margin-left: 0!important;
}
.cform .c_b label input{
	margin-right:10px;
}
.cform .required-srt {
	font-size: 8pt;
	padding: 5px;
	background: #C53953;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
	position:absolute;
	right:15px;
	top:20px;
}

.cform .addr{
}
.cform .addr li{
	display:flex;
	align-items:center;
	margin-bottom:20px;
}
.cform .addr li p{
	width:120px;
}
.cform .addr li input[type=text]{
	width:200px;
}
.cform .addr li textarea{
	flex:1
}

.pol{
	width: 100%;
	max-width:985px;
    height: 160px;
    overflow-y: scroll;
    padding: 20px;
    border: 1px solid #707070;
    margin: 95px auto 70px;
}
.pol p{
	margin-bottom:20px;
}

@media only screen and (max-width:768px) {
	.cform th,
	.cform td {
		width: 100%;
		display: block;
		border-top: none;
	}
}

.submit-btn input {
	background: #fff;
	width: 287px;
	margin: 25px auto;
	display: block;
	border: 2px solid #C83E57;
	border-bottom:10px solid #C83E57;
	text-align: center;
	padding: 20px;
	color: #C83E57;
	border-radius:24px;
	cursor:pointer;
	font-size:20px;
	font-weight:bold;
	transition: all 0.4s ease;
}

.submit-btn input:hover {
	background: #C83E57;
	color: #fff;
}

@media (max-width:768px){
	.cform .c_b .mwform-checkbox-field{
		width:100%;
	}
	.cform th{
		padding:19px 0 10px 0;
		font-weight:bold;
	}
	.cform td{
		padding:0;
	}
	.cform .addr li p{
		width:85px
	}
	.cform .addr li input[type=text]{
	}
	.cform .required-srt{
		right:0;
	}
	.pol{
		margin:60px auto;
	}
}


/*pager*/
.pager{
	padding-bottom:200px;
}
.pager  ul.pagination,
.m-pageNavi {
  text-align: center;
  margin: 0;
  padding: 0;
	font-size:18px;
}

.pager .pagination li,
.m-pageNavi a,
.m-pageNavi span {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#fff;
  border:1px solid #333;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  vertical-align: middle;
  padding: 10px 0;
}

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #333;
  text-decoration: none;
  font-size:18px;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.m-pageNavi a {
	color: #333;
	padding: 9px 0;
	box-sizing: border-box;
	vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active,
.m-pageNavi .current,
.m-pageNavi a:hover{
  color: #fff;
  background: #333;
	font-size:18px;
	text-decoration: none;
}

@media only screen and (max-width: 767px){
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の10件へ　";
  }
  .pager{
	padding-bottom:100px;
	}

}


.readmore {
	background: #fff;
	width: 287px;
	margin: 25px auto;
	display: block;
	border: 2px solid #C83E57;
	border-bottom:10px solid #C83E57;
	text-align: center;
	padding: 15px;
	color: #C83E57 !important;
	border-radius:50px;
	cursor:pointer;
	font-size:20px;
	font-weight:bold;
	transition: all 0.4s ease;
}

.readmore:hover {
	background: #C83E57;
	color: #fff !important;
	text-decoration:none
}
