/**/@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	padding: 0;
  	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}
ul {
	list-style:none;
}
a {
	text-decoration:none;
}
.textS {
	font-size: 0.8rem;
}
.textR {
	font-size: 1rem;
}
.textL {
	font-size: 1.2rem;
	font-weight: bold;
}
.sp {
	display: none;
}
.bl {
	color: #203e95;
}
.link-blue {
	color: #008ddb;
	font-weight: bold;
}

.title01wt {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(4.2vw, 60px);
	background-image: url("../images/common/tit_sla_dark.png");
	background-repeat: no-repeat;
	background-position: top 10px center;
	background-size: contain;
	margin: 0 0 10px 0;
	padding: 15px 0;
	line-height: 100%;
	
}
.title01bl {
	color: #203e95;
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(4.2vw, 60px);
	text-align: center;
	background-image: url("../images/common/tit_sla_light.png");
	background-repeat: no-repeat;
	background-position: top 10px center;
	background-size: contain;
	margin: 0 0 10px 0;
	padding: 15px 0;
	line-height: 100%;
	
}
.textJp {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14pt;
  	font-weight: bold;
  	font-style: normal;
	text-align: center;
}

.copy01 {
	font-weight: 600;
	font-size: min(80vw, 1.6rem);
	margin: 5% 0 2% 0 ;
	line-height: 200%;
}
/*header*/
#head {
	position: fixed;
	z-index: 10;
	top: 0;
	background-color: #203e95;
	width: 100%;
	height: 90px;
	display: flex;
	align-items: center;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.logo {
	display: flex;
	align-items: center;
	height: 90px;
	padding: 0 5% 0 3%;
	background-color: #fff;
	background-image: url("../images/common/head_logo.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}
.logo img {
	max-width: 222px;
	width: 90%;
}
#gnav {
	margin-left:auto;
	padding: 0 ;
	display: flex;
}
.gnavi{
    display: flex;
}
.gnavi a {
	margin: 0 15px;	
}
.line a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
	color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
}

.line .current a,
.line  a:hover{
	color:#fff;
}

.line  a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.line .current a::after,
.line a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


.line-bl a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
	color: #008ddb;
	letter-spacing: 1px;
	font-weight: bold;
}

.line-bl .current a,
.line-bl  a:hover{
	color:#008ddb;
}

.line-bl  a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:#008ddb;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.line-bl .current a::after,
.line-bl a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#081734;
	opacity: 0.9;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
}

/*リストのレイアウト設定*/

#g-nav li{
	font-size: 1.2rem;
	list-style: none;
    text-align: center;
}

.gnav-cover-li a{
	color: #fff;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.g-nav-info {
	margin: 5% 0 0 0;
	border-top: solid #39475d 1px;
	color: #fff;
}
.g-nav-info a {
	color: #fff;
	padding:10px;
}
.g-nav-info img {
	max-width: 130px;
	padding: 5% 0 3% 0 ;
}
.g-nav-info p {
	font-size: 0.9rem;
	line-height: 180%;
}



/*========= ボタンのためのCSS ===============*/
.menuBtn {
	position: relative;
	top: 0;
	right: 0;
	height: 90px;
	width: 160px;
	background-color: #081734;
	background-image: url("../images/common/head_menu.png");
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
}
.openbtn{
	position:absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top:20px;
	right: 30px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #081734;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 0px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*footer*/
#footer {
	position: relative;
	/*z-index: -10;*/
	width: 100%;
	background-color: #2b2b2b;
	background-image: url("../images/common/foot_back.png");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	padding: 12% 0 10% 0;
}
.foot-contact {
	display: flex;
	align-items: stretch;
	position: absolute;
	/*z-index: -1;*/
	top: -165px;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	color: #fff;
	text-align: center;
	width: 90%;
	max-width: 1240px;
	background-color: #203e95;
	background-image: url("../images/common/contact_back.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
	margin: 0 auto ;
	padding: 5% 0 ;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.foot-contact .middle {
	border:solid #5970af ;
	border-width: 0px 1px 0px 1px;
}
.contactBox {
	flex: 1;
	display: flex;
	flex-direction: column;
    align-items: center;
	/*justify-content: center;*/
}
.contactBox .midashi {
	color: #bcc5df;
}
.foot-contact-tel {
	margin: 15px 0 0 0 ;
}
.foot-contact-tel a {
	color: #fff;
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: 3vw;
}

/*foot-contents*/
.foot-conts {
	color: #fff;
	display: flex;
	width: 90%;
	max-width: 1030px;
	margin: 0 auto ;
}
.foot-company {
	width: 67%;
}
.foot-company img {
	max-width: 194px;
	margin: 0 0 5% 0 ;
}
.foot-conts a {
	color: #fff;
}
.foot-nav {
	margin: 0 0 0 3%;
}
.foot-nav li {
	padding: 8% 0 8% 25px;
	background-image: url("../images/common/foot-nav-back.svg");
	background-repeat: no-repeat;
	background-size: 18px 1px;
	background-position: center left;
}

/*foot-privacy-copy*/
.foot-copy {
	font-size: 0.8rem;
	color: #fff;
	width: 90%;
	max-width: 1030px;
	margin: 0 auto ;
}
.foot-privacy {
	margin: 0 0 10px 0;
}
.foot-privacy a {
	color: #fff;
	text-decoration: underline;
}

#page-top {
	display: block;
	width: 10px;
	position: absolute;
	right: 3%;
	bottom:20%;
}


/*page-title*/
.page-head {
	position: relative;
	z-index: 5;
	width: 100%;
	text-align: left;
	color: #fff;
	background-image: url("../images/common/page-tit-back-bl.png");
  	background-repeat: no-repeat;
  	background-position: bottom right;
  	background-size: cover;
	padding: 0 0 3% 0;
	margin: 90px 0 0 0;
}
.page-tit {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(10vw, 60px);
	padding: 12% 0 10% 5%;
	line-height: 90%;
	letter-spacing: 2px;
	text-indent: 2px;
}

.page-tit h2 {
	line-height: 0;
	padding: 0;
	margin: 0 0 5% 0;
}
.page-tit p {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14pt;
  	font-weight: normal;
  	font-style: normal;
}

/*midashi*/
.midashi-border {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	color: #203e95;
	position: relative;
    display: inline-block;
    padding: 0 40px;
	letter-spacing: 1px;
	text-indent: 1px;
}
.midashi-border:before,
.midashi-border:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #203e95;;
}
.midashi-border:before {
    left: 0;
}
.midashi-border:after {
    right: 0;
}
.midashi-jp {
	font-size: 1.6rem;
	margin: 5px 0 5% 0;
	letter-spacing: 2px;
	text-indent: 2px;
}

/*page-head*/
.head-company {
	background-image: url("../images/company/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}
.head-business {
	background-image: url("../images/business/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}
.head-works {
	background-image: url("../images/works/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}
.head-privacy {
	background-image: url("../images/privacy/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}
.head-recruit {
	background-image: url("../images/recruit/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}
.head-contact {
	background-image: url("../images/contact/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}


/*contents*/
.wrapper-wt {
	background-image: url("../images/common/page-main-top-back.png");
  	background-repeat: no-repeat;
  	background-position: top right;
	margin: -3% 0 0 0;
	padding: 5% 0 0 0;
}
.wrapper-wt2 {
	background-image: url("../images/common/page-main-top-back.png");
  	background-repeat: no-repeat;
  	background-position: top right;
	margin: 0;
	padding: 0;
}
.wrapper-bl {
	background-image: url("../images/works/works-back-blue.png");
  	background-repeat: no-repeat;
  	background-position: top right;
	background-color: #203e95;
	margin: -3% 0 0 0;
	padding: 5% 0 0 0;
}
.wrapper-gray {
	width: 100%;
	background-color: #f4f8ff;
	background-image: url("../images/common/back-gray.jpg");
  	background-repeat: no-repeat;
  	background-position: top center;
	background-size: 100%;
	margin: -3% 0 0 0;
	padding: 5% 0 0 0;
}

.page-midashi {
	text-align: center;
	margin: 5% auto ;
}

/*company*/
.company-logo img {
	max-width: 463px;
	width: 70%;
	margin: 5% auto;
}
.company-midashi {
	text-align: center;
	margin: 5% auto;
}
.company-info {
	background-color: #fff;
	max-width: 1000px;
	width: 84%;
	margin: 0 auto;
	padding: 2% 3%;
	border-radius: 10px;
}
.company-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	width: 100%;
	margin: 2% auto;
	line-height: 200%;
}
.company-list .tel-link {
	color: #333;
}
.company-list dt, .company-list dd {
	padding: 3% 0;
	border-bottom: 1px solid #e5e5e5;
}
.company-list .last {
	border: none;
}
.company-list dt {
	color: #203e95;
	width: 25%;
	font-weight: bold;
}
.company-list dd {
	width: 75%;
}
.company-list ul {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -18px;
  padding-left: 18px;
}
.gmap-link {
	color: #333;
	text-decoration: underline;
}
.google-map {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto 10% auto;
}
.google-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*business*/
.business-box-01, .company-box-01, .thanksbox {
	text-align: center;
	max-width: 1000px;
	width: 90%;
	margin: 5% auto;
	line-height: 200%;
}
.business-box-01 h3, .company-box-01 h3, .works-box-01 h3, .thanksbox h3 {
	font-size: min(10vw, 30px);
	letter-spacing: 2px;
	text-indent: 2px;
	line-height: 180%;
}
.business-box-01 p, .company-box-01 p, .works-box-01 p, .thanksbox p {
	max-width: 900px;
	width: 90%;
	margin: 5% auto;
}

.business-box-01 img {
	border-radius: 15px;
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.business-box-02 {
	width: 100%;
	text-align: center;
	background-color: #f4f8ff;
	background-image: url("../images/business/business-back.jpg");
  	background-repeat: no-repeat;
  	background-position: top right;
	margin: -20% 0 0 0;
}
.business-midashi {
	padding: 20% 0 0 0;
}

/*service-list*/
.service-list {
	max-width: 1150px;
	width: 90%;
	margin: 0 auto 15% auto;
	text-align: left;
	line-height: 200%;
}
.service-list li {
	padding: 5% 0;
	border-bottom: 1px solid #dcdcdc;
}
.service-flex {
	display: flex;
}
.service-flex-text {
	width: 60%;
}
.service-tit {
	display: flex;
  	align-items: center;
	margin: 0 0 5% 0;
}
.service-tit p {
	font-size: 1.4rem;
	font-weight: bold;
}
.service-tit img {
	width: 51px;
	margin: 10px 30px 0 0;
}

.service-image {
	width: 35%;
	margin: 0 0 0 auto;
}
.service-image img {
	border-radius: 10px;
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

/*kyujin*/
.kyujin-link {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
  	align-items: center;
	margin: 2% 0 0 0;
}
.kyujin-link img {
	width: 75%;
	margin: 5%;
}
.kyujin-link a:hover img {
	opacity: 0.6;
}


/*works*/
.works-box-01 {
	color: #fff;
	text-align: center;
	max-width: 1000px;
	width: 90%;
	margin: 5% auto 0 auto;
	line-height: 200%;
}
.works-box-01 img {
	margin: 0;
	padding: 0;
}
.works-midashi {
	text-align: center;
	margin: 5% 0;
}
.works-box-02 {
	max-width: 1150px;
	width: 90%;
	margin: 0 auto 10% auto;
	text-align: left;
	line-height: 200%;
}
.chiiki-shigoto {
	display: flex;
	align-items: center;
	margin: 0 0 7% 0;
}
.chiiki-shigoto .chiiki-shigoto-img {
	width: 40%;
	margin: 0 auto;
}
.chiiki-shigoto .chiiki-shigoto-text {
	width: 50%;
}
.chiiki-shigoto .chiiki-shigoto-text h3 {
	margin: 0 0 3% 0;
}
.speechBubble {
  position: relative;
  display: inline-block;
  width: 94%;
  margin-bottom: 15px;
  padding: 3%;
  background-color: #203e95;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #203e95 transparent transparent;
  translate: -50% 100%;
}

.publish-box {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 5% 0;
}
.publish-contact {
	width: 50%;
}
.publish-contact .text-bl {
	color: #203e95;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 5% 0;
}
.publish-contact-tel a {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(4.2vw, 50px);
	color: #333;
}
.publish-img {
	width: 50%;
}

.youtube-box {
	text-align: center;
}
.youtube-short {
	margin: 5% 0;
}
.youtube-short iframe[src*="youtube.com"],
.youtube-short iframe[src*="youtube-nocookie.com"] {
	aspect-ratio: 9 / 16;
	width: 50%;
	max-width: 300px;
	height: auto;
}

.youtube-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 5% 0;
}
.youtube-list li {
	font-size: 0.8rem;
	width: 30%;
	margin: 1.5%;
}
.youtube-list iframe[src*="youtube.com"],
.youtube-list iframe[src*="youtube-nocookie.com"] {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}


/*recruit*/
.recruit-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	width: 90%;
	margin: 7% auto;
	border-top: 1px solid #e5e5e5;
	line-height: 200%;
}
.recruit-list .tel-link {
	color: #333;
}
.recruit-list dt, .recruit-list dd {
	padding: 3% 0;
	border-bottom: 1px solid #e5e5e5;
}
.recruit-list dt {
	width: 25%;
	font-weight: bold;
}
.recruit-list dd {
	width: 75%;
}


/*privacy*/
.privacy-box {
	max-width: 900px;
	width: 90%;
	margin: 5% auto 10% auto;
	line-height: 200%;
}
.privacy-box a {
	color: #333;
}
.privacy-text {
	margin: 0 0 5% 0;
}
.privacy-box ul li {
	padding: 5% 0;
	border-bottom: 1px solid #e5e5e5;
}
.privacy-midashi {
	font-size: 1.1rem;
	font-weight: bold;
	margin: 0 0 15px 0;
}

/*contact*/
.tel-fax {
	max-width: 900px;
	width: 90%;
	margin: 0 auto 10% auto;
	display: flex;
	text-align: center;
}
.contact-tel-fax {
	width: 50%;
}
.contact-tel-fax, .contact-tel-fax a {
	color: #203e95;
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: 2.6rem;
	line-height: 75%;
}
.contact-tel-fax .light-bl {
	color: #008ddb;
	font-size: 1.4rem;
}

.thanksbox {
	margin-bottom: 10%;
}
.thanksbox p {
	text-align: left;
}


.bottom-pad {
	padding-bottom: 165px;
}




@media screen and (max-width: 1020px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
#head {
	position: fixed;
	background-color: #203e95;
	height: 70px;
	width: 100%;
	display: flex;
	align-items: center;
}
.logo {
	height: 70px;
	padding: 0 3% 0 3%;
}
.logo img {
	width: 80%;
}
.menuBtn {
	height: 70px;
	width: 110px;
}
.openbtn{
	top:10px;
	right: 20px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #081734;
}
	

/*page-title*/
.page-head {
	margin: 70px 0 0 0;
}
.page-tit {
	font-size: min(10vw, 50px);
	padding: 10% 0 8% 5%;
}



.head-business {
	background-image: url("../images/business/head_img.jpg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size:cover;
}


/*works*/
.chiiki-shigoto {
	display: flex;
	align-items: flex-start;
}
.chiiki-shigoto .chiiki-shigoto-img {
	width: 30%;
	margin: 0 auto;
}
.chiiki-shigoto .chiiki-shigoto-text {
	width: 60%;
}


.youtube-list li {
	font-size: 0.8rem;
	width: 46%;
	margin: 2%;
}


.bottom-pad {
	padding-bottom: 165px;
}

	
}


@media screen and (max-width: 728px) {
.title01wt {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(10vw, 40px);
	background-image: url("../images/common/tit_sla_dark.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	margin: 0;
	padding: 5px 0 10px 0;
	line-height: 100%;
	
}
.title01bl {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(10vw, 40px);
	background-image: url("../images/common/tit_sla_light.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	margin: 0;
	padding: 5px 0 10px 0;
	line-height: 100%;
	
}
.textJp {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9rem;
  	font-weight: bold;
  	font-style: normal;
}
	
.foot-contact {
	display: block;
	position: absolute;
	/*z-index: -1;*/
	top: -165px;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	color: #fff;
	text-align: center;
	width: 90%;
	max-width: 1240px;
	background-color: #203e95;
	background-image: url("../images/common/contact_back.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
	margin: 0 auto ;
	padding: 5% 0 ;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.foot-contact .middle {
	width: 80%;
	border:solid #5970af ;
	border-width: 1px 0px 1px 0px ;
	margin: 3% auto;
	padding: 3% 0;
}
.foot-contact-tel a {
	font-size: min(8vw, 40px);
}
	
/*foot-contents*/
.foot-conts {
	color: #fff;
	display: block;
	width: 80%;
	margin: 0 auto ;
	padding: 40vh 0 0 0 ;
}
.foot-company {
	width: 100%;
}
.foot-nav {
	margin: 15% 0;
	border:solid #4d4d4d ;
	border-width: 1px 0 0 0 ;
}
.foot-nav li {
	padding: 5% 0;
	background-image: none;
	border:solid #4d4d4d ;
	border-width: 0 0 1px 0 ;
}
/*foot-privacy-copy*/
.foot-copy {
	width: 80%;
	margin: 10% auto ;
}
	
/*page-title*/
.page-head {
	margin: 70px 0 0 0;
}
.page-tit {
	font-size: min(10vw, 24px);
	padding: 12% 0 10% 5%;
}
.page-tit h2 {
	margin: 0 0 7% 0;
}
.page-tit p {
	font-size: 1rem;
}

.midashi-jp {
	font-size: 1.4rem;
	letter-spacing: 1px;
	text-indent: 1px;
}

/*company*/
.company-list {
	font-size: 0.9rem;
	display: block;
	width: 100%;
	margin: 2% auto;
	line-height: 200%;
}
.company-list dt {
	padding: 3% 0 0 0;
	width: 100%;
	font-weight: bold;
	border:none;
}
.company-list dd {
	width: 100%;
	padding: 0 0 3% 0;
}
	

/*business*/
.business-box-01 h3, .company-box-01 h3, .works-box-01 h3 {
	font-size: 1.4rem;
	letter-spacing: 1px;
}

/*service-list*/

.service-flex {
	display: block;
}
.service-list li {
	padding: 7% 0;
}
.service-flex-text {
	width: 100%;
}
.service-tit img {
	margin: 0 30px 0 0;
}

.service-image {
	width: 90%;
	margin: 5% auto;
}
.service-image img {
	border-radius: 10px;
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
	
/*recruit*/
.recruit-list {
	font-size: 0.9rem;
	margin: 10% auto;
	display: block;
}
.recruit-list dt {
	width: 100%;
	padding: 3% 0;
	font-weight: bold;
	border-bottom:none;
}
.recruit-list dd {
	width: 100%;
	padding: 0 0 3% 0;
	border-bottom: 1px solid #e5e5e5;
}

	

/*works*/
.chiiki-shigoto {
	display: block;
}
.chiiki-shigoto .chiiki-shigoto-img {
	width: 70%;
	margin: 0 auto 7% auto;
}
.chiiki-shigoto .chiiki-shigoto-text {
	width: 100%;
}

.publish-box {
	display: block;
	text-align: center;
	margin: 5% 0;
}
.publish-contact {
	width: 100%;
}
.publish-contact .text-bl {
	color: #203e95;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 5% 0;
}
.publish-contact-tel a {
	font-family: "Roboto", sans-serif,;
	font-weight: 600;
	font-size: min(8vw, 50px);
	color: #333;
}
.publish-img {
	width: 100%;
}

.youtube-list {
	display: block;
}
.youtube-list li {
	width: 100%;
	margin: 5% 0;
}

/*contact*/
.tel-fax {
	max-width: 900px;
	width: 90%;
	margin: 0 auto 10% auto;
	display: block;
	text-align: center;
}
.contact-tel-fax {
	width: 100%;
	margin: 7% 0;
}
.contact-tel-fax, .contact-tel-fax a {
	font-size: 2rem;
	line-height: 100%;
}
.contact-tel-fax .light-bl {
	color: #008ddb;
	font-size: 1.2rem;
}

	
}
