@charset "UTF-8";
/*default*/
/* https://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
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;
}

.att3 {
  padding-left: 0.4em;
  text-indent: 0.8em;
}

/* 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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  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.chrome 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;
}

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 {
  font-family: 'Roboto', sans-serif;
}

.os {
  font-family: 'Oswald', sans-serif;
}

.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;
  }
}

.scroll {
  content: "";
  position: relative;
  height: 50px;
  width: 1px;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll {
    height: 30px;
  }
}
.scroll .in {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll .in {
    height: 30px;
  }
}
.scroll .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
.scroll a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}

.inview.fadeInup {
  opacity: 0;
}

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

.inview.show {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

.adelay10 {
  -webkit-animation-delay: 1s !important;
  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;
}

@-webkit-keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    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 #0089cb;
  border-bottom: 1px solid #0089cb;
  box-sizing: border-box;
}

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

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

/*スクロールバー全体*/
::-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%;
}

@-webkit-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%);
  }
}

@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%);
  }
}
body {
  color: #333;
}

a {
  color: #555;
  text-decoration: none;
}
a:hover {
  color: #0c724b;
  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;
}

.it {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
}

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

.tate {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  .tate {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    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 {
  -webkit-transform: rotate(0.001deg);
  transform: rotate(0.001deg);
}

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

* {
  -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;
}

header .h_header {
  max-width: 1200px;
  padding: 1rem 5rem;
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  header .h_header {
    padding: 1rem;
  }
}
header .h_header #logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .h_header #logo .logoimage {
  width: 150px;
}
@media only screen and (max-width: 768px) {
  header .h_header #logo .logoimage {
    width: 110px;
  }
}
@media only screen and (max-width: 320px) {
  header .h_header #logo .logoimage {
    width: 80px;
  }
}
header .h_header #logo .en {
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  header .h_header #logo .en {
    font-size: 8px;
    font-size: 0.8rem;
  }
}
header .h_header .corp_link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  header .h_header .corp_link {
    display: block;
  }
}
header .h_header .corp_link a {
  display: block;
  position: relative;
  font-weight: bold;
  margin: 0 2rem 0 0;
}
@media only screen and (max-width: 768px) {
  header .h_header .corp_link a {
    font-size: 10px;
    font-size: 1rem;
  }
}
header .h_header .corp_link a i {
  margin: 0 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  header .h_header .corp_link a i {
    margin: 0;
  }
}
header .nav_box {
  background: #0089cb;
}
header .nav_box nav#gnav {
  max-width: 1200px;
  margin: auto;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  header .nav_box nav#gnav {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  header .nav_box nav#gnav {
    padding: 0;
  }
}

header .nav_box nav#gnav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .nav_box nav#gnav ul li {
  width: 25%;
  text-align: center;
}
header .nav_box nav#gnav ul li a {
  border-left: 1px solid #ffffff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: block;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
}
@media only screen and (max-width: 768px) {
  header .nav_box nav#gnav ul li a {
    font-size: 8px;
    font-size: 0.8rem;
  }
}
header .nav_box nav#gnav ul li a span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  header .nav_box nav#gnav ul li a span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
header .nav_box nav#gnav ul li a:hover {
  background: #0056cb;
}
header .nav_box nav#gnav ul li:last-child a {
  border-right: 1px solid #ffffff;
}

footer {
  background: #000;
  border-top: 1px solid #ccc;
}
footer .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 5rem;
}
footer .inner .flink ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
footer .inner .flink ul li a {
  display: block;
  color: #ffffff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 1rem;
  font-size: 12px;
  font-size: 1.2rem;
}
footer .inner .flink ul li + li a {
  border-left: 0;
  border-right: 1px solid #fff;
}
footer .copyright {
  color: #000;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 3rem 0;
  background: #ffffff;
}
footer .nav_box {
  display: block !important;
  opacity: 1 !important;
  position: static;
  border: none;
}
footer .nav_box .inner {
  position: static;
  -webkit-transform: none;
  transform: none;
  margin: auto;
  display: block;
  padding: 5rem;
  width: auto;
  max-width: 1200px;
}
footer .nav_box .inner .logo {
  display: none;
}

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

/*
Flaticon icon font: Flaticon
Creation date: 19/10/2018 11:16
*/
@font-face {
  font-family: "Flaticon";
  src: url("/recruit/graduates/font/Flaticon.eot");
  src: url("/recruit/graduates/font/Flaticon.eot?#iefix") format("embedded-opentype"), url("/recruit/graduates/font/Flaticon.woff") format("woff"), url("/recruit/graduates/font/Flaticon.ttf") format("truetype"), url("/recruit/graduates/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("/recruit/graduates/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-faq:before {
  content: "\f100";
}

.flaticon-recruitment:before {
  content: "\f101";
}

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

.company_lead {
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  .company_lead {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .company_lead {
    padding: 2rem 0;
  }
}
.company_lead .inner {
  width: 640px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .company_lead .inner {
    width: 100%;
  }
}
.company_lead .inner h2 {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 1rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .company_lead .inner h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.company_lead .inner h2:after {
  content: '';
  display: block;
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #0089cb;
}
@media only screen and (max-width: 768px) {
  .company_lead .inner p {
    padding: 0 2rem;
  }
}

section#normal_title {
  text-align: center;
  margin: 5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  section#normal_title {
    margin: 1rem 0 0 0;
  }
}
section#normal_title .main_title_box {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 0;
  position: relative;
  background: url("/recruit/img/top-assets/bar_light.png") no-repeat center center;
}
@media only screen and (max-width: 768px) {
  section#normal_title .main_title_box {
    padding: 3rem 0;
    background: url("/recruit/img/top-assets/bar_light.png") no-repeat center center;
    background-size: contain;
  }
}
section#normal_title .main_title_box p.en {
  font-size: 24px;
  font-size: 2.4rem;
  color: #0089cb;
}
@media only screen and (max-width: 768px) {
  section#normal_title .main_title_box p.en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section#normal_title .main_title_box h1 {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  section#normal_title .main_title_box h1 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
section#normal_title .lead {
  width: 640px;
  margin: auto;
  text-align: left;
}

.lead_box {
  width: 800px;
  margin: 5rem auto 5rem auto;
}
.lead_box h2 {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
  text-align: center;
}

.movie_link_btn {
  text-align: center;
}
.movie_link_btn a {
  display: inline-block;
  padding: 1rem 3rem;
  background: #0089cb;
  color: #ffffff;
  position: relative;
}
.movie_link_btn a i {
  display: inline-block;
  margin: 0 0 0 1rem;
}
.movie_link_btn a:hover {
  background: #0078b2;
}

/*! Lity - v2.4.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity .3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial,Helvetica,sans-serif;
  opacity: 0;
  transition: opacity .3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.lity-loading .lity-content, .lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}
