@charset "UTF-8";

/* =======================================
			font
======================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;700&display=swap');

.font-style-ital {
  font-style: italic;
}

/* =======================================
			common
======================================= */
html {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "HiraKakuPro-W3", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Arial", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  min-width: 1280px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #1C1818;
}

html._modal, html._modal body {
  overflow: hidden;
}

._fix {
  /* height: 100%;
  min-height: auto; */
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* vue */
[v-cloak] {
  display: none !important;
}

/* pageAnchor */
._pageAnchorBase {
  position: relative;
}
._pageAnchor {
  position: absolute;
}

/* display */
.pc {
  display: block;
}
.sp {
  display: none;
}
.br-pc {
  display: block;
}
.br-sp {}

._no-display {
  display: none !important;
}

/* text */
.text-pc {
  display: inline;
}
.text-block {
  display: block;
}
.bold {
  font-weight: 700;
}

.text-link {
  text-decoration: underline;
}
.text-link--color-orange {
  color: #EC60B8;
}

.text-dot {
  display: block;
  position: relative;
  padding-left: 1em;
}
.text-dot::before {
  content: "・";
  position: absolute;
  left: 0;
}

.text-kome {
  position: relative;
  padding-left: 1em;
}
.text-kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

.text-square {
  position: relative;
  padding-left: 1em;
}
.text-square::before {
  content: "■";
  position: absolute;
  left: 0;
}

.text-double-circle {
  position: relative;
  padding-left: 1em;
}
.text-double-circle::before {
  content: "◎";
  position: absolute;
  left: 0;
}

/* a */
a {
  color: inherit;
}
a:hover,
button:hover {
  opacity: 0.7;
}

/* color */
.color-blue {
  color: #2D6DAE;
}
.color-black {
  color: #0A0A0A;
}
.color-white {
  color: #ffffff;
}
.color-gray {
  color: #CCCCCC;
}
.color-orange {
  color: #EC60B8;
}
.color-red {
  color: red;
}
.color-error {
  color: red;
}

/* bg */
.bg-gray {
  background-color: #F9F9F9;
}
.bg-gra-orange {
  background: transparent linear-gradient(90deg, rgba(232, 84, 0, 0.1) 0%, rgba(255, 177, 0, 0.1) 100%);
}

/* youbute movie */
.movie {
  position: relative;
  height: 100%;
  width: 100%;
}
.movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* google map */
.map {
  position: relative;
  height: 100%;
  width: 100%;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* mask */
.mask-global {
  display: none;
}
.mask-global--open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 23, 49, 0.73);
  z-index: 10;
}

/* shadow */
.box-shadow01 {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.box-shadow02 {
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1);
}
.box-shadow03 {
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
}

/* placeholder */
input::placeholder {
	color: rgba(28, 24, 24, 0.5);
  color:#808080;
}
/* 旧Edge対応 */
input::-ms-input-placeholder {
	color: rgba(28, 24, 24, 0.5);
  color:#808080;
}
/* IE対応 */
input:-ms-input-placeholder {
	color: rgba(28, 24, 24, 0.5);
  color:#808080;
}

/* =======================================
			logo
======================================= */
.logo {

}
.logo__link {
  display: block;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =======================================
			button
======================================= */
.button {
  position: relative;
  text-align: center;
  border-radius: 32px;
  cursor: pointer;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button--no-click {
  cursor: default;
}
.button--no-click:hover {
  opacity: 1 !important;
}
.button--tel {
  pointer-events: none;
}
.button--width-normal {
  min-width: 300px;
  padding: 20px;
}
.button--width-normal-triagle {
  width: 250px;
  padding: 20px;
}
.button--width-midlle {
  width: 320px;
  padding: 20px;
}
.button--width-midlle-job-detail {
  width: 320px;
  padding: 17px;
}
.button--color-grad {
  background: transparent linear-gradient(90deg,#E85400 0%, #FFB100 100%);
}
.button--color-black {
  background-color: #1C1818;
}
.button--color-gray {
  background-color: #CCCCCC;
}
.button--color-white {
  background-color: #FFF;
}
.button--color-orange {
  background-color: #E85400;
}
.button--bg-wedge-left-white {
  background-image: url("../images/wedge_left_white.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 8px auto;
}
.button--bg-triangle-right-white {
  background-image: url("../images/triangle_right_white.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 6px auto;
}
.button--triangle-right-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -3.5px;
  width: 6px;
  height: 7px;

  background-image: url("../images/triangle_right_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.button__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.135;
  color: #FFF;
}
.button__text--font-12 {
  font-size: 12px;
}
.button__text--font-13 {
  font-size: 13px;
}
.button__text--font-16 {
  font-size: 16px;
}
.button__text--color-black {
  color: #1C1818;
}
.button__text--color-white {
  color: #FFF;
}

.button__link {
  margin-top: 30px;
  cursor: pointer;
}
.button__text--icon-triangle-left-orange {
  position: relative;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 6px auto;
}
.button__text--icon-triangle-left-orange.lazyloaded {
  background-image: url("../images/triangle_left_pink.svg");
}

/* fovorite button */
._job-favorite-on {
  background-color: #FFEFF9 !important;
}

/* =======================================
			list
======================================= */
/* num list */
.num-list {
  counter-reset: num01Cnt;
}
.num-list__item {
  position: relative;
  padding-left: 1.5em;
}
.num-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: num01Cnt;
  content: counter(num01Cnt)".";
}

.num-brackets-list {
  counter-reset: num02Cnt;
}
.num-brackets-list__item {
  position: relative;
  padding-left: 2em;
}
.num-brackets-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: num02Cnt;
  content: "("counter(num02Cnt)")";
}

/* =======================================
			icon list
======================================= */
/* icon square list */
.icon-square-list {

}
.icon-square-list__wrap {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.icon-square-list__wrap--margin-5 {
  margin-top: -5px;
  margin-left: -5px;
}
.icon-square-list__wrap--margin-5 .icon-square-list__item {
  margin-top: 5px;
  margin-left: 5px;
}

/* icon ellipse list */
.icon-ellipse-list {

}
.icon-ellipse-list__wrap {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.icon-ellipse-list__wrap--line-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.icon-ellipse-list__wrap--margin-5 {
  margin-top: -5px;
  margin-left: -5px;
}
.icon-ellipse-list__wrap--margin-5 .icon-ellipse-list__item {
  margin-top: 5px;
  margin-left: 5px;
}
.icon-ellipse-list__wrap--margin-10 {
  margin-top: -10px;
  margin-left: -10px;
}
.icon-ellipse-list__wrap--margin-10 .icon-ellipse-list__item {
  margin-top: 10px;
  margin-left: 10px;
}

/* icon frame list */
.icon-frame-list {

}
.icon-frame-list__wrap {
  margin-top: -8px;
  margin-left: -8px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.icon-frame-list__item {
  margin-top: 8px;
  margin-left: 8px;
}

/* icon */
.icon {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.icon--border-radius {
  border-radius: 10px;
}

.icon--color-orange {
  background-color: #E68CD5;
}
.icon--color-pink {
  background-color: #E68CD5;
}
.icon--color-purple {
  background-color: #936FCE;
}
.icon--color-lightblue {
  background-color: #7CA8FC;
}
.icon__text {
  display: block;
  padding: 3px 7px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
}
.icon__text--font-10 {
  font-size: 10px;
}
.icon__text--font-11 {
  font-size: 11px;
}
.icon__text--font-12 {
  font-size: 12px;
}
.icon__text--font-13 {
  font-size: 13px;
}
.icon__text--border-frame {
  border: 1px solid #CCCCCC;
  padding: 5px 10px;
  color: #1C1818;
}

/* =======================================
			innner
======================================= */
.inner01 {
  margin: 0 auto;
  width: 1014px;
}

/* =======================================
			breadcrumb
======================================= */
.breadcrumb {
  background-color: #FAFAFA;
}
.breadcrumb__inner {
  padding: 12px 0;
}
.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  overflow-x: auto;
  overflow-y: hidden;
  word-break: keep-all;
  white-space: nowrap;

  line-height: 1;
}
.breadcrumb-list::-webkit-scrollbar-track {
  background-color: #F2F2F2;
  border-radius: 40px;
}
.breadcrumb-list::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
  border-radius: 40px;
}
.breadcrumb-list::-webkit-scrollbar {
  /* width: 6px; */
  height: 6px;
}
.breadcrumb-list__item {

}
.breadcrumb-list__item:nth-child(n+2) {
  padding-left: 20px;
	background-image: url("../images/wedge_right_black.svg");
	background-repeat: no-repeat;
	background-position: 8px center;
	background-size: 2px 4px;
}
.breadcrumb-list__link {

}
.breadcrumb-list__no-link {

}
.breadcrumb-list__text {
  font-size: 10px;
  line-height: 1.3;
}

/* =======================================
			frame box
======================================= */
.frame-box {

}
.frame-box__inner {

}
.frame-box__wrap {
  padding: 50px 40px;
  background-color: #FFF;
}
.frame-box__wrap--border-orange {
  border-radius: 10px;
  border: 2px solid #FFB100;
}
.frame-box__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.frame-box__title-middle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.frame-box__title + * {
  margin-top: 30px;
}
.frame-box__title-middle + * {
  margin-top: 30px;
}
.frame-box__desc {
  
}
.frame-box__text {
  line-height: 1.4;
}
.frame-box__text--align-center {
  text-align: center;
}
.frame-box__text--margin-bottom {
  margin-bottom: 30px;
}
.frame-box__text-box {
  margin: 10px auto 30px;
  width: 350px;
}
.frame-box__button {
  margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.frame-box__button .button:nth-child(n+2) {
  margin-left: 30px;
}
.frame-box__link {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.31;
}

/* =======================================
      main wrap
======================================= */
.main--padding-top {
  padding-top: 60px;
}
/* frame column wrap */
.main__frame-column-wrap {
  padding: 60px 0 100px;
}

/* one column wrap */
.main__one-column-wrap {
  padding: 40px 0 0px;
}
.main__one-column-wrap--job-details {

}

/* two column wrap */
.main__two-column-wrap {
  padding: 30px 0 70px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main__two-column-left {
  width:437px;
}
.main__two-column-right {
  width: 557px;
}

/* =======================================
			section table
======================================= */
.section-table {

}
.section-table__line {
  border-top: 1px solid #CCCCCC;
  padding: 15px 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-table__title {
  width: 100%;
}
.section-table__title-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.section-table__title-text--bold {
  font-weight: 700;
}
.section-table__desc {
  width: 100%;
  padding: 5px 0 0;
}
.section-table__desc-text {
  line-height: 1.6;
}
.section-table__icon-list {
  margin-top: -8px;
  margin-left: -8px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-table__icon-item {
  margin-top: 8px;
  margin-left: 8px;
  width: 75px;
  min-height: 75px;
  border: 1px solid #CCCCCC;
  padding: 2px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  /* -ms-flex-wrap: wrap;
  flex-wrap: wrap; */

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-table__icon-img {
  width: auto;
  height: 37px;
  object-fit: cover;
  margin-bottom: 5px;
}
.section-table__icon-label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

/* =======================================
			contents parts
======================================= */
.contents-parts {

}
.contents-parts__header {
  position: relative;
  text-align: center;
}
.contents-parts__title-jp {
  position: relative;
}
.contents-parts__title-jp--bg-line::before {
  position: absolute;
  left: 0;
  top: 15px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E85400;
}
.contents-parts__title-jp-text {
  position: relative;
  display: inline-block;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.06em;
}
.contents-parts__title-jp--bg-line .contents-parts__title-jp-text {
  padding: 0 70px;
  background-color: #FFF;
  z-index: 2;
}
.bg-gra-orange .contents-parts__title-jp--bg-line .contents-parts__title-jp-text {
  background-color: #FEF2E5;
}

/* =======================================
			header global
======================================= */
.header-global {
  /* position: fixed;
  top: 0; */
  position: relative;
  width: 100%;
  min-width: 1280px;
  background-color: #fff;
  z-index: 20;
}
.header-global::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, rgb(232, 84, 0) 0, rgb(255, 177, 0) 100%);
  z-index: 2;
}
.header-global::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background : -moz-linear-gradient(50% 0% -90deg,rgba(0, 0, 0, 0.16) 0%,rgba(0, 0, 0, 0.16) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(0, 0, 0, 1) ),color-stop(1,rgba(0, 0, 0, 0.16) ));
  background : -o-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  background : -ms-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#333333' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  opacity : 0.05;
  filter: alpha(opacity=3) progid:DXImageTransform.Microsoft.Alpha(opacity=3) progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333',endColorstr='#333333' , GradientType=0);
}
.header-global__inner {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  padding: 10px 40px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

  z-index: 1;
}

.header-global__left {
  width: 147px;
}
.header-global__right {

}
.header-global__logo {
  width: 100%;
  height: 50px;
}

.header-global__job-search-complex {

}

/* =======================================
			job search simple
======================================= */
/* job search simple */
.job-search-simple {

}
.job-search-simple__form {
  border-radius: 10px;
  background-color: #FFF;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-simple__input-wrap {
  width: 232px;
  padding: 15px 0 15px 20px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-simple__input-wrap:nth-child(n+2) {
  border-left: 1px solid #EAEAEA;
}
.job-search-simple__input-wrap--long {
  width: 413px;
}

.job-search-simple__icon {
  width: 20px;
  height: 20px;
  font-size: 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.job-search-simple__icon--pin.lazyloaded {
  background-image: url("../images/icon_pin_orange.svg");
  background-size: 16px 20px;
}
.job-search-simple__icon--bag.lazyloaded {
  background-image: url("../images/icon_bag_orange.svg");
  background-size: 20px 19px;
}

.job-search-simple__input-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.job-search-simple__select {
  width: calc(100% - 20px);
  padding: 8px 35px 8px 10px;
  font-weight: 700;
  line-height: 1.2;

  background-image: url("../images/wedge_down_orange.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 10px 5px;

  background-color: #FFF;
}
.job-search-simple__input {
  margin-left: 20px;
  width: 280px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  padding: 8px 15px;

  line-height: 1.2;
  background-color: #FFF;
}


/* placeholder */
input.job-search-simple__input::placeholder {
	color: rgba(28, 24, 24, 0.5);
}
/* 旧Edge対応 */
input.job-search-simple__input::-ms-input-placeholder {
	color: rgba(28, 24, 24, 0.5);
}
/* IE対応 */
input.job-search-simple__input:-ms-input-placeholder {
	color: rgba(28, 24, 24, 0.5);
}


.job-search-simple__error {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #FF2C2C;
}
.job-search-simple__button-wrap {
  width: 137px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-simple__button {
  width: 106px;
  border-radius: 19px;
  padding: 5px;
  
  text-align: center;
  background-color: #1C1818;
  cursor: pointer;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-simple__button-text {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
}

/* =======================================
			job-search-complex
======================================= */
/* job-search-complex */
.job-search-complex {

}
.job-search-complex__form {
  position: relative;
}
.job-search-complex__main {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__sub {
  position: absolute;
  left: -380px;
  bottom: -70px;
  width: 1014px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__input-wrap {
  width: 200px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__input-wrap:nth-child(n+2) {
  margin-left: 8px;
}
.job-search-complex__input-wrap--long {
  width: 200px;
}
.job-search-complex__input-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.job-search-complex__select {
  width: 100%;
  min-height: 40px;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  padding: 7px 35px 7px 45px;
  font-weight: 700;
  line-height: 1.5;
  color: #808080;
  background-color: #FFF;
}
.job-search-complex__select.selected {
  color: #1C1818;
}
.job-search-complex__select--pin {
  background-image: url("../images/icon_pin_orange.svg"),url("../images/wedge_down_orange.svg");
  background-repeat: no-repeat,no-repeat;
  background-position: 15px center,calc(100% - 20px) center;
  background-size: 16px 20px,10px 5px;
}
.job-search-complex__select--bag {
  background-image: url("../images/icon_bag_orange.svg"),url("../images/wedge_down_orange.svg");
  background-repeat: no-repeat,no-repeat;
  background-position: 15px center,calc(100% - 20px) center;
  background-size: 20px 19px,10px 5px;
}
.job-search-complex__input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  padding: 8px 15px;
  line-height: 1.5;
  background-color: #FFF;
}
.job-search-complex__sub-input-wrap {
  width: 200px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__sub-input-wrap:nth-child(n+2) {
  margin-left: 8px;
}
.job-search-complex__sub-select {
  width: 100%;
  min-height: 40px;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  padding: 7px 35px 7px 45px;
  font-weight: 700;
  line-height: 1.5;
  color: #808080;
  background-color: #FFF;
}
.job-search-complex__sub-select.selected {
  color: #1C1818;
}
.job-search-complex__sub-select--human {
  background-image: url("../images/icon_human_orange.svg"),url("../images/wedge_down_orange.svg");
  background-repeat: no-repeat,no-repeat;
  background-position: 15px center,calc(100% - 20px) center;
  background-size: 16px 20px,10px 5px;
}
.job-search-complex__sub-select--yen {
  background-image: url("../images/icon_yen_orange.svg"),url("../images/wedge_down_orange.svg");
  background-repeat: no-repeat,no-repeat;
  background-position: 15px center,calc(100% - 20px) center;
  background-size: 16px 16px,10px 5px;
}

.job-search-complex__selected-text {

}
.job-search-complex__selected-text--modal {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.job-search-complex__error {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #FF2C2C;
}
.job-search-complex__button-wrap {
  margin-left: 8px;
  width: 106px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__button {
  width: 100%;
  border-radius: 19px;
  padding: 5px;
  
  text-align: center;
  background-color: #1C1818;
  cursor: pointer;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-search-complex__button-text {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
}

/* =======================================
			job block list
======================================= */
/* job block list */
.job-block-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.job-block-list__item {
  margin-right: 24px;
  width: 322px;
  background-color: #FFF;
}
.job-block-list__item:nth-child(3n) {
  margin-right: 0;
}
.job-block-list__item:nth-child(n+4) {
  margin-top: 24px;
}
.job-block-list__item2 {
  margin-right: 24px;
  width: 322px;
  background-color: #FFF;
}
.job-block-list__item2:nth-child(3n) {
  margin-right: 0;
}
.job-block-list__item2:nth-child(n+4) {
  margin-top: 24px;
}
.job-block-list__link {

}
.job-block-list__thum {
  width: 100%;
  height: 193px;
  border-bottom: 1px solid #EAEAEA;
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}
.job-block-list__thum2 {
  width: 100%;
  height: 193px;
  border-bottom: 1px solid #EAEAEA;
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}
.job-block-list__thum-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-block-list__thum-img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-block-list__desc {
  padding: 12px 15px;
}
.job-block-list__title {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}

.job-block-list___column {

}
.job-block-list___row {

}
/* =======================================
			job search list
======================================= */
/* job search list */
.job-search-list {

}
.job-search-list__item {
  position: relative;
  width: 100%;
  background-color: #FFF;
  cursor: pointer;
}
.job-search-list__item:nth-child(n+2) {
  margin-top: 15px;
}
.job-search-list__body {
  border: 1px solid #FFF;
  padding: 30px;
  background-color: #FFF;
}
.job-search-list__body._current {
  border-color: rgba(232, 84, 0, 0.5);
}
.job-search-list__body-header {
  margin-top: -5px;
}
.job-search-list__body-header-desc {
  width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.job-search-list__date {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
* + .job-search-list__date {
  margin-top: 5px;
}
.job-search-list__date--right {
  width: 100%;
  text-align: right;
}
.job-search-list__icon {
  margin-top: 5px;
}
.job-search-list__job-id {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.job-search-list__body-header-title {
  width: 100%;
  margin-top: 10px;
}
.job-search-list__title {
  font-weight: 700;
  line-height: 1.5;
}
.job-search-list__job-list-desc-table {
  margin-top: 10px;
  border-top: 1px solid #CCCCCC;
  padding-top: 10px;
  width: 100%;
}

.job-search-list__icon-list {
  margin-top: 25px;
}
.job-search-list__icon-list-title {
  font-weight: 700;
  line-height: 1.4;
}
.job-search-list__icon-frame-list {
  margin-top: 10px;
}
  
.job-search-list__footer {

}

/* =======================================
			job list desc table
======================================= */
/* job list desc table */
.job-list-desc-table {

}
.job-list-desc-table__text {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
}
.job-list-desc-table__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 2;
}
.job-list-desc-table__text--icon-pin.lazyloaded::before {
  background-image: url("../images/icon_pin_orange.svg");
  background-size: 13px 16px;
}
.job-list-desc-table__text--icon-bed.lazyloaded::before {
  background-image: url("../images/icon_bed_orange.svg");
  background-size: 16px 15px;
}
.job-list-desc-table__text--icon-bag.lazyloaded::before {
  background-image: url("../images/icon_bag_orange.svg");
  background-size: 16px 16px;
}
.job-list-desc-table__text--icon-yen.lazyloaded::before {
  background-image: url("../images/icon_yen_orange.svg");
  background-size: 16px 16px;
}
.job-list-desc-table__text--icon-calendar.lazyloaded::before {
  background-image: url("../images/icon_calendar_orange.svg");
  background-size: 15px 16px;
}
.job-list-desc-table__text:nth-child(n+2) {
  margin-top: 5px;
}

/* =======================================
			job-details
======================================= */
/* job-details */
.job-details {
  padding: 30px 30px 50px;
  background-color: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
}
.job-details__header {

}
.job-details__job-details-desc-table {
  margin-top: 20px;
}
.job-details__section {
  margin-top: 30px;
}
.job-details__entry {
  margin: 30px auto 0;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


/* job-details-header */
.job-details-header {

}
.job-details-header__desc {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-details-header__employment {

}
.job-details-header__job-id {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.job-detail-header__date {
  margin-top: 5px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.61;
  text-align: right;
}
.job-details-header__title {
  margin-top: 10px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.job-details-header__sub-title {
  margin-top: 5px;
  width: 100%;
  font-size: 13px;
  line-height: 1.5;
}
.job-details-header__button {
  margin: 40px auto 0;
}
.job-details-header__slider {
  margin-top: 40px;
}

/* job img slide */
.job-img-slide {

}
.job-img-slide__list {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.job-img-slide__item {
  width: 210px;
  height: 140px;
}
.job-img-slide__item:nth-child(n+2) {
  margin-left: 10px;
}
.job-img-slide__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* job-details-desc-table */
.job-details-desc-table {

}
.job-details-desc-table__text {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  min-height: 22px;
}
.job-details-desc-table__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 2;
}
.job-details-desc-table__text--icon-pin.lazyloaded::before {
  background-image: url("../images/icon_pin_orange.svg");
  background-size: 16px 20px;
}
.job-details-desc-table__text--icon-bed.lazyloaded::before {
  background-image: url("../images/icon_bed_orange.svg");
  background-size: 20px 19px;
}
.job-details-desc-table__text--icon-bag.lazyloaded::before {
  background-image: url("../images/icon_bag_orange.svg");
  background-size: 20px 19px;
}
.job-details-desc-table__text--icon-yen.lazyloaded::before {
  background-image: url("../images/icon_yen_orange.svg");
  background-size: 20px 20px;
}
.job-details-desc-table__text--icon-calendar.lazyloaded::before {
  background-image: url("../images/icon_calendar_orange.svg");
  background-size: 20px 22px;
}
.job-details-desc-table__text:nth-child(n+2) {
  margin-top: 10px;
}
.job-details-desc-table__icon {
  margin-top: 20px;
}
.job-details-desc-table__icon-title {
  font-weight: 700;
  line-height: 1.4;
}
.job-details-desc-table__icon-frame-list {
  margin-top: 5px;
}


/* job-details-section */
.job-details-section {

}
.job-details-section__inner {

}
.job-details-section__title {
  padding: 15px 20px;
  background-color: #F5F5F5;
}
.job-details-section__title-text {
  border-left: 5px solid #E85400;
  padding-left: 20px;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.job-details-section__table {
  margin-top: 20px;
}
.job-details-section__desc {
  margin-top: 20px;
}
.job-details-section__text {
  line-height: 1.6;
  /* white-space: pre-wrap; */
}

/* job recommend list */
.job-recommend-list {

}
.job-recommend-list__inner {

}
.job-recommend-list__body {
  margin-top: 40px;
}

/* =======================================
			footer global
======================================= */
.footer-global {
  background-color: #414349;
}
.footer-global__inner {
  width: 1160px;
  margin: 0 auto;
  padding: 30px 0;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-global__left {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-global__logo {
  width: 148px;
  height: 50px;
}
.footer-global__navi {
  margin-left: 70px;
}
.footer-global__right {

}
.footer-global__copy {

}
.footer-global__copy-text {
  font-size: 11px;
  line-height: 1.7;
  color: #FFF;
}

/* footer-global-logo */
.footer-global-logo {

}

/* footer-global-navi */
.footer-global-navi {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-global-navi__item:nth-child(n+2) {
  margin-left: 30px;
}
.footer-global-navi__link {
  display: block;
  text-decoration: none;
}
.footer-global-navi__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #FFF;
}

/* anchor top */
.button-anchor-top {

}
.button-anchor-top__button {
  bottom: 3%;
  position: fixed;
  right: 5%;
  display: none;
  z-index: 10;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.button-anchor-top__img {
  width: 100%;
}

/* =======================================
			slide
======================================= */
.slide-arrow {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  font-size: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 6;
}
.prev-arrow {
  left: -16px;
}
.next-arrow {
  right: -16px;
}

/* =======================================
			page count
======================================= */
.page-count {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-count__total {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}
.page-count__unit {
  padding-left: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.page-count__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* =======================================
			pager
======================================= */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 28px auto;
}
.pager--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.pager--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.pager-list {
  margin-top: -8px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pager-item {
  margin-top: 8px;
}
.pager-item:nth-child(n+2) {
  margin-left: 5px;
}
.pager-prev__link {
  width: 37px;
  height: 37px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  background-color: #FFF;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  background-image: url("../images/wedge_left_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px auto;
}
.pager-next__link {
  width: 37px;
  height: 37px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  background-color: #FFF;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  background-image: url("../images/wedge_right_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px auto;
}
.pager-item__link {
  width: 37px;
  height: 37px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  background-color: #FFF;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pager-item__link--current {
  border: 1px solid #E85400;
  background-color: #E85400;
}
.pager-item__text {
  font-size: 14px;
  line-height: 1;
}
.pager-item__link--current .pager-item__text {
  color: #FFF;
}
.pager-item__points {
  width: 20px;
  height: 37px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pager-item__text-points {
  font-size: 21px;
  line-height: 1;
}
/* pager small */
.pager--small .pager-list {
  margin-top: -5px;
}
.pager--small .pager-item {
  margin-top: 5px;
}
.pager--small .pager-item:nth-child(n+2) {
  margin-left: 5px;
}
.pager--small .pager-prev__link {
  width: 25px;
  height: 25px;
  background-size: 4px auto;
}
.pager--small .pager-next__link {
  width: 25px;
  height: 25px;
  background-size: 4px auto;
}
.pager--small .pager-item__link {
  width: 25px;
  height: 25px;
}
.pager--small .pager-item__text {
  font-size: 13px;
}
.pager--small .pager-item__points {
  width: 14px;
  height: 25px;
}
.pager--small .pager-item__text-points {
  font-size: 14px;
}

/* =======================================
                page
======================================= */
/* search */
.search-job-list {

}
.search-job-list__job-search-list {

}
.search-job-list__pager-top {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-job-list__pager-bottom {
  margin-top: 40px;
}

/* search-job-details */
.search-job-details {

}
.search-job-details__job-details {

}
.search-job-details__button {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-job-details__recommend {
  padding: 40px 0 60px;
}

/* =======================================
                sticky
======================================= */
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sticky--job-details {
  top: 20px;
  height: calc(100vh - 40px);
}

/*----------------------------------------
 _画面の横幅が560pxまで
----------------------------------------*/
@media screen and (max-width:560px) {
  /* =======================================
                common
  ======================================= */
  body {
    min-width: auto;
    min-width: initial;
    font-size: 2.85vw;
  }
  html.spMenuOpen,
  html.spMenuOpen body {
    height: 100%;
    min-height: auto;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* display */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .br-pc {
    display: inline;
  }

  .br-sp {
    display: block;
  }

  /* text */
  .text-pc {
    display: none;
  }

  /* shadow */
  .box-shadow01 {
    box-shadow: 0vw 0vw 1.78vw 0vw rgba(0, 0, 0, 0.2);
  }
  .box-shadow02 {
    box-shadow: 0vw 0.17vw 1.07vw 0vw rgba(0, 0, 0, 0.1);
  }
  .box-shadow03 {
    box-shadow: 0vw 0vw 0.71vw 0vw rgba(0, 0, 0, 0.16);
  }

  /* =======================================
        button
  ======================================= */
  .button {
    border-radius: 5.71vw;
  }
  .button--tel {
    pointer-events: auto;
  }
  .button--width-mini {
    width: 100%;
    padding: 2.23vw;
  }
  .button--width-normal  {
    min-width: 53.57vw;
    padding: 3.21vw;
  }
  .button--width-normal-triagle {
    width: 44.64vw;
    padding: 3.57vw;
  }
  .button--width-midlle {
    width: 57.14vw;
    padding: 3.57vw;
  }
  .button--width-midlle-job-detail {
    width: 46.42vw;
    padding: 2.67vw;
  }
  .button--bg-wedge-left-white {
    background-position: 3.57vw center;
    background-size: 1.42vw auto;
  }
  .button--bg-triangle-right-white {
    background-position: 3.57vw center;
    background-size: 1.07vw auto;
  }

  .button__text {
    font-size: 3.21vw;
  }
  .button__text--font-12 {
    font-size: 3.21vw;
  }
  .button__text--font-13 {
    font-size: 3.03vw;
  }
  .button__text--font-16 {
    font-size: 2.85vw;
  }
  .button__text--font-17 {
    font-size: 3.75vw;
  }

  .button__link {
    margin-top: 5.35vw;
  }
  .button__text--icon-triangle-left-orange {
    padding-left: 3.57vw;
    background-size: 1.07vw auto;
  }

  /* =======================================
        icon list
  ======================================= */
  /* icon square list */
  .icon-square-list__wrap--margin-5 {
    margin-top: -1.33vw;
    margin-left: -1.33vw;
  }
  .icon-square-list__wrap--margin-5 .icon-square-list__item {
    margin-top: 1.33vw;
    margin-left: 1.33vw;
  }

  /* icon ellipse list */
  .icon-ellipse-list__wrap--margin-5 {
    margin-top: -1.33vw;
    margin-left: -1.33vw;
  }
  .icon-ellipse-list__wrap--margin-5 .icon-ellipse-list__item {
    margin-top: 1.33vw;
    margin-left: 1.33vw;
  }
  .icon-ellipse-list__wrap--margin-10 {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
  }
  .icon-ellipse-list__wrap--margin-10 .icon-ellipse-list__item {
    margin-top: 1.78vw;
    margin-left: 1.78vw;
  }

  /* icon frame list */
  .icon-frame-list__wrap {
    margin-top: -1.42vw;
    margin-left: -1.42vw;
  }
  .icon-frame-list__item {
    margin-top: 1.42vw;
    margin-left: 1.42vw;
  }

  /* icon */
  .icon--border-radius {
    /* border-radius: 1.78vw; */
    border-radius: 8.92vw;
  }
  .icon__text {
    /* padding: 0.8vw 1.78vw; */
    padding: 0.8vw 1.78vw 0.5vw;
    line-height: 1;
  }
  .icon__text--font-10 {
    font-size: 3.21vw;
  }
  .icon__text--font-11 {
    font-size: max(1.96vw,11px);
  }
  .icon__text--font-12 {
    font-size: 3.03vw;
  }
  .icon__text--font-13 {
    font-size: 2.32vw;
  }
  .icon__text--border-frame {
    border: 0.17vw solid #CCCCCC;
    padding: 0.89vw 1.78vw;
  }

  /* =======================================
        innner
  ======================================= */
  .inner01 {
    width: 89.28vw;
  }
  
  /* =======================================
        breadcrumb
  ======================================= */
  .breadcrumb__inner {
    padding: 1.07vw 0;
  }
  .breadcrumb-list::-webkit-scrollbar-track {
    border-radius: 7.14vw;
  }
  .breadcrumb-list::-webkit-scrollbar-thumb {
    border-radius: 7.14vw;
  }
  .breadcrumb-list::-webkit-scrollbar {
    height: 2.14vw;
  }
  .breadcrumb-list__item:nth-child(n+2) {
    padding-left: 3.57vw;
    background-position: 1.42vw center;
    background-size: 0.35vw 0.71vw;
  }
  .breadcrumb-list__text {
    font-size: 2.14vw;
  }

  /* =======================================
        frame box
  ======================================= */
  .frame-box__wrap {
    /* padding: 8.92vw 7.14vw; */
    padding: 8.92vw 4.14vw;
  }
  .frame-box__wrap--border-orange {
    border-radius: 1.78vw;
    border: 0.34vw solid #FFB100;
  }
  .frame-box__title {
    font-size: 4.28vw;
    line-height: 1.5;
  }
  .frame-box__title-middle {
    font-size: 3.57vw;
  }
  .frame-box__title + * {
    margin-top: 5.35vw;
  }
  .frame-box__title-middle + * {
    margin-top: 5.35vw;
  }
  .frame-box__desc {

  }
  .frame-box__text {
    line-height: 1.685;
  }
  .frame-box__text--margin-bottom {
    margin-bottom: 5.35vw;
  }
  .frame-box__text-box {
    margin: 1.78vw auto 5.35vw;
    width: 100%;
  }
  .frame-box__button {
    margin-top: 5.35vw;
  }
  .frame-box__button .button:nth-child(n+2) {
    margin-left: 5.35vw;
  }
  .frame-box__link {
    margin-top: 2.67vw;
    font-size: 2.5vw;
    line-height: 1.5;
  }

  /* =======================================
        main wrap
  ======================================= */
  .main {

  }
  .main--padding-top {
    padding-top: 0;
  }

  /* frame column wrap */
  .main__frame-column-wrap {
    padding: 8.92vw 0 12.5vw;
  }

  /* one column wrap */
  .main__one-column-wrap {
    padding: 8.92vw 0 0vw;
  }
  .main__one-column-wrap--job-details {
    padding: 0;
  }
  
  /* two column wrap */
  .main__two-column-wrap {
    padding: 5.35vw 0 10.71vw;
  }
  .main__two-column-left {
    width: 100%;
  }
  .main__two-column-right {
    display: none;
    width: 100%;
  }

  /* =======================================
        section table
  ======================================= */
  .section-table__line {

  }
  .section-table__title {
    width: 100%;
  }
  .section-table__title-text {
    font-size: 2.5vw;
  }
  .section-table__desc {
    padding: 0.89vw 0 0;
  }
  .section-table__desc-text {

  }
  .section-table__icon-list {
    margin-top: -1.42vw;
    margin-left: -1.42vw;
  }
  .section-table__icon-item {
    margin-top: 1.42vw;
    margin-left: 1.42vw;
    width: 13.39vw;
    min-height: 13.39vw;
    border: 0.17vw solid #CCCCCC;
    padding: 0.35vw;
  }
  .section-table__icon-img {
    height: 6.6vw;
    margin-bottom: 0.89vw;
  }
  .section-table__icon-label {
    font-size: 1.78vw;
  }

  /* =======================================
        contents parts
  ======================================= */
  .contents-parts__header {

  }
  .contents-parts__title-jp--bg-line::before {
    content: none;
  }
  .contents-parts__title-jp-text {
    font-size: 5vw;
    line-height: 1.42;
  }
  .contents-parts__title-jp-text--small {
    font-size: 3.57vw;
    line-height: 1.5;
    color: #E85400;
  }
  .contents-parts__title-jp--bg-line {
    padding-bottom: 3.57vw;
    border-bottom: 0.53vw solid #E85400;
  }
  .contents-parts__title-jp--bg-line .contents-parts__title-jp-text {
    padding: 0;
  }

  /* =======================================
        header global
  ======================================= */
  .header-global {
    position: relative;
    min-width: 100%;
    min-width: inherit;
  }
  .header-global::before {
    height: 0.71vw;
  }
  .header-global::after {
    content: none;
  }
  .header-global__inner {
    width: 100%;
    padding: 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-global__left {
    position: relative;
    width: 100%;
    padding: 1.78vw 0;
  }
  .header-global__left::after {
    position: absolute;
    left: 0;
    bottom: -0.89vw;
    content: "";
    display: block;
    width: 100%;
    height: 0.89vw;
    background : -moz-linear-gradient(50% 0% -90deg,rgba(0, 0, 0, 0.16) 0%,rgba(0, 0, 0, 0.16) 100%);
    background : -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
    background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(0, 0, 0, 1) ),color-stop(1,rgba(0, 0, 0, 0.16) ));
    background : -o-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
    background : -ms-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#333333' ,GradientType=0)";
    background : linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
    opacity : 0.05;
    filter: alpha(opacity=3) progid:DXImageTransform.Microsoft.Alpha(opacity=3) progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333',endColorstr='#333333' , GradientType=0);
  }
  .header-global__logo {
    margin: 0 auto;
    width: 24.64vw;
    height: 8.39vw;
  }
  .header-global__right {
    position: relative;
    width: 100%;
  }

  /* =======================================
        job search simple
  ======================================= */
  /* job search simple */
  .job-search-simple {

  }
  .job-search-simple__form {
    border-radius: 1.78vw;
  }
  .job-search-simple__input-wrap {
    width: 50%;
    padding: 3.57vw 0 3.57vw 3.57vw;
  }
  .job-search-simple__input-wrap:nth-child(n+2) {
    border-left: 0.17vw solid #EBEBEB;
  }
  .job-search-simple__input-wrap--long {
    width: 100%;
    border-top: 0.17vw solid #EBEBEB;
    padding: 2.67vw 3.57vw;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .job-search-simple__icon {
    width: 3.57vw;
    height: 3.57vw;
  }
  .job-search-simple__icon--pin.lazyloaded {
    background-size: 2.85vw 3.57vw;
  }
  .job-search-simple__icon--bag.lazyloaded {
    background-size: 3.57vw 3.39vw;
  }
  
  .job-search-simple__input-title {
    font-size: 2.14vw;
    line-height: 1.5;
  }
  .job-search-simple__select {
    width: calc(100% - 3.57vw);
    padding: 0.35vw 6.25vw 0.35vw 1.78vw;
    line-height: 1.4;
  
    background-position: calc(100% - 3.57vw) center;
    background-size: 2.14vw 1.25vw;
  }
  .job-search-simple__input {
    margin-left: 0;
    width: 64.07vw;
    border-radius: 1.07vw;
    border: 0.17vw solid #CCCCCC;
    padding: 1.42vw 2.67vw;
  
    line-height: 1.5;
  }
  .job-search-simple__error {
    font-size: 2.32vw;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #FF2C2C;
  }
  .job-search-simple__button-wrap {
    width: 100%;
    padding: 0 3.57vw 3.57vw;
  }
  .job-search-simple__button {
    width: 100%;
    border-radius: 4.1vw;
    padding: 1.78vw;
  }
  .job-search-simple__button-text {
    font-size: 3.57vw;
  }

  /* =======================================
			job-search-complex
  ======================================= */
  /* job-search-complex */
  .job-search-complexe {

  }
    .job-search-complex__form {
    margin: 0 auto;
    width: 89.28vw;
    padding: 4.46vw 0 7.14vw;
  }
  .job-search-complex__main {
    border-radius: 1.78vw;
    background-color: #FFF;
    box-shadow: 0vw 0vw 1.78vw 0vw rgba(0, 0, 0, 0.2);

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .job-search-complex__sub {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 4.46vw;
    width: 100%;
  
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .job-search-complex__input-wrap {
    width: 50%;
  }
  .job-search-complex__input-wrap:nth-child(n+2) {
    margin-left: 0;
    border-left: 0.17vw solid #EBEBEB;
  }
  .job-search-complex__input-wrap--long {
    width: 100%;
    border-top: 0.17vw solid #EBEBEB;
    padding: 2.67vw 3.57vw;

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
 
  .job-search-complex__input-title {
    font-size: 2.14vw;
    line-height: 1.5;
  }
  .job-search-complex__select {
    width: 100%;
    min-height: auto;
    min-height: inherit;
    border-radius: 0;
    border: none;
    padding: 3.57vw 6.5vw 3.57vw 8.03vw;
  }
  .job-search-complex__input-wrap:nth-child(1) .job-search-complex__select {
    border-top-left-radius: 1.78vw;
  }
  .job-search-complex__input-wrap:nth-child(2) .job-search-complex__select {
    border-top-right-radius: 1.78vw;
  }
  .job-search-complex__select--pin {
    background-position: 3.57vw center,calc(100% - 3.57vw) center;
    background-size: 2.85vw 3.57vw,2.14vw 1.07vw;
  }
  .job-search-complex__select--bag {
    background-position: 3.57vw center,calc(100% - 3.57vw) center;
    background-size: 3.57vw 3.39vw,2.14vw 1.07vw;
  }

  .job-search-complex__input {
    width: 64.07vw;
    border-radius: 1.07vw;
    border: 0.17vw solid #CCCCCC;
    padding: 1.42vw 2.67vw;
  
    line-height: 1.5;
  }

  .job-search-complex__sub-input-wrap {
    width: 35.71vw;
  }
  .job-search-complex__sub-input-wrap:nth-child(n+2) {
    margin-left: 5.35vw;
  }
  .job-search-complex__sub-select {
    min-height: 7.14vw;
    border-radius: 1.07vw;
    border: 0.17vw solid #CCCCCC;
    padding: 1.78vw 8.03vw 1.78vw 8.03vw;
  }
  .job-search-complex__sub-select--human {
    background-position: 2.67vw center,calc(100% - 3.57vw) center;
    background-size: 2.85vw 3.57vw,2.14vw 1.07vw;
  }
  .job-search-complex__sub-select--yen {
    background-position: 2.67vw center,calc(100% - 3.57vw) center;
    background-size: 2.85vw 2.85vw,2.14vw 1.07vw;
  }

  .job-search-complex__error {
    font-size: 2.32vw;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #FF2C2C;
  }
  .job-search-complex__button-wrap {
    width: 100%;
    padding: 0 3.57vw 3.57vw;
  }
  .job-search-complex__button {
    width: 100%;
    border-radius: 4.1vw;
    padding: 1.78vw;
  }
  .job-search-complex__button-text {
    font-size: 3.57vw;
  }

  /* =======================================
        job block list
  ======================================= */
  /* job block list */
  .job-block-list__item {
    margin-right: 0;
    width: 100%;
  }
  .job-block-list__item:nth-child(n+2) {
    margin-top: 6.78vw;
  }
  .job-block-list__item:nth-child(n+4) {
    margin-top: 6.78vw;
  }
  .job-block-list__item2 {
    margin-right: 0;
    width: 100%;
  }
  .job-block-list__thum {
    height: 51.24vw;
    border-bottom: 0.17vw solid #EAEAEA;
  }
  .job-block-list__thum2 {
    height: 20.24vw;
    border-bottom: 0.17vw solid #EAEAEA;
  }
  .job-block-list__desc {
    padding: 3.57vw;
  }
  .job-block-list__title {
    margin-top: 1.78vw;
    font-size: 3.92vw;
    line-height: 1.5;
  }

  /* =======================================
        job search list
  ======================================= */
  /* job search list */
  .job-search-list__item {
    cursor: default;
  }
  .job-search-list__item:nth-child(n+2) {
    margin-top: 2.67vw;
  }
  .job-search-list__body {
    border-width: 0.35vw;
    padding: 5.35vw 5.35vw 4.46vw 5.35vw;
  }
  .job-search-list__body-header {
    margin-top: -1.78vw;
  }
  .job-search-list__body-header-desc {
    width: 100%;
  }
  .job-search-list__date {
    font-size: 2.32vw;
  }
  * + .job-search-list__date {
    margin-top: 1.33vw;
  }
  .job-search-list__icon {
    margin-top: 1.78vw;
  }
  .job-search-list__job-id {
    margin-top: 1.78vw;
    font-size: max(1.96vw,11px);
    line-height: 1.77;
    font-weight: 400;
  }
  .job-search-list__body-header-title {
    margin-top: 1.78vw;
    width: 100%;
  }
  .job-search-list__title {
    font-size: 3.57vw;
    line-height: 1.5;
  }
  .job-search-list__job-list-desc-table {
    margin-top: 3.57vw;
    border-top: 0.17vw solid #CCCCCC;
    padding-top: 3.57vw;
  }

  .job-search-list__icon-list {
    margin-top: 2.67vw;
  }
  .job-search-list__icon-list-title {

  }
  .job-search-list__icon-frame-list {
    margin-top: 1.78vw;
  }

  .job-search-list__footer {
    margin-top: 4.46vw;
  }

  /* =======================================
        job list desc table
  ======================================= */
  /* job list desc table */
  .job-list-desc-table__text {
    padding-left: 4.46vw;
    font-size: 2.85vw;
  }
  .job-list-desc-table__text::before {
    top: 0.35vw;
    width: 4.46vw;
    height: 4.46vw;
  }
  .job-list-desc-table__text--icon-pin.lazyloaded::before {
    background-size: 2.85vw 3.57vw;
  }
  .job-list-desc-table__text--icon-bed.lazyloaded::before {
    background-size: 3.57vw 3.39vw;
  }
  .job-list-desc-table__text--icon-bag.lazyloaded::before {
    background-size: 3.57vw 3.39vw;
  }
  .job-list-desc-table__text--icon-yen.lazyloaded::before {
    background-size: 3.57vw 3.57vw;
  }
  .job-list-desc-table__text--icon-calendar.lazyloaded::before {
    background-size: 3.57vw 3.92vw;
  }
  .job-list-desc-table__text:nth-child(n+2) {
    margin-top: 1.78vw;
  }


  /* =======================================
        job-details
  ======================================= */
  /* job-details */
  .job-details {
    padding: 5.35vw 0 7.14vw;
    box-shadow: none;
  }
  .job-details__header {
  }
  .job-details__job-details-desc-table {
    margin-top: 4.46vw;
  }
  .job-details__section {
    margin-top: 5.35vw;
  }
  .job-details__entry {
    margin: 5.35vw auto 0;
  }

  /* job-details-header */
  .job-details-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

  	-webkit-box-orient: vertical;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: column-reverse;
  	flex-direction: column-reverse;
  }
  .job-details-header__desc {
    margin-top: 3.57vw;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .job-details-header__employment {
    margin-right: 1.78vw;
  }
  .job-details-header__job-id {
    font-size: 2.32vw;
  }
  .job-detail-header__date {
    margin-top: 2.85vw;
    font-size: 2.32vw;
  }
  .job-details-header__title {
    margin-top: 2.67vw;
    font-size: 5vw;
  }
  .job-details-header__sub-title {
    margin-top: 1.78vw;
    font-size: 2.32vw;
  }
  .job-details-header__button {
    margin: 3.57vw auto 0;
  }
  .job-details-header__slider {
    width: 100%;
    margin-top: 0;
  }

  /* job img slide */
  .job-img-slide {

  }
  .job-img-slide__list {

  }
  .job-img-slide__item {
    width: 79.64vw;
    height: 53.03vw;
  }
  .job-img-slide__item:nth-child(n+2) {
    margin-left: 4.82vw;
  }
  .slick-dots {
    position: relative;
    bottom: auto;
    margin: 20px auto 0;

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .slick-dots li button:before {
    opacity: 1;
    color: #EBEBEB;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #E85400;
  }

  /* job-details-desc-table */
  .job-details-desc-table {

  }
  .job-details-desc-table__text {
    padding-left: 5vw;
    font-size: 2.85vw;
    min-height: 3.92vw;
  }
  .job-details-desc-table__text::before {
    top: 0.35vw;
    width: 3.57vw;
    height: 3.92vw;
  }
  .job-details-desc-table__text--icon-pin.lazyloaded::before {
    background-size: 2.85vw 3.57vw;
  }
  .job-details-desc-table__text--icon-bed.lazyloaded::before {
    background-size: 3.57vw 3.39vw;
  }
  .job-details-desc-table__text--icon-bag.lazyloaded::before {
    background-size: 3.57vw 3.39vw;
  }
  .job-details-desc-table__text--icon-yen.lazyloaded::before {
    background-size: 3.57vw 3.57vw;
  }
  .job-details-desc-table__text--icon-calendar.lazyloaded::before {
    background-size: 3.57vw 3.92vw;
  }
  .job-details-desc-table__text:nth-child(n+2) {
    margin-top: 1.78vw;
  }
  .job-details-desc-table__icon {
    margin-top: 7.14vw;
  }
  .job-details-desc-table__icon-title {

  }
  .job-details-desc-table__icon-frame-list {
    margin-top: 0.89vw;
  }

  /* job-details-section */
  .job-details-section {

  }
  .job-details-section__inner {

  }
  .job-details-section__title {
    padding: 2.67vw 3.57vw;
  }
  .job-details-section__title-text {
    border-left: 0.89vw solid #E85400;
    padding-left: 3.57vw;

    font-size: 3.57vw;
  }
  .job-details-section__table {
    margin-top: 3.57vw;
  }
  .job-details-section__desc {
    margin-top: 3.57vw;
  }
  .job-details-section__text {
    line-height: 1.6;
  }

  /* job recommend list */
  .job-recommend-list {

  }
  .job-recommend-list__inner {

  }
  .job-recommend-list__body {
    margin-top: 7.14vw;
  }

  /* =======================================
        footer global
  ======================================= */
  .footer-global {

  }
  .footer-global__inner {
    width: 89.28vw;
    padding: 5.35vw 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-global__left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-global__logo {
    width: 31.42vw;
    height: 10.71vw;
  }
  .footer-global__navi {
    width: 100%;
    margin-left: 0;
    margin-top: 5.35vw;
  }
  .footer-global__right {
    margin-top: 17.85vw;
  }
  .footer-global__copy {

  }
  .footer-global__copy-text {
    font-size: max(1.96vw,11px);
    line-height: 1.7;
    color: #FFF;
  }

  /* footer-global-logo */
  .footer-global-logo {

  }

  /* footer-global-navi */
  .footer-global-navi {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-global-navi__item:nth-child(n+2) {
    margin-left: 5.35vw;
  }
  .footer-global-navi__text {
    font-size: 2.85vw;
    line-height: 1.4;
  }

  /* anchor top */
  .button-anchor-top {

  }
  .button-anchor-top__button {
    bottom: 3%;
    position: fixed;
    right: 5%;
    display: none;
    z-index: 10;
    width: 8.92vw;
    height: 8.92vw;
  }

  /* =======================================
        slide
  ======================================= */
  .slide-arrow {
    margin-top: -3.03vw;
    width: 3.21vw;
    height: 6.07vw;
  }
  .prev-arrow {
    /* left: -1.78vw; */
    left: -4.99vw;
  }
  .next-arrow {
    /* right: -1.78vw; */
    right: -4.99vw;
  }

  /* =======================================
        page count
  ======================================= */
  .page-count__total {
    font-size: 4.1vw;
    line-height: 1.1;
  }
  .page-count__unit {
    font-size: 2.5vw;
  }
  .page-count__text {
    font-size: 2.5vw;
  }

  /* =======================================
        pager
  ======================================= */
  .pager-list {
    margin-top: -1.78vw;
  }
  .pager-item {
    margin-top: 1.78vw;
  }
  .pager-item:nth-child(n+2) {
    /* margin-left: 0.89vw; */
    margin-left: 1.25vw;
  }
  .pager-prev__link {
    /* width: 8.57vw;
    height: 8.57vw; */
    /* width: 8.03vw;
    height: 8.03vw; */
    width: 7.5vw;
    height: 7.5vw;
    border: 0.17vw solid #CCCCCC;
    background-size: 1.78vw auto;
  }
  .pager-next__link {
    /* width: 8.57vw;
    height: 8.57vw; */
    /* width: 8.03vw;
    height: 8.03vw; */
    width: 7.5vw;
    height: 7.5vw;
    border: 0.17vw solid #CCCCCC;
    background-size: 1.78vw auto;
  }
  .pager-item__link {
    /* width: 8.57vw;
    height: 8.57vw; */
    /* width: 8.03vw;
    height: 8.03vw; */
    width: 7.5vw;
    height: 7.5vw;
    border: 0.17vw solid #CCCCCC;
  }
  .pager-item__link--current {
    border: 0.17vw solid #EC60B8;
  }
  .pager-item__text {
    font-size: 3.39vw;
  }
  .pager-item__points {
    /* width: 4.64vw;
    height: 8.57vw; */
    /* width: 4.64vw;
    height: 8.03vw; */
    width: 4.64vw;
    height: 7.5vw;
  }
  .pager-item__text-points {
    font-size: 3.57vw;
  }

  /* =======================================
                  page
  ======================================= */
  /* search */
  .search-job-list__pager-bottom {
    margin-top: 5.35vw;
  }

  /* search-job-details */
  .search-job-details {

  }
  .search-job-details__job-details {

  }
  .search-job-details__button {
    margin: 7.14vw auto;
  }
  .search-job-details__recommend {
    padding: 7.14vw 0 10.71vw;
  }
}