@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@-webkit-keyframes test_height {
  0%, 100% {
    height: 32.5vw;
  }
  50% {
    height: 28.5vw;
  }
}
@keyframes test_height {
  0%, 100% {
    height: 32.5vw;
  }
  50% {
    height: 28.5vw;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_3em {
  margin-top: 3em;
}

.mt_4em {
  margin-top: 4em;
}

.mt_5em {
  margin-top: 5em;
}

.mt_6em {
  margin-top: 6em;
}

.mt_7em {
  margin-top: 7em;
}
.mb_1em {
  margin-bottom: 1em;
}

.pb_10em {
  padding-bottom: 10em;
}

.ta_cntr {
  text-align: center;
}

.fc_blck {
  color: #121212;
}

.fc_red {
  color: #f00;
}

.fc_chrysler {
  color: #ad3136;
}

.fs_small {
  font-size: 0.9em;
}

.fs_big {
  font-size: 1.2em;
}

.fw_lght {
  font-weight: lighter;
}

.fw_bold {
  font-weight: bold;
}

.indent {
  margin-left: 1em;
}

.nowrap {
  white-space: nowrap;
}

ul.list_notice, ul.list_dot, ul.list_num {
  display: table;
  list-style-type: none;
}
ul.list_notice > li, ul.list_dot > li, ul.list_num > li {
  display: table-row;
  counter-increment: table-ol;
}
ul.list_notice > li::before, ul.list_dot > li::before, ul.list_num > li::before {
  display: table-cell;
}
ul.list_notice > li::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0.5em;
  content: "*";
}
ul.list_dot > li::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0.5em;
  content: "-";
}
ul.list_num > li {
  counter-increment: list_num;
}
ul.list_num > li::before {
  padding-right: 0.5em;
  content: counter(list_num) ".";
}

a {
  color: #00c9ff;
}

html, body {
  height: 100%;
  margin: 0;
  color: #393939;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
}
body > header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  flex-shrink: 0;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  background-color: #fff;
}
body > header > a {
  display: block;
  position: absolute;
  min-height: 0%;
  background-position: 0% 0%;
  background-size: contain;
  background-repeat: no-repeat;
}
body > main {
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  flex: 1 0 auto;
  min-height: 0%;
}
body > main > div#background {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body > main > div#background::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  content: "";
  opacity: 0.8;
}
body > main > div#background > ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  list-style-type: none;
}
body > main > div#background > ul > li {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/Wave.svg");
  background-position: 0% 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body > main > div#background > ul > li:nth-of-type(even) {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
body > main > div#background > ul > li::before {
  display: block;
  content: "";
}
body > main > div#background > div#div_grad1,
body > main > div#background > div#div_grad2 {
  -webkit-transition: opacity 1s ease;
  display: block;
  z-index: 2;
  position: fixed;
  background: -webkit-radial-gradient(#000 20%, transparent 78%);
  background: radial-gradient(#000 20%, transparent 78%);
  opacity: 0;
  transition: opacity 1s ease;
}
body > main > div#background > div#noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/Noise_ptn.png");
  background-position: left top;
  background-size: 150px 150px;
  background-repeat: repeat;
  opacity: 0.5;
}
body > main > div#background::before {
  -webkit-transform: rotateZ(-15.3deg);
  -webkit-transform-origin: left top;
  display: block;
  z-index: 2;
  position: fixed;
  height: 200%;
  transform: rotateZ(-15.3deg);
  transform-origin: left top;
  background-image: -webkit-linear-gradient(#494949 1px, transparent 0), -webkit-linear-gradient(left, #494949 1px, transparent 0);
  background-image: linear-gradient(#494949 1px, transparent 0), linear-gradient(90deg, #494949 1px, transparent 0);
  content: "";
  opacity: 0.15;
}
body > main > div#pagetitle {
  display: block;
  position: relative;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
body > main > div#contents {
  display: block;
  position: relative;
  height: auto;
}
body > main > div#contact_wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 0 4px 4px rgba(24, 61, 73, 0.1), 0 1px 6px rgba(24, 61, 73, 0.05), 0 8px 8px rgba(24, 61, 73, 0.1), 0 16px 16px rgba(24, 61, 73, 0.1), 8px 32px 32px rgba(24, 61, 73, 0.15), 8px 64px 64px rgba(24, 61, 73, 0.15);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: fixed;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: yellow;
  box-shadow: 0 4px 4px rgba(24, 61, 73, 0.1), 0 1px 6px rgba(24, 61, 73, 0.05), 0 8px 8px rgba(24, 61, 73, 0.1), 0 16px 16px rgba(24, 61, 73, 0.1), 8px 32px 32px rgba(24, 61, 73, 0.15), 8px 64px 64px rgba(24, 61, 73, 0.15);
  cursor: pointer;
}
body > main > div#contact_wrapper.hide {
  opacity: 0;
}
body > main > div#contact_wrapper > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body > main > div#contact_wrapper > img {
  -webkit-animation: spin 1.5s ease-in;
  width: 60%;
  animation: spin 1.5s ease-in;
}
body > main > div#contact_wrapper > p {
  position: absolute;
  right: 0;
  bottom: 1.8em;
  left: 0;
  margin: auto 0;
  color: #343434;
  font-size: 0.7em;
  line-height: 1em;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
}
body > footer {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  color: #f5f5f5;
  font-family: "Meiryo", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;
}
body > footer a {
  color: #f5f5f5;
  line-height: 1em;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  .mt_1hem {
    margin-top: 1em;
  }

  .mt_2hem {
    margin-top: 2em;
  }

  .mt_3hem {
    margin-top: 3em;
  }

  .mt_4hem {
    margin-top: 4em;
  }

  .mt_5hem {
    margin-top: 5em;
  }

  .mt_6hem {
    margin-top: 6em;
  }

  .mt_7hem {
    margin-top: 7em;
  }

  .pb_10hem {
    padding-bottom: 10em;
  }
  html, body {
    min-width: 1300px;
    font-size: 16px;
    line-height: 1.8em;
  }
  body > header {
    min-width: 1300px;
    height: 78px;
  }
  body > header > a {
    top: 26px;
    left: 40px;
    width: 493px;
    height: 27px;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/header/pc/corp_logo.png");
  }
  body > header > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }
  body > header > ul > li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 34px;
  }
  body > header > ul > li > a {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    line-height: 1em;
    text-decoration: none;
  }
  body > header > div#humberger_switch {
    display: none;
    visibility: hidden;
  }
  body > header > div#menuBackground {
    display: none;
    visibility: hidden;
  }
  body > header > menu {
    display: none;
    visibility: hidden;
  }
  body > main {
    margin-top: 78px;
    padding-bottom: 140px;
  }
  body > main > div#background > ul > li::before {
    padding-top: 170%;
  }
  body > main > div#background > div#div_grad1 {
    top: 5vh;
    left: 5vw;
    width: 36vw;
    height: 36vw;
  }
  body > main > div#background > div#div_grad2 {
    right: 5vw;
    bottom: 5vh;
    width: 40vw;
    height: 40vw;
  }
  body > main > div#background::before {
    top: 0;
    left: -20%;
    width: 200%;
    background-size: 1455px 1068px;
  }
  body > main > div#pagetitle {
    height: 391px;
    background-size: 1920px auto;
  }
  body > main > div#contents {
    width: 1200px;
    margin: 75px auto 0;
  }
  body > main > div#contact_wrapper {
    -webkit-transition: opacity 1s, -webkit-box-shadow 1s, -webkit-transform 0.5s;
    top: 440px;
    right: 140px;
    width: 5em;
    height: 5em;
    transition: opacity 1s, -webkit-box-shadow 1s, -webkit-transform 0.5s;
    transition: opacity 1s, box-shadow 1s, transform 0.5s;
    transition: opacity 1s, box-shadow 1s, transform 0.5s, -webkit-box-shadow 1s, -webkit-transform 0.5s;
  }
  body > main > div#contact_wrapper:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  body > main > div#contact_wrapper:hover > img {
    width: 35%;
    margin-top: -1.5em;
  }
  body > main > div#contact_wrapper:hover > p {
    opacity: 1;
  }
  body > main > div#contact_wrapper > img {
    -webkit-transition: width 0.5s, margin-top 0.5s;
    transition: width 0.5s, margin-top 0.5s;
  }
  body > main > div#contact_wrapper > p {
    -webkit-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
  }
  body > footer {
    height: 325px;
    background-color: #3c3c3c;
  }
  body > footer > div:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 169px;
    padding-bottom: 15px;
    border-bottom: 1px solid #656565;
    border-collapse: collapse;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 46px;
    list-style-type: none;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > ul > li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 56px;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > ul > li > a {
    font-weight: bold;
    line-height: 1em;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > a {
    font-weight: bold;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > a#chg_lang {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 42px;
    border: 1px solid #bbb;
    border-collapse: collapse;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > a#chg_lang::before {
    display: block;
    position: relative;
    width: 25px;
    height: 25px;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/pc/lang.png");
    background-position: 0% 0%;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > a#chg_lang > p {
    display: block;
    position: relative;
    margin-right: 16px;
    margin-left: 5px;
    color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(1) > a#chg_lang::after {
    display: block;
    position: relative;
    content: "▼";
    color: #f5f5f5;
    font-weight: bold;
    font-size: 12px;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #5c5c5c;
    border-collapse: collapse;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div > a {
    display: block;
    position: relative;
    font-weight: bold;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(1) > a:nth-child(1) {
    margin-right: 56px;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(1), body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(2) {
    background-position: 0% 0%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(1) {
    width: 18px;
    height: 19px;
    margin-right: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 1227" xmlns="http://www.w3.org/2000/svg"><path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="%23fff"/></svg>');
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(2) {
    width: 21px;
    height: 21px;
    margin-right: 42px;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/pc/facebook.png");
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-child(3) {
    margin-right: 42px;
    font-size: 12px;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-child(2) > a:nth-of-type(4)::after {
    display: block;
    position: relative;
    width: 15px;
    height: 14px;
    margin-left: 7px;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/pc/out.png");
    background-position: 0% 0%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: "";
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(3) {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 96px;
    border-top: 1px solid #5c5c5c;
    border-collapse: collapse;
  }
  body > footer > div:nth-of-type(1) > div:nth-of-type(3) > p {
    font-size: 11px;
  }
  body > footer > div:nth-of-type(2) {
    display: none;
    visibility: hidden;
  }
}
@media all and (max-width: 767px) {
  .mt_1hem {
    margin-top: 0.5em;
  }

  .mt_2hem {
    margin-top: 1em;
  }

  .mt_3hem {
    margin-top: 1.5em;
  }

  .mt_4hem {
    margin-top: 2em;
  }

  .mt_5hem {
    margin-top: 2.5em;
  }

  .mt_6hem {
    margin-top: 3em;
  }

  .mt_7hem {
    margin-top: 3.5em;
  }

  .pb_10hem {
    padding-bottom: 5em;
  }
  html, body {
    min-width: 360px;
    font-size: 3.8vw;
    line-height: 1.8em;
  }
  body > header {
    height: 13.9vw;
  }
  body > header > a {
    top: 0;
    bottom: 0;
    left: 4.3vw;
    width: 38.8vw;
    height: 7.64vw;
    margin: auto 0;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/header/sp/corp_logo.png");
  }
  body > header > ul {
    display: none;
    visibility: hidden;
  }
  body > header > div#humberger_switch {
    display: block;
    position: relative;
    width: 13.6vw;
    height: 100%;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/header/sp/menu_btn.png");
    background-position: center center;
    background-size: 36.1% auto;
    background-repeat: no-repeat;
  }
  body > header > div#humberger_switch.on {
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/header/sp/menu_btn_close.png");
    background-size: 29.5% auto;
  }
  body > header > div#menuBackground {
    display: none;
    position: fixed;
    top: 13.9vw;
    left: 0;
    width: 100%;
    height: calc(100% - 13.9vw);
    background-color: #000;
    opacity: 0.85;
  }
  body > header > menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    -webkit-transition: right 0.4s ease;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 13.9vw;
    right: -77.8vw;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 77.8vw;
    height: calc(100% - 13.9vw);
    padding: 11.3vw 8.3vw 6.3vw 4.7vw;
    overflow-y: auto;
    background-color: #fff;
    transition: right 0.4s ease;
  }
  body > header > menu.on {
    right: 0;
  }
  body > header > menu .mt {
    margin-top: 8.2vw;
  }
  body > header > menu > div:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  body > header > menu > div:nth-child(1) > a {
    color: #000;
    font-weight: bold;
    font-size: 3.3vw;
    line-height: 1em;
    text-decoration: none;
  }
  body > header > menu > div:nth-child(1) > dl {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
  }
  body > header > menu > div:nth-child(1) > dl > dt {
    display: block;
    position: relative;
  }
  body > header > menu > div:nth-child(1) > dl > dt::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2.4vw;
    height: 2.4vw;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/menu/sp/p.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  body > header > menu > div:nth-child(1) > dl > dt > p {
    font-weight: bold;
    font-size: 3.3vw;
    line-height: 1em;
  }
  body > header > menu > div:nth-child(1) > dl.on > dt::before {
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/menu/sp/m.png");
  }
  body > header > menu > div:nth-child(1) > dl > dd {
    display: none;
    position: relative;
  }
  body > header > menu > div:nth-child(1) > dl > dd > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3.6vw 0 0 3.6vw;
  }
  body > header > menu > div:nth-child(1) > dl > dd > div > a {
    color: #6e6e6e;
    font-weight: bold;
    font-size: 2.8vw;
    text-decoration: none;
  }
  body > header > menu > div:nth-child(1) > dl > dd > div > a :not(:first-child) {
    margin-top: 4.7vw;
  }
  body > header > menu > div:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: auto;
  }
  body > header > menu > div:nth-child(2) > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    list-style-type: none;
  }
  body > header > menu > div:nth-child(2) > ul > li {
    display: block;
    position: relative;
    width: 9.3vw;
    height: 9.3vw;
    border-radius: 50%;
    border-collapse: collapse;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #393939;
  }
  body > header > menu > div:nth-child(2) > ul > li:nth-child(1) {
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/sp/twitter.png");
    background-size: 42% auto;
  }
  body > header > menu > div:nth-child(2) > ul > li:nth-child(2) {
    margin-left: 3.3vw;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/sp/facebook.png");
    background-size: 34% auto;
  }
  body > header > menu > div:nth-child(2) > ul > li > a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  body > header > menu > div:nth-child(2) > a {
    color: #3c3c3c;
    font-weight: bold;
    font-size: 2.2vw;
    text-decoration: none;
  }
  body > header > menu > div:nth-child(2) > a:nth-of-type(1) {
    margin-top: 5.5vw;
  }
  body > header > menu > div:nth-child(2) > a:nth-of-type(2) {
    margin-top: 2vw;
  }
  body > header > menu > div:nth-child(2) > a:nth-of-type(2)::after {
    display: inline-block;
    position: relative;
    width: 2.1vw;
    height: 2.2vw;
    margin-left: 1.4vw;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/menu/sp/out.png");
    background-position: 0% 0%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: "";
  }
  body > header > menu > hr {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    margin: 4.1vw 0;
    border: none;
    border-bottom: 1px solid #898989;
    border-collapse: collapse;
    opacity: 0.15;
  }
  body > main {
    margin-top: 13.9vw;
    padding-bottom: 53.4vw;
  }
  body > main > div#background > ul > li::before {
    padding-top: 250%;
  }
  body > main > div#background > div#div_grad1 {
    top: 27.5vh;
    left: 0;
    width: 52vw;
    height: 52vw;
  }
  body > main > div#background > div#div_grad2 {
    right: 0;
    bottom: 27.5vh;
    width: 45vw;
    height: 45vw;
  }
  body > main > div#background::before {
    top: 0;
    left: -80%;
    width: 200%;
    background-size: 90vw 100vw;
  }
  body > main > div#pagetitle {
    height: 38.7vw;
    background-size: 100% auto;
  }
  body > main > div#contents {
    width: 90vw;
    margin: 12.7vw auto 0 auto;
  }
  body > main > div#contact_wrapper {
    top: 47.4vw;
    right: 5.6vw;
    width: 9.7vw;
    height: 9.7vw;
  }
  body > footer {
    height: 41.9vw;
    background-color: #3c3c3c;
  }
  body > footer > div:nth-of-type(1) {
    display: none;
    visibility: hidden;
  }
  body > footer > div:nth-of-type(2) {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  body > footer > div:nth-of-type(2) > a {
    display: block;
    position: absolute;
    top: -25vw;
    width: 18.5vw;
    height: 18.5vw;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #3c3c3c;
  }
  body > footer > div:nth-of-type(2) > a:nth-of-type(1) {
    left: 28vw;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 1227" xmlns="http://www.w3.org/2000/svg"><path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="%23fff"/></svg>');
    background-size: 30% auto;
  }
  body > footer > div:nth-of-type(2) > a:nth-of-type(2) {
    right: 28vw;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/sp/facebook.png");
    background-size: 35% auto;
  }
  body > footer > div:nth-of-type(2) > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  body > footer > div:nth-of-type(2) > div > * {
    width: 90.5vw;
    height: 33.3333333333%;
  }
  body > footer > div:nth-of-type(2) > div > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #5c5c5c;
  }
  body > footer > div:nth-of-type(2) > div > ul > li {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 33.3333333333%;
    height: 67.5%;
  }
  body > footer > div:nth-of-type(2) > div > ul > li:nth-of-type(2) {
    border-right: 1px solid #5c5c5c;
    border-left: 1px solid #5c5c5c;
  }
  body > footer > div:nth-of-type(2) > div > ul > li > a {
    color: #f5f5f5;
    font-weight: bold;
    font-size: 3.3vw;
    text-decoration: none;
  }
  body > footer > div:nth-of-type(2) > div > div {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid #5c5c5c;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(1) > a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 37vw;
    height: 7.7vw;
    border: 1px solid #bbb;
    border-collapse: collapse;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(1) > a::before {
    display: block;
    position: relative;
    width: 4.6vw;
    height: 4.6vw;
    background-image: url("//media.fromsoftware.jp/careers/en/resources/images/common/footer/pc/lang.png");
    background-position: 0% 0%;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(1) > a > p {
    display: block;
    position: relative;
    margin-right: 1em;
    margin-left: 0.5em;
    color: #f5f5f5;
    font-weight: bold;
    font-size: 3vw;
    text-decoration: none;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(1) > a::after {
    display: block;
    position: relative;
    content: "▼";
    color: #f5f5f5;
    font-weight: bold;
    font-size: 2.5vw;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(2) {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  body > footer > div:nth-of-type(2) > div > div:nth-of-type(2) > p {
    color: #f5f5f5;
    font-size: 2.2vw;
  }
}