@charset "utf-8";

/* ===================================
 top page
=================================== */

/*main visual*/
#mainvisual {
  width: 100%;
  max-width: 1900px;
  max-height: 660px;
  margin: 0 auto;
  padding: 0 36px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
#mainvisual .mv_img {
  width: 100%;
  max-height: 660px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
#mainvisual .mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainvisual .mv_cts_wrap {
  width: 100%;
  max-width: var(--ctsWidth);
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
}
#mainvisual .mv_cts {
  width: 100%;
  max-width: 800px;
  position: absolute;
  left: 20px;
  top: 55%;
  transform: translate(0,-50%);
}
#mainvisual .mv_img h2 {
  display: none;
}
#mainvisual h2 {
  width: 100%;
  text-align: center;
  color: var(--mainColor);
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: 7px;
  margin-bottom: 80px;
}
#mainvisual .mv_tab_cts {
  width: 100%;
  background: rgba(255,255,255,.85);
  border-radius: 10px;
  display: grid;
}
#mainvisual .mv_tab_cts .tab-area {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #D9D9D9;
  display: flex;
  gap: 0;
  justify-content: flex-start;
}
#mainvisual .mv_tab_cts .tab-area .tab {
  width: auto;
  height: 51px;
  margin: 0 0 -2px;
  padding: 0 30px;
  border-bottom: 2px solid #D9D9D9;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  color: var(--txtColor);
  transition: .3s;
  cursor: pointer;
}
#mainvisual .mv_tab_cts .tab-area .tab.active,
#mainvisual .mv_tab_cts .tab-area .tab:hover {
  border-color: var(--mainColor);
  color: var(--mainColor);
}
#mainvisual .mv_tab_cts .panel-area {
  width: 100%;
  padding: 24px;
}
#mainvisual .mv_tab_cts .panel-area .panel {
  display: none;
  width: 100%;
}
#mainvisual .mv_tab_cts .panel-area .panel.active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
#mainvisual .mv_tab_cts .results {
  display: block;
  width: 100%;
  text-align: right;
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 34px 0 0 0;
}
#mainvisual .mv_tab_cts .results span {
  font-size: 34px;
  font-weight: 700;
  margin: 0 5px;
}
#mainvisual .mv_tab_cts .caution {
  color: #505C7C;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 0 0 0 26px;
  margin: 0 0 10px;
  position: relative;
}
#mainvisual .mv_tab_cts .caution:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/icon-info.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 5px;
}
#mainvisual .mv_tab_cts .form_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
#mainvisual .mv_tab_cts .recruit .form_wrap {
  margin-top: 24px;
}
#mainvisual .mv_tab_cts .form_box {
  gap: 10px;
}
#mainvisual .mv_tab_cts .form_box .select-box select {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
  height: 100%;
  border-radius: 5px; 
  padding: 15px 35px 5px 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--txtColor);
  text-align: center;
  position: relative;
  z-index: 3;
}
#mainvisual .mv_tab_cts .form_box .select-box select option {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
}
#mainvisual .mv_tab_cts .form_box .select-box label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  color: var(--txtColor);
  padding: 15px 35px 5px 10px;
  z-index: 2;
}
#mainvisual .mv_tab_cts .form_box .select-box label + select {
  opacity: 0;
}
#mainvisual .mv_tab_cts .form_box .select-box select::-ms-expand {
  display: none;
}
#mainvisual .mv_tab_cts .form_box .select-box {
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
#mainvisual .mv_tab_cts .form_box .select-box:before {
  position: absolute;
  top:0;
  right:0;
  content: '';
  width: 30px;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: none;
}
#mainvisual .mv_tab_cts .form_box .select-box:after {
  content:'';
  width: 11px;
  height: 6px;
  background: url(../images/icon-select.svg) no-repeat center / contain;
  position: absolute;
  top:50%;
  right:7px;
  transform: translateY(-50%);
  pointer-events: none;
}
#mainvisual .mv_tab_cts .form_box .select-box.place,
#mainvisual .mv_tab_cts .form_box .select-box.type {
  width: calc((100% - 124px - 250px - 30px)/2);
}
#mainvisual .mv_tab_cts .form_box .select-box.salary {
  width: 250px;
}
#mainvisual .mv_tab_cts .form_box .select-box.worries {
  width: calc(100% - 124px - 10px);
}
#mainvisual .mv_tab_cts .form_box .select-box .label {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  position: absolute;
  top: 5px;
  left: 15px;
  padding: 0 0 0 22px;
  z-index: 3;
}
#mainvisual .mv_tab_cts .form_box .select-box .label:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  transform: translate(0,-50%);
}
#mainvisual .mv_tab_cts .form_box .select-box.place .label:before {
  background: url(../images/icon-pin.svg) no-repeat center / contain;
}
#mainvisual .mv_tab_cts .form_box .select-box.type .label:before {
  background: url(../images/icon-scope.svg) no-repeat center / contain;
}
#mainvisual .mv_tab_cts .form_box .select-box.salary .label:before {
  background: url(../images/icon-money.svg) no-repeat center / contain;
}
#mainvisual .mv_tab_cts .form_box .select-box.worries .label:before {
  background: url(../images/icon-comment.svg) no-repeat center / contain;
}
#mainvisual .mv_tab_cts .form_box .search_btn {
  width: 124px;
  height: 90px;
  display: flex;
  background: var(--linkColor);
  border: none;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
#mainvisual .mv_tab_cts .form_box .search_btn:hover {
  opacity: 1;
  box-shadow: inset 0px 0px 10px 10px rgba(0,0,0,.15);
}
#mainvisual .mv_tab_cts .form_box .search_btn span {
  padding: 0 0 0 32px;
  position: relative;
}
#mainvisual .mv_tab_cts .form_box .search_btn span:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../images/icon-search.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}


/*特集*/
#special:before {
  content: '';
  width: 285px;
  height: 432px;
  background: url(../images/bgi-section-img01.png) no-repeat center right / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  pointer-events: none;
  z-index: -1;
}
#special .wrap {
  padding-top: 80px;
}
#special .cts_block {
  width: 100%;
  margin: 0;
  padding: 0;
}
#special .cts_block + .cts_block {
  margin-top: 80px;
}
#special h2 {
  color: var(--mainColor);
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 30px;
}
#special .contents {
  width: 100%;
  margin: 0;
  padding: 0;
}
#special .scroll_container {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#special .contents > .scroll_container {
  padding-bottom: 20px;
}
#special .child_cts > .scroll_container {
  padding-bottom: 20px;
}
#special .tab-area {
  width: fit-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #D9D9D9;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
}
#special .tab-area .tab {
  width: auto;
  height: 42px;
  margin: 0 0 -2px;
  padding: 0 18px;
  border-bottom: 2px solid #D9D9D9;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  color: var(--txtColor);
  transition: .3s;
  cursor: pointer;
  white-space: nowrap;
}
#special .tab-area .tab.active,
#special .tab-area .tab:hover {
  border-color: var(--mainColor);
  color: var(--mainColor);
}
#special .tab-area .tab.is-disabled {
  border-color: #D9D9D9;
  color: #ACACAC;
  pointer-events: none;
  cursor: not-allowed;
}
#special .panel,
#special .child-panel {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#special .panel.active,
#special .child-panel.active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#special .child-panel .no_data {
  padding: 60px 20px 0;
  text-align: center;
}
#special .child-panel .no_data_text {
  margin: 0;
  color: #212121;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
}
#special .child-panel .no_data_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 323px;
  height: 50px;
  margin: 50px auto 0;
  border-radius: 4px;
  background: var(--linkColor);
  color: #fff;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}
#special .child-panel .no_data_btn:after {
  content: '';
  width: 20px;
  height: 16px;
  background: url(../images/icon-contact-white.svg) no-repeat center / contain;
}
@media(hover: hover) {
  #special .child-panel .no_data_btn:hover {
    opacity: .8;
  }
}
#special .child-tab-area {
  width: fit-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
}
#special .child-tab-area .child-tab {
  width: auto;
  margin: 0 0 -2px;
  padding: 8px 12px;
  border: 1px solid var(--mainColor);
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--mainColor);
  transition: .3s;
  cursor: pointer;
  white-space: nowrap;
}
#special .child-tab-area .child-tab.active,
#special .child-tab-area .child-tab:hover {
  background: var(--mainColor);
  color: #fff;
}
#special .child-tab-area .child-tab.is-disabled {
  border-color: #D9D9D9;
  background: #F5F5F5;
  color: #ACACAC;
  pointer-events: none;
  cursor: not-allowed;
}
#special .more_link {
  width: fit-content;
  display: block;
  margin: -15px 0 0 auto;
  padding: 0 12px;
}
#special .more_link a {
  text-decoration: none;
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  padding: 0 20px 0 0;
  position: relative;
}
#special .more_link a .arrow:before {
  background: var(--mainColor);
}
#special .more_link a .arrow:after {
  border-color: var(--mainColor);
}
#special .more_link a:hover {
  opacity: 1;
}
#special .slide_cts {
  background: #fff;
  border-radius: 5px;
  filter: drop-shadow(0px 0px 3px rgba(0,0,0,.15));
  padding: 20px;
}
#special .carousel.is-static .slide_cts {
  width: calc((100% - 20px*3)/4);
}
#special .carousel.is-static + .more_link {
  margin: 15px 0 0 auto;
  padding: 0;
}
#special .slide_cts .new {
  display: inline-block;
  background: var(--linkColor);
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  font-weight: 700;
  padding: 5px 10px;
  margin: 0 0 10px;
  border-radius: 2px;
}
#special .slide_cts h3 {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 0;
  margin: 0 0 10px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#special .slide_cts dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
#special .slide_cts dl dt {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  background: #F3F3F3;
  color: #505C7C;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 700;
  border-bottom: 1px solid #F3F3F3;
}
#special .slide_cts dl dd {
  width: calc(100% - 80px);
  padding: 3px 0 3px 10px;
  border-bottom: 1px solid #F3F3F3;
}
#special .slide_cts a.arrow {
  display: block;
  width: fit-content;
  margin: 30px 0 0 auto;
}
#special .carousel {
  width: calc(100% + 20px);
  margin: 0 -10px;
  overflow: hidden;
}
#special .carousel.is-static {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 18px;
  overflow: visible;
}
#special .slick-list {
  overflow: visible;
}
#special .slick-track {
  display: flex;
  gap: 20px;
}
#special .slick-slide {
  height: auto !important;
}
#special .slick-dots {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 26px 0 0 0;
}
#special .slick-dots li {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
}
#special .slick-dots button {
  display: none;
}
#special .slick-dots li {
  position: relative;
}
#special .slick-dots li:before {
  content: '';
  display: block;
  border: none;
  background: var(--subColor);
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: 1px solid var(--mainColor);
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 1!important;
  transition: .3s;
  position: absolute;
  left: 0;
  top: 0;
}
#special .slick-dots li.slick-active:before {
  background: var(--mainColor);
}
@media(hover: hover) {
  #special .slick-dots li:hover:before {
    background: var(--mainColor);
  }
}
#special .slide-arrow {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 32px;
  background: var(--mainColor);
  position: absolute;
  top: calc(50% - 15px);
  cursor: pointer;
  z-index: 5;
  transition: .3s;
}
#special .slide-arrow.prev-arrow {
  left: 16px;
  transform: translate(-50%,-50%);
}
#special .slide-arrow.next-arrow {
  right: 16px;
  transform: translate(50%,-50%);
}
#special .slide-arrow:before {
  content: '';
  width: 10px;
  height: 10px;
  background: url(../images/icon-arrow-slider.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
}
#special .slide-arrow.prev-arrow:before {
  left: 50%;
  transform: translate(-50%,-50%) rotate(180deg);
}
#special .slide-arrow.next-arrow:before {
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(hover: hover) {
  #special .slide-arrow.prev-arrow:hover {
    transform: translate(-50%,-50%) scale(1.1);
  }
  #special .slide-arrow.next-arrow:hover {
    transform: translate(50%,-50%) scale(1.1);
  }
  #special .slide-arrow.prev-arrow:hover:before {
    transform: translate(-50%,-50%) rotate(180deg) scale(1.1);
  }
  #special .slide-arrow.next-arrow:hover:before {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/*オーダーメイド転職事例*/
#example {
  background: #fff;
}
#example:before {
  content: '';
  width: 501px;
  height: 444px;
  background: url(../images/bgi-section-img02.png) no-repeat top left / contain;
  position: absolute;
  left: 0;
  top: -80px;
  pointer-events: none;
  z-index: 0;
}
#example:after {
  content: '';
  width: 761px;
  height: 597px;
  background: url(../images/bgi-section-img03.png) no-repeat bottom right / contain;
  position: absolute;
  right: 0;
  bottom: -280px;
  pointer-events: none;
  z-index: 0;
}
#example h2 {
  text-align: center;
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 60px;
}
#example .more_box {
  width: 100%;
  text-align: center;
  margin: 60px 0 9px 0;
  position: relative;
  z-index: 4;
}
#example .more_box a {
  color: var(--txtColor);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
}
#example .more_box a:before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--txtColor);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#example .more_box a:after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--linkColor);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: .3s;
}
#example .more_box a:hover {
  opacity: 1;
}
@media(hover: hover) {
  #example .more_box a:hover:after {
    width: 100%;
  }
}
#example .more_box a span {
  padding: 0 20px 0 0;
  position: relative;
}
#example .more_box a span:after {
  content: '';
  width: 12px;
  height: 9px;
  background: url(../images/icon-arrow-blk.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#example .grid {
  width: 100%;
  position: relative;
  z-index: 4;
}
#example .grid-item {
  width: calc((100% - 24px * 2) / 3);
  background: var(--subColor);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
}
#example .grid-item:last-of-type {
  margin: 0;
}
#example .grid-item .label {
  background: var(--mainColor);
  color: #fff;
  min-width: 145px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  border-radius: 5px 0 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
#example .grid-item .image {
  width: 100%;
  margin: 0;
  border-radius: 5px 5px 0 0;
  height: 140px;
  overflow: hidden;
}
#example .grid-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#example .grid-item .inner {
  width: 100%;
  padding: 20px 15px;
  margin: 0;
}
#example .grid-item .inner .cts_box {
  background: #fff;
  width: 100%;
  padding: 24px;
  margin: 0;
  border-radius: 5px;
}
#example .grid-item .inner .cts_box + .cts_box {
  margin-top: 18px;
}
#example .grid-item .inner .cts_box h3 {
  background: var(--mainColor);
  color: #fff;
  font-size: 14px;
  line-height: 1.2145em;
  font-weight: 400;
  margin-bottom: 15px;
  padding: 4px 18px;
  border-radius: 50px;
  width: auto;
  display: inline-block;
}
#example .grid-item .inner .cts_box h4 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}
#example .grid-item .inner .cts_box .details {
  margin-top: 10px;
  gap: 10px 15px;
  align-items: center;
}
#example .grid-item .inner .cts_box .details li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 4px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
}
#example .grid-item .inner .cts_box .details li h5 {
  background: var(--subColor);
  color: var(--mainColor);
  padding: 2px 4px;
  font-weight: 700;
  width: auto;
  min-width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
}
#example .grid-item .inner .cts_box.order h3 {
  background: var(--linkColor);
}
#example .grid-item .inner .cts_box.order .details li h5 {
  background: var(--subPink);
  color: var(--linkColor);
}
#example .grid-item .inner a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 15px 0 0 auto;
  padding: 0;
  position: relative;
}

/* ===================================
about page
=================================== */
#about .kv {
  width: 100%;
  max-width: 1368px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#about .kv .inner {
  width: 100%;
  max-width: var(--ctsWidth);
  height: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  margin: 0 auto;
}
#about .kv .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
#about .kv .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#about .kv .kv_cts_box {
  width: 100%;
  max-width: 610px;
  height: 100%;
  background: rgba(255,255,255,.8);
  padding: 75px 45px 56px;
  margin: 0;
  position: relative;
}
#about .kv .kv_cts_box .page_title {
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 20px;
}
#about .kv .kv_cts_box p {
  font-size: 16px;
  line-height: 2em;
}
#about .kv .kv_cts_box .logo {
  margin: 25px 0 0 0;
  justify-content: flex-start;
  align-items: center;
  gap: 15px 45px;
}
#about .copy {
  color: var(--mainColor);
  font-size: 28px;
  line-height: 2.2em;
  font-weight: 700;
  text-align: center;
}
#about .copy img {
  vertical-align: middle;
  display: inline-block;
  margin: 0 8px 10px 0;
}
#about .copy span.tape {
  background: var(--mainColor);
  color: #fff;
  font-size: 34px;
  padding: 0 .8em;
  margin: 0 0 0 10px;
}
#about .copy + .btnBox {
  margin-top: 50px;
}
#about #point .wrap {
  padding-top: 50px;
  padding-bottom: 40px;
}
#about .point {
  justify-content: center;
  gap: 64px;
  margin: 80px 0 0;
}
#about #point .point_box {
  width: calc((100% - 64px*3)/4);
  min-width: 220px;
}
#about #point .point_box h3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  color: var(--mainColor);
  font-size: 22px;
  line-height: 1.3em;
  font-weight: 700;
  padding: 0 0 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid var(--mainColor);
}
#about #point .point_box h3 span {
  width: 64px;
  padding-top: 5px;
}
#about #point .point_box p {
  font-size: 16px;
  line-height: 1.8em;
  text-align: justify;
}

#about #brfore-after .wrap {
  padding-top: 40px;
  padding-bottom: 50px;
}
#about #brfore-after .head {
  width: 100%;
  margin: 0 0 28px;
  justify-content: center;
  align-items: flex-end;
}
#about #brfore-after .head > h3 {
  width: 50%;
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
}
#about #brfore-after .head > h3 span {
  display: block;
  margin: 10px 0 0 0;
}
#about #brfore-after .head .before {
  color: #608CB2;
  font-weight: 500;
}
#about #brfore-after .head .after {
  color: var(--linkColor);
  font-weight: 700;
}
#about #brfore-after dl {
  background: #fff;
  justify-content: flex-start;
  font-size: 18px;
  line-height: 1.5em;
  border-radius: 5px;
  overflow: hidden;
}
#about #brfore-after dl + dl {
  margin-top: 20px;
}
#about #brfore-after dl dt {
  width: calc(50% - 32px);
  display: flex;
  align-items: center;
  min-height: 75px;
  background: #608CB2;
  color: #fff;
  padding: 10px 30px;
  position: relative;
}
#about #brfore-after dl dt:after {
  content: '';
  width: 32px;
  height: 100%;
  background: #608CB2;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: -32px;
}
#about #brfore-after dl dt h4 {
  font-weight: 300;
}
#about #brfore-after dl dd {
  width: calc(50% + 32px);
  display: flex;
  align-items: center;
  min-height: 75px;
  padding: 10px 30px 10px 62px;
}
#about #brfore-after dl dd p {
  font-weight: 700;
  padding: 0 0 0 30px;
  position: relative;
}
#about #brfore-after dl dd p:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../images/icon-check.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#about #career_consultant {
  position: relative;
}
#about #career_consultant:before {
  content: '';
  width: 480px;
  height: 340px;
  background: url(../images/about-career_consultant_bgi.png) no-repeat right top / contain;
  position: absolute;
  right: 0;
  top: -30px;
  pointer-events: none;
}
#about #career_consultant .wrap {
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
#about #career_consultant .en_ttl {
  width: 100%;
  display: block;
  text-align: center;
  color: #D8E5F9;
  font-size: 38px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 0;
  margin: 0 0 50px;
}
#about #career_consultant .consultant_list {
  justify-content: center;
  gap: 64px;
}
#about #career_consultant .consultant_list .consultant {
  width: calc((100% - 64px)/2);
  min-width: 560px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#about #career_consultant .consultant_list .consultant .img {
  width: 242px;
}
#about #career_consultant .consultant_list .consultant .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#about #career_consultant .consultant_list .consultant .cts {
  width: calc(100% - 242px);
  padding: 46px 42px;
}
#about #career_consultant .consultant_list .consultant .cts h3 {
  color: var(--mainColor);
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 20px;
}
#about #career_consultant .consultant_list .consultant .cts p {
  text-align: justify;
}

#about #flow {
  background: #fff;
  position: relative;
}
#about #flow:before {
  content: '';
  width: 582px;
  height: 378px;
  background: url(../images/about-flow_bgi.png) no-repeat left top / contain;
  position: absolute;
  left: 0;
  top: -140px;
  pointer-events: none;
}
#about #flow .wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
#about #flow .cts_ttl {
  margin-bottom: 50px;
}
#about #flow .flow_list {
  justify-content: flex-start;
  gap: 40px;
}
#about #flow .flow_list .flow {
  width: calc((100% - 40px*4)/5);
  min-width: 200px;
}
#about #flow .flow_list .flow .head {
  width: 100%;
  background: var(--subColor);
  padding: 20px 0 20px 20px;
  position: relative;
}
#about #flow .flow_list .flow .head:after {
  content: '';
  width: 40px;
  height: 100%;
  background: var(--subColor);
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: -40px;
}
#about #flow .flow_list .flow:last-of-type .head:after {
  content: none;
}
#about #flow .flow_list .flow .head .step {
  color: var(--linkColor);
  font-size: 30px;
  line-height: 1em;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}
#about #flow .flow_list .flow .head .step span {
  font-size: 16px;
  margin-top: 3px;
}
#about #flow .flow_list .flow .head h3 {
  color: var(--mainColor);
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 700;
}
#about #flow .flow_list .flow .img {
  display: flex;
  width: 100%;
  height: 170px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#about #flow .flow_list .flow p {
  font-weight: 500;
  text-align: justify;
}
#about #flow .caution_box {
  width: 100%;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  padding: 30px 35px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  margin-top: 80px;
}
#about #flow .caution_box h4 {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 25px;
}
#about #flow .caution_box h4 {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 700;
  margin: 0 0 25px;
}
#about #flow .caution_box ul.dotted {
  padding: 0 0 0 2em;
}
#about #flow .caution_box + .btnBox {
  margin-top: 40px;
  flex-direction: column;
  gap: 40px;
}
#about #flow .caution_box + .btnBox .linkBtn.wht {
  max-width: fit-content;
  padding: 10px 50px;
}
#about #flow .caution_box + .btnBox .linkBtn.wht:before {
  background: #fff;
  border: 1px solid var(--mainColor);
}
#about #flow .caution_box + .btnBox .linkBtn.wht:after {
  border-color: var(--mainColor);
}
#about #voice {
  position: relative;
}
#about #voice:before {
  content: '';
  width: 772px;
  height: 597px;
  background: url(../images/about-voice_bgi.png) no-repeat right top / contain;
  position: absolute;
  right: 0;
  bottom: -250px;
  pointer-events: none;
}
#about #voice .wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
#about #voice .cts_ttl {
  margin-bottom: 90px;
}
#about #voice .voice_list {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 100px 60px;
}
#about #voice .voice_list .voice {
  width: calc((100% - 60px*2)/3);
  min-width: 300px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  padding: 25px 30px 40px;
  filter: drop-shadow(10px 10px 0 rgba(32,86,143,.2));
}
#about #voice .voice_list .voice:after {
  content: '';
  width: 34px;
  height: 30px;
  background: url(../images/about-voice_fukidashi01.png) no-repeat center / contain;
  position: absolute;
  left: 80px;
  bottom: -30px;
}
#about #voice .voice_list .voice:nth-of-type(1),
#about #voice .voice_list .voice:nth-of-type(3),
#about #voice .voice_list .voice:nth-of-type(4),
#about #voice .voice_list .voice:nth-of-type(6) {
  margin-top: -50px;
}
#about #voice .voice_list .voice:nth-of-type(2):after {
  background: url(../images/about-voice_fukidashi02.png) no-repeat center / contain;
}
#about #voice .voice_list .voice:nth-of-type(4):after,
#about #voice .voice_list .voice:nth-of-type(6):after {
  background: url(../images/about-voice_fukidashi02.png) no-repeat center / contain;
  left: unset;
  right: 80px;
}
#about #voice .voice_list .voice .head {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 0 10px;
}
#about #voice .voice_list .voice .head .img {
  width: 104px;
  position: absolute;
  right: -25px;
  bottom: 0;
}
#about #voice .voice_list .voice .head h3 {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0;
  padding: 0 80px 0 0;
}
#about #voice .voice_list .voice p {
  text-align: justify;
  font-weight: 500;
}
#about #voice .voice_list .voice p.name {
  margin-top: 10px;
  color: #505C7C;
  font-size: 14px;
  font-weight: 400;
}
#about #voice .btnBox {
  margin-top: 100px;
}

/* ===================================
faq page
=================================== */
#faq {
  position: relative;
}
#faq:before {
  content: '';
  width: 501px;
  height: 444px;
  background: url(../images/faq-bgi_top.png) no-repeat top right / contain;
  position: absolute;
  right: 0;
  top: -80px;
  pointer-events: none;
  z-index: 0;
}
#faq:after {
  content: '';
  width: 761px;
  height: 597px;
  background: url(../images/bgi-section-img03.png) no-repeat bottom right / contain;
  position: absolute;
  right: 0;
  bottom: -280px;
  pointer-events: none;
  z-index: 0;
}
#faq .wrap {
  position: relative;
  z-index: 1;
}
#faq .head_box {
  display: block;
  width: 100%;
  margin: 0 0 40px;
}
#faq .title {
  text-align: center;
  color: var(--mainColor);
  font-size: 34px;
  line-height: 1.5em;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
#faq .title span {
  padding: 0 0 15px;
  position: relative;
}
#faq .title span:after {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--mainColor);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
}
#faq p.lead {
  text-align: center;
  color: var(--txtColor);
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  padding: 0;
  margin: 40px 0 0 0;
}
#faq .sub_menu {
  max-width: 920px;
  margin: 40px auto 0;
  justify-content: flex-start;
  gap: 30px 50px;
}
#faq .sub_menu li {
  width: calc((100% - 50px*2)/3);
}
#faq .sub_menu a {
  display: flex;
  height: 100%;
  align-items: center;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--mainColor);
  position: relative;
}
#faq .sub_menu a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%) rotate(45deg);
}
#faq .cts_block {
  display: inline-block;
  width: 100%;
  margin: 0 0 40px;
  padding: 40px 0 0 0;
}
#faq .cts_block:last-of-type {
  margin: 0;
}
#faq .cts_block h2 {
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 40px;
}
#faq .cts_block .btnBox {
  margin: 40px 0 0 0;
}
#faq .cts_block .faq_box {
  background: #fff;
  width: 100%;
  border-radius: 5px;
}
#faq .cts_block .faq_box + .faq_box {
  margin-top: 20px;
}
#faq .cts_block .faq_box dt {
  width: 100%;
  padding: 20px 56px 20px 56px;
  cursor: pointer;
  position: relative;
}
#faq .cts_block .faq_box dt h3 {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
}
#faq .cts_block .faq_box dt span {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0,-50%);
}
#faq .cts_block .faq_box dt span:before,
#faq .cts_block .faq_box dt span:after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--mainColor);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
#faq .cts_block .faq_box dt span:after {
  transform: translate(-50%,-50%) rotate(90deg);
}
#faq .cts_block .faq_box dt.open span:after {
  transform: translate(-50%,-50%) rotate(180deg);
}
#faq .cts_block .faq_box dd {
  width: 100%;
  padding: 40px 56px;
  border-top: 1px solid var(--subColor);
}
#faq .cts_block .faq_box dd p {
  width: 100%;
  color: var(--txtColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
}
#faq .btnBox.others {
  margin: 200px 0 0 0;
  gap: 20px 40px;
}


/* ===================================
members page
=================================== */
#members {
  position: relative;
}
#members:before {
  content: '';
  width: 501px;
  height: 444px;
  background: url(../images/members-bgi.png) no-repeat top right / contain;
  position: absolute;
  right: 0;
  top: -100px;
  pointer-events: none;
  z-index: 0;
}
#members .wrap {
  padding-top: 100px;
  padding-bottom: 160px;
}
#members .cts_ttl {
  margin-bottom: 40px;
}
#members .copy {
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  letter-spacing: .08em;
}
#members .progressBox {
  justify-content: center;
  gap: 40px;
  margin: 40px 0 30px;
}
#members .progressBox .progress-step {
  width: 144px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  position: relative;
}
#members .progressBox .progress-step:before,
#members .progressBox .progress-step:after {
  content: '';
  width: calc(100% + 40px);
  height: 1px;
  background: #D5D5D5;
  position: absolute;
  top: 18px;
  right: 50%;
  z-index: -1;
}
#members .progressBox .progress-step:after {
  background: var(--mainColor);
  transform: scale(0,0);
  transform-origin: left center;
  transition: .3s;
}
#members .progressBox .progress-step.active:after {
  transform: scale(1, 1);
}
#members .progressBox .progress-step:first-child:before,
#members .progressBox .progress-step:first-child:after {
  content: none;
}
#members .progressBox .progress-step .num {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  background: #D5D5D5;
  margin: 0 auto 10px;
}
#members .progressBox .progress-step.active {
  color: var(--mainColor);
  font-weight: 700;
}
#members .progressBox .progress-step.active .num {
  background: var(--mainColor);
}
#members .formBox {
  width: 100%;
  max-width: 550px;
  background: #fff;
  border: 2px solid var(--mainColor);
  border-radius: 10px;
  padding: 40px 30px;
  margin: 0 auto;
}
#members .formBox.error {
  margin-top: 40px;
}
#members .formBox.complete h2 {
  text-align: center;
  color: var(--mainColor);
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 40px;
}
#members .formBox.complete p,
#members .formBox.error p {
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
}
#members .formBox.complete .btnBox,
#members .formBox.error .btnBox {
  margin-top: 40px;
}
#members .formBox.complete .btnBox .linkBtn.pink,
#members .formBox.error .btnBox .linkBtn.pink {
  font-size: 16px;
  padding: 10px 50px;
}
/*フォーム*/
#members .formBox .form-step {
  display: none;
}
#members .formBox .form-step.active {
  display: block;
}
#members .formBox .input_set {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
#members .formBox .input_set + .input_set {
  margin-top: 30px;
}
#members .formBox .input_set .label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 10px;
}
#members .formBox .input_set .label .required {
  display: inline-block;
  color: #fff;
  background: var(--linkColor);
  font-size: 12px;
  line-height: 1em;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 25px;
}
#members .formBox .btn_set {
  margin: 40px 0 0 0;
  justify-content: space-between;
}
#members .formBox .btn_set .btn {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  width: 60px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--txtColor);
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
}
#members .formBox .btn_set .btn.prev {
  background: #fff;
  color: #ACACAC;
  border-color: #ACACAC;
}
#members .formBox .btn_set .btn.next,
#members .formBox .btn_set .btn.submit {
  background: var(--mainColor);
  color: #fff;
  border-color: var(--mainColor);
}
#members .formBox .btn_set .btn:hover {
  opacity: .8;
}
#members .formBox .btn_set .btn.disabled {
  opacity: 0;
  pointer-events: none;
}
#members .formBox .btn_set .btn:only-child {
  margin-left: auto;
}
#members form .pp_box {
  width: 100%;
  height: auto;
  max-height: 146px;
  overflow: auto;
  background: #F3F3F3;
  padding: 10px 16px;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 0 0 12px;
}
#members form .pp_box p {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 500;
}
#members .formBox .column {
  gap: 16px;
  align-items: flex-start;
  flex-wrap: nowrap;
}
#members .formBox .column + .column {
  margin-top: 10px;
}
#members .formBox .column > div.input_group {
  width: calc(50% - 8px);
}
#members .formBox .column > div.col {
  width: 100%;
}
#members .formBox .column .input_group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#members .formBox .column .input_group span {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  white-space: nowrap;
}
/* #members form input:focus,
#members form select:focus {
  outline: none;
  border-color: var(--mainColor);
} */
#members form input[type="text"],
#members form input[type="email"],
#members form input[type="tel"],
#members form input[type="password"],
#members form textarea {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  border: 1px solid #ACACAC;
  background: #fff;
  border-radius: 5px;
  padding: 7px 15px;
  display: inline-block;
}
#members form textarea {
  min-height: 200px;
}
#members form ::placeholder {
  color: #ACACAC;
}
#members form .select_box {
  width: 100%;
  height: 40px;
  padding: 0;
  position: relative;
  border: 1px solid #ACACAC;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
#members form .select_box:before {
  content: '';
  width: 12px;
  height: 7px;
  background: url(../images/icon-select_arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#members form .select_box select::-ms-expand {
  display: none;
}
#members form .select_box select {
  border: none;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 2px 30px 2px 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  color: var(--txtColor);
  opacity: 1;
}
#members form label.checkbox input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#members form label.checkbox {
  width: auto;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  padding: 0 0 0 34px;
  position: relative;
  cursor: pointer;
}
#members form label.checkbox:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid var(--mainColor);
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  transition: .3s;
  z-index: 2;
}
#members form label.checkbox:after {
  content: '';
  width: 11px;
  height: 9px;
  background: url(../images/icon-checkbox.svg) no-repeat center / contain;
  position: absolute;
  left: 6px;
  top: calc(50% - 4px);
  opacity: 0;
  transition: .3s;
  z-index: 3;
}
#members form label.checkbox:has(input:checked):before {
  background-color: var(--mainColor);
}
#members form label.checkbox:has(input:checked):after {
  opacity: 1;
}
#members form label.checkbox:has(input:focus-visible):before {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}
#members form .radio_list {
  justify-content: flex-start;
  align-items: center;
  gap: 20px 30px;
}
#members form label.radio input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#members form label.radio {
  width: auto;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 0 0 0 25px;
  position: relative;
  cursor: pointer;
}
#members form label.radio:before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #ACACAC;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  transition: .3s;
  z-index: 2;
}
#members form label.radio:after {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background: var(--mainColor);
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translate(0,-50%);
  opacity: 0;
  transition: .3s;
  z-index: 3;
}
#members form label.radio:has(input:checked):before {
  border-color: var(--mainColor);
}
#members form label.radio:has(input:checked):after {
  opacity: 1;
}
#members form label.radio:has(input:focus-visible):before {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}
#members form #submit:disabled,
#members form #submit {
  background: #ACACAC;
  color: #fff;
  border-color: #ACACAC;
  pointer-events: none;
  cursor: not-allowed;
}
#members form #submit.active {
  opacity: 1;
  background: var(--mainColor);
  border-color: var(--mainColor);
  pointer-events: auto;
  cursor: pointer;
}
#members form #submit.active:hover {
  opacity: .8;
}

/* espar form */
.espf-m-success,
.espf-m-failure,
.espf-m-token-expire,
.espf-m-token-error,
.espf-m-token-invalid,
.espf-m-token-forbidden,
.espf-m-rate-limit,
.espf-m-mail-error,
.espf-m-unknown-error,
.espf-m-submit-denied,
.error-txt,
.email-error-txt,
.tel-error-txt {
  display: none;
}
.error-txt,
.email-error-txt,
.tel-error-txt {
  color: red;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
}
.error-txt span {
  display: block;
}



/* ========================================================================================================
   1239px以下
   ========================================================================================================*/
@media screen and (max-width: 1239px) {
  #mainvisual h2 {
    margin-bottom: 40px;
  }
}

/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  #mainvisual {
    margin-top: 60px;
    max-width: inherit;
    max-height: inherit;
    padding: 0;
  }
  #mainvisual .mv_cts_wrap {
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  #mainvisual .mv_cts {
    max-width: 100%;
    position: relative;
    left: 0;
    top: unset;
    transform: translate(0, 0);
  }
  #mainvisual .mv_cts h2 {
    display: none;
  }
  #mainvisual .mv_img h2 {
    display: block;
  }
  #mainvisual .mv_img {
    position: relative;
    height: 217px;
    border-radius: 0;
    overflow: hidden;
  }
  #mainvisual h2 {
    font-size: 20px;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    text-align: left;
    padding: 0 20px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box.place,
  #mainvisual .mv_tab_cts .form_box .select-box.type,
  #mainvisual .mv_tab_cts .form_box .select-box.salary,
  #mainvisual .mv_tab_cts .form_box .select-box.worries {
    width: 100%;
  }
  #mainvisual .mv_tab_cts .form_box .search_btn {
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin-top: 15px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box {
    height: 50px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box label,
  #mainvisual .mv_tab_cts .form_box .select-box select {
    font-size: 16px;
  }
  #mainvisual .mv_tab_cts .recruit .form_wrap {
    margin-top: 0;
  }
  #mainvisual .mv_tab_cts .results {
    text-align: center;
    margin-top: 20px;
  }
  #mainvisual .mv_tab_cts .form_box {
    gap: 5px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box select {
    padding: 5px 35px 5px 10px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box label {
    padding: 5px 35px;
  }
  #special .carousel.is-static .slide_cts {
    width: calc((100% - 20px*2)/3);
  }

  #about .kv .kv_cts_box br.pc {
    display: none!important;
  }
  #about .kv .image {
    position: relative;
  }
  #about .kv .image img {
    position: relative;
    height: auto;
  }
  #about .kv .kv_cts_box {
    max-width: 100%;
    position: relative;
    margin-top: -35%;
  }
  #about .kv .kv_cts_box .logo {
    justify-content: center;
  }
  #about .copy br.sp.first {
    display: block!important;
  }


}
/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #mainvisual .mv_tab_cts .caution {
    font-size: 14px;
    margin: 0 0 10px;
  }
  #mainvisual .mv_tab_cts .panel-area {
    padding: 29px 20px 30px;
    border-radius: 0 0 10px 10px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box .label {
    font-size: 14px;
    left: 7px;
    padding: 0 0 0 22px;
  }
  #mainvisual .mv_tab_cts .form_box .select-box .label:before {
    top: 50%;
  }
  #special:before {
    width: 80%;
    top: 40%;
  }
  #special .wrap {
    padding-top: 60px;
  }
  #special h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  #special .cts_block + .cts_block {
    margin-top: 50px;
  }
  #special .tab-area .tab {
    font-size: 16px;
  }
  #special .child-tab-area .child-tab {
    font-size: 16px;
    padding: 10px 13px;
  }
  #special .slide_cts dl dd {
    font-size: 14px;
  }
  #special .carousel.is-static .slide_cts {
    width: calc((100% - 20px)/2);
  }
  #special .child-panel .no_data {
    padding: 40px 10px 0;
  }
  #special .child-panel .no_data_btn {
    width: 270px;
    margin-top: 40px;
    font-size: 18px;
  }
  #example:before {
    width: 60%;
    background: url(../images/bgi-section-img02_sp.png) no-repeat top left / contain;
    top: -70px;
  }
  #example:after {
    width: 70%;
    background: url(../images/bgi-section-img03_sp.png) no-repeat bottom left / contain;
    right: unset;
    left: 0;
    bottom: -120px;
  }
  #example h2 {
    font-size: 22px;
    margin: 0 0 40px;
  }
  #example .grid-item {
    width: calc((100% - 24px)/2);
    margin: 0 0 30px;
  }
  #example .grid-item .label {
    min-width: 135px;
    min-height: 32px;
    padding: 8px 18px;
    font-size: 16px;
    line-height: 1em;
  }
  #example .grid-item .inner .cts_box {
    padding: 24px 16px;
  }
  #example .grid-item .inner .cts_box .details li h5 {
    font-size: 12px;
  }
  #example .more_box a span:after {
    width: 16px;
    height: 12px;
  }
  #about #point .point_box,
  #about #career_consultant .consultant_list .consultant,
  #about #career_consultant .consultant_list .consultant .img,
  #about #career_consultant .consultant_list .consultant .cts,
  #about #flow .flow_list .flow,
  #about #voice .voice_list .voice {
    width: 100%;
  }
  #about .kv .kv_cts_box {
    padding: 30px 20px;
  }
  #about .kv .kv_cts_box .page_title {
    font-size: 22px;
  }
  #about #point .wrap {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  #about .copy {
    font-size: 22px;
    text-align: left;
  }
  #about .copy span.tape {
    font-size: 34px;
    padding: 0 .5em;
    margin: 0 0 0 0;
    display: inline;
  }
  #about .copy span.tape span {
    display: inline-block;
    width: .5em;
  }
  #about .copy + .btnBox {
    margin-top: 40px;
  }
  #about .copy img {
    vertical-align: top;
    margin: 0 8px 5px 0;
  }
  #about .point {
    gap: 40px;
    margin: 60px 0 0;
  }
  #about #point .point_box h3 {
    font-size: 22px;
    align-items: center;
  }
  #about #brfore-after .wrap {
    padding-top: 25px;
    padding-bottom: 30px;
  }
  #about #brfore-after .head {
    margin: 0 0 20px;
  }
  #about #brfore-after .head > h3 {
    font-size: 15px;
  }
  #about #brfore-after .head > h3 img {
    width: auto;
    max-height: 18px;
  }
  #about #brfore-after .head .before {
    text-align: left;
    width: 45%;
  }
  #about #brfore-after .head .after {
    text-align: right;
    width: 55%;
  }
  #about #brfore-after dl {
    font-size: 13px;
    gap: 25px;
  }
  #about #brfore-after dl + dl {
    margin-top: 10px;
  }
  #about #brfore-after dl dt {
    width: calc(42% - 25px);
    padding: 10px 5px 10px 15px;
    min-height: 108px;
  }
  #about #brfore-after dl dt:after {
    width: 25px;
    right: 0;
    transform: translateX(99.5%);
  }
  #about #brfore-after dl dd {
    width: 58%;
    padding: 10px 15px 10px 5px;
    min-height: 108px;
  }
  #about #brfore-after dl dd p {
    padding: 0 0 0 25px;
  }
  #about #career_consultant:before {
    width: 55%;
    height: 340px;
    background: url(../images/about-career_consultant_bgi_sp.png) no-repeat right top / contain;
    top: -50px;
  }
  #about #career_consultant .wrap {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  #about #career_consultant .en_ttl {
    font-size: 30px;
    margin: 0 0 40px;
  }
  #about #career_consultant .consultant_list .consultant {
    min-width: inherit;
  }
  #about #career_consultant .consultant_list .consultant .cts {
    padding: 34px 30px;
  }
  #about #career_consultant .consultant_list .consultant .cts h3 {
    font-size: 18px;
    margin: 0 0 12px;
  }
  #about #career_consultant .consultant_list {
    gap: 30px;
  }
  #about #flow:before {
    width: 45%;
    height: 378px;
    background: url(../images/about-flow_bgi_sp.png) no-repeat left top / contain;
    top: -65px;
  }
  #about #flow .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #about #flow .flow_list .flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 13px;
  }
  #about #flow .flow_list .flow .head {
    padding: 14px 35px 0;
    margin-bottom: 30px;
  }
  #about #flow .flow_list .flow .head:after {
    width: 100%;
    height: 30px;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
    top: unset;
    right: 0;
    bottom: -30px;
  }
  #about #flow .flow_list .flow:last-of-type .head:after {
    content: '';
  }
  #about #flow .flow_list .flow .head .step {
    font-size: 20px;
    margin: 0 0 5px;
  }
  #about #flow .flow_list .flow .head .step span {
    font-size: 14px;
    margin-top: 2px;
  }
  #about #flow .flow_list .flow .head h3 {
    font-size: 18px;
  }
  #about #flow .flow_list .flow .img {
    width: 77px;
    height: auto;
    padding: 0;
  }
  #about #flow .flow_list .flow:nth-of-type(1) .img img {
    max-width: 56px;
  }
  #about #flow .flow_list .flow:nth-of-type(2) .img img,
  #about #flow .flow_list .flow:nth-of-type(4) .img img {
    max-width: 56px;
  }
  #about #flow .flow_list .flow p {
    font-weight: 500;
    text-align: justify;
    width: calc(100% - 90px);
  }
  #about #flow .caution_box {
    padding: 30px 20px;
    margin-top: 40px;
  }
  #about #flow .caution_box ul.dotted {
    padding: 0;
  }
  #about #flow .caution_box h4 {
    margin: 0 0 20px;
  }
  #about #flow .caution_box + .btnBox {
    gap: 20px;
  }
  #about #voice:before {
    width: 50%;
    height: 300px;
    background: url(../images/about-voice_bgi_sp.png) no-repeat right bottom / contain;
    bottom: -70px;
  }
  #about #voice .wrap {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  #about #voice .cts_ttl {
    margin-bottom: 30px;
  }
  #about #voice .voice_list .voice:nth-of-type(1),
  #about #voice .voice_list .voice:nth-of-type(3),
  #about #voice .voice_list .voice:nth-of-type(4),
  #about #voice .voice_list .voice:nth-of-type(6) {
    margin-top: 0;
  }
  #about #voice .voice_list .voice {
    padding: 33px 32px;
  }
  #about #voice .voice_list .voice .head .img {
    width: 100px;
    right: -25px;
  }
  #about #voice .voice_list .voice .head h3 {
    padding: 0 60px 0 0;
  }
  #about #voice .voice_list {
    gap: 65px 60px;
  }
  #about #voice .btnBox {
    margin-top: 70px;
  }
  #faq:before {
    width: 65%;
    height: 300px;
    background: url(../images/faq-bgi_top_sp.png) no-repeat top right / contain;
    top: -25px;
  }
  #faq:after {
    width: 50%;
    height: 300px;
    background: url(../images/faq-bgi_btm_sp.png) no-repeat bottom right / contain;
    bottom: -30px;
  }
  #faq .head_box {
    margin: 0 0 25px;
  }
  #faq .title {
    font-size: 26px;
  }
  #faq .sub_menu {
    margin: 30px auto 0;
    gap: 13px 25px;
  }
  #faq .sub_menu li {
    width: calc((100% - 25px)/2);
  }
  #faq .sub_menu a {
    font-size: 16px;
  }
  #faq .cts_block {
    margin: 0 0 25px;
    padding: 25px 0 0 0;
  }
  #faq .cts_block h2 {
    font-size: 22px;
    margin: 0 0 25px;
  }
  #faq .cts_block .faq_box + .faq_box {
    margin-top: 10px;
  }
  #faq .cts_block .btnBox {
    margin: 30px 0 0 0;
  }
  #faq .cts_block .faq_box dt {
    padding: 15px 42px 15px 28px;
  }
  #faq .cts_block .faq_box dt span {
    width: 16px;
    height: 16px;
  }
  #faq .cts_block .faq_box dd {
    padding: 30px;
  }
  #faq .btnBox.others {
    display: none;
  }
  #members .wrap {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  #members .cts_ttl {
    margin-bottom: 30px;
  }
  #members:before {
    content: '';
    width: 60%;
    height: 300px;
    background: url(../images/members-bgi_sp.png) no-repeat top right / contain;
    top: -20px;
  }
  #members .progressBox {
    gap: 0;
    margin: 30px 0 20px;
  }
  #members .progressBox .progress-step {
    width: calc(100% / 3);
    font-size: 14px;
    line-height: 1.3em;
  }
  #members .progressBox .progress-step:before,
  #members .progressBox .progress-step:after {
    width: 100%;
  }
  #members .progressBox .progress-step .num {
    font-size: 18px;
  }
  #members .formBox {
    padding: 24px 20px;
  }
  #members .formBox.complete {
    padding: 36px 20px;
  }
  #members .formBox.complete h2 {
    font-size: 18px;
    margin: 0 0 30px;
  }
  #members .formBox.complete .btnBox,
  #members .formBox.error .btnBox {
    margin-top: 30px;
  }
  #members .formBox.complete .btnBox .linkBtn.pink,
  #members .formBox.error .btnBox .linkBtn.pink {
    width: auto;
  }
  #members .formBox .input_set .label .required {
    font-size: 14px;
    font-weight: 400;
    padding: 6px 12px 8px;
  }
  #members .formBox .input_set + .input_set {
    margin-top: 25px;
  }
  #members .formBox .btn_set {
    margin: 24px 0 0 0;
  }
  #members .formBox .btn_set .btn {
    width: 76px;
    height: 42px;
  }
  #members form .pp_box {
    max-height: 290px;
  }
  #members .formBox .input_set .label {
    align-items: flex-start;
  }


}
/* ========================================================================================================
   559px以下
   ========================================================================================================*/
@media screen and (max-width: 559px) {
  #example .grid-item {
    width: 100%;
    margin: 0 0 30px;
  }
  #special {
    overflow: hidden;
  }
  #special .carousel {
    width: 100vw;
    margin: 0 -20px;
    padding-right: 18%;
    overflow: visible;
  }
  #special .carousel.is-static {
    padding-left: 20px;
  }
  #special .slick-dots {
    justify-content: flex-start;
    margin: 26px 0 0 10px;
  }
  #special .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
  #special .carousel.is-static .slide_cts {
    width: 100%;
  }
}
