@charset "utf-8";

:root {
  --paddingSection: 60px;
  --paddingLR: 20px;
  --color_blue: #000F59;
  --color_orange: #C84302;
  --color_red: #CF1A1A;
  --color_gray_bg: #F5F5F5;
  --color_border: #D8D8D8;
  --border_radius: 20px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 30px;
    --border_radius: 10px;
  }
}

body {
  padding-top: 70px;
  background: url(../../images/common/body.png) repeat-y top center;
  background-size: 140%;
}

body:before {
  content: '';
  position: absolute;
  left: -40%;
  top: 0;
  width: 140%;
  height: 0;
  padding-bottom: 53%;
  z-index: 1;
  background: url(../../images/recruiter/top/bg-header-sp.svg);
  background-repeat: no-repeat;
  background-size: 200%;
  background-position: 30% 0%;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  padding: 10px 5px;
  position: fixed;
  height: 70px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 21;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-inner {
  background-color: #fff;
  border-radius: 300px;
  padding: 5px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  transition: .3s;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.l-header.active .l-header-inner {
  box-shadow: none;
}

.logo-inner {
  display: block;
}

.logo-inner .logo01 {
  width: 152px;
}

.l-header-name span {
  color: var(--color_blue);
  font-weight: 700;
  border: 1px solid var(--color_blue);
  line-height: 1.2;
  border-radius: 200px;
  margin-bottom: 2px;
  display: inline-block;
  padding: 1px 4px;
  letter-spacing: -0.02em;
  font-size: 0.785714286rem;
}

.l-header-info .sub-logo {
  display: none;
}

.l-header-menu {
  padding-top: 10px;
}

.l-header-menu__head {
  display: none;
}

.sub-logo {
  position: absolute;
  left: 190px;
  top: 3px;
}

.sub-logo .logo02 {
  width: 114px;
  margin-top: 2px;
}

.sub-logo .logo03 {
  width: 72px;
}

/*nav*/
#header.active {
  background-color: #fff;
}

#header.active .l-header-inner {
  border-radius: 0;
}
.l-header-nav {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #fff;
  z-index: 21;
  right: 0;
  top: 70px;
  overflow-y: auto;
  padding: 2px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-nav.active {
  display: block;
}

.l-header-nav__items {
  position: relative;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  width: 90%;
  margin: 0 auto 2px;
}

.l-header-nav__items--link {
  padding: 15px 0px;
  display: block;
  font-size: 1.142857143rem;
  font-weight: 700;
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--color_blue);
  background: url(../../images/common/ico-arw-btn-blue.svg) no-repeat 100% 50%;
}

.l-header-entry {
  display: none;
}

.sp-job-btn {
  margin-bottom: 10px;
}

.sp-nav-tell {
  text-align: center;
}

.sp-nav-tell a {
  display: inline-block;
  padding-left: 44px;
  background: url(../../images/common/ico-tell-blue.svg) no-repeat left center;
  background-size: 28px auto;
  font-weight: 700;
  font-size: 1.714285714rem;
}

.sp-nav-tell span {
  display: block;
  font-size: 0.928571429rem;
}

.sp-navi-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px 42px;
  margin-top: 14px;
}

.sp-navi-links li {
  position: relative;
}

.sp-navi-links li:after {
  content: '';
  position: absolute;
  right: -21px;
  top: 6px;
  width: 1px;
  height: 14px;
  background: #333333;
}

.sp-navi-links li:last-child:after {
  display: none;
}

.sp-navi-links li a {
  font-size: 0.875rem;
  font-weight: 700;
}

.sp-navi-sub__link {
  text-align: center;
  margin-top: 14px;
  max-width: 258px;
  margin: 14px auto 0;
}

.sp-navi-sub__link a {
  display: inline-block;
  text-align: center;
  color: var(--color_blue);
  border: 1px solid var(--color_blue);
  border-radius: 100px;
  padding: 3px 36px 3px 19px;
  background: url(../../images/common/ico-arw-btn-blue.svg) no-repeat 95% 50%;
  background-size: 10px auto;
  font-weight: 500;
  font-size: 1rem;
}

.sp-navi {
  margin-top: 17px;
}

/*hamburger menu*/
.menu {
  display: block;
  position: absolute;
  width: 50px;
  z-index: 30;
  height: 60px;
  top: 0px;
  right: 0;
  background: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.menu span {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: var(--color_blue);
}
.menu span:nth-of-type(1) {
  top: 20px;
}
.menu span:nth-of-type(2) {
  top: 28px;
}
.menu span:nth-of-type(3) {
  bottom: 21px;
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  top: 26px;
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  bottom: 18px;
}
.menu.is-show span {
  background-color: #001489;
}


/* Main
---------------------------------------------------------------*/

.l-wrapper {
  overflow: hidden;
  width: 100%;
}


/* Footer
---------------------------------------------------------------*/
#footer {
  position: relative;
  z-index: 4;
  width: 100%;
  background-color: #F5F5F5;
}

.l-footer.sub {
  margin-top: 60px;
}

.l-footer.sub:before {
  content: '';
  position: absolute;
  left: 0px;
  top: -125px;
  width: 100%;
  height: 127px;
  background: url(../../images/common/lv-rec.svg);
  background-repeat: repeat-x;
  background-size: auto 127px;
  background-position: -60px 0;
}

#footer .c-center {
  padding-top: 40px;
  padding-bottom: 20px;
}

/*ページトップ*/
.l-footer-top {
  position: fixed;
  z-index: 4;
  right: 10px;
  bottom: 20px;
  width: 60px;
  height: 60px;
}

.ft-logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 19px;
}

.ft-logo .ft-logo-img01 {
  width: 240px;
  order: 2;
}

.ft-logo-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  order: 1;
  width: 100%;
  margin-bottom: 14px;
}

.ft-logo-head .logo02 {
  width: 122px;
  margin-left: 25px;
}

.ft-logo-head .logo03 {
  width: 78px;
}

.ft-inf-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.ft-inf-inner .ft-info {
  width: 100%;
}

.ft-inf-inner .ft-info address {
  margin: 20px 0 17px;
  font-weight: 500;
  line-height: 1.5;
}

.ft-inf-inner .ft-info address {
  margin: 20px 0 17px;
  font-weight: 500;
  line-height: 1.5;
}

.ft-info-tell a {
  font-size: 1.25rem;
  padding-left: 29px;
  background: url(../../images/common/ico-tell-blue02.svg) no-repeat left center;
  background-size: 24px auto;
  margin-right: 12px;
  display: inline-block;
}

.ft-info-tell .ft-info-open {
  font-size: 0.8125rem;
  display: block;
  padding-left: 2em;
}

.ft-nav {
  display: none;
}

.ft-nav-list,
.ft-nav-list__sub {
  display: none;
}

.ft-nav-list__sub {
  display: none;
}

.entry-btn {
  text-align: right;
}

.entry-btn a.c-btn {
  margin-left: auto;
  padding: 10px;
  display: inline-block;
}

.entry-btn a.c-btn span {
  margin-bottom: 2px;
}

.entry-btn a.c-btn p {
  font-size: 1.375rem;
}

.ft-nav-list__btm {
  display: none;
}

.l-copyright {
  background-color: var(--color_blue);
  padding: 10px 0;
  text-align: center;
}

.l-copyright p {
  color: #fff;
  font-size: 0.875rem;
}

/*フッター固定*/

.sp-btm-btn {
  width: 100%;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity .0s,visibility 0s ease .0s;
  transition: opacity .0s,visibility 0s ease .0s;
  visibility: hidden;
  z-index: 0;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  z-index: 10;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px -2px 6px rgba(0,0,0,.16);
  box-shadow: 0px -2px 6px rgba(0,0,0,.16);
}

.sp-btm-btn li {
  width: 48%;
  float: left;
  height: 55px;
  text-align: center;
}

.sp-btm-btn li:nth-child(2) {
  width: 52%;
}

.sp-btm-btn li a {
  padding: 5px 10px;
  display: block;
  font-size: 0.714285714rem;
  font-weight: 500;
  height: 100%;
}

.sp-btm-btn li a span {
  display: block;
  font-size: 0.857142857rem;
  font-weight: 700;
  text-align: center;
}

.sp-btm-btn li:nth-child(1) {
  background: url(../../images/recruiter/top/bl.svg) no-repeat left center #EFF7FF;
  background-size: auto 100%;
}

.sp-btm-btn li:nth-child(2) {
  background: url(../../images/recruiter/top/og.svg) no-repeat left center #FFF2E9;
  background-size: auto 100%;
}

.sp-btm-btn.end li:nth-child(1) {
  display: none;
}

.sp-btm-btn.end li:nth-child(2) {
  width: 100%;
  height: 55px;
  text-align: center;
}

.sp-btm-btn li:nth-child(1) a span {
  color: #015CB5;
}

.sp-btm-btn li:nth-child(2) a span {
  color: #CC4E00;
}

.sp-btm-btn.no-seminar-link li {
  width: 100%;
}
/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
.side-banner {
  position: fixed;
  right: -10px;
  top: 240px;
  width: 50px;
  z-index: 20;
}

/* =========================
  メインビジュアル
========================= */
.mv {
  padding-bottom: 86px;
  position: relative;
  padding-top: 25px;
  overflow: hidden;
  background: url(../../images/top/mv-sp-r.png) no-repeat top right,
  url(../../images/top/mv-sp-l.png) no-repeat left bottom;
  background-color: #fff;
}

.mv:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 110%;
  height: 0;
  padding-bottom: 46%;
  background: url(../../images/recruiter/top/mv-bg02.png);
  background-repeat: no-repeat;
  background-size: 210%;
  background-position: 50% 0%;
  z-index: 1;
}

.mv-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  box-sizing: border-box;
}

.mv-catch {
  width: 100%;
}

.mv-catch img {
  margin-bottom: 20px;
}

.mv-catch .mv-catch-text {
  text-align: center;
  font-size: 1.714285714rem;
  color: var(--color_blue);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.mv-info {
  margin-top: 20px;
  width: 100%;
}

.mv-info-list__ttl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color_blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 20px;
}

.mv-info-list__ttl::after {
  background-color: var(--color_blue);
  content: "";
  height: 2px;
  width: calc(100% - 10px);
  margin-left: 10px; 
}

.mv-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 3.2%;
}

.mv-info-list li {
  width: 48.38%;
  background-color: #E4E6EE;
}

.mv-info-list li .box {
  padding: 10px 10px 10px;
}

.mv-info-list li .box .ttl {
  font-weight: 700;
  color: var(--color_blue);
  margin-bottom: 8px;
  font-size: 1rem;
}

.mv-info-list li .box .text {
  font-size: 0.928571429rem;
}
.mv-info .c-btn {
  margin-top: 10px;
}

/* =========================
  Top Seminar
========================= */
.top-sem {
  position: relative;
  z-index: 2;
  background-color: rgba(245, 245, 245, 0.6);
}

.top-sem .c-center {
  padding: 30px 0px;
}

.top-sem-ttl {
  margin-bottom: 16px;
  font-size: 1.285714286rem;
  font-weight: 700;
  color: var(--color_blue);
}

.top-sem-ttl span {
  background-color: var(--color_orange);
  color: #fff;
  padding: 1px 12px;
  font-weight: 700;
  font-size: 1.285714286rem;
  line-height: 1.3;
  border-radius: 200px;
  position: relative;
  display: inline-block;
  margin-right: 13px;
}

.top-sem-ttl span:after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 4px;
  width: 15px;
  height: 11px;
  background: url(../../images/recruiter/seminar/sem-fukidashi-arw.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.sem-inner-sub-ttl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color_blue);
  margin-bottom: 13px;
}

.sem-inner-sub-ttl span {
  display: inline-block;
  background-color: #fff;
  border: 1px solid var(--color_orange);
  border-radius: 200px;
  text-align: center;
  color: var(--color_orange);
  font-weight: 700;
  margin-left: 10px;
  line-height: 1.3;
  font-size: 1rem;
  padding: 0px 10px;
}

.top-sem-inner .box {
  display: block;
}

.top-sem-inner .box .sem-inner-thum {
  width: 100%;
  margin-bottom: 15px;
  max-width: 280px;
}

.top-sem-inner .box .sem-inner-info {
  width: 100%;
}

.sem-inner-info .info-dl {
  display: flex;
  gap: 20px;
  margin-bottom: 4px;
}

.sem-inner-info .info-dl dt {
  color: var(--color_orange);
  font-weight: 700;
  min-width: 70px;
}

.sem-inner-info .info-dl dd {
  margin: 0;
}

.info-ul {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.info-ul li {
  width: auto;
}

.info-ul li a.sem-btn-entry {
  display: inline-block;
  width: 100%;
  background: url(../../images/common/ico-arw-link-white.svg) no-repeat 95% 50%;
  background-size: 6px auto;
  text-align: center;
  padding: 4px 18px 4px 7px;
  background-color: var(--color_orange);
  color: #fff;
  font-size: 0.928571429rem;
  font-weight: 700;
  border-radius: 200px;
  border: 2px solid var(--color_orange);
}

.info-ul li a.sem-btn-single {
  display: inline-block;
  width: 100%;
  background: url(../../images/common/ico-arw-link-blue.svg) no-repeat 95% 50%;
  background-size: 6px auto;
  text-align: center;
  padding: 4px 18px 4px 7px;
  background-color: #fff;
  color: var(--color_blue);
  font-weight: 700;
  font-size: 0.928571429rem;
  border-radius: 200px;
  border: 2px solid var(--color_blue);
}
/*NEWS*/
.news {
  padding-bottom: 40px;
}

.news .c-center {
  display: block;
  padding-bottom: 0;
}

.news .info {
  margin-top: 0;
}

.lead {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.lead h2 {
  font-size: 1.5rem;
  color: var(--color_blue);
  font-weight: 700;
}

.news .lead {
  width: 100%;
  position: relative;
}

.news .lead h2 {
  text-align: left;
  width: 100%;
  position: relative;
}

.lead a {
  position: absolute;
  right: 0;
  top: 5px;
}

.news-list {
  margin-top: 20px;
  width: 100%;
}

.news-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E4E4E4;
}

.news-list li .news-innner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 15px;
}

.news-list li a {
  background: url(../../images/common/ico-arw-link-green.svg) no-repeat 100% 50%;
  background-size: 6px auto;
  padding-right: 16px;
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.news-list li .news-innner .news-thum {
  width: 100px;
}

.news-list li .news-innner .news-list-grid {
  margin-left: auto;
  width: calc(100% - 100px);
}

.news-list li .news-innner .news-date {
  color: var(--color_blue);
  font-size: 1.125rem;
  font-weight: 700;
}

.news-list li .news-innner .news-title .ttl {
  font-size: 1.125rem;
  color: var(--color_blue);
  font-weight: 700;
}

.ft-banner .c-center {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ft-banner-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ft-banner-list li {
  margin-bottom: 0px;
}

.ft-banner-list li img {
  width: auto;
  height: 50px;
}

.about_head {
  margin-bottom: 32px;
}

/*about*/

.lead {
  position: relative;
  margin-bottom: 20px;
}

.lead h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.about_head {
  margin-bottom: 32px;
}

.sp-about_head_thum {
  margin-bottom: 20px;
  width: 100%;
}

.about_head_info {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.about_head_info__catch {
  font-size: 1.285714286rem;
  color: var(--color_orange);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about_head_info .txt16 {
  margin-bottom: 20px;
}

/*point*/

.about-point-ttl span {
  padding-left: 38px;
  background: url(../../images/recruiter/top/ttl-ico-point.svg) no-repeat left center;
  background-size: 30px;
}

.about-point {
  background-color: rgba(228, 228, 228, 0.2);
  padding: 20px 20px;
  margin-bottom: 40px;
}

.h3-ttl {
  color: var(--color_blue);
  font-size: 1.428571429rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-point .h3-ttl {
  margin-bottom: 15px;
  text-align: center;
}

.point-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.point-list li {
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
  padding: 20px 15px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.point-list li img {
  display: block;
  width: 60px;
}

.point-list-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}

.point-list li .point-list-ttl {
  border-bottom: 1px solid #D8D8D8;
  color: var(--color_blue);
  font-size: 1.071428571rem;
  font-weight: 700;
  min-height: 60px;
  text-align: left;
  line-height: 1.4;
  width: calc(100% - 70px);
  margin-left: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.point-list li .txt16 {
  line-height: 1.5;
  text-align: left;
}

.about_btm {
  display: block;
}

.about_btm .lead {
  width: 100%;
}

.about-entry {
  margin-top: 20px;
  width: 100%;
}

.about-entry dl {
  display: block;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D8D8D8;
}

.about-entry dl:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-entry dl dt {
  width: 100%;
  color: var(--color_blue);
  font-size: 1rem;
  font-weight: 700;
}

.about-entry dl dd {
  margin-top: 5px;
  width: 100%;
}

.about-entry dl dd .check_list li {
  padding-left: 30px;
  background: url(../../images/recruiter/top/ico-check-orange.svg) no-repeat 0 3px;
  background-size: 20px auto;
  margin-bottom: 6px;
  font-weight: 500;
}

.trial-case__lists {
  margin-top: 20px;
  padding: 20px 20px 4px;
  background-color: #F5F5F5;
}

.trial-case__lists li {
  margin-bottom: 6px;
}

.trial-case__lists--inner {
  display: block;
  margin-bottom: 10px;
}

.trial-case__lists--inner span {
  font-weight: 700;
  width: 100%;
}

.trial-case__lists--inner p {
  font-weight: 700;
  width: 100%;
}

/*INFO*/
.info {
  padding: 0px 0px;
  margin: 20px 0 0px;
  background-color: rgba(245, 245, 245, 0.6);
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.info.info-top {
  width: 100%;
  background-color: #F5F5F5;
  border: none;
  padding: 20px 20px;
}

.info-left ,
.info-right {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.info-left {
  margin-bottom: 20px;
}

.info-right {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #d8d8d8;
}

.info-ttl {
  font-weight: 700;
  color: var(--color_blue);
  margin-bottom: 10px;
  font-size: 1.428571429rem;
}

.info-right ul li.info-list-mail {
  margin-bottom: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D8D8D8;
}

.info-right ul li.info-list-mail a {
  display: inline-block;
  padding-left: 36px;
  background: url(../../images/common/ico-mail-blue02.svg) no-repeat left center;
  background-size: 24px auto;
  font-weight: 700;
  font-size: 1.142857143rem;
}

.info-right ul li.info-list-tell a {
  display: inline-block;
  padding-left: 36px;
  background: url(../../images/common/ico-tell-blue.svg) no-repeat left center;
  background-size: 24px auto;
  font-weight: 700;
  font-size: 1.714285714rem;
}

.info-right .info-open {
  display: block;
  font-size: 0.857142857rem;
  margin-left: 6em;
  text-indent: -3em;
}

/*FLOW*/
.flow {
  padding-top: 20px;
}

.flow h2 {
  text-align: center;
}

.flow-list {
  margin-bottom: 20px;
}

.flow-list li {
  margin-bottom: 22px;
  padding: 16px 20px;
  background-color: #F5F5F5;
  border-radius: 16px;
  position: relative;
}

.flow-list li:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 89px;
  height: 23px;
  margin-left: -45px;
  background: url(../../images/recruiter/top/flow-arw.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.flow-list li:last-child {
  margin-bottom: 0;
}

.flow-list li:last-child:after {
  display: none;
}

.flow-list li .flow-thum {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 6px 0;
  margin: 0 auto;
}

.flow-list li:nth-child(4),
.flow-list li:nth-child(5),
.flow-list li:nth-child(6) {
  background-color: #F8F3F1;
}

.flow-list li .flow-thum img {
  max-width: 100%;
}

.flow-list li .flow-info {
  width: 100%;
  padding: 10px 0px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}

.flow-list li .flow-info h3 {
  color: var(--color_blue);
  font-size: 1.285714286rem;
  font-weight: 700;
}

.flow-list li:nth-child(4) .flow-info h3,
.flow-list li:nth-child(5) .flow-info h3,
.flow-list li:nth-child(6) .flow-info h3 {
  color: var(--color_orange);
}

.flow-list li .flow-info a:not([class]) {
  text-decoration: underline;
  color: var(--color_blue);
}

.flow-info-contact {
  margin-top: 12px;
}

.flow-info-contact .ttl {
  margin-bottom: 0px;
  font-weight: 700;
}

.flow-info-contact a {
  font-size: 1.25rem;
  padding-left: 29px;
  background: url(../../images/common/ico-tell-blue02.svg) no-repeat left center;
  background-size: 22px auto;
}

.flow-info-contact span {
  font-size: 0.8125rem;
}

.entry-image {
  background-color: #fff;
  padding: 20px 20px;
}

.entry-image .ttl {
  color: #CC4E00;
  font-size: 1.285714286rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/*INTERVIEW*/
.interview {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: rgba(228, 228, 228, 0.6);
}

.interview .c-center {
  padding-bottom: 10px;
}

.interview .interview-head {
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.interview-head .lead {
  width: 100%;
}

.interview-head .interview-top {
  width: 100%;
  margin-top: 20px;
}

.interview-head .interview-top p.catch {
  color: var(--color_green);
  font-size: 1.142857143rem;
}

.mv-com-slider .slick-slide {
  /*margin: 0 2.08vw;*/
  margin: 0 19px;
  background: #fff;
  max-width: 640px;
  background-color: #fff;
  border: 1px solid #E4E4E4;
}

.interview-slider-items a {
  display: block;
  padding: 20px 20px 35px;
  position: relative;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.interview-slider-items a:after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 34px;
  height: 34px;
  background: url(../../images/common/ico-arw-blue.svg);
  background-repeat: no-repeat;
  background-size: 34px auto;
}

.interview-slider-head {
  display: block;
}

.interview-slider-head .thum {
  width: 200px;
}

.interview-slider-head .interview-info {
  margin-top: 20px;
  width: 100%;
}

.interview-slider-head .interview-info .label {
  margin-bottom: 12px;
}

.interview-slider-head .interview-info .label span {
  display: inline-block;
  background: #FBF7F0;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  padding: 3px 24px;
}

.interview-slider-head .interview-info .in-com-name ,
.interview-slider-head .interview-info .in-job-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.interview-slider-items h3 {
  font-weight: 700;
  color: var(--color_blue);
  font-size: 1.25rem;
  padding-bottom: 8px;
  line-height: 1.4;
}

.interview-slider-items .txt16 {
  border-top: 1px solid #D8D8D8;
  margin-top: 10px;
  line-height: 1.5;
}

.mv-com-slider .slick-track {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.mv-com-slider .slick-slide {
  height: auto !important;
}

.mv-com-slider .slick-dots {
  width: auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -43px;
}

.mv-com-slider .slick-dots li button:before {
  background-color: #707070;
}

.mv-com-slider .slick-dots li.slick-active button:before {
  background-color: var(--color_green);
}

.mv-com-slider .slick-dots li button:hover:before, 
.mv-com-slider .slick-dots li button:focus:before {
  background: var(--color_green);
}

.mv-com-slider .slick-prev {
  left: 0;
  margin-left: 0px;
  width: 34px;
  height: 34px;
  bottom: auto;
  top: 50%;
}

.mv-com-slider .slick-next {
  right: 0;
  margin-right: 0px;
  width: 34px;
  height: 34px;
  bottom: auto;
  top: 50%;
}

.slick-dots li button {
  background: rgba(0, 15, 89, 0.3)!important;
}

.slick-dots li.slick-active button:before {
  background: #000F59!important;
}

.slider-controls ,
.slider-controls2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.slick-dots li {
  margin: 0 4px!important;
}
.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
  width: 20px!important;
}

/*一時停止*/
.row_btns {
  width: 30px;
  height: 22px;
  order: 1;
  display: none;
}

.row_btns button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit;
  cursor: pointer;
  padding: 0;
}

.row_btns button img {
  display: block;
}

.row_btns .slick_pause .btn-start ,
.row_btns .slick_pause2 .btn-start {
  display: none;
}

.row_btns .slick_pause.paused .btn-pause ,
.row_btns .slick_pause2.paused .btn-pause {
  display: none;
}

.row_btns .slick_pause.paused .btn-start ,
.row_btns .slick_pause2.paused .btn-start {
  display: block;
}

/*ページナビ*/
.pagenavi {
  text-align: left;
  margin: 20px 0 24px;
  position: relative;
}

.wp-pagenavi {
  width: auto;
  max-width: 80%;
  display: inline-block;
}

.wp-pagenavi span,
.wp-pagenavi a {
  min-width: 35px;
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  line-height: 35px;
  height: 35px;
  color: #218377;
  text-align: center;
  border: #218377 solid 1px;
}

.wp-pagenavi span.current {
  background: #218377;
  color: #fff;
}

.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first {
  padding: 0 3px;
}

/*事例・実績紹介*/

.h1-ttl {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.571428571rem;
  color: var(--color_blue);
  text-align: center;
  margin-bottom: 27px;
}

.h1-ttl p {
  color: #333;
  font-size: 1rem;
  display: block;
  margin-top: 10px;
}

.h2-ttl {
  margin-bottom: 25px;
  text-align: left;
  font-size: 1.428571429rem;
  line-height: 1.5;
  display: block;
  padding-left: 15px;
  position: relative;
  color: var(--color_blue);
  border-left: 4px solid var(--color_blue);
}

.h2-ttl:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 35%;
  background: var(--color_orange);
}

.case-h2 {
  margin-bottom: 40px;
  text-align: center;
}

.case-h2 span {
  font-size: 1.428571429rem;
  line-height: 1.5;
  color: #CC4E00;
  display: inline-block;
  padding-left: 43px;
  padding-right: 43px;
  background: url(../../images/recruiter/case/ttl-left.svg) no-repeat left bottom,
  url(../../images/recruiter/case/ttl-right.svg) no-repeat right bottom;
  background-size: 22px auto,22px auto;
  font-weight: 700;
}

.case-list {
  display: block;
}

.case-list > li {
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #E4E4E4;
  padding: 34px 15px 47px 15px;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.1);
  box-shadow: 0 3px 6px rgba(0,0,0,.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.case-list-items .case-target {
  display: inline-block;
  position: absolute;
  left: 30px;
  top: -15px;
  color: #fff;
  padding: 5px 25px;
  background-color: #015CB5;
  border-radius: 200px;
  font-weight: 700;
  font-size: 1rem;
}

.case-list-items .case-list-title {
  font-weight: 700;
  color: #333;
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E4E4E4; 
}

.accordion-text {
  padding: 0 0px 10px;
  overflow: hidden; /* テキストを隠す */
  position: relative;
}

.accordion-text p {
  line-height: 1.5;
}

.accordion-text.is-hide {
  height: 100px;
}

/*.accordion-text::before {
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  background:         linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  bottom: 0;
  content: "";
  height: 60px;
  position: absolute;
  width: 100%;
}*/

/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
  display: none;
}

.accordion-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 44px;
  line-height: 44px;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--color_blue);
  text-align: left;
  transition: all .2s;
  color: #fff;
  cursor: pointer;
  padding-left: 38%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion-btn:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  margin-left: 26px;
  width: 12px;
  height: 16px;
  background: url(../../images/case/arw-btm-case-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.accordion-btn.is-show:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 12px;
  margin-left: 9px;
}

.case-list-items.type02 .case-target {
  background-color: #CF1A1A;
}

.case-list-items ul li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.case-list-items ul li:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 10px;
  width: 3px;
  height: 3px;
  background: #015CB5;
  border-radius: 10px;
}

.case-achievement {
  margin-top: 40px;
}

.achievement-catch {
  text-align: center;
  margin-bottom: 40px;
}

.achievement-catch p {
  font-weight: 700;
  line-height: 1.5;
}

.achievement-catch p .txt02 {
  font-size: 1.625rem;
}

.case-achievement-thum {
  background-color: #F1F6F6;
  padding: 20px;
  overflow-y: auto;
  margin-bottom: 24px;
}

.case-achievement-thum img {
  min-width: 600px;
}

/*faq*/

.lead.type02 h2,
.h2-ttl {
  font-size: 1.428571429rem;
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.faq-list {
  border: 1px solid #C84302;
  border-radius: 10px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.faq-accordeon-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.faq-accordeon-list li {
  width: 48.4%;
  border-radius: 10px;
  background: var(--color_blue);
}

.faq-accordeon-list li a {
  text-align: center;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  color: #fff;
  background: url(../../images/common/ico-arw-btm-white02.svg) no-repeat 95% 50%;
  background-size: 10px auto;
}

.faq-block {
  margin-bottom: 60px;
}

.faq-block .faq-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.faq-block .faq-list .question {
  padding: 10px 50px 10px 20px;
  background-color: rgba(200, 67, 2, 0.1);
  cursor: pointer;
  position: relative;
}

.faq-list h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 700;
}

.open-close {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 10px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #CC4E00;
}

.answer {
  padding: 20px;
}

.open-close:before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -1px;
  width: 14px;
  height: 2px;
  background: #fff;
}

.open-close:after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  margin-top: -7px;
  width: 2px;
  height: 14px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: #fff;
}

.question.is-open .open-close:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*policy*/

.h2-ttl-type02 {
  color: #CC4E00;
  font-size: 1.428571429rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.h3-ttl-type01 {
  font-size: 1.3571428rem;
  background-color: #E6E8F4;
  color: var(--color_blue);
  padding: 6px 20px;
  margin: 25px 0 24px;
  font-weight: 700;
}

.policy-box ,
.privacy-box {
  margin-bottom: 40px;
}

.policy-box.first {
  margin-top: 20px;
}

.policy-box p  {
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-box p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-box ul ,
.privacy-box ul {
  padding-left: 10px;
}

.policy-box ul li  ,
.privacy-box ul li  {
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.policy-box ul li:before ,
.privacy-box ul li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--color_blue);
  border-radius: 10px;
}

.policy-box ol ,
.privacy-box ol {
  counter-reset: item;
  list-style-type: none;
  margin-bottom: 12px;
  padding-left: 14px;
}

.privacy-box ul ,
.privacy-box ol {
  padding-left: 0;
}

.policy-box ol li ,
.privacy-box ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
}

.policy-box ol li:before ,
.privacy-box ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 1rem;
  color: #333;
}

.policy-box .h3-title.u-mt-ver {
  margin-top: 50px;
}

.policy-box a {
  text-decoration: underline;
  color: var(--color_blue);
  word-break: break-all;
}

.policy-box .h3-title {
  margin-bottom: 14px;
}

.policy-box dl {
  margin-bottom: 22px;
}

.policy-box dt {
  font-weight: 500;
  color: var(--color_blue);
  font-size: 1rem;
  margin-bottom: 6px;
}

.policy-box dd {
  padding-left: 15px;
}

.policy-box-inner {
  padding-left: 0px;
}

/* accessibility */
.accessibility-table table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}
.accessibility-table table th {
  background-color: #F7F7F7;
  padding: 6px 20px;
  border: 1px solid #C5C5C5;
  border-bottom: none;
  text-align: center;
  vertical-align: middle;
}
.accessibility-table table td {
  border: 1px solid #C5C5C5;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}
.accessibility-table table .wd30 {
  width: 40%;
  text-align: left;
}
.accessibility-table table .wd20 {
  width: 20%;
  text-align: left;
}
.accessibility-table table th.wd30 ,
.accessibility-table table th.wd20 {
  text-align: center;
}

/*privacy*/
.privacy-box .h2-ttl {
  margin-top: 40px;
  font-size: 1.285714286rem;
  margin-bottom: 13px;
}

/*contact*/
.cont .step_confirm,
.cont .step_thanks {
  display: none;
}
.contact-privacy {
  width: 100%;
  height: 260px;
  overflow-y: scroll;
  padding: 20px 15px;
  border: 1px solid #DDDDDD;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact-privacy .ttl {
  font-weight: bold;
}

.contact-privacy .txt16 {
  margin-bottom: 15px;
}

.contact-privacy .h2-ttl {
  padding-left: 0;
  border-left: 0;
  font-size: 1.285714286rem;
}

.contact-privacy .h2-ttl:before {
  display: none;
}

.contact-privacy .h3-ttl {
  font-size: 1.285714286rem;
  margin-top: 40px;
  color: #333;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.thanks-block {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.p-form-flow {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--color_blue);
}

.p-form-flow li {
  width: 33.3333%;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: var(--color_blue);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  background-color: #F5F5F5;
  /*border: 1px solid var(--color_blue);*/
  /*border-right: none;*/
}

.p-form-flow li.is-active {
  background-color: var(--color_blue);
  color: #fff;
}

.p-form-flow li:nth-child(1):before,
.p-form-flow li:nth-child(2):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: -20px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
  border-top: 40px solid var(--color_blue);
  border-bottom: 0;
  z-index: 1;
}

.p-form-flow li:nth-child(1):after,
.p-form-flow li:nth-child(2):after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: -19px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
  border-top: 40px solid #F5F5F5;
  border-bottom: 0;
  z-index: 1;
}

.p-form-flow li.is-active:after {
  display: none;
}

.c-radio input {
  border-radius: 50%;
  transform: rotate(1deg);
  width: 22px;
  height: 22px;
}

.c-radio input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: #333;
  border-radius: 50%;
  border-color: #333;
}

/*セミナー*/
.top-sem-inner.sub-sem-list {
  background-color: #fff;
  border: 1px solid var(--color_blue);
  padding: 25px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/*セミナー詳細*/
.seminar-box-inner {
  padding: 0 10px;
}

.single-seminar-catch {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.125rem;
  font-weight: 500;
}
.h4_ttl {
  font-size: 1.25rem;
  color: var(--color_blue);
  font-weight: 700;
  margin-bottom: 13px;
}
.seminar-box dl.sem-head-list {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px dashed #D8D8D8;
}

.seminar-box dl.sem-head-list:last-of-type {
  margin-bottom: 40px;
}

.seminar-box dl.sem-head-list dt {
  width: 80px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color_blue);
  display: table-cell;
}

.seminar-box dl.sem-head-list dd {
  display: table-cell;
}

.seminar-schedule {
  margin-top: 30px;
}

.seminar-schedule {
  margin-bottom: 40px;
}

.seminar-time {
  display: block;
  margin-bottom: 8px;
  /*border-bottom: 1px solid #CC4E00;*/
  padding-bottom: 8px;
  width: 100%;
}

.seminar-time dt,
.seminar-time dd {
  display: block;
  font-size: 1rem;
}

.seminar-time dd strong {
  color: var(--color_orange);
}

.seminar-time dt {
  font-weight: 700;
}
.seminar-time dd {
  font-weight: 400;
}

.seminar-info__inner {
  display: block;
  margin-bottom: 40px;
}

.seminar-info__thum {
  width: 260px;
}

.seminar-info__thum img {
  width: 100%;
}

.seminar-info__txt {
  margin-top: 15px;
  width: 100%;
}

.seminar-info__txt .ttl {
  font-size: 1rem;
  color: var(--color_blue);
  font-weight: 700;
  padding-bottom: 7px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D8D8D8;
}

.seminar-info__txt .ttl span {
  display: block;
  color: var(--color_orange);
  font-weight: 700;
  font-size: 0.875rem;
}

.seminar-box dl.type02 {
  border-bottom: none;
  padding: 0;
  margin-bottom: 10px;
}

.seminar-box dl.type02 dt {
  width: 84px;
}

.btntype02 {
  text-align: center;
  margin: 40px 0;
}

.dot-list li ,
.dot-list02 li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.dot-list li:before { 
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #CC4E00;
  border-radius: 10px;
}

.dot-list02 li:before { 
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #CC4E00;
  border-radius: 10px;
}

.c-checkbox .wpcf7-list-item, .c-radio .wpcf7-list-item {
  display: block;
}

.wpcf7-list-item {
  margin-left: 0!important;
}

.seminar-form-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 10px;
}

.seminar-form-list dt {
  color: #CC4E00;
  font-weight: 700;
  width: 100px;
}

/*contact div type*/

.formTable-type02 li .inner {
  margin-bottom: 4px;
  border-bottom: 1px dashed #AAAAAA;
  padding: 12px 0 14px;
}

.formTable-type02 li .formTable-type02-ttl {
  text-align: left;
  vertical-align: top;
  padding: 0px 10px 0px 0;
  width: 100%;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

/*.formTable-type02 li .formTable-type02-ttl.hissu:after {
  content: '必須';
  top: 16px;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid #fff;
  background: #C84302;
  line-height: 1.3;
  text-align: center;
  margin-left: 10px;
  border-radius: 4px;
}*/

.formTable-type02 li .input-inf {
  margin-top: 10px;
  width: 100%;
}

.formTable-type02 li textarea {
  width: 100%;
  height: 140px;
  padding: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #AAAAAA;
  border-radius: 5px;
}

.form-sel-link {
  color: var(--color_blue);
  text-decoration: underline;
}

/*インタビュー詳細*/
.h1-ttl .in-sub-ttl {
  color: #333;
  font-size: 1rem;
  display: block;
}

.interview-btm {
  margin-top: 60px;
}

.interview-head .interview-catch ,
.interview-btm .interview-catch {
  background-color: #FDF7F4;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 35px;
  color: #23558D;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.interview-head .h2-ttl {
  padding-left: 0;
  border: none;
}

.interview-head .h2-ttl:before {
  display: none;
}

.in-single-label {
  margin-bottom: 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E4E4;
}

.in-single-label img {
  height: 44px;
  width: auto;
}

.interview-head-inner {
  display: block;
  margin-bottom: 20px;
}

.interview-head-inner.type02 {
  -ms-align-items: center;
  align-items: center;
}

.interview-head-inner a {
  text-decoration: underline;
  color: var(--color_blue);
}

.interview-head-inner .interview-head-thum {
  /*width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;*/
  width: 260px;
  overflow: hidden;
  margin-bottom: 15px;
}

.interview-head-inner .interview-head-info {
  width: 100%;
}

.interview-head-inner .interview-head-info .com-name {
  color: var(--color_orange);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.interview-head-inner .interview-head-info .com-ceo-name {
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
}

.interview-compnay-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #E4E4E4;
}

.interview-compnay-info + .interview-compnay-info {
  border-top: none;
  margin-top: 0;
}

.interview-compnay-info__ttl {
  font-weight: 700;
  margin-bottom: 2px;
}

.interview-loop-list {
  margin-bottom: 40px;
}

.interview-loop-list .question {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.interview-loop-list .question span {
  color: var(--color_blue);
  font-size: 2.285714285rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  top: -6px;
  margin-right: 14px;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
}

.interview-loop-list__inner {
  display: block;
}

.interview-loop-list__inner .thum {
  width: 230px;
  margin-bottom: 10px;
}

.interview-loop-list__inner .interview-loop-list__txt {
  display: block;
}

.interview-loop-list__inner.right .thum {
  margin-right: 0;
  order: 2;
}

.interview-loop-list__inner.right .interview-loop-list__txt {
  order:1;
}

.interview-message {
  margin-bottom: 32px;
}

.interview-message__ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.interview-message__ttl span {
  color: var(--color_blue);
  font-size: 2.285714285rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  top: -6px;
  margin-right: 14px;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
}

.interview-message__txt + .interview-message__txt {
  margin-top: 20px;
}
.interview-loop-list__txt p,
.interview-message__txt p {
  margin-bottom: 15px;
}

.interview-message__txt {
  display: block;
}

.interview-message__txt__thum {
  /*float: left;*/
  flex: 1;
  margin: 0 20px 10px 0;
  max-width: 270px;
}

.interview-message__txt__info {
  flex: 2;
}

/* =========================
  下層
========================= */

.sub-page {
  position: relative;
  z-index: 1;
}

.interview-btm-ttl {
  text-align: center;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; 
  color: #CC4E00;
  font-size: 1.625rem;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 25px;
}

.interview-btm-ttl:before,
.interview-btm-ttl:after {
  background-color: #CC4E00; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 100%; /* 横線の長さ */
}

.interview-btm-ttl:before {
  margin-right: 25px;
}

.interview-btm-ttl:after {
  margin-left: 20px;
}

/*インタビュー一覧*/
.sub-pd-block .interview-head-inner {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #CCCCCC;
}

.interview-block {
  display: block;
}

.interview-items {
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid var(--color_blue);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16);
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.interview-items a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px 15px 35px;
  position: relative;
}

.interview-items-inner {
  display: block;
}

.interview-items-inner .interview-img {
  width: 100%;
}

.interview-items-inner .interview-info {
  width: 100%;
  margin-top: 15px;
}

.interview-items-inner .interview-info-comname {
  color: var(--color_blue);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1rem;
}

.interview-items-inner .interview-info-name {
  color: var(--color_blue);
  font-weight: 700;
  font-size: 1rem;
}

.interview-items-inner .interview-info-name .title {
  line-height: 1.5;
}

.interview-items-inner .interview-info-name .title .top-none {
  display: none;
}

.interview-items-inner .c-link {
  font-size: .875rem;
  padding-left: 0;
  padding-right: 42px;
  background-position: right center;
  background-size: 31px auto;
  height: 31px;
  line-height: 31px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.interview-info-ttl h2 {
  font-weight: 700;
  border-bottom: 1px dashed #DDDDDD;
  padding-bottom: 9px;
  margin-bottom: 9px;
  line-height: 1.4;
}

/*コンサルティング*/

.consulting-box + .consulting-box {
  margin-top: 60px;
}

.consulting-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.consulting-box-grid .thum {
  width: 100%;
}

.consulting-box-grid .consulting-info {
  width: 100%;
}

.consulting-box-grid .consulting-info .ttl {
  margin-bottom: 14px;
  text-align: center;
  color: var(--color_blue);
  font-weight: 700;
  font-size: 1.428571429rem;
}

.consulting-info .nayami-list {
  position: relative;
  margin-bottom: 36px;
}

.consulting-info .nayami-list:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -25px;
  margin-left: -80px;
  width: 160px;
  height: 16px;
  background: url(../../images/recruiter/consulting/con-arw.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.consulting-info .nayami-list li {
  margin-bottom: 12px;
  background-color: #F5F5F5;
  border-radius: 10px;
  padding: 15px 43px;
  padding-right: 10px;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
}

.consulting-info .nayami-list li:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 10px;
  width: 43px;
  height: 40px;
  background: url(../../images/recruiter/consulting/ico-check.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.consulting-box .h2-ttl .free {
  position: absolute;
  right: -10px;
  top: -40px;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--color_orange);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.nayami-txt {
  text-align: center;
}

.nayami-txt span {
  font-size: 1.25rem;
  color: var(--color_orange);
  font-weight: 700;
}

.consulting-illust {
  overflow-y: auto;
}

.consulting-illust img {
  min-width: 500px;
}

.con-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 4%;
  margin-bottom: 45px;
}

.con-case-list li {
  width: 48%;
  background-color: #F5F5F5;
  text-align: center;
  padding: 20px 10px 10px;
  box-sizing: border-box;
}

.con-case-list li .thum {
  width: 80px;
  margin: 0 auto 10px;
}

.con-case-list li .title {
  color: var(--color_blue);
  font-weight: 700;
  font-size: 1rem;
}

.consulting-att-box {
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid var(--color_orange);
  padding: 22px 20px;
}

.consulting-att-box .ttl {
  padding-left: 42px;
  background: url(../../images/recruiter/consulting/ico-att.svg) no-repeat left center;
  background-size: 32px auto;
  font-size: 1.285714286rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.consulting-att-box ul li {
  margin-bottom: 8px;
  position: relative;
  line-height: 1.4;
  padding-left: 13px;
}

.consulting-att-box ul li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 3px;
  height: 3px;
  background: var(--color_orange);
  border-radius: 10px;
}

/*news archive*/
.news-list.sub-pg {
  margin-left: 0;
  width: 100%;
  margin-bottom: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*single*/

.single-page h2 {
  margin-bottom: 35px;
  text-align: left;
  font-size: 1.428571429rem;
  line-height: 1.5;
  display: block;
  padding-left: 20px;
  position: relative;
  color: var(--color_blue);
  border-left: 4px solid var(--color_blue);
}

.single-page h2:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 35%;
  background: var(--color_orange);
}

.single-page h3 {
  font-size: 1.285714286rem;
  background-color: rgba(0,15,89,.1);
  padding: 6px 20px;
  margin: 25px 0 24px;
  font-weight: 700;
}

.single-page h4 {
  color: #CC4E00;
  margin-bottom: 24px;
  margin-top: 20px;
  font-size: 1.142857143rem;
  font-weight: 700;
}

.single-page p:not([class]) {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.single-page ul {
  margin-bottom: 20px;
}

.single-page ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  font-size: 1rem;
}

.single-page ul li:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  left: 4px;
  top: 8px;
  background-color: var(--color_blue);
}

.single-page ol {
  counter-reset: item;
  list-style-type: none;
  margin-bottom: 20px;
}

.single-page ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
}

.single-page ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  left: 0px;
  top: -2px;
  font-size: 1rem;
  color: var(--color_blue);
}

.single-page a:not([class]) {
  color: var(--color_blue);
  text-decoration: underline;
}

.single-page a:not([class]):hover {
  text-decoration: none;
}

.single-page table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  margin-bottom: 15px;
}

.single-page table tr th,
.single-page table tr td {
  border: solid 1px #CCCCCC;
  vertical-align: middle;
  font-size: 1rem;
  padding: 5px;
}

.single-page table tr th {
  background: rgba(0,15,89,.1);
  color: var(--color_blue);
  font-weight: 700;
}

.news-date {
  color: var(--color_blue);
  text-align: right;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 10px;
}

.news-single-btn {
  margin-top: 30px;
}

/*sitemap*/
.sitemap_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sitemap_wrap .sitemap_col1 {
  width: 100%;
}

.sitemap_wrap .sitemap_col1 a {
  color: var(--color_blue);
  font-weight: 700;
}

.sitemap_wrap .sitemap_col2 ,
.sitemap_wrap .sitemap_col3 {
  width: 48%;
  margin-top: 20px;
}

.sitemap_wrap ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #E4E4E4;
}

.sitemap_wrap ul li a {
  font-size: 1rem;
  font-weight: 500;
  background: url(../../images/common/ico-arw-link-blue.svg) no-repeat 0% 50%;
  background-size: 6px auto;
  padding-left: 12px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  padding: 20px 0px;
  width: 92.5%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.c-center02 {
  width: 92.5%;
  margin: 0 auto 20px;
  padding: 30px 0px 30px;
  max-width: 1320px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.c-btn .btn {
  background: url(../../images/common/ico-arw-white__circle.svg) no-repeat 95% 50%;
  background-size: 22px auto;
  background-color: var(--color_orange);
  border-radius: 200px;
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 700px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.c-btn span {
  display: block;
  font-size: 0.928571429rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

.c-btn p {
  display: block;
  font-size: 1.142857143rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.btn01 {
  display: inline-block;
  max-width: 500px;
  background: url(../../images/common/ico-arw-btn-white02.svg) no-repeat 95% 50%;
  background-size: 7px auto;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: var(--color_blue);
  padding: 13px;
  border-radius: 200px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.btn02 {
  display: inline-block;
  max-width: 500px;
  background: url(../../images/common/ico-arw-btn-white02.svg) no-repeat 95% 50%;
  background-size: 7px auto;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: var(--color_orange);
  padding: 9px 13px;
  border-radius: 200px;
  text-align: center;
  color: #fff;
  width: 100%;
  overflow: hidden;
}

.btn02 span {
  font-size: 1.125rem;
}

.c-btn .btn02 p {
  font-size: 1.1375rem;
}

.btn01.type02 {
  padding: 26px 10px;
}

.entry-soon {
  position: relative;
  pointer-events:none;
}

span.entry-soon-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(51,51,51,.85);
  text-align: center;
  line-height: 1.5;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.c-link {
  display: inline-block;
  padding-left: 36px;
  background: url(../../images/common/ico-arw-blue.svg) no-repeat left center;
  background-size: 28px auto;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 1rem;
  font-weight: 700;
}

.c-link02 {
  display: inline-block;
  padding-right: 18px;
  background: url(../../images/common/ico-arw-link-blue.svg) no-repeat right center;
  background-size: 8px auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color_blue);
}

.entry-closed {
  position: relative;
}

.ft-nav .entry-closed {
  margin-left: auto;
  max-width: 500px;
}

.entry-closed a {
  pointer-events: none;
}

.entry-closed-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 20000;
}
a.skip {
  background-color: #FFFFFF;
  /* 変更しない */
  text-align: center;
  /* 変更しない */
  padding: 2px 0;
  /* 変更しない */
  top: auto;
  /* 変更しない */
}
a.skip:active {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.8;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}
a.skip:focus {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.8;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}
/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* column */
.col-sp-1 { width: 8.33333333%; }
.col-sp-2 { width: 16.66666667%; }
.col-sp-3 { width: 25%; }
.col-sp-4 { width: 33.33333333%; }
.col-sp-5 { width: 41.66666667%; }
.col-sp-6 { width: 50%; }
.col-sp-7 { width: 58.33333333%; }
.col-sp-8 { width: 66.66666667%; }
.col-sp-9 { width: 75%; }
.col-sp-10 { width: 83.33333333%; }
.col-sp-11 { width: 91.66666667%; }
.col-sp-12 { width: 100%; }

.txt14 {
  font-size: 0.928571429rem;
}

.txt16 {
  font-size: 1rem;
}

.txt18 {
  font-size: 1.142857143rem;
}

strong {
  font-weight: bold;
}

/*color*/
.color-blue {
  color: #000F59;
}

.color-orange {
  color: #C84302;
}

/*パンくず*/
.breadcrumbs {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 14px;
  margin-top: 15px;
}

.breadcrumbs ol {
  max-width: 1080px;
  margin: 0 auto;
  width: 92.5%;
}
.breadcrumbs ol li {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
}

.breadcrumbs ol li a {
  color: var(--color_blue);
}

.breadcrumbs ol li img {
  margin-top: -2px;
}

.breadcrumbs li.arrow {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  position: relative;
  color: var(--color_blue);
}

/*可変幅*/
@media screen and (max-width: 355px){
  
}