@charset "utf-8";
/* CSS Document */
/*
recruit site css 2024/10
=================================================*/

@media only screen and (min-width: 960px) and ( max-width:1281px) 
{
/* html {
transition: transform 0.3s;
transform: scale(0.7);
transform-origin: left top;
height: calc(100% / 0.7);
width: calc(100% / 0.7);
}	 */
}

/*
 SP css
==================================================*/

html {
  scroll-padding-top: 30px;
}
/*
wraper
-------------------------------------*/
.recruit_wraper {
  width: 100%;
  color: #444444;
  background: #FFFFFF;
}

/*
ハンバーガーメニュー
-------------------------------------*/
.recruit_hd_sp {
  display: block;
  width: 100%;
}

/*ナビゲーション*/

#g-nav-list {
  /*ナビゲーション天地中央揃え*/
  width: 63%;
  position: absolute;
  z-index: 999;
  top: 65%;
  left: 60%;
  transform: translate(-50%, -50%);
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  right: -500px;
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #ffffff !important;
  /*動き*/
  transition: all 0.8s;
}

/*アクティブクラスがついたら位置を0に*/

#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/

#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  /* position: fixed; */
  z-index: 999;
  width: 100%;
  height: 110vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


/*リストのレイアウト設定*/

#g-nav dl {
  width: 80%;
  border-bottom: dotted 1px #D8D8D8;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

#g-nav dl dt {
  font-size: 1.7rem;
  color: #1478C8;
}

#g-nav dl dt::before {
  display: inline-block;
  margin: 0 10px 0 8px;
	width: 10px;
	height: 10px;
	content: '';
	border-radius: 100%;
	background:#1478C8;
}

#g-nav dl dt a {
  color: #1478C8;
}

#g-nav dl dd ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}

#g-nav dl dd ul li {
  font-size: 1.4rem;
  list-style: none;
  margin: 0 10px;
}

#g-nav dl dd ul li a {
  color: #444444;
}

.g-nav-apply {
  width: 50%;
  font-size: 1.6rem;
  background: #1478C8;
  text-align: center;
  border-radius: 20px;
  margin-top: 20px;
}

.g-nav-apply a::after {
	content: '\025b6';
  font-size: 1.1rem;
  color: #ffffff;
  padding-left: 10px;
}

.g-nav-apply a {
  display: block;
  color: #ffffff;
  padding: 5px 0;
}

/*========= ボタンのためのCSS ===============*/

.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 2px;
  right: 5px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

/*×に変化*/

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #444444;
  width: 45%;
}

.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: 40%;
  background-color: #1478C8;
}

.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: 40%;
  background-color: #1478C8;
}

/*
SP メインビジュアル部分
-------------------------------------*/
.sp_main_img {
  /* display: flex;
  align-items: flex-start; */
  width: 100%;
  /* height: 24vh; */
  /* background-image: url(/common/files/ngt-common/images/recruit/main_img.png); */
  /* background-size: cover; */
  line-height: 0;
  position: relative;
  /* top: 0;
  left: 0; */
  /* padding: 7px 0 0 5px; */
}

.sp_main_img_logo {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  background-color: rgba(89,85,80,0.3);
  border-radius: 5px;
}

.sp_main_img .sp_main_img_logo h1 {
  width: 100px;
}

.sp_main_img .sp_main_img_logo h1 img {
  width: 100%;
}

.sp_main_img .sp_main_img_logo p {
  font-size: 1.4rem;
  color: #FFFFFF;
  /* position: absolute;
  top: 13%;
  left: 33%; */
  margin-left: 5px;
}

.overlay_main_img {
  position: absolute;
  background-color: #1478C8;
  animation: fadeoutMainImgBack 1s;
  animation-delay: 4s;
  animation-fill-mode: forwards;
  width: 100%;
}
.overlay_main_img img {
  opacity: 0;
  animation: overlayMainImg 4s ease-in-out;
}

@keyframes overlayMainImg {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeoutMainImgBack {
  99% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    z-index: -1;
  }
}
.recruit_hd_pc {
  display: none;
}


/*　PC用　メインイメージ　※SPはOFF　*/
.main_img {
  display: none;
}

/*
共通部品
-------------------------------------*/

/* view more */
.view_more {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
}

.view_more a {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.view_more label {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.view_more h5 {
  font-size: 2rem;
  font-weight: 400;
  color: #1478C8;
}

.view_more h6 {
  width: 25px;
  height: 8px;
  border-bottom: 2px solid #1478C8;
  border-right: 3px solid #1478C8;
  transform: skew(45deg);
}

#company .view_more {
  padding-right: 10px;
}

/*　category　見出し　*/
.category_title {
  margin-bottom: 10px;
}

.category_title dl {
  display: flex;
  align-items: baseline;
}

.category_title dl dt {
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  font-size: 4.2rem;
  letter-spacing: 0.2rem;
  color: #1478C8;
}

.category_title dl dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #444444;
  padding-left: 7px;
}

/*　各ページ　wraper　*/
.recruit_page_wraper {
  width: 100%;
  margin: 30px auto;
}

/*　各ページタイトル　*/
.recruit_page_title {
  width: 85%;
  text-align: center;
  margin: 50px auto 30px;
  border-bottom: solid 2px #1478C8;
  padding-bottom: 13px;
}

.recruit_page_title h2 {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1em;
  color: #1478C8;
}

.recruit_page_title h3  {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}

/*　汎用タイトル　*/
.recruit_middle_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 20px;
  width: 80%;
}
.recruit_middle_title h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 10px #F1C13D;
  padding-left: 10px; 
}

/*　各カテゴリー　*/

.recruit_category_box {
  padding: 30px 0 20px 0;
}

.recruit_category_box h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 25px;
}

.recruit_category_box h2.blue {
  color: #1478C8;
  margin: 30px 0;
}

.recruit_category_box p {
  font-size: 1.6rem;
}

/*　slider使用時の枠　幅フルサイズ　*/
.recruit_category_box_full {
  width: 100%;
  margin: 0 auto 30px;
}


/*　リンク用スタイル　*/
a.block_link {
  display: block;
  text-decoration: underline;
  color: #1478C8;
}
a.block_link:hover {
  opacity: 0.7;
}

a.inline_link {
  display: inline;
  text-decoration: underline;
  color: #1478C8;
}
a.inline_link:hover {
  opacity: 0.7;
}

/*
新着情報　一覧
トップ＆一覧ページ共通
-------------------------------------*/

.recruit_news {
  width: 100%;
  background: #EBEBEB;
  padding: 50px 0;
  margin-bottom: 30px;
}

.recruit_news_box {
  width: 85%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 40px 40px 25px 40px;
  margin: 0 auto;
}

.recruit_news_box h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1478C8;
  letter-spacing: 0.2rem;
  border-bottom: solid 1px #444444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.recruit_news_box dl {
  color: #444444;
  border-bottom: solid 1px #444444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.recruit_news_box dl dt {
  font-size: 1.6rem;
  margin-bottom: 3px;
}

.recruit_news_box dl dt span {
  font-size: 1.4rem;
  color: #FFFFFF;
  background: #1478C8;
  border-radius: 20px;
  padding: 2px 20px 3px;
  margin: 0 10px;
  white-space: nowrap;
}

.recruit_news_box dl dd {
  font-size: 1.6rem;
  line-height: 1.8em;
}

/*　”New” 表示　*/
.is_new::after {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 1.6rem;
  content: 'New!';
  color: #D97400;
  margin: 0 0 0 10px;
}

.recruit_page_NewInformation {
  border: solid 2px #1478C8;
  border-radius: 20px;
  padding: 35px 35px 15px 35px;
}

/*　ページネーション　*/
.recruit_pagenation {
  width: 100%;
  font-family: "Roboto Condensed", serif;
  margin: 30px auto 40px;
}

.recruit_pagenation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.recruit_pagenation ul li {
}

.recruit_pagenation ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 1.6rem;
  font-weight: 400px;
  color: #1478C8;
  text-align: center;
  line-height: 27px;
  background: #FFFFFF;
  border: solid 2px #1478C8;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}

.recruit_pagenation ul li.active a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background: #1478C8;
  border: solid 2px #1478C8;
}

.recruit_pagenation ul li.prev a {
  color: #1478C8;
  border: none;
  background: none;
}

.recruit_pagenation ul li.next a {
  color: #1478C8;
  border: none;
  background: none;
}

/*.recruit_pagenation ul li:first-of-type a {
  background: none;
  border: none;
}*/

/*.recruit_pagenation ul li:last-of-type a {
  background: none;
  border: none;
}*/

/*.recruit_pagenation ul li a i {
  color: #1478C8;
}*/
.pamphlet_wrap {
  display: flex;
  flex-direction:column-reverse;
  align-items: center;
}
.pamphlet_wrap a {
  width: 200px;
}
.pamphlet_info {
  position: relative; /* 擬似要素の位置を基準にするために必要 */
  border: solid 2px rgb(217, 116, 0);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 20px 40px;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center;    /* 垂直方向の中央揃え */
  background-color: #fff; /* 背景色を設定 */
}
.pamphlet_info::before {
  content: '';
  position: absolute;
  bottom: -22px; /* 三角形の位置を調整 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 11px;
  border-style: solid;
  border-color: rgb(217, 116, 0) transparent transparent transparent;
}

.pamphlet_info::after {
  content: '';
  position: absolute;
  bottom: -17px; /* 内側の白い三角形の位置を調整 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 9px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.pamphlet_wrap .pamphlet_info p {
  padding: 0;
  margin: 0; /* デフォルトのマージンをリセット */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #D97400;
  line-height: 1.5em;
}

.article-body h3.accent:before {
  width: 8px;
}

.article-body table th {
  font-size: 1.4rem;
  padding: 12px 15px;
}

.article-body table>tbody td {
  font-size: 1.4rem;
  padding: 12px 15px;
}

/*
新着情報　個別内容ページ
-------------------------------------*/

.recruit_new_contents {
  width: 85%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 30px auto;
}

.recruit_new_contents_title {
  width: 100%;
  margin-bottom: 15px;
}

.recruit_new_contents_title h2 {
  font-weight: 600;
  font-size: 2rem;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
}

.recruit_new_contents_detail {
  border: solid 2px #1478C8;
  word-wrap: break-word;
  padding: 35px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.recruit_new_contents_detail h3 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.recruit_new_contents_detail p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 25px;
}

.recruit_new_contents_app_btn {
  width: 100%;
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  border: solid 2px #D97400;
  margin: 0 auto 20px;
}

.recruit_new_contents_app_btn a {
  display: block;
  color: #D97400;
  padding: 7px;
}

/*
新着情報詳細　CKeditor調整用
-------------------------------------*/
.recruit_new_contents_detail.recruitnews_ckeditor {
  width: 1000px !important;
}

.recruit_new_contents_detail .table-scroll>table {
  overflow-x: visible;
}
.recruit_new_contents_detail .table-scroll>table {
  white-space: normal;
}
.recruit_new_contents_detail .table-scroll>table th,.recruit_new_contents_detail .table-scroll>table td {
  word-break: break-word;
}

/*
会社について トップページ
-------------------------------------*/

.recruit_category_box {
  width: 85%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin: 0 auto;
  padding: 30px 0;
}

.recruit_category_box .category_content {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: justify;
  margin-bottom: 10px;
}

/*
会社について　詳細ページ
-------------------------------------*/

.recruit_page_company,
.recruit_page_company_replace {
  width: 85%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  border-bottom: solid 2px #1478C8;
  padding-bottom: 30px;
  margin: 0 auto 40px;
}

.recruit_page_company_L h3 {
	font-size: 2rem;
  font-weight: 600;
	text-align: center;
  margin: 40px 0 10px 0;
}

.recruit_page_company_R h2 {
	display: flex;
  color: #1478C8;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
  font-weight: 600;
	text-align: center;
  margin-bottom: 10px
}

.recruit_page_company_R h2::before,
.recruit_page_company_R h2::after {
  content: '';
	width: 2px;
	height: 30px;
	background-color: #1478C8;
}

.recruit_page_company_R h2::before {
	margin-right: 15px;
	transform: rotate(-25deg)
}

.recruit_page_company_R h2::after {
	margin-left: 15px;
	transform: rotate(25deg)
}

.recruit_page_company_R p {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: justify;
}

.recruit_page_company_L img {
  max-width: 100%;
  margin: 0 auto 20px;
}

.recruit_category_box p.ms_text {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: justify;
  margin-top: -30px;
  margin-bottom: 20px;
}

/*
仕事について　トップページ
-------------------------------------*/

.work_box {
  display: flex;
  flex-wrap: wrap;
}

.work_box dl {
  /* width: 46%;
  margin: 0 2% 10px; */
  margin-bottom: 30px;
}

.work_box dl dt {
  width: 100%;
  margin-bottom: 5px;
}

.work_box dl dt img {
  width: 100%;
}

.work_box dl dd {
  color: #444444;
}

.work_box dl dd h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
}

.work_box dl dd h6::after {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(/common/files/ngt-common/images/recruit/icon_view.png);
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 43px;  
}

.work_box dl dd p {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #1478C8;
  margin-top:-6px;
}

/*
仕事について　詳細ページ
-------------------------------------*/
.recruit_work_detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 20px 20px;
}
.recruit_category_box .recruit_work_detail {
  margin: 0 0 20px;
}
.recruit_work_detail h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 10px #F1C13D;
  padding-left: 10px; 
}

.recruit_work_detail h3 {
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  /* padding-left: 17px;   */
}

.recruit_work_detail h4 {
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 400;
  text-align: center;
}

.recruit_work_detail p {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
  line-height: 1.8em;
  padding: 0 10px;
  margin-bottom: 50px;
}

/*　社員紹介　*/
.recruit_work_detail_employe {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 50px;
}

.recruit_work_detail_employe_box {
  /* width: 44%; */
  margin: 20px 30px 50px;
}

.recruit_work_detail_employe_box img {
  width: 100%;
  margin-bottom: 15px;
}

.recruit_work_detail_employe_box h3 {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #1478C8;
  text-align: center;
  padding: 2px 30px 1px;
  margin-bottom: 10px;
}

.recruit_work_detail_employe_box h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1em;
  border-bottom: solid 1px #444444;
  padding-bottom: 5px;
  margin-bottom: 8px;
}

.recruit_work_detail_employe_box h4 span {
  font-size: 1.5rem;
  font-weight: 400;
}

.recruit_work_detail_employe_box p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 5px;
}

/*
採用情報
-------------------------------------*/

#recruit {
  width: 100%;
}

.w_85 {
  width: 85%;
  margin: 0 auto 25px;
}

.W_full {
  width: 100%;
  padding: 30px 0 0;
  }

.bxslider li {
}

.recruit_cont_box {
}

.recruit_cont_box img {
  width: 100%;
  margin-bottom: 3px;
}

.recruit_cont_box h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: #444444;
  margin-bottom: 3px;
}

.recruit_cont_box h3 span {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: -15px;
}

.recruit_cont_box h4 {
  width: 50%;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -2px;
}

.recruit_cont_box h4 span {
  display: block;
  color: #FFFFFF;
  background: #1478C8;
  border-radius: 20px;
  padding: 1px 0;
}

.recruit_btn_wrap {
  width: 85%;
  margin: 0 auto;
}

.recruit_btn {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
  border: solid 2px #D97400;
  box-sizing: border-box;
  margin: 0 auto 20px;
}

.recruit_btn:last-child {
  margin: 0 auto;
}

.recruit_btn a {
  display: block;
  color: #D97400;
  padding: 7px 0;
}

.recruit_btn:hover {
  opacity: 0.7;
}

#work {
  margin-top: -10px;
}

#recruit {
  margin-top: -10px;
}

#question {
  margin: -10px auto 50px;
}

/*
よくある質問
-------------------------------------*/

.accordion {
  border: solid 3px #1478C8;
  margin-bottom: 20px;
}

.accordion dt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6em;
  color: #FFFFFF;
  background: #1478C8;
  position: relative;
  padding: 10px 40px 10px 20px;
}

.accordion dt::before {
  content: "";
  width: 2px;
  height: 14px;
  background: #FFFFFF;
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .6s ease;
}

.accordion dt::after {
  content: "";
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .6s ease;
}

.accordion dt.open::before{
  transform: rotate(90deg);
}
.accordion dt.open::after{
  transform: rotate(-180deg);
}

.accordion dd {
  display: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8em;
  padding: 20px;
}

/*
社長メッセージ
-------------------------------------*/

.recruit_message_box {
  width: 85%;
  margin: 0 auto 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.recruit_message_box h2 {
	display: flex;
  color: #1478C8;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
  font-weight: 600;
	text-align: center;
  margin-bottom: 10px
}

.recruit_message_box h2::before,
.recruit_message_box h2::after {
  content: '';
	width: 2px;
	height: 25px;
	background-color: #1478C8;
}

.recruit_message_box h2::before {
	margin-right: 15px;
	transform: rotate(-25deg)
}

.recruit_message_box h2::after {
	margin-left: 15px;
	transform: rotate(25deg)
}

.message_img {
  display: block;
  width: 80%;
  margin: 0 auto 30px;  
}

.message_img img {
  max-width: 100%; 
}

.message_text {
  width: 100%;
  font-weight: 400;
  margin: 0 auto;
}

.message_text h4 {
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: right;
  font-weight: 400;
  margin: 30px 0 8px 0;
}

.message_text h5 {
  font-size: 1.8rem;
  line-height: 1.5em;
  text-align: right;
  font-weight: 400;
  margin-bottom: 10px;
}

.message_text p {
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 25px;
}

.message_text p.wt-member span {
  font-size: 1.3rem;
}
/*
ソーシャルメディア
-------------------------------------*/

.recruit_category_sns {
  width: 85%;
  margin: 0 auto 30px;
}

.recruit_sns {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin: 0 auto 50px;
}

.recruit_sns h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5em;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
  margin-bottom: 15px;
}

.recruit_sns dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
}

.recruit_sns dl dt {
  width: 25%;
  margin-right: 5%;
}

.recruit_sns dl dt img {
  width: 100%;
}

.recruit_sns dl dd {
  width: 68%;
}

.recruit_sns dl dd p {
  font-size: 1.5rem;
  line-height: 1.6em;
}

.recruit_sns dl dd p .block_link {
  display: block;
  text-decoration: underline;
  color: #1478C8;
}
.recruit_sns dl dd p .block_link:hover {
  opacity: 0.7;
}

/*　SNS ICON　*/
.recruit_sns_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  border-top: solid 2px #444444;
  padding-top: 10px;
}

.recruit_sns_link a img {
  width: 28px;
  margin: 0 5px;
}

/*
インターンシップ
-------------------------------------*/

/*　目次　*/
.recruit_page_internship_list {
  width: 100%;
  border: solid 2px #1478C8;
  border-radius: 20px;
  padding: 30px 8% 15px;
  margin: 0 auto 20px;
}
.recruit_page_internship_list ul {
}

.recruit_page_internship_list ul li {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6em;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.recruit_page_internship_list ul li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #1478C8;
  border-radius: 50%;
}

/*　過去の様子　*/
.recruit_page_internship_bygone {
  width: 100%;
  /* display: flex; */
  flex-wrap: wrap;
}

.recruit_page_internship_bygone_box {
  /* width: 46%; */
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* margin: 0 2% 20px; */
  margin-bottom: 50px;
}

.recruit_page_internship_bygone_box img {
  width: 100%;
  margin-bottom: 15px;
}

.recruit_page_internship_bygone_box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1478C8;
  margin-bottom: 5px;
  line-height: 1.4em;
}

.recruit_page_internship_bygone_box h3 span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #444444;
  padding-left: 5px;
  display: block;
}

.recruit_page_internship_bygone_box p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 0;
}

/*　参加者の声　*/
.recruit_page_internship_voice_wrap {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #E0ECF3;
  padding: 30px 0;
  margin-top: 30px;
}

.recruit_page_internship_voice {
  width: 85%;
  text-align: center;
  border-bottom: dotted 5px #FFFFFF;
  margin: 0 auto 30px;
}

.recruit_page_internship_voice:last-child {
  border-bottom: none;
}

.recruit_page_internship_voice h3 {
  font-size: 1.8rem;
  line-height: 1.6em;
  font-weight: 600;
  text-align: left;
  position: relative;
  padding-left: 38px;
  margin-bottom: 15px;
}

.recruit_page_internship_voice h3::before {
  content: "Q";
  font-size: 2.5rem;
  color: #1478C8;
  position: absolute;
  left: 10px;
  top: -1px;
}

.recruit_page_internship_voice h4 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  margin: -5px 0 30px 0;
}

.recruit_page_internship_voice h4 span {
  border-bottom: solid 4px #F1C13D;
}

.recruit_page_internship_voice h5 {
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  font-size: 3.3rem;
  color: #1478C8;
}

.recruit_page_internship_voice ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 30px;
}

.recruit_page_internship_voice ul li {
  position: relative;
  display: inline-block;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: left;
  margin: 10px 5% 40px;
}

.recruit_page_internship_voice li::after {
  content: "";
  bottom: -15px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  border-top: 15px solid #FFF;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.recruit_page_internship_voice ul li p.voice_main {
  /* font-size: 1.3rem;
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 15px; */
}

.recruit_page_internship_voice ul li p.voice_sub {
  font-size: 1.3rem;
  color: #1478C8;
  text-align: right;
}


/*
内定者の声
-------------------------------------*/
.recruit_voice_text {
}

.recruit_voice_text p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 80%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto 20px;
}

.recruit_voice_text p::before,
.recruit_voice_text p::after {
  content: '';
	width: 3px;
	height: 42px;
	background-color: #444444;
}

.recruit_voice_text p::before {
	margin-right: 25px;
	transform: rotate(-25deg)
}

.recruit_voice_text p::after {
	margin-left: 25px;
	transform: rotate(25deg)
}

/*
求める人物像
-------------------------------------*/
.recruit_policy_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 85%;
  margin: 0 auto 50px;
}

/*　ポリシー　*/
.recruit_policy_cont_1 {
  width: 100%;
  background: #F6F6F6;
  padding: 30px;
  margin: 0 auto 50px;
}

.recruit_policy_cont_1 h2 {
  font-size: 2rem;
  font-weight: 400;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
  margin-bottom: 10px;
}

.recruit_policy_cont_1 p {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: justify;
}

/*　ポリシー２　*/
.recruit_policy_cont_2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: solid 2px #444444;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 40px;
}

.recruit_policy_cont_2 img {
  order: 3;
  width: 100%;
  margin-bottom: 20px;
}

.recruit_policy_cont_2 h2 {
  order: 1;
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.recruit_policy_cont_2 h2 span {
  border-bottom: solid 2px #1478C8;
}

.recruit_policy_cont_2 h3 {
  order: 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1478C8;
}

.recruit_policy_cont_2 p {
  order: 4;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8em;
  text-align: justify;
  margin-bottom: 15px;
}

/*　採用における新潟日報社の人事ポリシー　*/
.recruit_policy_cont_3 {
  margin-bottom: 30px;
}

.recruit_policy_cont_3 h2 {
  font-size: 2rem;
  font-weight: 600;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
  margin: 50px 0 10px 0;
}

.recruit_policy_cont_3 p {
  font-size: 1.6rem;
  line-height: 1.8em;
}

.recruit_policy_cont_4 {
  width: 100%;
  margin: 0 auto 15px;
}

.recruit_policy_cont_4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recruit_policy_cont_4 ul a {
  width: 46%;
  height: auto;
  color: #1478C8;
  text-align: center;
  border: solid 3px #1478C8;
  border-radius: 20px;
  position: relative;
  padding: 10px 15px 15px 15px;
  margin: 0 1% 45px;
}

.recruit_policy_cont_4 ul a li::before {
  content: "";
  position: absolute;
  top: 107%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #1478C8;
}

.recruit_policy_cont_4 ul a li img {
  width: 70%;
  /* position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: 0; */
  margin: -15px auto 0;
}

.recruit_policy_cont_4 ul a li h2 {
  font-size: 2.5rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  text-align: left;
  /* position: absolute;
  top: 10px;
  left: 20px; */
  padding-left: 10px;
}

.recruit_policy_cont_4 ul a li p {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4em;
  /* position: absolute;
  right: 0;
  left: 0;
  top: 76%; */
  margin: 5px auto;
}

.recruit_policy_cont_5 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  background-color: #F6F6F6;
  border-radius: 20px;
  padding: 40px 35px;
  margin: 0 auto 40px;
}

.recruit_policy_cont_5 h2 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: #1478C8;
  margin-bottom: 20px;
}

.recruit_policy_cont_5 h2 span {
  border-bottom: solid 3px #F1C13D;
  padding-bottom: 5px;
}

.recruit_policy_cont_5 p {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
  line-height: 1.8em;
}

.recruit_policy_cont_5 img {
  display: none;
}

/*
募集概要
-------------------------------------*/

.recruit_required_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 85%;
  margin: 0 auto 50px;
}

/*　見出し　*/
.recruit_required_title {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 30px;
}

.recruit_required_title h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
}

/*　お知らせ　*/
.recruit_required_cont_1 {
  width: 100%;
  background: #F6F6F6;
  padding: 25px 30px;
  margin: 0 auto 50px;
}
.recruit_required_cont_1.sp-mb--30 {
  margin-bottom: 30px;
}

.recruit_required_cont_1 p {
  font-size: 1.6rem;
  line-height: 1.8em;
}

.recruit_required_cont_1 p span {
  color: #FF0004;
}

/*　テキスト　*/
.recruit_required_text {
  width: 100%;
  margin-bottom: 30px;
}

.recruit_required_text p {
  font-size: 1.6rem;
  line-height: 1.8em;
}

/*　要項　*/
.recruit_required_cont_2 {
  margin-bottom: 40px;
}

.recruit_required_cont_2 table {
  border-collapse: collapse;
  border: solid 1px #444444;
}

.recruit_required_cont_2 table tr {
}

.recruit_required_cont_2 table tr th {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  border: solid 1px #444444;
  writing-mode: vertical-rl;
  padding: 20px;
}

.recruit_required_cont_2 table tr th span {
	writing-mode: vertical-rl;
	white-space: pre;
}

.recruit_required_cont_2 table tr td {
  font-size: 1.6rem;
  line-height: 1.8em;
  border: solid 1px #444444;
  padding: 20px;
  letter-spacing: 0.2em;
}

.recruit_required_cont_2 table tr th:nth-child(1) {
  width: 25%;
  text-align: center;
}

.recruit_required_cont_2 table tr th:nth-child(2) {
  width: 75%;
}

/*　過去3年　*/
.recruit_required_cont_3 {
  margin-bottom: 40px;
}

.recruit_required_cont_3 table {
  border-collapse: collapse;
  border: solid 1px #444444;
}

.recruit_required_cont_3 table tr {
}

.recruit_required_cont_3 table tr td {
  font-size: 2rem;
  border: solid 1px #444444;
  text-align: center;
  padding: 5px;
}

.recruit_required_cont_3 table tr th {
  font-size: 1.6rem;
  font-weight: 400;
  border: solid 1px #444444;
  text-align: center;
  padding: 10px 20px;
}

.recruit_required_cont_3 table tr th:nth-child(1) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(2) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(3) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(4) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(5) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(6) {
  width: 16%;
}

/*　データ　*/
.recruit_required_cont_4 {
}

.recruit_required_cont_4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recruit_required_cont_4 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 48%;
  height: auto;
  text-align: center;
  border: solid 2px #1478C8;
  border-radius: 20px;
  background-color: #F6F6F6;
  position: relative;
  padding: 25px 10px 15px 10px;
  margin-bottom: 15px;
}

.recruit_required_cont_4 ul li img {
  width: 80%;
  position: relative;
  margin: -10px 0;
}

.recruit_required_cont_4 ul li h3 {
  font-size: 1.4rem;
  font-weight: 600;
  /* position: absolute; */
  padding: 0 10px;
  line-height: 1.4em;
  margin: 0 auto;
}

.recruit_required_cont_4 ul li h4 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
  /* position: absolute;
  top: 117px;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

.recruit_required_cont_4 ul li .recruit_required_cont_4_data {
  margin-top: 5px;
}

.recruit_required_cont_4 ul li h4.birthplace_data {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.recruit_required_cont_4 ul li h4.birthplace_data .birthplace_data_label {
  font-size: 1.4rem;
  line-height: 1rem;
  font-weight: normal;
}

.recruit_required_cont_4 ul li h4 span {
  font-size: 2rem;
  /* font-weight: 600; */
}

.recruit_required_cont_4 ul li p {
  font-size: 1.4rem;
  font-weight: 400;
  /* position: absolute;
  top: 150px;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

/*　育休　*/
.recruit_required_cont_5 {
}

.recruit_required_cont_5 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.recruit_required_cont_5 ul li {
  width: 40%;
  /* height: 20vh; */
  text-align: center;
  /* background-size: 60% auto;
  background-position: 50% 40%;
  background-repeat: no-repeat;
  position: relative; */
  padding: 10px;
  margin-bottom: 20px;
}

.recruit_required_cont_5 ul li img {
  width: 80%;
  /* position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0; */
  margin: 0 auto;
}

.recruit_required_cont_5 ul li h3 {
  font-size: 1.4rem;
  font-weight: 600;
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

.recruit_required_cont_5 ul li h4 {
  font-size: 2.8rem;
  font-weight: 900;
  /* position: absolute;
  top: 65%;
  left: 0;
  right: 0; */
  margin: -20px auto 0;
}

.recruit_required_cont_5 ul li h4 span {
  font-size: 1.4rem;
  font-weight: 400;
}

/*
働く環境
-------------------------------------*/
.recruit_environment_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 85%;
  margin: 0 auto 50px;;
}

.recruit_environment_cont_1 {
  width: 100%;
  margin: 0 auto 50px;
}

.recruit_environment_cont_1 img {
  width: 100%;
}

.recruit_environment_cont_1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.recruit_environment_cont_1 ul li {
  width: 45%;
  margin: 0 2% 20px;
}

.recruit_environment_cont_1 ul li img {
  width: 100%;
  border: solid 2px #1478C8;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 5px;
}

.recruit_environment_cont_1 ul li p {
  font-size: 1.4rem;
  line-height: 1.5em;
  text-align: center;
}

.recruit_environment_other {
  width: 100%;
  background-color: #F6F6F6;
  padding: 30px 40px;
  margin: 0 auto 50px;
}

.recruit_environment_other p {
  font-size: 1.6rem;
  line-height: 2em;
}

.recruit_environment_cont_2 {
  width: 100%;
  margin: 0 auto 50px;
}

.recruit_environment_cont_2 img {
  width: 100%;
  margin-bottom: 15px;
}

.recruit_environment_cont_2 h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1478C8;
  text-align: center;
  margin-bottom: 5px;
}

.recruit_environment_cont_2 p {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8em;
}

.recruit_environment_cont_3 {
  margin: 0 auto 30px;
}

.recruit_environment_cont_3 h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background: #1478C8;
  padding: 5px 0;
  margin-bottom: 30px;
}

.recruit_environment_cont_3 dl {
  margin-bottom: 30px;
}

.recruit_environment_cont_3 dl dt {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1478C8;
  border-bottom: solid 2px #1478C8;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.recruit_environment_cont_3 dl dd {
  font-size: 1.6rem;
  line-height: 2em;
}

.recruit_environment_cont_4 {
  width: 100%;
  margin: 0 auto 30px;
}

.recruit_environment_cont_4 img {
  width: 100%;
  margin-bottom: 15px;
}

.recruit_environment_cont_4 p {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2em;
}

/*
採用フロー
-------------------------------------*/

/*　フロー１　*/
.recruit_flow_cont_1 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 30px 40px 40px 40px;
  margin: 0 auto 40px;
}

.recruit_flow_cont_1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 20px solid #1478C8;
}

.recruit_flow_cont_1 h3 {
  width: 60%;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 4rem;
  color: #1478C7;
  text-align: center;
  line-height: 0.75em;
  border-bottom: solid 3px #1478C7;
  padding-bottom: 15px;
  margin: 0 auto 10px;
}

.recruit_flow_cont_1 h3 span {
  font-size: 2rem;
  font-weight: 400;
}

.recruit_flow_cont_1 h3 span::after {
    content: "\A";
    white-space: pre;
}

.recruit_flow_cont_1 img {
  display: block;
  width: 60%;
  margin: 0 auto 5px;
}

.recruit_flow_cont_1_mini_box {
  width: 100%;
}

.recruit_flow_cont_1_mini_box h4 {
  font-size: 2rem;
  font-weight: 900;
  color: #1478C7;
  margin-bottom: 5px;
}

.recruit_flow_cont_1_mini_box h5 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.recruit_flow_cont_1_mini_box p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6em;
  margin: 0;
}

.recruit_flow_cont_1_mini_box p span {
  color: #FF0004;
  line-height: 1.5em;
}

/*　フロー２　*/
.recruit_flow_cont_2 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 20px 30px;
  margin: 0 auto 40px;
}

.recruit_flow_cont_2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 20px solid #1478C8;
}

.recruit_flow_cont_2 h4 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1478C7;
  text-align: center;
}

/*　フロー３　*/
.recruit_flow_cont_3 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 20px 30px;
  margin: 0 auto 30px;
}

.recruit_flow_cont_3 h4 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1478C7;
  text-align: center;
}

/*　問い合わせ　*/
.recruit_flow_inquiry {
  width: 100%;
}

.recruit_flow_inquiry p {
  font-size: 1.6rem;
}

/*
footer
-------------------------------------*/
footer {
  width: 100%;
  background: #ededed;
  box-sizing: border-box;
  padding: 20px 5%;
}

.logo_nippo {
  width: 30%;
  margin-bottom: 20px;
}

.logo_nippo img {
  width: 100%;
}

.foot_link_1 {
  width: 100%;
  margin-bottom: 20px;
}

.foot_link_1 ul {
  display: flex;
  flex-wrap: wrap;
}

.foot_link_1 ul li {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #444444;
  border-right: solid 1px #444444;
  padding: 0 15px;
  margin-bottom: 7px;
}

.foot_link_1 ul li:last-child {
  border-right: none;
}

.foot_link_2 {
  width: 100%;
  margin-bottom: 20px;
}

.foot_link_2 ul {
  display: flex;
  flex-wrap: wrap;
}

.foot_link_2 ul li {
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #444444;
  border-right: solid 1px #444444;
  padding: 0 15px;
  margin-bottom: 7px;
}

.foot_link_2 ul li:last-child {
  border-right: none;
}

/*
トップへ戻る
-------------------------------------*/

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  border: solid 3px #D97400;
  right: 10px;
  bottom: 80px;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
  color: #D97400;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 4px;
  left: 0;
  margin: auto;
  text-align: center;
}

/*
応募はこちらボタン
-------------------------------------*/
.sp_btn_apply {
  width: 90px;
  height: 90px;
  position: fixed;
  /* border: solid 3px #D97400; */
  right: 15px;
  bottom: 30px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  /* background-color: #ffffffcc; */
  box-shadow: 4px 4px 4px #d6d6d6a1;
}

.sp_btn_apply a {
  /* font-size: 1.4rem; */
  /* color: #d97400; */
}

/*ポップアップ
--------------------------------------*/

input {
  display: none;
}

/* ポップアップwindow部分 */
.overlay {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
}

/* オーバーレイの背景部分 */
.bg_gray {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
}

/* ウィンドウ部分 */
.window {
  width: 85%;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
}

/* 閉じるボタン */
.btn_cloth {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  z-index: 100;
  cursor: pointer;
}

.btn_cloth:hover {
  opacity: 0.7;
}

.btn_cloth span,
.btn_cloth span::before {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #1478C8;
}
.btn_cloth span {
  transform: rotate(45deg);
}
.btn_cloth span::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
}

.recruit_interview_popup {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  height: 70vh;
  overflow: scroll;
  padding: 30px 20px;
  margin: 0 auto;
}

.recruit_interview_popup img {
  display: block;
  width: 100%;
  margin: 0 auto 15px;
}

.recruit_interview_popup h3 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background-color: #1478C8;
  margin-bottom: 5px;
}

.recruit_interview_popup h4 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.recruit_interview_popup h4 span {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 8px;
}
.recruit_interview_popup h4 .popup_sub {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: -5px;
}

.recruit_interview_popup p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 5px;
}
.recruit_interview_popup p.popup_question {
  color: #1478C7;
  font-weight: 600;
}

.recruit_interview_popup p.popup_answer {
  margin-bottom: 20px;
}

/* クリックで表示 */
[id^="popup"]:checked + [class^="overlay"] {
  visibility: visible;
}

[id^="popup"]:checked + [class^="overlay"] .window {
  animation: fadein 100ms forwards;
  animation-timing-function: ease-in-out;
}



@keyframes fadein {
    100% {
        opacity: 1;
    }
}


/* コンテンツ部分のスタイル */
.txt_label {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.txt_label:hover {
  opacity: 0.7;
}

/*　余白調整　*/
.pt--0 {
  padding-top: 0;
}
.mt--0 {
  margin-top: 0;
}

.recruit_btn.sp-mb--30 {
  margin-bottom: 30px;
}
.recruit_btn.sp-mb--60 {
  margin-bottom: 60px;
}
.recruit_btn.mb--40 {
  margin-bottom: 40px;
}

.sp-br {
  display: block;
}

/*
 PC css
==================================================*/
@media print, screen and (min-width: 768px) {

html {
  scroll-padding-top: 100px;
}
/*
header & g-navi PC
-------------------------------------*/
  
.recruit_hd_sp {
  display: none;
}
  
.recruit_hd_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 80px;
  position: fixed;
  top: 0;
  background: #1478C8;
  z-index: 1000;
  padding: 0 3%;
  }
  
/*　logo & title */
.recruit_hd_title {
  display: flex;
  width: 280px;
  /* align-items: center; */
  /* width: 26%; */
  color: #FFFFFF;
  line-height: 0;
  font-family: 'Font Awesome 5 Free';
  position: relative;
  flex-shrink: 0;
  /* top: -52%;
  left: 0; */
}

.recruit_hd_title h1 {
  width: 140px;
  /* position: absolute;
  top: 25px;
  left: 0px; */
}

.recruit_hd_title h1 img {
  width: 100%;
}

.recruit_hd_title p {
  font-weight: 900;
  font-size: 1.5rem;
  position: absolute;
  top: 60%;
  left: 145px;
  width: 100%;
  /* position: absolute;
  top: 52px;
  left: 145px; */
}

.recruit_hd_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}

.gnavi__wrap {
  /* width: 60%; */
  /*position: absolute;
  top: 30px;
  right: 100px;*/
}
.gnavi__lists {
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  justify-content: flex-end;
  padding: 0 15px 0 0;
  flex-wrap: wrap;
}
.gnavi__list {
  height: 80px;
  position: relative;
  transition: all .3s;
  margin: 0 15px;
}

.gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  transition: all .3s;
  padding: 15px 0;
}

/*グローバルナビをホバーする*/
.gnavi__list a:hover {
    opacity: 0.7;
  }

.dropdown__lists {
  display: none;/*デフォルトでは非表示の状態にしておく*/
  width: auto;
  min-width: 100%;
  background-color: #f1f9fff2;
  position: absolute;
  top: 80px;
  left: 50%; /* 親要素の中央に位置させる */
  transform: translateX(-50%); /* 左右中央に配置 */
  padding: 10px 0;
  z-index: 1001;
}
.gnavi__list:hover .dropdown__lists {
  display: block;/*Gナビメニューにホバーしたら表示*/
}
  
.dropdown__list {
  transition: all .3s;
  position: relative;
}

.dropdown__list a {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #1478C8;
  text-decoration: none;
  position: relative;
  padding: 8px 15px;
  margin: 0;
}
  
.dropdown__list a:hover {
  color: #D97400;
}
  
.btn_apply {
  background: #FFFFFF;
  border-radius: 20px;
  /*position: absolute;
  top: 27px;*/
  /* right: 50px; */
  height: 100%;
  flex-shrink: 0;
  margin-left: 10px;
}  
  
.btn_apply a {
  display: block;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #1478C8;
  position: relative;
  padding: 5px 40px 5px 30px;
}

/*応募はこちらをホバーする*/
.btn_apply a:hover {
  opacity: 0.7;
}
  
.btn_apply a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 9px #1478C8;
  top: 39%;
  right: 12%;
}

/*　PCメインイメージ　*/
.main_img {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 80px;
}
.main_img img {
  width: 100%;
  }
 
/*　SPメインイメージ　*/  
.sp_main_img {
  display: none;
}

/*
共通部品
-------------------------------------*/

/* view more */
.view_more {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
}

.view_more a {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
  
.view_more label {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.view_more h5 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #1478C8;
}

.view_more h6 {
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #1478C8;
  border-right: 3px solid #1478C8;
  transform: skew(45deg);
}

/*view moreと→をオレンジに変える*/
.view_more a:hover h5{
  color: #D97400;
}

.view_more a:hover h6{
  border-bottom: 2px solid #D97400;
  border-right: 3px solid #D97400;
}
  
#company .view_more {
  padding-right: 50px;
}

/*　category　見出し　*/
.category_title {
  margin-bottom: 5px;
}

.category_title dl {
  display: flex;
  align-items: baseline;
}

.category_title dl dt {
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  font-size: 6rem;
  letter-spacing: 0.2rem;
  color: #1478C8;
}

.category_title dl dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #444444;
  padding-left: 10px;
}
  
/*　各ページ　wraper　*/
.recruit_page_wraper {
  width: 100%;
  padding-top: 120px;
  margin: 60px auto;
}
  
/*　各ページタイトル　*/
.recruit_page_title {
  width: 1100px;
  text-align: center;
  border-bottom: solid 3px #1478C8;
  padding: 0 0 20px 0;
  margin: 0 auto 60px;
}

.recruit_page_title h2 {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 7rem;
  color: #1478C8;
  line-height: 1em;
}

.recruit_page_title h3  {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}

/*　汎用タイトル　*/
.recruit_middle_title {
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 40px auto;
}
.recruit_middle_title h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 15px #F1C13D;
  padding-left: 15px;
}

/*　各カテゴリー　*/

.recruit_category_box h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}
  
/*　slider使用時の枠　幅フルサイズ　*/
.recruit_category_box_full {
  width: 100%;
  margin: 0 auto 30px;
}

/*
新着情報 一覧
-------------------------------------*/

.recruit_news {
  width: 100%;
  background: #EBEBEB;
  padding: 100px 0;
  margin-bottom: 80px;
}

.recruit_news_box {
  width: 800px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 60px 80px;
  margin: 0 auto;
}

.recruit_news_box h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1478C8;
  letter-spacing: 0.2rem;
  border-bottom: solid 1px #444444;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.recruit_news_box dl {
  display: flex;
  flex-wrap: wrap;
  color: #444444;
  border-bottom: solid 1px #444444;
  padding-bottom: 0;
  margin-bottom: 15px;
}
  
.recruit_news_box a:hover dl {
  color: #D97400;
}

.recruit_news_box dl dt {
  width: 30%;
  font-size: 1.7rem;
}
  
.recruit_news_box dl dt span {
  font-size: 1.4rem;
  color: #FFFFFF;
  background: #1478C8;
  border-radius: 20px;
  padding: 3px 20px 4px;
  margin: 10px;
}

.recruit_news_box dl dd {
  width: 70%;
  font-size: 1.7rem;
  line-height: 2em;
  padding-bottom: 15px;
}

/*　"New"　表示　*/
.is_new::after {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 1.7rem;
  content: 'New!';
  color: #D97400;
  margin: 0 0 0 7px
}
  
.recruit_page_NewInformation {
  border: solid 3px #1478C8;
  border-radius: 40px;
  padding: 55px 65px 25px 65px;
}
  
/*　ページネーション　*/
.recruit_pagenation {
  width: 100%;
  font-family: "Roboto Condensed", serif;
  margin: 30px auto 40px;
}

.recruit_pagenation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.recruit_pagenation ul li {
}

.recruit_pagenation ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 400px;
  color: #1478C8;
  text-align: center;
  line-height: 38px;
  background: #FFFFFF;
  border: solid 2px #1478C8;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}

.recruit_pagenation ul li.active a {
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background: #1478C8;
  border: solid 2px #1478C8;
}

.recruit_pagenation ul li.prev a {
  color: #1478C8;
  border: none;
  background: none;
}

.recruit_pagenation ul li.next a {
  color: #1478C8;
  border: none;
  background: none;
}
.pamphlet_wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pamphlet_wrap a {
  width: 230px;
  margin-right: 50px;
}

/*パンフレットをホバーする*/
.pamphlet_wrap a:hover {
  opacity: 0.7;
}

.pamphlet_info {
  position: relative; /* 擬似要素の位置を基準にするために必要 */
  border: solid 3px rgb(217, 116, 0);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center;    /* 垂直方向の中央揃え */
  background-color: #fff; /* 背景色を設定 */
}
.pamphlet_info::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 10px;
  top: 50%;
  left: -32px; /* 三角形の位置を調整 */
  transform: translateY(-50%);
  border-width: 16px;
  border-style: solid;
  border-color: transparent rgb(217, 116, 0) transparent transparent;
}

.pamphlet_info::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 10px;
  top: 50%;
  left: -28px; /* 内側の白い三角形の位置を調整 */
  transform: translateY(-50%);
  border-width: 16px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.pamphlet_wrap .pamphlet_info p {
  padding: 0;
  margin: 0; /* デフォルトのマージンをリセット */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #D97400;
  line-height: 1.5em;
}
  
.article-body h3.accent:before {
  width: 10px;
  height: 20px;
  margin: 0 10px -2px 0;
}
  
.article-body table>tbody td {
  font-size: 1.5rem;
  padding: 12px 17px;
}
  
/*
新着情報　個別内容ページ
-------------------------------------*/

.recruit_new_contents {
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 60px;
}

.recruit_new_contents_title {
  width: 100%;
  margin: 0 50px 2px 50px;
}

.recruit_new_contents_title h2 {
  font-size: 2.8rem;
  font-weight: 600;
  border-left: solid 15px #F1C13D;
  padding-left: 15px;
  margin-bottom: 25px;
}

.recruit_new_contents_detail {
  border: solid 2px #1478C8;
  padding: 80px;
  margin: 30px 50px 50px 50px;
}

.recruit_new_contents_detail h3 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.recruit_new_contents_detail p {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2em;
  margin-bottom: 30px;
}

.recruit_new_contents_app_btn {
  width: 60%;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  border: solid 2px #D97400;
  margin: 60px auto 40px;
}

.recruit_new_contents_app_btn a {
  display: block;
  color: #D97400;
  padding: 10px 0;
}
  
/*
会社について トップページ
-------------------------------------*/

.recruit_category_box {
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin: 0 auto 50px;
}

.recruit_category_box .category_content {
  font-size: 1.7rem;
  line-height: 2em;
  padding: 10px 50px;
}
  
/*
会社について　詳細ページ
-------------------------------------*/

.recruit_page_company {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  border-bottom: solid 2px #1478C8;
  clear: both;
  overflow: hidden;
  padding: 10px 0 60px 0;
  margin: 0 auto 50px;
}
  
.recruit_page_company_replace {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  border-bottom: solid 2px #1478C8;
  clear: both;
  overflow: hidden;
  padding: 10px 0 60px 0;
  margin: 0 auto 50px;
}
  
/*　PC横幅フルサイズ　*/
.W_full {
  width: 100%;
  }
  
.recruit_page_company_L {
  width: 35%;
  }
  
.recruit_page_company_R {
  width: 60%;
  margin: 0 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }

.recruit_page_company_L h3 {
	font-size: 2.5rem;
  font-weight: 600;
	text-align: center;
  margin-bottom: 10px;
}

.recruit_page_company_R h2 {
	display: flex;
  color: #1478C8;
	justify-content: center;
	align-items: center;
	font-size: 2.2rem;
  font-weight: 600;
	text-align: center;
  margin-bottom: 10px
}

.recruit_page_company_R h2::before,
.recruit_page_company_R h2::after {
  content: '';
	width: 3px;
	height: 30px;
	background-color: #1478C8;
}

.recruit_page_company_R h2::before {
	margin-right: 20px;
	transform: rotate(-25deg)
}

.recruit_page_company_R h2::after {
	margin-left: 20px;
	transform: rotate(25deg)
}

.recruit_page_company_R p {
  font-size: 1.7rem;
  line-height: 2em;
  margin: 0 20px;
}

.recruit_page_company_L img {
  display: block;
  max-width: 100%;
  margin: 0 auto 20px;
}


.recruit_category_box .bxslider li img {
  width: 500px;
}

.recruit_category_box p {
  font-size: 1.7rem;
  line-height: 2rem;
  padding: 0 50px 35px 50px;
}
  
.recruit_category_box p.ms_text {
  font-size: 1.7rem;
  line-height: 2em;
  margin: -40px 0 0 0;
}
  
/*
仕事について　トップページ
-------------------------------------*/

.work_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.work_box dl {
  width: 30%;
  margin: 0 1%;
}

.work_box dl dt {
  width: 100%;
  margin-bottom: 5px;
}

.work_box dl dt img {
  width: 100%;
}

.work_box dl dd {
  color: #444444;
}

.work_box dl dd h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  letter-spacing: 0.1rem;
}

.work_box dl dd h6::after {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(/common/files/ngt-common/images/recruit/icon_view.png);
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 45px;  
}

.work_box dl dd p {
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  color: #1478C8;
  font-size: 2rem;
  margin-top: -3px;
  margin-bottom: 80px;
}
  
.work_box p {
  padding: 0;
}

/*work boxをホバーする*/
.work_box dl:hover {
  opacity: 0.7;
}

/*
仕事について　詳細ページ
-------------------------------------*/
.recruit_work_detail {
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 40px auto;
}
.recruit_category_box .recruit_work_detail {
  margin: 0 auto 40px;
}
.recruit_work_detail h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 15px #F1C13D;
  padding-left: 15px; 
}
  
.recruit_work_detail h3 {
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: 400;
  text-align: left;
  padding-left: 30px;
  margin-bottom: -30px;
}

.recruit_work_detail h4 {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  line-height: 2em;
}

.recruit_work_detail p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2em;
  margin: 0 30px 100px 30px;
}

/*　社員紹介　*/
.recruit_work_detail_employe {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
  margin: 0 auto 50px;
}

.recruit_work_detail_employe_box {
  width: 27%;
  margin: 0 3% 60px;
}

.recruit_work_detail_employe_box:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.recruit_work_detail_employe_box img {
  width: 100%;
  margin-bottom: 20px;
}

.recruit_work_detail_employe_box h3 {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #1478C8;
  text-align: center;
  padding: 2px 30px 1px;
  margin-bottom: 12px;
}

.recruit_work_detail_employe_box h4 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.1em;
  border-bottom: solid 1px #444444;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.recruit_work_detail_employe_box h4 span {
  font-size: 1.5rem;
  font-weight: 400;
}

.recruit_work_detail_employe_box p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 10px;
}

/*recruit work boxのview moreをホバーする*/
.recruit_work_detail_employe_box:hover h5{
  color: #D97400;
}

.recruit_work_detail_employe_box:hover h6{
  border-bottom: 2px solid #D97400;
  border-right: 3px solid #D97400;
}

/*
採用情報
-------------------------------------*/

#recruit {
  width: 100%;
}

.w_85 {
  width: 1100px;
  margin: 0 auto 25px;
}
  
.bxslider li {
  /*width: 30%;*/
  margin: 0 2%;
}

.recruit_cont_box {
  width: 100%;
  margin: 0 2%;
}

.recruit_cont_box img {
  width: 100%;
  margin-bottom: 5px;
}

.recruit_cont_box h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 2.3rem;
  color: #444444;
  margin: -4px 0 0 0;
}

.recruit_cont_box h3 span {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: -12px;
}

.recruit_cont_box h4 {
  width: 60%;
  font-family: "Roboto Condensed", serif;
  text-align: center;
}

.recruit_cont_box h4 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #1478C8;
  border-radius: 20px;
  padding: 1px 0;
}

/*recruit cont boxのview moreをホバーする*/
.top-bxslider .recruit_cont_box:hover {
  opacity: 0.7;
}

.recruit_cont_box:hover h4 span{
  background: #D97400;
}

.recruit_btn_wrap {
  width: 1100px;
  margin: 0 auto;
}

.recruit_btn {
  width: 60%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-align: center;
  border: solid 3px #D97400;
  box-sizing: border-box;
  margin: 0 auto 40px;
}
.recruit_btn:last-child {
  margin: 0 auto;
}

.recruit_btn a {
  display: block;
  color: #D97400;
  padding: 10px 0;
}

/*
よくある質問
-------------------------------------*/

.accordion {
  border: solid 3px #1478C8;
  margin-bottom: 30px;
}

.accordion dt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6em;
  color: #FFFFFF;
  background: #1478C8;
  position: relative;
  padding: 15px 10px 15px 40px;
  cursor: pointer;
}

.accordion dt::before {
  content: "";
  width: 3px;
  height: 20px;
  background: #FFFFFF;
  position: absolute;
  right: 34px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .6s ease;
}

.accordion dt::after {
  content: "";
  width: 20px;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .6s ease;
}

.accordion dt.open::before{
  transform: rotate(90deg);
}
.accordion dt.open::after{
  transform: rotate(-180deg);
}

.accordion dd {
  display: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2em;
  padding: 25px 40px;
}
  
/*
社長メッセージ
-------------------------------------*/

.recruit_message_box {
  width: 1100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 50px;
}

.recruit_message_box h2 {
	display: flex;
  color: #1478C8;
	justify-content: center;
	align-items: center;
	font-size: 2.2rem;
  font-weight: 600;
	text-align: center;
  margin-bottom: 10px
}

.recruit_message_box h2::before,
.recruit_message_box h2::after {
  content: '';
	width: 3px;
	height: 30px;
	background-color: #1478C8;
}

.recruit_message_box h2::before {
	margin-right: 25px;
	transform: rotate(-25deg)
}

.recruit_message_box h2::after {
	margin-left: 25px;
	transform: rotate(25deg)
}

.message_img {
  display: block;
  width: 400px;
  margin: 0 auto 50px;  
}

.message_img {
  max-width: 100%; 
}

.message_text {
  width: 100%;
  font-weight: 400;
  padding: 0 100px;
  margin: 0 auto;
}

.message_text h4 {
  font-size: 2rem;
  line-height: 1.5em;
  text-align: right;
  font-weight: 400;
  margin: 40px 0 15px 0;
}

.message_text h5 {
  font-size: 2.3rem;
  line-height: 1.5em;
  text-align: right;
  font-weight: 400;
  margin-bottom: 10px;
}

.message_text p {
  font-size: 1.7rem;
  line-height: 2em;
  font-weight: 400;
  margin-bottom: 30px;
}
.message_text p.wt-member span {
  font-size: 1.5rem;
  margin-right: 20px;
}
/*
ソーシャルメディア
-------------------------------------*/

.recruit_category_sns {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 1200px;
  margin: 0 auto 60px;
}

.recruit_sns {
  width: 26%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin: 0 2% 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recruit_sns h2 {
  font-size: 1.8rem;
  font-weight: 600;
  border-left: solid 10px #F1C13D;
  padding-left: 10px;
  margin-bottom: 15px;
}

.recruit_sns dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
}

.recruit_sns dl dt {
  width: 25%;
  margin-right: 5%;
}

.recruit_sns dl dt img {
  width: 100%;
}

.recruit_sns dl dd {
  width: 68%;
}

.recruit_sns dl dd p {
  font-size: 1.5rem;
  line-height: 1.6em;
}

/*　SNS ICON　*/
.recruit_sns_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  border-top: solid 2px #444444;
  padding-top: 10px;
}

.recruit_sns_link a img {
  width: 30px;
  margin: 0 5px;
}

/*recruit snsアイコンをホバーする*/
.recruit_sns_link :hover{
  opacity: 0.7;
}
  
/*
インターンシップ
-------------------------------------*/

/*　目次　*/
.recruit_page_internship_list {
  width: 100%;
  border: solid 2px #1478C8;
  border-radius: 20px;
  padding: 40px 5% 30px;
  margin: 50px auto 30px;
}
  
.recruit_page_internship_list ul {
}

.recruit_page_internship_list ul li {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.8em;
  position: relative;
  padding-left: 20px;
}
  
.recruit_page_internship_list ul li span {
  font-size: 1.5rem;
}

.recruit_page_internship_list ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #1478C8;
  border-radius: 50%;
}

/*　過去の様子　*/
.recruit_page_internship_bygone {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.recruit_page_internship_bygone_box {
  width: 44%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 3% 60px;
}

.recruit_page_internship_bygone_box img {
  width: 100%;
  margin-bottom: 10px;
}

.recruit_page_internship_bygone_box h3 {
  font-size: 2.2rem;
  line-height: 1.6em;
  font-weight: 600;
  color: #1478C8;
  margin: 10px 0;
}
  
.recruit_page_internship_bygone_box h3 span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #444444;
  padding-left: 5px;
  display: inline;
}

.recruit_page_internship_bygone_box p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 0;
  padding: 0;
}

/*　参加者の声　*/
.recruit_page_internship_voice_wrap {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #E0ECF3;
  padding: 80px 0;
  margin: 0;
}

.recruit_page_internship_voice {
  width: 1100px;
  text-align: center;
  border-bottom: dotted 5px #FFFFFF;
  margin: 0 auto 80px;
}
  
.recruit_page_internship_voice:last-child {
  margin: 0 auto 40px;
}

.recruit_page_internship_voice h3 {
  font-size: 2.2rem;
  line-height: 3.6rem;
  font-weight: 600;
  text-align: left;
  position: relative;
  padding-left: 35px;
  margin-bottom: 50px;
}

.recruit_page_internship_voice h3::before {
  content: "Q";
  font-size: 3rem;
  color: #1478C8;
  position: absolute;
  left: 0;
  top: -2px;
}

.recruit_page_internship_voice h4 {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 80px;
}
  
.recruit_page_internship_voice h4 span {
  border-bottom: solid 5px #F1C13D;
}

.recruit_page_internship_voice h5 {
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  font-size: 4.5rem;
  color: #1478C8;
}

.recruit_page_internship_voice ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 80px;
}

.recruit_page_internship_voice ul li {
  position: relative;
  display: inline-block;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: left;
  width: 29.33%;
  margin: 0 2% 50px;
}
  
.recruit_page_internship_voice ul li p.voice_main {
  /* font-size: 1.5rem;
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 15px; */
}

.recruit_page_internship_voice ul li p.voice_sub {
  font-size: 1.3rem;
  color: #1478C8;
  text-align: right;
}

  
/*
内定者の声
-------------------------------------*/
.recruit_voice_text {
}

.recruit_voice_text p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 20px;
}

.recruit_voice_text p::before,
.recruit_voice_text p::after {
  content: '';
	width: 1px;
	height: 42px;
	background-color: #444444;
}

.recruit_voice_text p::before {
	margin-right: 25px;
	transform: rotate(-25deg)
}

.recruit_voice_text p::after {
	margin-left: 25px;
	transform: rotate(25deg)
}
  
/*
求める人物像
-------------------------------------*/
.recruit_policy_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 1100px;
  margin: 0 auto 50px;
}

/*　ポリシー　*/
.recruit_policy_cont_1 {
  width: 100%;
  background: #F6F6F6;
  padding: 60px;
  margin: 0 auto 70px;
}

.recruit_policy_cont_1 h2 {
  font-size: 2rem;
  font-weight: 400;
  border-left: solid 10px #F1C13D;
  padding-left: 15px;
  margin-bottom: 10px;
}

.recruit_policy_cont_1 p {
  font-size: 1.7rem;
  line-height: 2em;
}

/*　ポリシー２　*/
.recruit_policy_cont_2 {
  display: block;
  flex-wrap: wrap;
  width: 100%;
  border: solid 3px #444444;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 70px 70px 50px 70px;
  margin: 0 auto 70px;
}

.recruit_policy_cont_2 img {
  order: 3;
  width: 43%;
  float: right;
  margin: 0 0 3% 3%;
}

.recruit_policy_cont_2 h2 {
  order: 1;
  width: 50%;
  font-size: 2.8rem;
  font-weight: 600;
  display: inline-block;
  
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.recruit_policy_cont_2 h2 span {
  border-bottom: solid 3px #1478C8;
}

.recruit_policy_cont_2 h3 {
  order: 0;
  width: 50%;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1478C8;
}

.recruit_policy_cont_2 p {
  order: 4;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 20px;
}

/*　採用における新潟日報社の人事ポリシー　*/
.recruit_policy_cont_3 {
  margin-bottom: 50px;
}

.recruit_policy_cont_3 h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 15px #F1C13D;
  padding-left: 15px;
  margin: 100px 0 20px 0;
}

.recruit_policy_cont_3 p {
  font-size: 1.7rem;
  line-height: 2em;
  margin-top: 30px;
}

.recruit_policy_cont_4 {
  width: 100%;
  margin: 0 auto;
}

.recruit_policy_cont_4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.recruit_policy_cont_4 ul a {
  width: 25%;
  height: auto;
  color: #1478C8;
  text-align: center;
  border: solid 3px #1478C8;
  border-radius: 20px;
  position: relative;
  padding: 10px;
  margin: 0 2% 100px;
}

.recruit_policy_cont_4 ul a li::before {
  content: "";
  position: absolute;
  top: 107%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #1478C8;
}
  
.recruit_policy_cont_4 ul a li img {
  width: 60%;
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
  margin: -25px auto 0px;
}

.recruit_policy_cont_4 ul a li h2 {
  font-size: 4rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 600;
  text-align: left;
  /* position: absolute;
  top: 10px;
  left: 40px; */
  padding-left: 30px;
}

.recruit_policy_cont_4 ul a li p {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5em;
  /* position: absolute;
  right: 0;
  left: 0;
  top: 86%; */
  margin: 10px auto 20px;
}
  
.recruit_policy_cont_4 ul a li p br {
  display: none;
}

.recruit_policy_cont_5 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  text-align: left;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 50px 80px;
  margin: 0 auto 50px;
}

.recruit_policy_cont_5 h2 {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1478C8;
  margin-bottom: 10px;
}

.recruit_policy_cont_5 h2 span {
  border-bottom: solid 3px #F1C13D;
  padding-bottom: 5px;
}

.recruit_policy_cont_5 p {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 2em;
  padding-top: 15px;
}
  
.recruit_policy_cont_5 img {
  display: block;
  width: 80px;
  margin-right: 25px;
  }
  
/*
募集概要
-------------------------------------*/

.recruit_required_wrap{
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 1100px;
  margin: 0 auto 80px;;
}

/*　見出し　*/
.recruit_required_title {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 50px;
}

.recruit_required_title h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  border-left: solid 15px #F1C13D;
  padding-left: 15px;
}

/*　お知らせ　*/
.recruit_required_cont_1 {
  width: 100%;
  background: #F6F6F6;
  padding: 20px 50px;
  margin: 0 auto 50px;
}
.recruit_required_cont_1.sp-mb--30 {
  margin-bottom: 50px;
}

.recruit_required_cont_1 p {
  font-size: 1.7rem;
  line-height: 2em;
}

.recruit_required_cont_1 p span {
  color: #FF0004;
}
  
/*　テキスト　*/
.recruit_required_text {
  width: 90%;
  margin: 0 auto 50px;
}

.recruit_required_text p {
  font-size: 1.7rem;
  line-height: 2em;
}

/*　要項　*/
.recruit_required_cont_2 {
  margin-bottom: 70px;
}

.recruit_required_cont_2 table {
  width: 900px;
  border-collapse: collapse;
  border: solid 2px #444444;
  margin: 0 auto;
}

.recruit_required_cont_2 table tr {
}

.recruit_required_cont_2 table tr th {
  font-size: 1.8rem;
  font-weight: 400;
  background-color: #F6F6F6;
  border: solid 2px #444444;
  writing-mode: horizontal-tb;
  padding: 10px;
}

.recruit_required_cont_2 table tr th span {
	writing-mode: horizontal-tb;
	white-space: normal;
}

.recruit_required_cont_2 table tr td {
  font-size: 1.7rem;
  line-height: 2em;
  border: solid 2px #444444;
  padding: 30px 40px;
}

.recruit_required_cont_2 table tr th:nth-child(1) {
  width: 25%;
  text-align: center;
}

.recruit_required_cont_2 table tr th:nth-child(2) {
  width: 75%;
}

/*　過去３年　*/
.recruit_required_cont_3 {
  margin-bottom: 70px;
}

.recruit_required_cont_3 table {
  width: 900px;
  border-collapse: collapse;
  border: solid 3px #444444;
  margin: 0 auto;
}

.recruit_required_cont_3 table tr {
}

.recruit_required_cont_3 table tr td {
  font-size: 2.8rem;
  font-weight: 600;
  border: solid 3px #444444;
  text-align: center;
  padding: 10px;
}

.recruit_required_cont_3 table tr th {
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #F6F6F6;
  border: solid 3px #444444;
  text-align: center;
  padding: 20px;
}
  
.recruit_required_cont_3 table tr th br {
  display: none;
}

.recruit_required_cont_3 table tr th:nth-child(1) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(2) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(3) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(4) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(5) {
  width: 16%;
}

.recruit_required_cont_3 table tr th:nth-child(6) {
  width: 16%;
}

/*　データ　*/
.recruit_required_cont_4 {
}

.recruit_required_cont_4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.recruit_required_cont_4 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;  width: 25%;
  height: auto;
  text-align: center;
  border: solid 4px #1478C8;
  border-radius: 20px;
  background-color: #F6F6F6;
  background-size: 40% auto;
  background-position: 50% 40%;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 40px 30px 40px;
  margin: 0 2% 50px;
}
  
.recruit_required_cont_4 ul li img {
  width: 90%;
  margin: -10px 0;
  position: relative;
}

.recruit_required_cont_4 ul li h3 {
  font-size: 2rem;
  font-weight: 900;
  /* position: absolute; */
}

.recruit_required_cont_4 ul li h4 {
  display: inline;
  font-size: 6rem;
  font-weight: 900;
  line-height: 4rem;
  /* position: absolute;
  top: 190px;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

.recruit_required_cont_4 ul li .recruit_required_cont_4_data {
  margin-top: 0;
}

.recruit_required_cont_4 ul li h4.birthplace_data {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
}

.recruit_required_cont_4 ul li h4.birthplace_data .birthplace_data_label {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: normal;
}

.recruit_required_cont_4 ul li h4 span {
  font-size: 2.3rem;
  font-weight: 600;
}

.recruit_required_cont_4 ul li p {
  font-size: 1.6rem;
  font-weight: 400;
  /* position: absolute;
  top: 280px;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

/*　育休　*/
.recruit_required_cont_5 {
}

.recruit_required_cont_5 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.recruit_required_cont_5 ul li {
  width: 25%;
  /* height: 35vh; */
  text-align: center;
  /* background-size: 60% auto;
  background-position: 50% 40%;
  background-repeat: no-repeat; */
  /* position: relative; */
  padding: 10px;
  margin-bottom: 40px;
}
  
.recruit_required_cont_5 ul li img {
  width: 80%;
  /* position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  bottom: 0; */
  margin: auto;
}

.recruit_required_cont_5 ul li h3 {
  font-size: 2rem;
  font-weight: 900;
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0; */
  margin: 0 auto;
}

.recruit_required_cont_5 ul li h4 {
  font-size: 6rem;
  font-weight: 900;
  /* position: absolute;
  top: 55%;
  left: 0;
  right: 0; */
  margin: -30px auto 0;
}

.recruit_required_cont_5 ul li h4 span {
  font-size: 2rem;
  font-weight: 900;
}

/*
働く環境
-------------------------------------*/
.recruit_environment_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 1100px;
  margin: 0 auto 80px;;
}

.recruit_environment_cont_1 {
  width: 900px;
  margin: 0 auto 120px;
}

.recruit_environment_cont_1 img {
  width: 100%;
}

.recruit_environment_cont_1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.recruit_environment_cont_1 ul li {
  width: 25%;
  margin: 0 3% 35px;
}

.recruit_environment_cont_1 ul li img {
  width: 100%;
  border: solid 3px #1478C8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
}

.recruit_environment_cont_1 ul li p {
  font-size: 1.7rem;
  line-height: 1.5em;
  text-align: center;
}

.recruit_environment_other {
  width: 100%;
  background-color: #F6F6F6;
  box-sizing: border-box;
  padding: 40px 60px;
  margin: 0 auto 120px;
}

.recruit_environment_other p {
  font-size: 1.7rem;
  line-height: 2em;
}
  
.recruit_environment_other p span {
  font-size: 1.7rem;
  line-height: 2em;
}
  
.recruit_environment_cont_2_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  }

.recruit_environment_cont_2 {
  width: 44%;
  margin: 0 3% 60px;
}

.recruit_environment_cont_2 img {
  width: 100%;
  margin-bottom: 20px;
}

.recruit_environment_cont_2 h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1478C8;
  text-align: center;
  margin-bottom: 5px;
}

.recruit_environment_cont_2 p {
  display: inline-block;
  width: 100%;
  font-size: 1.7rem;
  line-height: 2em;
}

.recruit_environment_cont_3 {
  margin: 0 auto 60px;
}

.recruit_environment_cont_3 h3 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background: #1478C8;
  padding: 10px 0;
  margin-bottom: 40px;
}
  
.recruit_environment_cont_3 ul {
  display: flex;
  flex-wrap: wrap;
}
  
.recruit_environment_cont_3 ul li {
  width: 29%;
  margin: 0 2%;
}

.recruit_environment_cont_3 dl {
  margin-bottom: 50px;
}

.recruit_environment_cont_3 dl dt {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1478C8;
  border-bottom: solid 2px #1478C8;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.recruit_environment_cont_3 dl dd {
  font-size: 1.7rem;
  line-height: 2em;
}
  
.recruit_environment_cont_4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto 60px;
}

.recruit_environment_cont_4 img {
  width: 40%;
  margin: 0 4% 0 0;
}

.recruit_environment_cont_4 p {
  width: 55%;
  font-size: 1.7rem;
  line-height: 2em;
}
  

/*
採用フロー
-------------------------------------*/

/*　フロー１　*/
.recruit_flow_cont_1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 40px 30px;
  margin: 0 auto 60px;
}

.recruit_flow_cont_1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  border: 35px solid transparent;
  border-top: 20px solid #1478C8;
}

.recruit_flow_cont_1 h3 {
  width: 100px;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  font-size: 5.5rem;
  color: #1478C7;
  text-align: center;
  line-height: 0.8em;
  border-bottom: none;
  border-right: solid 3px #1478C7;
  pading: 0 10px 20px 0;
  margin: 0;
}

.recruit_flow_cont_1 h3 span {
  font-size: 2.8rem;
  font-weight: 400;
}

.recruit_flow_cont_1 h3 span::after {
  content: "\A";
  white-space: pre;
}

.recruit_flow_cont_1 img {
  display: block;
  width: 150px;
  margin: 0 50px;
}

.recruit_flow_cont_1_mini_box {
  width: 60%;
}

.recruit_flow_cont_1_mini_box h4 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1478C7;
}

.recruit_flow_cont_1_mini_box h5 {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7em;
  margin-bottom: 5px;
}

.recruit_flow_cont_1_mini_box p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7em;
  margin: 0;
}
  
.recruit_flow_cont_1_mini_box p br {
  display: none;
}

.recruit_flow_cont_1_mini_box p span {
  color: #FF0004;
  line-height: 1.8em;
}

/*　フロー２　*/
.recruit_flow_cont_2 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 30px;
  margin: 0 auto 60px;
}

.recruit_flow_cont_2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  border: 35px solid transparent;
  border-top: 20px solid #1478C8;
}

.recruit_flow_cont_2 h4 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1478C7;
  text-align: center;
}
  
/*　フロー３　*/
.recruit_flow_cont_3 {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 3px #1478C8;
  border-radius: 15px;
  position: relative;
  padding: 30px;
  margin: 0 auto 60px;
}

.recruit_flow_cont_3 h4 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1478C7;
  text-align: center;
}

/*　問い合わせ　*/
.recruit_flow_inquiry {
  width: 100%;
}

.recruit_flow_inquiry p {
  font-size: 2rem;
}  
  
/*
footer
-------------------------------------*/
footer {
  width: 100%;
  background: #ededed;
  box-sizing: border-box;
  padding: 40px 0;
  margin-top: 100px;
}
  
.footer_wraper {
  width: 1100px;
  margin: 0 auto;
}

.logo_nippo {
  width: 150px;
  margin-bottom: 20px;
}

.logo_nippo img {
  width: 100%;
}

.foot_link_1 {
  width: 100%;
  margin-bottom: 20px;
}

.foot_link_1 ul {
  display: flex;
  flex-wrap: wrap;
}

.foot_link_1 ul li {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #444444;
  border-right: solid 1px #444444;
  padding: 0 15px;
  margin-bottom: 7px;
}

.foot_link_1 ul li:last-child {
  border-right: none;
}
  
.foot_link_1 ul li a:hover{
  text-decoration: underline;
}

.foot_link_2 {
  width: 100%;
  margin-bottom: 20px;
}

.foot_link_2 ul {
  display: flex;
  flex-wrap: wrap;
}

.foot_link_2 ul li {
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #444444;
  border-right: solid 1px #444444;
  padding: 0 15px;
  margin-bottom: 7px;
}

.foot_link_2 ul li:last-child {
  border-right: none;
}
  
.foot_link_2 ul li a:hover{
  text-decoration: underline;
}


/*
トップへ戻る
-------------------------------------*/

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  border: solid 3px #D97400;
  right: 50px;
  /* bottom: 270px; */
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 55px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
  color: #D97400;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 4px;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ホバー時のスタイル - 円全体を対象にする */
#page_top:hover {
  border-color: rgba(217, 116, 0, 0.8);
  background-color: rgba(217, 116, 0, 0.8); /* 背景色をオレンジに */
}

/* ホバー時の矢印の色も変更 */
#page_top:hover a::before {
  color: #FFFFFF;
}
  
/*ポップアップ
--------------------------------------*/

input {
  display: none;
}

/* ポップアップwindow部分 */
.overlay {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

/* オーバーレイの背景部分 */
.bg_gray {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
}

/* ウィンドウ部分 */
.window {
  width: 90%;
  height: 80%;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
  z-index: 10000;
  opacity: 0;
}

/* 閉じるボタン */
.btn_cloth {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  z-index: 100;
  cursor: pointer;
}

.btn_cloth:hover {
  opacity: 0.7;
}

.btn_cloth span,
.btn_cloth span::before {
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background: #1478C8;
}
.btn_cloth span {
  transform: rotate(45deg);
}
.btn_cloth span::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
}

.recruit_interview_popup {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  height: 70vh;
  overflow: auto;
  padding: 50px 100px;
  margin: 0 auto;
}

.recruit_interview_popup img {
  display: block;
  width: 400px;
  float: right;
  margin: 0 0 20px 20px;
}

.recruit_interview_popup h3 {
  width: 50%;
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  background-color: #1478C8;
  margin-bottom: 20px;
}

.recruit_interview_popup h4 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 20px;
}

.recruit_interview_popup h4 span {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 10px;
}
.recruit_interview_popup h4 .popup_sub {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0;
}

.recruit_interview_popup p {
  /* width: 50%; */
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 5px;
}

.recruit_interview_popup p.popup_question {
}
  
.recruit_interview_popup p.popup_answer {
  margin-bottom: 20px;
}

/* クリックで表示 */
[id^="popup"]:checked + [class^="overlay"] {
  visibility: visible;
}

[id^="popup"]:checked + [class^="overlay"] .window {
  animation: fadein 100ms forwards;
  animation-timing-function: ease-in-out;
}


@keyframes fadein {
    100% {
        opacity: 1;
    }
}


/* コンテンツ部分のスタイル */
.txt_label {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.txt_label:hover {
  opacity: 0.7;
}

/*　余白調整　*/
.pt--0 {
  padding-top: 0;
}
.mt--0 {
  margin-top: 0;
}

.sp-mb--30 {
  margin-bottom: 0;
}
.sp-mb--60 {
  margin-bottom: 0;
}

.sp-br {
  display: none;
}

}

/*
bxslider css
--------------------------------------*/

.bx-wrapper {
  background: #fff !important;
  max-width: 100% !important;
  box-shadow: none;
  border: none;
  margin-bottom: 20px;
}

.bxslider {
  margin-left: 50%;
}

.bxslider li {
  margin-left: -135px;
  margin-right: 155px !important;
  display: none; /*読み込み時は非表示*/
}
.bx-viewport .bxslider li {
  display: block !important; /*JSが読み込まれたら表示*/
}





