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

/* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 */
.insta_slider{
    width: 70%;
	margin: 0 auto;
	padding-top:30px;
}
/* Instagram表示ここまで *//* Instagram表示ここまで */

html {
    scroll-behavior: smooth;
}



html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            vertical-align: baseline;
            word-wrap:break-word
        }
body{
	margin: 0 auto;
    font-family:Helvetica, "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	height: auto;
    -webkit-text-size-adjust: 100%;
}
html {
      height:auto
 }
#wrap {
            width: 100%;
            position: relative;
            height: auto !important;
            height: 100%;
            min-height:100%
        }

a{
	text-decoration: none;
}

/* パソコンでみた時は"pc"のclassがついたカテゴリーが表示 */
.pc {display: flex;
}
.sp{display: none!important}

.sp_view{display: block;}
.sp_view_none{display: none;}


/* 240327追加css *//* 240327追加css *//* 240327追加css */
.syain_blk240327{
	
}

/* 240327追加cssここまで *//* 240327追加cssここまで */


/* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 *//* ハンバーガーメニュー実装 */

.menu-btn {
    position: fixed;
    right: 0px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 21px;
    border-radius: 4px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
   background: linear-gradient(-20deg,#0091da,#0c618e);
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
	text-align: center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content img{
	width: 100px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: linear-gradient(-20deg,#0091da,#0c618e);
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで *//* ハンバーガーメニュー実装ここまで */

/* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー *//* ドロップダウンメニュー */

.DropdownMenu {
	margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  width: 950px;
}

.Menu {
  
  width: 100%;
  display: flex;
}

.Menu > * + * {

}

.Menu-Item {
	position: relative; /* 追加 */
  flex: 1;
  cursor: pointer;
	
}

.Menu-Item-Label {
  width: 100%;
  height: 50px;
  padding-top: 35px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
	font-weight: bold;
}

/* アニメーション */
.SubMenu {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 80px; /* 50pxから40pxに変更 */
  width: 100%;
}

.Menu-Item:hover .SubMenu {
  transition: all 0.3s; /* 追加 */
  visibility: visible;
  transform: translateY(10px); /*　追加 */
}

.Menu-Item:hover .SubMenu {/* 動き */
  visibility: visible;
}

.SubMenu {
  visibility: hidden; /* 追加 */
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
}

/*　ここから追加　*/
.SubMenu {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
}

.SubMenu-Item {
  width: 100%;
  padding-top: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.SubMenu > * + * {

}

.SubMenu-Item-Link{
	width: 300px;
	color: #444;
	background-color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}

nav li{
	list-style: none;
}

/* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで *//* ドロップダウンメニューここまで */


/* スクロールダウン *//* スクロールダウン *//* スクロールダウン *//* スクロールダウン *//* スクロールダウン *//* スクロールダウン *//* スクロールダウン *//* スクロールダウン */


/* スクロールダウンここまで */



/* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー */

#top-head{
    background-image: url("../img/haikei_top02.png");
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0%;
	height: auto;
}

.top_logo{
	width: 250px;
	margin: 30px 0 0 40px;
	
}
.top_entry{
	width: 190px;
}
.top_img{
	display: flex;
	justify-content:space-between;
	width: 100%;
}

.nav ul{
	display: flex;
	justify-content: space-around;
	width: 600px;
}

.nav ul li a{
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 17px;
	
}

.menu-item {
  list-style: none;
  display: inline-block;
}

.menu-group{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height:100px;
}

.header_title {
	max-width: 1000px;
	margin: 0 auto;
	height: 540px;
	display: flex;
	align-items: center;
	

}
.header_title p{
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	text-align: left;
	line-height: 1.7em;
	padding: 0 30px;

}

.header_title p span{
	font-size: 60px;
}
/* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで */

.top_text01{
	margin-top: 50px;
	text-align: center;	
	line-height: 39px;
}

.top_text01 p{
	color: #444444;
	font-size: 18px;
	font-weight:inherit;
}

.top_text02{
	margin-top: 20px;
	margin-bottom: 30px;
	text-align: center;	
	line-height: 39px;
}

.top_text02 p span{
	color: #444444;
	font-size: 23px;
	font-weight:bold;
}

.entry_btn{
	text-align: center;
}

.entry_btn_main{
	width: 280px;
}

.entry_btn:hover{
    opacity: 0.7;
}

/*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*//*--topエントリーボタンhover--*/
.top_entry{
	transition:transform 0.3s;
}
.top_entry:hover{
	transform:scale(0.9);
}
/*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*//*--topエントリーボタンhover閉じ--*/

/*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*/
.wrap {
	display: flex; /*--横並び指定--*/	
	/*--以下省略--*/
	margin-top: 60px;
	margin-bottom: 35px;

}

.wrap .box-a {
	flex-grow: 1; /*--幅を指定--*/
	position: relative; /*--positionを追加--*/
	height: 85px;
	line-height: 140px;
	margin-right: 2em;
	background-color: #fff;
}

.wrap .box-a::after {
	position: absolute; /*--positionを追加--*/
	top: 0;
	left: 100%;
	margin: 0 1rem;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 100%;
	background-color: #444; /*--縦線の色--*/
}

.wrap .box-b {
	flex-grow: 1; /*--幅を指定--*/
	background-color: #fff;
}
/*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*/

.border-solid{
    padding: 0.4rem 0rem;
    margin-bottom: 0.2rem;
    border-bottom: 3px solid #005597;
    font-weight: bold;
    font-size: 30px;
	color: #444;
	width: fit-content;
	margin: 0 auto;
}
.border_title{
	text-align: center;
	color: #444;
	font-size: 20px;
	margin-top: 0.4rem;
	font-weight: bold;
}

.mvv_haikei{
	background-image: url("../img/mvv_haikei.png");
	width: 100%;
	height:1240px;
    background-size:cover;
    background-repeat: no-repeat;
	margin-top: 30px;
}

.mission{
	padding-top: 90px;
}

.mission p{
	color: #fff;
	text-align: center;
	font-size: 17px;
	line-height: 30px;
}
h2{
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

.value{
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	margin-top: 20px;
}
.value p span{
	font-weight: bold;
	font-size: 27px;
}

.services{
	width: 300px;
}

.our_services img:hover{
    opacity: 0.7;
}

h3{
	text-align: center;
	color: #005597;
	font-weight: bold;
	font-size: 24px;
	margin: 5px 0;
}
.our_services p{
	text-align: center;
	color: #444;
	font-weight:lighter;
	font-size: 17px;
	line-height: 25px;
}

#services_blk01{
	display: flex;
	justify-content: space-around;
	width: 1150px;
	margin: 0 auto;
	padding-top: 40px;
}




.services_blk02{
	display: flex;
	justify-content: space-around;
	width: 770px;
	margin: 0 auto;
	padding-top: 40px;
}

/* 事業内容ができるまでのホバー表示 *//* 事業内容ができるまでのホバー表示 *//* 事業内容ができるまでのホバー表示 */


/* 事業内容ができるまでのホバー表示ここまで *//* 事業内容ができるまでのホバー表示ここまで */

/*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*/


.career_sp{
	text-align: center;
	
}
.career_sp p{
	font-size: 22px;
	font-weight: bold;
	color: #444;
	
}
.career_sp img{
	width: 160px;
	margin-top: 10px;
	margin-bottom: 15px;
	
}
.c_title{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #444;
	margin-bottom: 5px;
	
}

.c_text{
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	color: #444;
	
}
.yahirushi img{ 
	width: 50px;
	margin: 40px 0;
	
}

.yahirushi{
	text-align: center;
	
}

/*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*/

/* 下からふわっと *//* 下からふわっと *//* 下からふわっと *//* 下からふわっと *//* 下からふわっと *//* 下からふわっと *//* 下からふわっと *//* 下からふわっと */



/* 下からふわっとここまで *//* 下からふわっとここまで *//* 下からふわっとここまで *//* 下からふわっとここまで *//* 下からふわっとここまで *//* 下からふわっとここまで */

.syain_blk{
	display: flex;
	justify-content: space-around;
	width: 1000px;
	padding-top: 50px;
	margin: 0 auto;
}

.syain_blk img{
	width: 400px;
}

.syain_blk img:hover{
		opacity: 0.7;
	}


.syain_img p{
	font-size: 16px;
	padding: 35px 0;
	color: #fff;
	text-align: center;
	background: linear-gradient(-20deg,#0091da,#0c618e);
	line-height: 30px;
	height: 110px;
}

.syain_img p span{
	font-size: 19px;
	font-weight: bold;
}

.date{
	display: flex;
	justify-content: space-around;
	width: 1000px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 10px;
}

.date img{
	width: 350px;
}



.insta{
	text-align: center;
}

.insta img{
	width: 270px;
}

.insta_content{
	margin-top: 50px;
	text-align: center;
}


/* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 */

.bosyu_blk{
	padding-top: 30px;
}
table{
  width: 50%;
  border-collapse: collapse;
	margin: 0 auto;
}



table tr{
 
	border-top: solid 2px #444444;
}

table tr:last-child{
  border-bottom: none;
	border-bottom: solid 2px #444444;
}

table th{
  position: relative;
  width: 30%;
  background-color: #fff;
  color:#444444;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
 
}

table td{
  width: 70%;
  text-align: left;
  background-color: #fff;
  padding: 20px 0;

}
/* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで */

.mynavi{
text-align: center;
	margin: 50px 0;
}

.mynavi img{
	width:250px;
}

.footer_copy{
	text-align: center;
	color: #444;
	font-weight: bold;
	font-size: 26px;
}

.footer_copy02{
	padding-top: 20px;
	text-align: center;
	color: #444;
	font-size: 20px;
}

.footer_img{
	width: 100%;
}

.footer_haikei{
background-image: url("../img/footer_haikei.png");
	width: 100%;
	height:350px;
    background-size:cover;
    background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	}

.footerlogo{
	width: 300px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding-top: 140px;
}

.footer-copyright{
	padding-top: 15px;
}

/***トップへ戻るボタン***/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
/***トップへ戻るボタンここまで***/


/* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ *//* ここからスマホサイズ */
@media screen and (max-width:768px) {
	
	.sp_view{display: none;}
.sp_view_none{display: block;}
	
/* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 */
.insta_slider{
    width: 70%;
	margin: 0 auto;
	padding-top:30px;
}
/* Instagram表示ここまで *//* Instagram表示ここまで */
	
	html {
    scroll-behavior: smooth;
}
	
	/* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 *//* Instagram表示 */
.insta_slider{
    width: 100%;
	margin: 0 auto;
	padding: 20px 0 5px 0;
}
	
	
	html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            vertical-align: baseline;
            word-wrap:break-word
        }
body{
	margin: 0 auto;
    font-family:Helvetica, "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	height: auto;
    -webkit-text-size-adjust: 100%;
}
html {
      height:auto
 }
#wrap {
            width: 100%;
            position: relative;
            height: auto !important;
            height: 100%;
            min-height:100%
        }
	a{
	text-decoration: none;
}

/* スマホでみた時は"sp"のclassがついたカテゴリーが表示 */
.pc{display: none!important}
.sp{display: block!important
	}

	
/* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css *//* pc main css */

/* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー *//* ヘッダー */
#top-head{
	background-image: url("../img/sphaikei.png");
	width: 100%;
	height:245px;
    background-size:cover;
    background-repeat: no-repeat;
}

.top_logo{
	width: 130px;
	margin: 15px 0 0 20px;
	
}
.top_entry{
	width: 70px;
}
.top_img{
	display: flex;
	justify-content:space-between;
}

.nav ul{
	display: flex;
	justify-content: space-around;
	width: 220px;
}

.nav ul li a{
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 12px;
}

.menu-item {
  list-style: none;
  display: inline-block;
	margin-top: 15px;
  
}

.header_title {
	height: 190px;
}
.header_title p{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	text-align: left;
	line-height: 1.8em;

}

.header_title p span{
	font-size: 19px;
}
/* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで *//* ヘッダーここまで */

.top_text01{
	margin-top: 50px;
	text-align: center;	
	line-height: 30px;
}

.top_text01 p{
	color: #444444;
	font-size: 15px;
	font-weight:500;
}

.top_text02{
	margin-top: 20px;
	margin-bottom: 30px;
	text-align: center;	
	line-height: 32px;
}

.top_text02 p span{
	color: #444444;
	font-size: 18px;
	font-weight:bold;
}

.entry_btn{
	text-align: center;
}

.entry_btn_main{
	width: 190px;
}

.entry_btn:hover{
    opacity: 0.7;
}

/*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*//*--縦線CSS--*/
.wrap {
	display: flex; /*--横並び指定--*/	
	/*--以下省略--*/
	margin-top: 60px;
	margin-bottom: 35px;

}

.wrap .box-a {
	flex-grow: 1; /*--幅を指定--*/
	position: relative; /*--positionを追加--*/
	height: 85px;
	line-height: 140px;
	margin-right: 2em;
	background-color: #fff;
}

.wrap .box-a::after {
	position: absolute; /*--positionを追加--*/
	top: 0;
	left: 100%;
	margin: 0 1rem;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 100%;
	background-color: #444; /*--縦線の色--*/
}

.wrap .box-b {
	flex-grow: 1; /*--幅を指定--*/
	background-color: #fff;
}
/*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*//*--縦線CSSここまで--*/

.border-solid{
    padding: 0.4rem 0rem;
    margin-bottom: 0.2rem;
    border-bottom: 3px solid #005597;
    font-weight: bold;
    font-size: 23px;
	color: #444;
	width: fit-content;
	margin: 0 auto;
}
.border_title{
	text-align: center;
	color: #444;
	font-size: 17px;
	margin-top: 0.4rem;
	font-weight: bold;
}
	.mvv_blk{
	width:95%;
	margin: 0 auto;
	}

.mvv_haikei{
	background-image: url("../img/mvv_haikei.png");
	width: 100%;
	height:1140px;
    background-size:cover;
    background-repeat: no-repeat;
	margin-top: 30px;
}

.mission{
	padding-top: 50px;
}

.mission p{
	color: #fff;
	text-align: center;
	font-size: 15px;
	line-height: 30px;
}
h2{
	color: #fff;
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

.value{
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	margin-top: 20px;
}
.value p span{
	font-weight: bold;
	font-size: 24px;
}
	
	.our_services{
		margin: 0 auto;
		padding-bottom: 30px;
	}

.services{
	width: 250px;
}
	
.our_services img:hover{
    opacity: 0.7;
}
	
h3{
	text-align: center;
	color: #005597;
	font-weight: bold;
	font-size: 19px;
	margin: 5px 0;
	text-decoration: none;
}
.our_services p{
	text-align: center;
	color: #444;
	font-weight:lighter;
	font-size: 15px;
	line-height: 25px;
}

#services_blk01{
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	width: 100%;
	padding-top: 40px;
}

.services_blk02{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 90%;
	padding-top: 1px;
	
}
	
	.pc_career{display: none!important}

.career{
	width: 85%;
	margin: 0 auto;
	padding-top: 30px;
}
	
	/*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*//*--スマホだけ表示キャリアパス--*/
.career_sp{
	text-align: center;
}
.career_sp p{
	font-size: 22px;
	font-weight: bold;
	color: #444;
	margin-top: 7px;
	
}
.career_sp img{
	width: 100px;
	margin-top: 10px;
	margin-bottom: 15px;
}
.c_title{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #444;
	margin-bottom: 5px;
}

.c_text{
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	color: #444;
}
.yahirushi img{ 
	width: 40px;
	margin: 40px 0;
}

.yahirushi{
	text-align: center;
}

/*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*//*--スマホだけ表示キャリアパスここまで--*/

.syain_blk{
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	padding-top: 10px;
	margin: 0 auto;
	width: 100%;
	text-align: center;

}
	.syain_blk img:hover{
		opacity: 0.7;
	}

.syain_blk img{
	width: 306px;

}

.syain_img p{
	font-size: 14px;
	color: #fff;
	width: 306px;
	text-align: center;
	background: linear-gradient(-20deg,#0091da,#0c618e);
	line-height: 25px;
	height: 90px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.syain_img p span{
	font-size: 16px;
	font-weight: bold;
}

.date{
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	width: 100%;
	margin: 10px 0;
	padding-top: 0px;
	padding-bottom: 1px;
}

.date img{
	width: 260px;
	padding: 10px 0;
	margin: 0 auto;
}

.insta{
	text-align: center;
}

.insta img{
	width: 200px;
}

.insta_content{
	margin-top: 30px;
	text-align: center;
}

/* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 *//* 募集要項 */

.bosyu_blk{
	padding-top: 30px;
}
table{
  width: 95%;
  border-collapse: collapse;
	margin: 0 auto;
}



table tr{
 
	border-top: solid 2px #444444;
}

table tr:last-child{
  border-bottom: none;
	border-bottom: solid 2px #444444;
}

table th{
  position: relative;
  width: 30%;
  background-color: #fff;
  color:#444444;
  text-align: center;
  padding: 10px 0;
	font-size: 15px;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
 
}

table td{
  width: 70%;
  text-align: left;
  background-color: #fff;
  padding: 20px 0;
	font-size: 14px;
}
/* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで *//* 募集要項ここまで */

.mynavi{
text-align: center;
	margin: 50px 0;
}

.mynavi img{
	width:180px;
}

.footer_copy{
	text-align: center;
	color: #444;
	font-weight: bold;
	font-size: 22px;
}

.footer_copy02{
	margin: 0 auto;
	width: 92%;
	padding-top: 20px;
	text-align: center;
	color: #444;
	font-size: 16px;
}

.footer_img{
	width: 100%;
}

.footer_haikei{
background-image: url("../img/footer.png");
	width: 100%;
	height:150px;
	margin-top: 20px;
	}

.footerlogo{
	width: 140px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	padding-top: 40px;
}

.footer-copyright{
	padding-top: 15px;
	font-size: 12px;
}

/***トップへ戻るボタン***/
.pagetop {
    height: 30px;
    width: 30px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    background: #fff;
    border: solid 2px #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #444;
    border-right: 2px solid #444;
    transform: translateY(20%) rotate(-45deg);
}
/***トップへ戻るボタンここまで***/

		
	}