@charset "UTF-8";
/*default*/
/* https://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc( (var(--char-offset) * var(--char-offset)) / var(--char-center) );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

/*default*/
html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, YuGothic, "Yu Gothic", 游ゴシック体, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS ゴシック", "MS Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4em;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
    font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", MyYuGothicM, YuGothic, メイリオ, Meiryo, sans-serif;
  }
}

html.win.gecko body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.en, .ro {
  font-family: 'Montserrat', sans-serif;
}

.min {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "YuGothic", serif !important;
}

.center {
  text-align: center;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inview.fadeInup {
  opacity: 0;
}

.inview.fadeInup.active {
  -webkit-animation: fadeInup .5s ease-out;
  animation: fadeInup .5s ease-out;
  animation-fill-mode: forwards;
}

.inview.fadeIn {
  opacity: 0;
}

.inview.fadeIn.active {
  -webkit-animation: show 1s ease-out;
  animation: show 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.show {
  opacity: 0;
}

.inview.show.active {
  -webkit-animation: scroll_on2 1s ease-out;
  animation: scroll_on2 1s ease-out;
  animation-fill-mode: forwards;
}

.adelay01 {
  animation-delay: 0.1s !important;
}

.adelay02 {
  animation-delay: 0.2s !important;
}

.adelay03 {
  animation-delay: 0.3s !important;
}

.adelay04 {
  animation-delay: 0.4s !important;
}

.adelay05 {
  animation-delay: 0.5s !important;
}

.adelay06 {
  animation-delay: 0.6s !important;
}

.adelay07 {
  animation-delay: 0.7s !important;
}

.adelay08 {
  animation-delay: 0.8s !important;
}

.adelay09 {
  animation-delay: 0.9s !important;
}

.adelay10 {
  animation-delay: 1s !important;
}

.tdelay01 {
  transition-delay: 0.1s !important;
}

.tdelay02 {
  transition-delay: 0.2s !important;
}

.tdelay03 {
  transition-delay: 0.3s !important;
}

.tdelay04 {
  transition-delay: 0.4s !important;
}

.tdelay05 {
  transition-delay: 0.5s !important;
}

.tdelay06 {
  transition-delay: 0.6s !important;
}

.tdelay07 {
  transition-delay: 0.7s !important;
}

.tdelay08 {
  transition-delay: 0.8s !important;
}

.tdelay09 {
  transition-delay: 0.9s !important;
}

.tdelay10 {
  transition-delay: 1s !important;
}

@keyframes scroll_on2 {
  0% {
    opacity: 0;
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
}
@keyframes scroll_off2 {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.parenthesis {
  position: relative;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: '';
  width: 10px;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parenthesis::before {
  left: 0;
  border-left: 1px solid #fff;
}

.parenthesis::after {
  right: 0;
  border-right: 1px solid #fff;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.image100 img {
  width: 100%;
}

@keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}
.the-arrow {
  height: 1px;
  width: 60px;
  background: #fff;
  content: "";
  position: relative;
  transition: all .3s ease;
}
.the-arrow:after {
  width: 20px;
  display: block;
  position: absolute;
  height: 1px;
  top: -6px;
  right: -4px;
  content: "";
  z-index: 999;
  transform: rotate(45deg);
  background: #fff;
}

/* Global Button Styles */
a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

a.animated-button:link:after, a.animated-button:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  -webkit-transition: all 0.75s ease 0s;
  -moz-transition: all 0.75s ease 0s;
  -o-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
}

a.animated-button:link:hover, a.animated-button:visited:hover {
  color: #FFF;
  text-shadow: none;
}

a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
  height: 450%;
}

a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size: 14px;
  border-radius: 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* Thar Buttons */
a.animated-button.thar-one {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-one:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: none;
}

a.animated-button.thar-one:hover:before {
  bottom: 0%;
  top: auto;
  height: 100%;
}

a.animated-button.thar-one:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-two {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-two:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: ntwo;
}

a.animated-button.thar-two:hover:before {
  top: 0%;
  bottom: auto;
  height: 100%;
}

a.animated-button.thar-two:before {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-three {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-three:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: nthree;
}

a.animated-button.thar-three:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

a.animated-button.thar-three:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-four {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-four:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: nfour;
}

a.animated-button.thar-four:hover:before {
  right: 0%;
  left: auto;
  width: 100%;
}

a.animated-button.thar-four:before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

body {
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #ffd500;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none !important;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

.ro {
  font-family: 'Roboto', "Helvetica Neue",Arial,sans-serif;
}

.min {
  font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , "YuGothic", serif;
}

.tate {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  .tate {
    writing-mode: horizontal-tb;
  }
}

.tatete {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

html.win.gecko .ro, html.win.gecko .la {
  transform: rotate(0.001deg);
}

a, img {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.unborder::after {
  content: '';
  display: block;
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .unborder::after {
    margin: 0.8rem auto;
  }
}

.lborder::after {
  content: '';
  display: block;
  margin: 1rem 0 1rem 0;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #fff;
}

.unborder_big::after {
  content: '';
  display: block;
  margin: 2rem auto 2rem auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .unborder_big::after {
    margin: 1.4rem auto;
  }
}

ul, li {
  list-style: none;
}

ul.normal_list {
  margin: 0;
  padding: 0 0 0 1em;
}
ul.normal_list li {
  padding: 0 0 0 0;
  margin: 0 0 0 0.3em;
  position: relative;
  list-style-type: disc;
  line-height: 1.5;
}

.d02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.d03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.d04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.d06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.d08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.d1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

html {
  overflow-y: scroll;
}

@media only screen and (max-width: 768px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .brandSiteHeader {
    height: 44px;
    border-bottom: 1px solid #ffd500;
    position: fixed;
    background: #ffffff;
    width: 100%;
    z-index: 9999;
  }
}
@media only screen and (max-width: 768px) {
  .brandSiteHeader h1.logo {
    margin: 0;
    padding: 0rem 0.5rem 0.5rem 0.5rem;
    width: 70px;
    z-index: 9999;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .brandSiteHeader h1.logo {
    width: 72px;
  }
}

.header_rec {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  *zoom: 1;
}
.header_rec:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .header_rec {
    z-index: 9999;
  }
}
.header_rec .inner_recruit {
  max-width: 1100px;
  margin: auto;
  padding: 0 5rem;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .header_rec .inner_recruit {
    height: auto;
  }
}
.header_rec .gradu_logo {
  font-size: 24px;
  font-size: 2.4rem;
  padding: 0 0 0 3rem;
  position: relative;
}
.header_rec .gradu_logo a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  .header_rec .gradu_logo {
    position: fixed;
    top: 1rem;
    left: 80px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.header_rec #menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .header_rec #menu {
    position: fixed;
  }
}
.header_rec #menu .entry a, .header_rec #menu .mypage a, .header_rec #menu .movie a, .header_rec #menu .req a {
  width: 130px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd500;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 1.5rem 0;
  line-height: 2;
  letter-spacing: 0.2em;
}
.header_rec #menu .entry a:hover, .header_rec #menu .mypage a:hover, .header_rec #menu .movie a:hover, .header_rec #menu .req a:hover {
  background: #ffd91a;
}
@media only screen and (max-width: 768px) {
  .header_rec #menu .entry, .header_rec #menu .mypage, .header_rec #menu .movie, .header_rec #menu .req {
    display: none;
  }
}
.header_rec #menu .movie a {
  width: 200px;
  background: #ffe666;
  letter-spacing: 0.1em;
  position: relative;
}
.header_rec #menu .movie a:hover {
  background: #ffea80;
}
.header_rec #menu .movie a:after {
  color: #333;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-family: 'ionicons';
  line-height: 1;
  content: "\f362";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
}
.header_rec #menu .req.coming a {
  background: #ccc;
  cursor: default;
}
.header_rec #menu .req.coming a:hover {
  background: #ccc;
}
.header_rec #menu .req a {
  background: #ffee99;
}
.header_rec #menu .req a:hover {
  background: #fff2b3;
}
.header_rec #menu .mypage a {
  background: #333;
  color: #ffffff;
}
.header_rec #menu .mypage a:hover {
  background: #555;
}

.nav_box {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .nav_box {
    padding: 5vh 0;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 0;
    left: 0;
    background: #ffffff;
  }
  .nav_box.is-open {
    display: block;
  }
}
.nav_box #logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem 0 1.5rem 7rem;
  width: 340px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .nav_box #logo {
    display: none;
  }
}
.nav_box #logo a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
}
.nav_box #logo .image {
  width: 110px;
}
.nav_box #logo .image img {
  width: 100%;
}
.nav_box #logo p {
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin: 0 0 0 2rem;
  font-family: "YuGothic";
}
.nav_box .entry a, .nav_box .mypage a {
  background: #ffd500;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 1.5rem 0;
  line-height: 2;
  letter-spacing: 0.2em;
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
}
.nav_box .entry a:after, .nav_box .mypage a:after {
  color: #555;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-family: 'ionicons';
  line-height: 1;
  content: "\f125";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
}
.nav_box .entry.mypage a, .nav_box .mypage.mypage a {
  background: #333;
  color: #ffffff;
}
.nav_box .entry.mypage a:after, .nav_box .mypage.mypage a:after {
  color: #ffffff;
}
.nav_box .bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  background: #ffffff;
}
.nav_box .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 1200px;
  min-width: 1000px;
  width: 100%;
  padding: 8rem 5rem;
}
@media only screen and (max-width: 768px) {
  .nav_box .inner {
    position: static;
    min-width: 0;
    padding: 2rem;
    transform: none;
  }
}
.nav_box .inner .logo {
  display: flex;
  align-items: flex-end;
  margin: 0 0 2rem 0;
}
.nav_box .inner .logo .logoimage {
  width: 100px;
  margin: 0 1rem 0 0;
}
.nav_box .inner .logo img {
  width: 100%;
}
.nav_box .inner nav#gnav .clink {
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .nav_box .inner nav#gnav .clink {
    margin: 2rem 0;
    text-align: center;
  }
}
.nav_box .inner nav#gnav .nav_title {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0 5rem 0 0;
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .nav_box .inner nav#gnav .nav_title {
    display: block;
    padding: 1rem 0;
    font-size: 7vw;
  }
}
.nav_box .inner nav#gnav .nav_title p.en {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
}
.nav_box .inner nav#gnav .nav_title p.jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .nav_box .inner nav#gnav .nav_title p.jp {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.nav_box .inner nav#gnav .nav_title:hover {
  color: #ffd500;
}
.nav_box .inner nav#gnav .nav_title:hover:after {
  color: #ffd500;
}
.nav_box .inner nav#gnav .nav_title:after {
  color: #555;
  position: absolute;
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
  font-family: 'ionicons';
  line-height: 1;
  content: "\f48b";
  font-size: 30px;
  font-size: 3rem;
  z-index: 999;
  margin: 0 0 0 1rem;
}
.nav_box .inner nav#gnav ul {
  padding: 0 0 2rem 5rem;
}
.nav_box .inner nav#gnav ul li a {
  padding: 0.5rem 0;
  display: block;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .nav_box .inner nav#gnav ul li a {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 1rem 0;
  }
}
.nav_box .inner nav#gnav ul li a:before {
  display: block;
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  left: -4rem;
  transform: translateY(-50%);
  content: "";
  z-index: 999;
  background: #ccc;
}
.nav_box .inner nav#gnav ul li.coming a {
  opacity: 0.5;
  cursor: default;
}
.nav_box .inner nav#gnav ul li.coming a:hover {
  color: #000;
}

.menu_flex {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .menu_flex {
    display: block;
  }
}
.menu_flex nav {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .menu_flex nav {
    width: 100%;
  }
}
.menu_flex #menu_visual {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .menu_flex #menu_visual {
    display: none;
  }
}
.menu_flex #menu_visual.menu01 {
  background: url("/recruit/img/menu-assets/menu01.jpg") no-repeat center center;
  background-size: cover;
}
.menu_flex #menu_visual.menu02 {
  background: url("/recruit/img/menu-assets/menu02.jpg") no-repeat center center;
  background-size: cover;
}
.menu_flex #menu_visual.menu03 {
  background: url("/recruit/img/menu-assets/menu03.jpg") no-repeat center center;
  background-size: cover;
}
.menu_flex #menu_visual.menu04 {
  background: url("/recruit/img/menu-assets/menu04.jpg") no-repeat center center;
  background-size: cover;
}
.menu_flex #menu_visual.menu05 {
  background: url("/recruit/img/menu-assets/menu05.jpg") no-repeat center center;
  background-size: cover;
}
.menu_flex #menu_visual.menu06 {
  background: url("/recruit/img/menu-assets/menu06.jpg") no-repeat center center;
  background-size: cover;
}

.spmenu {
  padding: 0 2rem;
  background: #000;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .spmenu {
    height: 44px;
  }
}
.spmenu:hover {
  background: #222;
}

.hamburger .menu_icon {
  position: relative;
  width: 24px;
  height: 18px;
}
.hamburger .border {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 0px;
  transition: all 0.3s;
  background: #ffd500;
}
.hamburger .border1 {
  top: 0;
}
.hamburger .border2 {
  top: 0;
  bottom: 0;
  margin: auto;
}
.hamburger .border3 {
  bottom: 0px;
}
.hamburger .text {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ffd500;
  transition: all 0.3s;
}
.hamburger .text::after {
  display: block;
  content: "MENU";
}
.hamburger .active + .text::after {
  content: "CLOSE";
}

.type4 {
  overflow: hidden;
}
.type4 .border {
  background: transparent;
}
.type4 .border::before {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 0px;
  background: #ffd500;
  transition: all 0.3s;
}
.type4 .border::after {
  position: absolute;
  left: -100px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 0px;
  background: #ffd500;
  transition: all 0.3s;
}
.type4 .border1::before, .type4 .border2::before, .type4 .border3::before {
  transition: all 0s linear;
}
.type4:hover .border::before {
  left: 100px;
}
.type4:hover .border::after {
  left: 0;
}
.type4:hover .border1::before {
  transition: all .2s linear;
}
.type4:hover .border1::after {
  transition: all .2s linear;
}
.type4:hover .border2::before {
  transition: all .25s linear;
}
.type4:hover .border2::after {
  transition: all .25s linear;
}
.type4:hover .border3::before {
  transition: all .3s linear;
}
.type4:hover .border3::after {
  transition: all .3s linear;
}
.type4 .border1 {
  animation: type4_menu_bar01 0.5s;
  animation-fill-mode: forwards;
}
.type4 .border3 {
  animation: type4_menu_bar03 0.5s;
  animation-fill-mode: forwards;
}
.type4 .active .border {
  background: #ffd500;
  transition: none;
}
.type4 .active .border::before {
  transition: none;
}
.type4 .active .border::after {
  transition: none;
}
.type4 .active .border1 {
  animation: type4_active_menu_bar01 0.5s forwards;
}
.type4 .active .border2 {
  opacity: 0;
}
.type4 .active .border3 {
  animation: type4_active_menu_bar03 0.5s forwards;
}
@keyframes type4_menu_bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes type4_menu_bar03 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes type4_active_menu_bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
@keyframes type4_active_menu_bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
#pan {
  width: 100%;
  padding: 74px 0 0 0;
}
@media only screen and (max-width: 768px) {
  #pan {
    display: none;
  }
}
#pan .inner {
  padding: 0 0 0 2rem;
}
#pan ul {
  *zoom: 1;
}
#pan ul:after {
  content: "";
  display: table;
  clear: both;
}
#pan ul li a {
  display: block;
  float: left;
  position: relative;
  padding: 0 1.2rem 0 1.2rem;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555;
}
#pan ul li a::after {
  color: #555;
  position: absolute;
  font-family: 'ionicons';
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f105";
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 999;
}
#pan ul li.nolink {
  display: block;
  float: left;
  position: relative;
  padding: 0 1.2rem 0 1.2rem;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555;
}
#pan ul li.nolink:after {
  color: #555;
  position: absolute;
  font-family: 'ionicons';
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f105";
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 999;
}
#pan ul li:last-child a:after {
  content: "";
}

.mr_flex {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .mr_flex {
    display: flex !important;
  }
}
.mr_flex div {
  width: 100%;
}
.mr_flex .movie a, .mr_flex .req a {
  display: block;
  padding: 1.5rem 0;
  text-align: center;
}
.mr_flex .movie a {
  background: #ffe666;
}
.mr_flex .movie a:hover {
  background: #ffea80;
}
.mr_flex .req.coming a {
  background: #ccc;
  cursor: default;
}
.mr_flex .req.coming a:hover {
  background: #ccc;
}
.mr_flex .req a {
  background: #ffee99;
}
.mr_flex .req a:hover {
  background: #fff2b3;
}

.brandSiteFooter .link ul.policy li a {
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .brandSiteFooter .link .policy {
    display: block;
  }
  .brandSiteFooter .link .policy li {
    width: 100%;
    padding: 1rem 0;
  }
}

footer .f_up {
  background: #000;
  padding: 2rem;
}
footer .f_up .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  footer .f_up .inner {
    padding: 0 1rem;
  }
}
footer .f_up ul {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .f_up ul li {
    width: 33.33333%;
  }
}
footer .f_up ul li a {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 768px) {
  footer .f_up ul li a {
    font-size: 2vw;
    text-align: center;
  }
}
footer .f_up ul li a:hover {
  color: #ffd500;
}
footer .f_up ul li + li {
  border-right: 1px solid #ccc;
}
footer .f_up ul li:first-child {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
footer .f_down {
  max-width: 1200px;
  margin: auto;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  footer .f_down {
    padding: 2rem;
  }
}
footer .f_down .f_header {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_header {
    margin: 0;
    padding: 5rem 0;
  }
}
footer .f_down .f_header .logo {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_header .logo {
    display: block;
  }
}
footer .f_down .f_header .logo .image {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_header .logo .image {
    width: 150px;
  }
}
footer .f_down .f_header .logo .image img {
  width: 100%;
}
footer .f_down .f_header .logo p {
  margin: 0 0 0 1rem;
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_header .logo p {
    font-size: 10px;
    font-size: 1rem;
  }
}
footer .f_down .f_header a.mypage {
  display: flex;
  align-items: center;
  background: #ffd500;
  color: #ffffff;
  padding: 0 3rem;
}
footer .f_down .f_header a.mypage i {
  font-size: 28px;
  font-size: 2.8rem;
  margin: 0 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_header a.mypage i {
    font-size: 20px;
    font-size: 2rem;
  }
}
footer .f_down .f_header a.mypage:hover {
  background: #ffd91a;
}
footer .f_down .f_bottom {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .f_down .f_bottom {
    display: none;
  }
}
footer .f_down .f_bottom ul li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 13px;
  font-size: 1.3rem;
}
footer .f_down .f_bottom ul li.fmain {
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
  border-bottom: 1px solid #ccc;
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

#pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #ffd500;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  display: none;
  transition: all .3s ease;
}
#pagetop i {
  line-height: 34px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  display: block;
}
#pagetop:hover {
  background: #ffd91a;
}
#pagetop.active {
  opacity: 1;
  display: block;
}

.copyright {
  text-align: center;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 5rem;
}

/*
Flaticon icon font: Flaticon
Creation date: 24/10/2018 05:13
*/
@font-face {
  font-family: "Flaticon";
  src: url("../font/Flaticon.eot");
  src: url("../font/Flaticon.eot?#iefix") format("embedded-opentype"), url("../font/Flaticon.woff") format("woff"), url("../font/Flaticon.ttf") format("truetype"), url("../font/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../font/Flaticon.svg#Flaticon") format("svg");
  }
}
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-login:before {
  content: "\f100";
}

.flaticon-login-square-arrow-button-outline:before {
  content: "\f101";
}

.flaticon-tasks:before {
  content: "\f102";
}

.flaticon-family:before {
  content: "\f103";
}

.flaticon-conversation:before {
  content: "\f104";
}

img[src$=".svg"], img {
  width: 100%;
}

#luxy {
  width: 100%;
  overflow: hidden;
}

@keyframes scon {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0) skew(0deg, 0deg) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.2) translate(0, 120%) skew(0deg, -10deg) translate3d(0, 0, 0);
  }
}
.loading {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-backface-visibility: hidden;
}
.loading .inner {
  position: absolute;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.loading .inner.active {
  -webkit-animation: scon 0.5s cubic-bezier(0.88, 0.08, 0.71, 0.76);
  animation: scon 0.5s cubic-bezier(0.88, 0.08, 0.71, 0.76);
  animation-fill-mode: forwards;
  -webkit-backface-visibility: hidden;
}
.loading .imagelogo {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.2;
  -webkit-backface-visibility: hidden;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
}

.loader {
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-indent: -9999em;
  border-top: 0.5rem solid rgba(255, 213, 0, 0.6);
  border-right: 0.5rem solid rgba(255, 213, 0, 0.6);
  border-bottom: 0.5rem solid rgba(255, 213, 0, 0.6);
  border-left: 0.5rem solid #ffd500;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.5s infinite linear;
  animation: load8 0.5s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
section#normal_title {
  padding: 18rem 0 3rem 0;
  background: #fafafa;
}
@media only screen and (max-width: 768px) {
  section#normal_title {
    padding: 10rem 0 2rem 0;
  }
}
section#normal_title .inner {
  max-width: 1200px;
  padding: 0 5rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  section#normal_title .inner {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 320px) {
  section#normal_title .inner {
    padding: 0 2rem;
  }
}
section#normal_title p.en {
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  section#normal_title p.en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section#normal_title p.en:after {
  content: '';
  display: block;
  margin: 1rem 0;
  text-align: center;
  width: 20px;
  height: 5px;
  background: #ffd500;
}
section#normal_title h1 {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  section#normal_title h1 {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
  }
}

#normal_contents {
  max-width: 1200px;
  padding: 5rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #normal_contents {
    padding: 3rem;
  }
}
@media only screen and (max-width: 320px) {
  #normal_contents {
    padding: 2rem;
  }
}

.cont {
  margin: 0 0 6rem 0;
}
.cont:last-child {
  margin: 0;
}

h2.normal_h2 {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  position: relative;
  margin: 0 0 3rem 0;
  padding: 0 0 1rem 0;
  position: relative;
  overflow: hidden;
}
h2.normal_h2:before, h2.normal_h2:after {
  content: "";
  position: absolute;
  bottom: 0;
}
h2.normal_h2:before {
  border-bottom: 2px solid #ffd500;
  width: 100%;
}
h2.normal_h2:after {
  border-bottom: 2px solid #eee;
  width: 100%;
}

.bgon {
  background: #f5f4f2;
}

.visual_header, .no_visual_header {
  min-height: 300px;
  position: relative;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  .visual_header, .no_visual_header {
    min-height: 200px;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .visual_header, .no_visual_header {
    min-height: 300px;
  }
}

.visual_header .in, .no_visual_header .in {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  .visual_header .in, .no_visual_header .in {
    padding: 0 2rem;
  }
}
.visual_header .title_bg, .no_visual_header .title_bg {
  width: 380px;
  height: 83px;
  background: url("/recruit/img/keyword-assets/title_bg.png") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .visual_header .title_bg.wide, .no_visual_header .title_bg.wide {
    width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .visual_header .title_bg, .no_visual_header .title_bg {
    width: 200px;
    top: 44px;
  }
}
@media only screen and (max-width: 320px) {
  .visual_header .title_bg, .no_visual_header .title_bg {
    width: 160px;
  }
}
.visual_header .title_bg h1, .no_visual_header .title_bg h1 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .visual_header .title_bg h1, .no_visual_header .title_bg h1 {
    font-size: 10px;
    font-size: 1rem;
    padding: 0.8rem 0 0 0;
  }
}
@media only screen and (max-width: 320px) {
  .visual_header .title_bg h1, .no_visual_header .title_bg h1 {
    font-size: 9px;
    font-size: 0.9rem;
    padding: 0.5rem 0 0 0;
  }
}
.visual_header.keyword, .no_visual_header.keyword {
  background: url("/recruit/img/keyword-assets/visual.jpg") no-repeat 0 0;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .visual_header.keyword, .no_visual_header.keyword {
    background: url("/recruit/img/keyword-assets/visual_sp.jpg") no-repeat center center;
    background-size: cover;
  }
}
.visual_header.about, .no_visual_header.about {
  background: url("/recruit/img/business-assets/visual.jpg") no-repeat 0 0;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .visual_header.about, .no_visual_header.about {
    background: url("/recruit/img/business-assets/visual_sp.jpg") no-repeat 0 0;
    background-size: cover;
  }
}
.visual_header.topics, .no_visual_header.topics {
  background: url("/recruit/img/topics-assets/visual.jpg") no-repeat 0 0;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .visual_header.topics, .no_visual_header.topics {
    background: url("/recruit/img/topics-assets/visual_sp.jpg") no-repeat 0 0;
    background-size: cover;
  }
}
.visual_header.job, .no_visual_header.job {
  background: url("/recruit/img/job-assets/visual.jpg") no-repeat 0 0;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .visual_header.job, .no_visual_header.job {
    background: url("/recruit/img/job-assets/visual_sp.jpg") no-repeat center center;
    background-size: cover;
  }
}

.no_visual_header {
  min-height: 0;
}
@media only screen and (max-width: 768px) {
  .no_visual_header .title_bg {
    top: 44px;
  }
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#colorbox {
  outline: 0;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 24px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  background: rgba(255, 255, 255, 0);
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious, #cboxNext {
  display: none !important;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0 !important;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

.movie_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.movie_wrap .in {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: rgba(255, 255, 255, 0.9);
}
.movie_wrap #movie {
  position: relative;
  z-index: 9999;
}
.movie_wrap.active {
  display: block;
}
.movie_wrap .close {
  position: absolute;
  right: -4rem;
  top: -7rem;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .movie_wrap .close {
    right: 2rem;
    top: -7rem;
  }
}
.movie_wrap .close i {
  font-size: 50px;
  font-size: 5rem;
  color: #ffd500;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}
.movie_wrap .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
