@charset "UTF-8";

/*----------------------------------
  Structure
----------------------------------
0. 共通
1. ページタイトル
2. お問い合わせ
3. 取扱商品　下層

====================================*/
/*----------------------------------
	0. 共通
------------------------------------*/
/* パーツ ------------------ */
.arrow01 {
  position: relative;
  width: 80px;
  margin: 10px 0 5px;
}
.arrow01::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
}
.arrow01::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 12px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}
.arrow02::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  margin-left: 5px;
  margin-bottom: 2px;
}
.icon_mail:before{
  content: url("../images/icon_mail.png");
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.icon_tel:before{
  content: url("../images/icon_tel.png");
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

/* アニメーション ------------------ */
.scroll-fade {
  transform: translate3d(0, 20px, 0);
  transition: 1s;
  opacity: 0;
}
/* left */
.scroll-fade.in-left {
  transform: translate3d(-30px, 5px, 0);
  transition: 1s;
  opacity: 0;
}
/* right */
.scroll-fade.in-right {
  transform: translate3d(30px, 5px, 0);
  transition: 1s;
  opacity: 0;
}
.scroll-fade.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lh-0{
	line-height: 0;
}
.ft-12{
	font-size: 1.2rem;
	display: inline-block;
}

.txt_bgYellow{
	background: #FFDE6D;
}



/* ======== レイアウトインナー ========= */
.inner {
	max-width: 1080px;
	width: 94%;
	margin: 0 auto;
}
.inner01 {
	max-width: 1080px;
	width: 94%;
	margin: 0 auto;
  padding: 4em 0;
}
.inner02 {
	max-width: 770px;
	width: 94%;
	margin: 0 auto;
  padding: 4em 0;
}
.gap_10{
  gap: 10px;
}
.gap_30 {
	gap: 30px;
}
@media(max-width:768px){
	.gap_30 {
		gap: 0;
	}
	.inner01,.inner02{
		padding: 2em 0;
	}
	.sp_pd-20{
		padding: 20px;
		box-sizing: border-box;
	}
}



/*----------------------------------
	ページタイトル
------------------------------------*/
.site_title{
  font-weight: bold;
  font-size: 3.3rem;
  text-align: center;
  margin-bottom: 0.5em;
  padding: 1em 0 0.5em;
  border-bottom: 1px solid #000;
}
.site_title span{
  display: block;
  font-size: 1.8rem;
  padding-bottom: 0.5em;
}
.site_title_h2{
  font-weight: bold;
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 1em;
}
.site_title_en{
  font-weight: bold;
  font-size: 5.0rem;
  text-align: center;
  margin-bottom: 1em;
}
.site_title_h3{
  font-weight: bold;
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 1em;
}

@media screen and ( max-width:767px) {
  .site_title,.site_title_en{
    font-size: 2.0rem;
  }
  .site_title_h2{
    font-size: 2.0rem;
  }
  .site_title_h3{
    font-size: 1.8rem;
  }
}



/* リスト
-------------------------------------------------- */
.dl_style01{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #000;
  margin: 4em 0;
}
.dl_style01 dt{
  border-bottom: 1px solid #000;
  width: 30%;
  padding: 0.8em 2em;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.6rem;
}
.dl_style01 dd{
  border-bottom: 1px solid #000;
  width: 70%;
  padding: 0.8em 2em;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.6rem;
}
@media screen and ( max-width:767px) {
  .dl_style01{
    margin: 2em 0;
  }
  .dl_style01 dt{
    width: 35%;
    padding: 0.8em 1em;
  }
  .dl_style01 dd{
    border-bottom: 1px solid #000;
    width: 65%;
    padding: 0.8em 1em;
  }
}


/* ボタン
-------------------------------------------------- */
.btn_style01{
  display: block;
  padding: 0.5em 1em;
  background: #fff;
  border: 1px solid #333;
  color: #333;
}
@media screen and ( max-width:767px) {
  .btn_style01{
    padding: 0.8em 1em;
  }
}
.btn_style01:hover{
  background: #333;
  color: #fff;
  text-decoration: none;
}
.btn_style01:after {
  content: url("../images/icon_arrow.png");
  display: inline-block;
  margin-left: 10px;
  padding: 2px 4px;
}
.btn_style02 {
  display: inline-block;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 0.5em 2em;
}
.btn_style02:after {
  content: "▶";
  display: inline-block;
  margin-left: 10px;
  padding: 2px 4px;
}
.btn_style02:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}


/*----------------------------------
  新着JOBS
----------------------------------*/
.sec_job{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.job_wp{
  width: 32%;
  margin-bottom: 1.5em;
  background: #fff;
}
.job_txt_bk{
  padding: 0.5em 1em 1em;
  box-sizing: border-box;
}
.job_number{
  background: #1f2e55;
  color: #fff;
  padding: 0.2em 1em;
  margin: 0 0 1em 0;
  display: inline-block;
}
.job_title,.job_sub{
  font-weight: bold;
}
.job_txt{
  margin: 1em 0;
}
.job_link {
  text-align: center;
  margin: 0 auto;
}
.job_link a {
  display: inline-block;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 0.2em 2em;
}
.job_link a:after {
  content: "▶";
  display: inline-block;
  margin-left: 10px;
  padding: 2px 4px;
}
.job_link a:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}
@media screen and ( max-width:480px) {
  .job_wp{
    width: 100%;
  }
}
/*----------------------------------
  人材をお探しの企業様へ
  対応分野・得意領域
----------------------------------*/
.circle_wp{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:30px;
  margin-bottom: 4em;
}
.circle {
  display: inline-grid;
  background-color: #fff;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  border: 1px solid #1f2e55;
  font-weight: bold;
  font-size: 3.0rem;
  box-shadow: 3px 3px 0px 0px rgba(31,46,85,1);
}
@media screen and ( max-width:480px) {
  .circle_wp{
    gap:10px;
  }
  .circle {
    width: 8.5em;
    height: 8.5em;
    font-size: 1.8rem;
  }
}
.specialty_box01{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 4em;
}
.specialty_box01 li{
  width: 28%;
  position: relative;
  z-index: 0;
  margin-bottom: 4em;
}
.specialty_box01 li h3{
  color: #fff;
  margin-bottom: 0.5em;
  min-height: 2.5em;
}
.specialty_box01 li:after{
  content: "";
		position: absolute;
		width: 70%;
		height: 50%;
		background-color: #1f2e55;
		top: -5%;
		left: -5%;
		z-index: -1;
}
.specialty_box02{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 4em;
}
.specialty_box02 li{
  width: 45%;
  position: relative;
  z-index: 0;
  margin-bottom: 4em;
}
.specialty_box02 li h3{
  color: #fff;
  margin-bottom: 1em;
}
.specialty_box02 li:after{
  content: "";
		position: absolute;
		width: 60%;
		height: 50%;
		background-color: #363636;
		top: -5%;
		left: -5%;
		z-index: -1;
}
@media screen and ( max-width:480px) {
  .specialty_box01 li{
    width: 45%;
  }
  .specialty_box02 li:after{
      width: 80%;
  }
}
/*----------------------------------
  人材をお探しの企業様へ
----------------------------------*/
.gtc_feature{
  display: flex;
  justify-content: space-around;
  margin-bottom: 2em;
  align-content: flex-end;
}
.gtc_feature_img{
  width: 20%;
}
.gtc_feature_box{
  width: 78%;
  background: #fff;
  padding: 1.5em;
  box-sizing: border-box;
}
@media screen and ( max-width:480px) {
  .gtc_feature{
    flex-wrap: wrap;
  }
  .gtc_feature_img{
    width: 45%;
  }
  .gtc_feature_box{
    width: 100%;
    padding: 1em;
  }
}
.voice_wp{
  display: flex;
  gap: 2em;
  justify-content: center;
}
.voice_block{
  max-width: 310px;
  width: 30%;
  background: #f2f2f2;
  padding: 2em;
  box-sizing: border-box;
}
.voice_block dl dt{
  margin: 1em 0;
}
@media screen and ( max-width:768px) {
  .voice_wp{
    flex-wrap: wrap;
  }
  .voice_block{
    max-width: inherit;
    width: 90%;
    margin: 0 auto;
  }
}
/*----------------------------------
  お仕事をお探しの方へ
----------------------------------*/
.job_feature{
  display: flex;
  justify-content: space-around;
  margin-bottom: 2em;
  align-content: flex-end;
}
.job_feature_img{
  width: 20%;
}
.job_feature_box{
  width: 78%;
  background: var(--color-bg-gray);
  padding: 1.5em;
  box-sizing: border-box;
}
@media screen and ( max-width:480px) {
  .job_feature{
    flex-wrap: wrap;
  }
  .job_feature_img{
    width: 45%;
  }
  .job_feature_box{
    width: 100%;
    padding: 1em;
  }
}
/*----------------------------------
  TOPページ
----------------------------------*/
.mainvisual{
  background: url("../images/main_bg.png") no-repeat top center;
  background-size: 100%;
  padding-top: 23%;
}
.top_nav{
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  margin: 2em 0;
  align-content: center;
}
.news{
  display: flex;
  flex-wrap: wrap;
  padding: 3em 0;
}
.news h2{
  width: 40%;
  text-align: left;
  font-size: 4.3rem;
  font-weight: bold;
}
.news ul{
  width: 55%;
}
@media screen and ( max-width:480px) {
	.top_logo{
		padding: 1em 0 0;
	}
  .news{
    padding: 1em 0;
  }
  .news h2{
    width: 100%;
    text-align: center;
		font-size: 2.0rem;
		margin-bottom: 1em;
  }
  .news ul{
    width: 100%;
  }
}
.top_feature{
}
.top_feature_txt{
	max-width: 600px;
	width: 94%;
	margin: -5% auto 0 auto;
  background: url("../images/top_img01.png") no-repeat center top;
  padding: 10% 0 30% 0;
	background-size: contain;
}
@media screen and ( max-width:480px) {
  .top_feature ul{
    justify-content: space-around;
  }
  .top_feature ul li{
    width: 47%;
  }
}
.top_newjobs{
  flex-wrap: nowrap;
  padding-bottom: 2em;
  gap: 10px;
}
.top_newjobs li:nth-of-type(1){
  margin-top: 1em;
}
.top_newjobs li:nth-of-type(3){
  margin-top: 2em;
}
.top_newjobs_img{
  margin: -4em 0 3em;
}

.delay-time02{
animation-delay: 0.2s;
}

.delay-time03{
animation-delay: 0.3s;
}

.delay-time04{
animation-delay: 0.4s;
}
.box{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

@media screen and ( max-width:480px) {
  .top_newjobs{
    flex-wrap: wrap;
    padding: 90px 0 0 0;
    gap: 0;
  }
  .top_newjobs li{
    width: 53%;
  }
  .top_newjobs li:nth-of-type(1){
    margin-top: 0;
  }
  .top_newjobs li:nth-of-type(2){
    margin-left: auto;
    margin-top: -310px;
    margin-right: 1em;
  }
  .top_newjobs li:nth-of-type(3){
    margin-left: auto;
    margin-top: -90px;
  }
  .top_newjobs_img{
    margin: -1em 0 3em;
  }
}
/*----------------------------------
	2. お問い合わせ
------------------------------------*/
.contact-form {
  max-width: 800px;
  width: 94%;
  margin: 0 auto;
}

.contact-form > tbody > tr > th {
  width: 180px;
}
.contact-form table th {
  width: 180px;
}

.contact-form th,
.contact-form td {
  padding: 20px 0;
  font-weight: 500;
}
@media screen and ( max-width:767px) {
  .contact-form tr,
  .contact-form th,
  .contact-form td  {
    display: block;
    width: 100%;
  }
  .contact-form th {
    padding: 20px 0 0px;
  }
  .contact-form td {
    padding: 0px 0 20px;
  }
}
.contact-form .required::after {
  content: "必須";
  display: inline-block;
  background-color: #ff3333;
  margin-left: 10px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
  padding: 2px 4px;
}

@media screen and ( max-width:767px) {
  .contact-form input {
    padding: 1.2rem 0.8rem;
  }
}
@media screen and ( max-width:767px) {
  .contact-form .mwform-tel-field input {
    padding: 1.2rem 0.4rem;
    font-size: 1.4rem;
  }
}
.contact-form__btn {
  text-align: center;
}

.contact-form__btn input {
  background-color: #F39303 !important;
  font-weight: 500;
}/*# sourceMappingURL=contents.css.map */
.contact-form .form-zip,
.contact-form .form-pref {
  margin-bottom: 0.3em;
  display: inline-block;
}
.contact-form .form-pref select {
  padding: 1em;
  border: 0.1rem solid #dcd7ca;
}


.contact-form .input-name input {
  width: 48%;
}


/*===========================================
                フォーム
===========================================*/
.inner02.inner02--space{
	padding-bottom: 0;
}

.wrap_form01 {
	max-width: 770px;
	width: 90%;
	margin: 0 auto;
    padding: 3em 0;
}

.wrap_form01.p-none{
	padding: 1em 0 0;
}

.wrap_form02 {
	max-width: 770px;
	width: 90%;
	margin: 0 auto;
    padding: 1em 0;
}

.font_form01 h2{
	text-align: center;
    font-size: 2em;
    padding: 0 0 0.6em;
}


.font_form01 p{
	text-align: center;
}

.form01 {
	border-collapse: collapse;
    empty-cells: show;
    font-size: 1.6rem;
	width: 100%;
}
.form01 th {
    font-size: 14px;
    width: 22%;
    border-bottom: solid 1px #d6d6d6;
    padding: 10px 0 10px 15px;
    font-weight: normal;
}
.form01 td {
    font-size: 14px;
	line-height: 300%;
    border-bottom: solid 1px #d6d6d6;
    padding: 10px 5px;
}


.submit-btn{
	text-align: center;
	width: 100%;
}

.submit-btn button[type="submit"]{
    background: #040000;
    width: 60%;
    max-width: 550px;
    min-width: 220px;
    margin: 30px auto;
    display: block;
    border: 1px #000 solid;
    text-align: center;
    padding: 5px;
    color: #fff;
    transition: all 0.4s ease;
	font-family: inherit;
}

.submit-btn button[type="submit"]{
	position: relative;
    text-decoration: none;
    color: var(--color-main);
    font-size: clamp(13px, 1.8vw, 16px);
    line-height: 1.1;
    border: 1px solid var(--color-main);
    display: inline-block;
    width: 200px;
    text-align: left;
    background-color: #fff;
    padding: 0.5em 2em;
}

.submit-btn button[type="submit"]::after{
	content: '';
    position: absolute;
    display: block;
    width: 31px;
    height: 28px;
    background-image: url(../images/icon_allow-s.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0.1em;
    right: 0.2em;
    border-left: 1px solid var(--color-main);
}


.contact_privacy-Box {
	border: 1px solid #8d8d8d;
    padding: 25px;
    border-radius: 5px;
}
.contact_privacy-Box a {
	text-decoration: underline;
}
@media only screen and (max-width: 767px){
	.form01 th, .form01 td {
    	width: 100%;
    	display: block;
    	border-top: none;
	}
	
	.form01 th {
    border-bottom: none; 
    padding: 10px 0 0 0;
    font-weight: normal;
}
	
	.form01 td {
    border-bottom: none;
		padding: 10px 0;
}
}

.mwform-checkbox-field label {
    display: inline-block;
}
.mw_wp_form .horizontal-item {
    margin-left: 10px;
	display: block;
}
.required-srt {
    font-size: 8pt !important;
    padding: 3px 5px;
    background: #ce0000;
    color: #fff !important;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}
.form01 option,
.form01 textarea,
.form01 input[type=text],
.form01 input[type=email],
.form01 input[type=search],
.form01 input[type=url] {

	padding: 1.3rem;
  box-sizing: border-box;
  border: 1px solid #8d8d8d;
  background: #fff;
}

/*===========================================
                お知らせ
===========================================*/
.news-list__list-item {
    border-bottom: 1px solid #9a9a9a;
    padding: 20px;
}

.news-item__title {
    font-size: 2.0rem;
	line-height: 1.6;
    margin-bottom: 4px;
}

@media only screen and (max-width: 480px){
	.news-item__title {
    font-size: 1.6rem;
}
}

a {
    font-size: 1.5rem;
    color: #040000;
    text-decoration: none;
}


.pagination {
	margin: 60px 0 20px;
}
.pagination .page-numbers {
	display: flex;
    justify-content: center;
    gap: 15px;
}


@media only screen and (max-width: 767px){
	.column-box.top_news_list_wrap{
		display: block;
	}
	
	.top_news_list_wrap h2{
		margin-bottom: 20px;
	}
	
a {
    font-size: 1.2rem;
    color: #040000;
    text-decoration: none;
}
}

/*===========================================
                お知らせ記事
===========================================*/
.top-news__column__list-item__time{
	display: inline-block;
	margin-bottom: 10px;
}

.news-detail__title {
    font-size: 3.0rem;
	line-height: 1.5;
	margin-bottom:30px;
}
@media only screen and (max-width: 767px){
	.news-detail__title {
    font-size: 2rem;
}
}

.news-content p {
    font-size: 1.6rem;
    line-height: 2.0;
    letter-spacing: 1px;
}

.btn-conts01 {
    text-align: center;
    margin: 60px auto 30px;
}

.btn-conts01__a {
	color: #171C61;
    background-color: #E4E4E4;
    display: block;
    width: 210px;
    margin: auto;
    padding: 10px;
    border-radius: 25px;
    letter-spacing: 1px;
}

.btnarrow {
    position: relative;
}

/* .btnarrow::before {
    content: '';
    position: absolute;
    width: 20px;
    top: 60%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 9%;
    height: 1px;
    background: #171C61;
    transition: all .3s;
}

.btnarrow::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 53%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 11px;
    height: 1px;
    background: #171C61;
    transform: rotate(35deg);
    transition: all .3s;
} */

.btnarrow::after {
content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 28px;
    background-image: url(../images/icon_allow-s.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}
/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}
/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}
/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}
/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}
/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

/*===========================================
                トップお知らせ
===========================================*/
.top_news_list .top_news__time{
	display: flex;
	padding: 3px 0;

}
.top_news_list .top_news__time time{
	min-width: 150px;
}

@media only screen and (max-width: 767px){
	.top_news_list .top_news__time{
	display: block;
}
}

/*===========================================
                応募フォーム
===========================================*/
.guideline_form__title{
	text-align: center;
    font-size: 3rem;
    font-weight: bold;
	margin-bottom: 25px;
}

.guideline_form__tel{
    display: block;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-blue);
}



