@charset "UTF-8";
/* ==================================================================================

	Recruit Content Style

 ================================================================================== */
/* RESET CSS
------------------------------------------ */
html, body, h1, h2, h3, h4, h5, h6, address,
p, hr, pre, ol, ul, li, dl, dt, dd, div,
a, em, strong, small, i, b, span,
img, iframe, object, table, caption, th, td,
form, fieldset, legend, label, input, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  font-size: 100%;
}

html {
  overflow-y: scroll;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

th, td {
  text-align: left;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

img {
  vertical-align: bottom;
}

@media print {
  body {
    background-color: #ffffff;
  }
}
/* =================== Base layout =================== */
*, *:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 15px;
  line-height: 2.0;
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Osaka,sans-serif;
}

a {
  color: #222;
}
a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .pan ul, .head-wrapper, .footer .fnav ul, .footer .bnav ul, .top-content ul, .content {
    width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1199px) {
  .pan ul, .head-wrapper, .footer .fnav ul, .footer .bnav ul, .top-content ul, .content {
    width: 100%;
  }
}
.wrapper {
  position: relative;
}

@media screen and (min-width: 900px) {
  .wrapper {
    padding-top: 80px;
  }
}
@media screen and (max-width: 900px) {
  .wrapper {
    padding-top: 55px;
  }
}
/* -------- section background-color  -------- */
.bg-maincolor {
  background: #175a03;
}

.bg-gray {
  background: #f4f4f4;
}

.bg-white {
  background: #fff;
}

/* =================== header & nav =================== */
.logo p {
  text-align: left;
}
.logo p a, .logo p a:hover {
  /* color: #175a03; */
  color: #019adf;
  text-decoration: none;
}

@media screen and (min-width: 900px), print {
  .head {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
  }

  .head-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .logo {
    width: 37%;
    height: 80px;
    padding: 0 0 0 15px;
    text-align: left;
  }
  .logo img {
    height: 75px;
    width: auto;
  }
  .logo p {
    display: inline-block;
    margin: 0 0 15px 0.5em;
    font-size: 1.4em;
  }

  .sp-menu {
    display: none;
  }
  .sp-menu + span {
    display: none;
  }

  .nav {
    width: 63%;
    margin: 0.75em 0 0 0;
    text-align: right;
  }
  .nav > ul {
    width: auto;
    font-size: 0;
    display: block !important;
  }
  .nav > ul:nth-of-type(1) > li:first-child {
    display: none;
  }
  .nav > ul > li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    background: url(../img/recruit/bg_nav_li.png) no-repeat right center;
  }
  .nav > ul > li:last-child {
    background-image: none;
  }
  .nav > ul > li:hover a, .nav > ul > li:hover span {
    /* color: #00670c; */
    color: #019adf;
  }
  .nav > ul > li span {
    display: block;
    padding: 0;
    height: 13px;
    line-height: 13px;
    font-weight: normal;
    font-style: italic;
    color: #9c9c9c;
    font-size: 0.9em;
  }
  .nav > ul > li a {
    display: inline-block;
    padding: 0.5em 20px;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
  }
  .nav > ul > li > ul {
    position: absolute;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 0;
    transition: .4s;
  }
  .nav > ul > li > ul li a {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    white-space: nowrap;
    text-align: left;
  }
  .nav > ul > li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 101;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
  }
  .nav > ul > li:hover ul li {
    width: 100% !important;
    background-image: none !important;
    background-color: #fff;
    border-top: 1px solid #dfdfdf;
  }
  .nav > ul > li:hover ul li a {
    display: block;
    margin: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    color: #222;
  }
  .nav > ul > li:hover ul li a:hover {
    /* color: #00670c; */
    color: #019adf;
    /* background-color: #c2ebc2; */
    background-color: #e0f5fc;
  }

  .current-business > ul > li:nth-of-type(3) a,
  .current-business > ul > li:nth-of-type(3) a span {
    /* color: #00670c; */
    color: #019adf;
  }

  .current-work-style > ul > li:nth-of-type(2) a,
  .current-work-style > ul > li:nth-of-type(2) a span {
    /* color: #00670c; */
    color: #019adf;
  }

  .current-entry > ul > li:nth-of-type(4) a,
  .current-entry > ul > li:nth-of-type(4) a span {
    /* color: #00670c; */
    color: #019adf;
  }

  .current-entry-form > ul > li:nth-of-type(5) a,
  .current-entry-form > ul > li:nth-of-type(5) a span {
    /* color: #00670c; */
    color: #019adf;
  }

  .current-entry-form-input > ul > li:nth-of-type(5) a,
  .current-entry-form-input > ul > li:nth-of-type(5) a span {
    /* color: #00670c; */
    color: #019adf;
  }
}
@media screen and (max-width: 900px) {
  .head {
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
  }

  .logo {
    height: 55px;
    text-align: left;
  }
  .logo img {
    height: 48px;
    width: auto;
    margin: 0 0.5em 0 15px;
  }
  .logo p {
    display: inline-block;
    line-height: 16px;
    font-size: 16px;
  }

  .nav ul {
    display: none;
  }

  .sp-menu {
    position: absolute;
    top: 7px;
    right: 20px;
    display: block;
    width: 32px;
    height: 25px;
  }
  .sp-menu > span {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 4px;
    margin: 0 0 0 0;
    background: #4b4b4b;
    transition: all 0.3s;
  }
  .sp-menu > span::nth-of-type(1) {
    top: 0;
  }
  .sp-menu > span:nth-of-type(2) {
    top: 10px;
  }
  .sp-menu > span:nth-of-type(3) {
    bottom: 0;
  }
  .sp-menu + span {
    position: absolute;
    top: 35px;
    right: 20px;
    display: block;
    font-size: 0.8em;
  }

  .close span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .close span:nth-of-type(2) {
    opacity: 0;
  }
  .close span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  .nav ul {
    position: absolute;
    top: 55px;
    right: 0;
    bottom: auto;
    left: auto;
    background: #fff;
    z-index: 101;
    width: 100%;
    border-top: 1px #e3e2e2 solid;
    border-bottom: 1px #e3e2e2 solid;
  }
  .nav ul > li {
    display: block;
    width: 100%;
  }
  .nav ul > li a {
    text-decoration: none;
    display: block;
    padding: 0.5em 1em;
    text-align: left;
    background: #f7f7f7;
    border-bottom: 1px #e3e2e2 solid;
  }
  .nav ul > li:last-child a {
    border-bottom: none;
  }
  .nav ul > li span {
    display: none;
  }
  .nav ul > li > ul {
    position: static;
    border-top: none;
    border-bottom: 1px #e3e2e2 solid;
  }
  .nav ul > li > ul li a {
    text-indent: 2em;
    background: #fff;
  }
}
/* =================== footer =================== */
.footer {
  position: relative;
  padding: 0;
  color: #fff;
  font-size: 0.8em;
}
.footer a {
  color: #f7f7f7;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .totop {
  position: absolute;
  top: -45px;
  right: 20px;
}
.footer .totop:hover {
  opacity: 0.95;
  filter: alpha(opacity=95);
}

.footer .fnav {
  background: #4B4B4B;
}
.footer .fnav ul {
  margin: 0 auto;
}
.footer .fnav ul li {
  display: inline-block;
  padding: 0.25em 0.8em;
}

.footer .bnav {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  background: #4B4B4B;
  border-top: 1px dotted #717171;
}
.footer .bnav li {
  display: inline-block;
  padding: 0 0.5em;
}
.footer .bnav li:nth-of-type(3) {
  width: 50px;
  padding: 0;
}
.footer .bnav li:nth-of-type(3) img {
  vertical-align: middle;
}
.footer .bnav li:nth-of-type(4) {
  display: block;
  width: 100%;
  padding: 1em 0 0 0;
}

@media screen and (min-width: 768px) {
  .footer {
    margin: 0;
  }

  .footer .fnav {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .footer .fnav {
    padding-top: 1.5em;
    padding-bottom: 0.5em;
  }

  .footer .fnav li {
    width: 30%;
    vertical-align: top;
  }
  .footer .fnav li:nth-of-type(4), .footer .fnav li:nth-of-type(5) {
    width: 49%;
  }

  .footer .bnav li {
    display: inline-block;
    padding: 0 0.5em;
  }
}
@media screen and (max-width: 360px) {
  .footer .fnav li {
    width: 49%;
  }
  .footer .fnav li:last-child {
    float: left;
  }
}
/* =================== ぱんくず =================== */
.pan {
  position: absolute;
  z-index: 99;
  width: 100%;
  text-align: left;
}
.pan li {
  display: inline-block;
  font-size: 0.8em;
  padding: 0.2em 10px 0.2em 0;
  background: rgba(255, 255, 255, 0.6);
}
.pan li:before {
  content: '>';
  padding: 0 5px;
}
.pan li:first-child:before {
  display: none;
}
.pan li a span,
.pan li span {
  display: none;
}

@media screen and (min-width: 901px) {
  .pan {
    top: 78px;
  }
  .pan li:first-child {
    margin-left: 15px;
  }
  .pan li:first-child:first-child {
    padding: 0.2em 10px 0.2em 15px;
  }
}
@media screen and (max-width: 900px) {
  .pan {
    top: 55px;
  }
  .pan ul {
    line-height: 0;
  }
  .pan li {
    padding: 0.1em 10px 0.1em 0;
    font-size: 0.75em;
    line-height: 1.8;
  }
  .pan li:first-child {
    padding: 0.1em 10px 0.1em 15px;
  }
}
/* =================== トップページ =================== */
/* -------- トップビジュアル -------- */
.top-vis {
  position: relative;
  background: url(../img/recruit/top.jpg) center center no-repeat;
  background-size: cover;
  height: 250px;
  overflow: hidden;
}

.top-vis h1 {
  opacity: 0;
  filter: alpha(opacity=0);
  height: 0;
}

.top-vis img {
  min-width: 100%;
  height: auto;
}

.top-msg {
  position: absolute;
  top: 35px;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 1.5em 0;
}
.top-msg p {
  padding: 1em 0 0 0;
  font-size: 1.15em;
  font-weight: normal;
}
.top-msg p + p {
  font-size: 1.6em;
}

@media screen and (max-width: 768px) {
  .top-vis {
    height: 180px;
  }

  .top-msg {
    top: 30px;
  }
  .top-msg p {
    padding: 0 5px;
    font-size: 0.8em;
  }
  .top-msg p + p {
    padding-top: 0.5em;
    font-size: 1.25em;
  }
}
@media screen and (max-width: 360px) {
  .top-msg {
    top: 20px;
  }
  .top-msg p {
    padding: 0 3px;
    font-size: 0.8em;
  }
  .top-msg p + p {
    padding-top: 0.5em;
    font-size: 1.2em;
    line-height: 1.2;
  }
}
/* -------- コンテンツ紹介 -------- */
.top-company {
  background: url(../img/recruit/top_bg_company.jpg) center center no-repeat;
  background-size: cover;
}

.top-workstyle {
  background: url(../img/recruit/top_bg_workstyle.jpg) center center no-repeat;
  background-size: cover;
}

.top-entry {
  background: url(../img/recruit/top_bg_entry.jpg) center center no-repeat;
  background-size: cover;
}

.top-content h2 {
  padding: 1.5em 0;
  text-align: center;
  font-size: 1.8em;
  font-weight: normal;
  background: #efefef;
}
.top-content h2 span {
  display: block;
  padding-top: 0.2em;
  font-size: 0.8em;
  font-style: italic;
  color: #666;
  background: url(../img/recruit/bg_top_h2.png) top center no-repeat;
}
.top-content ul {
  padding: 5em 15px;
  display: flex;
  justify-content: space-between;
}
.top-content ul li {
  display: block;
  margin-left: 1em;
  background: #fff;
}
.top-content ul li:nth-of-type(1) {
  margin-left: 0;
}
.top-content ul li img {
  width: 100%;
  height: auto;
}
.top-content ul li h3 {
  padding: 15px 10px;
  min-height: 90px;
  /* color: #175a03; */
  color: #019adf;
  font-size: 1.4em;
  line-height: 1.4;
  font-weight: normal;
}
.top-content ul li a {
  text-decoration: none;
}
.top-content ul li p {
  padding: 5px 5px 10px 5px;
}

@media screen and (max-width: 767px) {
  .top-content h2 {
    padding: 1em 0;
    font-size: 1.6em;
  }
  .top-content ul {
    display: block;
    padding: 5em 25px;
  }
  .top-content ul li {
    margin: 0 0 1em 0;
  }
  .top-content ul li h3 {
    min-height: 45px;
  }
}
/* -------- 新着情報 -------- */
.news {
  margin: 3em 0;
}
.news .section {
  padding: 30px;
}
.news h3 {
  font-size: 1.8em;
  text-align: center;
  padding: 0 0 1.5em 0;
}
.news dt {
  display: inline-block;
  width: 110px;
  margin: 0 0 1em 0;
  background: #e1f2fa;
}
.news dd {
  margin: 0 0 1em 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .news dt {
    padding: 1em;
    float: left;
    clear: both;
  }

  .news dd {
    float: left;
    display: inline-block;
    width: 85%;
    padding: 1em 0 1.5em 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .news dt {
    padding: 0.5em;
    float: left;
  }

  .news dd {
    clear: both;
    display: block;
    width: 100%;
    padding: 0 0 1em 0;
  }
}
/* =================== サブページ =================== */
/* -------- タイトル -------- */
.sub-vis {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  overflow: hidden;
}
.sub-vis h1 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.1em;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.15em;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .sub-vis {
    height: 180px;
  }
}
.main-content h2 {
  /* color: #175a03; */
  color: #019adf;
  font-size: 1.8em;
  font-weight: 100;
  text-align: left;
  margin: 0 0 1.6em 0;
  line-height: 1.4em;
}

.main-content h3 {
  margin: 0 0 0.8em 0;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5em;
}

/* -------- サブページ コンテンツ -------- */
.main-content {
  padding: 35px 0;
  text-align: left;
  line-height: 2.0;
  clear: both;
}
.main-content .content {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.main-content .content p {
  padding-bottom: 1em;
}
.main-content .f-right {
  margin: 0 0 2.5em 2.5em;
}
.main-content .f-left {
  margin: 0 2.5em 2.5em 0;
}
.main-content ul {
  list-style-type: disc;
  margin-left: 1.5em;
}
.main-content ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.main-content ol ol {
  margin-left: 2.5em;
}
.main-content ul li, .main-content ol li {
  padding-bottom: 0.5em;
}
.main-content hr {
  clear: both;
  margin-bottom: 30px;
  border: 1px dotted #aaa;
}

@media screen and (max-width: 768px) {
  .content .f-left, .content .f-right {
    float: none !important;
    display: block;
    margin: 0 auto 1em auto;
    text-align: center;
  }
}
.dis-tab {
  display: table;
}
.dis-tab > div:first-child, .dis-tab > div:first-child + div {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}
.dis-tab > div:first-child {
  padding-right: 10px;
}
.dis-tab > div:first-child + div {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .dis-tab {
    display: block;
    width: 100%;
  }
  .dis-tab > div:first-child, .dis-tab > div:first-child + div {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .dis-tab img {
    display: block;
    margin: 0 auto;
    padding-bottom: 0.5em;
  }

  .dis-tab.flex {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
  }
  .dis-tab.flex > div:first-child {
    -webkit-order: 2;
    order: 2;
    -webkit-box-ordinal-group: 2;
  }
  .dis-tab.flex > div:first-child + div {
    -webkit-order: 1;
    order: 1;
    -webkit-box-ordinal-group: 1;
  }

  .dis-tab.photo-2 div {
    padding: 0;
  }
}
.photo-inline {
  display: flex;
  justify-content: space-between;
}
.photo-inline p {
  margin-left: 0.5em;
}
.photo-inline img {
  max-width: 100%;
  height: auto;
}
.photo-inline img:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .photo-inline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .photo-inline p {
    width: 48%;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .photo-inline p:nth-of-type(odd) {
    margin-left: 0;
  }
}
.link-area {
  padding: 2em 2em 3em 2em;
}
.link-area ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
  margin-left: 0;
}
.link-area ul li {
  width: 45%;
  margin-bottom: 1em;
  padding-bottom: 0;
  /* border: 5px solid #247130; */
  border: 5px solid #086b8c;
  background: #f7f7f7;
}
.link-area ul li:hover {
  background: #efefef;
}
.link-area li a {
  display: block;
  padding: 15px;
  min-height: 145px;
  text-align: center;
  text-decoration: none;
  /* color: #0c4515; */
  color: #034156;
}
.link-area li a h4 {
  padding-bottom: 15px;
  font-size: 1.4em;
}
.link-area.entry-form ul {
  list-style-type: none;
  margin-left: 0;
}
.link-area.entry-form ul li {
  width: 50%;
  margin: 0 auto;
  border: none;
  /* background: #079b3b; */
  background: #019adf;
}
.link-area.entry-form ul li:hover {
  /* background: #0cad45; */
  background: #019adf;
  opacity: 0.8;
}
.link-area.entry-form ul li a {
  display: block;
  padding: 30px 10px;
  min-height: auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.link-area.entry-form ul li a h4 {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .link-area ul, .link-area.entry-form ul {
    display: block;
  }
  .link-area ul li, .link-area.entry-form ul li {
    width: 100%;
    margin-bottom: 1em;
  }
  .link-area ul li:last-child, .link-area.entry-form ul li:last-child {
    margin-bottom: 0;
  }
}
/* --- ボックス --- */
.box li,
.box ul li {
  border: 1px solid #e3e3e3;
}

/* =================== カテゴリTOP =================== */
h1.category-top {
  padding: 1.5em 0;
  text-align: center;
  font-size: 1.8em;
  font-weight: normal;
  background: #efefef;
}
h1.category-top span {
  display: block;
  padding-top: 0.2em;
  background: url(../img/recruit/bg_top_h2.png) top center no-repeat;
}

.business h1.category-top span:after {
  content: "Company";
  font-size: 0.8em;
  font-style: italic;
  color: #666;
}

.work-style h1.category-top span:after {
  content: "Work Style";
  font-size: 0.8em;
  font-style: italic;
  color: #666;
}

.entry h1.category-top span:after {
  content: "Recruit";
  font-size: 0.8em;
  font-style: italic;
  color: #666;
}

/* =================== 組織・仕事を知る =================== */
.company .sub-vis {
  background-image: url(../img/recruit/bg_h1_company.jpg);
}

.concept .sub-vis {
  background-image: url(../img/recruit/bg_h1_concept.jpg);
}

.message .sub-vis {
  background-image: url(../img/recruit/bg_h1_message.jpg);
}

.theme .sub-vis {
  background-image: url(../img/recruit/bg_h1_theme.jpg);
}

.top-message .sub-vis {
  background-image: url(../img/recruit/bg_h1_top-message.jpg);
}

@media screen and (max-width: 768px) {
  .message .sub-vis {
    background-image: url(../img/recruit/bg_h1_message_sp.jpg);
  }
}
.name {
  font-size: 1.4em;
}
.name span {
  position: relative;
  display: block;
  padding-top: 0.5em;
  font-size: 0.7em;
}
.name span:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 30%;
  height: 3px;
  /* background: #41b052; */
  background: #019adf;
}

.name.large span:after {
  width: 65%;
}

ul.box3 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 1em 0;
}
ul.box3 li {
  width: 32%;
  box-sizing: content-box;
  vertical-align: top;
  border: 1px solid #c6c6c6;
  background: #fff;
}
ul.box3 li img {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
}
ul.box3 li h2 {
  font-size: 1.3em;
  font-weight: bold;
  padding: 20px 20px 0 20px;
  margin-bottom: 0.5em;
}
ul.box3 li h2 a {
  /* color: #175a03; */
  color: #019adf;
}
ul.box3 li h2 + p {
  padding: 0 20px;
}
ul.box3 li ul {
  margin-left: 2.5em;
}
ul.box3 li ul li {
  width: 100%;
  border: none;
}

@media screen and (max-width: 767px) {
  ul.box3 {
    display: block;
    margin-bottom: 0;
  }
  ul.box3 li {
    display: block;
    width: 100%;
    margin-bottom: 1em;
  }
  ul.box3 li ul {
    display: list-item;
    list-style: disc;
  }
  ul.box3 li ul li {
    margin-bottom: 0;
  }
}
/* =================== 働き方を知る =================== */
.office .sub-vis {
  background-image: url(../img/recruit/bg_h1_office.jpg);
}

.member .sub-vis {
  background-image: url(../img/recruit/bg_h1_member.jpg);
}

.education .sub-vis {
  background-image: url(../img/recruit/bg_h1_education.jpg);
}

.support .sub-vis {
  background-image: url(../img/recruit/bg_h1_support.jpg);
}

@media screen and (max-width: 768px) {
  .member .sub-vis {
    background-image: url(../img/recruit/bg_h1_member_sp.jpg);
  }
}
.schedule {
  padding: 0;
  border: 1px solid #e3e3e3;
  background: #fff;
}
.schedule h3 {
  margin: 0 0 0 0;
  padding: 0.5em 1em;
  font-size: 1.4em;
  font-weight: normal;
  text-align: center;
  color: #fff;
  background: #999;
}

@media screen and (min-width: 650px) {
  .year {
    max-width: 917px;
    margin: 0 auto auto auto;
  }
}
@media screen and (min-width: 640px) {
  .day {
    display: inline-block;
    width: 47%;
    vertical-align: top;
  }
  .day + .day {
    margin: 0 0 0 2.3em;
  }
}
@media screen and (max-width: 639px) {
  .day {
    display: block;
    width: 100%;
  }
  .day + .day {
    margin-top: 30px;
  }
}
/* ---------- 研究員インタビュー ---------- */
.member h3 {
  padding: 0.3em 0.5em;
  /* border-left: 7px solid #175a03;
  border-bottom: 1px solid #175a03; */
  border-left: 7px solid #019adf;
  border-bottom: 1px solid #019adf;
}

.member-prof {
  background: #eee;
  padding: 0.5em 0;
}
.member-prof ul {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.member-prof ul li {
  display: table-cell;
  width: 33.3%;
  padding: 10px;
  border: 3px solid #eee;
  vertical-align: top;
  background: #fff;
}
.member-prof ul li img {
  display: inline-block;
  float: left;
  width: 30%;
}
.member-prof ul li dl {
  display: inline-block;
  float: right;
  width: 68%;
  padding-left: 10px;
}
.member-prof ul li dl dt {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.member-prof ul li dl dd {
  font-size: 0.85em;
}
.member-prof ul li:nth-of-type(1) dt {
  border-bottom: 2px solid #c2acea;
}
.member-prof ul li:nth-of-type(2) dt {
  border-bottom: 2px solid #8ac1ec;
}
.member-prof ul li:nth-of-type(3) dt {
  border-bottom: 2px solid #93a4e3;
}

.label {
  display: block;
  width: 4em;
  margin-bottom: 1.5em;
  text-align: center;
  color: #fff;
  letter-spacing: 0.15em;
}

.izu {
  background: #c2acea;
}

.kawa {
  background: #93a4e3;
}

.kado {
  background: #8ac1ec;
}

ul.comment {
  margin-left: 0;
  list-style: none;
}
ul.comment li {
  display: table;
  margin: 0 0 1.5em 0;
  width: 100%;
  padding: 15px !important;
  background: #fff;
}
ul.comment li img {
  display: table-cell;
}
ul.comment li p {
  display: table-cell;
  vertical-align: top;
  width: 80%;
  padding-left: 15px;
}

@media screen and (max-width: 639px) {
  .member-prof ul {
    display: block;
  }
  .member-prof ul li {
    display: block;
    width: 100%;
  }
  .member-prof ul li img {
    width: 20%;
  }
  .member-prof ul li dl {
    width: 80%;
  }

  ul.comment li, ul.comment li img, ul.comment li p {
    display: block;
  }
  ul.comment li img, ul.comment li img img, ul.comment li p img {
    width: 60%;
    margin: 0 auto;
  }
  ul.comment li p, ul.comment li img p, ul.comment li p p {
    width: 100%;
    padding: 15px 0 0 0;
  }
}
/* =================== 募集要項 =================== */
.seminar .sub-vis {
  background-image: url(../img/recruit/bg_h1_seminar.jpg);
}

.guideline .sub-vis {
  background-image: url(../img/recruit/bg_h1_guideline.jpg);
}

.schedule .sub-vis {
  background-image: url(../img/recruit/bg_h1_schedule.jpg);
}

.entry-form .sub-vis {
  background-image: url(../img/recruit/bg_h1_entry-form.jpg);
}

.seminar-form .sub-vis, .seminar-form-input .sub-vis {
  background-image: url(../img/recruit/bg_h1_seminar.jpg);
}

.entry-form-input .sub-vis {
  background-image: url(../img/recruit/bg_h1_entry-form.jpg);
}

.table-style {
  width: 100%;
}
.table-style th, .table-style td {
  vertical-align: top;
  padding: 0.8em;
}
.table-style th {
  font-weight: normal;
  color: #000;
  background: #f4f4f4;
}
.table-style td ol {
  list-style: decimal;
}
.table-style td ol li {
  margin: 0 0 0 1.5em;
}

.link-tab {
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  text-align: center;
}
.link-tab li {
  display: inline-block;
  width: 40%;
  padding: 1em;
  margin: 0 0.5em;
  font-weight: bold;
  color: #000;
  background: #D2EFFF;
}
.link-tab li.current {
  border: 2px solid #6DC6F5;
}
.link-tab li a {
  display: block;
  margin: -1em;
  padding: 1em;
  font-weight: normal;
  background: #F6F6F6;
  border: 2px solid #d3d3d3;
  text-decoration: none;
}

@media screen and (max-width: 639px) {
  .link-tab li {
    display: block;
    width: 100%;
  }
  .link-tab li + li {
    margin-top: 5px;
  }
}
dl.process dt {
  padding: 0.5em;
  color: #fff;
  background: #bebebe;
}
dl.process dd {
  background: #fff;
}

@media screen and (min-width: 640px) {
  .table-style {
    border-collapse: separate;
    border-spacing: 0 1px;
  }
  .table-style th {
    width: 20%;
    border-bottom: 1px solid #E3E3E3;
  }
  .table-style td {
    width: 80%;
    border-bottom: 1px solid #E3E3E3;
  }

  dl.process {
    display: table;
    width: 100%;
  }
  dl.process dt, dl.process dd {
    display: inline-block;
    vertical-align: middle;
  }
  dl.process dt {
    min-width: 18%;
    font-size: 1.4em;
    white-space: nowrap;
    margin-top: 5px;
  }
  dl.process dd {
    width: 80%;
    padding: 0.5em  0.5em 0.5em 1em;
    margin-top: 5px;
  }
}
@media screen and (max-width: 639px) {
  .table-style th, .table-style td {
    display: block;
  }

  .table-style td {
    padding-top: 0.4em;
    margin: 0 0 1em 0;
  }
}
/* =================== エントリーフォーム=================== */
/* -------- 個人情報確認画面 -------- */
.over {
  width: 85%;
  height: 20em;
  margin: 0 auto;
  padding: 1em;
  overflow: scroll;
  overflow-x: hidden;
  border: 1px solid #d8d8d8;
}
.over ol {
  margin: 0 0 0 1em;
  list-style: decimal;
}
.over ol li {
  padding: 0 0 1em 0;
  word-wrap: break-word;
}
.over ol li li {
  margin: 0 0 0 1.5em;
  padding: 0;
  list-style-type: none;
  counter-increment: cnt;
}
.over ol li li:before {
  display: marker;
  content: "(" counter(cnt) ")";
}
.over ol li p {
  padding: 0 2em;
}

.form01 {
  padding: 1em 0;
  text-align: center;
}
.form01 ul {
  margin: 0 0 2em 0;
  list-style: none;
}
.form01 span {
  padding: 0 1em 0 0;
  color: #d94170;
}
.form01 label {
  margin: 0 1em 0 0;
}
.form01 label input {
  margin: 0 0.3em 0 0;
}

.form_submit {
  border: none !important;
}

.form_submit .btn {
  display: inline-block;
  padding: 15px 5em;
  text-align: center;
  text-decoration: none;
  font-size: 1.2em;
  color: #fff;
}

.form_submit .back {
  background: #bebebe;
}
.form_submit .back:hover {
  background: #acacac;
}

.form_submit .primary {
  background: #079b3b;
}
.form_submit .primary:hover {
  background: #0cad45;
}

.form_submit .btn:nth-of-type(1) {
  margin: 0 1.5em 0 0;
}

@media screen and (max-width: 639px) {
  .form01 span:after {
    content: "\A";
    white-space: pre;
  }

  .form_submit .btn:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
/* -------- エントリーフォーム -------- */
.contact-form p {
  text-align: center;
}
.contact-form sup {
  padding: 0 0.2em;
  font-size: 20px;
  color: #d94170;
  vertical-align: middle;
}
.contact-form .error {
  color: #d94170 !important;
}
.contact-form table {
  width: 100%;
}
.contact-form th, .contact-form td {
  padding: 0.7em;
}
.contact-form th {
  font-weight: normal;
  color: #000;
  background: #F2F2F2;
}
.contact-form td {
  background: #F6F6F6;
}
.contact-form td.submit-container {
  background: none;
  text-align: center;
}
.contact-form td.submit-container:hover {
  background-color: none !important;
}
.contact-form td.submit-container input {
  margin: 0 auto;
  display: inline-block;
  padding: 15px 5em;
  font-size: 1.2em;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Osaka,sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}
.contact-form td.submit-container input:nth-of-type(1) {
  margin: 0 1.5em 0 0;
  background: #bebebe;
}
.contact-form td.submit-container input:nth-of-type(1):hover {
  background: #acacac;
}
.contact-form td.submit-container input:only-of-type, .contact-form td.submit-container input:nth-of-type(2) {
  background: #079b3b;
}
.contact-form td.submit-container input:only-of-type:hover, .contact-form td.submit-container input:nth-of-type(2):hover {
  background: #0cad45;
}

div#trust-form.contact-form table td.submit-container {
  border: none !important;
}

div#trust-form.contact-form table tr:hover {
  background: none !important;
}

.contact-form-finish {
  width: 100% !important;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #dfdfdf;
}

@media screen and (min-width: 768px) {
  .contact-form.contact-form-confirm {
    padding-top: 90px;
  }
}
@media screen and (min-width: 640px) {
  .contact-form table {
    border-collapse: separate;
    border-spacing: 0 2px;
  }

  .contact-form table th {
    min-width: 25%;
    white-space: nowrap;
    border-right: 2px solid #fff;
  }
}
@media screen and (max-width: 639px) {
  .contact-form table:nth-of-type(1) {
    border-collapse: separate;
    border-bottom: 2px solid #F6F6F6;
  }

  .contact-form th, .contact-form td {
    display: block;
  }

  .contact-form td {
    background: #fff;
    border-right: 2px solid #F6F6F6;
    border-left: 2px solid #F6F6F6;
  }

  td.submit-container {
    border: none;
  }
  td.submit-container:hover {
    background-color: none !important;
  }
  td.submit-container input:nth-of-type(1) {
    margin: 0 0 0.5em 0 !important;
  }
}
@media screen and (max-width: 639px) {
  td.submit-container input {
    display: block;
    width: 100%;
  }
}
/* -------- フォームパーツ -------- */
label input {
  display: inline-block;
  margin: 0 0.5em 0.3em 0;
  vertical-align: middle;
}

input[type="text"], textarea, select {
  width: 95%;
  padding: 0.5em;
  border: 4px solid #dfdfdf;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Osaka,sans-serif;
}

select {
  width: auto;
}

/* =================== 汎用パーツ =================== */
/* ------- margin ------- */
.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

/* ------- float ------- */
.f-right {
  float: right;
}

.f-left {
  float: left;
}

/* ------- text ------- */
.bold {
  font-weight: bold;
}

.small {
  font-size: 0.85em;
}

.red {
  color: #e3023c;
}

.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

/* ------- clearfix ------- */
.clearfix:after, .head:after, .footer .fnav:after, .news .section:after, .member-prof ul li:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

/* ------- print ------- */
@media print {
  .head {
    position: static;
  }
}
