@charset "UTF-8";
/*--------------------------------------------------------------- */
/* recruit  */
/*--------------------------------------------------------------- */
.sec-mv-wrap .sec-lead {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  background-repeat: no-repeat;
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*-------------------------------------------> ページ共通スタイル */
#contents .block-inner:last-child {
  border-bottom: none;
  margin: 0 auto;
  padding-bottom: 30px;
}

/*-------------------------------------------> main visual */
.sec-mv-wrap {
  height: 240px;
  background: url(/recruit/img/ph_mv.jpg) no-repeat center center;
  background-size: cover;
}

.sec-mv-wrap figure {
  margin-bottom: 16px;
}

.sec-mv-wrap .sec-lead {
  width: 895px;
  height: 42px;
  margin: 0 auto 18px;
  background: url(/recruit/img/lead_recruit.png) no-repeat left top;
  background-size: 100% auto;
}

.sec-mv-wrap h3 {
  margin-bottom: 0;
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1em;
}

/*-------------------------------------------> common */
.sec-content-wrap {

  padding-bottom: 120px;
}

.link-anchor {
  text-align: center;
  margin-bottom: 56px;
}

.link-anchor li {
  display: inline-block;
  border-right: 1px solid #d9d9d9;
}

.link-anchor li:last-child {
  border-right: none;
}

.link-anchor li a {
  color:  var(--primary-color);
  padding: 0 25px;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1em;
  display: block;
}

.link-anchor li a:hover {
  color: #d51a19;
}

/*-------------------------------------------> index */
.l-index .sec-content-wrap {
  padding-top: 90px;
}

.l-index .block-content-inner:after {
  content: "";
  display: block;
  clear: both;
}

.l-index .block-content-inner .m-2clm {
  width: 510px;
  float: left;
}

.l-index .block-content-inner .m-2clm + .m-2clm {
  margin-left: 60px;
}

.l-index .block-content-inner .m-2clm + .m-2clm .box {
  margin-bottom: 0;
}

.l-index .block-content-inner .m-2clm + .m-2clm .box h2 {
  margin-bottom: 26px;
}

.l-index .block-content-inner .m-2clm .box {
  padding-top: 60px;
  margin-bottom: 60px;
  background: #fff;
  text-align: center;
}

.l-index .block-content-inner .m-2clm .box h2 {
  font-size: 24px;
  /* legacy */
  font-size: 1.5rem;
  /* modern */
  line-height: 1em;
  color: #d91616;
  margin-bottom: 24px;
}

.l-index .block-content-inner .m-2clm .box .txt {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.14286em;
}

.l-index .block-content-inner .m-2clm .box .btn-more {
  width: 450px;
  margin: 20px auto 25px;
}

.l-index .block-content-inner .m-2clm .box ul {
  margin-top: 74px;
  border-top: 1px solid #d9d9d9;
}

.l-index .block-content-inner .m-2clm .box ul li {
  height: 240px;
  background: url(/recruit/img/ph_index_03.jpg) no-repeat left top;
}

.l-index .block-content-inner .m-2clm .box ul li + li {
  background: url(/recruit/img/ph_index_06.jpg) no-repeat left top;
}

.l-index .block-content-inner .m-2clm .box ul li + li + li {
  background: url(/recruit/img/ph_index_05.jpg) no-repeat left top;
}

.l-index .block-content-inner .m-2clm .box ul li + li + li + li {
  background: url(/recruit/img/ph_index_06.jpg) no-repeat left top;
}

.l-index .block-content-inner .m-2clm .box ul li .txt-wrap {
  width: 175px;
  padding-top: 26px;
  margin-left: 32px;
  text-align: left;
}

.l-index .block-content-inner .m-2clm .box ul li .txt-wrap .txt-lead {
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 1.6em;
  margin-bottom: 6px;
}

.l-index .block-content-inner .m-2clm .box ul li .txt-wrap .txt-job {
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 1.5em;
  margin-bottom: 5px;
}

.l-index .block-content-inner .m-2clm .box ul li .txt-wrap .txt-name {
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 1.875em;
}

.l-index .block-content-inner .m-2clm .box ul li .txt-wrap .btn-more {
  width: 90%;
  margin: 20px 0 0;
}

.l-index .block-content-inner .m-2clm .box ul li:nth-child(odd) .txt-wrap {
  margin-left: 324px;
}

.l-index .block-content-inner .m-2clm .btn-box:after {
  content: "";
  display: block;
  clear: both;
}

.l-index .block-content-inner .m-2clm .btn-box a {
  width: 240px;
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 4.5em;
  height: 90px;
}

.l-index .block-content-inner .m-2clm .btn-box .btn-rd {
  float: left;
}

.l-index .block-content-inner .m-2clm .btn-box .btn-wt {
  float: right;
  letter-spacing: 0;
}

/*-------------------------------------------> workplace */
.l-workplace .sec-content-wrap .m-cate-title {
  padding: 92px 0 47px;
}

.l-workplace .sec-content-wrap .block-content-inner {
  padding-top: 72px;
  background: #fff;
}

.l-workplace .sec-content-wrap .block-content-inner .block-inner {
  margin: 0 auto 85px;
}

.l-workplace .sec-content-wrap .block-content-inner .block-inner > h1 {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 4em;
  line-height: 80px;
  letter-spacing: 0.1em;
  background: #f5f5f7;
  margin-bottom: 60px;
}

.l-workplace .sec-content-wrap .block-content-inner .m-2clm-even .box .clm-title {
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 2em;
}

.l-workplace .sec-content-wrap .block-content-inner #content-01 .m-3clm-table {
  margin-bottom: 50px;
}

.l-workplace .sec-content-wrap .block-content-inner #content-02 > h1 {
  margin-bottom: 55px;
}

.l-workplace .sec-content-wrap .block-content-inner #content-02 .m-2clm-even {
  margin-bottom: 50px;
}

.l-workplace .sec-content-wrap .block-content-inner #content-03 {
  padding-bottom: 35px;
}

.l-workplace .sec-content-wrap .block-content-inner #content-03 .m-2clm-even .box figure {
  margin-bottom: 55px;
}

/*-------------------------------------------> outline */
.l-outline .block-content-inner {
  padding-top: 0px;

}

.l-outline .block-content-inner > .txt {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.14286em;
  text-align: center;
  margin-bottom: 45px;
}

.l-outline .block-content-inner .alternate-list-gr {
  padding-bottom: 90px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom:5rem;
}

.alternate-list-gr dl:nth-child(2n+1) {
  background: var(--bg-lightgrey);
}

.l-outline .block-content-inner .alternate-list-gr dl {
  padding: 0;
}

.l-outline .block-content-inner .alternate-list-gr dl dt, .l-outline .block-content-inner .alternate-list-gr dl dd {

}

.l-outline .block-content-inner .alternate-list-gr dl dt {

  padding: 15px 30px;
  border-right: 1px solid #d9d9d9;
}

.l-outline .block-content-inner .alternate-list-gr dl dd {
  padding: 15px 60px 15px 30px;
  letter-spacing: 0.04em;
}

.l-outline .block-content-inner .alternate-list-gr dl dd p {
  margin-bottom: 10px;

}

.l-outline .block-content-inner .alternate-list-gr dl dd p:last-child {
  margin-bottom: 0;
}

.l-outline .block-content-inner .alternate-list-gr dl dd span {

}

.l-outline .block-content-inner #method {
  padding-top: 20px;
}

.l-outline .block-content-inner #method h2 {
  text-align: center;
  color: #d91616;
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1em;
  margin-bottom: 15px;
}

.l-outline .block-content-inner #method .txt {
  text-align: center;
  margin-bottom: 33px;
}

.l-outline .block-content-inner #method .m-2clm {
  border: 1px solid #d9d9d9;
  padding: 30px 0 30px;
  margin-bottom: 60px;
}

.l-outline .block-content-inner #method .m-2clm:after {
  content: "";
  display: block;
  clear: both;
}

.l-outline .block-content-inner #method .m-2clm .box {
  width: 50%;
  float: left;
  padding: 25px 55px 0 60px;
}

@media screen and (max-width: 570px) {
    .l-outline .block-content-inner #method .m-2clm .box {
  width: 100%;
  float: none; 
  padding: 20px 20px 0 20px;
    }
    .l-outline .block-content-inner #method .m-2clm .box:first-child {
  border-right: none!important;
    border-bottom: 1px solid #d9d9d9;      
}
} 

.l-outline .block-content-inner #method .m-2clm .box:first-child {
  border-right: 1px solid #d9d9d9;
}

.l-outline .block-content-inner #method .m-2clm .box h3 {
  font-weight: bold;
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1em;
  margin-bottom: 20px;
}

.l-outline .block-content-inner #method .m-2clm .box p {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.14286em;
  margin-bottom: 20px;
}

.l-outline .block-content-inner #method .m-2clm .box .txt-small {
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 2em;
  color: #808080;
}

.l-outline .block-content-inner #method .m-2clm .box .txt-tel {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.14286em;
  color: #d91616;
}

.l-outline .block-content-inner #method .m-2clm .box .txt-tel span {
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1.66667em;
}

.l-outline .block-content-inner #method .btn-rd {
  width: 420px;
  height: 90px;
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 4.5em;
  margin: 0 auto 60px;
}

/*-------------------------------------------> qa */
.l-qa .sec-content-wrap .m-cate-title {
  padding: 92px 0 47px;
}

.l-qa .block-content-inner {
  padding-top: 85px;
  background: #fff;
}

.l-qa .block-content-inner .block-inner {
  margin: 0 auto 85px;
}

.l-qa .block-content-inner .block-inner > h1 {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 4em;
  line-height: 80px;
  letter-spacing: 0.1em;
  background: #f5f5f7;
  margin-bottom: 74px;
}

.l-qa .block-content-inner .block-inner .block-qa {
  margin-bottom: 60px;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-q {
  display: table;
  width: 100%;
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1.77778em;
  color: #d91616;
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-q::before {
  content: 'Q';
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 2em;
  border-radius: 50%;
  background: #d91616;
  color: #fff;
  display: table-cell;
  vertical-align: top;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-q p {
  padding-left: 10px;
  display: table-cell;
  vertical-align: top;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-q::after {
  content: '';
  background-image: url(/common/img/sprites-common.png);
  background-position: -108px 0px;
  width: 21px;
  height: 21px;
  background-size: 129px 102px;
  position: absolute;
  right: 0;
  top: 6px;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-q:hover {
  color: #ff6666;
  cursor: pointer;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-a {
  width: 100%;
  display: none;
  overflow: hidden;
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 1.875em;
}

.l-qa .block-content-inner .block-inner .block-qa .txt-a p {
  margin-top: 22px;
  background: url(/recruit/img/icon_answer.png) no-repeat left top;
  background-size: 32px auto;
  padding-left: 42px;
}

.l-qa .block-content-inner .block-inner .block-qa.is-open .txt-q::after {
  background-image: url(/common/img/sprites-common.png);
  background-position: -72px -72px;
  width: 21px;
  height: 21px;
  background-size: 129px 102px;
}

.l-qa .block-content-inner .block-inner .block-qa.is-open .txt-a {
  height: auto;
}

/*-------------------------------------------> work */
.l-work .sec-content-wrap .m-cate-title {
  padding: 92px 0 47px;
}

.l-work .block-content-inner {
  
}

.l-work .area-parson {
  color: #fff;
}

.l-work .area-parson figure {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.l-work .area-parson figure img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.l-work .area-parson figure figcaption {
  width: 450px;
  position: absolute;
  top: 58px;
  left: 85px;
}

.l-work .area-parson .txt-lead {
  font-size: 36px;
  /* legacy */
  font-size: 2.25rem;
  /* modern */
  line-height: 1.33333em;
  margin-bottom: 35px;
  color: #fff;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.l-work .area-parson .txt-year {
  display: inline-block;
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 2em;
  padding: 0 7px;
  border: 1px solid #fff;
  margin-bottom: 20px;
  color: #fff;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.l-work .area-parson .txt-job {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1.71429em;
  color: #fff;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
-ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.l-work .area-parson .txt-name {
  font-size: 22px;
  /* legacy */
  font-size: 1.375rem;
  /* modern */
  line-height: 1.81818em;
}

.l-work .area-parson .btn-more {
  width: 144px;
  margin: 20px auto 0;
}

.l-work .block-qa .block-sec-inner:after {
  content: "";
  display: block;
  clear: both;
}

.l-work .block-qa .box {
  padding: 60px 60px 0;
  position: relative;
}

.l-work .block-qa .box::after {
  content: '';
  background: #d9d9d9;
  position: absolute;
  margin: auto;
}

.l-work .block-qa .box:nth-child(1)::after {

}

.l-work .block-qa .box:nth-child(2)::after {

}

.l-work .block-qa .box:nth-child(3) {

}

.l-work .block-qa .box:nth-child(3)::after {

}

.l-work .block-qa .box .txt-q {
  color: var(--primary-color);
  text-align: center;
  font-size: 18px;
}

.l-work .block-qa .box .txt-q::before {
  content: 'Q';
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 2em;
  background: var(--primary-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 15px;
}

.l-work .block-qa .box .txt-q::after {
  content: '';
  background: var(--third-color);
  width: 24px;
  height: 1px;
  display: block;
  margin: 24px auto 22px;
}

.l-work .block-qa .box .txt-a {
  text-align: center;
  
}

.l-work .block-inner .l-small h3 {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1em;
  margin-bottom: 15px;
  text-align: center;
}

.l-work .block-inner .l-small h2 {
  font-size: 22px;
  /* legacy */
  font-size: 1.375rem;
  /* modern */
  line-height: 1em;
  text-align: center;
}

.l-work .area-schedule {
  height: 405px;
}

.l-work .area-schedule .l-small {
  padding: 85px 0 47px;
  margin-bottom: 44px;
}

.l-work .area-schedule .l-small h3 {
  letter-spacing: .2em;
  text-align: center;
}

.l-work .area-message {
  margin-bottom: 90px;
}

.l-work .area-message .l-small {
  padding: 62px 0 26px;
}

.l-work .area-message .l-small h2 {
  margin-bottom: 0;
}

.l-work .area-message p {

  padding: 0 60px 55px;
}

.l-work .m-flow-anim {
  position: relative;
  width: 15px;
  height: 12px;
  border-bottom: 1px solid var(--primary-color);
  transition: width 1s ease-in-out;
}

.l-work .m-flow-anim::before {
  content: '';
  width: 100%;
  height: 12px;
  background: url(../../assets/images/recruit/work/ar_flow.png) no-repeat right top;
  background-size: auto 100%;
  display: block;
}

.l-work .m-flow-anim li {
  min-width: 74px;
  text-align: center;
  position: absolute;
  opacity: 0;
  transition: opacity .5s linear;
}

.l-work .m-flow-anim li p {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1.42857em;
}

.l-work .m-flow-anim li p span {
  display: block;
  font-size: 18px;
  /* legacy */
  font-size: 1.125rem;
  /* modern */
  line-height: 1em;
}

.l-work .m-flow-anim li:nth-child(odd) {
  bottom: -7px;
}

.l-work .m-flow-anim li:nth-child(odd)::after {
  content: '●';
  display: block;
  color: var(--primary-color);
  font-size: 13px;
  /* legacy */
  font-size: 0.8125rem;
  /* modern */
  line-height: 1em;
}

.l-work .m-flow-anim li:nth-child(odd) p span {
  margin-top: 5px;
  margin-bottom: 15px;
}

.l-work .m-flow-anim li:nth-child(even) {
  top: 5px;
}

.l-work .m-flow-anim li:nth-child(even)::before {
  content: '●';
  display: block;
  color: var(--primary-color);
  font-size: 13px;
  /* legacy */
  font-size: 0.8125rem;
  /* modern */
  line-height: 1em;
}

.l-work .m-flow-anim li:nth-child(even) p span {
  margin-top: 10px;
  margin-bottom: 5px;
}

.l-work .m-flow-anim .anim-01 {
  left: 32px;
  transition-delay: 1.3s;
}

.l-work .m-flow-anim .anim-02 {
  left: 126px;
  transition-delay: 1.6s;
}

.l-work .m-flow-anim .anim-03 {
  left: 217px;
  transition-delay: 1.9s;
}

.l-work .m-flow-anim .anim-04 {
  left: 311px;
  transition-delay: 2.2s;
}

.l-work .m-flow-anim .anim-05 {
  left: 402px;
  transition-delay: 2.5s;
}

.l-work .m-flow-anim .anim-06 {
  left: 496px;
  transition-delay: 2.8s;
}

.l-work .m-flow-anim .anim-07 {
  left: 589px;
  transition-delay: 3.1s;
}

.l-work .m-flow-anim .anim-08 {
  left: 681px;
  transition-delay: 3.4s;
}

.l-work .m-flow-anim.is-anim {
  width: 839px;
  margin: 0 auto;
}

.l-work .m-flow-anim.is-anim li {
  opacity: 1;
}

.l-work .m-flow-anim.l-point10 .anim-02 {
  left: 105px;
}

.l-work .m-flow-anim.l-point10 .anim-03 {
  left: 182px;
}

.l-work .m-flow-anim.l-point10 .anim-04 {
  left: 255px;
}

.l-work .m-flow-anim.l-point10 .anim-05 {
  left: 332px;
}

.l-work .m-flow-anim.l-point10 .anim-06 {
  left: 404px;
}

.l-work .m-flow-anim.l-point10 .anim-07 {
  left: 481px;
}

.l-work .m-flow-anim.l-point10 .anim-08 {
  left: 554px;
}

.l-work .m-flow-anim.l-point10 .anim-09 {
  left: 629px;
  transition-delay: 3.7s;
}

.l-work .m-flow-anim.l-point10 .anim-10 {
  left: 703px;
  transition-delay: 4s;
}

.l-work .area-message {
  background: var(--bg-lightgrey);
}

.l-work .staff-pager:after {
  content: "";
  display: block;
  clear: both;
}

.l-work .staff-pager li {
  float: left;
  width: 540px;
  height: 240px;
  position: relative;
}

.l-work .staff-pager li.staff-01 {
  background: url(/recruit/img/ph_pager_01.jpg) no-repeat left top;
}

.l-work .staff-pager li.staff-02 {
  background: url(/recruit/img/ph_pager_04.jpg) no-repeat right top;
}

.l-work .staff-pager li.staff-03 {
  background: url(/recruit/img/ph_pager_03.jpg) no-repeat left top;
}

.l-work .staff-pager li.staff-04 {
  background: url(/recruit/img/ph_pager_03.jpg) no-repeat right top;
}

.l-work .staff-pager li .txt-wrap {
  width: 175px;
  height: 240px;
  padding-top: 26px;
  margin-left: 40px;
  text-align: left;
  position: relative;
}

.l-work .staff-pager li .txt-wrap .txt-lead {
  font-size: 20px;
  /* legacy */
  font-size: 1.25rem;
  /* modern */
  line-height: 1.6em;
  margin-bottom: 6px;
}

.l-work .staff-pager li .txt-wrap .txt-job {
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 1.5em;
  margin-bottom: 5px;
}

.l-work .staff-pager li .txt-wrap .txt-name {
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 1.875em;
}

.l-work .staff-pager li .txt-wrap .btn-more {
  position: absolute;
  width: 144px;
  margin: 20px auto 0;
  left: 0;
  bottom: 0;
}

.l-work .staff-pager li:nth-child(-n+2) .txt-wrap {
  margin-left: 355px;
}

.l-work .staff-pager li.current::after {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
}

.staff-01 .area-parson {
  color: #fff;
}

.staff-01 .area-parson figure figcaption {
  width: 450px;
  position: absolute;
  top: 58px;
  left: 85px;
}

.staff-01 .block-qa {
  background: url(/recruit/img/ph_staff01_02.jpg) no-repeat left 471px;
}

.staff-02 .area-parson {
  color: #fff;
}

.staff-02 .area-parson figure figcaption {
  width: 450px;
  position: absolute;
  top: 58px;
  left: 85px;
}

.staff-02 .block-qa {
  background: url(/recruit/img/ph_staff02_02.jpg) no-repeat left 471px;
}

.staff-03 .area-parson {
  color: #fff;
}

.staff-03 .area-parson figure figcaption {
  width: 480px;
  position: absolute;
  top: 258px;
  left: 533px;
}

.staff-03 .block-qa {
  background: url(/recruit/img/ph_staff03_02.jpg) no-repeat left 471px;
}

.staff-04 .area-parson {
  color: #fff;
}

.staff-04 .area-parson figure figcaption {
  width: 450px;
  position: absolute;
  top: 58px;
  left: 745px;
}

.staff-04 .block-qa {
  background: url(/recruit/img/ph_staff04_02.jpg) no-repeat left 471px;
}

/*-------------------------------------------> アニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0) rotate(180deg);
            transform: translateY(0) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(180deg);
            transform: translateY(0) rotate(180deg);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0) rotate(180deg);
            transform: translateY(0) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(180deg);
            transform: translateY(0) rotate(180deg);
  }
}

/*-------------------------------------------> プラグイン：プラグイン名 */

@media only screen and (max-width: 992px) {
  .l-work .area-schedule .l-small {
    padding: 96px 0 40px;
  }
  
  .l-work .block-flow {
    height: auto;
    margin-bottom: 96px;
  }
  
  .l-work .block-flow.l-point10 {
    height: 902px;
  }
  
  .l-work .m-flow-anim {
    position: relative;
    width: 24px;
    height: 0;
    padding-top: 34px;
    margin-left: 90px;
    border-left: 2px solid var(--primary-color);
    transition: height 1s ease-in-out;
    border-bottom:0px;
  }
  
  .l-work .m-flow-anim::before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    width: 24px;
    height: 36px;
    background: url(../../assets/images/recruit/work/ar_flow_sp.png) no-repeat left bottom;
    background-size: 100% auto;
    display: block;
  }
  
  .l-work .m-flow-anim li {
    width: 430px;
    height: 50px;
    margin-left: -13px;
    opacity: 0;
    transition: opacity .5s linear;
    text-align: left;
  }
  
  .l-work .m-flow-anim li:after {
    content: "";
    display: block;
    clear: both;
  }
  
  .l-work .m-flow-anim li p {
    width: 265px;
    float: left;
    font-size: 1rem;
    /* legacy */
    line-height: 1.5em;
  }
  
  .l-work .m-flow-anim li p.f-ms {
    width: 165px;
  }
  
    .l-work .m-flow-anim li p.f-ms::before {
        content: '';
        width: 12px;
        height: 12px;
        margin-top: 6px;
        border-radius: 50%;
        background: var(--primary-color);
        margin-right: 36px;
        float: left;
        margin-left: 6px;
    }

  
  .l-work .m-flow-anim .anim-01 {
    transition-delay: 1.3s;
  }
  
  .l-work .m-flow-anim .anim-02 {
    transition-delay: 1.6s;
  }
  
  .l-work .m-flow-anim .anim-03 {
    transition-delay: 1.9s;
  }
  
  .l-work .m-flow-anim .anim-04 {
    transition-delay: 2.2s;
  }
  
  .l-work .m-flow-anim .anim-05 {
    transition-delay: 2.5s;
  }
  
  .l-work .m-flow-anim .anim-06 {
    transition-delay: 2.8s;
  }
  
  .l-work .m-flow-anim .anim-07 {
    transition-delay: 3.1s;
  }
  
  .l-work .m-flow-anim .anim-08 {
    transition-delay: 3.4s;
  }
  
  .l-work .m-flow-anim .anim-09 {
    transition-delay: 3.7s;
  }
  
  .l-work .m-flow-anim .anim-10 {
    transition-delay: 4s;
  }
  
  .l-work .m-flow-anim.is-anim {
    height: auto;
    width: 24px;
    padding-bottom:20px;
    margin: 0 0 0 30%;
   
  }
  
  .l-work .m-flow-anim.is-anim li {
    opacity: 1;
  }
  .l-work .m-flow-anim li {
    position: static;

}
  
  .l-work .l-point10 .m-flow-anim.is-anim {
    height: 902px;
  }
  .l-work .m-flow-anim li:nth-child(2n+1)::after {
    content: '';
 
}
.l-work .m-flow-anim li:nth-child(2n)::before {
  content: '';
}
.l-work .area-schedule {
  height: auto;
}


  .l-work .area-parson figure figcaption {
      width: 90%;
      /* position: static; */
      margin: 3rem auto 0;
      /* padding-top: 250px; */
      left: 5%;
      bottom: 0%;
      top: initial;
  }


.l-work .area-parson .txt-year {
  float:left;
  margin-right:1rem;
}




}

@media only screen and (max-width: 640px) {
.l-work .m-flow-anim.is-anim {
  margin: 0 0 0 20%;
 
}
}

@media only screen and (max-width: 480px) {
  .l-work .m-flow-anim.is-anim {
    margin: 0 0 0 10%;
   
  }
  }

.page-template-interview h2 span{
  font-size:70%;
}