@charset "UTF-8";
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  35% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  36%,
	60% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  to {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  35% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  36%,
	60% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  to {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* ============================================
// normalize.css v3.0.2 | MIT License | git.io/normalize
// ==========================================*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ============================================
// RESET
// ==========================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* fontAwesome */
/*
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
}
*/

::-moz-selection {
  background: #000;
  color: #ffffff;
}

::selection {
  background: #000;
  color: #ffffff;
}

/* ============================================
// BASE
// ==========================================*/
html {
  font-size: 62.5%;
}

body {
  min-width: 1024px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.75;
  background: #ffffff;
  letter-spacing: 0.06em;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
  padding-top: 104px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    font-size: 1.3rem;
    padding-top: 44px;
  }
}

/* for IE11 + */
_:-ms-lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

a {
  color: #000000;
  -webkit-transition: opacity 0.16s linear;
  transition: opacity 0.16s linear;
}
a:hover {
  color: #000;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: opacity 0.16s linear;
  transition: opacity 0.16s linear;
}

@media (min-device-width: 768px) {
  a[href*='tel:'] {
    display: inline-block;
    pointer-events: none;
  }
}
/* classes */
.innerWrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .innerWrap {
    max-width: inherit;
    padding: 0 20px;
  }
}
.ofi {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.ro:hover {
  opacity: 0.7;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}

.ro:hover img {
  opacity: 1;
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.spCont {
  display: none;
}

.pcCont {
  display: block;
}

@media screen and (max-width: 768px) {
  .spCont {
    display: block;
  }

  .pcCont {
    display: none !important;
  }
}
/* fonts */
.eng {
  font-family: Arial, sans-serif;
  letter-spacing: 0.075em;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* animations */
.animation-box.slide-in-fromRight {
  opacity: 1;
  position: relative;
}
.animation-box.slide-in-fromRight p, .animation-box.slide-in-fromRight img {
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
.animation-box.slide-in-fromRight:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(245, 245, 245, 0.8);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
.animation-box.slide-in-fromRight.active p, .animation-box.slide-in-fromRight.active img {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.animation-box.slide-in-fromRight.active:after {
  -webkit-animation: slideIn 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s both;
  animation: slideIn 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s both;
}
.animation-box.fade-fromBottom {
  opacity: 0;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.animation-box.fade-fromBottom.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.animation-box.fade-fromTop {
  opacity: 0;
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
  -webkit-transition: opacity 0.5s ease-in-out , transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out , transform 0.5s ease-in-out;
}
.animation-box.fade-fromTop.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.animation-box.fade-fromRight {
  opacity: 0;
  -webkit-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.animation-box.fade-fromRight.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.animation-box.fade-fromLeft {
  opacity: 0;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.animation-box.fade-fromLeft.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ============================================
// MENU
// ==========================================*/
/*--------------------
d_menu_btn
--------------------*/
.d_menu_btn span,
.d_menu_btn:before,
.d_menu_btn:after {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}

.d_menu_btn_wrap {
  opacity: 0;
  visibility: hidden;
  height: 102px;
  width: 102px;
  background: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e1e1e1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .d_menu_btn_wrap {
    opacity: 1;
    visibility: visible;
  }
}
.d_menu_btn_wrap .d_menu_btn {
  padding: 5px 0;
}
.d_menu_btn_wrap .d_menu_btn:before, .d_menu_btn_wrap .d_menu_btn:after {
  content: "";
}
.d_menu_btn_wrap .d_menu_btn:before {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}
.d_menu_btn_wrap .d_menu_btn:after {
  -webkit-transform: translate(0, 5px);
  transform: translate(0, 5px);
}
.d_menu_btn_wrap .d_menu_btn_txt {
  display: block;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
.d_menu_btn_wrap.js-active {
  position: fixed;
}
.d_menu_btn_wrap.js-active .d_menu_btn span {
  display: none;
}
.d_menu_btn_wrap.js-active .d_menu_btn:before {
  -webkit-transform: translate(0, 1px) rotate(45deg);
  transform: translate(0, 1px) rotate(45deg);
}
.d_menu_btn_wrap.js-active .d_menu_btn:after {
  -webkit-transform: translate(0, -1px) rotate(-45deg);
  transform: translate(0, -1px) rotate(-45deg);
}
.d_menu_btn_wrap.js-active .d_menu_btn_txt {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .d_menu_btn span,
  .d_menu_btn:before,
  .d_menu_btn:after {
    width: 22px;
    height: 2px;
  }

  .d_menu_btn_wrap {
    height: 44px;
    width: 44px;
    right: 0;
    top: 0;
    -webkit-transition: all 0.16s linear;
    transition: all 0.16s linear;
    border-left: 1px solid #e5e5e5;
  }
  .d_menu_btn_wrap .d_menu_btn {
    padding: 6px 0;
  }
  .d_menu_btn_wrap .d_menu_btn:before {
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  .d_menu_btn_wrap .d_menu_btn:after {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  .d_menu_btn_wrap .d_menu_btn_txt {
    font-size: 1rem;
    margin-top: 6px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  .d_menu_btn_wrap.js-active {
    border-left: none;
  }
  .d_menu_btn_wrap.js-active .d_menu_btn_txt {
    margin-top: 7px;
  }
}
/*--------------------
d_menu
--------------------*/
.d_menuOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition: opacity 0.16s linear;
  transition: opacity 0.16s linear;
}
.d_menuOverlay .d_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}
.d_menuOverlay .d_menu_inner {
  width: 1000px;
  opacity: 0;
  visibility: hidden;
}
.d_menuOverlay.js-open {
  opacity: 1;
  visibility: visible;
}
.d_menuOverlay.js-open .d_menu_inner {
  opacity: 1;
  visibility: visible;
}
.d_menuOverlay .menu_logo {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .d_menuOverlay .menu_logo {
    height: 16px;
  }
  .d_menuOverlay .menu_logo img {
    height: 24px;
  }
}
.d_menuOverlay .menu_logo .recruit {
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #000000;
  padding: .2em .4em;
  margin-left: 1em;
  margin-bottom: 1em;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .d_menuOverlay .menu_logo .recruit {
    font-size: 1rem;
  }
}
.d_menuOverlay .rec_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.d_menuOverlay .rec_list_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  background: #EFEFEF;
  margin-left: 8px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.d_menuOverlay .rec_list_item:first-child {
  margin-left: 0;
}
.d_menuOverlay .rec_list_item a {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: .5em;
}
.d_menuOverlay .rec_list_item a span {
  display: block;
}
.d_menuOverlay .rec_list .graduate a span {
  width: 24px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon01.png) left center no-repeat;
  background-size: 24px 12.5px;
}
.d_menuOverlay .rec_list .halfway a span {
  width: 8px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon02.png) left center no-repeat;
  background-size: 8px 16px;
}
.d_menuOverlay .rec_list .part a span {
  width: 14px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon03.png) left center no-repeat;
  background-size: 14px 16px;
}
.d_menuOverlay .menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
.d_menuOverlay .menu_list .list_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #dedede;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}
.d_menuOverlay .menu_list .list_item a {
  display: block;
  padding: 40px 0;
  position: relative;
  color: #000000;
}
.d_menuOverlay .menu_list .list_item a:after {
  content: "";
  display: block;
  opacity: 0;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}
.d_menuOverlay .menu_list .list_item a:hover:after {
  opacity: 1;
}
.d_menuOverlay .menu_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin-top: 80px;
}
.d_menuOverlay .menu_sns .sns_hd {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2px;
  margin-right: 20px;
}
.d_menuOverlay .menu_sns .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
}
.d_menuOverlay .menu_sns .sns_list .list_item {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .d_menuOverlay .d_menu {
    width: 100%;
  }
  .d_menuOverlay .d_menu_inner {
    width: auto;
  }
  .d_menuOverlay .menu_logo {
    width: 100%;
    margin-bottom: 36px;
    padding: 0;
    text-align: center;
  }
  .d_menuOverlay .menu_logo img {
    height: auto;
    width: 180px;
    margin: 0 auto;
  }
  .d_menuOverlay .menu_list {
    margin-bottom: 40px;
  }
  .d_menuOverlay .menu_list .list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.4rem;
  }
  .d_menuOverlay .menu_list .list_item a {
    padding: 1.5em 0;
  }
  .d_menuOverlay .menu_sns {
    margin-top: 32px;
    padding: 16px 40px;
  }
}
@media screen and (max-width: 320px) {
  .d_menuOverlay .menu_list .list_item {
    font-size: 1.3rem;
  }
  .d_menuOverlay .menu_list .list_item a {
    padding: 30px 0;
  }
  .d_menuOverlay .menu_sns {
    margin-top: 32px;
    padding: 16px 40px;
  }
}
/* ============================================
// form
// ==========================================*/
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  color: #000000;
  text-indent: 0.01px;
  letter-spacing: 0.06em;
  text-overflow: '';
}
input::-ms-expand,
button::-ms-expand,
textarea::-ms-expand,
select::-ms-expand {
  display: none;
}
input::-ms-reveal,
button::-ms-reveal,
textarea::-ms-reveal,
select::-ms-reveal {
  visibility: hidden;
}
input::-ms-clear,
button::-ms-clear,
textarea::-ms-clear,
select::-ms-clear {
  visibility: hidden;
}

input[type="text"],
input[type="submit"],
select,
textarea {
  outline: none;
  border: none;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

input[type="text"] {
  padding: .88em 15px .88em 15px;
}

button {
  display: block;
  width: 100%;
  border: none;
}

select,
input {
  display: block;
  width: 100%;
  padding: .7em 40px .7em 15px;
  background: #ffffff;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.06);
}
select[type="text"], select[type="search"],
input[type="text"],
input[type="search"] {
  cursor: auto;
}

select option {
  height: 30px;
  line-height: 30px;
  background: #fff;
}

label {
  position: relative;
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  width: 100%;
  padding: 0 0.8em 0 1.5em;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
label:before, label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
label:before {
  top: 3px;
  left: 0;
  z-index: 0;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label:after {
  top: 5px;
  left: 5px;
  z-index: 2;
  opacity: 0;
  width: 3px;
  height: 6px;
  color: #000;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*
body.iPhone {
	select,
	input ,
	textarea {
		font-size: 16px;
	}
}
*/
input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"]:checked + label::after {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  opacity: 1;
}

input[type="radio"]:checked + label::after {
  opacity: 1;
}

.pull-down {
  position: relative;
}
.pull-down:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 47px;
  height: 100%;
  pointer-events: none;
}
.pull-down:after {
  content: "";
  display: block;
  background-size: contain;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
  width: 6px;
  height: 6px;
  color: #000;
  border-bottom: 2px solid;
  border-right: 2px solid;
  pointer-events: none;
}

.form_checks {
  padding: 1em 15px !important;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.06);
}
.form_checks li {
  display: inline-block;
}

/* ============================================
// MODULES
// ==========================================*/
/*--------------------
	description
--------------------*/
/*--------------------
	btn
--------------------*/
.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0 1.5em;
  letter-spacing: 0.36em;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn:hover {
  color: #000000;
}
.btn:hover::before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.btn:hover::after {
  -webkit-transform: translateX(8px) rotate(45deg) skewX(-35deg);
  transform: translateX(8px) rotate(45deg) skewX(-35deg);
}
.btn::before, .btn::after {
  height: 2px;
  content: '';
  display: block;
  background: #000000;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn::before {
  width: 100%;
  bottom: 0;
  left: 0;
}
.btn::after {
  width: 19px;
  -webkit-transform: rotate(45deg) skewX(-35deg);
  transform: rotate(45deg) skewX(-35deg);
  bottom: 6px;
  right: -3px;
}

.sec_title {
  line-height: 1.75;
  font-size: 2.5rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  border-bottom: 3px solid #000000;
  display: inline-block;
  margin-bottom: 40px;
  padding-left: .2em;
}
@media screen and (max-width: 768px) {
  .sec_title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

/*--------------------
	job_count_pager
--------------------*/
.job_count_pager.contents_bottom {
  margin-top: 72px;
}
.job_count_pager.contents_bottom .btn {
  width: 320px;
  padding: 0;
  background: none;
  opacity: 1 !important;
  position: relative;
}
.job_count_pager.contents_bottom .btn a {
  color: #ffffff;
}
.job_count_pager.contents_bottom .btn a:hover {
  color: #000;
}
.job_count_pager.contents_bottom .pagination {
  padding-top: 32px !important;
}
.job_count_pager.contents_bottom .pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.job_count_pager.contents_bottom .pagination ul li {
  text-align: center;
  font-size: 1.4rem;
}
.job_count_pager.contents_bottom .pagination ul li a, .job_count_pager.contents_bottom .pagination ul li em {
  display: block;
  width: 40px;
  height: 40px;
  font-weight: bold;
  font-style: normal;
  line-height: 40px;
  overflow: hidden;
  margin: 0;
  background: #ffffff;
}
.job_count_pager.contents_bottom .pagination ul li em {
  color: #000;
  background: #dfdfdf;
}
.job_count_pager.contents_bottom .pagination ul li a:hover {
  color: #fff;
  background: #000;
}

@media screen and (max-width: 768px) {
  .job_count_pager.contents_bottom {
    width: 85%;
    margin: 24px auto 0;
    padding: 0 20px;
  }
  .job_count_pager.contents_bottom .btn {
    width: auto;
  }
  .job_count_pager.contents_bottom .pagination {
    padding-top: 20px;
  }
  .job_count_pager.contents_bottom .pagination ul li a, .job_count_pager.contents_bottom .pagination ul li em {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0;
  }
  .job_count_pager.contents_bottom .pagination ul .number {
    display: none;
  }
  .job_count_pager.contents_bottom .pagination ul .number.current {
    display: inline-block;
  }
}
/*--------------------
	search_form
--------------------*/
.search_form {
  margin-top: 21px;
  padding: 0 48px;
}
@media screen and (max-width: 768px) {
  .search_form {
    display: block;
    margin-top: 16px;
    padding: 0 0;
  }
}
.search_form .form_group {
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .search_form .form_group {
    margin-bottom: 8px;
  }
}
.search_form .form_parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.search_form .form_parts + .form_parts {
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts + .form_parts {
    margin-top: 8px;
  }
}
.search_form .form_parts .parts_hd {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 168px;
  flex: 0 0 168px;
  font-weight: bold;
  line-height: 1.27;
  color: #fff;
  padding-left: .5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts .parts_hd {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 152px;
    flex: 0 0 152px;
  }
}
.search_form .form_parts .parts_hd::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  display: block;
  width: 11px;
  height: 14px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts .parts_hd::before {
    width: 7px;
    height: 10px;
    top: 0;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
.search_form .form_parts .parts_hd::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  width: 1px;
  height: 14px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts .parts_hd::after {
    height: 10px;
    top: 0;
    left: 4px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
.search_form .form_parts .parts_hd span {
  display: block;
  position: relative;
  padding-left: 1.2em;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .search_form .form_parts .parts_hd span {
    padding-left: .7em;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .search_form .form_parts .parts_hd {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    margin-top: 11px;
  }
}
.search_form .form_parts .parts_hd + * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* ============================================
// HEADER
// ==========================================*/
#container {
  width: 100%;
  overflow: hidden;
}

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 9988;
}
.js-scroll .header {
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .js-scroll .header {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 44px;
    z-index: 50;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #E1E1E1;
  }
}
.header_box {
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .header_box {
    border: none;
  }
}
.header_top {
  max-width: 1240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .header_top {
    padding: 0 0 0 20px;
  }
}
.header_top .logo a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.header_top .logo a img {
  height: 26px;
}
@media screen and (max-width: 768px) {
  .header_top .logo a {
    padding-top: 16px;
    height: 36px;
  }
  .header_top .logo a img {
    height: 24px;
  }
}
.header_top .logo a .recruit {
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #000000;
  padding: .2em .4em;
  margin-left: 1em;
  margin-bottom: .2em;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .header_top .logo a .recruit {
    padding-top: .4em;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_top .rec {
    display: none;
  }
}
.header_top .rec_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_top .rec_list_item {
  background: #EFEFEF;
  margin-left: 1px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.header_top .rec_list_item:hover {
  opacity: .6;
}
.header_top .rec_list_item:hover a {
  color: #000000;
}
.header_top .rec_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 1.5em;
  letter-spacing: 0.32em;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.js-scroll .header_top .rec_list_item a {
  padding: .6em 1.5em;
}
.header_top .rec_list_item a span {
  margin-right: .5em;
}
.header_top .rec_list .graduate a span {
  width: 24px;
  height: 12.5px;
  display: block;
  background: url(../img/head_icon01.png) left center no-repeat;
  background-size: 24px 12.5px;
}
.header_top .rec_list .halfway a span {
  width: 8px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon02.png) left center no-repeat;
  background-size: 8px 16.5px;
}
.header_top .rec_list .part a span {
  width: 14px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon03.png) left center no-repeat;
  background-size: 14px 16.5px;
}
.header_nav {
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}
.header_nav_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header_nav_list_item {
  padding: .5em 0;
  margin: 0 1.5em;
}
.header_nav_list_item a {
  font-weight: bold;
  letter-spacing: 0.32em;
  position: relative;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.js-scroll .header_nav_list_item a {
  font-size: 1.4rem;
}
.header_nav_list_item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: calc(100% - 4px);
  height: 1px;
  background: black;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.header_nav_list_item a:hover::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.breadcrumb {
  padding: 1em 40px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 1em 20px;
  }
}
.breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1em;
  white-space: nowrap;
  font-size: 1rem;
}
.breadcrumb_list_item:first-child::before {
  display: none;
}
.breadcrumb_list_item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px #000 solid;
  border-right: 1px #000 solid;
  margin-right: 1em;
}
.breadcrumb_list_item a {
  font-size: 1rem;
}
.breadcrumb_list_item img {
  width: 10px;
  height: 12px;
  margin-bottom: 2px;
}

.pagetitle {
  background: #f5f5f5;
  padding: 36px 0;
  margin-bottom: 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pagetitle {
    margin-bottom: 36px;
    padding: 28px 0 20px;
  }
}
.pagetitle .hd {
  text-align: center;
  font-weight: bold;
}
.pagetitle .hd .sec_title_item {
  line-height: 1.30769;
  font-size: 1.3rem;
  letter-spacing: 0.36em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .pagetitle .hd .sec_title_item {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.pagetitle .hd .sec_title {
  font-size: 2.2rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .pagetitle .hd .sec_title {
    font-size: 1.8rem;
  }
}

/* ============================================
// FOOTER
// ==========================================*/
.footer {
  padding: 40px 0 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 0;
  }
}
.footer_item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer_item {
    display: block;
    margin-bottom: 20px;
  }
}
.footer_item .link_box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 640px;
  flex: 0 0 640px;
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .footer_item .link_box {
    margin-bottom: 20px;
  }
}
.footer_item .link_box_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer_item .link_box_nav_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer_item .link_box_nav_list .list_item {
  margin-right: 2em;
}
@media screen and (max-width: 768px) {
  .footer_item .link_box_nav_list .list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-right: 0;
  }
}
.footer_item .link_box_nav_list .list_item.graduate a span {
  width: 24px;
  height: 12.5px;
  display: block;
  background: url(../img/head_icon01.png) left center no-repeat;
  background-size: 23px 11.5px;
}
.footer_item .link_box_nav_list .list_item.halfway a span {
  width: 8px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon02.png) left center no-repeat;
  background-size: 7px 15.5px;
}
.footer_item .link_box_nav_list .list_item.part a span {
  width: 14px;
  height: 16.5px;
  display: block;
  background: url(../img/head_icon03.png) left center no-repeat;
  background-size: 13px 15.5px;
}
.footer_item .link_box_nav_list .list_item a {
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.footer_item .link_box_nav_list .list_item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: calc(100% - 4px);
  height: 1px;
  background: #000000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.footer_item .link_box_nav_list .list_item a:hover::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
@media screen and (max-width: 768px) {
  .footer_item .link_box_nav_list .list_item a {
    font-size: 1.2rem;
    letter-spacing: 0.16em;
    margin-bottom: .5em;
  }
}
.footer_item .link_box_nav_list .list_item a span {
  margin-right: .5em;
}
.footer_item .link_box .corp_link {
  line-height: 1.75;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.footer_item .link_box .corp_link::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: calc(100% - 4px);
  height: 1px;
  background: #000000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.footer_item .link_box .corp_link:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer_item .link_box .corp_link::after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background: url(../img/link_icon.png) center center no-repeat;
  background-size: 11px 11px;
  position: absolute;
  top: .3em;
  right: -1.5em;
}
.footer_item .add_box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .footer_item .add_box {
    padding-left: 0;
  }
}
.footer_item .add_box .logo {
  width: 178px;
  margin-bottom: .5em;
}
.footer_item .add_box .corp_name {
  line-height: 1.75;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}
.footer_item .add_box .address {
  line-height: 1.75;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}
.footer .copyright {
  background: #000;
  text-align: center;
  padding: .5em;
  color: #fff;
  line-height: 1.75;
  font-size: 1rem;
  letter-spacing: 0.24em;
}

/*--------------------
pageTop
--------------------*/
.pageTop {
  opacity: 0;
  position: fixed;
  bottom: 48px;
  right: 20px;
  z-index: 1000;
  -webkit-transition: all 0.16s linear;
  transition: all 0.16s linear;
}
@media screen and (max-width: 768px) {
  .pageTop {
    bottom: 40px;
    right: 0;
  }
}
.js-scroll .pageTop {
  opacity: 1;
}
.pageTop a {
  width: 64px;
  height: 20px;
  position: relative;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 0 1.5em;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.pageTop a:hover {
  color: #000000;
}
.pageTop a:hover::before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.pageTop a:hover::after {
  -webkit-transform: translateX(8px) rotate(45deg) skewX(-35deg);
  transform: translateX(8px) rotate(45deg) skewX(-35deg);
}
.pageTop a::before, .pageTop a::after {
  height: 2px;
  content: '';
  display: block;
  background: #000000;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.pageTop a::before {
  width: 100%;
  bottom: 0;
  left: 0;
}
.pageTop a::after {
  width: 19px;
  -webkit-transform: rotate(45deg) skewX(-35deg);
  transform: rotate(45deg) skewX(-35deg);
  bottom: 6px;
  right: -3px;
}

/* ============================================
// INDEX
// ==========================================*/
.front-page {
  /*fade*/
}
.front-page.js-scroll::before {
  content: "";
  background: url(../img/index/index_img10.jpg) center center no-repeat;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.front-page .bg {
  background: #fff;
  position: relative;
}
.front-page .bg:first-child::before {
  content: '';
  display: block;
  width: 100%;
  height: 104px;
  background: #fff;
  position: absolute;
  top: -104px;
  left: 0;
  right: 0;
  z-index: 99;
}
.front-page .mv {
  width: 100%;
  position: relative;
  background: url(../img/index/mv_loading.gif) center no-repeat;
}
.front-page .mv::before, .front-page .mv::after {
  z-index: 100;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
}
.front-page .mv::before {
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.03)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
}
.front-page .mv::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.03)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
}
.front-page .mv_fix {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}
.front-page .mv_fix img {
  width: 100%;
  height: auto;
}
.front-page .swiper-container.fade {
  overflow: hidden;
}
.front-page .swiper-container.fade .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 620px;
}
.front-page .swiper-container {
  width: 100%;
}
.front-page .swiper-container::before {
  z-index: 900;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  height: 100%;
  opacity: .5;
  background: -webkit-gradient(linear, left top, right top, from(#3d80b5), color-stop(100%, #9ec0da), to(#9ec0da));
  background: linear-gradient(to right, #3d80b5 0%, #9ec0da 100%, #9ec0da 100%);
}
@media screen and (max-width: 768px) {
  .front-page .swiper-container::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(61, 128, 181, 0.16)), color-stop(100%, rgba(158, 192, 218, 0.16)), to(rgba(158, 192, 218, 0.16)));
    background: linear-gradient(to right, rgba(61, 128, 181, 0.16) 0%, rgba(158, 192, 218, 0.16) 100%, rgba(158, 192, 218, 0.16) 100%);
  }
}
.front-page .swiper-container.slide::before {
  width: calc(31% + 90px);
}
.front-page .swiper-container.fade::before {
  width: calc(31% + 8%);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .front-page .swiper-container.fade::before {
    width: 100%;
    max-width: 100%;
  }
}
.front-page .swiper-container.fade02::before {
  opacity: 0;
  -webkit-animation: FADE02 1s ease-in alternate forwards 4.5s;
  animation: FADE02 1s ease-in alternate forwards 4.5s;
}
.front-page .swiper-container.fade .swiper-slide img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.15);
  transform: scale(1.15) rotate(0.00001deg);
  -webkit-transition: -webkit-transform 2.5s ease;
  transition: -webkit-transform 2.5s ease;
  transition: transform 2.5s ease;
  transition: transform 2.5s ease, -webkit-transform 2.5s ease;
}
@media screen and (max-width: 768px) {
  .front-page .swiper-container.fade .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.front-page .swiper-container.fade .swiper-slide-active img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 768px) {
  .front-page .swiper-container.fade .swiper-slide-active img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.front-page .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .front-page .swiper-slide {
    height: 64vh;
  }
}
@media screen and (max-width: 768px) {
  .front-page .ofi.img3 {
    -o-object-position: 72% 0%;
    object-position: 72% 0%;
  }
}
.front-page .swiper-button-next, .front-page .swiper-container-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}
.front-page .swiper-button-prev, .front-page .swiper-container-rtl .swiper-button-next {
  left: 0;
  right: auto;
}
.front-page .swiper-button-next, .front-page .swiper-button-prev {
  z-index: 1000;
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  background: #000;
  background-size: auto;
}
.front-page .swiper-button-next::before, .front-page .swiper-button-prev::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border-color: #fff;
  border-style: solid;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.front-page .swiper-button-next::before {
  margin-left: -2px;
  border-width: 3px 3px 0 0;
}
.front-page .swiper-button-prev::before {
  margin-left: 2px;
  border-width: 0 0 3px 3px;
}
.front-page .swiper-container-horizontal > .swiper-pagination-bullets {
  z-index: 400;
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  .front-page .swiper-container-horizontal > .swiper-pagination-bullets {
    display: none;
  }
}
.front-page .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.front-page .swiper-pagination-bullet {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 0;
  border: 2px solid #fff;
  background: none;
  opacity: 1;
}
.front-page .swiper-pagination-bullet-active {
  border: 2px solid #000;
  background: #fff;
}
.front-page .title {
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .front-page .title {
    bottom: 24px;
    top: inherit;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.front-page .swiper-container.slide .title {
  margin-left: 40px;
}
.front-page .swiper-container.fade .title {
  margin-left: 4%;
}
.front-page .t01 img {
  width: 24%;
  height: auto;
  margin-bottom: 2%;
}
@media screen and (max-width: 768px) {
  .front-page .t01 img {
    width: 57%;
  }
}
.front-page .t02 img {
  width: 31%;
  height: auto;
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  .front-page .t02 img {
    width: 64%;
  }
}
.front-page .t03 {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .front-page .t03 {
    width: 64%;
  }
}
.front-page .swiper-container {
  visibility: hidden;
}
.front-page .swiper-container.loaded {
  visibility: visible;
}
.front-page .swiper-container.loaded .cls-1 {
  stroke: #fff;
  fill: rgba(255, 255, 255, 0);
  stroke-width: 1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  -webkit-animation: DASH 2.8s ease-in-out alternate forwards 2.5s;
  animation: DASH 2.8s ease-in-out alternate forwards 2.5s;
}
@media all and (-ms-high-contrast: none) {
  .front-page .swiper-container.loaded .svg-wrapper {
    opacity: 0;
    -webkit-animation: IE 1s ease-in-out alternate forwards 2.5s;
    animation: IE 1s ease-in-out alternate forwards 2.5s;
  }
  .front-page .swiper-container.loaded .cls-1 {
    fill: white;
  }
}
.front-page .svg-wrapper {
  position: relative;
  width: 100%;
  padding-top: 40%;
}
.front-page .svg-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes IE {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes IE {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes SET {
  0% {
    -webkit-transform: rotateX(-180deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@keyframes SET {
  0% {
    -webkit-transform: rotateX(-180deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@-webkit-keyframes DASH {
  0% {
    stroke-dashoffset: 3000;
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes DASH {
  0% {
    stroke-dashoffset: 3000;
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@-webkit-keyframes DASH02 {
  0% {
    stroke-dashoffset: 3000;
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@keyframes DASH02 {
  0% {
    stroke-dashoffset: 3000;
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
  }
}
@-webkit-keyframes FADE {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -52%);
    transform: translate(-50%, -52%);
  }
}
@keyframes FADE {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -52%);
    transform: translate(-50%, -52%);
  }
}
@-webkit-keyframes FADE02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .5;
  }
}
@keyframes FADE02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .5;
  }
}
@-webkit-keyframes FADE03 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes FADE03 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.front-page .news {
  padding: 80px 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .front-page .news {
    padding: 40px 20px;
  }
}
.front-page .news_cont {
  width: 100%;
  max-width: 700px;
  text-align: left;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .front-page .news_cont {
    margin-bottom: 0 auto 18px;
  }
}
.front-page .news_cont_list {
  border-top: 1px dashed #E1E1E1;
}
.front-page .news_cont_list_item {
  border-bottom: 1px dashed #E1E1E1;
}
.front-page .news_cont_list_item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .front-page .news_cont_list_item .link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.front-page .news_cont_list_item .link:hover {
  color: #000000;
  opacity: .7;
}
.front-page .news_cont_list_item .link .time {
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .front-page .news_cont_list_item .link .time {
    font-size: 1.2rem;
    margin-bottom: .5em;
  }
}
.front-page .news_cont_list_item .link .role {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  text-align: center;
  line-height: 1.75;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  background: #F2F2F2;
  margin: 0 2em;
}
@media screen and (max-width: 768px) {
  .front-page .news_cont_list_item .link .role {
    font-size: 1.2rem;
  }
}
.front-page .news_cont_list_item .link .txt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 486px;
  flex: 0 0 486px;
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .front-page .news_cont_list_item .link .txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.3rem;
  }
}
.front-page .news .view_more {
  text-align: center;
}
.front-page .news .view_more a {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .front-page .news .view_more a {
    font-size: 1.3rem;
  }
}
.front-page .entry {
  text-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 104px;
}
@media screen and (max-width: 768px) {
  .front-page .entry {
    margin-bottom: 52px;
  }
}
.front-page .entry_bg {
  width: calc(100% - 180px);
  background: #F5F5F5;
  padding: 64px 0 88px;
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg {
    width: 100%;
    padding: 32px 0 44px;
  }
}
.front-page .entry_bg_cont {
  margin-left: -180px;
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont {
    margin-left: 0;
  }
}
.front-page .entry_bg_cont_box {
  max-width: 1240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box {
    padding: 0 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.front-page .entry_bg_cont_box .entry_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 353px;
  margin-right: 48px;
  -webkit-transition: .3s;
  transition: .3s;
}
.front-page .entry_bg_cont_box .entry_item:hover {
  opacity: .7;
}
.front-page .entry_bg_cont_box .entry_item:nth-child(even) a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.front-page .entry_bg_cont_box .entry_item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box .entry_item:last-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box .entry_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box .entry_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box .entry_item .item_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
.front-page .entry_bg_cont_box .entry_item .item_txt {
  max-width: 353px;
  margin: 0 auto;
  padding: .5em;
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.32em;
  font-weight: bold;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .front-page .entry_bg_cont_box .entry_item .item_txt {
    font-size: 1.3rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.front-page .message {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 125px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .front-page .message {
    margin: 0 auto;
    padding: 0 20px 1px 20px;
    display: block;
  }
}
.front-page .message_img {
  max-width: 572px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  padding-right: 56px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .front-page .message_img {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
  }
}
.front-page .message_img .img01 {
  max-width: 399px;
  margin-left: 56px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .front-page .message_img .img01 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    min-width: 50%;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.front-page .message_img .img02 {
  max-width: 276px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .front-page .message_img .img02 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    min-width: 50%;
  }
}
.front-page .message_box {
  max-width: 588px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52%;
  flex: 0 0 52%;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .front-page .message_box {
    width: 100%;
    margin: -80px auto 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0 20px;
  }
}
.front-page .message_box_cont {
  border: 8px solid #F5F5F5;
  text-align: center;
  padding: 40px;
  margin-bottom: 40px;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .front-page .message_box_cont {
    padding: 20px;
    margin: 0 auto 20px;
  }
}
.front-page .message_box_cont .catch {
  text-align: left;
  line-height: 1.75;
  font-size: 2rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .front-page .message_box_cont .catch {
    font-size: 1.4rem;
  }
}
.front-page .message_box_cont .txt {
  text-align: left;
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .front-page .message_box_cont .txt {
    font-size: 1.3rem;
  }
}
.front-page .message_box .btn_box {
  text-align: center;
}
.front-page .parallax {
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .front-page .parallax {
    height: 180px;
  }
}
.front-page .interview {
  margin: 100%;
  max-width: 1164px;
  padding: 120px 40px 0;
  margin: 0 auto 104px;
}
@media screen and (max-width: 768px) {
  .front-page .interview {
    padding: 120px 20px 0;
    margin: 0 auto 52px;
    padding: 40px 20px 20px;
  }
}
.front-page .interview_hd {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .front-page .interview_hd {
    margin-bottom: 16px;
  }
}
.front-page .interview_cont {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont {
    margin-bottom: 32px;
  }
}
.front-page .interview_cont_link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_link {
    display: block;
  }
}
.front-page .interview_cont:nth-child(odd) .interview_cont_link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.front-page .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea {
  margin-left: 0;
  margin-right: -64px;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea {
    margin: -60px auto 0;
  }
}
.front-page .interview_cont_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52%;
  flex: 0 0 52%;
  max-width: 560px;
  height: 346px;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_img {
    height: auto;
    padding-top: 61.7857%;
    position: relative;
  }
  .front-page .interview_cont_img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.front-page .interview_cont_txtarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  max-width: 588px;
  border: 8px solid #F5F5F5;
  background: #fff;
  margin-left: -64px;
  padding: 56px 72px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_txtarea {
    width: calc(100% - 20px);
    max-width: 520px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: -60px auto 0;
    padding: 28px 1em;
  }
}
.front-page .interview_cont_txtarea .role {
  line-height: 1.75;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  padding: .5em;
  font-weight: bold;
  display: inline-block;
  background: #F5F5F5;
  position: absolute;
  top: -8px;
  left: -8px;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_txtarea .role {
    font-size: 1rem;
  }
}
.front-page .interview_cont_txtarea .txt_hd {
  line-height: 1.75;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_txtarea .txt_hd {
    font-size: 1.5rem;
  }
}
.front-page .interview_cont_txtarea .corr,
.front-page .interview_cont_txtarea .name {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .front-page .interview_cont_txtarea .corr,
  .front-page .interview_cont_txtarea .name {
    font-size: 1.3rem;
  }
}
.front-page .interview_cont_txtarea .corr {
  margin-bottom: .5em;
}
.front-page .interview .view_more {
  text-align: center;
}
.front-page .menu_box {
  background: url(../img/index/index_img11.jpg) center center no-repeat;
  background-size: cover;
}
.front-page .menu_box_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: block;
  padding: 160px 40px;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg {
    padding: 40px 20px;
  }
}
.front-page .menu_box_bg .menu_list {
  width: 100%;
  max-width: 890px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list {
    display: block;
  }
}
.front-page .menu_box_bg .menu_list .menu_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 410px;
  flex: 0 0 410px;
  max-width: 410px;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-right: 70px;
}
.front-page .menu_box_bg .menu_list .menu_item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list .menu_item:last-child {
    margin-right: auto;
  }
}
.front-page .menu_box_bg .menu_list .menu_item:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list .menu_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 auto 20px;
  }
  .front-page .menu_box_bg .menu_list .menu_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .front-page .menu_box_bg .menu_list .menu_item a .menu_item_img,
  .front-page .menu_box_bg .menu_list .menu_item a .menu_item_name {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .front-page .menu_box_bg .menu_list .menu_item:nth-child(even) a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .front-page .menu_box_bg .menu_list .menu_item:last-child {
    margin-bottom: 0;
  }
}
.front-page .menu_box_bg .menu_list .menu_item_img {
  width: 100%;
  padding-top: 62.6829%;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list .menu_item_img {
    padding-top: 0;
  }
}
.front-page .menu_box_bg .menu_list .menu_item_img.menu_s {
  background: url(../img/index/index_img09.jpg) center center no-repeat;
}
.front-page .menu_box_bg .menu_list .menu_item_img.menu_f {
  background: url(../img/index/index_img08.jpg) center center no-repeat;
}
.front-page .menu_box_bg .menu_list .menu_item_img .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
  line-height: 1.3913;
  font-size: 2.3rem;
  letter-spacing: 0.23em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list .menu_item_img .txt {
    font-size: 1.3rem;
  }
}
.front-page .menu_box_bg .menu_list .menu_item_name {
  background: #fff;
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.32em;
  font-weight: bold;
  padding: .5em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .front-page .menu_box_bg .menu_list .menu_item_name {
    padding: 40px 0;
    font-size: 1.3rem;
  }
}

/* ============================================
// kyujin
// ==========================================*/
.lower-whatsnew,
.lower-kyujin_d,
.lower-kyujin_l {
  /* 検索フォーム関係 */
  /* フォーム回り */
}
.lower-whatsnew .kyujin_container,
.lower-kyujin_d .kyujin_container,
.lower-kyujin_l .kyujin_container {
  overflow: visible;
  max-width: 1240px;
}
.lower-whatsnew .search_panel,
.lower-kyujin_d .search_panel,
.lower-kyujin_l .search_panel {
  min-height: 145px;
  border: 8px solid #f5f5f5;
  padding: 0;
}
.lower-whatsnew .search_panel .quick,
.lower-kyujin_d .search_panel .quick,
.lower-kyujin_l .search_panel .quick {
  min-height: 120px;
  font-size: .98rem;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.32em;
  position: absolute;
  left: -1.35em;
  top: 40px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .search_panel .quick,
  .lower-kyujin_d .search_panel .quick,
  .lower-kyujin_l .search_panel .quick {
    top: 20px;
    letter-spacing: 0.24em;
  }
}
.lower-whatsnew .search_panel .search_body,
.lower-kyujin_d .search_panel .search_body,
.lower-kyujin_l .search_panel .search_body {
  padding: 34px 64px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .search_panel .search_body,
  .lower-kyujin_d .search_panel .search_body,
  .lower-kyujin_l .search_panel .search_body {
    padding: 17px 20px;
  }
}
.lower-whatsnew .search-toggle,
.lower-kyujin_d .search-toggle,
.lower-kyujin_l .search-toggle {
  background: transparent;
  position: absolute;
  font-size: 2.2rem;
  top: -.5em;
  left: 0;
}
.lower-whatsnew .search-toggle .toggle_txt,
.lower-kyujin_d .search-toggle .toggle_txt,
.lower-kyujin_l .search-toggle .toggle_txt {
  color: #000000;
  line-height: 0.77273;
  font-size: 2.2rem;
  letter-spacing: 0.36em;
  text-align: left;
  padding: 0;
  margin-left: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .search-toggle .toggle_txt,
  .lower-kyujin_d .search-toggle .toggle_txt,
  .lower-kyujin_l .search-toggle .toggle_txt {
    font-size: 1.8rem;
    margin-left: 1.5em;
  }
}
.lower-whatsnew .search-toggle .toggle_txt::after,
.lower-kyujin_d .search-toggle .toggle_txt::after,
.lower-kyujin_l .search-toggle .toggle_txt::after {
  content: '↓ここをクリック';
  font-size: 1rem;
  letter-spacing: 0.12em;
  position: absolute;
  top: -2em;
  left: 0;
  -webkit-animation-name: click;
  animation-name: click;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.lower-whatsnew .search-toggle .toggle_trigger,
.lower-kyujin_d .search-toggle .toggle_trigger,
.lower-kyujin_l .search-toggle .toggle_trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  left: -21px;
  top: -14px;
  right: inherit;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .search-toggle .toggle_trigger,
  .lower-kyujin_d .search-toggle .toggle_trigger,
  .lower-kyujin_l .search-toggle .toggle_trigger {
    width: 36px;
    height: 36px;
  }
}
.lower-whatsnew .search-toggle .toggle_trigger_ico,
.lower-kyujin_d .search-toggle .toggle_trigger_ico,
.lower-kyujin_l .search-toggle .toggle_trigger_ico {
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/kyujin/icon05.png) center center no-repeat;
  background-size: 16px 16px;
}
.lower-whatsnew .custom-form,
.lower-kyujin_d .custom-form,
.lower-kyujin_l .custom-form {
  border: none;
  margin-bottom: 0;
  padding-bottom: 26px;
}
.lower-whatsnew .custom-form .form_parts_inner,
.lower-kyujin_d .custom-form .form_parts_inner,
.lower-kyujin_l .custom-form .form_parts_inner {
  max-width: 778px;
}
.lower-whatsnew .custom-form_parts,
.lower-kyujin_d .custom-form_parts,
.lower-kyujin_l .custom-form_parts {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  padding: 10px 0;
  /* ブランドチェックボックス */
}
.lower-whatsnew .custom-form_parts .parts_ttl,
.lower-kyujin_d .custom-form_parts .parts_ttl,
.lower-kyujin_l .custom-form_parts .parts_ttl {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl,
  .lower-kyujin_d .custom-form_parts .parts_ttl,
  .lower-kyujin_l .custom-form_parts .parts_ttl {
    font-size: 1.4rem;
  }
}
.lower-whatsnew .custom-form_parts .parts_ttl::before,
.lower-kyujin_d .custom-form_parts .parts_ttl::before,
.lower-kyujin_l .custom-form_parts .parts_ttl::before {
  display: none;
}
.lower-whatsnew .custom-form_parts .parts_ttl span,
.lower-kyujin_d .custom-form_parts .parts_ttl span,
.lower-kyujin_l .custom-form_parts .parts_ttl span {
  width: 22px;
  height: 22px;
  display: block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl span,
  .lower-kyujin_d .custom-form_parts .parts_ttl span,
  .lower-kyujin_l .custom-form_parts .parts_ttl span {
    width: 18px;
    height: 18px;
  }
}
.lower-whatsnew .custom-form_parts .parts_ttl span.ico_work,
.lower-kyujin_d .custom-form_parts .parts_ttl span.ico_work,
.lower-kyujin_l .custom-form_parts .parts_ttl span.ico_work {
  background: url(../img/kyujin/icon01.png) center center no-repeat;
  background-size: 21px 21px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl span.ico_work,
  .lower-kyujin_d .custom-form_parts .parts_ttl span.ico_work,
  .lower-kyujin_l .custom-form_parts .parts_ttl span.ico_work {
    background-size: 18px 18px;
  }
}
.lower-whatsnew .custom-form_parts .parts_ttl span.ico_occ,
.lower-kyujin_d .custom-form_parts .parts_ttl span.ico_occ,
.lower-kyujin_l .custom-form_parts .parts_ttl span.ico_occ {
  background: url(../img/kyujin/icon02.png) center center no-repeat;
  background-size: 22px 22px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl span.ico_occ,
  .lower-kyujin_d .custom-form_parts .parts_ttl span.ico_occ,
  .lower-kyujin_l .custom-form_parts .parts_ttl span.ico_occ {
    background-size: 18px 18px;
  }
}
.lower-whatsnew .custom-form_parts .parts_ttl span.ico_brand,
.lower-kyujin_d .custom-form_parts .parts_ttl span.ico_brand,
.lower-kyujin_l .custom-form_parts .parts_ttl span.ico_brand {
  height: 24px;
  background: url(../img/kyujin/icon03.png) center center no-repeat;
  background-size: 19px 24px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl span.ico_brand,
  .lower-kyujin_d .custom-form_parts .parts_ttl span.ico_brand,
  .lower-kyujin_l .custom-form_parts .parts_ttl span.ico_brand {
    background-size: 15px 20px;
  }
}
.lower-whatsnew .custom-form_parts .parts_ttl span.ico_word,
.lower-kyujin_d .custom-form_parts .parts_ttl span.ico_word,
.lower-kyujin_l .custom-form_parts .parts_ttl span.ico_word {
  background: url(../img/kyujin/icon04.png) center center no-repeat;
  background-size: 20px 15px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form_parts .parts_ttl span.ico_word,
  .lower-kyujin_d .custom-form_parts .parts_ttl span.ico_word,
  .lower-kyujin_l .custom-form_parts .parts_ttl span.ico_word {
    background-size: 16px 11px;
  }
}
.lower-whatsnew .custom-form_parts select, .lower-whatsnew .custom-form_parts input,
.lower-kyujin_d .custom-form_parts select,
.lower-kyujin_d .custom-form_parts input,
.lower-kyujin_l .custom-form_parts select,
.lower-kyujin_l .custom-form_parts input {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #f5f5f5;
  border-radius: 0 !important;
  -webkit-appearance: none !important;
}
.lower-whatsnew .custom-form_parts select::-webkit-input-placeholder, .lower-whatsnew .custom-form_parts input::-webkit-input-placeholder,
.lower-kyujin_d .custom-form_parts select::-webkit-input-placeholder,
.lower-kyujin_d .custom-form_parts input::-webkit-input-placeholder,
.lower-kyujin_l .custom-form_parts select::-webkit-input-placeholder,
.lower-kyujin_l .custom-form_parts input::-webkit-input-placeholder {
  letter-spacing: 0.28em;
}
.lower-whatsnew .custom-form_parts select:-ms-input-placeholder, .lower-whatsnew .custom-form_parts input:-ms-input-placeholder,
.lower-kyujin_d .custom-form_parts select:-ms-input-placeholder,
.lower-kyujin_d .custom-form_parts input:-ms-input-placeholder,
.lower-kyujin_l .custom-form_parts select:-ms-input-placeholder,
.lower-kyujin_l .custom-form_parts input:-ms-input-placeholder {
  letter-spacing: 0.28em;
}
.lower-whatsnew .custom-form_parts select::placeholder, .lower-whatsnew .custom-form_parts input::placeholder,
.lower-kyujin_d .custom-form_parts select::placeholder,
.lower-kyujin_d .custom-form_parts input::placeholder,
.lower-kyujin_l .custom-form_parts select::placeholder,
.lower-kyujin_l .custom-form_parts input::placeholder {
  letter-spacing: 0.28em;
}
.lower-whatsnew .custom-form_parts .select_first,
.lower-kyujin_d .custom-form_parts .select_first,
.lower-kyujin_l .custom-form_parts .select_first {
  margin-bottom: 1em;
}
.lower-whatsnew .custom-form_parts .brand_check,
.lower-kyujin_d .custom-form_parts .brand_check,
.lower-kyujin_l .custom-form_parts .brand_check {
  background: #f5f5f5;
  padding: .7em 15px;
}
.lower-whatsnew .custom-form_parts .brand_check .brand_list,
.lower-kyujin_d .custom-form_parts .brand_check .brand_list,
.lower-kyujin_l .custom-form_parts .brand_check .brand_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lower-whatsnew .custom-form_parts .brand_check .brand_list .brand_logo,
.lower-kyujin_d .custom-form_parts .brand_check .brand_list .brand_logo,
.lower-kyujin_l .custom-form_parts .brand_check .brand_list .brand_logo {
  height: 40px;
  background: #fff;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lower-whatsnew .custom-form_parts .brand_check input[type=checkbox] + label,
.lower-kyujin_d .custom-form_parts .brand_check input[type=checkbox] + label,
.lower-kyujin_l .custom-form_parts .brand_check input[type=checkbox] + label {
  padding: 0 8px 0 0;
}
.lower-whatsnew .custom-form_parts .brand_check input[type=checkbox] + label:before,
.lower-kyujin_d .custom-form_parts .brand_check input[type=checkbox] + label:before,
.lower-kyujin_l .custom-form_parts .brand_check input[type=checkbox] + label:before {
  display: none;
}
.lower-whatsnew .custom-form_parts .brand_check input[type=checkbox] + label:after,
.lower-kyujin_d .custom-form_parts .brand_check input[type=checkbox] + label:after,
.lower-kyujin_l .custom-form_parts .brand_check input[type=checkbox] + label:after {
  color: #000000;
}
.lower-whatsnew .custom-form_parts .category_list input[type=checkbox] + label:before,
.lower-kyujin_d .custom-form_parts .category_list input[type=checkbox] + label:before,
.lower-kyujin_l .custom-form_parts .category_list input[type=checkbox] + label:before {
  border: none;
}
.lower-whatsnew .custom-form_parts .category_list input[type=checkbox] + label:after,
.lower-kyujin_d .custom-form_parts .category_list input[type=checkbox] + label:after,
.lower-kyujin_l .custom-form_parts .category_list input[type=checkbox] + label:after {
  display: none;
}
.lower-whatsnew .custom-form .selCity_alert,
.lower-kyujin_d .custom-form .selCity_alert,
.lower-kyujin_l .custom-form .selCity_alert {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
.lower-whatsnew .custom-form label,
.lower-kyujin_d .custom-form label,
.lower-kyujin_l .custom-form label {
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
.lower-whatsnew .custom-form label .logo_name,
.lower-kyujin_d .custom-form label .logo_name,
.lower-kyujin_l .custom-form label .logo_name {
  font-size: 1rem;
  font-weight: bold;
}
.lower-whatsnew .custom-form .custom-form_searth_btn,
.lower-kyujin_d .custom-form .custom-form_searth_btn,
.lower-kyujin_l .custom-form .custom-form_searth_btn {
  margin: 10px auto 0;
}
.lower-whatsnew .custom-form .custom-form_searth_btn .btn_cover::before,
.lower-kyujin_d .custom-form .custom-form_searth_btn .btn_cover::before,
.lower-kyujin_l .custom-form .custom-form_searth_btn .btn_cover::before {
  display: none;
}
.lower-whatsnew .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
.lower-kyujin_d .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
.lower-kyujin_l .custom-form .custom-form_searth_btn .btn_cover input[type="submit"] {
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  padding: 19px 0 !important;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
  .lower-kyujin_d .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
  .lower-kyujin_l .custom-form .custom-form_searth_btn .btn_cover input[type="submit"] {
    padding: 0.5em !important;
  }
}
.lower-whatsnew .job_result_total,
.lower-kyujin_d .job_result_total,
.lower-kyujin_l .job_result_total {
  padding: 64px 64px 48px;
  background: url(../img/patan.png);
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_result_total,
  .lower-kyujin_d .job_result_total,
  .lower-kyujin_l .job_result_total {
    padding: 24px 20px 16px;
  }
}
.lower-whatsnew .job_result_total .job_result_total_head,
.lower-kyujin_d .job_result_total .job_result_total_head,
.lower-kyujin_l .job_result_total .job_result_total_head {
  background: #dfdfdf;
}
.lower-whatsnew .job_result_total .job_result_total_num,
.lower-whatsnew .job_result_total .job_result_total_cach,
.lower-kyujin_d .job_result_total .job_result_total_num,
.lower-kyujin_d .job_result_total .job_result_total_cach,
.lower-kyujin_l .job_result_total .job_result_total_num,
.lower-kyujin_l .job_result_total .job_result_total_cach {
  color: #000000;
}
.lower-whatsnew .pagination li,
.lower-kyujin_d .pagination li,
.lower-kyujin_l .pagination li {
  margin: 0 4px;
}
.lower-whatsnew .pagination li a,
.lower-kyujin_d .pagination li a,
.lower-kyujin_l .pagination li a {
  background: transparent;
}
.lower-whatsnew .pagination li em,
.lower-kyujin_d .pagination li em,
.lower-kyujin_l .pagination li em {
  background: #dfdfdf;
  color: #000000;
}
.lower-whatsnew .job_employmenttype_list_item,
.lower-kyujin_d .job_employmenttype_list_item,
.lower-kyujin_l .job_employmenttype_list_item {
  border: none;
  background: #efefef;
  letter-spacing: 0.12em;
}
.lower-whatsnew .job_ttl,
.lower-whatsnew .job_occupations,
.lower-kyujin_d .job_ttl,
.lower-kyujin_d .job_occupations,
.lower-kyujin_l .job_ttl,
.lower-kyujin_l .job_occupations {
  letter-spacing: 0.36em;
}
.lower-whatsnew .job_outline_item_ttl,
.lower-whatsnew .job_outline_item_txt,
.lower-kyujin_d .job_outline_item_ttl,
.lower-kyujin_d .job_outline_item_txt,
.lower-kyujin_l .job_outline_item_ttl,
.lower-kyujin_l .job_outline_item_txt {
  letter-spacing: 0.28em;
}
.lower-whatsnew .job_img,
.lower-kyujin_d .job_img,
.lower-kyujin_l .job_img {
  background: url(../img/patan.png);
}
.lower-whatsnew .btn,
.lower-kyujin_d .btn,
.lower-kyujin_l .btn {
  width: 100%;
  font-size: 1.3rem;
  padding: 1em;
  letter-spacing: 0.28em;
  color: #fff;
  background: #000;
  position: relative;
}
.lower-whatsnew .btn::after,
.lower-kyujin_d .btn::after,
.lower-kyujin_l .btn::after {
  display: none;
}
.lower-whatsnew .btn::before,
.lower-kyujin_d .btn::before,
.lower-kyujin_l .btn::before {
  opacity: 1;
  border-bottom: none;
  border: none;
  background: transparent;
}
.lower-whatsnew .btn.btn_external:hover,
.lower-kyujin_d .btn.btn_external:hover,
.lower-kyujin_l .btn.btn_external:hover {
  opacity: .7;
  color: #fff;
}
.lower-whatsnew .btn.btn_external::after,
.lower-kyujin_d .btn.btn_external::after,
.lower-kyujin_l .btn.btn_external::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  display: block;
}
.lower-whatsnew .btn.btn_secondary,
.lower-kyujin_d .btn.btn_secondary,
.lower-kyujin_l .btn.btn_secondary {
  color: #000000;
  background: #fff;
  border: 1px solid #000;
  overflow: hidden;
}
.lower-whatsnew .btn.btn_secondary:hover,
.lower-kyujin_d .btn.btn_secondary:hover,
.lower-kyujin_l .btn.btn_secondary:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.lower-whatsnew .btn.btn_secondary:hover:before,
.lower-kyujin_d .btn.btn_secondary:hover:before,
.lower-kyujin_l .btn.btn_secondary:hover:before {
  left: 60%;
}
.lower-whatsnew .job_count_pager.contents_bottom .btn,
.lower-kyujin_d .job_count_pager.contents_bottom .btn,
.lower-kyujin_l .job_count_pager.contents_bottom .btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1em;
}
.lower-whatsnew .job_count_pager.contents_bottom .btn:hover,
.lower-kyujin_d .job_count_pager.contents_bottom .btn:hover,
.lower-kyujin_l .job_count_pager.contents_bottom .btn:hover {
  opacity: .7 !important;
}
@-webkit-keyframes click {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  25% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes click {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  25% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.lower-whatsnew .footer,
.lower-kyujin_d .footer,
.lower-kyujin_l .footer {
  border-top: 1px solid #e1e1e1;
}

.lower-kyujin_l .job_head_meta {
  border-bottom: none;
  border-top: 1px solid #e1e1e1;
  padding-bottom: 0;
  padding-top: 40px;
}

.lower-kyujin_d .job_head_meta {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_d .job_head_img {
    margin: 0 0 15px -20px;
  }
}
.lower-kyujin_d .job_img {
  position: relative;
  z-index: 3;
}
.lower-kyujin_d .job_img img {
  z-index: 3;
}
.lower-kyujin_d .job_img::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 30%;
  width: 2000px;
  height: 300px;
  background: #f5f5f5;
  z-index: 1;
}
.lower-kyujin_d .job_sns.is_pc {
  text-align: right;
}
.lower-kyujin_d .job_sns.is_pc .job_sns_list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.lower-kyujin_d .outline_ttl,
.lower-kyujin_d .appeal_ttl {
  line-height: 0.77273;
  font-size: 2.2rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 0 .3em 0;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_d .outline_ttl,
  .lower-kyujin_d .appeal_ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.lower-kyujin_d .outline_ttl::after,
.lower-kyujin_d .appeal_ttl::after {
  display: none;
}
.lower-kyujin_d .outline_ttl::before,
.lower-kyujin_d .appeal_ttl::before {
  content: '';
  height: 3px;
  background: #000000;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0.36em;
}
.lower-kyujin_d .appeal.job_body_block {
  padding: 56px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_d .appeal.job_body_block {
    padding: 20px 0;
  }
}
.lower-kyujin_d .appeal.job_body_block::before {
  content: '';
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  left: -3000px;
  right: -3000px;
  z-index: -1;
}
.lower-kyujin_d .page_back {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_d .page_back {
    margin-bottom: 20px;
  }
}
.lower-kyujin_d .page_back a {
  font-size: 1.4rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-left: 4px;
}
.lower-kyujin_d .page_back a::before {
  width: 17px;
  height: 17px;
  background: url(../img/cube_ico.png) no-repeat;
  background-size: contain;
  border-bottom: none;
  border-right: none;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  margin-right: 1em;
}
.lower-kyujin_d .pageTop {
  bottom: 135px;
}
.lower-kyujin_d .footer {
  margin-bottom: 86px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_d .footer {
    margin-bottom: 62px;
  }
}

.lower-kyujin_d .apeal_list_item {
  border-bottom: 1px solid #e1e1e1;
}

@media screen and (max-width: 768px) {
  job_img_wrap job_block {
    margin: 0 auto;
  }
}

.lower-whatsnew .job_wrap {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.lower-whatsnew .job_ttl {
  margin-bottom: .7em;
}
.lower-whatsnew .job_list-type-a .job_img {
  position: static;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_list-type-a .job_img {
    margin: 0 auto 24px;
  }
}
.lower-whatsnew .job_list-type-a .job_img::before {
  padding: 0;
}
.lower-whatsnew .job_list-type-a .job_img img {
  position: static;
}
.lower-whatsnew .job_outline_item {
  margin-bottom: 1.5em;
  display: block !important;
}
.lower-whatsnew .job_outline_item .job_outline_item_txt {
  line-height: 1.7;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_outline_item .job_outline_item_txt {
    font-size: 1.3rem;
  }
}
.lower-whatsnew .job_outline_item a {
  text-decoration: underline;
  margin: 0 .3em;
}
.lower-whatsnew .job_outline_item a:hover {
  opacity: .7;
}
.lower-whatsnew .job_outline_item a[target="_blank"] {
  padding-right: 13px;
  background: url(../img/link_icon.png) no-repeat center right;
  background-size: 10px 10px;
}
.lower-whatsnew .job_list-type-a .job_img_wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 218px;
  flex: 0 0 218px;
  max-width: 218px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_list-type-a .job_img_wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
  }
}
.lower-whatsnew .job_employmenttype_list_item {
  width: auto;
  overflow: visible;
  padding: 0 .5em;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_employmenttype_list_item {
    color: #000000;
  }
}
.lower-whatsnew .job_employmenttype_list_item:first-letter {
  margin: 0;
}
.lower-whatsnew .job_count_pager.contents_bottom {
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .lower-whatsnew .job_count_pager.contents_bottom {
    margin-bottom: 3px;
  }
}

/* ============================================
// FAQ
//// MEMO //
//// @include fontsize(fz, lh);
//// @include tracking(ls);
//// @include mq(tab) {}
// ==========================================*/
.lower-kyujin_faq .faqWrap {
  width: 100%;
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faqWrap {
    padding: 0 20px;
  }
}
.lower-kyujin_faq .pagetitle {
  margin-bottom: 0;
}
.lower-kyujin_faq .faq_nav {
  padding: 40px 0 20px;
  background: url(../img/faq/faq_img01.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_nav {
    padding: 20px 0 10px;
  }
}
.lower-kyujin_faq .faq_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lower-kyujin_faq .faq_nav_list_item {
  flex: 0 0 23%;
  max-width: 241px;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_nav_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    margin: 0 0 10px;
    border: 2px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_nav_list_item:nth-child(even) {
    margin-left: 20px;
  }
}
.lower-kyujin_faq .faq_nav_list_item:nth-child(4n) {
  margin-right: 0;
}
.lower-kyujin_faq .faq_nav_list_item:last-child {
  margin-right: 0;
}
.lower-kyujin_faq .faq_nav_list_item a {
  display: block;
  padding: 1em 0;
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_nav_list_item a {
    letter-spacing: 0.12em;
    font-size: 1.3rem;
    padding: .5em 0;
  }
}
.lower-kyujin_faq .faq_nav_list_item a:hover {
  background: #fff;
  color: #000;
}
.lower-kyujin_faq .faq_sec {
  padding-top: 134px;
  margin-top: -80px;
  border-bottom: 2px solid #f2f2f2;
  /* hd */
  /* /hd */
  /* list */
  /* /list */
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec {
    padding-top: 71px;
    margin-top: -44px;
  }
}
.lower-kyujin_faq .faq_sec:first-child {
  border-top: none;
}
.lower-kyujin_faq .faq_sec:last-child {
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec:last-child {
    padding-bottom: 32px;
  }
}
.lower-kyujin_faq .faq_sec .sec_title {
  padding-top: 134px;
  margin-top: -134px;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec .sec_title {
    padding-top: 81px;
    margin-top: -81px;
    font-size: 1.3rem;
  }
}
.lower-kyujin_faq .faq_sec_hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.28em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_hd {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.lower-kyujin_faq .faq_sec_hd_ico {
  width: 42px;
  height: 42px;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_hd_ico {
    width: 31px;
    height: 31px;
  }
}
.lower-kyujin_faq .faq_sec_list_item {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item {
    margin-bottom: 16px;
  }
}
.lower-kyujin_faq .faq_sec_list_item .question {
  padding: .7em 30px .7em 56px;
  background: #f2f2f2;
  line-height: 1.8;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 769px) {
  .lower-kyujin_faq .faq_sec_list_item .question {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .question {
    padding-left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .question {
    font-size: 1.3rem;
  }
}
.lower-kyujin_faq .faq_sec_list_item .question::before {
  content: 'Q';
  font-family: 'Century Gothic', 'Catamaran', sans-serif;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 0px;
  left: 16px;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .question::before {
    font-size: 2rem;
    top: .1em;
    left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .question::after {
    content: '+';
    white-space: nowrap;
    letter-spacing: 0.08em;
    font-size: 1.3rem;
    width: 1em;
    height: 1em;
    display: block;
    position: absolute;
    bottom: 1em;
    right: .3em;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .question.faq_active::after {
    content: '-';
    -webkit-transform: scaleX(1.3);
    transform: scaleX(1.3);
    right: .2em;
  }
}
.lower-kyujin_faq .faq_sec_list_item .answer {
  padding: 1.2em 20px .7em 56px;
  line-height: 1.92857;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  position: relative;
  display: block;
}
@media screen and (min-width: 769px) {
  .lower-kyujin_faq .faq_sec_list_item .answer {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .answer {
    padding-left: 32px;
    font-size: 1.3rem;
    display: none;
  }
}
.lower-kyujin_faq .faq_sec_list_item .answer::before {
  content: 'A';
  font-family: 'Century Gothic', 'Catamaran', sans-serif;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 6px;
  left: 16px;
  color: #AFAFAF;
}
@media screen and (max-width: 768px) {
  .lower-kyujin_faq .faq_sec_list_item .answer::before {
    font-size: 2rem;
    top: .3em;
    left: 8px;
  }
}

/* ============================================
// Interview_List
//// MEMO //
////@include fontsize(fz, lh);
////@include tracking(ls);
////@include mq(tab) {}
// ==========================================*/
.interview_l-page .interview_nav {
  position: fixed;
  right: -200px;
  top: 440px;
  z-index: 900;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_nav {
    display: none;
  }
}
.interview_l-page .interview_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.interview_l-page .interview_nav_list_item {
  font-size: 1rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-right: 20.3px;
}
.interview_l-page .interview_nav_list_item a {
  position: relative;
}
.interview_l-page .interview_nav_list_item a::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.interview_l-page .interview_nav_list_item a:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.interview_l-page .interview_cont {
  padding-top: 74px;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont {
    padding-top: 37px;
  }
}
.interview_l-page .interview_cont:first-child {
  padding-top: 0;
}
.interview_l-page .interview_cont:nth-child(even) {
  background: #f5f5f5;
}
.interview_l-page .interview_cont_hd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.2rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_hd {
    font-size: 1.8rem;
    margin-left: -8px;
  }
}
.interview_l-page .interview_cont_hd_ico {
  width: 42px;
  height: 42px;
  display: block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_hd_ico {
    width: 36px;
    height: 36px;
    margin-right: .5em;
  }
  .interview_l-page .interview_cont_hd_ico img {
    width: 36px;
    height: 36px;
  }
}
.interview_l-page .interview_cont_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box {
    display: block;
  }
}
.interview_l-page .interview_cont_box_side {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  max-width: 42px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.36em;
  padding-right: 14px;
  margin-right: 22px;
}
@media all and (-ms-high-contrast: none) {
  .interview_l-page .interview_cont_box_side {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: -20px 0 20px;
    padding-left: 38px;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
.interview_l-page .interview_cont_box_main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-bottom: 16px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main {
    padding-right: 0;
  }
}
.interview_l-page .interview_cont_box_main_item {
  margin-bottom: 70px;
}
.interview_l-page .interview_cont_box_main_item .item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item {
    margin-bottom: 35px;
  }
}
.interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link .item_txtarea {
  margin-right: 0;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link .item_txtarea {
    margin: -60px auto 0;
  }
}
.interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link .item_img {
  margin-left: -64px;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item:nth-child(even) .item_link .item_img {
    margin-left: auto;
  }
}
.interview_l-page .interview_cont_box_main_item .item_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53%;
  flex: 0 0 53%;
  max-width: 560px;
  height: 346px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
  }
}
.interview_l-page .interview_cont_box_main_item .item_txtarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 54%;
  flex: 0 0 54%;
  max-width: 588px;
  border: 8px solid #f5f5f5;
  background: #fff;
  margin-left: -64px;
  padding: 56px 7%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_txtarea {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: calc(100% - 20px);
    padding: 28px 20px;
    margin: -60px auto 0;
  }
}
.interview_l-page .interview_cont_box_main_item .item_txtarea .role {
  line-height: 1.75;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  padding: .5em;
  font-weight: bold;
  display: inline-block;
  background: #F5F5F5;
  position: absolute;
  top: -8px;
  left: -8px;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_txtarea .role {
    font-size: 1rem;
  }
}
.interview_l-page .interview_cont_box_main_item .item_txtarea .txt_hd {
  line-height: 1.75;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_txtarea .txt_hd {
    font-size: 1.5rem;
  }
}
.interview_l-page .interview_cont_box_main_item .item_txtarea .corr,
.interview_l-page .interview_cont_box_main_item .item_txtarea .name {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .interview_l-page .interview_cont_box_main_item .item_txtarea .corr,
  .interview_l-page .interview_cont_box_main_item .item_txtarea .name {
    font-size: 1.3rem;
  }
}
.interview_l-page .interview_cont_box_main_item .item_txtarea .corr {
  margin-bottom: .5em;
}
.interview_l-page .footer {
  border-top: 1px solid #e1e1e1;
}

/* ============================================
// Interview_d
//// MEMO //
////@include fontsize(fz, lh);
////@include tracking(ls);
////@include mq(tab) {}
// ==========================================*/
.interview_d-page .interview_nav {
  position: fixed;
  right: -100px;
  top: 400px;
  z-index: 900;
}
@media screen and (max-width: 768px) {
  .interview_d-page .interview_nav {
    display: none;
  }
}
.interview_d-page .interview_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.interview_d-page .interview_nav_list_item {
  font-size: 1rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
.interview_d-page .interview_nav_list_item a {
  position: relative;
}
.interview_d-page .interview_nav_list_item a::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.interview_d-page .interview_nav_list_item a:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.interview_d-page .l-main {
  margin-top: 2em;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .interview_d-page .l-main {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .interview_d-page .head_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.interview_d-page .int_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
}
.interview_d-page .int_head.innerWrap {
  padding: 0 40px;
}
.interview_d-page .int_head_img {
  max-width: 640px;
  flex: 0 0 53%;
  max-height: 480px;
  margin-left: -40px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_img {
    flex: 0 0 130%;
    max-width: 130%;
    margin-left: -15%;
    margin-right: -15%;
  }
}
.interview_d-page .int_head_txtarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 340px;
  flex: 0 0 340px;
  max-width: 340px;
  margin-left: 112px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_txtarea {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: calc(100% - 20px);
    margin: 0 auto 0;
    padding: 20px 0;
    background: #fff;
    z-index: 10;
  }
}
.interview_d-page .int_head_txtarea .role {
  display: inline-block;
  padding: .2em .5em;
  background: #f5f5f5;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_txtarea .role {
    margin-bottom: 1em;
  }
}
.interview_d-page .int_head_txtarea .copy {
  line-height: 2;
  font-size: 2.4rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_txtarea .copy {
    letter-spacing: 0.24em;
    font-size: 1.8rem;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_txtarea .other {
    padding: 0 10px 10px;
  }
}
.interview_d-page .int_head_txtarea .other .name {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head_txtarea .other .name {
    font-size: 1.4rem;
  }
}
.interview_d-page .int_head_txtarea .other .time {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-left: 1em;
}
.interview_d-page .int_head_txtarea .other .staff {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-left: 1em;
}
.interview_d-page .int_head2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: block;
    margin-bottom: 35px;
  }
}
.interview_d-page .int_head2_bg {
  width: 100%;
  background: #f5f5f5;
  margin-right: -28%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.interview_d-page .int_head2_bg_inner {
  -webkit-transform: translate(-28%, 50%);
  transform: translate(-28%, 50%);
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_tit {
  max-width: 640px;
  flex: 0 0 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_tit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42px;
  flex: 0 0 42px;
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico {
    height: auto;
    margin-top: -28px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico_img {
  height: 42px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico_img {
    height: 29px;
    display: block;
    margin-right: 1em;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico_txt {
  height: 200px;
  margin: 2em 0 0 .2em;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_tit_ico_txt {
    letter-spacing: 0.36em;
    height: auto;
    margin: 1em 0 0 .5em;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_tit_hd {
  max-width: 450px;
  margin-left: 88px;
  margin-top: 72px;
  line-height: 1.84444;
  font-size: 4.5rem;
  letter-spacing: 0.4em;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_tit_hd {
    max-width: inherit;
    margin-left: 0;
    margin-top: -16px;
    font-size: 3.2rem;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 56px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_imgs {
    margin-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_imgs #img1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 170px;
  flex: 0 0 170px;
  max-width: 170px;
  height: 228px;
  margin-top: 88px;
  margin-right: 64px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_imgs #img1 {
    margin-bottom: -24px;
    margin-right: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    height: auto;
    max-width: 100%;
  }
}
.interview_d-page .int_head2_bg_inner .innerWrap .int_imgs #img2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 233px;
  flex: 0 0 233px;
  max-width: 233px;
  height: 312px;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .int_head2_bg_inner .innerWrap .int_imgs #img2 {
    margin-top: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    height: auto;
    max-width: 100%;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.interview_d-page .topics1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 178px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.interview_d-page .topics1 .topics_left {
  flex: 0 0 40%;
  max-width: 478px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 12%;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_left {
    max-width: inherit;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-right: 0;
  }
}
.interview_d-page .topics1 .topics_left_img {
  width: 478px;
  height: 308px;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_left_img {
    width: 100%;
    height: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-bottom: 20px;
  }
}
.interview_d-page .topics1 .topics_right {
  flex: 0 0 37%;
  max-width: 448px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 448px;
    margin-left: auto;
    margin-right: auto;
  }
}
.interview_d-page .topics1 .topics_right .topics_title {
  line-height: 1.8;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  position: relative;
  padding-top: 2.2em;
  margin-bottom: 1.3em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_right .topics_title {
    padding-top: 1.5em;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}
.interview_d-page .topics1 .topics_right .topics_title::before {
  counter-increment: number;
  content: "#" counter(number,decimal-leading-zero);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: #231815;
  padding: 0 .8em;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_right .topics_title::before {
    font-size: 1rem;
  }
}
.interview_d-page .topics1 .topics_right .txt {
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics1 .topics_right .txt {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }
}
.interview_d-page .topics_box {
  margin-bottom: 64px;
}
.interview_d-page .topics_box .topics_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}
.interview_d-page .topics_box .topics_item_txt {
  flex: 1 1 auto;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item_txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 448px;
    margin-left: 0;
  }
}
.interview_d-page .topics_box .topics_item_txt .topics_title {
  line-height: 1.8;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  position: relative;
  padding-top: 2.2em;
  margin-bottom: 1.3em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item_txt .topics_title {
    padding-top: 1.5em;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}
.interview_d-page .topics_box .topics_item_txt .topics_title::before {
  counter-increment: number;
  content: "#" counter(number,decimal-leading-zero);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: #231815;
  padding: 0 .8em;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item_txt .topics_title::before {
    font-size: 1rem;
  }
}
.interview_d-page .topics_box .topics_item_txt .txt {
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item_txt .txt {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }
}
.interview_d-page .topics_box .topics_item_img {
  flex: 0 0 53%;
  max-width: 640px;
  margin-left: 12%;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.interview_d-page .topics_box .topics_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.interview_d-page .topics_box .topics_item:nth-child(even) .topics_item_txt {
  margin-left: 0;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item:nth-child(even) .topics_item_txt {
    margin-right: 0;
  }
}
.interview_d-page .topics_box .topics_item:nth-child(even) .topics_item_img {
  margin-left: 0;
  margin-right: 12%;
}
@media screen and (max-width: 768px) {
  .interview_d-page .topics_box .topics_item:nth-child(even) .topics_item_img {
    margin-right: 0;
  }
}
.interview_d-page .work_style {
  margin-bottom: 20px;
}
.interview_d-page .work_style_hd {
  text-align: center;
}
.interview_d-page .work_style_hd .sec_title {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_hd .sec_title {
    margin-bottom: 40px;
  }
}
.interview_d-page .work_style_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  counter-reset: time;
}
.interview_d-page .work_style_list::after {
  content: '';
  flex: 0 0 24%;
  max-width: 294px;
  margin-left: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list {
    display: block;
  }
}
.interview_d-page .work_style_list_item {
  flex: 0 0 24%;
  max-width: 296px;
  margin-right: 40px;
  margin-left: 40px;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 40px;
    justify-content: center;
  }
}
.interview_d-page .work_style_list_item .time {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  padding: 0 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list_item .time {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}
.interview_d-page .work_style_list_item .time::before {
  counter-increment: time;
  content: counter(time,decimal-leading-zero);
  background: url(../img/interview/int_d_icon01.png) left top no-repeat;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  background-size: 19px 24px;
  width: 19px;
  height: 28px;
  padding: 5px 0 0 8px;
  letter-spacing: 0.075em;
  position: absolute;
  left: 0;
  bottom: 1px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list_item .time::before {
    font-size: 1.5rem;
    padding: 8px 0 0 8px;
    bottom: -4px;
  }
}
.interview_d-page .work_style_list_item .title {
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list_item .title {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
.interview_d-page .work_style_list_item .txt {
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 768px) {
  .interview_d-page .work_style_list_item .txt {
    font-size: 1.3rem;
  }
}
.interview_d-page .profile {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile {
    margin-bottom: 0;
  }
}
.interview_d-page .profile .bg {
  height: 456px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .bg {
    height: 228px;
  }
}
.interview_d-page .profile .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.interview_d-page .profile .message_txt {
  flex: 0 0 57%;
  max-width: 680px;
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_txt_hd {
    text-align: center;
  }
}
.interview_d-page .profile .message_txt_area {
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_txt_area {
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
  }
}
.interview_d-page .profile .message_txt_time {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
.interview_d-page .profile .message_box {
  flex: 0 0 38%;
  max-width: 453px;
  margin-top: -240px;
  margin-left: 64px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: -180px;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.interview_d-page .profile .message_box_prof {
  margin-top: 3px;
  background: #fff;
  text-align: center;
}
.interview_d-page .profile .message_box_prof_img {
  width: 109px;
  height: 109px;
  background-repeat: 50%;
  margin: 0 auto;
  -webkit-transform: translateY(-53px);
  transform: translateY(-53px);
  margin-bottom: -35px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_box_prof_img {
    width: 80px;
    height: 80px;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
.interview_d-page .profile .message_box_prof .name {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.28em;
  margin-bottom: .5em;
}
.interview_d-page .profile .message_box_prof .join,
.interview_d-page .profile .message_box_prof .role {
  font-size: 1.2rem;
}
.interview_d-page .profile .message_box_prof .txtarea {
  text-align: left;
  padding: 56px 64px 0;
}
@media screen and (max-width: 768px) {
  .interview_d-page .profile .message_box_prof .txtarea {
    padding: 20px;
  }
}
.interview_d-page .other_int {
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int {
    margin-bottom: 36px;
  }
}
.interview_d-page .other_int .swiper-container {
  overflow: visible;
  margin-top: 72px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int .swiper-container {
    margin-top: 0;
    padding: 0 20%;
  }
}
.interview_d-page .other_int .swiper-button-prev {
  position: static;
  width: 152px;
  background: url(../img/interview/int_d_icon03.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int .swiper-button-prev {
    width: 120px;
  }
}
.interview_d-page .other_int .swiper-button-next {
  position: static;
  width: 152px;
  background: url(../img/interview/int_d_icon02.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int .swiper-button-next {
    width: 120px;
  }
}
.interview_d-page .other_int .swiper-slide {
  text-align: center;
}
.interview_d-page .other_int .swiper-slide a {
  display: block;
}
.interview_d-page .other_int .swiper-slide .no {
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 1.2rem;
  font-weight: bold;
}
.interview_d-page .other_int .swiper-slide .img {
  width: 100%;
  height: 307px;
  margin: 0 auto;
}
.interview_d-page .other_int .swiper-slide .name_en {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 1em;
}
.interview_d-page .other_int .swiper-slide .name_ja {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.interview_d-page .other_int .swiper-slide .join,
.interview_d-page .other_int .swiper-slide .role {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
.interview_d-page .other_int .slide_btn {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int .slide_btn {
    margin-top: 36px;
  }
}
@media screen and (max-width: 768px) {
  .interview_d-page .other_int .slide_btn .page_back {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 auto;
    margin-top: 20px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
.interview_d-page .other_int .slide_btn .page_back a {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-left: 40px;
  margin: 0 24px;
  position: relative;
}
.interview_d-page .other_int .slide_btn .page_back a::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/cube_ico.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.interview_d-page .footer {
  border-top: 1px solid #f2f2f2;
}
.interview_d-page .career_table {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  font-size: 1.4rem;
}
.interview_d-page .career_table__tr {
  display: table-row;
}
.interview_d-page .career_table__th, .interview_d-page .career_table__td {
  display: table-cell;
  padding: 0 0 .8em;
}
.interview_d-page .career_table__th {
  position: relative;
  padding-right: 40px;
  white-space: nowrap;
}
.interview_d-page .career_table__th::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #999;
}
@media screen and (max-width: 768px) {
  .interview_d-page .career_table__th {
    padding-right: 30px;
  }
  .interview_d-page .career_table__th::before {
    display: block;
    content: "";
    width: 15px;
    height: 1px;
    position: absolute;
    top: 12px;
    right: 8px;
    background: #999;
  }
}
.interview_d-page .message_sec {
  overflow: hidden;
  background: #f5f5f5;
  padding: 4.8% 7% 5%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .interview_d-page .message_sec {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
.interview_d-page .message_sec .message_txt_hd {
  text-align: center;
}
.interview_d-page .message_sec__title {
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.36em;
  order-bottom: 3px solid #000000;
}
.interview_d-page .message_sec__imgbox {
  float: left;
  max-width: 280px;
  margin: 0 50px 30px 0;
}
@media screen and (max-width: 768px) {
  .interview_d-page .message_sec__imgbox {
    float: none;
    margin: 0 auto 20px;
  }
}
.interview_d-page .message_sec__imgbox img {
  width: 100%;
  height: auto;
}
.interview_d-page .message_txt_time {
  margin-bottom: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview_d-page .message_txt_time {
    margin-bottom: 70px;
  }
}

/* ============================================
// TEMP
//// MEMO //
//// @include fontsize(fz, lh);
//// @include tracking(ls);
//// @include mq(tab) {}
//// font-family: 'Poppins', sans-serif;
// ==========================================*/
.lower-message .president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lower-message .president {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.lower-message .president.innerWrap {
  max-width: 1100px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .lower-message .president.innerWrap {
    padding: 0;
  }
}
.lower-message .president_txt {
  max-width: 400px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_txt {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    padding-left: 20px;
  }
}
.lower-message .president_txt .hd {
  line-height: 2.01923;
  font-size: 2.6rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .lower-message .president_txt .hd {
    line-height: 1.75;
    font-size: 1.8rem;
    margin-bottom: .5em;
  }
}
.lower-message .president_txt .name {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .lower-message .president_txt .name {
    font-size: 1.3rem;
  }
}
.lower-message .president_img {
  max-width: 640px;
  -webkit-box-flex: 0;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .lower-message .president_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .lower-message .president_img img {
    max-height: 280px;
  }
}
.lower-message .president_img p {
  height: 480px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_img p {
    height: auto;
  }
}
.lower-message .message_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 168px;
}
@media screen and (max-width: 768px) {
  .lower-message .message_head {
    margin-bottom: 84px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.lower-message .message_head_left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  max-width: 456px;
  line-height: 1.78261;
  font-size: 4.6rem;
  letter-spacing: 0.44em;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .lower-message .message_head_left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    line-height: 1.91304;
    font-size: 2.3rem;
    font-weight: 900;
  }
}
.lower-message .message_head_right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42%;
  flex: 0 0 42%;
  max-width: 500px;
  line-height: 1.2;
  font-size: 8.87rem;
  letter-spacing: -0.03em;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  display: block;
}
@media screen and (max-width: 768px) {
  .lower-message .message_head_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    color: rgba(0, 0, 0, 0.1);
    margin-top: -72px;
    margin-left: 40px;
    font-size: 5rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-transform: rotate(90deg) translateY(-107px);
    transform: rotate(90deg) translateY(-107px);
  }
}
.lower-message .counter {
  counter-reset: number;
}
.lower-message .president_interview {
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview {
    margin-bottom: 68px;
  }
}
.lower-message .president_interview:nth-child(even) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.lower-message .president_interview:nth-child(even) .president_interview_bg_cont {
  margin-right: 0;
  margin-left: -560px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview:nth-child(even) .president_interview_bg_cont {
    margin-left: -80px;
  }
}
.lower-message .president_interview:nth-child(even) .innerWrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.lower-message .president_interview:nth-child(even) .innerWrap .interview_txt {
  margin-left: 0;
  margin-right: 64px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview:nth-child(even) .innerWrap .interview_txt {
    margin-right: 0;
  }
}
.lower-message .president_interview_bg {
  width: calc(100% - 560px);
  background: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview_bg {
    width: calc(100% - 80px);
  }
}
.lower-message .president_interview_bg_cont {
  margin-right: -560px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview_bg_cont {
    margin-right: -80px;
  }
}
.lower-message .president_interview .innerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-72px);
  transform: translateY(-72px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap {
    -webkit-transform: translateY(-36px);
    transform: translateY(-36px);
    display: block;
  }
}
.lower-message .president_interview .innerWrap .interview_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 37%;
  flex: 0 0 37%;
  max-width: 446px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap .interview_img {
    margin-bottom: 20px;
  }
}
.lower-message .president_interview .innerWrap .interview_txt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 602px;
  margin-left: 64px;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap .interview_txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.lower-message .president_interview .innerWrap .interview_txt_hd {
  line-height: 1.75;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  padding-top: 1.8em;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap .interview_txt_hd {
    padding-top: 1em;
    font-size: 1.8rem;
  }
}
.lower-message .president_interview .innerWrap .interview_txt_hd:before {
  counter-increment: number;
  content: "#" counter(number,decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.42857;
  font-size: 1.4rem;
  color: #fff;
  background: #231815;
  padding: 0 .2em;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap .interview_txt_hd:before {
    font-size: 1.2rem;
  }
}
.lower-message .president_interview .innerWrap .interview_txt_area {
  line-height: 1.92857;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-message .president_interview .innerWrap .interview_txt_area {
    font-size: 1.3rem;
  }
}
.lower-message .profile {
  background: url(../img/message/message_img06.jpg) center center no-repeat;
  background-size: cover;
  padding: 88px 40px;
}
@media screen and (max-width: 768px) {
  .lower-message .profile {
    padding: 20px;
  }
}
.lower-message .profile .innerWrap {
  border: 7px solid #f2f2f2;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .lower-message .profile .innerWrap {
    padding: 20px 20px;
    display: block;
  }
}
.lower-message .profile .innerWrap .profile_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
  max-width: 280px;
  margin-right: 44px;
}
@media screen and (max-width: 768px) {
  .lower-message .profile .innerWrap .profile_img {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.lower-message .profile .innerWrap .profile_img img {
  width: 100%;
  height: auto;
}
.lower-message .profile .innerWrap .profile_txt .role {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower-message .profile .innerWrap .profile_txt .role {
    font-size: 1.4rem;
  }
}
.lower-message .profile .innerWrap .profile_txt .name {
  line-height: 1.75;
  font-size: 2.6rem;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: bold;
  margin-bottom: .5em;
}
@media screen and (max-width: 768px) {
  .lower-message .profile .innerWrap .profile_txt .name {
    font-size: 1.8rem;
  }
}
.lower-message .profile .innerWrap .profile_txt .txtarea {
  line-height: 1.92857;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .lower-message .profile .innerWrap .profile_txt .txtarea {
    font-size: 1.3rem;
  }
}

/* ============================================
// TEMP
//// MEMO //
//// @include fontsize(fz, lh);
//// @include tracking(ls);
//// @include mq(tab) {}
// ==========================================*/
.lower-system .pagetitle {
  margin-bottom: 0;
}
.lower-system .system_h {
  padding: 40px 20px;
  background: url(../img/system/system_img01.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .lower-system .system_h {
    padding: 20px 0;
  }
}
.lower-system .system_h_Wrap {
  max-width: 908px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-system .system_h_Wrap {
    padding: 0 20px;
  }
}
.lower-system .system_h_Wrap .txt {
  color: #fff;
  line-height: 1.92857;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-system .system_h_Wrap .txt {
    font-size: 1.3rem;
  }
}
.lower-system .system_content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lower-system .system_content_list_item {
  max-width: 580px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  background: #f5f5f5;
  padding: 30px 0 40px 28px;
  margin: 0 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto 30px;
    padding: 0 20px 20px;
  }
}
.lower-system .system_content_list_item .item_icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11vw;
  flex: 0 0 11vw;
  height: 11vw;
  max-width: 125px;
  max-height: 125px;
  margin-right: 28px;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content_list_item .item_icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 125px;
    flex: 0 0 125px;
    height: 125px;
    margin: 0 auto;
  }
}
.lower-system .system_content_list_item .item_txtarea {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.lower-system .system_content_list_item .item_txtarea_hd {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  border-bottom: 1px dashed #000;
  padding-bottom: .5em;
  margin-bottom: .6em;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content_list_item .item_txtarea_hd {
    font-size: 1.5rem;
  }
}
.lower-system .system_content_list_item .item_txtarea_txt {
  font-size: 1.4rem;
  padding-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content_list_item .item_txtarea_txt {
    font-size: 1.3rem;
    padding-right: 0;
  }
}
.lower-system .system_content2 {
  padding-top: 96px;
  background: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2 {
    padding-top: 40px;
  }
}
.lower-system .system_content2 .system_h_Wrap {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2 .system_h_Wrap {
    margin-bottom: 30px;
  }
}
.lower-system .system_content2 .system_h_Wrap .txt {
  text-align: left;
  color: #000000;
}
.lower-system .system_content2_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 28px;
}
.lower-system .system_content2_list_item {
  max-width: 580px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  background: #fff;
  padding: 30px 0 40px 28px;
  margin: 0 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto 30px;
    padding: 20px;
  }
}
.lower-system .system_content2_list_item .item_icon {
  max-width: 125px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11vw;
  flex: 0 0 11vw;
  height: 11vw;
  max-height: 125px;
  margin-right: 28px;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2_list_item .item_icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 125px;
    flex: 0 0 125px;
    height: 125px;
    margin: 0 auto;
  }
}
.lower-system .system_content2_list_item .item_txtarea {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.lower-system .system_content2_list_item .item_txtarea_hd {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  border-bottom: 1px dashed #000;
  padding-bottom: .5em;
  margin-bottom: .6em;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2_list_item .item_txtarea_hd {
    font-size: 1.5rem;
  }
}
.lower-system .system_content2_list_item .item_txtarea_txt {
  font-size: 1.4rem;
  padding-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .lower-system .system_content2_list_item .item_txtarea_txt {
    font-size: 1.3rem;
  }
}
.lower-system .footer {
  border-top: 1px solid #f2f2f2;
}

/* ============================================
// TEMP
//// MEMO //
//// @include fontsize(fz, lh);
//// @include tracking(ls);
//// @include mq(tab) {}
// ==========================================*/
.lower-guideline {
  /* ===================
  // SVG Animation CSS
  =================== */
}
.lower-guideline .pagetitle {
  margin-bottom: 0;
}
.lower-guideline .guide_h {
  padding: 40px 20px;
  background: url(../img/system/system_img01.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_h {
    padding: 20px 0;
  }
}
.lower-guideline .guide_h_Wrap {
  max-width: 908px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_h_Wrap {
    padding: 0 20px;
  }
}
.lower-guideline .guide_h_Wrap .txt {
  color: #fff;
  line-height: 1.92857;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_h_Wrap .txt {
    font-size: 1.3rem;
  }
}
.lower-guideline .guideline_content.innerWrap {
  max-width: 1104px;
}
.lower-guideline .guideline_content_hd {
  font-size: 1.5rem;
  padding: 1em 24px;
  background: #f5f5f5;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guideline_content_hd {
    font-size: 1.4rem;
    padding: 1em 20px;
  }
}
.lower-guideline .guideline_content_hd span {
  display: block;
}
.lower-guideline .guideline_content_txt {
  padding: 0 36px 0 18px;
  margin-bottom: 56px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guideline_content_txt {
    padding: 0 1em;
    margin-bottom: 32px;
    font-size: 1.3rem;
  }
}
.lower-guideline .guide_flow {
  background: url(../img/guideline/guideline_img01.jpg) left top no-repeat;
  background-size: cover;
  padding: 80px 40px 112px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow {
    padding: 40px 20px;
  }
}
.lower-guideline .guide_flow_hd {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.36em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_hd {
    margin-bottom: 20px;
  }
}
.lower-guideline .guide_flow_hd .en {
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_hd .en {
    font-size: 1.2rem;
  }
}
.lower-guideline .guide_flow_hd .ja {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_hd .ja {
    font-size: 1.8rem;
  }
}
.lower-guideline .guide_flow_list {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.lower-guideline .guide_flow_list.active::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.lower-guideline .guide_flow_list::after {
  content: '';
  width: 177px;
  height: 44px;
  display: block;
  background: url(../img/guideline/guideline_img02.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -88.5px;
  opacity: 0;
  -webkit-transform: translate3d(0, -40px, 0);
  transform: translate3d(0, -40px, 0);
  -webkit-transition: opacity 0.5s ease-in-out , transform 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out , -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out , -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out , transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out , transform 0.5s ease-in-out , -webkit-transform 0.5s ease-in-out;
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list::after {
    height: 32px;
    width: 120px;
    margin-left: -60px;
  }
}
.lower-guideline .guide_flow_list_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17%;
  flex: 0 0 17%;
  max-width: 208px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 18px 20px 20px;
  position: relative;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
    margin-right: 0;
    padding: 10px 20px;
  }
}
.lower-guideline .guide_flow_list_item::after {
  content: '';
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item::after {
    top: inherit;
    right: inherit;
    bottom: -20px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
.lower-guideline .guide_flow_list_item:last-child {
  margin-right: 0;
}
.lower-guideline .guide_flow_list_item:last-child::after {
  display: none;
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow_list_item.active#flow2 {
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
  }
  .lower-guideline .guide_flow_list_item.active#flow2 path {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
  }
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow_list_item.active#flow3 {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }
  .lower-guideline .guide_flow_list_item.active#flow3 path {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
  }
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow_list_item.active#flow4 {
    -webkit-transition-delay: .45s;
    transition-delay: .45s;
  }
  .lower-guideline .guide_flow_list_item.active#flow4 path {
    -webkit-animation-delay: .95s;
    animation-delay: .95s;
  }
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow_list_item.active#flow5 {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }
  .lower-guideline .guide_flow_list_item.active#flow5 path {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
}
.lower-guideline .guide_flow_list_item .step {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item .step {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: left;
    font-size: 1rem;
    margin-bottom: .5em;
  }
}
.lower-guideline .guide_flow_list_item .step span::before {
  counter-increment: number;
  content: counter(number);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item .step span::before {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.lower-guideline .guide_flow_list_item .img {
  width: 84px;
  height: 80px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
    max-width: 64px;
    height: auto;
    max-height: 64px;
    margin-right: 32px;
    margin-bottom: 0;
  }
}
.lower-guideline .guide_flow_list_item .img svg {
  max-height: 80px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item .img svg {
    max-height: 48px;
  }
}
.lower-guideline .guide_flow_list_item .txt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow_list_item .txt {
    display: inline-block;
    text-align: left;
    font-size: 1.6rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: calc(100% - 96px);
  }
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow_list.active + .informal {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
  }
  .lower-guideline .guide_flow_list.active + .informal path {
    stroke: #fff;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    stroke-width: 1;
    -webkit-animation: icon .5s ease-in forwards;
    animation: icon .5s ease-in forwards;
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
  }
}
@media all and (-ms-high-contrast: none) {
  .lower-guideline .guide_flow .informal path {
    fill: #fff;
    opacity: 0;
  }
  .lower-guideline .guide_flow .guide_flow_list.active + .informal path {
    -webkit-animation: IE 1s ease-in forwards;
    animation: IE 1s ease-in forwards;
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
  }
}
.lower-guideline .guide_flow .informal {
  max-width: 514px;
  margin: 0 auto;
  border: 2px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: .5em;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .lower-guideline .guide_flow .informal {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .lower-guideline .guide_flow .informal {
    font-size: 1.7rem;
  }
}
.lower-guideline .guide_flow .informal .img {
  width: 56px;
  height: 40px;
  display: block;
}
.lower-guideline .guide_flow .informal::after {
  content: '';
  width: 56px;
  display: block;
}
.lower-guideline .linknav {
  text-align: center;
  width: 100%;
  padding: 8px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1.2rem;
  z-index: 100;
}
.lower-guideline .linknav .bannerbox_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lower-guideline .linknav .bannerbox_list_item {
  height: 65px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .linknav .bannerbox_list_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    height: auto;
    max-width: 45%;
  }
}
.lower-guideline .linknav .bannerbox_list_item.ban {
  background: #fff;
  margin-right: 32px;
  padding: 0 40px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lower-guideline .linknav .bannerbox_list_item.ban:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .lower-guideline .linknav .bannerbox_list_item.ban {
    margin-right: 16px;
    padding: 0 0;
  }
}
.lower-guideline .linknav .bannerbox_list_item.ban img {
  width: auto;
  max-height: 65px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .linknav .bannerbox_list_item.ban img {
    width: 100%;
    max-height: 32px;
  }
}
.lower-guideline .linknav .bannerbox_list_item.btnlink {
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lower-guideline .linknav .bannerbox_list_item.btnlink a {
  height: 100%;
  color: #fff;
  display: block;
  width: 360px;
  padding: .9em;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-guideline .linknav .bannerbox_list_item.btnlink a {
    font-size: 1.3rem;
  }
}
.lower-guideline .linknav .bannerbox_list_item.btnlink a::after {
  content: '';
  width: 13px;
  height: 10px;
  display: block;
  background: url(../img/guideline/guideline_img03.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 5px;
  right: 5px;
}
.lower-guideline .pageTop {
  bottom: 120px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .pageTop {
    bottom: 106px;
  }
}
.lower-guideline .footer {
  border-top: 1px solid #f2f2f2;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .lower-guideline .footer {
    padding-bottom: 61px;
  }
}
.lower-guideline path {
  fill: none;
}
.lower-guideline .active path {
  stroke: #fff;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  stroke-width: 1;
  -webkit-animation: icon .5s ease-in forwards;
  animation: icon .5s ease-in forwards;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}
@-webkit-keyframes icon {
  0% {
    stroke-dashoffset: 1500;
    fill: transparent;
    /*透過*/
  }
  100% {
    fill: #fff;
  }
}
@keyframes icon {
  0% {
    stroke-dashoffset: 1500;
    fill: transparent;
    /*透過*/
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
    stroke-width: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  .lower-guideline path {
    fill: #fff;
    opacity: 0;
  }
  .lower-guideline .active path {
    -webkit-animation: IE 1s ease-in forwards;
    animation: IE 1s ease-in forwards;
  }
}
@-webkit-keyframes IE {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes IE {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ============================================
// TEMP
//// MEMO //
//// @include fontsize(fz, lh);
//// @include tracking(ls);
//// @include mq(tab) {}
// ==========================================*/
/* ------------------------
// 共通タグ
------------------------ */
.lower-newgraduate,
.lower-midcareer,
.lower-parttime {
  /*
  // 検索パネル
  */
}
.lower-newgraduate .career_head,
.lower-midcareer .career_head,
.lower-parttime .career_head {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head,
  .lower-midcareer .career_head,
  .lower-parttime .career_head {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.lower-newgraduate .career_head_txtarea,
.lower-midcareer .career_head_txtarea,
.lower-parttime .career_head_txtarea {
  max-width: 324px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 324px;
  flex: 0 0 324px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_txtarea,
  .lower-midcareer .career_head_txtarea,
  .lower-parttime .career_head_txtarea {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.lower-newgraduate .career_head_txtarea_hd,
.lower-midcareer .career_head_txtarea_hd,
.lower-parttime .career_head_txtarea_hd {
  font-size: 2.6rem;
  letter-spacing: 0.36em;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_txtarea_hd,
  .lower-midcareer .career_head_txtarea_hd,
  .lower-parttime .career_head_txtarea_hd {
    font-size: 1.8rem;
    margin-bottom: 1em;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    margin-right: auto;
  }
}
.lower-newgraduate .career_head_txtarea_txt,
.lower-midcareer .career_head_txtarea_txt,
.lower-parttime .career_head_txtarea_txt {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_txtarea_txt,
  .lower-midcareer .career_head_txtarea_txt,
  .lower-parttime .career_head_txtarea_txt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
}
.lower-newgraduate .career_head_txtarea_eng,
.lower-midcareer .career_head_txtarea_eng,
.lower-parttime .career_head_txtarea_eng {
  margin-left: -5px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_txtarea_eng,
  .lower-midcareer .career_head_txtarea_eng,
  .lower-parttime .career_head_txtarea_eng {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    maw-width: 40%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    margin: 0 0 0;
  }
}
.lower-newgraduate .career_head_img,
.lower-midcareer .career_head_img,
.lower-parttime .career_head_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 61%;
  flex: 0 0 61%;
  height: 507px;
  margin-left: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_img,
  .lower-midcareer .career_head_img,
  .lower-parttime .career_head_img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 32px;
    padding: 48px 20px;
  }
}
.lower-newgraduate .career_head_img_mask,
.lower-midcareer .career_head_img_mask,
.lower-parttime .career_head_img_mask {
  width: 595px;
  height: 341px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_head_img_mask,
  .lower-midcareer .career_head_img_mask,
  .lower-parttime .career_head_img_mask {
    width: 100%;
    height: auto;
  }
}
.lower-newgraduate .search,
.lower-midcareer .search,
.lower-parttime .search {
  margin-top: 88px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search,
  .lower-midcareer .search,
  .lower-parttime .search {
    margin-top: 44px;
    padding: 0 20px;
  }
  .lower-newgraduate .search .innerWrap,
  .lower-midcareer .search .innerWrap,
  .lower-parttime .search .innerWrap {
    padding: 0;
  }
}
.lower-newgraduate .search_hd,
.lower-midcareer .search_hd,
.lower-parttime .search_hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.28em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_hd,
  .lower-midcareer .search_hd,
  .lower-parttime .search_hd {
    font-size: 1.8rem;
  }
}
.lower-newgraduate .search_hd .toggle_trigger,
.lower-midcareer .search_hd .toggle_trigger,
.lower-parttime .search_hd .toggle_trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 20px;
  background: #000;
  right: inherit;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_hd .toggle_trigger,
  .lower-midcareer .search_hd .toggle_trigger,
  .lower-parttime .search_hd .toggle_trigger {
    width: 36px;
    height: 36px;
  }
}
.lower-newgraduate .search_hd .toggle_trigger_ico,
.lower-midcareer .search_hd .toggle_trigger_ico,
.lower-parttime .search_hd .toggle_trigger_ico {
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/kyujin/icon05.png) center center no-repeat;
  background-size: 16px 16px;
}
.lower-newgraduate .search_panel,
.lower-midcareer .search_panel,
.lower-parttime .search_panel {
  border: 8px solid #f5f5f5;
}
.lower-newgraduate .search_panel .search_body,
.lower-midcareer .search_panel .search_body,
.lower-parttime .search_panel .search_body {
  padding: 34px 64px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body,
  .lower-midcareer .search_panel .search_body,
  .lower-parttime .search_panel .search_body {
    padding: 17px 20px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form .form_parts_inner,
.lower-midcareer .search_panel .search_body .custom-form .form_parts_inner,
.lower-parttime .search_panel .search_body .custom-form .form_parts_inner {
  max-width: 778px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.lower-newgraduate .search_panel .search_body .custom-form .category_list,
.lower-midcareer .search_panel .search_body .custom-form .category_list,
.lower-parttime .search_panel .search_body .custom-form .category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lower-newgraduate .search_panel .search_body .custom-form .selCity-box,
.lower-midcareer .search_panel .search_body .custom-form .selCity-box,
.lower-parttime .search_panel .search_body .custom-form .selCity-box {
  background: #f5f5f5;
  padding: .7em 15px;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts,
.lower-midcareer .search_panel .search_body .custom-form_parts,
.lower-parttime .search_panel .search_body .custom-form_parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
  /* ブランドチェックボックス */
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts,
  .lower-midcareer .search_panel .search_body .custom-form_parts,
  .lower-parttime .search_panel .search_body .custom-form_parts {
    display: block;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl {
    font-size: 1.4rem;
    margin-bottom: .3em;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl::before,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl::before,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl::before {
  display: none;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span {
  width: 22px;
  height: 22px;
  display: block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span {
    width: 18px;
    height: 18px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work {
  background: url(../img/kyujin/icon01.png) center center no-repeat;
  background-size: 21px 21px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_work {
    background-size: 18px 18px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ {
  background: url(../img/kyujin/icon02.png) center center no-repeat;
  background-size: 22px 22px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_occ {
    background-size: 18px 18px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand {
  height: 24px;
  background: url(../img/kyujin/icon03.png) center center no-repeat;
  background-size: 19px 24px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_brand {
    background-size: 15px 20px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word,
.lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word,
.lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word {
  background: url(../img/kyujin/icon04.png) center center no-repeat;
  background-size: 20px 15px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word,
  .lower-midcareer .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word,
  .lower-parttime .search_panel .search_body .custom-form_parts .parts_ttl span.ico_word {
    background-size: 16px 11px;
  }
}
.lower-newgraduate .search_panel .search_body .custom-form_parts select, .lower-newgraduate .search_panel .search_body .custom-form_parts input,
.lower-midcareer .search_panel .search_body .custom-form_parts select,
.lower-midcareer .search_panel .search_body .custom-form_parts input,
.lower-parttime .search_panel .search_body .custom-form_parts select,
.lower-parttime .search_panel .search_body .custom-form_parts input {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts select::-webkit-input-placeholder, .lower-newgraduate .search_panel .search_body .custom-form_parts input::-webkit-input-placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts select::-webkit-input-placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts input::-webkit-input-placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts select::-webkit-input-placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts input::-webkit-input-placeholder {
  letter-spacing: 0.28em;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts select:-ms-input-placeholder, .lower-newgraduate .search_panel .search_body .custom-form_parts input:-ms-input-placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts select:-ms-input-placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts input:-ms-input-placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts select:-ms-input-placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts input:-ms-input-placeholder {
  letter-spacing: 0.28em;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts select::placeholder, .lower-newgraduate .search_panel .search_body .custom-form_parts input::placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts select::placeholder,
.lower-midcareer .search_panel .search_body .custom-form_parts input::placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts select::placeholder,
.lower-parttime .search_panel .search_body .custom-form_parts input::placeholder {
  letter-spacing: 0.28em;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .select_first,
.lower-midcareer .search_panel .search_body .custom-form_parts .select_first,
.lower-parttime .search_panel .search_body .custom-form_parts .select_first {
  margin-bottom: 1em;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts input[type=checkbox] + label:before,
.lower-midcareer .search_panel .search_body .custom-form_parts input[type=checkbox] + label:before,
.lower-parttime .search_panel .search_body .custom-form_parts input[type=checkbox] + label:before {
  top: 4px;
  left: 0;
  z-index: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #dddddd;
  background: #fff;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts input[type=checkbox]:checked + label:before,
.lower-midcareer .search_panel .search_body .custom-form_parts input[type=checkbox]:checked + label:before,
.lower-parttime .search_panel .search_body .custom-form_parts input[type=checkbox]:checked + label:before {
  background: #000;
  border: none;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check {
  background: #f5f5f5;
  padding: .7em 15px;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check .brand_list,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check .brand_list,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check .brand_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check .brand_list .brand_logo,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check .brand_list .brand_logo,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check .brand_list .brand_logo {
  height: 40px;
  background: #fff;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label {
  padding: 0 8px 0 0;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:before,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:before,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:before {
  display: none;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:after,
.lower-midcareer .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:after,
.lower-parttime .search_panel .search_body .custom-form_parts .brand_check input[type=checkbox] + label:after {
  color: #000000;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:before,
.lower-midcareer .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:before,
.lower-parttime .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:before {
  border: none;
}
.lower-newgraduate .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:after,
.lower-midcareer .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:after,
.lower-parttime .search_panel .search_body .custom-form_parts .category_list input[type=checkbox] + label:after {
  display: none;
}
.lower-newgraduate .search_panel .search_body .custom-form .selCity_alert,
.lower-midcareer .search_panel .search_body .custom-form .selCity_alert,
.lower-parttime .search_panel .search_body .custom-form .selCity_alert {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  font-weight: bold;
}
.lower-newgraduate .search_panel .search_body .custom-form label,
.lower-midcareer .search_panel .search_body .custom-form label,
.lower-parttime .search_panel .search_body .custom-form label {
  font-size: 1.4rem;
  letter-spacing: 0.28em;
}
.lower-newgraduate .search_panel .search_body .custom-form label .logo_name,
.lower-midcareer .search_panel .search_body .custom-form label .logo_name,
.lower-parttime .search_panel .search_body .custom-form label .logo_name {
  font-size: 1rem;
  font-weight: bold;
}
.lower-newgraduate .search_panel .search_body .custom-form .custom-form_searth_btn,
.lower-midcareer .search_panel .search_body .custom-form .custom-form_searth_btn,
.lower-parttime .search_panel .search_body .custom-form .custom-form_searth_btn {
  max-width: 300px;
  margin: 10px auto 0;
}
.lower-newgraduate .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover::before,
.lower-midcareer .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover::before,
.lower-parttime .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover::before {
  display: none;
}
.lower-newgraduate .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
.lower-midcareer .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
.lower-parttime .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"] {
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  padding: 19px 0;
  background: #000;
  color: #fff;
  font-weight: bold;
}
.lower-newgraduate .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"]:hover,
.lower-midcareer .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"]:hover,
.lower-parttime .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"]:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
  .lower-midcareer .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"],
  .lower-parttime .search_panel .search_body .custom-form .custom-form_searth_btn .btn_cover input[type="submit"] {
    padding: 0.5em;
  }
}
.lower-newgraduate .news,
.lower-midcareer .news,
.lower-parttime .news {
  padding: 170px 40px 104px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news,
  .lower-midcareer .news,
  .lower-parttime .news {
    padding: 40px 20px;
  }
}
.lower-newgraduate .news_cont,
.lower-midcareer .news_cont,
.lower-parttime .news_cont {
  width: 100%;
  max-width: 700px;
  text-align: left;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news_cont,
  .lower-midcareer .news_cont,
  .lower-parttime .news_cont {
    margin-bottom: 0 auto 18px;
  }
}
.lower-newgraduate .news_cont_list,
.lower-midcareer .news_cont_list,
.lower-parttime .news_cont_list {
  border-top: 1px dashed #E1E1E1;
}
.lower-newgraduate .news_cont_list_item,
.lower-midcareer .news_cont_list_item,
.lower-parttime .news_cont_list_item {
  border-bottom: 1px dashed #E1E1E1;
}
.lower-newgraduate .news_cont_list_item .link,
.lower-midcareer .news_cont_list_item .link,
.lower-parttime .news_cont_list_item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news_cont_list_item .link,
  .lower-midcareer .news_cont_list_item .link,
  .lower-parttime .news_cont_list_item .link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.lower-newgraduate .news_cont_list_item .link:hover,
.lower-midcareer .news_cont_list_item .link:hover,
.lower-parttime .news_cont_list_item .link:hover {
  color: #000000;
  opacity: .7;
}
.lower-newgraduate .news_cont_list_item .link .time,
.lower-midcareer .news_cont_list_item .link .time,
.lower-parttime .news_cont_list_item .link .time {
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news_cont_list_item .link .time,
  .lower-midcareer .news_cont_list_item .link .time,
  .lower-parttime .news_cont_list_item .link .time {
    font-size: 1.2rem;
    margin-bottom: .5em;
  }
}
.lower-newgraduate .news_cont_list_item .link .role,
.lower-midcareer .news_cont_list_item .link .role,
.lower-parttime .news_cont_list_item .link .role {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  text-align: center;
  line-height: 1.75;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  background: #F2F2F2;
  margin: 0 2em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news_cont_list_item .link .role,
  .lower-midcareer .news_cont_list_item .link .role,
  .lower-parttime .news_cont_list_item .link .role {
    font-size: 1.2rem;
  }
}
.lower-newgraduate .news_cont_list_item .link .txt,
.lower-midcareer .news_cont_list_item .link .txt,
.lower-parttime .news_cont_list_item .link .txt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 486px;
  flex: 0 0 486px;
  line-height: 1.75;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news_cont_list_item .link .txt,
  .lower-midcareer .news_cont_list_item .link .txt,
  .lower-parttime .news_cont_list_item .link .txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.3rem;
  }
}
.lower-newgraduate .news .view_more,
.lower-midcareer .news .view_more,
.lower-parttime .news .view_more {
  text-align: center;
}
.lower-newgraduate .news .view_more a,
.lower-midcareer .news .view_more a,
.lower-parttime .news .view_more a {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .news .view_more a,
  .lower-midcareer .news .view_more a,
  .lower-parttime .news .view_more a {
    font-size: 1.3rem;
  }
}
.lower-newgraduate .interview,
.lower-midcareer .interview,
.lower-parttime .interview {
  background: #f5f5f5;
}
.lower-newgraduate .interviewWrap,
.lower-midcareer .interviewWrap,
.lower-parttime .interviewWrap {
  width: 100%;
  max-width: 1084px;
  padding: 96px 40px 120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interviewWrap,
  .lower-midcareer .interviewWrap,
  .lower-parttime .interviewWrap {
    padding-top: 60px;
    margin: 0 auto 52px;
    padding: 40px 20px 40px;
  }
}
.lower-newgraduate .interview_hd,
.lower-midcareer .interview_hd,
.lower-parttime .interview_hd {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_hd,
  .lower-midcareer .interview_hd,
  .lower-parttime .interview_hd {
    margin-bottom: 40px;
  }
}
.lower-newgraduate .interview_hd .sec_title,
.lower-midcareer .interview_hd .sec_title,
.lower-parttime .interview_hd .sec_title {
  margin-bottom: 32px;
}
.lower-newgraduate .interview_hd_txt,
.lower-midcareer .interview_hd_txt,
.lower-parttime .interview_hd_txt {
  max-width: 828px;
  margin: 0 auto;
  text-align: left;
}
.lower-newgraduate .interview_cont,
.lower-midcareer .interview_cont,
.lower-parttime .interview_cont {
  margin-bottom: 64px;
  -webkit-transition: .3s;
  transition: .3s;
}
.lower-newgraduate .interview_cont:hover,
.lower-midcareer .interview_cont:hover,
.lower-parttime .interview_cont:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont,
  .lower-midcareer .interview_cont,
  .lower-parttime .interview_cont {
    margin-bottom: 32px;
  }
}
.lower-newgraduate .interview_cont_link,
.lower-midcareer .interview_cont_link,
.lower-parttime .interview_cont_link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_link,
  .lower-midcareer .interview_cont_link,
  .lower-parttime .interview_cont_link {
    display: block;
  }
}
.lower-newgraduate .interview_cont:nth-child(odd) .interview_cont_link,
.lower-midcareer .interview_cont:nth-child(odd) .interview_cont_link,
.lower-parttime .interview_cont:nth-child(odd) .interview_cont_link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.lower-newgraduate .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea,
.lower-midcareer .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea,
.lower-parttime .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea {
  margin-left: 0;
  margin-right: -64px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea,
  .lower-midcareer .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea,
  .lower-parttime .interview_cont:nth-child(odd) .interview_cont_link .interview_cont_txtarea {
    margin: -60px auto 0;
  }
}
.lower-newgraduate .interview_cont_img,
.lower-midcareer .interview_cont_img,
.lower-parttime .interview_cont_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52%;
  flex: 0 0 52%;
  max-width: 560px;
  height: 346px;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_img,
  .lower-midcareer .interview_cont_img,
  .lower-parttime .interview_cont_img {
    height: auto;
    padding-top: 61.7857%;
    position: relative;
  }
  .lower-newgraduate .interview_cont_img img,
  .lower-midcareer .interview_cont_img img,
  .lower-parttime .interview_cont_img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.lower-newgraduate .interview_cont_txtarea,
.lower-midcareer .interview_cont_txtarea,
.lower-parttime .interview_cont_txtarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  max-width: 588px;
  border: 8px solid #F5F5F5;
  background: #fff;
  margin-left: -64px;
  padding: 56px 72px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_txtarea,
  .lower-midcareer .interview_cont_txtarea,
  .lower-parttime .interview_cont_txtarea {
    width: calc(100% - 20px);
    max-width: 520px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: -60px auto 0;
    padding: 28px 1em;
  }
}
.lower-newgraduate .interview_cont_txtarea .role,
.lower-midcareer .interview_cont_txtarea .role,
.lower-parttime .interview_cont_txtarea .role {
  line-height: 1.75;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  padding: .5em;
  font-weight: bold;
  display: inline-block;
  background: #F5F5F5;
  position: absolute;
  top: -8px;
  left: -8px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_txtarea .role,
  .lower-midcareer .interview_cont_txtarea .role,
  .lower-parttime .interview_cont_txtarea .role {
    font-size: 1rem;
  }
}
.lower-newgraduate .interview_cont_txtarea .txt_hd,
.lower-midcareer .interview_cont_txtarea .txt_hd,
.lower-parttime .interview_cont_txtarea .txt_hd {
  line-height: 1.75;
  font-size: 2rem;
  letter-spacing: 0.28em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_txtarea .txt_hd,
  .lower-midcareer .interview_cont_txtarea .txt_hd,
  .lower-parttime .interview_cont_txtarea .txt_hd {
    font-size: 1.5rem;
  }
}
.lower-newgraduate .interview_cont_txtarea .corr,
.lower-newgraduate .interview_cont_txtarea .name,
.lower-midcareer .interview_cont_txtarea .corr,
.lower-midcareer .interview_cont_txtarea .name,
.lower-parttime .interview_cont_txtarea .corr,
.lower-parttime .interview_cont_txtarea .name {
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .interview_cont_txtarea .corr,
  .lower-newgraduate .interview_cont_txtarea .name,
  .lower-midcareer .interview_cont_txtarea .corr,
  .lower-midcareer .interview_cont_txtarea .name,
  .lower-parttime .interview_cont_txtarea .corr,
  .lower-parttime .interview_cont_txtarea .name {
    font-size: 1.3rem;
  }
}
.lower-newgraduate .interview_cont_txtarea .corr,
.lower-midcareer .interview_cont_txtarea .corr,
.lower-parttime .interview_cont_txtarea .corr {
  margin-bottom: .5em;
}
.lower-newgraduate .interview .view_more,
.lower-midcareer .interview .view_more,
.lower-parttime .interview .view_more {
  text-align: center;
}
.lower-newgraduate .faq,
.lower-midcareer .faq,
.lower-parttime .faq {
  background: url(../img/careers/careers_img02.jpg) left top no-repeat;
  background-size: cover;
  padding: 90px 40px 100px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .faq,
  .lower-midcareer .faq,
  .lower-parttime .faq {
    padding: 40px 20px 45px;
  }
}
.lower-newgraduate .faqWrap,
.lower-midcareer .faqWrap,
.lower-parttime .faqWrap {
  max-width: 828px;
  margin: 0 auto;
  text-align: center;
}
.lower-newgraduate .faq .sec_title,
.lower-midcareer .faq .sec_title,
.lower-parttime .faq .sec_title {
  border-bottom-color: #fff;
}
.lower-newgraduate .faq_txt,
.lower-midcareer .faq_txt,
.lower-parttime .faq_txt {
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .faq_txt,
  .lower-midcareer .faq_txt,
  .lower-parttime .faq_txt {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
.lower-newgraduate .faq_btn,
.lower-midcareer .faq_btn,
.lower-parttime .faq_btn {
  margin: 0 auto;
}
.lower-newgraduate .faq_btn_link,
.lower-midcareer .faq_btn_link,
.lower-parttime .faq_btn_link {
  border: 1px solid #fff;
  padding: .7em;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .faq_btn_link,
  .lower-midcareer .faq_btn_link,
  .lower-parttime .faq_btn_link {
    font-size: 1.3rem;
  }
}
.lower-newgraduate .faq_btn_link path,
.lower-midcareer .faq_btn_link path,
.lower-parttime .faq_btn_link path {
  -webkit-transition: .3s;
  transition: .3s;
}
.lower-newgraduate .faq_btn_link:hover,
.lower-midcareer .faq_btn_link:hover,
.lower-parttime .faq_btn_link:hover {
  background: #fff;
  color: #000;
}
.lower-newgraduate .faq_btn_link:hover path,
.lower-midcareer .faq_btn_link:hover path,
.lower-parttime .faq_btn_link:hover path {
  fill: #000;
}
.lower-newgraduate .faq_btn_link .faq_icon,
.lower-midcareer .faq_btn_link .faq_icon,
.lower-parttime .faq_btn_link .faq_icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: .7em;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .faq_btn_link .faq_icon,
  .lower-midcareer .faq_btn_link .faq_icon,
  .lower-parttime .faq_btn_link .faq_icon {
    width: 30px;
    height: 30px;
  }
}
.lower-newgraduate .career_end,
.lower-midcareer .career_end,
.lower-parttime .career_end {
  padding: 64px 40px 86px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_end,
  .lower-midcareer .career_end,
  .lower-parttime .career_end {
    padding: 32px 20px 43px;
  }
}
.lower-newgraduate .career_end .copy,
.lower-midcareer .career_end .copy,
.lower-parttime .career_end .copy {
  font-size: 3.582rem;
  letter-spacing: 0.44em;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_end .copy,
  .lower-midcareer .career_end .copy,
  .lower-parttime .career_end .copy {
    margin-bottom: 32px;
    font-size: 2.3rem;
  }
}
.lower-newgraduate .career_end_btn_link,
.lower-midcareer .career_end_btn_link,
.lower-parttime .career_end_btn_link {
  display: block;
  width: 364px;
  padding: 1.2em;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}
.lower-newgraduate .career_end_btn_link:hover,
.lower-midcareer .career_end_btn_link:hover,
.lower-parttime .career_end_btn_link:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .lower-newgraduate .career_end_btn_link,
  .lower-midcareer .career_end_btn_link,
  .lower-parttime .career_end_btn_link {
    width: 100%;
    font-size: 1.5rem;
  }
}
.lower-newgraduate .footer,
.lower-midcareer .footer,
.lower-parttime .footer {
  border-top: 1px solid #f2f2f2;
}

/* ------------------------
// 新卒採用タグ
------------------------ */
/* ------------------------
// 中途採用タグ
------------------------ */
.lower-midcareer .news {
  padding: 104px 40px 104px;
}
@media screen and (max-width: 768px) {
  .lower-midcareer .news {
    padding: 40px 20px;
  }
}
.lower-midcareer .career_end .copy {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lower-midcareer .career_end .copy {
    margin-bottom: 0;
  }
}

/* ------------------------
// パートタイムタグ
------------------------ */
.lower-parttime .news {
  padding: 104px 40px 104px;
}
@media screen and (max-width: 768px) {
  .lower-parttime .news {
    padding: 40px 20px;
  }
}
.lower-parttime .career_end .copy {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lower-parttime .career_end .copy {
    margin-bottom: 0;
  }
}
.lower-parttime .faq_btn_link {
  margin: 0 20px;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .lower-parttime .faq_btn_link {
    width: 100%;
    max-width: 311.22px;
    margin: 0 0 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .lower-parttime .faq_btn_link::after {
    content: '';
    width: 1em;
    height: 1em;
    display: block;
  }
}
