﻿body {
  padding: 0;
  margin: 0;
}

.header_logo_pc { display: none;}

/* --- ▼ページ設定 --- */
#top{
	width:100%;
  box-sizing: border-box;
}

.pc_kaigyo {
  display: inline;
}
.mobile_kaigyo {
  margin: 1px;
  display: block;
}
.mobile_blank3 {
  padding: 3px;
}
.pc_on {
	display:none ;
}

/* --- ▼input_width系 --- */
input[type=text],input[type=tel],input[type=number],input[type=email],textarea,select {
  font-size: 13pt;
}
.inp_350 {
	width: 280px;
}

/* --- ▼margin padding系 --- */
/*上下左右px*/
.mobile_blank2 { padding:2px; }
.mobile_blank3 { padding:3px; }
.mobile_blank4 { padding:4px; }
.mobile_blank5 { padding:5px; }
.mobile_blank6 { padding:6px; }
.mobile_blank7 { padding:7px; }
.mobile_blank8 { padding:8px; }
.mobile_blank9 { padding:9px; }
.mobile_blank10 { padding:10px; }

/* --- ▼メインコンテンツ設定 --- */
#top #headContents{
	width:100%;
  padding: 8px 8px 0 8px;
  box-sizing: border-box;
}

/* --- ▼メインエリア設定 --- */
#top #mainContents #mainArea{
	width:100%;
  padding: 8px;
  box-sizing: border-box;
}

/* --- ▼サイドエリア設定 --- */
#top #mainContents #sideArea{
	display: none;
}

/* --- ▼スマホメニュー設定 --- */
#mwc_title { display: none; }
#smp_menu { float: right; }
.login_name {
  color: #864251;
  font-size: 12pt;
  font-weight: bold;
  text-align: center;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #D4B36A;
}
.menu-btn:after {
  content: 'menu';
  display: block;
  font-size: 10pt;
  text-align: center;
  color: #ffffff;
  height: 3px;
  
  top:26px;
  position: absolute;
  transition: all .4s;
}
.menu-btn span,.menu-btn span:before,.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  top: 16px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
  transition: all .4s;
}
.menu-btn span:before {
  top: -8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn:after {
  content: 'close';
}  
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: translateY(8px) rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: translateY(0) rotate(45deg);
}  
#menu-btn-check {
  display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #D4B36A;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 40px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li:first-child {
    border-bottom: none;
    margin-bottom: 20px;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.tbl_mainArea { 
  width: 100%;
}

.tbl_kensaku {
  width: 100%;
  border-width:2px;
  border-style:solid;
  border-color:#FFB3C0;
  box-sizing: border-box;
}
table.tbl_kensaku th {
  width: 100%;
  display: block;
}

/* --- ▼縦タイプのテーブル --- */
.tbl_v {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #FFB3C0;
}
table.tbl_v th,table.tbl_v td {
  width: 100%;
  min-height: 30px;
  display: block;
  border-top: none;
  border-right: 2px solid #FFB3C0;
  border-bottom: none;
  border-left: 2px solid #FFB3C0;
}
table.tbl_v tr:last-child td {
  border-bottom: 2px solid #FFB3C0;
}

/* --- ▼横タイプのテーブル --- */
table.tbl_h td {
  display: block;
}
table.tbl_h td:last-child {
  margin-bottom: 10px;
}


/*仕事をさがす*/
.tbl_kyujin {
  width: 100%;
  border:none;
}
table.tbl_kyujin thead { display: none;}
table.tbl_kyujin tr {
  border-top: 2px solid #FFB3C0;
  display: block;
  margin-bottom: 20px;
  background-color: #FFFFFF;
}
table.tbl_kyujin td {
  border-right: 2px solid #FFB3C0;
  border-left: 2px solid #FFB3C0;
  border-bottom: none;
  display: block;
  padding: 0;
}
table.tbl_kyujin td:nth-of-type(1) {
  background-color: #fcdbe0;
  color: #864251;
  padding: 3px;
}
table.tbl_kyujin td:last-child {
  border-bottom: 2px solid #FFB3C0;
}
table.tbl_kyujin td:before {
  background-color: #FDF2F4;
  color: #864251;
  font-weight: bold;
  padding: 5px 0 5px 3px;
  display: block;
  text-align: center;
}
table.tbl_kyujin td:nth-of-type(2):before { content: "仕事内容"; }
table.tbl_kyujin td:nth-of-type(3):before { content: "雇用期間　賃金等";}

/*仕事をさがす(詳細)*/
#syugyo_pc { display: none; }
#syugyo_mobile th,#syugyo_mobile td {
  width: 100%;
  min-height: 30px;
  padding: 7px;
  display: block;
  border-top: none;
  border-right: 2px solid #fcdbe0;
  border-bottom: none;
  border-left: 2px solid #fcdbe0;
}
#syugyo_mobile tr {
  display: block;
  border-bottom: 2px solid #fcdbe0;
  margin-bottom: 10px;
}
#kyujinsyajoho td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}
#kyujinjoho td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}
#chingin td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}
#syugyojikan td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}
#fukurikousei td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}
#senkou td { 
  border-bottom: 2px solid #FFB3C0;
  margin-bottom: 20px;
}

/*応募を確認する*/
.tbl_obo {
  width: 100%;
  border:none;
}
table.tbl_obo thead { display: none;}
table.tbl_obo tr {
  border-top: 2px solid #FFB3C0;
  display: block;
  margin-bottom: 20px;
  background-color: #FFFFFF;
}
table.tbl_obo td {
  border-right: 2px solid #FFB3C0;
  border-left: 2px solid #FFB3C0;
  border-bottom: none;
  display: block;
  padding: 0;
}
table.tbl_obo td:last-child {
  border-bottom: 2px solid #FFB3C0;
}
table.tbl_obo td:before {
  background-color: #FDF2F4;
  color: #864251;
  font-weight: bold;
  padding: 5px 0 5px 3px;
  display: block;
  text-align: center;
}
table.tbl_obo td:nth-of-type(1):before { content: "応募日"; background-color: #fcdbe0; }
table.tbl_obo td:nth-of-type(2):before { content: "勤務先"; }
table.tbl_obo td:nth-of-type(3):before { content: "職種";}
table.tbl_obo td:nth-of-type(4):before { content: "形態";}
table.tbl_obo td:nth-of-type(5):before { content: "面接予定日時";}
table.tbl_obo td:nth-of-type(6):before { content: "勤務地区";}
table.tbl_obo td:nth-of-type(7):before { content: "仕事内容";}
table.tbl_obo td:nth-of-type(8):before { content: "雇用期間";}
table.tbl_obo td:nth-of-type(9):before { content: "合否";}
table.tbl_obo td:nth-of-type(10):before { content: "紹介№";}


/*求職情報を変更する*/
table.kyushokujusho th {
  width: 100%;
  display: block;
  border: none;
  color: #864251;
  background-color:#E5E5E5;
}
table.kyushokujusho td {
  display: block;
  border: none;
  padding: 3px;
}

.tbl_syokureki {
  width: 100%;
  border:none;
}
table.tbl_syokureki thead { display: none;}
table.tbl_syokureki tr {
  border-top: 2px solid #E5E5E5;
  display: block;
  margin-bottom: 20px;
  background-color: #FFFFFF;
}
table.tbl_syokureki td {
  border-right: 2px solid #E5E5E5;
  border-left: 2px solid #E5E5E5;
  display: block;
  padding: 0;
}
table.tbl_syokureki td:last-child {
  border-bottom: 2px solid #E5E5E5;
}
table.tbl_syokureki tr:last-child td {
  border-bottom: 2px solid #E5E5E5;
}
table.tbl_syokureki td:before {
  background-color: #E5E5E5;
  color: #864251;
  padding: 5px 0 5px 3px;
  display: block;
  text-align: center;
}
table.tbl_syokureki td:nth-of-type(1):before { content: "医療機関・事業所名"; }
table.tbl_syokureki td:nth-of-type(2):before { content: "勤務期間";}
table.tbl_syokureki td:nth-of-type(3):before { content: "役職など";}
#shikakumenkyo_pc { display: none; }
#shikakumenkyo_mobile th,#shikakumenkyo_mobile td {
  width: 100%;
  min-height: 30px;
  padding: 7px;
  display: block;
  border-top: none;
  border-right: 2px solid #fcdbe0;
  border-bottom: none;
  border-left: 2px solid #fcdbe0;
}
#shikakumenkyo_mobile tr {
  display: block;
  border-bottom: 2px solid #fcdbe0;
  margin-bottom: 10px;
}


/*仕事をさがす(一部情報のみ)*/
.tbl_aq_kyujin {
  width: 100%;
  border:none;
}
table.tbl_aq_kyujin thead { display: none;}
table.tbl_aq_kyujin tr {
  border-top: 2px solid #FFB3C0;
  display: block;
  margin-bottom: 20px;
  background-color: #FFFFFF;
}
table.tbl_aq_kyujin td {
  border-right: 2px solid #FFB3C0;
  border-left: 2px solid #FFB3C0;
  border-bottom: none;
  display: block;
  padding: 0;
}
table.tbl_aq_kyujin td:nth-of-type(1) {
  background-color: #fcdbe0;
  color: #864251;
  padding: 3px;
}
table.tbl_aq_kyujin td:last-child {
  border-bottom: 2px solid #FFB3C0;
}
table.tbl_aq_kyujin td:before {
  background-color: #FDF2F4;
  color: #864251;
  font-weight: bold;
  padding: 5px 0 5px 3px;
  display: block;
  text-align: center;
}
table.tbl_aq_kyujin td:nth-of-type(2):before { content: "標榜科目"; }
table.tbl_aq_kyujin td:nth-of-type(3):before { content: "仕事内容";}
table.tbl_aq_kyujin td:nth-of-type(4):before { content: "雇用期間";}
table.tbl_aq_kyujin td:nth-of-type(5):before { content: "就労時間";}
table.tbl_aq_kyujin td:nth-of-type(6):before { content: "休日";}
table.tbl_aq_kyujin td:nth-of-type(7):before { content: "福利厚生";}
table.tbl_aq_kyujin td:nth-of-type(8):before { content: "公開日";}

/*▼求職登録のための面談申込*/
#tbl_shokushu th,#tbl_shokushu td {
  width: 100%;
  display: block;
  border: none;
}
#tbl_shokushu td {
  margin-top: 5px;
}