@charset "UTF-8";
/*--------------------------------------------------------------- */
/* recruit index page */
/*--------------------------------------------------------------- */
/*
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);
*/
/*-------------------------------------------> ページ共通スタイル */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/*-------------------------------------------> main visual */
.sec-mv-wrap {
  height: 240px;
  background: url(/contact/img/ph_mv.jpg) no-repeat center center;
  background-size: cover;
}

.sec-mv-wrap figure {
  margin-bottom: 16px;
}

.sec-mv-wrap figure svg .path {
  fill: #fff;
}

.sec-mv-wrap h3 {
  margin-bottom: 0;
  font-size: 13px;
  /* legacy */
  font-size: 0.8125rem;
  /* modern */
  line-height: 1em;
}

/*-------------------------------------------> common */
.sec-content-wrap {
  background: #f5f5f7;
  padding-top: 90px;
  padding-bottom: 120px;
}

.sec-content-wrap .block-sec-inner {
  width: 1080px;
  background: #fff;
  padding-top: 85px;
  padding-bottom: 90px;
}

.asterisk {
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 2.33333em;
  color: #d91616;
}

.box-order {
  margin-bottom: 50px;
}

.box-order .txt {
  margin-bottom: 45px;
}

.box-order ul {
  text-align: center;
}

.box-order ul li {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1.71429em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #d91616;
}

.box-order ul li::after {
  content: '';
  width: 135px;
  height: 8px;
  margin-left: 10px;
  background: url(/contact/img/ar_oder.png) no-repeat left bottom;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
}

.box-order ul li .num {
  color: #d91616;
  text-align: center;
  font-size: 13px;
  /* legacy */
  font-size: 0.8125rem;
  /* modern */
  line-height: 1.84615em;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: inline-block;
  border: 1px solid #d91616;
  background: #fff;
  border-radius: 50%;
}

.box-order ul li.is-active {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1.71429em;
  display: inline-block;
  vertical-align: middle;
  color: #d91616;
}

.box-order ul li.is-active .num {
  color: #fff;
  background: #d91616;
}

.box-order ul li:last-child::after {
  display: none;
}

/*-------------------------------------------> index */
.l-contact .block-inner .m-cate-title {
  padding: 60px 0 20px;
}

.l-contact .block-inner .txt {
  text-align: center;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2em;
}

.l-contact .block-inner .box {
  width: 780px;
  padding: 40px;
  margin: 0 auto 40px;
  background: #f5f5f7;
  border: 1px solid #d9d9d9;
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.l-contact .block-inner .btn-rd {
  width: 240px;
  margin: auto;
}

.l-contact .block-inner .txt-error {
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 2.33333em;
  color: #d91616;
}

.l-contact .block-privacy-wrap .btn-rd {
  width: 240px;
  margin: auto;
}

.l-contact .block-privacy-wrap .clm-field {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2em;
}

.l-contact .block-privacy-wrap .clm-field input {
  margin-right: 10px;
}

.l-contact .block-privacy-wrap .clm-field .checkbox {
  width: auto;
  margin-right: 25px;
  display: inline-block;
  vertical-align: middle;
}

.l-contact .block-privacy-wrap .clm-field .checkbox input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  margin-right: 10px;
  padding: 0;
  width: 18px;
  height: 18px;
  background: #f5f5f7;
  border-radius: 2px;
  border: 1px solid #d9d9d9;
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.l-contact .block-privacy-wrap .clm-field .checkbox input[type="checkbox"]:checked::before {
  content: '';
  width: 11px;
  height: 10px;
  background: url(/contact/img/icon_check.png) no-repeat left top;
  background-size: 100% auto;
  position: absolute;
  left: 3px;
  top: 4px;
}

.l-contact .block-input-wrap .form-group {
  border-top: 1px solid #d9d9d9;
  display: table;
  width: 100%;
}

.l-contact .block-input-wrap .form-group:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.l-contact .block-input-wrap .form-group label {
  padding-left: 30px;
  width: 240px;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.57143em;
  display: table-cell;
  vertical-align: middle;
}

.l-contact .block-input-wrap .form-group .clm-field {
  text-align: left;
  padding: 20px 30px;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.57143em;
  display: table-cell;
  vertical-align: middle;
}

.l-contact .block-input-wrap .form-group .clm-field .btn-postal {
  padding: 0 20px;
  text-align: center;
  font-size: 12px;
  /* legacy */
  font-size: 0.75rem;
  /* modern */
  line-height: 3em;
  background: #676767;
  color: #fff;
  display: inline-block;
  margin-left: 40px;
}

.l-contact .block-input-wrap .form-group .clm-field .checkbox {
  width: auto;
  margin-right: 25px;
  display: inline-block;
  vertical-align: middle;
}

.l-contact .block-input-wrap .form-group .clm-field .checkbox input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  margin-right: 10px;
  padding: 0;
  width: 18px;
  height: 18px;
  background: #f5f5f7;
  border-radius: 2px;
  border: 1px solid #d9d9d9;
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.l-contact .block-input-wrap .form-group .clm-field .checkbox input[type="checkbox"]:checked::before {
  content: '';
  width: 11px;
  height: 10px;
  background: url(/contact/img/icon_check.png) no-repeat left top;
  background-size: 100% auto;
  position: absolute;
  left: 3px;
  top: 4px;
}

.l-contact .block-input-wrap .form-group .clm-field label {
  padding-left: 0;
}

.l-contact .block-input-wrap .form-group .clm-field input, .l-contact .block-input-wrap .form-group .clm-field textarea {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 1.14286em;
  padding: 10px;
  border-radius: 2px;
  background: #f5f5f7;
  border: 1px solid #d9d9d9;
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.l-contact .block-input-wrap .form-group .clm-field.l-full input, .l-contact .block-input-wrap .form-group .clm-field.l-full textarea {
  width: 540px;
}

.l-contact .block-input-wrap .form-group .clm-field.l-medium input {
  width: 148px;
}

.l-contact .block-input-wrap .form-group .clm-field.l-small input {
  width: 138px;
}

.l-contact .block-input-wrap .form-group.l-txtarea {
  padding-top: 35px;
}

.l-contact .block-input-wrap .form-group.l-txtarea label, .l-contact .block-input-wrap .form-group.l-txtarea .clm-field {
  display: block;
  width: 100%;
}

.l-contact .block-input-wrap .form-group.l-txtarea .clm-field {
  padding-bottom: 90px;
}

.l-contact .block-input-wrap .form-group.l-txtarea textarea {
  width: 780px;
  height: 120px;
}

.block-confirm-wrap {
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2em;
}

.block-confirm-wrap .form-group {
  width: 100%;
  display: table;
}

.block-confirm-wrap .form-group > p {
  width: 240px;
  padding: 20px 30px;
  border-right: 1px solid #d9d9d9;
  display: table-cell;
  vertical-align: middle;
}

.block-confirm-wrap .form-group .clm-field {
  padding-left: 30px;
  display: table-cell;
  vertical-align: middle;
}

.block-confirm-wrap .form-group.l-txt {
  display: block;
}

.block-confirm-wrap .form-group.l-txt > p {
  padding-top: 40px;
  width: 100%;
  border-right: none;
}

.block-confirm-wrap .form-group.l-txtarea {
  display: block;
}

.block-confirm-wrap .form-group.l-txtarea > p {
  width: 100%;
  border-right: none;
  min-height: 120px;
}

.block-confirm-wrap .btn-group {
  width: 600px;
  margin: 60px auto 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-confirm-wrap .btn-group a {
  width: 240px;
  -webkit-flex-basis: 40%;
      -ms-flex-preferred-size: 40%;
          flex-basis: 40%;
  padding-left: 0;
  margin: auto;
}

.alternate-list-gr .form-group:nth-child(odd) {
  background: #f5f5f7;
}

.alternate-list-gr .form-group:nth-child(even) {
  background: #fff;
}

.btn-gr {
  position: relative;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 3em;
  letter-spacing: 0.2em;
  color: #fff;
  background: #676767;
  display: block;
  transition: background .2s linear;
}

.btn-gr::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 14px;
  background: url(/common/img/ar_wt_nav_re.svg) no-repeat left center;
  background-size: 20px auto;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.btn-gr:hover {
  background: #999;
  color: #fff;
}

.btn-gr:hover::after {
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.btn-gr.l-txt-center {
  text-align: center;
}

/*-------------------------------------------> 完了ページ */
.l-complete .box-order {
  width: 780px;
  margin: auto;
}

.l-complete .box-order h1 {
  font-size: 16px;
  /* legacy */
  font-size: 1rem;
  /* modern */
  line-height: 1.875em;
  margin-bottom: 10px;
  text-align: center;
}

.l-complete .box-order .txt {
  text-align: center;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
  line-height: 2.14286em;
}

.l-complete .box-order ul {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 60px;
  margin: 0 auto 60px;
}

.l-complete .box-order .btn-rd {
  width: 240px;
  margin: auto;
  letter-spacing: 0.06em;
}

/*-------------------------------------------> プラグイン：プラグイン名 */
