@charset "UTF-8";
/* webfont 変数　*/
/* blockeffects */
@-webkit-keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}

@-webkit-keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/*伸びたブロックを横に追いやるアニメーション*/
@-webkit-keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}
@keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@-webkit-keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
}

@keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
}

/* upeffects */
@-webkit-keyframes margintop {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes margintop {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
    opacity: 1;
  }
}

/* ofi */

/*====================================================================

lv2.css

=====================================================================*/
.header {
  background: #FFFFFF;
}

/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  position: relative;
  background-color: #E8EEF6;
}

.main-view .l-cont {
  position: relative;
  height: 100%;
}

.main-view__tit {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
  font-size: calc(1rem + 4 * (100vw - 280px) / 920);
  font-weight: 500;
  text-align: center;
}

.main-view__tit em {
  display: inline-block;
  position: relative;
  padding: 0 0.2em;
  color: #243FC7;
  font-family: Poppins, sans-serif;
  font-size: calc(1.25rem + 20 * (100vw - 280px) / 920);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05;
  line-height: 1.2;
}

.main-view__tit b {
  font-size: calc(1rem + 6 * (100vw - 280px) / 920);
  font-weight: 500;
  line-height: 1.4;
}

.main-view__tit__single {
  padding-top: clamp(16px, 2vw, 32px);
  padding-top: clamp(1rem, 2vw, 2rem);
  color: #243FC7;
  font-size: calc(1rem + 6 * (100vw - 280px) / 920);
}

.common-flow {
  row-gap: 56px;
  row-gap: 3.5rem;
  display: flex;
      flex-direction: column;
  counter-reset: flow-num;
}

.common-flow.is-blue .common-flow__box:not(:last-of-type):after {
  content: url(../img/lv2/flow-add_blue.svg);
}

.common-flow.is-blue .common-flow__box__num span {
  background: #243FC7;
}

.common-flow.is-l-blue .common-flow__box:not(:last-of-type):after {
  content: url(../img/lv2/flow-add_l-blue.svg);
}

.common-flow.is-l-blue .common-flow__box__num span {
  background: #578FE4;
}

.common-flow__box {
  position: relative;
  border-radius: clamp(16px, 2vw, 28px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.common-flow__box:not(:last-of-type):after {
  position: absolute;
  top: calc(100% + 1rem);
  left: calc(50% - 2px);
}

.common-flow__box__num {
  position: absolute;
  width: 60px;
  height: 60px;
}

.common-flow__box__num span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-top: 0.75rem;
  border-radius: 50%;
  color: #FFFFFF;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.common-flow__box__num span:after {
  display: block;
  margin-top: 4.8px;
  margin-top: 0.3rem;
  font-size: 18.08px;
  font-size: 1.13rem;
  content: counter(flow-num);
  counter-increment: flow-num;
}

.common-flow__box__inner {
  padding-top: 4.8px;
  padding-top: 0.3rem;
}

.common-flow__box__tit {
  margin-bottom: 0.3em;
  font-size: calc(0.94rem + 5 * (100vw - 280px) / 920);
  font-weight: 700;
}

/*--------------------------------------------------------------------/
	breadcrumb
/--------------------------------------------------------------------*/
.breadcrumb {
  z-index: 1;
  position: relative;
  padding: 32px 0;
  padding: 2rem 0;
}

.breadcrumb__list {
  -ms-flex-wrap: wrap;
  display: flex;
      flex-wrap: wrap;
  font-size: 0.9em;
}

.breadcrumb__list .item-home {
  font-size: 1.2em;
}

.breadcrumb__list li {
  position: relative;
}

.breadcrumb__list li:not(:last-child) {
  padding-right: 24px;
  padding-right: 1.5rem;
}

.breadcrumb__list li:not(:last-child):after {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.breadcrumb__list li:not(:last-child):after {
  position: absolute;
  top: 50%;
  right: 4.8px;
  right: 0.3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumb__list a {
  color: #979DA4;
  vertical-align: top;
  transition: all 0.3s ease 0s;
}

.breadcrumb__list a:first-child {
  text-decoration: none !important;
}

.breadcrumb__list a:hover {
  color: #243FC7;
}

/*--------------------------------------------------------------------/
	free01
/--------------------------------------------------------------------*/
.free01-intro {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  background: #243FC7;
}

.free01-intro__tit {
  margin-bottom: calc(1.5rem + 0.2em);
  color: #FFFFFF;
  font-size: calc(1.25rem + 4 * (100vw - 280px) / 920);
  text-align: center;
}

.free01-intro__tit span {
  padding: 0 0.2em;
}

.free01-intro__tit em {
  font-size: 2.28em;
  font-style: normal;
}

.free01-intro__txt {
  max-width: 960px;
  margin-right: auto;
  margin-bottom: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(2rem, 4vw, 4rem);
  margin-left: auto;
  color: #FFFFFF;
}

.free01-intro__list {
  counter-reset: free01-num;
}

.free01-intro__item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.free01-intro__item a {
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: clamp(8px, 1.5vw, 24px);
  background: #FFFFFF;
  color: #202020;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.free01-intro__item a:after {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.free01-intro__item a:after {
  z-index: 2;
  position: absolute;
  right: 3px;
  bottom: 5px;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 1.25rem;
}

.free01-intro__item a:hover .free01-intro__item__arrow {
  border-color: transparent transparent #E45A13 transparent;
}

.free01-intro__item__flex {
  display: flex;
}

.free01-intro__item__img {
  width: 30%;
  max-width: 120px;
  min-height: 100px;
  overflow: hidden;
}

.free01-intro__item__txt {
  -ms-flex-align: center;
  display: flex;
      align-items: center;
  width: 70%;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
}

.free01-intro__item__tit {
  padding-left: 1.84em;
  font-size: calc(1rem + 2 * (100vw - 280px) / 920);
  font-weight: 500;
  text-indent: -1.84em;
}

.free01-intro__item__arrow {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-width: 0 0 48px 48px;
  border-style: solid;
  border-color: transparent transparent #243FC7 transparent;
  content: "";
  transition: all 0.3s ease 0s;
}

.free01-list {
  padding-top: 80px;
  padding-top: 5rem;
  overflow: hidden;
  counter-reset: free01-num;
}

.free01-list .free01-box__wrap:nth-of-type(odd) .free01-box__block {
  background-color: #E8EEF6;
}

.free01-list .free01-box__wrap:nth-of-type(even) .free01-box__block {
  background-color: #243FC7;
}

.free01-box__wrap {
  overflow: hidden;
}

.free01-box__wrap:not(:last-of-type) {
  margin-bottom: 96px;
  margin-bottom: 6rem;
}

.free01-box__block {
  display: block;
  z-index: 2;
  position: absolute;
  bottom: 0;
  content: "";
}

.free01-box__img {
  z-index: 4;
  overflow: hidden;
}

.free01-box__txt {
  z-index: 3;
  position: relative;
  background: #FFFFFF;
}

.free01-box__txt:after {
  display: block;
  clear: both;
  content: "";
}

.free01-box__txt__inner {
  overflow: hidden;
}

.free01-box__tit {
  margin-bottom: calc(1rem + 0.2em);
  padding-bottom: calc(0.5rem + 0.2em);
  border-bottom: 1px solid #979DA4;
  font-size: calc(1.14rem + 4 * (100vw - 280px) / 920);
  font-weight: 500;
}

/*--------------------------------------------------------------------/
	company
/--------------------------------------------------------------------*/
.company-content {
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

.company-content__box {
  padding: 32px 4%;
  padding: 2rem 4%;
  background: #F8F8F8;
}

.company-greeting {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

.company-greeting__flex {
  margin-right: auto;
  margin-left: auto;
}

.company-greeting__pic img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.company-greeting__pic picture {
  margin-right: auto;
  margin-left: auto;
}

.company-greeting__pic figcaption {
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.accessmap {
  position: relative;
  height: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FFFFFF;
}

.accessmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  vertical-align: bottom;
}

.company-access__box__tit {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: calc(1rem + 2 * (100vw - 280px) / 920);
  font-weight: 500;
}

/*--------------------------------------------------------------------/
	recruit
/--------------------------------------------------------------------*/
/* recruit-merit */
.recruit-merit {
  z-index: 1;
  position: relative;
  margin-bottom: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.recruit-merit__inner {
  z-index: 3;
  position: relative;
}

.recruit-merit__txt {
  -ms-flex-pack: center;
  display: flex;
      justify-content: center;
}

.recruit-merit__txt__inner {
  display: inline-block;
  padding: 2em 5%;
  border-radius: clamp(16px, 2vw, 32px);
  background: #FFFFFF;
}

.recruit-merit__tit {
  margin-right: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-left: auto;
  color: #243FC7;
  font-size: calc(1.75rem + 8 * (100vw - 280px) / 920);
  font-weight: 700;
  text-align: center;
}

.recruit-merit__list {
  counter-reset: merit-num;
}

.recruit-merit__list > * {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.recruit-merit__box {
  position: relative;
}

.recruit-merit__box__img__inner picture {
  display: block;
}

.recruit-merit__box__txt {
  padding: 32px 6% 48px;
  padding: 2rem 6% 3rem;
  background: #FFFFFF;
}

.recruit-merit__box__txt__tit {
  position: relative;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 3.5em;
  border-bottom: 1px solid #C9CED2;
  font-size: 1.42em;
  font-weight: 500;
  vertical-align: text-bottom;
}

.recruit-merit__box__txt__tit:before {
  position: absolute;
  top: -0.3em;
  left: 0;
  margin-right: 0.2em;
  color: #243FC7;
  font-family: Poppins, sans-serif;
  font-size: 2.57em;
  line-height: 1;
  content: counter(merit-num, decimal-leading-zero);
  counter-increment: merit-num;
}

/* recruit-service */
.recruit-service {
  margin-bottom: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.recruit-service__flex {
  display: flex;
  margin-bottom: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.recruit-service__box__img {
  max-width: 70%;
  margin-right: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-left: auto;
}

.recruit-service__box__img__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
  border-radius: 50%;
}

.recruit-service__box__img__inner:before {
  display: block;
  position: relative;
  padding-top: 100%;
  content: "";
}

.recruit-service__box__img__inner > div,
.recruit-service__box__img__inner figure,
.recruit-service__box__img__inner a,
.recruit-service__box__img__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.recruit-service__box__tit {
  margin-bottom: 1em;
  color: #000;
  font-size: calc(0.94rem + 5 * (100vw - 280px) / 920);
  font-weight: 700;
  text-align: center;
}

.recruit-service__table {
  margin-bottom: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.recruit-service__table table {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recruit-service__table table .column-1 {
  width: 130px;
  padding: 24px 1.5em;
  padding: 1.5rem 1.5em;
  background: #243FC7;
  color: #FFFFFF;
  font-weight: 500;
  text-align: left;
}

.recruit-service__table table .column-2 {
  padding: 24px 1.5em;
  padding: 1.5rem 1.5em;
  background: #FFFFFF;
}

.recruit-service__area {
  padding-bottom: clamp(32px, 6vw, 96px);
  padding-bottom: clamp(2rem, 6vw, 6rem);
}

.recruit-service__area__inner {
  display: flex;
}

.recruit-service__area__img__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.recruit-service__area__img__inner:before {
  display: block;
  position: relative;
  padding-top: 100%;
  content: "";
}

.recruit-service__area__img__inner > div,
.recruit-service__area__img__inner figure,
.recruit-service__area__img__inner a,
.recruit-service__area__img__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.recruit-service__area__tit {
  margin-bottom: 1em;
  padding-bottom: .75em;
  border-bottom: 1px solid #243FC7;
  font-size: calc(1rem + 4 * (100vw - 280px) / 920);
  font-weight: 700;
}

/* recruit-introduction */
.recruit-introduction {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

.recruit-introduction .l-cont > *:not(:last-child) {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.recruit-introduction__box {
  display: flex;
  position: relative;
}

.recruit-introduction__txt {
  padding: 24px 6% 40px;
  padding: 1.5rem 6% 2.5rem;
}

.recruit-introduction__tit {
  margin-bottom: calc(0.5rem + 0.3em);
  padding-bottom: calc(0.5rem + 0.3em);
  border-bottom: 1px solid #C9CED2;
  font-size: calc(1rem + 4 * (100vw - 280px) / 920);
  font-weight: 500;
}

/* recruit-gallery */
.recruit-gallery {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  background: #F8F8F8;
}

.recruit-gallery__img {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recruit-gallery__img:before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}

.recruit-gallery__img > div,
.recruit-gallery__img figure,
.recruit-gallery__img a,
.recruit-gallery__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.recruit-gallery figcaption {
  margin-top: 8px;
  margin-top: 0.5rem;
}

/* recruit-step */

.recuit-step li.step-01 span:before, .recuit-step li.step-02 span:before, .recuit-step li.step-03 span:before {
  color: #FFFFFF;
}

.recuit-step li.step-04 span:before {
  color: #FFFFFF;
}

/*--------------------------------------------------------------------/
	works
/--------------------------------------------------------------------*/
.works-intro {
  padding: 32px 4%;
  padding: 2rem 4%;
  background: #F8F8F8;
  font-size: 1.28em;
  font-weight: 500;
}

.works-single__tit {
  position: relative;
  margin-bottom: calc(0.75rem + 0.2em);
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #C9CED2;
  font-size: calc(1.14rem + 2 * (100vw - 280px) / 920);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.works-single__tit:before {
  z-index: 1;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20%;
  min-width: 80px;
  min-width: 5rem;
  height: 1px;
  background: #243FC7;
  content: "";
}

.works-single__cat {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.works-single__cat .category-item {
  min-width: 120px;
  margin-right: 4.8px;
  margin-right: 0.3rem;
  margin-bottom: 6.4px;
  margin-bottom: 0.4rem;
  padding: 3.2px 16px;
  padding: 0.2rem 1rem;
  font-size: 12.96px;
  font-size: 0.81rem;
}

.works-single__cat__cont {
  font-weight: 500;
  line-height: 1.4;
  vertical-align: top;
}

/* スライダーを使用しない場合の一枚画像　*/
.works-single__main {
  max-width: 900px;
  height: auto;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-left: auto;
}

.works-single__main__img {
  position: relative;
}

.works-single__main__img__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.works-single__main__img__inner:before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}

.works-single__main__img__inner > div,
.works-single__main__img__inner figure,
.works-single__main__img__inner a,
.works-single__main__img__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works-single__main figcaption {
  display: inline-block;
  z-index: 1;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  bottom: 0;
  padding: 3.2px 6.4px;
  padding: 0.2rem 0.4rem;
  background: #000;
  color: #FFFFFF;
  font-size: 0.8em;
  line-height: 1.4;
}

/* works-slider */
.works-slider {
  position: relative;
  height: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.works-slider.is-thumbsuse {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.works-slider.is-thumbsnot {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-family: "slick";
  font-style: normal;
  font-weight: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  z-index: 3;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: none;
  outline: none;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  /*&.slick-disabled:before {
        opacity: $slick-opacity-not-active;
    }
    &:before {
        font-family: $slick-font-family;
        font-size: 20px;
        line-height: 1;
        color: $slick-arrow-color;
        opacity: $slick-opacity-default;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }*/
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.slick-prev {
  left: -15px;
}

[dir="rtl"] .slick-prev {
  right: -15px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -15px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -15px;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.slick-dots li button:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: black;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  content: "•";
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  color: black;
  opacity: 0.75;
}

/* gallery-top */
.gallery-top {
  position: relative;
}

.gallery-top__inner {
  position: relative;
  width: 100%;
}

.gallery-top .slick-arrow {
  -ms-flex-align: center;
  display: flex;
      align-items: center;
  border: 1px solid #C9CED2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease 0s;
}

.gallery-top .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-top .slick-arrow i {
  -ms-flex-pack: center;
  -ms-flex-align: center;
  display: flex;
      align-items: center;
      justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-size: 1.25rem;
}

.gallery-top .slick-arrow i:before {
  color: #C9CED2;
}

.gallery-top .slick-prev:before {
  display: none;
}

.gallery-top .slick-next:before {
  display: none;
}

.gallery-top .sp-slide {
  position: relative;
  overflow: hidden;
}

.gallery-top .sp-slide__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-top .sp-slide__inner:before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}

.gallery-top .sp-slide__inner > div,
.gallery-top .sp-slide__inner figure,
.gallery-top .sp-slide__inner a,
.gallery-top .sp-slide__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-top .sp-slide figcaption {
  display: inline-block;
  z-index: 1;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  bottom: 0;
  padding: 3.2px 6.4px;
  padding: 0.2rem 0.4rem;
  background: #000;
  color: #FFFFFF;
  font-size: 0.8em;
  line-height: 1.4;
}

/* gallery-thumbs */
.gallery-thumbs {
  position: relative;
}

.gallery-thumbs__inner {
  position: relative;
  width: 100%;
}

.gallery-thumbs .slick-arrow {
  -ms-flex-align: center;
  display: flex;
  display: flex;
      align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #C9CED2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease 0s;
}

.gallery-thumbs .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-thumbs .slick-arrow i {
  -ms-flex-pack: center;
  -ms-flex-align: center;
  display: flex;
      align-items: center;
      justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-size: 1.25rem;
}

.gallery-thumbs .slick-arrow i:before {
  color: #C9CED2;
}

.gallery-thumbs .slider-nav {
  background: #E5E9EC;
}

.gallery-thumbs .slick-list {
  padding: 0 !important;
}

.gallery-thumbs .slick-track {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  left: 0 !important;
  width: 100%;
  opacity: 1;
}

.is-thumbsuse .gallery-thumbs__list .slick-slide {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.is-thumbsnot .gallery-thumbs__list {
  -ms-flex-wrap: wrap;
  display: flex;
      flex-wrap: wrap;
}

.gallery-thumbs__list .sp-thumbnail {
  border: 1px solid #C9CED2;
  transition: all 0.3s ease 0s;
}

.gallery-thumbs__list .sp-thumbnail:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  opacity: 0.6;
}

.is-thumbsuse .gallery-thumbs__list .sp-thumbnail img {
  height: 11.97vw;
}

.gallery-thumbs__list .sp-thumbnail__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-thumbs__list .sp-thumbnail__inner:before {
  display: block;
  position: relative;
  padding-top: 100%;
  content: "";
}

.gallery-thumbs__list .sp-thumbnail__inner > div,
.gallery-thumbs__list .sp-thumbnail__inner figure,
.gallery-thumbs__list .sp-thumbnail__inner a,
.gallery-thumbs__list .sp-thumbnail__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* サムネイル画像の動きの調整 */
.sp-thumbnail.fade-up.fade-up-trigger--off,
.fade-up-trigger--off .sp-thumbnail.fade-up {
  -webkit-transform: translateY(10px) !important;
  transform: translateY(10px) !important;
}

.sp-thumbnail.fade-up.fade-up-trigger--on,
.fade-up-trigger--on .sp-thumbnail.fade-up {
  transition: all 0.6s cubic-bezier(0.36, 0.11, 0.65, 0.92);
}

/* works-comments */
.works-comment {
  padding: 32px 4%;
  padding: 2rem 4%;
  background: #F8F8F8;
}

.works-pdf {
  margin-top: 32px;
  margin-top: 2rem;
}

.works-pdf__list li:not(:last-of-type) {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.works-pdf__list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 4% 16px 64px;
  padding: 1rem 4% 1rem 4rem;
  border: 1px solid #C9CED2;
  color: #202020;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.works-pdf__list li a:before {
  position: absolute;
  top: 9.6px;
  top: 0.6rem;
  left: 16px;
  left: 1rem;
  width: 30px;
  height: 34px;
  background: url("../img/common/pdf.svg") no-repeat;
  content: "";
}

.works-pdf__list li a:hover {
  border-color: #979DA4;
  background: #979DA4;
  color: #FFFFFF;
}

.works-video__video__inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.works-video__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works-access__map {
  position: relative;
  height: 0;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 0;
  overflow: hidden;
  background-color: #FFFFFF;
}

.works-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.works-btn-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/*--------------------------------------------------------------------/
	contact_form
/--------------------------------------------------------------------*/
/* contact-merit */
.contact-merit {
  z-index: 1;
  position: relative;
  margin-bottom: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.contact-merit__inner {
  z-index: 3;
  position: relative;
}

.contact-merit__txt {
  -ms-flex-pack: center;
  display: flex;
      justify-content: center;
}

.contact-merit__txt__inner {
  display: inline-block;
  padding: 2em 5%;
  border-radius: clamp(16px, 2vw, 32px);
  background: #FFFFFF;
}

.contact-merit__tit {
  margin-right: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-left: auto;
  color: #578FE4;
  font-size: calc(1.14rem + 8 * (100vw - 280px) / 920);
  font-weight: 500;
  text-align: center;
}

.contact-merit__tit span {
  display: block;
  font-size: calc(1.75rem + 8 * (100vw - 280px) / 920);
  font-weight: 500;
  line-height: 1;
}

.contact-merit__tit span b {
  font-size: 2em;
  font-weight: 700;
}

.contact-merit__list {
  counter-reset: merit-num;
}

.contact-merit__list > * {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.contact-merit__box {
  position: relative;
}

.contact-merit__box__img__inner picture {
  display: block;
}

.contact-merit__box__txt {
  padding: 32px 6% 48px;
  padding: 2rem 6% 3rem;
  background: #FFFFFF;
}

.contact-merit__box__txt__tit {
  position: relative;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 3.5em;
  border-bottom: 1px solid #C9CED2;
  font-size: 1.42em;
  font-weight: 500;
  vertical-align: text-bottom;
}

.contact-merit__box__txt__tit:before {
  position: absolute;
  top: -0.3em;
  left: 0;
  margin-right: 0.2em;
  color: #578FE4;
  font-family: Poppins, sans-serif;
  font-size: 2.57em;
  line-height: 1;
  content: counter(merit-num, decimal-leading-zero);
  counter-increment: merit-num;
}

.contact-box {
  padding: 16px 4% 32px;
  padding: 1rem 4% 2rem;
  text-align: center;
}

.contact-box__icon {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-left: auto;
  border-radius: 50%;
  background: #243FC7;
  color: #FFFFFF;
}

.contact-box__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24.96px;
  font-size: 1.56rem;
}

.contact-box__tit {
  font-size: calc(1rem + 4 * (100vw - 280px) / 920);
}

.contact-box__tel {
  font-family: Poppins, sans-serif;
  font-size: 2.57em;
}

.contact-box__tel i {
  margin-right: 4.8px;
  margin-right: 0.3rem;
  color: #979DA4;
  font-size: 0.7em;
}

.contact-box__tel a {
  color: #202020;
}

.contact-step ol {
  display: flex;
  counter-reset: contact-num;
}

.contact-step ol li {
  position: relative;
  color: #202020;
  font-size: 14.08px;
  font-size: 0.88rem;
}

.contact-step ol li span:before {
  display: block;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
  color: #979DA4;
  font-family: Poppins, sans-serif;
  line-height: 1;
  content: counter(contact-num, decimal-leading-zero);
  counter-increment: contact-num 1;
}

.contact-step ol li:not(:last-child):after {
  position: absolute;
  background: #979DA4;
  content: "";
}

.contact-step ol li.now span:before {
  color: #FFFFFF;
}

.contact-step ol li.before span:before {
  color: #202020;
}

.jobseeker-flow {
  margin-bottom: clamp(64px, 9vw, 144px);
  margin-bottom: clamp(4rem, 9vw, 9rem);
}

.jobseeker-form .contact-box__icon {
  background: #578FE4;
}

.jobseeker-form .contact-step li.now span:before {
  color: #FFFFFF;
}

.jobseeker-form .contact-step li.before span:before {
  color: #FFFFFF;
}

.contact-privacy {
  border: 1px solid #979DA4;
}

.contact-privacy__tit {
  font-size: calc(1rem + 4 * (100vw - 280px) / 920);
  font-weight: 400;
  text-align: center;
}

.contact-privacy__tit.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*-------------------------------------------------
	contact form
-------------------------------------------------*/
/* variablea */
.contact-form .btn-wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.contact-table {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.2;
}

.contact-table img {
  width: 100%;
}

.contact-table th,
.contact-table td {
  text-align: left;
}

.contact-table th {
  font-weight: 400;
  vertical-align: top;
}

.contact-table th .required {
  margin-left: 0.3em;
  padding: 0.2em 0.4em;
  font-size: 0.9em;
  line-height: 1;
}

.contact-table textarea {
  width: 100%;
}

input,
select {
  width: auto;
}

input.long,
select.long {
  width: 100%;
}

input.middle,
select.middle {
  width: 100%;
}

input.short,
select.short {
  width: 100%;
}

input.mini,
select.mini {
  width: 10em;
}

button[class*="sub-btn"],
button[class*="back-btn"],
button[class*="chack-btn"] {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

button[class*="sub-btn"] {
  display: block;
  position: relative;
  width: 100%;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  border: 1px solid #243FC7;
  border-radius: 50px;
  background-color: #243FC7;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

button[class*="sub-btn"]:hover {
  border-color: #E45A13;
  background-color: #E45A13;
  color: #FFFFFF;
}

button[class*="back-btn"] {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  border: 1px solid #E5E9EC;
  border-radius: 50px;
  background-color: #E5E9EC;
  color: #4B4D4E;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

button[class*="back-btn"]:hover {
  border-color: #000;
  background-color: #000;
  color: #FFFFFF;
}

button[class*="chack-btn"] {
  display: block;
  position: relative;
  width: 100%;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  border: 1px solid #243FC7;
  border-radius: 50px;
  background-color: #243FC7;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

button[class*="chack-btn"]:hover {
  border-color: #E45A13;
  background-color: #E45A13;
  color: #FFFFFF;
}

.jobseeker-form button[class*="sub-btn"] {
  display: block;
  position: relative;
  width: 100%;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  border: 1px solid #578FE4;
  border-radius: 50px;
  background-color: #578FE4;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.jobseeker-form button[class*="sub-btn"]:hover {
  border-color: #E45A13;
  background-color: #E45A13;
  color: #FFFFFF;
}

.jobseeker-form button[class*="chack-btn"] {
  display: block;
  position: relative;
  width: 100%;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  border: 1px solid #578FE4;
  border-radius: 50px;
  background-color: #578FE4;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.jobseeker-form button[class*="chack-btn"]:hover {
  border-color: #E45A13;
  background-color: #E45A13;
  color: #FFFFFF;
}

[type="button"],
[type="submit"] {
  -webkit-appearance: none;
}

/* radio-btn */
.mwform-radio-field:not(:last-child) {
  margin-right: 1em;
}

.mwform-radio-field-text {
  vertical-align: top;
}

input[type="radio"] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  opacity: 0;
}

input[type="radio"] + .mwform-radio-field-text:before {
  display: inline-block;
  position: relative;
  top: 0;
  width: 20px;
  height: 20px;
  margin-right: 1em;
  border: 1px solid #979DA4;
  border-radius: 100%;
  background: #FCFCFC;
  text-align: center;
  vertical-align: top;
  content: "";
  cursor: pointer;
  transition: all 0.4s ease;
}

input[type="radio"]:checked + .mwform-radio-field-text:before {
  background-color: #243FC7;
  box-shadow: inset 0 0 0 5px #F8F8F8;
}

input[type="radio"]:focus + .mwform-radio-field-text:before {
  border-color: #243FC7;
  outline: none;
}

input[type="radio"]:disabled + .mwform-radio-field-text:before {
  border-color: #979DA4;
  background: #FCFCFC;
  box-shadow: inset 0 0 0 4px #979DA4;
}

input[type="radio"] + .mwform-radio-field-text:empty:before {
  margin-right: 0;
}

.vertical-item:not(:first-of-type) {
  margin-top: 16px !important;
  margin-top: 1rem !important;
}

/* chack-btn */

@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 10px;
  }
}

@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 10px;
  }
}

@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 24px;
  }
}

@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 24px;
  }
}

input[type="checkbox"] {
  display: none;
}

.check-box .vertical-item:not(:first-of-type) {
  margin-top: 16px !important;
  margin-top: 1rem !important;
}

.check-box label {
  position: relative;
  cursor: pointer;
}

.check-box label:before {
  display: block;
  z-index: 1;
  position: absolute;
  top: -0.05em;
  left: 0;
  width: 20px;
  height: 20px;
  margin-right: 1em;
  border: 1px solid #979DA4;
  background-color: transparent;
  content: "";
  transition: border-color ease 0.2s;
}

.mwform-checkbox-field-text {
  display: block;
  padding-left: calc(20px + 1rem);
  vertical-align: top;
}

.mwform-checkbox-field-text:before, .mwform-checkbox-field-text:after {
  display: inline-block;
  z-index: 1;
  position: absolute;
  width: 4px;
  height: 0;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background-color: #243FC7;
  content: "";
  transition: opacity ease 0.5;
}

.mwform-checkbox-field-text:before {
  top: 17.2px;
  left: 8px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.mwform-checkbox-field-text:after {
  top: 10px;
  left: 0.6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text,
.mwform-checkbox-field-text.checked {
  border-color: #243FC7;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text:after,
.mwform-checkbox-field-text.checked:after {
  height: 10px;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text:before,
.mwform-checkbox-field-text.checked:before {
  height: 24px;
  box-shadow: 0 0 0 1px #FFFFFF;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

.mw_wp_form .error {
  margin-top: 11.2px;
  margin-top: 0.7rem;
}

/* form-parts
----------------------------------------------------------------*/
input, textarea, select {
  padding: 1em;
  border: 1px solid #979DA4;
  background-color: #FCFCFC;
  line-height: 1.5;
}

input:focus, textarea:focus, select:focus {
  background-color: #fff;
  box-shadow: rgba(58, 134, 232, 0.25) 0 0 4px 1px;
}

input::-webkit-input-placeholder, input:-moz-placeholder, input:-ms-input-placeholder {
  color: #979DA4;
}

textarea {
  height: 10em;
}

/*--------------------------------------------------------------------/
	blog
/--------------------------------------------------------------------*/

.contents-left {
  width: 100%;
}

/*
	single-page
/--------------------------------------------------------------------*/
.single-cont__txt {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

.single-cont__txt:after {
  display: block;
  clear: both;
  content: "";
}

.single-cont__thumbnail {
  width: 50%;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  margin-left: 6%;
  float: right;
}

.single-sub {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.single-date {
  margin-right: 16px;
  margin-right: 1rem;
  margin-bottom: .3em;
  color: #979DA4;
  font-family: Poppins, sans-serif;
  line-height: 1.4;
}

/* align */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  margin-left: 1.5em;
  float: right;
}

.alignleft {
  margin-right: 1.5em;
  float: left;
}

.blog-pdf {
  margin-top: 32px;
  margin-top: 2rem;
}

.blog-pdf__list li:not(:last-of-type) {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.blog-pdf__list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 4% 16px 64px;
  padding: 1rem 4% 1rem 4rem;
  border: 1px solid #C9CED2;
  color: #202020;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.blog-pdf__list li a:before {
  position: absolute;
  top: 9.6px;
  top: 0.6rem;
  left: 16px;
  left: 1rem;
  width: 30px;
  height: 34px;
  background: url("../img/common/pdf.svg") no-repeat;
  content: "";
}

.blog-pdf__list li a:hover {
  border-color: #979DA4;
  background: #979DA4;
  color: #FFFFFF;
}

.single-nextprev {
  position: relative;
  margin-top: clamp(48px, 5vw, 80px);
  margin-top: clamp(3rem, 5vw, 5rem);
}

.single-nextprev a {
  -ms-flex-align: stretch;
  display: flex;
  position: relative;
      align-items: stretch;
  width: 100%;
  padding: 1em 0;
  border-top: 1px solid #E5E9EC;
  border-bottom: 1px solid #E5E9EC;
  color: #202020;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.single-nextprev__img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.single-nextprev__img__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.single-nextprev__img__inner:before {
  display: block;
  position: relative;
  padding-top: 100%;
  content: "";
}

.single-nextprev__img__inner > div,
.single-nextprev__img__inner figure,
.single-nextprev__img__inner a,
.single-nextprev__img__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-nextprev__txt {
  -ms-flex-negative: 1;
  position: relative;
      flex-shrink: 1;
  width: calc(100% - 80px);
  padding: .5em 1.5em 28px;
  padding: .5em 1.5em 1.75rem;
}

.single-nextprev__time {
  color: #979DA4;
  font-family: Poppins, sans-serif;
  font-size: 14.08px;
  font-size: 0.88rem;
}

.single-nextprev__arrow {
  font-size: 12.96px;
  font-size: 0.81rem;
}

.single-nextprev .next_post {
  position: relative;
}

.single-nextprev .next_post a {
  -ms-flex-pack: end;
  flex-direction: row-reverse;
      justify-content: flex-end;
}

.single-nextprev .next_post a:hover .single-nextprev__arrow {
  margin-left: -5px;
  color: #243FC7;
}

.single-nextprev .next_post .single-nextprev__arrow {
  position: absolute;
  bottom: 0;
  left: 1.75em;
  vertical-align: middle;
  vertical-align: top;
  transition: all 0.3s ease 0s;
}

.single-nextprev .next_post .single-nextprev__arrow:before {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.single-nextprev .next_post .single-nextprev__arrow:before {
  font-size: 20px;
  font-size: 1.25rem;
}

.single-nextprev .prev_post {
  position: relative;
}

.single-nextprev .prev_post a {
  justify-content: flex-end;
}

.single-nextprev .prev_post a:hover .single-nextprev__arrow {
  margin-right: -5px;
  color: #243FC7;
}

.single-nextprev .prev_post .single-nextprev__txt {
  -ms-flex-pack: end;
  display: flex;
      justify-content: flex-end;
}

.single-nextprev .prev_post .single-nextprev__arrow {
  position: absolute;
  right: 1.75em;
  bottom: 0;
  vertical-align: top;
  transition: all 0.3s ease 0s;
}

.single-nextprev .prev_post .single-nextprev__arrow:after {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.single-nextprev .prev_post .single-nextprev__arrow:after {
  font-size: 20px;
  font-size: 1.25rem;
}

/*
AddToAny（シェア追加プラグイン）用　css
管理画面にて下記を参考に設定

/*投稿の上部にボタンを表示
.addtoany_content{
	margin-bottom: 1.5em;
}
/*投稿の下部にボタンを表示
.addtoany_content{
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top:1px solid #ddd;
}
*/
/*--------------------------------------------------------------------/
	aside
/--------------------------------------------------------------------*/

.aside-widget:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.aside-widget__tit {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 4.8px 0 8px;
  padding: 0.3rem 0 0.5rem;
  border-bottom: 1px solid #C9CED2;
  font-size: 1.28em;
  font-weight: 500;
}

.aside-widget ul li a {
  padding-left: 1.3em;
  color: #202020;
  text-decoration: none !important;
  text-indent: -1.3em;
}

.aside-widget ul li a:before {
  display: inline-block;
  padding-right: 0.2em;
  padding-bottom: 0.1em;
  color: #979DA4;
  font-size: 1em;
  text-decoration: none !important;
  vertical-align: baseline;
  content: "●";
}

.aside-widget ul li a:hover {
  text-decoration: underline !important;
}

.tag-cloud-link {
  position: relative;
  margin-right: 8px;
  margin-right: 0.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  color: #202020;
  font-size: 16px !important;
  font-size: 1rem !important;
  text-decoration: none !important;
}

.tag-cloud-link:before {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.tag-cloud-link:before {
  position: absolute;
  top: 0.5em;
  left: 3.2px;
  left: 0.2rem;
  color: #979DA4;
  font-size: 1em;
  text-decoration: none !important;
}

.tag-cloud-link:hover {
  text-decoration: underline !important;
}

/* calendar
------------------------------------*/
#wp-calendar {
  width: 100%;
  border-collapse: separate;
}

.calendar_wrap {
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #C9CED2;
}

.wp-calendar-table {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.wp-calendar-table caption {
  padding: 4.8px 2%;
  padding: 0.3rem 2%;
}

.wp-calendar-table thead th {
  width: auto;
  padding: 6px;
  color: #979DA4;
  font-weight: 500;
  text-align: center;
}

.wp-calendar-table td {
  border: 2px solid #FFFFFF;
  background: #F8F8F8;
  font-size: 1.07em;
  line-height: 2;
  text-align: center;
}

.wp-calendar-table td a {
  display: block;
  background-color: #243FC7;
  color: #FFFFFF;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.wp-calendar-table td a:hover {
  background-color: #C63B0A;
}

.wp-calendar-table td.pad {
  background: transparent;
}

.wp-calendar-table td#today {
  background: #979DA4;
  color: #FFFFFF;
}

.wp-calendar-nav {
  -ms-flex-pack: justify;
  display: flex;
      justify-content: space-between;
  width: 100%;
  padding-bottom: 4.8px;
  padding-bottom: 0.3rem;
}

.wp-calendar-nav a {
  display: block;
  padding: 6.4px 16px;
  padding: 0.4rem 1rem;
  background-color: #F8F8F8;
  color: #202020;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.wp-calendar-nav a:hover {
  background-color: #979DA4;
  color: #FFFFFF;
}

/*--------------------------------------------------------------------/
	search-form
/--------------------------------------------------------------------*/
.wp-block-search__inside-wrapper {
  -ms-flex-pack: justify;
  display: flex;
  position: relative;
      justify-content: space-between;
  width: 100%;
  padding: 0 !important;
  border: 1px solid #979DA4 !important;
}

.wp-block-search__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: calc(100% - 50px);
  height: 40px;
  padding: 0 10px !important;
  border: none;
  border-radius: 2px !important;
  outline: 0;
  background: #FFFFFF;
}

.wp-block-search__button {
  width: 50px !important;
  height: 40px !important;
  padding: 2px !important;
  border: none !important;
  background: none !important;
  background: #FFFFFF !important;
  color: #C9CED2 !important;
  font-size: 20px !important;
  vertical-align: bottom !important;
  cursor: pointer !important;
  transition: all 0.3s ease 0s;
}

.wp-block-search__button:hover {
  color: #2469B7 !important;
}

/*--------------------------------------------------------------------/
	archives
/--------------------------------------------------------------------*/
.wp-block-archives > label {
  display: none !important;
}

.wp-block-archives select {
  width: 80% !important;
}

@media (min-width: 376px) {
  /*====================================================================/
/*--iPhone 以上--
/====================================================================*/
}

@media (min-width: 576px) {
  /*====================================================================/
/*--スマホ 以上--
/====================================================================*/
  .common-flow__box {
    padding: 2em 4% 2em 110px;
  }
  .common-flow__box:not(:last-of-type):after {
    left: calc(4% + 28px);
  }
  .common-flow__box__num {
    top: 1em;
    left: 4%;
  }
  .contact-form .btn-wrap {
    max-width: 320px;
  }
  .single-sub {
    -ms-flex-align: start;
    display: flex;
        align-items: flex-start;
    margin-bottom: 2rem;
  }
  .single-nextprev__img {
    width: 100px;
    height: 100px;
  }
  .single-nextprev__txt {
    width: calc(100% - 100px);
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
/*--スマホ以上 タブレット iPadmini未満--
/====================================================================*/
}

@media (min-width: 576px) and (max-width: 1256px) {
  .recruit-merit__box {
    display: flex;
    overflow: hidden;
    border: 1px solid #C9CED2;
    border-radius: 16px;
    background: #FFFFFF;
  }
  .recruit-merit__box__img {
    width: 30%;
    min-width: 150px;
  }
  .recruit-merit__box__img__inner {
    display: block;
    height: 100%;
  }
  .recruit-merit__box__img__inner a {
    height: 100%;
  }
  .recruit-merit__box__img__inner picture {
    height: 100%;
  }
  .recruit-merit__box__txt {
    flex-basis: 70%;
  }
  .contact-merit__box {
    display: flex;
    overflow: hidden;
    border: 1px solid #C9CED2;
    border-radius: 16px;
    background: #FFFFFF;
  }
  .contact-merit__box__img {
    width: 30%;
    min-width: 150px;
  }
  .contact-merit__box__img__inner {
    display: block;
    height: 100%;
  }
  .contact-merit__box__img__inner a {
    height: 100%;
  }
  .contact-merit__box__img__inner picture {
    height: 100%;
  }
  .contact-merit__box__txt {
    flex-basis: 70%;
  }
}

@media (min-width: 768px) {
  /*====================================================================/
/*--タブレット　iPadmini 以上--
/====================================================================*/
  .main-view {
    height: 315px;
  }
  .common-flow__box__tit {
    font-size: calc(1rem + 4 * (100vw - 768px) / 432);
  }
  .free01-intro {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .free01-intro__tit em {
    font-size: 2.13em;
  }
  .free01-list {
    padding-top: 9rem;
  }
  .company-content {
    padding-bottom: 8rem;
  }
  .company-content__box {
    padding: 2.5rem 3.5rem;
  }
  .company-greeting {
    padding-bottom: 8rem;
  }
  .recruit-merit__txt__inner {
    padding: 2em 8%;
    text-align: center;
  }
  .recruit-merit__box__txt__tit {
    font-size: 1.33em;
  }
  .recruit-merit__box__txt__tit:before {
    font-size: 2.4em;
  }
  .recruit-service__flex {
    justify-content: space-between;
    -webkit-column-gap: 4%;
    -moz-column-gap: 4%;
    column-gap: 4%;
  }
  .recruit-service__flex > * {
    width: 48%;
  }
  .recruit-service__flex > * {
    width: 42%;
  }
  .recruit-service__box__tit {
    font-size: calc(0.9rem + 4 * (100vw - 768px) / 432);
  }
  .recruit-service__area__inner {
    -ms-flex-pack: justify;
    align-items: center;
        justify-content: space-between;
    -webkit-column-gap: 8%;
    -moz-column-gap: 8%;
    column-gap: 8%;
  }
  .recruit-service__area__txt {
    width: 50%;
  }
  .recruit-service__area__img {
    width: 42%;
  }
  .recruit-service__area__tit {
    font-size: calc(1rem + 4 * (100vw - 768px) / 432);
  }
  .recruit-introduction {
    margin-bottom: 6rem;
  }
  .recruit-introduction .l-cont > *:not(:last-child) {
    margin-bottom: 4rem;
  }
  .recruit-introduction .l-cont > *:nth-of-type(odd) .recruit-introduction__txt {
    padding-right: 26%;
  }
  .recruit-introduction .l-cont > *:nth-of-type(odd) .recruit-introduction__img {
    right: 0;
  }
  .recruit-introduction .l-cont > *:nth-of-type(even) .recruit-introduction__box {
    justify-content: flex-end;
  }
  .recruit-introduction .l-cont > *:nth-of-type(even) .recruit-introduction__txt {
    padding-left: 26%;
  }
  .recruit-introduction .l-cont > *:nth-of-type(even) .recruit-introduction__img {
    left: 0;
  }
  .recruit-introduction__box {
    padding-top: 2rem;
  }
  .recruit-introduction__txt {
    width: 80%;
    min-height: 300px;
    padding: 2.5rem 6% 3rem;
    border: 1px solid #C9CED2;
  }
  .recruit-introduction__tit {
    font-size: calc(1.14rem + 2 * (100vw - 768px) / 432);
  }
  .recruit-introduction__img {
    position: absolute;
    top: -2rem;
    width: 40%;
    max-width: 480px;
  }
  .recruit-introduction__img figure {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .recruit-introduction__img figure:before {
    display: block;
    position: relative;
    padding-top: 75%;
    content: "";
  }
  .recruit-introduction__img figure > div,
  .recruit-introduction__img figure figure,
  .recruit-introduction__img figure a,
  .recruit-introduction__img figure picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .works-intro {
    font-size: 1.2em;
  }
  .contact-merit__txt__inner {
    padding: 2em 8%;
    text-align: center;
  }
  .contact-merit__box__txt__tit {
    font-size: 1.33em;
  }
  .contact-merit__box__txt__tit:before {
    font-size: 2.4em;
  }
  .contact-box__tel {
    font-size: 2.4em;
  }
  .contact-privacy .txt {
    font-size: 1.07em;
  }
  input.middle,
  select.middle {
    width: 70%;
  }
  input.short,
  select.short {
    width: 30%;
  }
  .single-cont__txt {
    margin-bottom: 6rem;
  }
  .aside-widget__tit {
    font-size: 1.2em;
  }
  .aside-widget ul li a:before {
    font-size: 0.93em;
  }
  .tag-cloud-link:before {
    font-size: 0.93em;
  }
  .wp-calendar-table td {
    font-size: 1em;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*====================================================================/
/*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
/====================================================================*/
  .single-nextprev {
    -ms-grid-columns: 50% 50%;
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
  .single-nextprev:after {
    position: absolute;
    top: 1em;
    left: 50%;
    width: 1px;
    height: calc(100% - 2em);
    background: #E5E9EC;
    content: "";
  }
  .single-nextprev .next_post {
    -ms-grid-column: 1;
        grid-column: 1;
  }
  .single-nextprev .prev_post {
    -ms-grid-column: 2;
        grid-column: 2;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .contact-step ol li span {
    font-size: 1.2em;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .contact-privacy .txt {
    font-size: 1em;
  }
}

@media (min-width: 1024px) {
  /*====================================================================/
/*--XGAサイズ　iPadPro 以上--
/====================================================================*/
  .main-view__tit {
    padding: 1rem 4rem;
  }
  .common-flow__box {
    padding: 1.5em 4% 3em 160px;
  }
  .common-flow__box:not(:last-of-type):after {
    left: calc(4% + 38px);
  }
  .common-flow__box__num {
    width: 80px;
    height: 80px;
  }
  .common-flow__box__num span {
    padding-top: 1.25rem;
    font-size: 0.94rem;
  }
  .common-flow__box__num span:after {
    font-size: 1.5rem;
  }
  .common-flow__box__inner {
    padding-top: 1rem;
  }
  .free01-intro__tit em {
    font-size: 2em;
  }
  .free01-intro__list {
    -ms-flex-wrap: wrap;
    row-gap: 1rem;
    display: flex;
        flex-wrap: wrap;
    -webkit-column-gap: 2.16%;
    -moz-column-gap: 2.16%;
    column-gap: 2.16%;
  }
  .free01-intro__list > * {
    width: 31.83%;
  }
  .free01-intro__item__tit {
    font-size: calc(1rem + 2 * (100vw - 1000px) / 200);
  }
  .free01-list .free01-box__wrap:nth-of-type(odd) .free01-box__block {
    right: 0;
    border-top-left-radius: 1.75rem;
    border-bottom-left-radius: 1.75rem;
  }
  .free01-list .free01-box__wrap:nth-of-type(odd) .free01-box__img {
    left: calc(50% + 180px);
  }
  .free01-list .free01-box__wrap:nth-of-type(odd) .free01-box__txt__inner {
    padding-right: 8rem;
    float: right;
  }
  .free01-list .free01-box__wrap:nth-of-type(even) .free01-box__block {
    left: 0;
    border-top-right-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }
  .free01-list .free01-box__wrap:nth-of-type(even) .free01-box__img {
    right: calc(50% + 180px);
  }
  .free01-list .free01-box__wrap:nth-of-type(even) .free01-box__txt {
    float: right;
  }
  .free01-list .free01-box__wrap:nth-of-type(even) .free01-box__txt__inner {
    left: left;
    padding-left: 8rem;
  }
  .free01-box {
    position: relative;
    padding-top: 2rem;
    padding-bottom: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
  }
  .free01-box__wrap:not(:last-of-type) {
    margin-bottom: 8rem;
  }
  .free01-box__block {
    width: 70%;
    height: 80%;
    min-height: 300px;
  }
  .free01-box__img {
    position: absolute;
    top: 0;
    width: 35%;
    max-width: 420px;
    border-radius: clamp(16px, 1.5vw, 24px);
  }
  .free01-box__txt {
    display: block;
    bottom: 0;
    width: calc(50% + 240px);
    min-height: 360px;
    border-radius: 1.75rem;
  }
  .free01-box__txt__inner {
    max-width: 840px;
    padding: 3rem;
  }
  .company-greeting__flex {
    -ms-flex-pack: justify;
    display: flex;
        justify-content: space-between;
  }
  .company-greeting__flex.f-right {
    flex-direction: row-reverse;
  }
  .company-greeting__flex .company-greeting__txt {
    width: 60.41%;
  }
  .company-greeting__pic {
    width: 29.16%;
  }
  .accessmap {
    padding-bottom: 40%;
  }
  .company-access__flex {
    -ms-flex-pack: justify;
    display: flex;
        justify-content: space-between;
  }
  .company-access__flex > * {
    width: 47.5%;
  }
  .company-access__flex .accessmap {
    padding-bottom: 66.66%;
  }
  .recruit-merit {
    padding-top: 5rem;
  }
  .recruit-merit:before {
    display: block;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: url(../img/lv2/enterprise-bg_pc.jpg) top center/cover no-repeat;
    content: "";
  }
  .recruit-merit__box__txt__tit {
    font-size: 1.25em;
  }
  .recruit-merit__box__txt__tit:before {
    font-size: 2.25em;
  }
  .recruit-service__flex {
    -webkit-column-gap: 16%;
    -moz-column-gap: 16%;
    column-gap: 16%;
  }
  .recruit-service__box__tit {
    font-size: 1.25rem;
  }
  .recruit-gallery {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  .recuit-step li.step-01, .recuit-step li.step-02, .recuit-step li.step-03 {
    border-color: #578FE4;
    background: #578FE4;
    color: #FFFFFF;
  }
  .recuit-step li.step-04 {
    border-color: #F24949;
    background: #F24949;
    color: #FFFFFF;
  }
  .works-intro {
    font-size: 1.12em;
  }
  .works-intro {
    padding: 2rem 3rem;
    text-align: center;
  }
  .works-single__cat {
    -ms-flex-align: start;
    display: flex;
        align-items: flex-start;
  }
  .works-single__cat .category-list__items {
    margin-right: 1rem;
  }
  .works-single__cat__cont {
    padding-top: 0.1rem;
    font-size: 1em;
  }
  .works-slider {
    -ms-flex-pack: justify;
    display: flex;
        justify-content: space-between;
    margin-bottom: 3rem;
  }
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-prev {
    left: -20px;
  }
  [dir="rtl"] .slick-prev {
    right: -20px;
  }
  .slick-next {
    right: -20px;
  }
  [dir="rtl"] .slick-next {
    left: -20px;
  }
  .is-thumbsuse .gallery-top {
    width: 720px;
  }
  .is-thumbsnot .gallery-top {
    width: 60%;
    max-width: 720px;
  }
  .gallery-top .slick-arrow i {
    width: 40px;
    height: 40px;
  }
  .is-thumbsuse .gallery-thumbs {
    position: absolute;
    top: 50%;
    right: 0;
    width: 16%;
    min-width: 138px;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .is-thumbsnot .gallery-thumbs {
    width: 32%;
  }
  .gallery-thumbs .slick-arrow {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .gallery-thumbs .slick-arrow i {
    width: 40px;
    height: 40px;
  }
  .gallery-thumbs .slick-arrow i:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .gallery-thumbs .slick-prev {
    top: -20px;
  }
  .gallery-thumbs .slick-next {
    top: calc(100% - 20px);
  }
  .gallery-thumbs .slick-list {
    padding: 0 0 !important;
  }
  .gallery-thumbs .slick-track {
    left: 0 !important;
  }
  .is-thumbsuse .gallery-thumbs__list .slick-slide {
    max-height: 92px;
    margin: 2px 0;
    padding: 0;
  }
  .is-thumbsnot .gallery-thumbs__list {
    row-gap: 1.6vw;
    -webkit-column-gap: 5%;
    -moz-column-gap: 5%;
    column-gap: 5%;
  }
  .is-thumbsnot .gallery-thumbs__list > * {
    width: 30%;
  }
  .is-thumbsuse .gallery-thumbs__list .sp-thumbnail img {
    height: 90px;
  }
  .works-comment {
    padding: 2.5rem 3.5rem;
  }
  .works-pdf {
    margin-top: 3rem;
  }
  .works-video__flex {
    -ms-flex-pack: justify;
    display: flex;
        justify-content: space-between;
  }
  .works-video__video {
    flex-basis: 37.5%;
  }
  .works-video__txt {
    flex-basis: 58%;
  }
  .works-access__map {
    padding-bottom: 40%;
  }
  .contact-merit {
    padding-top: 5rem;
  }
  .contact-merit:before {
    display: block;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: url(../img/lv2/job-seeker-bg_pc.jpg) top center/cover no-repeat;
    content: "";
  }
  .contact-merit__box__txt__tit {
    font-size: 1.25em;
  }
  .contact-merit__box__txt__tit:before {
    font-size: 2.25em;
  }
  .contact-flex {
    display: flex;
  }
  .contact-flex > * {
    flex-basis: 50%;
  }
  .contact-flex > *:nth-of-type(even) {
    border-left: 1px solid #E5E9EC;
  }
  .contact-box {
    padding: 1.5rem 3rem 3rem;
  }
  .contact-box__tit {
    font-size: 1.25rem;
  }
  .contact-box__tel {
    font-size: 2.25em;
  }
  .contact-step ol {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
        align-items: center;
        justify-content: space-between;
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }
  .contact-step ol > * {
    width: 18%;
    max-width: 160px;
    max-height: 160px;
  }
  .contact-step ol li {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    display: flex;
        align-items: center;
        justify-content: center;
    width: 160px;
    height: 160px;
    border: 1px solid #979DA4;
    border-radius: 50%;
    background: #FFFFFF;
    text-align: center;
  }
  .contact-step ol li span:before {
    font-size: 1.75rem;
  }
  .contact-step ol li:not(:last-child):after {
    left: 100%;
    width: 100%;
    height: 1px;
  }
  .contact-step ol li.now {
    border-color: #243FC7;
    background: #243FC7;
    color: #FFFFFF;
  }
  .contact-step ol li.before {
    border-color: #578FE4;
    background: #578FE4;
    color: #FFFFFF;
  }
  .jobseeker-form .contact-step li.now {
    border-color: #578FE4;
    background: #578FE4;
    color: #FFFFFF;
  }
  .jobseeker-form .contact-step li.before {
    border-color: #E5793F;
    background: #E5793F;
    color: #FFFFFF;
  }
  .contact-privacy {
    max-height: 300px;
    margin-top: 1.5rem;
    overflow-y: scroll;
  }
  .contact-privacy::-webkit-scrollbar {
    width: 8px;
  }
  .contact-privacy::-webkit-scrollbar-track {
    background: transparent;
  }
  .contact-privacy::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #C9CED2;
    box-shadow: inset 0 0 0 1px #FFFFFF;
  }
  .contact-privacy__tit {
    padding: 3rem 10%;
  }
  .contact-privacy .txt {
    padding: 0 10% 3rem;
  }
  .contact-table th,
  .contact-table td {
    display: table-cell;
    padding: 1rem 0 2rem;
  }
  .contact-table th {
    width: max(30%,280px);
  }
  .contact-table td {
    width: 64%;
    padding-left: 4%;
  }
  .contents-flex {
    -ms-flex-pack: justify;
    display: flex;
        justify-content: space-between;
  }
  .contents-left {
    width: calc(96% - 320px);
  }
  .blog-pdf {
    margin-top: 3rem;
  }
  .aside {
    width: 320px;
  }
  .aside-widget__tit {
    font-size: 1.12em;
  }
  .aside-widget ul li a:before {
    font-size: 0.87em;
  }
  .tag-cloud-link:before {
    font-size: 0.87em;
  }
  .wp-calendar-table td {
    font-size: 0.93em;
  }
}

@media (min-width: 1024px) and (max-width: 1256px) {
  /*====================================================================/
/*--XGAサイズ iPadPro以上 PC未満--
/====================================================================*/
  .free01-list .free01-box__wrap:nth-of-type(odd) .free01-box__img {
    padding-right: 4%;
  }
  .free01-list .free01-box__wrap:nth-of-type(even) .free01-box__img {
    padding-left: 4%;
  }
  .single-nextprev .prev_post {
    top: -1px;
  }
}

@media (min-width: 1024px) and (min-width: 768px) {
  .works-single__cat__cont {
    font-size: 0.93em;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .works-single__cat__cont {
    font-size: 0.87em;
  }
}

@media (max-width: 1023px) and (min-width: 1024px) {
  .contact-step ol li span {
    font-size: 1.12em;
  }
}

@media (min-width: 768px) and (min-width: 1024px) {
  .contact-privacy .txt {
    font-size: 0.93em;
  }
}

@media (min-width: 1257px) {
  /*====================================================================/
/*---PC 以上--
/====================================================================*/
  .main-view {
    height: 300px;
  }
  .main-view__tit {
    font-size: 1.25rem;
  }
  .main-view__tit em {
    font-size: 2.5rem;
  }
  .main-view__tit b {
    font-size: 1.5rem;
  }
  .main-view__tit__single {
    font-size: 1.38rem;
  }
  .common-flow__box__tit {
    font-size: 1.19rem;
  }
  .free01-intro {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  .free01-intro__tit {
    font-size: 1.5rem;
  }
  .free01-intro__item__tit {
    font-size: 1.13rem;
  }
  .free01-box__tit {
    font-size: 1.25rem;
  }
  .company-access__box__tit {
    font-size: 1.13rem;
  }
  .recruit-merit__tit {
    font-size: 2.25rem;
  }
  .recruit-merit__list {
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
  }
  .recruit-merit__list > * {
    flex-basis: 47.5%;
    margin-bottom: 3rem;
  }
  .recruit-merit__list > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
  .recruit-merit__box {
    padding-top: 4rem;
    padding-left: 76px;
  }
  .recruit-merit__box__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 44.73%;
    max-width: 340px;
  }
  .recruit-merit__box__img__inner {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }
  .recruit-merit__box__img__inner:before {
    display: block;
    position: relative;
    padding-top: 100%;
    content: "";
  }
  .recruit-merit__box__img__inner > div,
  .recruit-merit__box__img__inner figure,
  .recruit-merit__box__img__inner a,
  .recruit-merit__box__img__inner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .recruit-merit__box__txt {
    flex-basis: 76%;
    min-height: 360px;
    padding: 3rem 2rem 4rem;
    padding-left: calc((44.73% - 76px) + 4.5rem);
    border: 1px solid #C9CED2;
    border-radius: 16px;
  }
  .recruit-service__area__tit {
    font-size: 1.25rem;
  }
  .recruit-introduction__txt {
    min-height: 360px;
  }
  .recruit-introduction__tit {
    font-size: 1.25rem;
  }
  .is-thumbsnot .gallery-thumbs__list {
    row-gap: 19px;
  }
  .contact-merit__tit {
    font-size: 1.5rem;
  }
  .contact-merit__tit span {
    font-size: 2.25rem;
  }
  .contact-merit__list {
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
  }
  .contact-merit__list > * {
    flex-basis: 47.5%;
    margin-bottom: 3rem;
  }
  .contact-merit__list > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
  .contact-merit__box {
    padding-top: 4rem;
    padding-left: 76px;
  }
  .contact-merit__box__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 44.73%;
    max-width: 340px;
  }
  .contact-merit__box__img__inner {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }
  .contact-merit__box__img__inner:before {
    display: block;
    position: relative;
    padding-top: 100%;
    content: "";
  }
  .contact-merit__box__img__inner > div,
  .contact-merit__box__img__inner figure,
  .contact-merit__box__img__inner a,
  .contact-merit__box__img__inner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contact-merit__box__txt {
    flex-basis: 76%;
    min-height: 360px;
    padding: 3rem 2rem 4rem;
    padding-left: calc((44.73% - 76px) + 4.5rem);
    border: 1px solid #C9CED2;
    border-radius: 16px;
  }
  .contact-privacy__tit {
    font-size: 1.25rem;
  }
  .single-nextprev {
    -ms-grid-columns: 50% 50%;
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
  .single-nextprev:after {
    position: absolute;
    top: 1em;
    left: 50%;
    width: 1px;
    height: calc(100% - 2em);
    background: #E5E9EC;
    content: "";
  }
  .single-nextprev .next_post {
    -ms-grid-column: 1;
        grid-column: 1;
  }
  .single-nextprev .prev_post {
    -ms-grid-column: 2;
        grid-column: 2;
  }
}

@media (min-width: 1257px) and (max-width: 1639px) {
  /*====================================================================/
/*--px以上 Large PC未満--
/====================================================================*/
}

@media (min-width: 1640px) {
  /*====================================================================/
/*--Large PC 以上--
/====================================================================*/
}

@media (max-width: 1639px) {
  /*====================================================================/
/*--Large PC 未満--
/====================================================================*/
}

@media (max-width: 1256px) {
  /*====================================================================/
/*--PC 未満--
/====================================================================*/
}

@media (max-width: 1023px) {
  /*====================================================================/
/*--XGAサイズ iPadPro 未満--
/====================================================================*/
  .free01-box {
    width: 480px;
    max-width: 92%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 4rem;
  }
  .free01-box__wrap {
    position: relative;
  }
  .free01-box__block {
    left: 0;
    width: 100%;
    height: 60%;
  }
  .free01-box__img {
    position: relative;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
  .free01-box__txt {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .free01-box__txt__inner {
    padding: 1.5rem 6% 2rem;
  }
  .company-greeting__pic {
    margin-bottom: 2rem;
  }
  .company-greeting__pic picture {
    display: block;
    max-width: 240px;
  }
  .accessmap {
    padding-bottom: 360px;
  }
  .company-access__flex > *:first-child {
    margin-bottom: 4rem;
  }
  .recruit-merit {
    background: url(../img/lv2/enterprise-bg_tb.jpg) center center/cover no-repeat;
  }
  .recruit-introduction__txt {
    border-right: 1px solid #C9CED2;
    border-bottom: 1px solid #C9CED2;
    border-left: 1px solid #C9CED2;
  }
  .recuit-step li.step-01 span:before, .recuit-step li.step-02 span:before, .recuit-step li.step-03 span:before {
    border-color: #578FE4;
    background: #578FE4;
  }
  .recuit-step li.step-04 span:before {
    border-color: #F24949;
    background: #F24949;
  }
  .gallery-top {
    margin-bottom: 1.5rem;
  }
  .gallery-thumbs .slick-prev {
    left: -15px;
  }
  .gallery-thumbs .slick-next {
    right: -15px;
  }
  .is-thumbsuse .gallery-thumbs__list .slick-slide {
    margin-right: 6px;
  }
  .is-thumbsnot .gallery-thumbs__list {
    row-gap: 1.95vw;
    -webkit-column-gap: 2%;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
  .is-thumbsnot .gallery-thumbs__list > * {
    width: 15%;
  }
  .works-video__video {
    max-width: 480px;
    margin-right: auto;
    margin-bottom: 1rem;
    margin-left: auto;
  }
  .works-access__map {
    padding-bottom: 300px;
  }
  .contact-merit {
    background: url(../img/lv2/job-seeker-bg_tb.jpg) center center/cover no-repeat;
  }
  .contact-step ol {
    flex-direction: column;
  }
  .contact-step ol li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .contact-step ol li span {
    -ms-flex-align: center;
    display: flex;
        align-items: center;
    font-size: 1.28em;
  }
  .contact-step ol li span:before {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    display: flex;
        align-items: center;
        justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 1em;
    border: 1px solid #979DA4;
    border-radius: 50%;
    background: #FFFFFF;
    font-size: 1.25rem;
    text-align: center;
  }
  .contact-step ol li:not(:last-child):after {
    top: 60px;
    left: 30px;
    width: 1px;
    height: 100%;
  }
  .contact-step ol li.now span:before {
    border-color: #243FC7;
    background: #243FC7;
  }
  .contact-step ol li.before span:before {
    border-color: #578FE4;
    background: #578FE4;
  }
  .jobseeker-form .contact-step li.now span:before {
    border-color: #578FE4;
    background: #578FE4;
  }
  .jobseeker-form .contact-step li.before span:before {
    border-color: #E5793F;
    background: #E5793F;
  }
  .contact-privacy__tit {
    position: relative;
    padding: 1.5rem 6%;
    cursor: pointer;
  }
  .contact-privacy__tit:after {
    speak: never;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "icomoon" !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    content: "";
  }
  .contact-privacy__tit:after {
    position: absolute;
    top: calc(50% - 10px);
    right: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease 0s;
  }
  .contact-privacy__txt {
    border-top: 1px solid #979DA4;
  }
  .contact-privacy .txt {
    padding: 1rem 6% 3rem;
  }
  .contact-table th,
  .contact-table td {
    display: block;
  }
  .contact-table td {
    padding: 1.5rem 0 2.5rem;
    padding-top: 1.5rem;
  }
  .contents-left {
    margin-bottom: 5rem;
  }
  .wp-block-archives select {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  /*====================================================================/
/*--タブレット iPadmini 未満--
/====================================================================*/
  .main-view {
    height: 240px;
  }
  .free01-intro__item {
    margin-bottom: 1rem;
  }
  .free01-intro__item__txt {
    padding: 1rem 4%;
  }
  .recruit-merit {
    background: url(../img/lv2/enterprise-bg_sp.jpg) center center/cover no-repeat;
  }
  .recruit-merit__box__img__inner {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
  .recruit-merit__box__img__inner:before {
    display: block;
    position: relative;
    padding-top: 66.66%;
    content: "";
  }
  .recruit-merit__box__img__inner > div,
  .recruit-merit__box__img__inner figure,
  .recruit-merit__box__img__inner a,
  .recruit-merit__box__img__inner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .recruit-merit__box__txt {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .recruit-service__flex {
    row-gap: 3em;
        flex-direction: column;
  }
  .recruit-service__area__inner {
    -ms-flex-pack: center;
    -ms-flex-align: center;
    row-gap: 2rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
  }
  .recruit-service__area__img {
    width: 70%;
  }
  .recruit-introduction__box {
    flex-direction: column-reverse;
  }
  .recruit-introduction__img figure {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .recruit-introduction__img figure:before {
    display: block;
    position: relative;
    padding-top: 56.25%;
    content: "";
  }
  .recruit-introduction__img figure > div,
  .recruit-introduction__img figure figure,
  .recruit-introduction__img figure a,
  .recruit-introduction__img figure picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contact-merit {
    background: url(../img/lv2/job-seeker-bg_sp.jpg) center center/cover no-repeat;
  }
  .contact-merit__box__img__inner {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
  .contact-merit__box__img__inner:before {
    display: block;
    position: relative;
    padding-top: 66.66%;
    content: "";
  }
  .contact-merit__box__img__inner > div,
  .contact-merit__box__img__inner figure,
  .contact-merit__box__img__inner a,
  .contact-merit__box__img__inner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contact-merit__box__txt {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .single-nextprev .prev_post {
    top: -1px;
  }
}

@media (max-width: 575px) {
  /*====================================================================/
/*--iPhone 以下--
/====================================================================*/
  .common-flow__box {
    margin-top: 28px;
    padding: 56px 8% 2em;
  }
  .common-flow__box__num {
    top: -20px;
    left: calc(50% - 30px);
  }
}

/*# sourceMappingURL=map/lv2.css.map */
