@charset "UTF-8";

body{
	position: relative;
	font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.pc_cnt{display: block;}
.sp_cnt{display: none;}


@media screen and (max-width: 960px) {}

@media screen and (max-width: 480px) {
	.pc_cnt{display: none !important;}
	.sp_cnt{display: block !important;}
	html.is-fixed,html.is-fixed body {
		height: 100%;
		overflow: hidden;
	}

}


/*--------------------------
header */
header{
	display: inline-block;
    width: 100%;
	padding-bottom: 5px;
}
.header {
  width: 100%;
  border-bottom: 2px solid #1a1f71;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
          box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  position: relative; }
  .header__inner {
    padding: 5px 0;
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;*/
	max-width: 1400px;
    margin: auto;
}
.header-logo{
	width: 20vw;
	max-width: 200px;
	float: left;
}
.header-logo img{
	max-height:80px;
}	
.header-socialLink{
	/*display: flex;*/
}
.gnavi2{
	float: right;
	display: table;
    margin: 0.95rem 0 0;
}
.gnavi2 li{
	float:left;
	list-style: none;
    line-height: 1.4;
    font-size: 1rem !important;
	display: block;
    overflow: hidden;
	font-weight:bolder;
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Hiragino Sans,"Noto Sans JP",sans-serif;
}
.gnavi2 li a{
	padding: 14px 0.75em;
	display: block;
}
.gnavi2 li:nth-child(7) a{
	border-bottom: 1px solid #2e6da4;
}
@media screen and (max-width: 768px) {
	.recruit_gnavi {
		font-size: 0.8vw;
		margin-right: 2vw;
	}
	.recruit_gnavi li{
		margin: 10px 0.5vw 0;
	}
}

@media screen and (max-width: 480px) {
	header{
		position: relative;
		z-index: 3;
		background-color: #fff;
	}
	.header__inner{
		padding: 5px 10px 10px 5px;
	}
	.header-logo{
		max-width: 100%;
        width: 100%;
        text-align: center;
	}
	.header-logo img {
        max-height: 70px;
    }
	.header-socialLink__wrap li{
		margin: 0 7%;
	}
	
	

	/*　ハンバーガーボタン　*/
	.hamburger {
	  display : block;
	  position: absolute;
	  z-index : 3;
	  left : 5px;
	  top   : 7px;
	  width : 34px;
	  height: 34px;
	  cursor: pointer;
	  text-align: center;
	  border: 1px solid #333;
	}
	.hamburger span {
	  display : block;
	  position: absolute;
	  width   : 21px;
	  height  : 2px ;
	  left    : 5px;
	  background : #333;
	  -webkit-transition: 0.3s ease-in-out;
	  -moz-transition   : 0.3s ease-in-out;
	  transition        : 0.3s ease-in-out;
	}
	.hamburger span:nth-child(1) {
	  top: 9px;
	}
	.hamburger span:nth-child(2) {
	  top: 15px;
	}
	.hamburger span:nth-child(3) {
	  top: 22px;
	}

	/* ナビ開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
	  top : 15px;
	  left: 6px;
	  -webkit-transform: rotate(-45deg);
	  -moz-transform   : rotate(-45deg);
	  transform        : rotate(-45deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
	  top: 15px;
	  -webkit-transform: rotate(45deg);
	  -moz-transform   : rotate(45deg);
	  transform        : rotate(45deg);
	}

	nav.globalMenuSp {
		position: fixed;
		z-index : 2;
		top  : 0;
		left : 0;
		color: #333;
		text-align: center;
		transform: translateY(-100%);
		transition: all 0.6s;
		width: 100%;
		background-color: #fff;
		padding: 20px 10px;
		height: 100vh;
	}
	nav.globalMenuSp .sp_gnavi_anchorbox{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 17vw;
	}
	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) {
	  padding: 0;
	  width: 100%;
	}

	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) li {
	  list-style-type: none;
	  padding: 0;
	  width: 100%;
	  border-bottom: 1px solid #333;
	}
	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) li:last-child {
	  padding-bottom: 0;
	  border-bottom: none;
	}

	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) li a {
	  display: block;
	  color: #333;
	  padding: 1em 0;
	  text-decoration :none;
		text-align: left;
		position: relative;
	}
	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) li a span{
		font-size: 0.7rem;
		opacity: 0.7;
		padding-left: 10px;
	}
	nav.globalMenuSp .sp_gnavi_anchorbox ul:nth-child(1) li a::before {
		content: "";
		position: absolute;
		right: 20px;
		width: 7px;
		height: 7px;
		border-top: 2px solid #333;
		border-right: 2px solid #333;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		top: calc(50% - 4px);
	}

	/* このクラスを、jQueryで付与・削除する */
	nav.globalMenuSp.active {
	  transform: translateY(0%);
	}

	
	.header-socialLink--item_sp{
		width: 70%;
		margin: 30px auto;
	}


	.gnavi_botttom{
		border-top: 1px solid #333;
		padding: 20px 0; 
	}
	.gnavi_botttom p{
		color: #333;
		text-align: center;
		letter-spacing: 1px;
		font-size: 0.8rem;
		font-feature-settings: "palt";
	}
	.gnavi_botttom p span{
		font-size: 1rem;
		font-weight: normal;
	}

	.gnavi_botttom ul{
		display: flex;
		justify-content: center;
		margin: 0 auto;
	}
	.gnavi_botttom .btn{
		text-align: center;
		padding: 10px 0 0;
		margin: 0 10px;
	}
	.gnavi_botttom .btn a{
		color: #fff;
		font-weight: bold;
		padding: 10px;
		width: 250px;
		margin: 0 auto;
		border-radius: 100px;
		background-color: #afafaf;
		text-decoration: none;
		display: block;
		position: relative;
		font-size: 0.9rem;
	}
	.gnavi_botttom .btn a::before {
		content: "";
		position: absolute;
		right: 20px;
		width: 7px;
		height: 7px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: calc(50% - 4px);
	}
	.gnavi_botttom .btn a::after{
		content: "";
		position: absolute;
		right: 21px;
		width: 10px;
		height: 1px;
		border-top: 2px solid #fff;
		top: calc(50% - 1.5px);
	}

	
}

cta_area_botttom */
.cta_area_botttom{
	background: #17A2B8;
	padding: 10px;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 1;
}
.cta_area_botttom p{
	color: #ffffff;
	text-align: center;

	font-size: 1rem;
	letter-spacing: 1px;
}
.cta_area_botttom p span{
	font-size: 1.2rem;
	font-weight: bold;
}

.cta_area_botttom ul{
	display: flex;
	justify-content: center;
	width: 900px;
	margin: 0 auto;
}
.cta_area_botttom .btn{
	text-align: center;
	padding: 10px 0 0;
	margin: 0 10px;
}
.cta_area_botttom .btn a{
	font-size: 1rem;
    color: #17A2B8;
    font-weight: bold;
    padding: 10px;
    width: 250px;
    margin: 0 auto;
    border-radius: 100px;
    background-color: #ffffff;
    text-decoration: none;
    display: block;
    position: relative;
}
.cta_area_botttom .btn a::before {
	content: "";
	position: absolute;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #17A2B8;
    border-right: 2px solid #17A2B8;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	top: calc(50% - 4px);
}
.cta_area_botttom .btn a::after{
	content: "";
	position: absolute;
    right: 21px;
    width: 10px;
    height: 1px;
    border-top: 2px solid #17A2B8;
	top: calc(50% - 1.5px);
}
.cta_area_botttom .btn a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 480px) {
	.cta_area_botttom ul{
		width: auto;
	}
	.cta_area_botttom p{
		font-size: 0.8rem;
		font-feature-settings: "palt";
	}
	.cta_area_botttom p span{
		font-size: 1rem;
		font-weight: normal;
	}
	.cta_area_botttom .btn a{
		font-size: 0.9rem;
	}

}

/* //concept_box01
--------------------------*/

/*--------------------------
concept_box02 */
.concept_box02{
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.concept_box02 div{
	font-size: 1.6rem;
	font-weight: bold;
    margin: 10px 0 30px 0;
	color: #212529;
}
.concept_box02 p{
	line-height: 1.7;
	margin-bottom: 40px;
}
.concept_box02 figure{
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.concept_box02 figure {
		width: 70%;
	}
}
@media screen and (max-width: 480px) {
	.concept_box02{
		width: 95%;
		margin: 0 auto;
	}
	.concept_box02 div{
		font-size: 1.2rem;
		margin: 10px 0 20px 0;
	}
	.concept_box02 p{
		text-align: left;
		font-size: 0.9rem;
	}
	.concept_box02 figure{
		width: 97%;
	}
}
/* //concept_box02
--------------------------*/

/*--------------------------
works */
.works{
	background: url(../img/work_bg.png) no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 60px 0;
	margin: 100px 0 0;
}

.works_inn{
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
}

.works_box01{
	background: rgba(255,255,255,0.6);
	box-shadow: 0px 6px 13px #00000048;
	border-radius: 10px;
	padding: 40px 20px;
	text-align: center;
}

.works_box01 h3{
	font-size: 2rem;
	color: #22A2B8;
	padding-bottom: 5px;
	border-bottom: 3px dotted #FCB91C;
	margin-bottom: 20px;
	display: inline-block;
	font-weight: bold;
}
.works_box01 h3 span{
	font-size: 0.8em;
}
.works_box01 p{
	line-height: 1.7;
}
@media screen and (max-width: 480px) {
	.works{
		padding: 60px 0 10px;
	}
	.works_inn{
		width: 95%;
	}
	.works_box01{
		padding: 30px 10px;
		margin-top: 40px;
	}
	.works_box01 h3 {
    	font-size: 1.3rem;
	}
	.works_box01 p{
		text-align: left;
		font-feature-settings: "palt";
		font-size: 0.9rem;
	}
}
.works_box02{
	text-align: center;
	margin: 80px 0;
}
.works_box02 h3{
	display: inline-block;
	color: #22A2B8;
	border-bottom: 3px solid #22A2B8;
	position: relative;
	padding-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
}
.works_box02 h3::after{
	content: "";
	position: absolute;
    right: calc(50% - 5px);
	bottom: -7px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #22A2B8;
    border-right: 3px solid #22A2B8;
	background-color: #D6EFF7;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.works_box02 ul{
	display: flex;
	justify-content: space-around;
	margin: 40px 0;
	
}
.works_box02 ul li{
	width: 30%;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 6px 13px #00000048;
	padding: 40px 20px 20px;
}

.works_box02 ul li figure{
	height: 100px;
	width: auto;
	margin: 0 auto;
}
.works_box02 ul li div{
	font-size: 1.1rem;
	font-weight: bold;
	margin: 20px 0;
}
.works_box02 ul li p{
	line-height: 1.7;
}
@media screen and (max-width: 480px) {
	.works_box02{
		margin: 60px 0;
	}
	.works_box02 h3{
		font-size: 1.3rem;
	}
	.works_box02 ul{
		flex-wrap: wrap;
	}
	.works_box02 ul li{
		width: 47%;
		padding: 30px 10px 10px;
		margin-bottom: 20px;
	}
	.works_box02 ul li figure{
		height: 65px;
	}
	.works_box02 ul li div{
		margin: 15px 0;
		font-size: 1rem;
	}
	.works_box02 ul li p{
		text-align: left;
		font-size: 0.9rem;
	}
}

.works_box03{
	background: #EDF8FC 0% 0% no-repeat padding-box;
	border: 2px solid #FFB91C;
	text-align: center;
	position: relative;
	padding: 20px;
	margin: 140px 0 100px;
}
.works_box03 h3{
	width: 300px;
	background: #FFB91C 0% 0% no-repeat padding-box;
	border-radius: 7px;
	padding: 10px 30px;
	color: #fff;
	font-size: 1.2rem;
	position: absolute;
	top: -21px;
	left: calc(50% - 150px);
	font-weight: bold;
}
.works_box03 ul{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 90px 0 0;
}
.works_box03 ul li{
	width: 30%;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 6px 13px #00000048;
	padding: 40px 20px 20px;
	margin-bottom: 5%;
	position: relative;
}
.works_box03 ul li div{
	font-size: 1.1rem;
	font-weight: bold;
	margin: 0 0 20px;
	line-height: 1.7;
}

.works_box03 ul li p{
	line-height: 1.7;
	text-align: left;
	font-feature-settings: "palt";
}

.works_box03 ul li:nth-child(1)::after{
	content: "POINT.01";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.works_box03 ul li:nth-child(2)::after{
	content: "POINT.02";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.works_box03 ul li:nth-child(3)::after{
	content: "POINT.03";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.works_box03 ul li:nth-child(4)::after{
	content: "POINT.04";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.works_box03 ul li:nth-child(5)::after{
	content: "POINT.05";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.works_box03 ul li:nth-child(6)::after{
	content: "POINT.06";
	font-size: 1.8rem;
	color: #FFB91C;
	display: block;
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
@media screen and (max-width: 480px) {
	.works_box03{
		margin: 70px 0;
		padding: 20px 20px 0;
	}
	.works_box03 ul{
		display: block;
		margin: 50px 0 0;
	}
	.works_box03 ul li{
		width: 100%;
	    padding: 20px 10px;
		margin-bottom: 13%;
	}
	.works_box03 ul li:nth-child(1)::after,.works_box03 ul li:nth-child(2)::after,.works_box03 ul li:nth-child(3)::after,.works_box03 ul li:nth-child(4)::after,.works_box03 ul li:nth-child(5)::after,.works_box03 ul li:nth-child(6)::after{
		font-size: 1.3rem;
	    top: -10px;
	}
	.works_box03 ul li div{
		font-size: 1rem;
		line-height: 1.7;
		margin: 10px 0 20px;
	}
	.works_box03 h3{
		font-size: 1.1rem;
		width: 80%;
	    left: 10%;
	}
	.works_box03 ul li p{
		font-size: 0.9rem;
	}
}
/* //works
--------------------------*/

/*--------------------------
employee_title */

.employee_title{
	background: url(../img/employee_title_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.employee_title_inn{
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	padding: 10vw 0;
}
.employee_title_inn div{
	position: relative;
}
.employee_title_inn div::before{
	position: absolute;
	content: "";
	display: block;
	width: 10rem;
	height: 3.2rem;
	background: rgba(255,255,255,0.7);
	top: -5px;
	left: -5px;
}
.employee_title_inn div::after{
	position: absolute;
	content: "";
	display: block;
	width: 15rem;
	height: 2.55rem;
	background: rgba(255,255,255,0.7);
	bottom: -5px;
	left: -5px;
}
h2.rectuit_title{
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 480px) {
	.employee_title{
		background: url(../img/employee_title_bg_sp.png) no-repeat;
		background-size: cover;
		background-position: center;
	}
	.employee_title_inn{
		padding: 2vw 0 43vw;
	}
	.employee_title_inn div::before{
		height: 2.7rem;
		width: 9rem;
	}
	.employee_title_inn div::after{
		height: 2.2rem;
		width: 13.5rem;
	}
}
/* //employee_title
--------------------------*/

/*--------------------------
employee_area */


.employee_area{
	background: url("../img/bg_icon03.png") no-repeat, url("../img/bg_icon04.png") no-repeat, url("../img/bg_icon05.png") no-repeat;
	background-position: top 20% left 0, top 50% right 0, bottom 21% left 0;
	background-size: 140px auto,140px auto,140px auto;
}

.employee_area_inn{
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
}
.employee_area_inn ul{
	margin: 100px 0;
}
.employee_area_inn ul li{
	display: flex;
	justify-content: space-between;
	margin: 250px 0;
}
.employee_area_inn ul li:nth-child(even){
	flex-direction: row-reverse;
}
.employee_area_inn ul li figure{
	width: 40%;
}
.employee_area_inn ul li > div{
	width: 50%;
}
.employee_area_inn ul li h3{
	display: inline-block;
	font-size: 2.2rem;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	position: relative;
	padding: 20px;
	color: #22A2B8;
}
.employee_area_inn ul li:nth-child(even) h3{
	color: #FCB91C;
}
.employee_area_inn ul li h3::before{
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 1px;
	top: 10px;
	left: -10px;
	background-color: #333;
}
.employee_area_inn ul li h3::after{
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 30px;
	top: 0;
	left: 0;
	background-color: #333;
}
.employee_area_inn ul li h3 span::before{
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 1px;
	bottom: 10px;
	right: -10px;
	background-color: #333;
}
.employee_area_inn ul li h3 span::after{
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 30px;
	bottom: 0;
	right: 0;
	background-color: #333;
}
.employee_area_inn ul li dl{
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}
.employee_area_inn ul li dl dt{
	width: 20%;
	margin: 5px 0;
}
.employee_area_inn ul li dl dd{
	width: 78%;
	margin: 5px 0;
}
.employee_area_inn ul li > div > div{
	font-size: 1.3rem;
	font-weight: bold;
	margin: 30px 0 20px;
	line-height: 1.7;
}
.employee_area_inn ul li > div > p{
	line-height: 1.7;
}
@media screen and (max-width: 480px) {
	.employee_area{
		background: none;
	}
	.employee_area_inn{
		width: 100%;
	}
	.employee_area_inn ul li{
		margin: 80px 0;
	}
	.employee_area_inn ul li{
		display: block;
	}
	.employee_area_inn ul li figure{
		width: 86%;
	}
	.employee_area_inn ul li:nth-child(even) figure{
		margin-left: auto;
	}
	.employee_area_inn ul li > div{
		width: 95%;
		margin: 30px auto;
	}
	.employee_area_inn ul li h3{
		font-size: 1.4rem;
	}
	.employee_area_inn ul li dl{
		margin: 20px 0;
		font-size: 0.9rem;
		font-feature-settings: "palt";
	}
	.employee_area_inn ul li > div > div{
		font-size: 1.2rem;
	}
	.employee_area_inn ul li > div > p{
		font-size: 0.9rem;
	}
}
/* //employee_area
--------------------------*/



/*--------------------------
faq */
.faq{
	width: 90%;
	max-width: 1300px;
	margin: 140px auto 200px;
}


.accordion {
	width:90%;
	margin: 40px auto;
}
.accordion li{
	list-style: none;
	color: #333333;
}
.accordion p{
	cursor: pointer;
	font-weight: bold;
	padding: 30px 0 18px 60px;
	position: relative;
	font-size: 1.1rem;
	border-top: 1px solid #cfcfcf;
	margin:10px 0;
}
.accordion li:nth-child(1) p{
	border-top: none;
}
.accordion p::before{
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 50px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #C4C4C4;
    border-right: 2px solid #C4C4C4;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
	transition: all 0.3s ease 0.1s;
}
.accordion p.active::before{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.accordion li p::after{
	content: "Q";
	display: block;
	position: absolute;
	top: calc(50% - 10px);
	left: 10px;
	width: 30px;
	line-height:  30px;
	text-align: center;
	color: #22A2B8;
	font-size: 1.5rem;
}
.accordion .aopen_area {
	display: none;
}
.accordion .aopen_area_inn{
	padding: 5px 0 22px 60px;
	line-height: 1.7;
	position: relative;
}
.accordion .aopen_area_inn::after{
	content: "A";
	display: block;
	position: absolute;
	top: calc(50% - 14px);
	left: 10px;
	width: 30px;
	line-height:  30px;
	text-align: center;
	color: #FCB91C;
	font-size: 1.5rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.accordion{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.faq{
		margin: 80px auto;
		width: 95%;
	}
	.accordion{
		width: 100%;
	}
	.accordion p{
	    padding: 30px 20px 18px 40px;
		font-size: 0.9rem;
	}
	.accordion li p::after{
		font-size: 1rem;
		left: 5px;
	}
	.accordion p::before{
		right: 5px;
	}
	.accordion .aopen_area_inn{
		font-size: 0.9rem;
		padding: 5px 0 22px 40px;
	}
	.accordion .aopen_area_inn::after{
		left: 5px;
		font-size: 1rem;
	}
	.faq_visual{
		height: 60vw;
		text-align: center;
		overflow: hidden;
	}
	.faq_visual img{
		height: 100%;
		width: auto;
		margin-left: -30vw;
	}
}



/* //faq
--------------------------*/



/*--------------------------
cta */
.cta{
	background: url(../img/cta_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.cta_inn{
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 80px 0;
}
.cta_inn h3{
	font-size: 1.5rem;
	font-weight: bold;
	margin: 40px 0 30px;
}
.cta_inn ul{
	width: 40%;

}
.cta_inn ul.btn_s{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.cta_inn ul.btn_s li{
	width: 47%;
	margin: 0 0 30px;
}
.cta_inn ul li a{
	display: block;
	padding: 20px;
	border: 2px solid #22A2B8;
	color: #22A2B8;
	border-radius: 100px;
	text-align: center;
	position: relative;
}
.cta_inn ul li a:visited{
	color: #22A2B8;
}
.cta_inn ul li a::before {
	content: "";
	position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #17A2B8;
    border-right: 2px solid #17A2B8;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	top: calc(50% - 7px);
}
.cta_inn ul li a::after{
	content: "";
	position: absolute;
    right: 20px;
    width: 20px;
    height: 1px;
    border-top: 2px solid #17A2B8;
	top: calc(50% - 1px);
}
.cta_inn ul li a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
	.cta_inn ul{
		width: 60%;
	}
}
@media screen and (max-width: 480px) {
	.cta_inn{
		padding: 30px 0;
	}
	.cta_inn h3{
		font-size: 1.2rem;
	}
	.cta_inn ul {
		width: 100%;
	}
	.cta_inn ul li a{
		padding: 15px 0;
	    font-size: 0.9rem;
		font-weight: bold;
	}
	.cta_inn ul li a::before{
		width: 10px;
		height: 10px;
	    right: 15px;
		top: calc(50% - 4px);
	}
	.cta_inn ul li a::after {
		content: "";
		position: absolute;
		right: 15px;
		width: 15px;
		height: 1px;
		border-top: 2px solid #17A2B8;
		top: calc(50% - 0px);
	}
	.cta_inn ul.btn_s li{
		width: 48.5%;
		margin: 0 0 20px;
	}
}
/* //employee_area
--------------------------*/

/*--------------------------
footer */
.footer{
	margin-bottom: 90px;
	text-align: center;
	padding: 0;
	font-weight: bold;
	color: #212529;
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Hiragino Sans,"Noto Sans JP",sans-serif;
	
}
@media screen and (max-width: 480px) {
	.footer{
		font-size: 0.7rem;
		padding: 0 0;
		
	}
}



/* //footer
--------------------------*/


.pagetop {
  bottom: 337px;
  right: 3vw;
  z-index: 99999;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 0.1rem black);
          filter: drop-shadow(0 0 0.1rem black);
	opacity: 0.8;
	cursor: pointer;
}

.pagetop.active {
  bottom: 100px;
  right: 1vw; }

.f_mail{
	background-color: #F2F2F9;
	padding:1.5rem 0;
	border-bottom: 3px solid #17a2b8;
}
.f_mail h3{
	margin:1.2rem 0 1.2em;
    clear: both;
	font-size: 1.75rem;
	font-weight: 500;
    line-height: 1.2;
	color: #28325A;
}
.f_mail a{
	font-size: 1.25rem;
    font-weight: 300;
	color: #337ab7;
	margin: 0 0 1.5em;
    display: inline-block;
}
.f_mail a:hover{
	text-decoration:underline;
}
.f_mail .lead{
	font-size: 1.25rem;
    font-weight: 300;
	color: #28325A;
	line-height: 140%;
}
.f_mail .lead .i_tel{
	background:url(http://www.fujiclean.tokyo/wp/wp-content/uploads/2021/07/f-tel.png);
	background-repeat: no-repeat;
    background-size: inherit;
    width: 24px;
    height: 30px;
    margin: 0 12px -6px 0;
    display: inline-block;
}
.f_mail .lead span{
	font-weight: 700!important;
}
.f_mail .lead small{
	font-size: 80%;
    font-weight: 400;
}
.f_nav{
    background-color: #fff;
    display: inline-block;
    width: 100%;
}
.f_nav ul{
	margin: 12px 0 10px;
    display: inherit;
}
.f_nav ul li{
	float: left;
	margin-bottom: 0;
    font-size: 14px;
}
.f_nav ul li a{
	border-left: 1px solid var(--color-footer-border,#ccc);
    padding: 0 1em;
	color: #464646;
	font-weight: normal;
}
.f_nav ul li:last-child a{
	border-right: 1px solid var(--color-footer-border,#ccc);
}
.copryRightTxt{
	font-size: 80%;
    font-weight: 400;
	background-color: #F2F2F9;
	padding:.5rem 0!important;
}
@media screen and (max-width: 768px) {
.f_nav{
	display:none;
}
}





