@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/*フォントサイズを変更しやすくするための設定*/
html{
	font-size: 62.5%; /*16px x 62.5% =10px*/
}

/*フォント種類・フォントカラー・フォントサイズの指定*/
body{
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #111111;
	font-size: 1.6rem;
	line-height: 1.7;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-image: url("../img/common/img_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/*画像のレスポンシブ対応*/
img{
  max-width: 100%;
  height: auto; 
}
a{
	color: #111111;
}
a:hover{
	text-decoration: none;
}
li{
	list-style: none;
}
.inner{
	max-width: 1140px;
	margin: 0 auto;
}
.text-center{
	text-align: center;
}
.pcOnly{
	display: block;
}
.spOnly{
	display: none;
}
.flexWrapper{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
h2{
	font-size: 3.5rem;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 1.5;
	text-align: center;
}
h3{
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 3px;
	text-align: center;
}

/* secTitle start */
.secTitle-01 .wrapper{
	display: flex;
	justify-content: flex-start!important;
	align-items: flex-end;
}
.secTitle-01-left{
	margin-right: 80px;
}
.secTitle-01-left p{
	font-size: 1.8rem;
	font-weight: bold;
	color: #AE1E25;
	margin-bottom: 15px;
	padding-left: 23px;
	line-height: 1.5;
	position: relative;
}
.secTitle-01-left p::before{
	content: url("../img/common/svg_01.svg");
	display: inline-block;
	width: 15px;
	height: 22px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.secTitle-01-left h2{
	font-weight: bold;
	text-align: left;
}
.secTitle-01-right p{
	letter-spacing: 3px;
	font-weight: bold;
	padding-bottom: 5px;
}
/* secTitle end */

/* btn start */
.btn{
	display: inline-block;
}
.btn-inner{
	display: flex;
	align-items: center;
}
.btn span{
	font-size: 2rem;
	color: black;
	margin-right: 30px;
}
.btn svg{
	overflow: unset;
}
.circle-anim {
	fill: none;
	stroke: black;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-dasharray: 283;
	stroke-dashoffset: 0;
}
/* 円のアニメーション（ホバーで再生） */
a:hover .circle-anim {
	animation: draw .5s linear forwards;
}
@keyframes draw {
	0% { stroke-dashoffset: 283; }
	100% { stroke-dashoffset: 0; }
}
/* 矢印ライン・頭 */
.arrow-line,
.arrow-head {
	stroke: #000000;
	stroke-width: 1.5;
	stroke-linecap: round;
	pointer-events: none;
	transition: transform 0.4s ease;
}
/* 円アニメ終了後に矢印が動く */
a:hover .arrow-group {
	animation: arrowMove 0.4s ease forwards;
	animation-delay: .5s; /* 円のアニメ終了後に発火 */
}
@keyframes arrowMove {
	from { transform: translateX(0); }
	to { transform: translateX(8px); } /* 右へ少し動く */
}
/* SVGグループの変形を有効化 */
.arrow-group {
	transform-box: fill-box;
	transform-origin: center;
}
/* btn end */

/* header start */
.header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.header .inner{
	max-width: 100%;
	padding: 10px 10px 10px 50px;
}
.header .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header h1{
	font-size: 2.2rem;
	font-weight: bold;
}
.header .right-wrapper{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header-btn{
	box-sizing: border-box;
	height: 90px;
	background-color: #171D61;
	text-align: center;
	padding: 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: solid 2px #171D61;
}
.header-btn:hover{
	background-color: #fff;
	transition: 0.3s;
}
.header-btn p{
	font-size: 1.4rem;
	font-weight: bold;
	color: white;
	padding-top: 35px;
	line-height: 1;
	position: relative;
}
.header-btn:hover p{
	color: #171D61;
	transition: 0.3s;
}
.header-btn p::before{
	content: "";
	display: inline-block;
	width: 32px;
	height: 24px;
	background-image: url("../img/common/header/svg_01_white.svg"),url("../img/common/header/svg_01_color.svg");
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-size:cover,0 0;
}
.header-btn:hover p::before{
	background-size:0 0,cover;
}
/* header end */

/*nav-morph start*/
.hamburger-morph {
  z-index: 1000;
  cursor: pointer;
	padding: 0;
	margin-left: 10px;
}
.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}
.hamburger-morph__line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-morph:hover .hamburger-morph__line{
	stroke: #171D61;
}
.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}
.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}
.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
	background-color: #f9f9f9;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}
.morph-menu-inner{
	box-sizing: border-box;
	max-width: 1140px;
}
.nav-morph .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center
}
.nav-morph .left{
	box-sizing: border-box;
	width: 440px;
}
.nav-morph .left .box{
	margin-bottom: 35px;
}
.nav-morph .left .box:last-of-type{
	margin-bottom: 0;
}
.nav-morph .left .box.logo{
	position: relative;
	margin-bottom: 45px;
}
.nav-morph .left .box.logo .sns{
	position: absolute;
	bottom: 0;
	right: 0;
}
.nav-morph .left .box.logo .sns a{
	display: inline-block;
}
.nav-morph .left .box.logo .sns a:hover{
	opacity: 0.7;
	transition: 0.3s;
}
.nav-morph .left .box.logo .sns a:first-of-type{
	margin-right: 10px;
}
.nav-morph .left .text p{
	font-weight: bold;
	letter-spacing: 3px;
}
.nav-morph .left .tel span{
	display: inline-block;
	font-size: 2.2rem;
	font-weight: bold;
	color: #171D61;
}
.nav-morph .left .tel p{
	font-size: 5rem;
	font-weight: bold;
	line-height: 1.5
}
.nav-morph .left .mail{
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	background-color: #171D61;
	padding: 10px 0;
	text-align: center;
	border-radius: 20px;
}
.nav-morph .left .btn span{
	color: white;
}
.nav-morph .left .btn svg {
	width: 80px;
	height: 80px;
}
.nav-morph .left .circle-anim {
	stroke: white;
}
.nav-morph .left .arrow-line,
.nav-morph .left .arrow-head {
	stroke: #fff;
}
.nav-morph .right{
	box-sizing: border-box;
  width: calc(100% - 440px - 80px);
}
.nav-morph .right ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.nav-morph .right ul li{
	box-sizing: border-box;
	width: calc(50% - 25px);
	border-bottom: solid 1px #DEDEDE;
	margin-bottom: 80px;
}
.nav-morph .right ul li:nth-of-type(5),
.nav-morph .right ul li:last-of-type{
	margin-bottom: 0;
}
.nav-morph .right ul li a{
	display: block;
	position: relative;
	padding-bottom: 20px;
}
.nav-morph .right ul li a p{
	font-size: 2.6rem;
	font-weight: bold;
}
.nav-morph .right ul li a:hover p,
.nav-morph .right ul li a:hover span{
	color: #171D61;
	transition: 0.3s;
}
.nav-morph .right ul li a span{
	display: inline-block;
	font-size: 1.3vw;
	font-weight: bold;
	margin-top: 7px;
}
.nav-morph .right ul li a div{
	position: absolute;
	bottom: 15px;
	right: 10px;
}
.nav-morph .right ul li a:hover div{
	right: 0;
	transition: 0.3s;
}
/*nav-morph end*/

/* pageHeader start */
.pageHeader{
	position: relative;
	overflow: hidden;
}
.pageHeader::before{
	display: inline-block;
	content: url("../img/common/pageHeader/img_01.png");
	position: absolute;
	top: -60%;
	right: 50px;
	animation: rotateAnimation 15s linear infinite;
}
.pageHeader .inner{
	max-width: 90%;
	padding: 230px 0 200px;
	position: relative;
	border-bottom: solid 1px #D7DAF4;
}
/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pageHeader .wrapper{
	max-width: 80%;
	margin: 0 auto;
}
.pageHeader p{
	font-size: 12rem;
}
.pageHeader h1{
	font-size: 2.5rem;
	padding-left: 30px;
	line-height: 1;
	position: relative;
	padding-bottom: 3px;
}
.pageHeader h1::before{
	content: url("../img/common/pageHeader/svg_01.svg");
	height: 32px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.pageHeader .link{
	width: 100%;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.pageHeader .link ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.pageHeader .link ul li{
	margin-right: 30px;
}
.pageHeader .link ul li a{
	display: block;
	padding-right:23px;
	position: relative;
}
.pageHeader .link ul li a::before{
	content: url("../img/common/pageHeader/svg_02.svg");
	display: inline-block;
	width: 19px;
	height: 19px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.pageHeader .link ul li a:hover::before{
	top: 55%;
	transform: translateY(-45%);
	transition: 0.3s;
}
/* pageHeader end */

.bp-aod-bg{
	background-image: linear-gradient(rgb(244, 244, 255), rgb(255, 255, 255));
	padding: 150px 0 120px;
}

/* common-bp (お取引先企業様例) start */
.common-bp .inner{
	max-width: 100%;
}
.common-bp .secTitle-01{
	max-width: 1140px;
	margin: 0 auto;
	margin-bottom: 100px;
}
.common-bp .loop{
	display: flex;
	justify-content: flex-start;
}
.common-bp .loop span{
	display: inline-block;
}
.common-bp .slick-track{
	display: flex!important;
	align-items: center!important;
}
.common-bp .slide-items01{
	margin-bottom: 50px;
}
.common-bp .slick-container ul{
	display: flex!important;
	justify-content: center!important;
}
.common-bp .slick-container ul li{
	display: inline-block;
	width: auto!important;
	margin: 0 15px;
}
.common-bp .slick-container ul li p{
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 3px;
	padding: 20px 50px;
	border-radius: 15px;
	border-style: solid;
	border-width: 3px;
}
.common-bp .slick-container ul li.fujisoft p{
	border-color: #004499;
}
.common-bp .slick-container ul li.sechitech p{
	border-color: #0061AF;
}
.common-bp .slick-container ul li.hitatijyohotsushinenj p{
	border-color: #231F20;
}
.common-bp .slick-container ul li.marble p{
	border-color: #A88567;
}
.common-bp .slick-container ul li.toshibajyohokabu p{
	border-color: #E61E1E;
}
.common-bp .slick-container ul li.kabuhitatijyohotsushinenj p{
	border-color: #231F20;
}
.common-bp .slick-container ul li.chugaiseiyaku p{
	border-color: #0B41CD;
}
.common-bp .slick-container ul li.hondagikenkogyo p{
	border-color: #CC0000;
}
.common-bp .slick-container ul li.hondagikenkenkyu p{
	border-color: #CC0000;
}
.common-bp .slick-container ul li.hondaracing p{
	border-color: #CC0000;
}
.common-bp .slick-container ul li.hondatecnofort p{
	border-color: #00A09C;
}
.common-bp .slick-container ul li.canon p{
	border-color: #CC0000;
}
.common-bp .slick-container ul li.sky p{
	border-color: #008BD5;
}
/* common-bp (お取引先企業様例) end */

/* common-aod (派遣実績事例) start */
.common-aod{
	margin-top: 130px;
}
.common-aod .inner{
	border-top: solid 1px #D7DAF4;
	padding: 120px 0 0;
}
.common-aod .secTitle-01{
	margin-bottom:30px;
	padding: 0 20px;
}
.common-aod ul{
	padding-top: 40px;
}
.common-aod ul li{
	width: 100%;
	padding: 20px;
}
.common-aod ul li .container{
	display: flex;
	justify-content: center;
	align-items: stretch;
	background-color: #fff;
	border-radius: 20px;
	padding: 10px;
	box-shadow: 0 0 10px rgba(23, 29, 97, 0.1);
}
.common-aod ul li .left{
	box-sizing: border-box;
	width: 50%;
	border-radius: 15px;
	overflow: hidden;
}
.common-aod ul li .left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.common-aod ul li .right{
	box-sizing: border-box;
	width: 50%;
	padding: 40px 50px 10px;
	text-align: left;
}
.common-aod ul li .right h3{
	font-size: 2.5rem;
	font-weight: bold;
	text-align: left;
}
.common-aod ul li .right .otherInfo .wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.common-aod ul li .right .otherInfo{
	margin-top: 30px;
}
.common-aod ul li .right .otherInfo .item{
	margin-bottom: 30px;
}
.common-aod ul li .right .otherInfo .item.item-keizokunensuu{
	margin-bottom: 0;
}
.common-aod ul li .right .otherInfo span{
	font-size: 1.4rem;
	font-weight: bold;
	color: #171D61;
}
.common-aod ul li .right .otherInfo p{
	font-size: 1.8rem;
}
.common-aod ul li .right .item-hakensaki{
	max-width: 250px;
	margin-right: 70px;
}
.slick-prev, .slick-next{
	width: 100px!important;
	height: 76px!important;
	top: 0!important;
	z-index: 5;
}
.slick-prev{
	display: none!important;
}
.slick-next{
	right: 20px!important;
}
.slick-prev:before{
	content: url("../img/common/svg_slider_prev.svg")!important;
}
.slick-next:before{
	content: url("../img/common/svg_slider_next.svg")!important;
}
/* common-aod (派遣実績事例) end */

/* common-flow (流れ) start */
.common-flow .secTitle-01{
	margin-bottom: 100px;
}
.common-flow{
	padding: 150px 0;
}
.common-flow .content ul li{
	padding: 50px 0;
	margin-bottom: 70px;
	border: solid 3px #222222;
	border-radius: 20px;
	position: relative;
}
.common-flow .content ul li:last-of-type{
	margin-bottom: 0;
}
.common-flow .content ul li::before{
	content: url("../img/common/flow/svg_01.svg");
	display: inline-block;
	width: 22px;
	height: 50px;
	position: absolute;
	bottom: -28px;
	left: 74px;
}
.common-flow .content ul li:last-of-type::before{
	content: none;
}
.common-flow .content ul li .wrapper{
	display: flex;
	align-items: center;
}
.common-flow .content ul li .wrapper .left{
	border-right: solid 3px #222222;
	padding: 0 50px;
}
.common-flow .content ul li .wrapper .left p{
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
}
.common-flow .content ul li .wrapper .left p span{
	display: block;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
}
.common-flow .content ul li .wrapper .right{
	padding: 0;
}
.common-flow .content ul li .wrapper .right .icon{
	width: 250px;
	text-align: center;
}
.common-flow .content ul li .wrapper .right .text{
	box-sizing: border-box;
	width: calc(100% - 250px);
	padding-right: 70px;
}
.common-flow .content ul li .wrapper .right h3{
	font-weight: bold;
	text-align: left;
	margin-bottom: 15px;
}
/* common-flow (流れ) end */

/* common-greeting (代表挨拶) start */
.common-greeting{
	background-color: #f9f9f9;
	padding: 150px 0;
}
.common-greeting .inner{
	max-width: 100%;
	padding: 0 7vw;
}
.common-greeting .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.common-greeting .secTitle-01 .wrapper{
	display: block;
}
.common-greeting .left{
	position: relative;
}
.common-greeting .left .secTitle-01-left{
	margin-right: 0;
	margin-bottom: 30px;
}
.common-greeting .secTitle-01-right p{
	line-height: 2;
}
.common-greeting .left{
	box-sizing: border-box;
	width: 230px;
	height: 450px;
}
.common-greeting .left .name{
	display: flex;
	position: absolute;
	bottom: 0;
	right: 0;
}
.common-greeting .left .name p{
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 2;
	writing-mode: vertical-rl;
	font-feature-settings: normal;
	letter-spacing: 10px;
}
.common-greeting .left .name p span{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2;
	writing-mode: vertical-rl;
	font-feature-settings: normal;
	letter-spacing: 5px;
}
.common-greeting .right{
	display: block;
	width: calc(100% - 230px - 7vw);
}
.common-greeting .right p{
	margin-top: 10px;
	letter-spacing: 2px;
}
.common-greeting .right p:first-of-type{
	margin-top: 0;
}
/* common-greeting (代表挨拶) end */

/* areaContact start */
.areaContact{
	background: #f5f5f5;
	padding: 100px 0 30px;
}
.areaContact .inner{
	max-width: 70%;
	min-width: 1140px;
	background-color: #171D61;
	padding: 15px;
	border-radius: 30px;
}
.areaContact .block{
	overflow: hidden;
}
.areaContact .upper{
	border-radius: 20px 20px 0 0;
}
.areaContact .upper div{
	overflow: hidden;
}
.areaContact .upper div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.areaContact .bottom{
	background-color: #fff;
	padding: 30px 50px;
	border-radius: 0 0 20px 20px;
}
.areaContact .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.areaContact .bottom  p{
	font-size: 2.2rem;
	letter-spacing: 2px;
	line-height: 2;
}
.areaContact .btn span{
	font-size: 3rem;
	margin-right: 50px;
}
.areaContact .btn svg{
	width: 120px;
	height: 120px;
}
@media screen and (max-width:1500px){
	.areaContact .btn svg{
		width: 100px;
		height: 100px;
	}
	.areaContact .bottom  p{
		font-size: 2rem;
	}
	.areaContact .btn span{
		font-size: 2.5rem;
		margin-right: 40px;
	}
}
/* areaContact end */

/*footer start*/
.footer{
	padding: 0;
	background-color: #f5f5f5;
}
.footer .inner{
	padding: 50px 0 45px;
}
.footer .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .left{
	padding-left: 70px;
}
.footer .left .logo{
	margin-bottom: 20px;
}
.footer .left .copyright{
	font-size: 1.3rem;
	margin-top: 30px;
	margin-bottom: 25px;
	text-align: left;
}
.footer .right{
	width: 500px;
}
.footer .right nav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.footer .right nav ul li{
	width: 250px;
	margin-bottom: 25px;
}
.footer .right nav ul li a{
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 2px;
	transition: 0.3s;
}
.footer .right nav ul li a:hover{
	color: #777777;
}
/*footer end*/

/* スクロールでフェードイン start */
.fadein {
	opacity: 0;
	transition : 1000ms;
}
.fadein.scrollin{
	opacity: 1;
}
.fadein200 {
	opacity: 0;
	transform : translate(0, 50px);
	transition : 1000ms;
	transition-delay: 0.3s;
}
.fadein200.scrollin{
	opacity: 1;
	transform: translate(0, 0);
}
.fadein300 {
	opacity: 0;
	transform : translate(0, 50px);
	transition : 1000ms;
	transition-delay: 0.6s;
}
.fadein300.scrollin{
	opacity: 1;
	transform: translate(0, 0);
}
.fadein400 {
	opacity: 0;
	transform : translate(0, 50px);
	transition : 1000ms;
	transition-delay: 0.9s;
}
.fadein400.scrollin{
	opacity: 1;
	transform: translate(0, 0);
}
/* スクロールでフェードイン end */

/* 読み込みでフェードイン start */
.fadein-ready {
	opacity: 0;
	transition : 1000ms;
}
.fadein-ready.scrollin{
	opacity: 1;
}
/* 読み込みでフェードイン end */

/* スクロールでフェードイン start */
.fadein-img {
	opacity: 0;
	transition : 1000ms;
}
.fadein-img.scrollin{
	opacity: 1;
}
/* スクロールでフェードイン end */



@media screen and (max-width:767px){
	
	body{
      font-size: 1.4rem;
  }
  .inner{
		box-sizing: border-box;
		max-width: 100%;
		padding: 0 20px;
  }
  img{
      width: 100%;
      height: auto;
  }
  .pcOnly{
		display: none;
  }
  .spOnly{
		display: block;
  }
	h2{
		font-size: 2.5rem;
		font-weight: bold;
		letter-spacing: 2px;
		text-align: center;
	}
	h3{
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 2px;
		text-align: center;
	}
	
	
	
	/* secTitle start */
	.secTitle-01 .wrapper{
		display: block;
	}
	.secTitle-01-left{
		margin-right: 0;
	}
	.secTitle-01-left p{
		font-size: 1.5rem;
		margin-bottom: 10px;
		padding-left: 18px;
		line-height: 1.3;
	}
	.secTitle-01-right{
		margin-top: 20px;
	}
	.secTitle-01-left p::before{
		content: url("../img/common/svg_01_sp.svg");
		width: 8px;
		height: 15px;
	}
	/* secTitle end */
	
	

	/* btn start */
	.btn svg{
		width: 70px;
		height: 70px;
	}
	/* btn end */
	
	

	/* header start */
	.header .inner{
		padding: 10px;
	}
	.header h1 {
    font-size: 1.4rem;
    font-weight: bold;
	}
	.header-btn{
		height: 50px;
		padding: 0 10px;
	}
	.hamburger-morph.header-btn{
		padding: 0;
	}
	/* header end */
	
	

	/*nav-morph start*/
	.nav-morph{
		padding-top: 80px;
		display: block;
	}
	.nav-morph .wrapper{
		flex-wrap: wrap;
		overflow: inherit;
	}
	.morph-menu-inner{
		max-width: 100%;
		padding: 0 20px;
	}
	.nav-morph .left,
	.nav-morph .right{
		width: 100%!important;
	}
	.nav-morph .left{
		order: 2;
		padding: 25px 0 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.nav-morph .left .box{
		margin-bottom: 30px;
	}
	.nav-morph .left .logo{
		width: 100%;
		text-align: left;
		position: absolute!important;
		top: -50px;
	}
	.nav-morph .left .box.logo .sns{
		position: static;
	}
	.nav-morph .left .text{
		margin-bottom: 25px;
	}
	.nav-morph .left .text p{
		font-size: 1.2rem;
		letter-spacing: 2px;
	}
	.nav-morph .left .tel,
	.nav-morph .left .mail{
		box-sizing: border-box;
		width: calc(50% - 5px);
		margin-bottom: 0;
	}
	.nav-morph .left .tel span{
		display: none;
	}
	.nav-morph .left .tel a{
		display: block;
		font-size: 1.8rem;
		color: white;
		background-color: #171D61;
		padding: 10px 0;
		border-radius: 10px;
		text-align: center;
	}
	.nav-morph .left .mail{
		border-radius: 10px;
		padding: 10px 0;
	}
	.nav-morph .left .mail a{
		display: block;
		font-size: 1.8rem;
		color: white;
	}
	.btn-inner{
		padding: 0;
	}
	.nav-morph .right{
		order: 1;
	}
	.nav-morph .right ul li {
    width: 100%;
    margin-bottom: 0;
	}
	.nav-morph .right ul li a{
		padding: 15px 0 13px;
	}
	.nav-morph .right ul li a p{
		font-size: 1.6rem;
	}
	.nav-morph .right ul li a span{
		display: none;
	}
	.nav-morph .right ul li a div{
		width: 10%;
		height: 44%;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	/*nav-morph end*/
	
	
	/* pageHeader start */
	.pageHeader {
    padding: 120px 0 0;
    position: relative;
		overflow: hidden;
	}
	.pageHeader::before {
    content: url(../img/common/pageHeader/img_01_sp.png);
		top: -35%;
		right: 0;
	}
	.pageHeader .inner{
		padding: 0 0 140px;
	}
	.pageHeader .wrapper{
		max-width: 90%;
	}
	.pageHeader p{
		font-size: 4rem;
		line-height: 1.3;
	}
	.pageHeader h1{
		font-size: 1.8rem;
		padding-left: 25px;
		margin-top: 15px;
	}
	.pageHeader h1::before {
    content: url(../img/common/pageHeader/svg_01_sp.svg);
    height: 22px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
	}
	.pageHeader .link{
		width: 100%;
		left: auto;
		right: 0;
		transform: none;
	}
	.pageHeader .link ul{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.pageHeader .link ul li{
		box-sizing: border-box;
		width: 100%;
		display: block;
		margin-right: 0;
		border-bottom: solid 1px #555555;
	}
	#about .pageHeader .link ul li{
		width: calc(50% - 10px);
	}
	.pageHeader .link ul li a{
		padding: 5px 0 3px;
	}
	/* pageHeader end */
	

	.bp-aod-bg{
		background-image: linear-gradient(rgb(244, 244, 255), rgb(255, 255, 255));
		padding: 70px 0 50px;
	}
	

	/* common-bp (お取引先企業様例) start */
	.common-bp .inner{
		padding: 0;
	}
	.common-bp .secTitle-01{
		margin-bottom: 50px;
		padding: 0 20px;
	}
	.common-bp .slide-items01{
		margin-bottom: 30px;
	}
	.common-bp .slick-container ul li{
		margin: 0 5px;
	}
	.common-bp .slick-container ul li p{
		font-size: 1.3rem;
    padding: 12px 15px;
		letter-spacing: 2px;
		border-width: 2px;
		border-radius: 10px;
	}
	/* common-bp (お取引先企業様例) end */
	

	/* common-aod (派遣実績事例) start */
	.common-aod{
		margin-top: 70px;
	}
	.common-aod .inner{
		padding: 70px 0 0;
	}
	.common-aod .secTitle-01{
		margin-bottom: 0;
	}
	.common-aod ul {
		padding-top: 20px;
 	}
	.common-aod ul li .container{
		display: block;
		border-radius: 15px;
	}
	.common-aod ul li .left,
	.common-aod ul li .right{
		width: 100%;
	}
	.common-aod ul li .left{
		border-radius: 10px;
	}
	.common-aod ul li .right {
    padding: 20px 10px 0;
	}
	.common-aod ul li .right h3 {
    font-size: 2rem;
	}
	.common-aod ul li .right .otherInfo{
		margin-top: 15px;
	}
	.common-aod ul li .right .otherInfo .item{
		margin-bottom: 15px;
	}
	.common-aod ul li .right .otherInfo span{
		font-size: 1.2rem;
	}
	.common-aod ul li .right .otherInfo p{
		font-size: 1.5rem;
	}
	.slick-prev:before {
    content: url(../img/common/svg_slider_prev_sp.svg) !important;
	}
	.slick-next:before {
    content: url(../img/common/svg_slider_next_sp.svg) !important;
	}
	.slick-prev, .slick-next {
    width: 70px !important;
    height: 50px !important;
	}
	/* common-aod (派遣実績事例) end */
	
	
	/* common-flow (流れ) start */
	.common-flow{
		padding: 70px 0;
	}
	.common-flow .secTitle-01{
		margin-bottom: 50px;
	}
	.common-flow .content ul li{
		padding: 20px 0 40px;
		border-radius: 15px;
		margin-bottom: 50px;
	}
	.common-flow .content ul li::before {
    content: url(../img/common/flow/svg_01.svg);
    display: inline-block;
    width: 22px;
    height: 50px;
    position: absolute;
    bottom: -28px;
    left: 50%;
		transform: translateX(-50%);
	}
	.common-flow .content ul li .wrapper{
		display: block;
	}
	.common-flow .content ul li .wrapper .left {
    border-right: none;
    padding: 0 30px;
	}
	.common-flow .content ul li .left .wrapper{
		display: flex;
		justify-content: space-around;
		align-items: center;
		border-bottom: solid 2px #222222;
		padding-bottom: 20px;
	}
	.common-flow .content ul li .wrapper .left p{
		font-size: 2rem;
	}
	.common-flow .content ul li .wrapper .left p span{
		font-size: 4rem;
	}
	.common-flow .content ul li .wrapper .left .icon{
		width: 35%;
	}
	.common-flow .content ul li .wrapper .right .text{
		box-sizing: border-box;
		width: 100%;
		padding-right: 0;
	}
	.common-flow .content ul li .wrapper .right{
		padding: 20px 30px 0;
	}
	/* common-flow (流れ) end */
	
	
	/* common-greeting (代表挨拶) start */
	.common-greeting{
		padding: 70px 0;
	}
	.common-greeting .inner {
    padding: 0 20px;
	}
	.common-greeting .wrapper{
		display: block;
	}
	.common-greeting .left{
		width: 100%;
		height: auto;
		margin-bottom: 50px;
	}
	.common-greeting .left .secTitle-01-left{
		margin-bottom: 20px;
	}
	.common-greeting .left .name {
    bottom: 5px;
	}
	.common-greeting .left .name p{
		font-size: 2rem;
	}
	.common-greeting .left .name p span{
		font-size: 1.5rem;
	}
	.common-greeting .right{
		width: 100%;
	}
	/* common-greeting (代表挨拶) end */
	

	/* areaContact start */
	.areaContact{
		padding: 15px;
	}
	.areaContact .inner{
		max-width: 100%;
    min-width: 100%;
		border-radius: 20px;
		padding: 10px;
	}
	.areaContact .wrapper{
		justify-content: center;
	}
	.areaContact .block {
    
	}
	.areaContact .upper{
		border-radius: 12px 12px 0 0;
	}
	.areaContact .bottom {
		padding: 10px 0;
		border-radius: 0 0 12px 12px;
	}
	.areaContact .btn span {
    font-size: 1.5rem;
		font-weight: bold;
    margin-right: 20px;
	}
	.areaContact .btn svg {
		width: 50px;
		height: 50px;
	}
	/* areaContact end */
	

	/*footer start*/
	.footer .inner{
		padding: 40px 20px;
	}
	.footer .wrapper{
		display: block;
	}
	.footer .left {
    padding-left: 0px;
	}
	.footer .left .logo{
		width: 50%;
		margin-bottom: 40px;
	}
	.footer .right{
		width: 100%;
		position: relative;
	}
	.footer .right nav ul{
		display: block;
	}
	.footer .right nav ul li{
		width: 100%;
		padding-right: 20px;
		margin-bottom: 15px;
	}
	.footer .right nav ul li:last-of-type{
		margin-bottom: 0;
	}
	.footer .right nav ul li a{
		font-size: 1.4rem;
	}
	.footer .right .sns{
		position: absolute;
		bottom: 0;
		right: 0;
		padding-bottom: 6px;
	}
	.footer .right .sns a{
		display: inline-block;
	}
	.footer .right .sns a:first-of-type{
		margin-right: 10px;
	}
	.footer .copyright{
		margin-top: 35px;
	}
	.footer .copyright small{
		font-size: 1.2rem;
	}
	/*footer end*/
	
	
  
	
	
}

