@charset "UTF-8";
:root {
  --font-primary: "Noto Sans JP", ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-barlow-condensed: "Barlow Semi Condensed", sans-serif;
  --color-primary: #3A4A9B;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-txt: #333;
  --color-blue: #384795;
  --color-blue-gradient: #2E4ABE;
  --color-border: #E6E6E6;
  --color-sky: #E6F5FF;
  --color-gray: #F7F7F7;
  --color-border: #ddd;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
}

/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles
        1-4. Text styles
        1-5. List styles
        1-6. CSS3 common styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt0,
.mv0,
.ma0 {
  margin-top: 0 !important;
}

.mr0,
.mh0,
.ma0 {
  margin-right: 0 !important;
}

.mb0,
.mv0,
.ma0 {
  margin-bottom: 0 !important;
}

.ml0,
.mh0,
.ma0 {
  margin-left: 0 !important;
}

.pt0,
.pv0,
.pa0 {
  padding-top: 0 !important;
}

.pr0,
.ph0,
.pa0 {
  padding-right: 0 !important;
}

.pb0,
.pv0,
.pa0 {
  padding-bottom: 0 !important;
}

.pl0,
.ph0,
.pa0 {
  padding-left: 0 !important;
}

.mt5,
.mv5,
.ma5 {
  margin-top: 5px !important;
}

.mr5,
.mh5,
.ma5 {
  margin-right: 5px !important;
}

.mb5,
.mv5,
.ma5 {
  margin-bottom: 5px !important;
}

.ml5,
.mh5,
.ma5 {
  margin-left: 5px !important;
}

.pt5,
.pv5,
.pa5 {
  padding-top: 5px !important;
}

.pr5,
.ph5,
.pa5 {
  padding-right: 5px !important;
}

.pb5,
.pv5,
.pa5 {
  padding-bottom: 5px !important;
}

.pl5,
.ph5,
.pa5 {
  padding-left: 5px !important;
}

.mt10,
.mv10,
.ma10 {
  margin-top: 10px !important;
}

.mr10,
.mh10,
.ma10 {
  margin-right: 10px !important;
}

.mb10,
.mv10,
.ma10 {
  margin-bottom: 10px !important;
}

.ml10,
.mh10,
.ma10 {
  margin-left: 10px !important;
}

.pt10,
.pv10,
.pa10 {
  padding-top: 10px !important;
}

.pr10,
.ph10,
.pa10 {
  padding-right: 10px !important;
}

.pb10,
.pv10,
.pa10 {
  padding-bottom: 10px !important;
}

.pl10,
.ph10,
.pa10 {
  padding-left: 10px !important;
}

.mt20,
.mv20,
.ma20 {
  margin-top: 20px !important;
}

.mr20,
.mh20,
.ma20 {
  margin-right: 20px !important;
}

.mb20,
.mv20,
.ma20 {
  margin-bottom: 20px !important;
}

.ml20,
.mh20,
.ma20 {
  margin-left: 20px !important;
}

.pt20,
.pv20,
.pa20 {
  padding-top: 20px !important;
}

.pr20,
.ph20,
.pa20 {
  padding-right: 20px !important;
}

.pb20,
.pv20,
.pa20 {
  padding-bottom: 20px !important;
}

.pl20,
.ph20,
.pa20 {
  padding-left: 20px !important;
}

.mt30,
.mv30,
.ma30 {
  margin-top: 30px !important;
}

.mr30,
.mh30,
.ma30 {
  margin-right: 30px !important;
}

.mb30,
.mv30,
.ma30 {
  margin-bottom: 30px !important;
}

.ml30,
.mh30,
.ma30 {
  margin-left: 30px !important;
}

.pt30,
.pv30,
.pa30 {
  padding-top: 30px !important;
}

.pr30,
.ph30,
.pa30 {
  padding-right: 30px !important;
}

.pb30,
.pv30,
.pa30 {
  padding-bottom: 30px !important;
}

.pl30,
.ph30,
.pa30 {
  padding-left: 30px !important;
}

.mt40,
.mv40,
.ma40 {
  margin-top: 40px !important;
}

.mr40,
.mh40,
.ma40 {
  margin-right: 40px !important;
}

.mb40,
.mv40,
.ma40 {
  margin-bottom: 40px !important;
}

.ml40,
.mh40,
.ma40 {
  margin-left: 40px !important;
}

.pt40,
.pv40,
.pa40 {
  padding-top: 40px !important;
}

.pr40,
.ph40,
.pa40 {
  padding-right: 40px !important;
}

.pb40,
.pv40,
.pa40 {
  padding-bottom: 40px !important;
}

.pl40,
.ph40,
.pa40 {
  padding-left: 40px !important;
}

.bt0,
.ba0 {
  border-top: none !important;
}

.br0,
.ba0 {
  border-right: none !important;
}

.bb0,
.ba0 {
  border-bottom: none !important;
}

.bl0,
.ba0 {
  border-left: none !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.underline {
  text-decoration: underline !important;
}

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

.display--pc {
  display: block !important;
}
.display--sp {
  display: none !important;
}

.fs--22 {
  font-size: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .display--pc {
    display: none !important;
  }
  .display--sp {
    display: block !important;
  }
  .fs--22 {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .center--pc {
    text-align: center;
  }
}
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  overflow-x: hidden;
  background: #FFF;
  font-size: 10px;
}
html.prevent-scroll {
  overflow-y: hidden;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}
body.prevent-scroll {
  overflow-y: hidden;
}

body {
  color: #333;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.position-absolute {
  position: absolute !important;
}

.pc-flex {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.sp-block {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc-block,
  .pc-flex {
    display: none !important;
  }
  .sp-block {
    display: block !important;
  }
}
.header {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 130px;
  background-color: #FFF;
  transform: translateY(0);
  transition: opacity 0.5s, height 0.5s, transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px 50px;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}
.header.hidden {
  transform: translateY(-100%);
  transition: transform 1s cubic-bezier(0.4, 0, 0, 1);
}
.header.hidden .header__inner {
  transform: translateY(-15%);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0, 1);
}
.header.sticky {
  height: 80px;
}
.header.fixed {
  position: fixed;
}

.wrap-logo {
  display: flex;
  align-items: center;
  padding-right: 20px;
  text-decoration: none !important;
  transition: 0.2s opacity;
}

.logo-top {
  display: block;
  max-width: 230px;
  min-width: 150px;
  width: 100%;
}
.logo-top img {
  display: block;
}

.logo-second {
  position: relative;
  min-width: 140px;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.logo-second::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 31px;
  height: 36px;
  background: url(/recruit/assets/img/common/line.svg) no-repeat 50% 50%;
  transform: translateY(-50%);
  content: "";
}

@media only screen and (min-width: 1025px) {
  .wrap-logo:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 1200px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .logo-top {
    width: 200px;
  }
  .logo-second {
    padding-left: 20px;
    font-size: 1.5rem;
  }
  .logo-second::before {
    width: 20px;
    height: 30px;
    top: calc(50% - 1px);
  }
}
@media only screen and (max-width: 1050px) {
  .logo-top {
    width: 150px;
  }
  .logo-second {
    padding-left: 18px;
    font-size: 1.2rem;
    min-width: inherit;
  }
  .logo-second::before {
    width: 14px;
    height: 23px;
    top: calc(50% - 1px);
  }
}
@media only screen and (max-width: 992px) {
  .header {
    height: 65px;
  }
  .header__inner {
    padding: 15px 55px 15px 15px;
  }
  .wrap-logo {
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header.sticky {
    height: 65px;
  }
}
.wrap-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.wrap-menu .btn-1 {
  margin-left: 15px;
  word-break: keep-all;
}

.menu {
  display: flex;
}
.menu__item {
  margin: 0 17px;
  overflow: hidden;
}
.menu__item.active .menu__link::after {
  transform: translateX(100%);
}
.menu__link {
  position: relative;
  display: inline-block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
  font-size: min(1.6rem, 1.1vw);
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}
.menu__link::after {
  position: absolute;
  left: -100%;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: 0.75s transform;
  content: "";
}

@media only screen and (min-width: 1025px) {
  .menu__item:hover .menu__link::after {
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 1300px) {
  .menu__item {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .wrap-menu .btn-1 {
    margin-left: 10px;
    padding: 10px 10px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 992px) {
  .wrap-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 65px;
    width: 100%;
    height: calc(100vh - 65px);
    overflow-y: auto;
  }
  .wrap-menu.active {
    display: flex;
  }
  .wrap-menu .btn-1 {
    display: none;
  }
  .menu {
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.41);
  }
  .menu__item {
    width: 100%;
    margin: 0;
    background-color: #FFF;
  }
  .menu__item:not(:last-child) {
    border-bottom: 1px solid #DDDDDD;
  }
  .menu__item a {
    width: 100%;
    padding: 15px 45px 15px 15px;
    font-size: 1.5rem;
    background: url(/recruit/assets/img/common/icon_arrow_1.svg) no-repeat right 24px top 50%;
    background-size: 11px auto;
    word-break: inherit;
  }
  .menu__item a::after {
    display: none;
  }
}
.navi-bot {
  display: flex;
  flex-wrap: wrap;
}
.navi-bot__item {
  margin: 0 20px 10px;
  overflow: hidden;
}
.navi-bot__link {
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}
.navi-bot__link::after {
  position: absolute;
  left: -100%;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: 0.75s transform;
  content: "";
}
@media only screen and (min-width: 1025px) {
  .navi-bot__link:hover::after {
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 768px) {
  .navi-bot__item {
    margin: 0 6px 3px;
  }
  .navi-bot__link {
    font-size: 1rem;
    line-height: 2;
  }
  .navi-bot__link::after {
    display: none;
  }
}

.inner--full, .inner--1500 {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 50px;
}
.inner--1500 {
  max-width: 1530px;
}
.inner--full {
  max-width: inherit;
  padding-left: 50px;
  padding-right: 50px;
}

.section--default {
  padding-bottom: 80px;
  padding-top: 80px;
}
.section--bg {
  background-color: var(--color-gray);
  padding-bottom: 100px;
  padding-top: 100px;
}

#main {
  width: 100%;
}

.wrapper {
  padding-top: 130px;
}

@media only screen and (max-width: 1200px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .inner--full {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .section--default, .section--bg {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .wrapper {
    padding-top: 65px !important;
  }
}
.footer {
  width: 100%;
  height: 105px;
  background-color: #FFF;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.footer .logo-top {
  min-width: inherit;
  width: 152px;
}
.footer .logo-second {
  padding-left: 20px;
  font-size: 1rem;
}
.footer .logo-second::before {
  width: 19px;
  height: 25px;
}
.footer .copyright {
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  .footer {
    height: 87px;
  }
  .footer .logo-top {
    width: 130px;
  }
  .footer .logo-second {
    display: none;
  }
  .footer .copyright {
    margin-left: 10px;
  }
}

.group-enter {
  background-color: #EEE;
}
.group-enter .block-enter {
  position: relative;
  z-index: 1;
  margin-top: -60px;
}
.group-enter .block-navi-bot {
  display: flex;
  justify-content: center;
}
.group-enter .navi-bot {
  padding: 40px 0 30px;
}
@media only screen and (max-width: 768px) {
  .group-enter .block-enter {
    margin-top: -30px;
  }
  .group-enter .navi-bot {
    padding: 13px 0 15px;
  }
}
.group-enter--wrap {
  padding: 80px 0 150px;
}
@media only screen and (max-width: 768px) {
  .group-enter--wrap {
    padding: 40px 0 75px;
  }
}

.block--cmn {
  padding-top: 80px;
  padding-bottom: 80px;
}
.block--cmn.border--bottom {
  border-bottom: 1px solid #DDD;
}
@media only screen and (max-width: 768px) {
  .block--cmn {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.block--business {
  padding: 100px 0 150px;
  background-color: #E6F5FF;
}
@media only screen and (max-width: 768px) {
  .block--business {
    padding: 40px 0;
  }
}

.block--company {
  margin-bottom: 20px;
}
.block--company .headline-2 {
  margin-bottom: 0;
}
.block--company .headline--3 {
  margin-top: -55px;
}
@media only screen and (max-width: 768px) {
  .block--company .headline-2 {
    margin-bottom: 25px;
  }
  .block--company .headline--3 {
    margin-top: 0;
  }
}

.flex--content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.flex--content .headline-2 {
  margin-bottom: 0;
}
.flex--content .box--content {
  width: calc(100% - 370px);
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .flex--content {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .flex--content .headline-2 {
    margin-bottom: 30px;
  }
  .flex--content .box--content {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 0;
  }
}

.block__info {
  display: flex;
  justify-content: space-between;
}
.block__info.flex--reverse {
  flex-direction: row-reverse;
}
.block__info.flex--reverse .block__info--content {
  margin-left: 0;
  margin-right: 40px;
}
.block__info--img {
  max-width: 640px;
  min-width: 350px;
}
.block__info--img img {
  width: 100%;
  vertical-align: middle;
}
.block__info--content {
  width: 600px;
  min-width: 320px;
  margin-left: 40px;
}
@media only screen and (max-width: 768px) {
  .block__info {
    flex-wrap: wrap;
  }
  .block__info.flex--reverse {
    flex-direction: column-reverse;
  }
  .block__info.flex--reverse .block__info--content {
    margin: 0 0 30px 0;
  }
  .block__info.flex--reverse .block__info--ing {
    margin-bottom: 0;
  }
  .block__info--img {
    max-width: 100%;
    min-width: auto;
    width: 100%;
    margin-bottom: 30px;
  }
  .block__info--img img {
    vertical-align: middle;
  }
  .block__info--content {
    width: 100%;
    min-width: auto;
    margin-left: 0;
  }
}

.wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 80px 100px;
}

.news {
  border-top: 1px solid #ddd;
  padding: 20px 0 40px 0;
}
.news--noLine {
  border-top: 0;
  padding-top: 0;
}

.news__title {
  color: #3a4a9b;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 40px;
  padding: 0 10px;
  width: 27%;
}

.news__content {
  border-bottom: 1px solid #ddd;
  font-size: 1.6rem;
  line-height: 40px;
  margin: -40px 0 13px 0;
  padding: 0 0 19px 26%;
  width: 100%;
}
.news__content--flex {
  padding-left: 25.5%;
}
.news__content__number {
  display: inline-block;
  font-weight: bold;
  padding-right: 10px;
  text-align: right;
  vertical-align: top;
  width: 45px;
}
.news__content__text {
  display: inline-block;
  width: calc(100% - 45px);
}
.news__content:last-child {
  margin-bottom: 0;
}
.news__content--noLine {
  border-bottom: 0;
  padding-bottom: 0;
}

.type__list {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.type__list li {
  border-bottom: 1px solid #ddd;
  line-height: 35px;
  margin-bottom: 15px;
  padding-bottom: 14px;
}

@media only screen and (max-width: 949px) {
  .wrap {
    padding: 60px 30px;
  }
  .news__title {
    padding: 0;
    width: 100%;
  }
  .news__content {
    margin-top: 0;
    padding: 0 0 19px 0;
  }
}
@media only screen and (max-width: 768px) {
  .wrap {
    border-radius: 5px;
    padding: 40px 15px;
  }
  .news {
    padding: 12px 0 20px;
  }
  .news--noLine {
    padding-top: 0;
  }
  .news__title {
    font-size: 1.4rem;
    line-height: 20px;
    padding-bottom: 5px;
  }
  .news__content {
    font-size: 1.3rem;
    line-height: 27.5px;
    margin-bottom: 10px;
    padding: 0 0 10px 0;
  }
  .news__content__number {
    font-weight: normal;
    padding-right: 5px;
    width: auto;
  }
  .noDisplay {
    display: none;
  }
  .type__list {
    -moz-column-count: auto;
         column-count: auto;
  }
  .type__list li {
    line-height: 18px;
  }
  .type__list li:last-child {
    margin-bottom: 0;
  }
}
.block-enter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 20px 80px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.block-enter__ttl {
  margin-bottom: 25px;
  font-size: 1.8rem;
  line-height: 2.5;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .block-enter {
    padding: 30px 14px 30px;
    border-radius: 5px;
  }
  .block-enter__ttl {
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.wrap .block-enter {
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  position: static;
  padding: 0 20px;
}

.copyright {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
}
@media only screen and (max-width: 1200px) {
  .copyright {
    font-size: 1rem;
  }
}

.headline--border-top {
  border-top: 2px solid var(--color-txt);
  color: var(--color-txt);
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 31px;
  padding-top: 31px;
  text-align: center;
}

.headline-1, .headline-1--graphic, .headline-1--inter, .headline-1--about {
  display: flex;
  align-items: center;
  min-height: 87px;
  margin-bottom: 20px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: auto 87px;
}
.headline-1 span, .headline-1--graphic span, .headline-1--inter span, .headline-1--about span {
  position: relative;
  top: -7px;
  color: #3A4A9B;
  font-size: 2.6rem;
  font-weight: 700;
}
.headline-1 span::after, .headline-1--graphic span::after, .headline-1--inter span::after, .headline-1--about span::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #3A4A9B;
  content: "";
}
.headline-1--about {
  background-image: url("/recruit/assets/img/home/text_about.svg");
}
.headline-1--inter {
  background-image: url("/recruit/assets/img/home/text_interview.svg");
}
.headline-1--graphic {
  background-image: url("/recruit/assets/img/home/text_infographics.svg");
}

.headline-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  margin-bottom: 60px;
  padding-left: 45px;
  color: #384795;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
}
.headline-2::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 100%;
  transform: translateY(-50%);
  background: url(/recruit/assets/img/common/line_2.svg) no-repeat 0 0;
  background-size: cover;
  content: "";
}

.headline-4 {
  margin-bottom: 16px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.headline--3 {
  position: relative;
  padding-bottom: 45px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.headline--3::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  background: url(/recruit/assets/img/common/icon_logo.svg) no-repeat 0 0;
  background-size: 22px 22px;
  content: "";
}

.headline-5 {
  background-color: #eee;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 39px;
  padding: 23px 20px;
}

@media only screen and (max-width: 768px) {
  .headline--border-top {
    display: none;
  }
  .headline-1, .headline-1--about, .headline-1--inter, .headline-1--graphic {
    min-height: 42px;
    margin-bottom: 13px;
    background-size: auto 42px;
  }
  .headline-1 span, .headline-1--about span, .headline-1--inter span, .headline-1--graphic span {
    position: relative;
    top: -4px;
    font-size: 1.8rem;
  }
  .headline-1 span::after, .headline-1--about span::after, .headline-1--inter span::after, .headline-1--graphic span::after {
    bottom: 0;
    height: 1px;
  }
  .headline-2 {
    min-height: 40px;
    margin-bottom: 30px;
    padding-left: 25px;
    font-size: 1.8rem;
  }
  .headline-2::before {
    width: 23px;
  }
  .headline--3 {
    font-size: 2rem;
  }
  .headline-4 {
    margin-bottom: 15px;
    font-size: 2.3rem;
  }
  .headline-5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 12px 10px;
  }
}
.keyv-top {
  position: relative;
  height: calc(100vh - 130px);
}
.keyv-top .picture-tag {
  display: block;
  height: 100%;
}
.keyv-top .picture-tag img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0;
     object-position: center 0;
}
.keyv-top .wrap-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .keyv-top {
    height: calc(100vh - 65px);
  }
  .keyv-top .wrap-text {
    top: 0;
  }
  .keyv-top .picture-tag img {
    -o-object-position: center;
       object-position: center;
  }
}
@media only screen and (max-width: 768px) {
  .keyv-top {
    height: auto;
  }
}

.hamburger {
  display: none;
  position: absolute;
  right: 15px;
  width: 30px;
  height: 24px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background-color: #3A4A9B;
  transition: 0.2s transform;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
  width: 20px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 10px;
  width: 30px;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 992px) {
  .hamburger {
    display: block;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.breadcrumb > li {
  font-size: 1.6rem;
  line-height: 1;
}
.breadcrumb > li:not(:last-child) {
  position: relative;
  margin-right: 10px;
  padding-right: 45px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 2px;
  width: 35px;
  border-bottom: 1px solid #CCC;
  transform: translateY(-50%);
}
.breadcrumb a {
  text-decoration: none !important;
  color: #384795;
  transition: 0.2s opacity;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1025px) {
  .breadcrumb a:hover {
    opacity: 0.7;
  }
}

.keyv {
  margin-bottom: 45px;
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: relative;
  overflow: hidden;
}
.keyv-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 520px;
}
.keyv-title-en {
  display: block;
  position: relative;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: -10px;
  line-height: 1;
  width: 100%;
}
.keyv-title-en__black {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
}
.keyv-title-en__white {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  white-space: nowrap;
}
.keyv-title-ja {
  display: block;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: -2px;
}
.keyv--image {
  width: calc(100% - 520px);
  border-radius: 0 0 0 50px;
  overflow: hidden;
}
.keyv--image img {
  width: 100%;
  vertical-align: middle;
}
.keyv--employee {
  margin-bottom: 30px;
  position: relative;
}
.keyv--employee__bg {
  font-size: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}
.keyv--employee__bg picture {
  display: block;
  font-size: 0;
}
.keyv--employee__bg img {
  width: 100%;
}
.keyv--employee__box {
  display: flex;
  height: 100%;
  justify-content: center;
  padding-top: 9.6875%;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.keyv--employee__head {
  font-weight: 500;
  padding-left: 31.375vw;
}
.keyv--employee__ttl {
  align-items: flex-start;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.465;
}
.keyv--employee__ttl span {
  background-color: var(--color-primary);
  display: inline-block;
  padding: 5px 17px 5px 19px;
  letter-spacing: -0.2px;
}
.keyv--employee__ttl span:last-child {
  width: auto !important;
}
.keyv--employee__tag {
  background-color: var(--color-white);
  color: var(--color-primary);
  display: inline-block;
  font-family: var(--font-barlow-condensed);
  font-size: 2rem;
  letter-spacing: 1px;
  padding: 10px 19px;
}
.keyv--employee__info {
  color: var(--corlor-primary);
  display: block;
  font-size: 1.8rem;
  line-height: 1.9;
  margin-top: 18px;
  padding-left: 8px;
}
@media only screen and (max-width: 1440px) {
  .keyv--employee__head {
    padding-left: 40.625vw;
  }
}
@media only screen and (max-width: 1366px) {
  .keyv--employee__box {
    padding-top: 6.25%;
  }
  .keyv--employee__ttl {
    font-size: 3.5rem;
  }
  .keyv--employee__ttl span {
    padding: 3px 15px;
  }
  .keyv--employee__tag {
    font-size: 1.7rem;
    padding: 7px 15px;
  }
  .keyv--employee__info {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .keyv {
    padding-left: 15px;
  }
  .keyv--image {
    width: calc(100% - 350px);
  }
  .keyv-title {
    width: 350px;
  }
  .keyv-title-ja {
    font-size: 1.8rem;
    letter-spacing: -1.1px;
  }
  .keyv-title-en {
    font-size: 8rem;
    letter-spacing: -4.6px;
  }
  .keyv--employee__ttl {
    font-size: 2.5rem;
  }
  .keyv--employee__ttl span {
    padding: 2px 10px;
  }
  .keyv--employee__tag {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
  .keyv--employee__info {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .keyv {
    display: block;
  }
  .keyv-title {
    width: 100%;
  }
  .keyv-title-ja {
    margin-bottom: 5px;
    font-size: 1.3rem;
    letter-spacing: -0.9px;
  }
  .keyv-title-en {
    width: 100%;
    font-size: 5.5rem;
  }
  .keyv-title-en__black {
    width: 100%;
    white-space: inherit;
  }
  .keyv--image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 0 0 0 25px;
  }
  .keyv--employee {
    margin-bottom: 40px;
  }
  .keyv--employee__box {
    margin-top: -28px;
    padding-top: 0;
    position: relative;
  }
  .keyv--employee__head {
    padding-left: 5px;
  }
  .keyv--employee__ttl {
    font-size: 2rem;
  }
  .keyv--employee__ttl span {
    padding: 2px 10px;
  }
  .keyv--employee__tag {
    align-items: center;
    display: inline-flex;
    font-size: 0.9rem;
    height: 25px;
    justify-content: center;
    padding: 0 10px;
  }
  .keyv--employee__info {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 11px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 380px) {
  .keyv-title-en.custom {
    font-size: 4.5rem;
    letter-spacing: -3px;
  }
}
@media only screen and (max-width: 360px) {
  .keyv--employee__ttl {
    font-size: 1.8rem;
  }
}

.ani-keyv, .ani-keyv--delay-2, .ani-keyv--delay-1 {
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity, 0.3s visibility, 0.5s transform;
}
.ani-keyv[data-show=true], [data-show=true].ani-keyv--delay-2, [data-show=true].ani-keyv--delay-1 {
  transform: translateY(0);
  opacity: 1;
}
.ani-keyv--delay-1 {
  transition-delay: 0.4s;
}
.ani-keyv--delay-2 {
  transition-delay: 0.8s;
}

.ani-show, .ani-show-delay-2, .ani-show-delay-1, .ani-show-first {
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity, 0.3s visibility, 0.5s transform;
}
.ani-show[data-show=true], [data-show=true].ani-show-delay-2, [data-show=true].ani-show-delay-1, [data-show=true].ani-show-first {
  transform: translateY(0);
  opacity: 1;
}
.ani-show-delay-1 {
  transition-delay: 0.2s;
}
.ani-show-delay-2 {
  transition-delay: 0.4s;
}

.ani-wave__item {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6.94vw);
  transition: 0.3s opacity, 0.3s visibility, transform 0.5s cubic-bezier(0.18, 0.89, 0.54, 1.03);
}
.ani-wave__item.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ani-wave-para__item {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6.94vw);
  transition: 0.3s opacity, 0.3s visibility, transform 0.5s cubic-bezier(0.18, 0.89, 0.54, 1.03);
}
.ani-wave-para__item.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.ani-wave-2__item {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6.94vw);
  transition: 0.3s opacity, 0.3s visibility, transform 0.5s cubic-bezier(0.18, 0.89, 0.54, 1.03);
}
.ani-wave-2__item.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ani-scale-img {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}
.ani-scale-img::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transform: translateX(100%);
  transform-origin: left center;
  animation: frame-width 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: "";
}
.ani-scale-img img {
  animation: frame-scale-img 30s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.load-animation {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}
.load-animation::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  content: "";
}
.load-animation.show::before {
  transform: translateX(100%);
  transform-origin: left center;
  animation: frame-width 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.load-animation img {
  animation: frame-scale-img 30s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes frame-scale-img {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes frame-width {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.view-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}
.view-more__txt {
  font-size: 1.8rem;
  line-height: 1.1;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  color: #3A4A9B;
}
.view-more .btn-arrow--bg {
  margin-left: 35px;
}

@media only screen and (min-width: 1025px) {
  .view-more:hover .btn-arrow--bg:before {
    animation-name: toRight;
    animation-delay: 0.2s;
  }
  .view-more:hover .btn-arrow--bg:after {
    animation-name: toLeft;
  }
}
@media only screen and (max-width: 768px) {
  .view-more__txt {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .view-more .btn-arrow--bg {
    margin-left: 12px;
  }
}
.link-style-1 {
  color: #3A4A9B;
}
.link-style-1:hover {
  text-decoration: none;
}

.guideline-menu__link {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: flex-end;
  height: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 65px 40px;
  position: relative;
  transition: box-shadow 0.5s;
  width: 100%;
}
.guideline-menu__link:hover {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.guideline-menu__box {
  align-items: center;
  color: #3A4A9B;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.guideline-menu__text-1 {
  font-size: 34px;
  font-weight: 500;
}
.guideline-menu__text-2 {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .guideline-menu__link {
    margin-bottom: 20px;
    padding: 33px 20px;
  }
  .guideline-menu__text-1 {
    font-size: 20px;
  }
  .guideline-menu__text-2 {
    font-size: 12px;
  }
}

.list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s linear, 0.3s opacity, 0.3s visibility, 0.5s transform;
}
@media only screen and (min-width: 768px) {
  .list a.item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }
}
.list__business--item {
  position: relative;
  min-height: 200px;
  width: calc((100% - 81px) / 4);
  margin-right: 27px;
  background-color: #fff;
}
.list__business--item .txt--number {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #384795;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.list__business--item img {
  vertical-align: middle;
  margin-bottom: 25px;
}
.list__business--item .txt--title {
  color: #333;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
.list__introduce {
  justify-content: space-between;
}
.list__introduce::after {
  width: calc((100% - 140px) / 3);
  content: "";
}
.list__introduce .box--item {
  width: 100%;
}
.list__introduce--item {
  width: calc((100% - 140px) / 3);
  min-height: 340px;
  background-color: #F4F4F4;
  border: 1px solid #DDD;
  color: #3A4A9B;
}
.list__introduce--item .txt--title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
.list__introduce--item .sub--title {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
.list__introduce--item .txt__data {
  display: block;
  position: relative;
  line-height: 1;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.list__introduce--item .txt__data--wrap-1 {
  display: inline-block;
  width: 120px;
}
.list__introduce--item .txt__data--wrap-2 {
  display: inline-block;
  width: 138px;
}
.list__introduce--item .txt__data--wrap-3 {
  display: inline-block;
  width: 195px;
}
.list__introduce--item .txt__data--wrap-5 {
  display: inline-block;
  width: 50px;
}
.list__introduce--item .txt__data--wrap-6 {
  display: inline-block;
  width: 71px;
}
.list__introduce--item .txt__data--wrap-7 {
  display: inline-block;
  width: 51px;
}
.list__introduce--item .txt__data--wrap-8 {
  display: inline-block;
  width: 158px;
}
.list__introduce--item .txt__data--wrap-9 {
  display: inline-block;
  width: 100px;
}
.list__introduce--item .txt__data--num {
  display: inline-block;
  font-size: 8rem;
}
.list__introduce--item .txt__data--note, .list__introduce--item .txt__data--note-4, .list__introduce--item .txt__data--note-3, .list__introduce--item .txt__data--note-2, .list__introduce--item .txt__data--note-1 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 500;
}
.list__introduce--item .txt__data--note-1 {
  left: -14px;
}
.list__introduce--item .txt__data--note-2 {
  left: -5px;
}
.list__introduce--item .txt__data--note-3 {
  right: -10px;
}
.list__introduce--item .txt__data--note-4 {
  left: -10px;
}
.list__introduce--item .txt__data--percent {
  font-size: 2.2rem;
}
.list__introduce--item .txt__data--small {
  display: inline-block;
  font-size: 6rem;
}
.list__introduce--item .txt__data--dot {
  display: inline-block;
  width: 13px;
  font-size: 8rem;
}
.list__introduce--item .txt__data-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.list__introduce--item .txt__data-2 .col-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding-top: 7px;
  padding-left: 10px;
  border-right: 3px solid #3A4A9B;
}
.list__introduce--item .txt__data-2 .col-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding-top: 7px;
  padding-left: 10px;
}
.list__introduce--item .txt__data-2 .txt__data-ttl {
  display: inline-block;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.list__introduce--item .txt__data-2 .txt__data-ttl .txt__data-sub {
  font-size: 2rem;
}
.list__introduce--item .txt__data-2 .txt__data-num-1 {
  max-width: 110px;
  width: 100%;
  margin-top: -5px;
  font-size: 7rem;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 1;
  text-align: left;
}
.list__introduce--item .txt__data-2 .txt__data-num-2 {
  max-width: 130px;
  width: 100%;
  margin-top: -5px;
  font-size: 7rem;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 1;
  text-align: left;
}
.list__introduce--item .txt__data-2 .txt__data-txt-1 {
  display: inline-block;
  max-width: 105px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.list__introduce--item .txt__data-2 .txt__data-txt-2 {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.list__introduce--item .box--number {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.list__introduce--item .box--number .txt__data {
  position: relative;
  left: -10px;
  font-size: 6rem;
  width: 50%;
}
.list__introduce--item .box--number .txt__data:first-child {
  left: auto;
  padding-left: 20px;
}
.list__introduce--item .box--number .txt__data:first-child::before {
  content: "";
  position: absolute;
  top: 6px;
  right: -3px;
  height: 100%;
  border-right: 3px solid #3A4A9B;
  border-radius: 10px;
}
.list__introduce--item .box--number .txt__data--note, .list__introduce--item .box--number .txt__data--note-1, .list__introduce--item .box--number .txt__data--note-2, .list__introduce--item .box--number .txt__data--note-3, .list__introduce--item .box--number .txt__data--note-4 {
  display: block;
  margin-top: 5px;
  font-size: 2.2rem;
}
.list.work .list__introduce--item {
  background-color: #E6F5FF;
  border-color: #BEDEF3;
}
@media only screen and (min-width: 1025px) {
  .list__business--item:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1400px) {
  .list__introduce::after {
    width: calc((100% - 40px) / 3);
  }
  .list__introduce--item {
    width: calc((100% - 40px) / 3);
  }
  .list__introduce--item .txt--title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  .list__business--item {
    width: calc((100% - 54px) / 3);
  }
  .list__business--item:nth-child(3n+3) {
    margin-right: 0;
  }
  .list__introduce::after {
    display: none;
  }
  .list__introduce--item {
    width: calc((100% - 15px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .list .item {
    margin-bottom: 14px;
    padding: 10px 5px;
    border-radius: 5px;
  }
  .list__business--item {
    width: calc((100% - 14px) / 2);
    min-height: 110px;
    margin-right: 14px;
  }
  .list__business--item:nth-child(3n+3) {
    margin-right: 14px;
  }
  .list__business--item:nth-child(2n+2) {
    margin-right: 0;
  }
  .list__business--item .txt--number {
    top: 5px;
    font-size: 1.2rem;
  }
  .list__business--item img {
    margin-bottom: 10px;
    width: 50%;
  }
  .list__business--item img.reset-img {
    width: 35%;
  }
  .list__business--item .txt--title {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .list__introduce {
    margin-bottom: 10px;
  }
  .list__introduce--item {
    min-height: 148px;
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 20px !important;
  }
  .list__introduce--item:nth-child(3n+3) {
    margin-right: 15px;
  }
  .list__introduce--item:nth-child(2n+2) {
    margin-right: 0;
  }
  .list__introduce--item .box--item {
    width: 100%;
  }
  .list__introduce--item .txt--title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .list__introduce--item .sub--title {
    font-size: 0.9rem;
  }
  .list__introduce--item .txt__data--wrap-1 {
    width: 55px;
  }
  .list__introduce--item .txt__data--wrap-2 {
    width: 70px;
  }
  .list__introduce--item .txt__data--wrap-3 {
    width: 95px;
  }
  .list__introduce--item .txt__data--wrap-5 {
    width: 24px;
  }
  .list__introduce--item .txt__data--wrap-6 {
    width: 35px;
  }
  .list__introduce--item .txt__data--wrap-7 {
    width: 25px;
  }
  .list__introduce--item .txt__data--wrap-8 {
    width: 80px;
  }
  .list__introduce--item .txt__data--wrap-9 {
    width: 45px;
  }
  .list__introduce--item .txt__data--num {
    font-size: 3.7rem;
  }
  .list__introduce--item .txt__data--dot {
    width: 8px;
    font-size: 3.7rem;
  }
  .list__introduce--item .txt__data--note, .list__introduce--item .txt__data--note-1, .list__introduce--item .txt__data--note-2, .list__introduce--item .txt__data--note-3, .list__introduce--item .txt__data--note-4 {
    font-weight: 500;
    font-size: 1.2rem;
  }
  .list__introduce--item .txt__data--note-1 {
    left: -7px;
  }
  .list__introduce--item .txt__data--note-2 {
    left: -3px;
  }
  .list__introduce--item .txt__data--note-3 {
    right: -4px;
  }
  .list__introduce--item .txt__data--note-4 {
    left: -4px;
  }
  .list__introduce--item .txt__data--percent {
    position: relative;
    left: -2px;
    font-size: 1.2rem;
  }
  .list__introduce--item .txt__data--small {
    font-size: 2.7rem;
  }
  .list__introduce--item .txt__data-2 {
    margin-top: 10px;
  }
  .list__introduce--item .txt__data-2 .col-1 {
    padding-top: 0;
    border-right: 2px solid #3A4A9B;
  }
  .list__introduce--item .txt__data-2 .col-2 {
    padding-top: 0;
    padding-left: 0;
  }
  .list__introduce--item .txt__data-2 .txt__data-ttl {
    font-size: 1.1rem;
  }
  .list__introduce--item .txt__data-2 .txt__data-ttl .txt__data-sub {
    font-size: 0.9rem;
  }
  .list__introduce--item .txt__data-2 .txt__data-num-1 {
    max-width: 51px;
    margin-top: 0;
    font-size: 2.6rem;
  }
  .list__introduce--item .txt__data-2 .txt__data-num-2 {
    max-width: 61px;
    margin-top: 0;
    font-size: 2.6rem;
  }
  .list__introduce--item .txt__data-2 .txt__data-txt-1 {
    max-width: 51px;
    font-size: 0.9rem;
  }
  .list__introduce--item .txt__data-2 .txt__data-txt-2 {
    max-width: 61px;
    font-size: 0.9rem;
  }
  .list__introduce--item .box--number {
    margin-top: 10px;
  }
  .list__introduce--item .box--number .txt__data {
    font-size: 2.6rem;
    width: 50%;
  }
  .list__introduce--item .box--number .txt__data:first-child {
    padding-right: 0;
    margin-right: 0;
  }
  .list__introduce--item .box--number .txt__data:first-child::before {
    top: 0;
    right: -2px;
    border-width: 2px;
  }
  .list__introduce--item .box--number .txt__data--note, .list__introduce--item .box--number .txt__data--note-1, .list__introduce--item .box--number .txt__data--note-2, .list__introduce--item .box--number .txt__data--note-3, .list__introduce--item .box--number .txt__data--note-4 {
    margin-top: 5px;
    font-size: 1.1rem;
  }
  .list__introduce--item .box--top img {
    height: 45px;
  }
}
@media only screen and (max-width: 374px) {
  .list__introduce--item .txt--title {
    font-size: 1.3rem;
  }
}

.block--video {
  position: relative;
  height: 0;
  padding-bottom: 56.27%;
}
.block--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list-intro {
  display: flex;
  width: 100%;
}
.list-intro__item {
  width: 33%;
  aspect-ratio: 534/420;
}
.list-intro__item:nth-child(2) {
  width: 34%;
}
.list-intro__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.list-intro__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.list-intro__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.75s ease;
}
.list-intro__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.list-intro__text-1 {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
.list-intro__text-2 {
  position: relative;
  padding-right: 27px;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Barlow", sans-serif;
}
.list-intro__text-2::after {
  position: absolute;
  top: 4px;
  right: 0;
  width: 18px;
  height: 14px;
  background: url(/recruit/assets/img/common/icon_arrow_2.svg) no-repeat 50% 50%;
  content: "";
}
@media only screen and (min-width: 1025px) {
  .list-intro__item:hover .list-intro__img {
    scale: 1.1;
  }
}
@media only screen and (max-width: 992px) {
  .list-intro__text-1 {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }
  .list-intro__text-2 {
    padding-right: 16px;
    font-size: 1.4rem;
  }
  .list-intro__text-2::after {
    top: 2px;
    width: 13px;
    height: 11px;
    background-size: 13px auto;
  }
}
@media only screen and (max-width: 768px) {
  .list-intro {
    flex-direction: column;
  }
  .list-intro__item {
    width: 100%;
    aspect-ratio: 720/420;
  }
  .list-intro__item:nth-child(2) {
    width: 100%;
  }
  .list-intro__link {
    position: relative;
    display: block;
  }
}

.interview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 65px;
}
.interview::after {
  content: "";
  width: calc((100% - 140px) / 3);
}
.interview__col {
  margin-bottom: 80px;
  width: calc((100% - 140px) / 3);
}
.interview__item {
  display: block;
  height: 100%;
  text-decoration: none;
}
.interview__item:hover {
  text-decoration: none;
}
.interview__avatar {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 121.0526315789%;
  position: relative;
  width: 100%;
}
.interview__avatar img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  transition: scale 0.75s;
  width: 100%;
  z-index: 0;
}
.interview__tag {
  background-color: var(--color-primary);
  border-radius: 0 0 0 20px;
  color: var(--color-white);
  font-family: var(--font-barlow-condensed);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 10px 7px 16px 8px;
  position: absolute;
  right: 0;
  top: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 1;
}
.interview__ttl {
  background: linear-gradient(0, transparent 0%, var(--color-blue) 0) no-repeat bottom left/0% 1px;
  color: var(--color-blue);
  display: inline;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition: background-size 1s linear;
}
.interview__des {
  display: block;
  font-size: 1.6rem;
  color: var(--color-txt);
  line-height: 1.875;
  margin-top: 20px;
  padding-right: 55px;
  position: relative;
}
.interview .btn-arrow, .interview .btn-arrow--bg {
  right: 0;
  top: 10px;
}
@media only screen and (min-width: 1025px) {
  .interview__item:hover .interview__ttl {
    background-size: 100% 1px;
  }
  .interview__item:hover .interview__avatar {
    cursor: pointer;
  }
  .interview__item:hover .interview__avatar img {
    scale: 1.1;
  }
  .interview__item:hover .btn-arrow:before, .interview__item:hover .btn-arrow--bg:before {
    animation-name: toRight;
    animation-delay: 0.2s;
  }
  .interview__item:hover .btn-arrow:after, .interview__item:hover .btn-arrow--bg:after {
    animation-name: toLeft;
  }
}
@media only screen and (max-width: 1200px) {
  .interview::after {
    width: calc((100% - 60px) / 3);
  }
  .interview__col {
    margin-bottom: 50px;
    width: calc((100% - 60px) / 3);
  }
  .interview__avatar {
    margin-bottom: 15px;
  }
  .interview__ttl {
    font-size: 2rem;
  }
  .interview__des {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .interview {
    margin-bottom: 95px;
  }
  .interview::after {
    width: calc((100% - 30px) / 3);
  }
  .interview__col {
    margin-bottom: 40px;
    width: calc((100% - 30px) / 3);
  }
  .interview__avatar {
    margin-bottom: 10px;
  }
  .interview__tag {
    border-radius: 0 0 0 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 7px 5px 5px 6px;
  }
  .interview__ttl {
    font-size: 1.6rem;
  }
  .interview__des {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .interview {
    margin-bottom: 35px;
  }
  .interview::after {
    display: none;
  }
  .interview__col {
    margin-bottom: 55px;
    width: calc((100% - 15px) / 2);
  }
  .interview__avatar {
    margin-bottom: 14px;
  }
  .interview__ttl {
    display: block;
    font-size: 1.4rem;
    line-height: 1.7;
    padding-left: 8px;
    padding-right: 8px;
  }
  .interview__des {
    font-size: 1.2rem;
    margin-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .interview .btn-arrow, .interview .btn-arrow--bg {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .interview__col {
    margin-bottom: 55px;
    width: calc((100% - 10px) / 2);
  }
  .interview__avatar {
    margin-bottom: 14px;
  }
  .interview__ttl {
    font-size: 1.2rem;
    padding-left: 4px;
    padding-right: 4px;
  }
  .interview__des {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.employee {
  background-color: var(--color-primary);
  padding-bottom: 81px;
  padding-top: 53px;
  text-align: center;
}
.employee__head {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 33px;
}
.employee__head span {
  display: block;
  font-family: var(--font-barlow-condensed);
  font-size: 5rem;
  letter-spacing: 2.5px;
}
.employee__btn {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 5px;
  color: var(--color-blue);
  display: inline-flex;
  font-weight: 500;
  font-size: 1.6rem;
  justify-content: center;
  text-decoration: none;
  max-width: 1081px;
  margin-top: 40px;
  padding-bottom: 28px;
  padding-top: 28px;
  transition: background-color 0.5s;
  width: 100%;
}
.employee__btn::before {
  background: url("/recruit/assets/img/common/icon_chocolate.svg") no-repeat 0 0/100%;
  content: "";
  height: 16px;
  margin-right: 10px;
  width: 16px;
}
.employee__btn:hover {
  text-decoration: none;
}
.employee__item {
  border-right: 1px solid rgba(var(--color-white-rgb), 0.2);
  color: var(--color-white);
  display: block;
  height: 100%;
  padding-top: 21px;
  padding-bottom: 31px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.employee__avatar {
  align-items: center;
  display: inline-flex;
  height: 170px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  width: 170px;
}
.employee__img {
  border-radius: 50%;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: scale 0.5s;
  width: 100%;
}
.employee__img::before {
  background-color: rgba(var(--color-black-rgb), 0.2);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.employee__img img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  z-index: 0;
}
.employee__ttl {
  color: var(--color-white);
  font-family: var(--font-barlow-condensed);
  font-weight: 500;
  font-size: 1.8rem;
  position: absolute;
  pointer-events: none;
  text-transform: uppercase;
  z-index: 2;
}
.employee__info {
  display: block;
  font-size: 1.4rem;
  line-height: 1.785;
  padding: 0 10px;
}
.employee .splide__track {
  margin-left: 100px !important;
  margin-right: 100px !important;
}
.employee .splide__arrow--prev,
.employee .splide__arrow--next {
  background: var(--color-white) url("/recruit/assets/img/common/icon_arrow_1.svg") no-repeat center center/16px;
  height: 70px;
  opacity: 1;
  right: 13px;
  transform: inherit;
  translate: 0 -50%;
  transition: opacity 0.25s;
  width: 70px;
}
.employee .splide__arrow--prev svg,
.employee .splide__arrow--next svg {
  display: none;
}
.employee .splide__arrow--prev:disabled,
.employee .splide__arrow--next:disabled {
  opacity: 0.25;
  pointer-events: none;
}
.employee .splide__arrow--prev {
  left: 13px;
  rotate: -180deg;
}
@media only screen and (min-width: 1025px) {
  .employee__img:hover {
    scale: 1.1;
  }
  .employee__btn:hover {
    background-color: rgba(var(--color-white-rgb), 0.75);
    cursor: pointer;
  }
  .employee .splide__arrow--prev:hover,
  .employee .splide__arrow--next:hover {
    cursor: pointer;
    opacity: 0.75;
  }
}
@media only screen and (min-width: 576.1px) {
  .employee .splide__track::before, .employee .splide__track::after {
    background-color: rgba(var(--color-white-rgb), 0.2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .employee .splide__track::after {
    background-color: var(--color-primary);
    border-right: 1px solid rgba(var(--color-white-rgb), 0.2);
    left: inherit;
    right: 0;
    width: 1px;
  }
}
@media only screen and (max-width: 1200px) {
  .employee__head {
    font-size: 1.6rem;
  }
  .employee__head span {
    font-size: 4rem;
  }
  .employee__ttl {
    font-size: 1.6rem;
  }
  .employee__avatar {
    height: 150px;
    width: 150px;
  }
  .employee__info {
    font-size: 1.3rem;
  }
  .employee .splide__track {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .employee .splide__arrow--prev,
  .employee .splide__arrow--next {
    height: 50px;
    right: 0;
    width: 50px;
  }
  .employee .splide__arrow--prev {
    left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .employee {
    padding-bottom: 39px;
    padding-top: 26px;
  }
  .employee__head {
    font-size: 1.3rem;
    margin-bottom: 39px;
  }
  .employee__head span {
    font-size: 3.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .employee__carousel {
    margin-left: -15px;
    margin-right: -15px;
  }
  .employee__item {
    padding-top: 0;
    padding-bottom: 2px;
  }
  .employee__avatar {
    height: 125px;
    margin-bottom: 6px;
    width: 125px;
  }
  .employee__ttl {
    font-size: 1.2rem;
  }
  .employee__btn {
    border-radius: 3px;
    font-size: 1.3rem;
    max-width: 280px;
    margin-top: 30px;
    padding-bottom: 17px;
    padding-top: 19px;
  }
  .employee__btn::before {
    height: 12px;
    margin-right: 10px;
    width: 12px;
  }
  .employee .splide__track {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .employee .splide__arrow--prev,
  .employee .splide__arrow--next {
    background-size: 9px;
    height: 35px;
    margin-top: -25px;
    right: 15px;
    width: 35px;
  }
  .employee .splide__arrow--prev {
    left: 15px;
  }
}

.post {
  margin-bottom: 110px;
  padding-top: 60px;
}
.post__item, .post__item--reverse {
  display: flex;
  justify-content: space-between;
  margin-bottom: 165px;
  width: 100%;
}
.post__item--reverse {
  flex-direction: row-reverse;
}
.post__item--reverse .post__col:first-child {
  padding-left: 0;
}
.post__col {
  width: 600px;
}
.post__col:first-child {
  padding-left: 110px;
  width: calc(100% - 660px);
}
.post__img {
  font-size: 0;
  width: 100%;
}
.post__img img {
  width: 100%;
}
.post__txt {
  color: var(--color-txt);
  font-size: 1.6rem;
  line-height: 2.5;
}
.post__txt .pb {
  padding-bottom: 30px;
}
.post__txt--pl {
  display: inline-block;
  text-indent: 16px;
}
.post__ttl {
  color: var(--color-black);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.66;
  margin-bottom: 29px;
}
.post .headline-2 {
  margin-bottom: 18px;
}
@media only screen and (max-width: 1440px) {
  .post__col:first-child {
    padding-left: 0;
    width: calc(100% - 640px);
  }
}
@media only screen and (max-width: 1366px) {
  .post__col {
    width: 500px;
  }
  .post__col:first-child {
    width: calc(100% - 540px);
  }
  .post__txt {
    font-size: 1.5rem;
  }
  .post__ttl {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 1200px) {
  .post {
    margin-bottom: 75px;
  }
  .post__item, .post__item--reverse {
    margin-bottom: 75px;
  }
  .post__col {
    width: 400px;
  }
  .post__col:first-child {
    width: calc(100% - 430px);
  }
  .post__txt {
    font-size: 1.3rem;
    line-height: 2.11;
  }
  .post__txt--pl {
    text-indent: 13px;
  }
  .post__ttl {
    font-size: 2rem;
    line-height: 1.75;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .post {
    padding-top: 0;
  }
  .post__item, .post__item--reverse {
    display: block;
  }
  .post__col {
    width: 100%;
  }
  .post__col:first-child {
    margin-bottom: 25px;
    width: 100%;
  }
  .post .headline-2 {
    margin-bottom: 23px;
    padding-left: 26px;
  }
  .post .headline-2::before {
    width: 23px;
  }
  .post .pb {
    padding-bottom: 15px;
  }
}

.sec-survey {
  position: relative;
  margin: 80px 0;
  padding: 110px 0 50px;
}
.sec-survey::before {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(100% - 50px);
  height: 100%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #E6F5FF;
  content: "";
}
.sec-survey__img {
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 80px;
  height: calc(100% - 160px);
  width: 50%;
  aspect-ratio: 800/550;
}
.sec-survey__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-survey__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 65px;
}
.sec-survey__block {
  width: 50%;
  padding-left: 80px;
}
.sec-survey .headline-1--about {
  margin-right: -65px;
}
.sec-survey .text-style-4 {
  margin-bottom: 57px;
}
@media only screen and (max-width: 1200px) {
  .sec-survey::before {
    width: calc(100% - 15px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .sec-survey__inner {
    padding: 0 15px;
  }
  .sec-survey__block {
    width: 50%;
    padding-left: 30px;
  }
  .sec-survey .headline-1--about {
    margin-right: -15px;
  }
  .sec-survey .headline-4 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 992px) {
  .sec-survey {
    display: flex;
    flex-direction: column-reverse;
    margin: 40px 0 30px;
    padding: 30px 0 30px;
  }
  .sec-survey__img {
    position: static;
    width: calc(100vw - 15px);
    height: auto;
  }
  .sec-survey__inner {
    margin-bottom: 30px;
  }
  .sec-survey__block {
    width: 100%;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-survey .headline-4 {
    font-size: 2.3rem;
  }
  .sec-survey .text-style-4 {
    margin-bottom: 15px;
  }
}

.sec-voice {
  position: relative;
  margin-bottom: 80px;
  padding: 95px 0 90px;
}
.sec-voice::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(100% - 50px);
  height: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #F5F5F5;
  content: "";
}
.sec-voice__inner {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 65px;
}
.sec-voice__head {
  margin-bottom: 57px;
}
.sec-voice__box {
  display: flex;
  justify-content: space-between;
}
.sec-voice .text-style-4 {
  width: calc(100% - 190px);
}
@media only screen and (max-width: 1200px) {
  .sec-voice::before {
    width: calc(100% - 15px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .sec-voice__inner {
    padding: 0 30px 0 15px;
  }
  .sec-voice .headline-4 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 992px) {
  .sec-voice {
    margin-bottom: 30px;
    padding: 30px 0 30px;
  }
  .sec-voice__inner {
    padding: 0 30px 0 15px;
  }
  .sec-voice__head {
    margin-bottom: 30px;
  }
  .sec-voice__box {
    flex-direction: column;
  }
  .sec-voice .text-style-4 {
    width: 100%;
    margin-bottom: 14px;
  }
  .sec-voice .view-more {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 768px) {
  .sec-voice .headline-4 {
    font-size: 2.3rem;
  }
}

.sec-graphic {
  position: relative;
  margin-bottom: 80px;
  padding: 115px 0 90px;
}
.sec-graphic::before {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(100% - 50px);
  height: 100%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background: #3A4A9B url("/recruit/assets/img/home/bg_graphic.png") no-repeat 50% 50%;
  background-size: cover;
  content: "";
}
.sec-graphic__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 65px;
}
.sec-graphic__block {
  position: relative;
  z-index: 1;
  width: 100%;
}
.sec-graphic__img {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
  right: 60px;
  top: calc(50% - 15px);
  translate: 0 -50%;
  position: absolute;
  aspect-ratio: 501/453;
}
.sec-graphic__img img {
  display: block;
}
.sec-graphic .headline-1--graphic {
  margin-bottom: 20px;
}
.sec-graphic .headline-1--graphic span {
  color: #FFF;
}
.sec-graphic .headline-1--graphic span::after {
  background-color: #FFF;
}
.sec-graphic .headline-1--graphic {
  margin-right: -65px;
}
.sec-graphic .headline-4 {
  color: #FFF;
}
.sec-graphic .text-style-4 {
  margin-bottom: 53px;
  color: #FFF;
}
.sec-graphic .view-more__txt {
  color: #FFF;
}
.sec-graphic .btn-arrow--bg {
  background-color: #FFF;
}
.sec-graphic .btn-arrow--bg::before {
  background-image: url("/recruit/assets/img/common/icon_arrow_1.svg");
}
.sec-graphic .btn-arrow--bg::after {
  background-image: url("/recruit/assets/img/common/icon_arrow_1.svg");
}
@media only screen and (max-width: 1200px) {
  .sec-graphic::before {
    width: calc(100% - 15px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .sec-graphic__inner {
    padding: 0 15px;
  }
  .sec-graphic__block {
    padding-left: 15px;
  }
  .sec-graphic .headline-1--graphic {
    margin-right: -15px;
  }
  .sec-graphic .headline-4 {
    font-size: 3.2rem;
  }
  .sec-graphic .text-style-4 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .sec-graphic {
    margin-bottom: 40px;
    padding: 45px 0 40px;
  }
  .sec-graphic__inner {
    flex-direction: column;
  }
  .sec-graphic .headline-4 {
    margin-bottom: 20px;
  }
  .sec-graphic .text-style-4 {
    margin-bottom: 25px;
  }
  .sec-graphic .headline-1--graphic {
    margin-bottom: 7px;
  }
  .sec-graphic__img {
    justify-content: center;
    position: static;
    width: 100%;
    translate: none;
    height: auto;
    padding: 0 27px 0 42px;
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 768px) {
  .sec-graphic .headline-4 {
    font-size: 2.3rem;
  }
}

.splide-top .interview__des .btn-arrow, .splide-top .interview__des .btn-arrow--bg {
  right: 0;
  top: 8px;
}
.splide-top .interview__item {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .splide-top {
    padding: 0 32px 0 39px;
  }
  .splide-top .splide__slide {
    width: 100%;
  }
  .splide-top .interview__avatar {
    margin-bottom: 20px;
  }
  .splide-top .interview__des {
    min-height: 40px;
    margin-top: 16px;
    padding-right: 40px;
  }
  .splide-top .interview__des .btn-arrow, .splide-top .interview__des .btn-arrow--bg {
    top: 3px;
    height: 35px;
    width: 35px;
  }
  .splide-top .splide-top-progress {
    margin-top: 35px;
    background: #FFF;
    height: 3px;
    border-radius: 10px;
    overflow: hidden;
  }
  .splide-top .splide-top-progress__bar {
    background-color: #CCCCCC;
    height: 100%;
    width: 0;
    transition: width 400ms ease;
  }
}

.bnr {
  background-color: var(--color-sky);
  display: flex;
  margin-bottom: 60px;
}
.bnr__img {
  font-size: 0;
  width: 50%;
}
.bnr__img img {
  width: 100%;
}
.bnr__txt {
  align-items: center;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  justify-content: center;
  text-align: center;
  width: 50%;
}
.bnr__txt--big {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .bnr__txt {
    font-size: 1.8rem;
  }
  .bnr__txt--big {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .bnr {
    flex-direction: column-reverse;
    margin-bottom: 27px;
  }
  .bnr__img {
    width: 100%;
  }
  .bnr__txt {
    min-height: 230px;
    width: 100%;
  }
}

.text-style-1 {
  display: block;
  margin-bottom: 17px;
  text-align: center;
  letter-spacing: 1px;
}
.text-style-1 span {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: #FFF;
}

.text-style-2 {
  display: block;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 2px;
}
.text-style-2 span {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #FFF;
}

.text-style-3 {
  display: block;
}
.text-style-3 span {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 1.2;
  color: #FFF;
  letter-spacing: -1.5px;
}

.text-style-4 {
  font-size: 1.6rem;
  line-height: 2.15;
}

.text-style-5 {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}

.text-style-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
  letter-spacing: 2px;
}
.text-style-6:hover{
  background: rgba(255, 255, 255, 0.3);
}
.text-style-6 a {
  font-weight: 550;
  font-size: 3.5rem;
  border: solid white 3px;
  padding: 7px;
  color: white;
  text-decoration: none;
}

.text-des {
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
  color: #333;
}

.txt--cmn {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 2.5;
}

@media only screen and (max-width: 768px) {
  .text-style-1 {
    margin-bottom: 8px;
    letter-spacing: 0;
  }
  .text-style-1 span {
    font-size: 3rem;
  }
  .text-style-2 {
    margin-bottom: 6px;
    letter-spacing: 2px;
  }
  .text-style-2 span {
    font-size: 4rem;
  }
  .text-style-3 span {
    font-size: 1.3rem;
    letter-spacing: -3px;
  }
  .text-style-4 {
    font-size: 1.3rem;
    line-height: 2;
  }
  .text-style-5 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .text-style-6 {
    margin-top: 15px;
  }
  .text-style-6 a {
    font-size: 1.5rem;
  }
  .text-des {
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.8;
  }
  .txt--cmn {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
@media only screen and (max-width: 374px) {
  .text-style-4 {
    font-size: 1.2rem;
  }
}
.tag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border: 1px solid #DDD;
  background-color: #FFF;
  text-decoration: none;
  transition: 0.2s letter-spacing, 0.2s background-color;
}
.tag-link span {
  position: relative;
  display: inline-flex;
  padding-right: 16px;
  color: #333;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.2s color;
}
.tag-link span::after {
  position: absolute;
  right: 0;
  top: 4px;
  width: 12px;
  height: 11px;
  background: url(/recruit/assets/img/common/icon_blank.svg) no-repeat 50% 50%;
  background-size: 12px auto;
  content: "";
}
@media only screen and (min-width: 1025px) {
  .tag-link:hover {
    background-color: #333;
  }
  .tag-link:hover span {
    color: #FFF;
  }
  .tag-link:hover span::after {
    background-image: url(/recruit/assets/img/common/icon_blank_white.svg);
  }
}
@media only screen and (max-width: 768px) {
  .tag-link {
    padding: 4px 10px;
  }
  .tag-link span {
    font-size: 1rem;
  }
  .tag-link span::after {
    top: 3px;
    width: 11px;
    background-size: 11px auto;
  }
}

.btn-arrow, .btn-arrow--bg {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  height: 45px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 45px;
}
.btn-arrow::after, .btn-arrow--bg::after, .btn-arrow::before, .btn-arrow--bg::before {
  background: url("/recruit/assets/img/common/icon_arrow_1.svg") no-repeat center center/100%;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  width: 16px;
}
.btn-arrow::before, .btn-arrow--bg::before {
  animation-name: toLeft;
}
.btn-arrow::after, .btn-arrow--bg::after {
  animation-name: toRight;
  animation-delay: 0.2s;
}
.btn-arrow:hover, .btn-arrow--bg:hover {
  text-decoration: none;
}
.btn-arrow--bg {
  background-color: var(--color-primary);
  border-width: 0;
  height: 70px;
  width: 70px;
}
.btn-arrow--bg::after, .btn-arrow--bg::before {
  background: url("/recruit/assets/img/common/icon_arrow_2.svg") no-repeat center center/100%;
}
.btn--logo {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  display: inline-flex;
  height: 100px;
  justify-content: center;
  max-width: 410px;
  padding: 10px 50px;
  transition: opacity 0.5s;
  width: 100%;
}
.btn--logo img {
  max-height: 37px;
}
.btn--logo:hover {
  text-decoration: none;
}

.btn-1 {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: #3a4a9b;
  border: 1px solid #3a4a9b;
  color: #fff;
  line-height: 1.1;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s background-color, 0.5s color;
}

.btn-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 600px;
  padding: 20px;
  border-radius: 5px;
  background-image: linear-gradient(30deg, #3a4a9b, #2e4abe);
  color: #fff;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s letter-spacing;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  width: 410px;
  padding: 20px;
  border-radius: 5px;
  background-color: #3a4a9b;
  border: 2px solid #3a4a9b;
  text-decoration: none;
  transition: 0.5s letter-spacing, 0.5s background-color;
}
.btn-primary span {
  position: relative;
  display: inline-flex;
  padding-right: 30px;
  color: #fff;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 500;
  transition: 0.2s color;
}
.btn-primary span::after {
  position: absolute;
  right: 0;
  top: 3px;
  width: 22px;
  height: 25px;
  background: url(/recruit/assets/img/common/icon_blank_white.svg) no-repeat 50% 50%;
  background-size: 22px auto;
  content: "";
}

@media only screen and (min-width: 1025px) {
  .btn-1:hover {
    color: #3a4a9b;
    background-color: #fff;
  }
  .btn-enter:hover {
    letter-spacing: 6px;
  }
  .btn-primary:hover {
    background-color: #fff;
  }
  .btn-primary:hover span {
    color: #3a4a9b;
  }
  .btn-primary:hover span::after {
    background-image: url(/recruit/assets/img/common/icon_blank_blue.svg);
  }
  @keyframes toRight {
    0% {
      translate: -350% 0;
    }
    100% {
      translate: 0 0;
    }
  }
  @keyframes toLeft {
    0% {
      translate: 0 0;
    }
    100% {
      translate: 350% 0;
    }
  }
  .btn-arrow:hover:before, .btn-arrow--bg:hover:before {
    animation-name: toRight;
  }
  .btn-arrow:hover:after, .btn-arrow--bg:hover:after {
    animation-name: toLeft;
  }
  .btn--logo:hover {
    opacity: 0.75;
  }
}
@media only screen and (max-width: 768px) {
  .btn-enter {
    min-height: 64px;
    width: 315px;
    padding: 10px;
    border-radius: 3px;
    font-size: 1.6rem;
  }
  .btn-primary {
    width: 280px;
    min-height: 55px;
    padding: 10px;
    border-radius: 3px;
  }
  .btn-primary span {
    font-size: 1.3rem;
  }
  .btn-primary span::after {
    top: 3px;
    width: 16px;
    height: 16px;
    background-size: 15px auto;
  }
  .btn-arrow, .btn-arrow--bg {
    height: 40px;
    width: 40px;
  }
  .btn-arrow::before, .btn-arrow--bg::before, .btn-arrow::after, .btn-arrow--bg::after {
    height: 10px;
    width: 10px;
  }
  .btn-arrow--bg {
    height: 40px;
    width: 40px;
  }
  .btn--logo {
    height: 63px;
    max-width: 258px;
  }
  .btn--logo img {
    max-height: 23px;
  }
}
.faq {
  border-bottom: 1px solid #e7e6e6;
  margin-bottom: 150px;
}
.faq__title {
  align-items: center;
  border-top: 1px solid #e7e6e6;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  padding: 14px 70px 23px 10px;
  position: relative;
}
.faq__title:before, .faq__title:after {
  background-color: #707070;
  color: #aaa;
  content: "";
  position: absolute;
  transition: all 0.3s;
}
.faq__title:before {
  right: 45px;
  top: 27px;
  height: 26px;
  width: 2px;
}
.faq__title:after {
  right: 33px;
  top: 39px;
  height: 2px;
  width: 26px;
}
.faq__title.active:before {
  transform: rotate(90deg);
  opacity: 0;
  top: 30%;
}
.faq__title__icon {
  color: #3A4A9B;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 3.8rem;
  font-weight: bold;
  margin-right: 20px;
  margin-top: -7px;
}
.faq__content {
  background-color: #E6F5FF;
  border-radius: 10px;
  display: none;
  margin-bottom: 20px;
  line-height: 40px;
  padding: 30px 20px 31px 17px;
}
.faq__content__icon {
  background-color: #fff;
  border-radius: 50px;
  color: #BE2E76;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
  line-height: 50px;
  vertical-align: middle;
  text-align: center;
  height: 57px;
  width: 57px;
}
.faq__content__text {
  display: inline-block;
  line-height: 40px;
  vertical-align: middle;
  width: calc(100% - 80px);
}

@media only screen and (max-width: 768px) {
  .faq {
    margin-bottom: 75px;
  }
  .faq__title {
    align-items: normal;
    font-size: 15px;
    padding: 10px 50px 10px 10px;
  }
  .faq__title__icon {
    font-size: 2.3rem;
    margin-right: 10px;
  }
  .faq__title:before {
    right: 19px;
    top: 14px;
    height: 20px;
    width: 2px;
  }
  .faq__title:after {
    right: 10px;
    top: 22px;
    height: 2px;
    width: 20px;
  }
  .faq__content {
    margin-bottom: 10px;
    line-height: 28px;
    padding: 15px 10px 15px 10px;
  }
  .faq__content__icon {
    font-size: 23px;
    line-height: 25px;
    height: 30px;
    margin-right: 10px;
    width: 30px;
  }
  .faq__content__text {
    font-size: 1.3rem;
    line-height: 28px;
    vertical-align: top;
    width: calc(100% - 40px);
  }
}
.anchor-list, .anchor-list--three {
  display: flex;
  flex-flow: wrap;
  margin: 0 -13px -3px;
}
.anchor-list li, .anchor-list--three li {
  border-top: 5px solid #3A4A9B;
  width: calc(25% - 26px);
  margin: 0 13px 8px;
}
.anchor-list li a, .anchor-list--three li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 37px 40px 37px 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3A4A9B;
  text-decoration: none;
  transition: translate 0.5s;
}
.anchor-list li a::before, .anchor-list--three li a::before {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  background: url(/recruit/assets/img/common/icon_arrow_3.svg) no-repeat;
  background-size: 14px auto;
  width: 14px;
  height: 16px;
  translate: 0 -50%;
}
.anchor-list--three {
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}
.anchor-list--three li {
  width: calc((100% - 80px) / 3);
  margin: 0 0 8px;
}
@media only screen and (min-width: 1025px) {
  .anchor-list li a:hover, .anchor-list--three li a:hover {
    translate: 0 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .anchor-list, .anchor-list--three {
    margin: 0 0 -3px;
    justify-content: space-between;
  }
  .anchor-list::after, .anchor-list--three::after {
    content: "";
    width: calc((100% - 30px) / 3);
  }
  .anchor-list li, .anchor-list--three li {
    display: block;
    width: calc((100% - 30px) / 3);
    margin: 0 0 8px;
  }
  .anchor-list li a, .anchor-list--three li a {
    padding: 25px 40px 25px 0;
  }
}
@media only screen and (max-width: 768px) {
  .anchor-list::after, .anchor-list--three::after {
    content: "";
    width: calc((100% - 15px) / 2);
  }
  .anchor-list li, .anchor-list--three li {
    border-top-width: 3px;
    width: calc((100% - 15px) / 2);
    margin: 0;
  }
  .anchor-list li a, .anchor-list--three li a {
    padding: 15px 25px 15px 0;
    font-size: 1.5rem;
  }
  .anchor-list li a::before, .anchor-list--three li a::before {
    right: 10px;
    background-size: 8px auto;
    width: 8px;
    height: 10px;
  }
}

.sec-benefit {
  padding: 80px 0;
  background-color: #FFF;
}
.sec-benefit_gray {
  background-color: #F7F7F7;
}
.sec-benefit__headline {
  margin-bottom: 18px;
  padding-top: 32px;
  border-top: 2px solid #333;
  font-size: 2.2rem;
  font-weight: 500;
}
.sec-benefit__headline--1 {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 500;
}
.sec-benefit__headline--2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3A4A9B;
}
.sec-benefit__headline--2 span {
  font-size: 2rem;
}
.sec-benefit__headline--3 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3A4A9B;
  text-align: center;
}
.sec-benefit__headline--4 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.sec-benefit__txt {
  font-size: 1.6rem;
}
.sec-benefit__txt--1 {
  padding-bottom: 30px;
  font-size: 1.6rem;
}
.sec-benefit__txt--2 {
  font-size: 1.6rem;
  line-height: 2.5;
}
.sec-benefit__txt--3 {
  font-size: 1.6rem;
  line-height: 2.2;
}
.sec-benefit__block--item {
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.sec-benefit__block--item::after {
  content: "";
  width: calc((100% - 50px) / 2);
}
.sec-benefit__block--item::before {
  position: absolute;
  content: "";
  right: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #DDD;
}
.sec-benefit__block--item > li {
  width: calc((100% - 50px) / 2);
  padding-top: 10px;
}
.sec-benefit__block--item .image-list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.sec-benefit__block--item .image-list::after {
  content: "";
  width: calc((100% - 20px) / 2);
}
.sec-benefit__block--item .image-list li {
  width: calc((100% - 20px) / 2);
  font-size: 0;
}
.sec-benefit__block--item .image-list li img {
  width: 100%;
}
.sec-benefit__block--inner {
  margin-bottom: 30px;
}
.sec-benefit__block01 {
  margin-top: 60px;
}
.sec-benefit__block--evaluate {
  padding: 20px 30px;
  background-color: #E6F5FF;
}
.sec-benefit__block--list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.sec-benefit__block--list::after {
  content: "";
  width: calc((100% - 60px) / 2);
}
.sec-benefit__block--list li {
  width: calc((100% - 60px) / 2);
  padding: 23px 20px 26px;
  background-color: #FFF;
  text-align: center;
}
.sec-benefit__box {
  display: flex;
  flex-flow: wrap;
  padding: 20px;
  border: 1px solid #DDD;
  background-color: #FFF;
}
.sec-benefit__box--image {
  width: 176px;
  margin-right: 38px;
  font-size: 0;
}
.sec-benefit__box--inner {
  width: calc(100% - 214px);
  padding-top: 15px;
}
.sec-benefit__box01 {
  padding: 60px 40px 50px;
  border: 1px solid #DDD;
  background-color: #FFF;
}
.sec-benefit__list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: -60px;
}
.sec-benefit__list::after {
  content: "";
  width: calc((100% - 70px) / 3);
}
.sec-benefit__list li {
  display: block;
  width: calc((100% - 70px) / 3);
  padding: 0 0 60px;
}
.sec-benefit__list--two {
  margin-bottom: 0;
}
.sec-benefit__list--two::after {
  content: "";
  width: calc((100% - 60px) / 2);
}
.sec-benefit__list--two li {
  width: calc((100% - 60px) / 2);
  padding: 32px 0 80px;
}
@media only screen and (max-width: 992px) {
  .sec-benefit__block--item {
    position: relative;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin-top: 40px;
  }
  .sec-benefit__block--item::after {
    content: "";
    width: 100%;
  }
  .sec-benefit__block--item::before {
    right: 0;
    top: 0;
    width: 0;
    height: 0;
  }
  .sec-benefit__block--item > li {
    width: 100%;
    padding-top: 0;
  }
  .sec-benefit__block--item .image-list__border {
    margin-bottom: 20px !important;
    padding-bottom: 30px;
    border-bottom: 1px solid #DDD;
  }
}
@media only screen and (max-width: 768px) {
  .sec-benefit {
    padding: 40px 0;
  }
  .sec-benefit__headline {
    margin-bottom: 15px;
    padding-top: 15px;
    font-size: 1.5rem;
  }
  .sec-benefit__headline--1 {
    margin-bottom: 14px;
    font-size: 1.5rem;
  }
  .sec-benefit__headline--2 {
    margin-bottom: 14px;
    font-size: 1.3rem;
  }
  .sec-benefit__headline--2 span {
    font-size: 1.5rem;
  }
  .sec-benefit__headline--3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  .sec-benefit__headline--4 {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }
  .sec-benefit__txt {
    font-size: 1.3rem;
  }
  .sec-benefit__txt--1 {
    padding-bottom: 20px;
    font-size: 1.3rem;
  }
  .sec-benefit__txt--2 {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .sec-benefit__txt--3 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .sec-benefit__block--item .image-list {
    margin-bottom: 20px !important;
  }
  .sec-benefit__block--item .image-list::after {
    width: calc((100% - 15px) / 2);
  }
  .sec-benefit__block--item .image-list li {
    width: calc((100% - 15px) / 2);
  }
  .sec-benefit__block--inner {
    margin-bottom: 30px;
  }
  .sec-benefit__block01 {
    margin-top: 30px;
  }
  .sec-benefit__block--evaluate {
    padding: 30px 15px;
  }
  .sec-benefit__block--list::after {
    content: "";
    width: 100%;
  }
  .sec-benefit__block--list li {
    width: 100%;
    margin-bottom: 20px;
    padding: 25px 10px;
  }
  .sec-benefit__block--list li:last-child {
    margin-bottom: 0;
  }
  .sec-benefit__box {
    padding: 10px;
  }
  .sec-benefit__box--image {
    width: 100px;
    margin-right: 25px;
  }
  .sec-benefit__box--inner {
    width: calc(100% - 125px);
    padding-top: 10px;
  }
  .sec-benefit__box01 {
    padding: 35px 20px 30px;
  }
  .sec-benefit__list {
    margin-bottom: -30px;
  }
  .sec-benefit__list::after {
    content: "";
    width: 100%;
  }
  .sec-benefit__list li {
    display: block;
    width: 100%;
    padding: 0 0 30px;
  }
  .sec-benefit__list--two {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .sec-benefit__txt--3 {
    font-size: 1.2rem;
  }
}

.floor-table {
  font-size: 1.6rem;
}
.floor-table th {
  width: 69px;
  padding: 0 0 11px;
  vertical-align: top;
}
.floor-table td {
  padding: 0 0 11px;
}
@media only screen and (max-width: 768px) {
  .floor-table {
    font-size: 1.2rem;
  }
  .floor-table th {
    width: 60px;
    padding: 0 0 5px;
  }
  .floor-table td {
    padding: 0 0 5px;
  }
}

.contact {
  align-items: center;
  background-color: var(--color-sky);
  border-radius: 10px;
  display: flex;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-bottom: 42px;
  padding-top: 43px;
}
.contact__box {
  background-color: var(--color-sky);
  border-radius: 10px;
  padding: 60px 40px;
}
.contact__headline {
  color: var(--color-txt);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 41px;
}
.contact__table {
  background-color: var(--color-white);
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  color: var(--color-txt);
  font-size: 1.6rem;
  line-height: 2.5;
  width: 100%;
}
.contact__table th {
  background-color: var(--color-gray);
  border: 1px solid var(--color-border);
  font-size: 2rem;
  font-weight: 500;
  padding: 30px;
  width: 343px;
}
.contact__table td {
  border: 1px solid var(--color-border);
  font-size: 1.6rem;
  padding: 22px 15px 19px 28px;
}
.contact__table td a {
  color: var(--color-primary);
}
.contact__table td a:hover {
  text-decoration: none;
}
.contact__txt {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: -5px;
  margin-top: -11px;
}
.contact__txt a {
  color: var(--color-txt) !important;
  pointer-events: none;
  text-decoration: none;
}
.contact__ttl {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  width: 29.6875vw;
}
.contact__info {
  color: var(--color-txt);
  font-size: 2rem;
  font-weight: 500;
  padding-left: 77px;
}
.contact__note {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
}
.contact__tel {
  color: var(--color-txt);
  pointer-events: none;
  text-decoration: none;
}
.contact__email {
  color: var(--color-primary);
  display: inline-block;
  text-decoration: underline;
  transition: color 0.25s;
}
@media only screen and (min-width: 1025px) {
  .contact__email:hover {
    color: var(--color-blue);
    text-decoration: none;
  }
}
@media only screen and (max-width: 1200px) {
  .contact__ttl {
    font-size: 1.7rem;
    width: 29.6875vw;
  }
  .contact__info {
    font-size: 1.7rem;
    padding-left: 40px;
  }
  .contact__note {
    font-size: 1.4rem;
  }
  .contact__table th {
    font-size: 1.7rem;
    width: 180px;
  }
  .contact__table td {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .contact {
    border-radius: 5px;
    display: block;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 23px 20px 19px;
  }
  .contact__ttl {
    font-size: 1.5rem;
    margin-bottom: 14px;
    text-align: left;
    width: 100%;
  }
  .contact__info {
    font-size: 1.3rem;
    line-height: 2;
    padding-left: 0;
  }
  .contact__note {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .contact__tel {
    pointer-events: visible;
  }
  .contact__txt {
    font-size: 1.2rem;
    line-height: inherit;
    margin-bottom: 0;
    margin-top: 0;
    pointer-events: visible;
  }
  .contact__txt a {
    pointer-events: visible;
  }
  .contact__small {
    font-size: 1.2rem;
  }
  .contact__box {
    border-radius: 5px;
    padding: 25px 15px;
  }
  .contact__headline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .contact__table {
    border-bottom-width: 0;
    line-height: 2.1;
  }
  .contact__table th {
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    display: block;
    font-size: 1.6rem;
    padding: 5px 14px 4px;
    width: 100%;
  }
  .contact__table td {
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    display: block;
    font-size: 1.3rem;
    padding: 11px 15px 23px 14px;
    width: 100%;
  }
}

.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.41);
}
.overlay.active {
  display: block;
}

.info {
  background: linear-gradient(to bottom right, var(--color-primary) 0%, var(--color-blue-gradient) 100%);
  border-radius: 10px;
  padding: 60px 20px;
  text-align: center;
}
.info__ttl {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 44px;
}
.info__ttl span {
  display: block;
  font-size: 1.4rem;
  margin-top: 8px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .info {
    border-radius: 5px;
    padding: 22px 10px 30px;
  }
  .info__ttl {
    font-size: 1.5rem;
    margin-bottom: 19px;
  }
  .info__ttl span {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

.step, .step--arrow {
  color: var(--color-txt);
  display: flex;
  font-size: 2.6rem;
  margin-bottom: 60px;
  width: 100%;
}
.step__item {
  align-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  flex-wrap: wrap;
  font-weight: 500;
  height: 140px;
  line-height: 1.5;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  text-align: center;
  width: calc((100% - 180px) / 5);
}
.step__item:not(:last-child) {
  margin-right: 45px;
}
.step__item:not(:last-child)::after {
  border-top: 12px solid transparent;
  border-left: 11px solid var(--color-primary);
  border-bottom: 12px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  translate: 27px 0;
  width: 0;
}
.step span, .step--arrow span {
  display: inline-block;
  line-height: 1;
}
.step__small {
  display: block;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 10px;
}
.step--arrow .step__item {
  width: calc((100% - 144px) / 4);
}
.step--arrow .step__item:not(:last-child) {
  margin-right: 48px;
}
.step--arrow .step__item:not(:last-child)::after {
  background: url("/recruit/assets/img/common/icon_arrow_1.svg") no-repeat 0 0/100%;
  border-width: 0;
  height: 15px;
  translate: 32px 0;
  width: 17px;
}
@media only screen and (max-width: 1200px) {
  .step, .step--arrow {
    font-size: 2rem;
  }
  .step__small {
    font-size: 1.5rem;
  }
  .step__item {
    margin-right: 30px;
    width: calc((100% - 120px) / 5);
  }
  .step__item:not(:last-child)::after {
    translate: 22px 0;
  }
  .step--arrow .step__item {
    width: calc((100% - 144px) / 4);
  }
  .step--arrow .step__item:not(:last-child) {
    margin-right: 48px;
  }
  .step--arrow .step__item:not(:last-child)::after {
    translate: 32px 0;
  }
}
@media only screen and (max-width: 992px) {
  .step, .step--arrow {
    font-size: 1.8rem;
  }
  .step__small {
    font-size: 1.2rem;
  }
  .step__item {
    height: 120px;
    line-height: 1.3;
    margin-right: 20px;
    width: calc((100% - 80px) / 5);
  }
  .step__item:not(:last-child)::after {
    border-top-width: 8px;
    border-left-width: 8px;
    border-bottom-width: 8px;
    translate: 16px 0;
  }
  .step--arrow .step__item {
    width: calc((100% - 144px) / 4);
  }
  .step--arrow .step__item:not(:last-child) {
    margin-right: 48px;
  }
  .step--arrow .step__item:not(:last-child)::after {
    translate: 32px 0;
  }
}
@media only screen and (max-width: 768px) {
  .step, .step--arrow {
    display: block;
    margin-bottom: 30px;
  }
  .step__item {
    display: block;
    font-size: 1.6rem;
    height: inherit;
    line-height: 1.25;
    padding: 13px 10px 16px;
    width: 100%;
  }
  .step__item span {
    padding-top: 8px;
  }
  .step__item:not(:last-child) {
    margin-bottom: 25px;
  }
  .step__item:not(:last-child)::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid var(--color-primary);
    border-bottom-width: 0;
    bottom: 0;
    left: 50%;
    translate: -50% 16px;
  }
  .step__small {
    margin-top: 6px;
  }
  .step--arrow .step__item {
    width: 100%;
  }
  .step--arrow .step__item:not(:last-child)::after {
    background-image: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid var(--color-primary);
    border-bottom-width: 0;
    bottom: 0;
    height: 0;
    left: 50%;
    translate: -50% 16px;
    width: 0;
  }
}/*# sourceMappingURL=style.min.css.map */